diff --git a/grammar.js b/grammar.js index 220ba64..541f035 100644 --- a/grammar.js +++ b/grammar.js @@ -51,7 +51,7 @@ const PREC = { const DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); const HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); const BIN_DIGITS = token(sep1(/[01]/, /_+/)); -const REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)) +const REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)); module.exports = grammar({ name: "kotlin", @@ -812,13 +812,16 @@ module.exports = grammar({ $.class_body ), - this_expression: $ => "this", + this_expression: $ => choice( + "this", + $._this_at + ), - super_expression: $ => seq( + super_expression: $ => prec.right(choice( "super", - // TODO optional(seq("<", $._type, ">")), - // TODO optional(seq("@", $.simple_identifier)) - ), + seq("super", "<", $._type, ">"), + $._super_at + )), if_expression: $ => prec.right(seq( "if", @@ -1116,15 +1119,38 @@ module.exports = grammar({ // Keywords // ========== - _return_at: $ => seq("return@", $._lexical_identifier), + _return_at: $ => seq( + "return@", + alias($._lexical_identifier, $.label) + ), - _continue_at: $ => seq("continue@", $._lexical_identifier), + _continue_at: $ => seq( + "continue@", + alias($._lexical_identifier, $.label) + ), - _break_at: $ => seq("break@", $._lexical_identifier), + _break_at: $ => seq( + "break@", + alias($._lexical_identifier, $.label) + ), - _this_at: $ => seq("this@", $._lexical_identifier), + _this_at: $ => seq( + "this@", + alias($._lexical_identifier, $.type_identifier) + ), - _super_at: $ => seq("super@", $._lexical_identifier), + _super_at: $ => choice( + seq( + "super@", + alias($._lexical_identifier, $.type_identifier) + ), + seq( + "super", + "<", $._type, ">", + token.immediate("@"), + alias($._lexical_identifier, $.type_identifier) + ) + ), // ========== // Literals diff --git a/src/grammar.json b/src/grammar.json index bae4a39..6af0e34 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4169,18 +4169,56 @@ ] }, "this_expression": { - "type": "STRING", - "value": "this" - }, - "super_expression": { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "STRING", - "value": "super" + "value": "this" + }, + { + "type": "SYMBOL", + "name": "_this_at" } ] }, + "super_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "super" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + { + "type": "SYMBOL", + "name": "_super_at" + } + ] + } + }, "if_expression": { "type": "PREC_RIGHT", "value": 0, @@ -5449,8 +5487,13 @@ "value": "return@" }, { - "type": "SYMBOL", - "name": "_lexical_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "label" } ] }, @@ -5462,8 +5505,13 @@ "value": "continue@" }, { - "type": "SYMBOL", - "name": "_lexical_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "label" } ] }, @@ -5475,8 +5523,13 @@ "value": "break@" }, { - "type": "SYMBOL", - "name": "_lexical_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "label" } ] }, @@ -5488,21 +5541,73 @@ "value": "this@" }, { - "type": "SYMBOL", - "name": "_lexical_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "type_identifier" } ] }, "_super_at": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "super@" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "super@" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "type_identifier" + } + ] }, { - "type": "SYMBOL", - "name": "_lexical_identifier" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "type_identifier" + } + ] } ] }, diff --git a/src/node-types.json b/src/node-types.json index cdb9415..8daf281 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4936,7 +4936,7 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ { @@ -5023,6 +5023,10 @@ "type": "jump_expression", "named": true }, + { + "type": "label", + "named": true + }, { "type": "lambda_literal", "named": true @@ -5098,6 +5102,11 @@ ] } }, + { + "type": "label", + "named": true, + "fields": {} + }, { "type": "lambda_literal", "named": true, @@ -7822,12 +7831,56 @@ { "type": "super_expression", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } }, { "type": "this_expression", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } }, { "type": "try_expression", @@ -9371,10 +9424,6 @@ "type": "is", "named": false }, - { - "type": "label", - "named": true - }, { "type": "lateinit", "named": false diff --git a/src/parser.c b/src/parser.c index fe5be9e..c54d629 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 10065 -#define LARGE_STATE_COUNT 4501 -#define SYMBOL_COUNT 350 +#define STATE_COUNT 10154 +#define LARGE_STATE_COUNT 4533 +#define SYMBOL_COUNT 355 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 150 +#define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 7 +#define PRODUCTION_ID_COUNT 9 enum { sym__alpha_identifier = 1, @@ -153,230 +153,235 @@ enum { anon_sym_return_AT = 126, anon_sym_continue_AT = 127, anon_sym_break_AT = 128, - sym_real_literal = 129, - sym_integer_literal = 130, - sym_hex_literal = 131, - sym_bin_literal = 132, - aux_sym_unsigned_literal_token1 = 133, - anon_sym_L = 134, - anon_sym_true = 135, - anon_sym_false = 136, - anon_sym_SQUOTE = 137, - aux_sym_character_literal_token1 = 138, - sym__backtick_identifier = 139, - anon_sym_BSLASHu = 140, - aux_sym__uni_character_literal_token1 = 141, - sym__escaped_identifier = 142, - sym__automatic_semicolon = 143, - sym__import_list_delimiter = 144, - sym_safe_nav = 145, - sym_multiline_comment = 146, - sym__string_start = 147, - sym__string_end = 148, - sym__string_content = 149, - sym_source_file = 150, - sym_shebang_line = 151, - sym_file_annotation = 152, - sym_package_header = 153, - sym_import_list = 154, - sym_import_header = 155, - sym_import_alias = 156, - sym_type_alias = 157, - sym__declaration = 158, - sym_class_declaration = 159, - sym_primary_constructor = 160, - sym_class_body = 161, - sym__class_parameters = 162, - sym_class_parameter = 163, - sym__delegation_specifiers = 164, - sym_delegation_specifier = 165, - sym_constructor_invocation = 166, - sym_explicit_delegation = 167, - sym_type_parameters = 168, - sym_type_parameter = 169, - sym_type_constraints = 170, - sym_type_constraint = 171, - aux_sym__class_member_declarations = 172, - sym__class_member_declaration = 173, - sym_anonymous_initializer = 174, - sym_companion_object = 175, - sym_function_value_parameters = 176, - sym__function_value_parameter = 177, - sym__receiver_type = 178, - sym_function_declaration = 179, - sym_function_body = 180, - sym_variable_declaration = 181, - sym_property_declaration = 182, - sym_property_delegate = 183, - sym_getter = 184, - sym_setter = 185, - sym_parameter_with_optional_type = 186, - sym_parameter = 187, - sym_object_declaration = 188, - sym_secondary_constructor = 189, - sym_constructor_delegation_call = 190, - sym_enum_class_body = 191, - sym__enum_entries = 192, - sym_enum_entry = 193, - sym__type = 194, - sym__type_reference = 195, - sym_not_nullable_type = 196, - sym_nullable_type = 197, - sym_user_type = 198, - sym__simple_user_type = 199, - sym_type_projection = 200, - sym_type_projection_modifiers = 201, - sym__type_projection_modifier = 202, - sym_function_type = 203, - sym_function_type_parameters = 204, - sym_parenthesized_type = 205, - sym_parenthesized_user_type = 206, - sym_statements = 207, - sym__statement = 208, - sym_control_structure_body = 209, - sym__block = 210, - sym__loop_statement = 211, - sym_for_statement = 212, - sym_while_statement = 213, - sym_do_while_statement = 214, - sym__semi = 215, - sym_assignment = 216, - sym__expression = 217, - sym__unary_expression = 218, - sym_postfix_expression = 219, - sym_call_expression = 220, - sym_indexing_expression = 221, - sym_navigation_expression = 222, - sym_prefix_expression = 223, - sym_as_expression = 224, - sym_spread_expression = 225, - sym__binary_expression = 226, - sym_multiplicative_expression = 227, - sym_additive_expression = 228, - sym_range_expression = 229, - sym_infix_expression = 230, - sym_elvis_expression = 231, - sym_check_expression = 232, - sym_comparison_expression = 233, - sym_equality_expression = 234, - sym_conjunction_expression = 235, - sym_disjunction_expression = 236, - sym_indexing_suffix = 237, - sym_navigation_suffix = 238, - sym_call_suffix = 239, - sym_annotated_lambda = 240, - sym_type_arguments = 241, - sym_value_arguments = 242, - sym_value_argument = 243, - sym__primary_expression = 244, - sym_parenthesized_expression = 245, - sym_collection_literal = 246, - sym__literal_constant = 247, - sym_string_literal = 248, - sym__interpolation = 249, - sym_lambda_literal = 250, - sym_multi_variable_declaration = 251, - sym_lambda_parameters = 252, - sym__lambda_parameter = 253, - sym_anonymous_function = 254, - sym__function_literal = 255, - sym_object_literal = 256, - sym_this_expression = 257, - sym_super_expression = 258, - sym_if_expression = 259, - sym_when_subject = 260, - sym_when_expression = 261, - sym_when_entry = 262, - sym_when_condition = 263, - sym_range_test = 264, - sym_type_test = 265, - sym_try_expression = 266, - sym_catch_block = 267, - sym_finally_block = 268, - sym_jump_expression = 269, - sym_callable_reference = 270, - sym__assignment_and_operator = 271, - sym__equality_operator = 272, - sym__comparison_operator = 273, - sym__in_operator = 274, - sym__is_operator = 275, - sym__additive_operator = 276, - sym__multiplicative_operator = 277, - sym__as_operator = 278, - sym__prefix_unary_operator = 279, - sym__postfix_unary_operator = 280, - sym__member_access_operator = 281, - sym__postfix_unary_suffix = 282, - sym__postfix_unary_expression = 283, - sym_directly_assignable_expression = 284, - sym_modifiers = 285, - sym_parameter_modifiers = 286, - sym__modifier = 287, - sym_type_modifiers = 288, - sym__type_modifier = 289, - sym_class_modifier = 290, - sym_member_modifier = 291, - sym_visibility_modifier = 292, - sym_variance_modifier = 293, - sym_type_parameter_modifiers = 294, - sym__type_parameter_modifier = 295, - sym_function_modifier = 296, - sym_inheritance_modifier = 297, - sym_parameter_modifier = 298, - sym_platform_modifier = 299, - sym_annotation = 300, - sym__single_annotation = 301, - sym__multi_annotation = 302, - sym_use_site_target = 303, - sym__unescaped_annotation = 304, - sym_simple_identifier = 305, - sym_identifier = 306, - sym__return_at = 307, - sym__continue_at = 308, - sym__break_at = 309, - sym_unsigned_literal = 310, - sym_long_literal = 311, - sym_boolean_literal = 312, - sym_character_literal = 313, - sym_character_escape_seq = 314, - sym__lexical_identifier = 315, - sym__uni_character_literal = 316, - aux_sym_source_file_repeat1 = 317, - aux_sym_source_file_repeat2 = 318, - aux_sym_source_file_repeat3 = 319, - aux_sym_file_annotation_repeat1 = 320, - aux_sym_import_list_repeat1 = 321, - aux_sym__class_parameters_repeat1 = 322, - aux_sym__delegation_specifiers_repeat1 = 323, - aux_sym__annotated_delegation_specifier_repeat1 = 324, - aux_sym_type_parameters_repeat1 = 325, - aux_sym_type_constraints_repeat1 = 326, - aux_sym_function_value_parameters_repeat1 = 327, - aux_sym__enum_entries_repeat1 = 328, - aux_sym_nullable_type_repeat1 = 329, - aux_sym_user_type_repeat1 = 330, - aux_sym_type_projection_modifiers_repeat1 = 331, - aux_sym_function_type_parameters_repeat1 = 332, - aux_sym_statements_repeat1 = 333, - aux_sym__statement_repeat1 = 334, - aux_sym_indexing_suffix_repeat1 = 335, - aux_sym_type_arguments_repeat1 = 336, - aux_sym_value_arguments_repeat1 = 337, - aux_sym_string_literal_repeat1 = 338, - aux_sym_multi_variable_declaration_repeat1 = 339, - aux_sym_lambda_parameters_repeat1 = 340, - aux_sym_when_expression_repeat1 = 341, - aux_sym_when_entry_repeat1 = 342, - aux_sym_try_expression_repeat1 = 343, - aux_sym__postfix_unary_expression_repeat1 = 344, - aux_sym_modifiers_repeat1 = 345, - aux_sym_parameter_modifiers_repeat1 = 346, - aux_sym_type_modifiers_repeat1 = 347, - aux_sym_type_parameter_modifiers_repeat1 = 348, - aux_sym_identifier_repeat1 = 349, - alias_sym_interpolated_expression = 350, - alias_sym_interpolated_identifier = 351, - alias_sym_type_identifier = 352, + anon_sym_this_AT = 129, + anon_sym_super_AT = 130, + anon_sym_AT2 = 131, + sym_real_literal = 132, + sym_integer_literal = 133, + sym_hex_literal = 134, + sym_bin_literal = 135, + aux_sym_unsigned_literal_token1 = 136, + anon_sym_L = 137, + anon_sym_true = 138, + anon_sym_false = 139, + anon_sym_SQUOTE = 140, + aux_sym_character_literal_token1 = 141, + sym__backtick_identifier = 142, + anon_sym_BSLASHu = 143, + aux_sym__uni_character_literal_token1 = 144, + sym__escaped_identifier = 145, + sym__automatic_semicolon = 146, + sym__import_list_delimiter = 147, + sym_safe_nav = 148, + sym_multiline_comment = 149, + sym__string_start = 150, + sym__string_end = 151, + sym__string_content = 152, + sym_source_file = 153, + sym_shebang_line = 154, + sym_file_annotation = 155, + sym_package_header = 156, + sym_import_list = 157, + sym_import_header = 158, + sym_import_alias = 159, + sym_type_alias = 160, + sym__declaration = 161, + sym_class_declaration = 162, + 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__return_at = 310, + sym__continue_at = 311, + sym__break_at = 312, + sym__this_at = 313, + sym__super_at = 314, + sym_unsigned_literal = 315, + sym_long_literal = 316, + sym_boolean_literal = 317, + sym_character_literal = 318, + sym_character_escape_seq = 319, + sym__lexical_identifier = 320, + sym__uni_character_literal = 321, + aux_sym_source_file_repeat1 = 322, + aux_sym_source_file_repeat2 = 323, + aux_sym_source_file_repeat3 = 324, + aux_sym_file_annotation_repeat1 = 325, + aux_sym_import_list_repeat1 = 326, + aux_sym__class_parameters_repeat1 = 327, + aux_sym__delegation_specifiers_repeat1 = 328, + aux_sym__annotated_delegation_specifier_repeat1 = 329, + aux_sym_type_parameters_repeat1 = 330, + aux_sym_type_constraints_repeat1 = 331, + aux_sym_function_value_parameters_repeat1 = 332, + aux_sym__enum_entries_repeat1 = 333, + aux_sym_nullable_type_repeat1 = 334, + aux_sym_user_type_repeat1 = 335, + aux_sym_type_projection_modifiers_repeat1 = 336, + aux_sym_function_type_parameters_repeat1 = 337, + aux_sym_statements_repeat1 = 338, + aux_sym__statement_repeat1 = 339, + aux_sym_indexing_suffix_repeat1 = 340, + aux_sym_type_arguments_repeat1 = 341, + aux_sym_value_arguments_repeat1 = 342, + aux_sym_string_literal_repeat1 = 343, + aux_sym_multi_variable_declaration_repeat1 = 344, + aux_sym_lambda_parameters_repeat1 = 345, + aux_sym_when_expression_repeat1 = 346, + aux_sym_when_entry_repeat1 = 347, + aux_sym_try_expression_repeat1 = 348, + aux_sym__postfix_unary_expression_repeat1 = 349, + aux_sym_modifiers_repeat1 = 350, + aux_sym_parameter_modifiers_repeat1 = 351, + aux_sym_type_modifiers_repeat1 = 352, + aux_sym_type_parameter_modifiers_repeat1 = 353, + aux_sym_identifier_repeat1 = 354, + alias_sym_interpolated_expression = 355, + alias_sym_interpolated_identifier = 356, + alias_sym_type_identifier = 357, }; static const char * const ts_symbol_names[] = { @@ -509,6 +514,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_return_AT] = "return@", [anon_sym_continue_AT] = "continue@", [anon_sym_break_AT] = "break@", + [anon_sym_this_AT] = "this@", + [anon_sym_super_AT] = "super@", + [anon_sym_AT2] = "@", [sym_real_literal] = "real_literal", [sym_integer_literal] = "integer_literal", [sym_hex_literal] = "hex_literal", @@ -690,6 +698,8 @@ static const char * const ts_symbol_names[] = { [sym__return_at] = "_return_at", [sym__continue_at] = "_continue_at", [sym__break_at] = "_break_at", + [sym__this_at] = "_this_at", + [sym__super_at] = "_super_at", [sym_unsigned_literal] = "unsigned_literal", [sym_long_literal] = "long_literal", [sym_boolean_literal] = "boolean_literal", @@ -865,6 +875,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_return_AT] = anon_sym_return_AT, [anon_sym_continue_AT] = anon_sym_continue_AT, [anon_sym_break_AT] = anon_sym_break_AT, + [anon_sym_this_AT] = anon_sym_this_AT, + [anon_sym_super_AT] = anon_sym_super_AT, + [anon_sym_AT2] = anon_sym_AT, [sym_real_literal] = sym_real_literal, [sym_integer_literal] = sym_integer_literal, [sym_hex_literal] = sym_hex_literal, @@ -1046,6 +1059,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__return_at] = sym__return_at, [sym__continue_at] = sym__continue_at, [sym__break_at] = sym__break_at, + [sym__this_at] = sym__this_at, + [sym__super_at] = sym__super_at, [sym_unsigned_literal] = sym_unsigned_literal, [sym_long_literal] = sym_long_literal, [sym_boolean_literal] = sym_boolean_literal, @@ -1608,6 +1623,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_this_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_super_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_AT2] = { + .visible = true, + .named = false, + }, [sym_real_literal] = { .visible = true, .named = true, @@ -2332,6 +2359,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__this_at] = { + .visible = false, + .named = true, + }, + [sym__super_at] = { + .visible = false, + .named = true, + }, [sym_unsigned_literal] = { .visible = true, .named = true, @@ -2515,17 +2550,23 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = alias_sym_type_identifier, }, [3] = { - [1] = alias_sym_interpolated_identifier, + [1] = sym_label, }, [4] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_interpolated_identifier, }, [5] = { - [1] = alias_sym_interpolated_expression, + [2] = alias_sym_type_identifier, }, [6] = { + [1] = alias_sym_interpolated_expression, + }, + [7] = { [3] = alias_sym_type_identifier, }, + [8] = { + [5] = alias_sym_type_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2536,6 +2577,10 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_simple_identifier, alias_sym_interpolated_identifier, alias_sym_type_identifier, + sym__lexical_identifier, 3, + sym__lexical_identifier, + alias_sym_type_identifier, + sym_label, 0, }; @@ -2544,91 +2589,91 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 2, [5] = 3, - [6] = 4, - [7] = 4, - [8] = 4, + [6] = 6, + [7] = 2, + [8] = 2, [9] = 3, - [10] = 4, - [11] = 4, - [12] = 3, + [10] = 2, + [11] = 3, + [12] = 2, [13] = 3, - [14] = 2, + [14] = 6, [15] = 3, [16] = 3, - [17] = 4, - [18] = 4, + [17] = 3, + [18] = 2, [19] = 3, [20] = 3, - [21] = 4, + [21] = 2, [22] = 3, - [23] = 4, - [24] = 3, - [25] = 4, + [23] = 2, + [24] = 2, + [25] = 2, [26] = 3, - [27] = 4, - [28] = 3, - [29] = 4, - [30] = 4, - [31] = 3, - [32] = 3, - [33] = 4, - [34] = 4, - [35] = 3, - [36] = 4, + [27] = 2, + [28] = 2, + [29] = 3, + [30] = 3, + [31] = 2, + [32] = 2, + [33] = 3, + [34] = 2, + [35] = 2, + [36] = 3, [37] = 3, [38] = 3, - [39] = 4, + [39] = 2, [40] = 3, - [41] = 3, - [42] = 4, - [43] = 3, - [44] = 4, - [45] = 4, + [41] = 2, + [42] = 3, + [43] = 2, + [44] = 2, + [45] = 2, [46] = 3, - [47] = 4, - [48] = 4, - [49] = 4, + [47] = 3, + [48] = 2, + [49] = 2, [50] = 3, [51] = 3, [52] = 52, [53] = 53, [54] = 54, - [55] = 2, - [56] = 3, - [57] = 4, + [55] = 6, + [56] = 2, + [57] = 3, [58] = 58, - [59] = 58, - [60] = 58, - [61] = 61, - [62] = 62, - [63] = 58, - [64] = 58, - [65] = 65, + [59] = 59, + [60] = 60, + [61] = 60, + [62] = 60, + [63] = 60, + [64] = 60, + [65] = 60, [66] = 66, - [67] = 58, - [68] = 68, - [69] = 58, - [70] = 58, - [71] = 65, - [72] = 72, - [73] = 73, - [74] = 65, - [75] = 65, - [76] = 76, - [77] = 65, - [78] = 65, - [79] = 58, - [80] = 58, - [81] = 58, - [82] = 58, - [83] = 58, - [84] = 58, - [85] = 58, - [86] = 2, + [67] = 67, + [68] = 60, + [69] = 69, + [70] = 70, + [71] = 60, + [72] = 59, + [73] = 59, + [74] = 74, + [75] = 75, + [76] = 59, + [77] = 60, + [78] = 59, + [79] = 60, + [80] = 60, + [81] = 60, + [82] = 59, + [83] = 60, + [84] = 60, + [85] = 60, + [86] = 6, [87] = 87, - [88] = 4, + [88] = 87, [89] = 87, [90] = 87, [91] = 87, @@ -2644,234 +2689,234 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 87, [102] = 87, [103] = 87, - [104] = 3, + [104] = 87, [105] = 87, - [106] = 87, + [106] = 2, [107] = 87, [108] = 87, - [109] = 87, + [109] = 3, [110] = 87, [111] = 87, [112] = 87, [113] = 113, - [114] = 113, + [114] = 114, [115] = 115, - [116] = 116, - [117] = 113, + [116] = 114, + [117] = 114, [118] = 118, [119] = 113, - [120] = 118, - [121] = 115, - [122] = 116, + [120] = 114, + [121] = 118, + [122] = 113, [123] = 118, - [124] = 113, - [125] = 115, + [124] = 115, + [125] = 113, [126] = 115, - [127] = 116, - [128] = 118, - [129] = 113, - [130] = 115, + [127] = 114, + [128] = 114, + [129] = 118, + [130] = 113, [131] = 115, - [132] = 118, - [133] = 113, - [134] = 118, + [132] = 114, + [133] = 118, + [134] = 113, [135] = 115, - [136] = 116, - [137] = 116, - [138] = 115, - [139] = 116, - [140] = 118, - [141] = 113, + [136] = 114, + [137] = 118, + [138] = 113, + [139] = 115, + [140] = 115, + [141] = 115, [142] = 115, [143] = 118, - [144] = 116, - [145] = 113, - [146] = 116, - [147] = 115, - [148] = 118, - [149] = 113, - [150] = 118, + [144] = 114, + [145] = 118, + [146] = 113, + [147] = 118, + [148] = 115, + [149] = 115, + [150] = 113, [151] = 113, - [152] = 113, - [153] = 115, - [154] = 116, - [155] = 118, - [156] = 113, - [157] = 118, + [152] = 115, + [153] = 118, + [154] = 115, + [155] = 115, + [156] = 115, + [157] = 114, [158] = 115, - [159] = 116, - [160] = 113, + [159] = 113, + [160] = 114, [161] = 118, - [162] = 115, - [163] = 116, - [164] = 115, - [165] = 115, - [166] = 116, - [167] = 118, - [168] = 113, - [169] = 116, - [170] = 115, - [171] = 116, - [172] = 116, - [173] = 116, - [174] = 116, - [175] = 113, - [176] = 118, - [177] = 113, - [178] = 115, - [179] = 115, - [180] = 113, + [162] = 113, + [163] = 115, + [164] = 114, + [165] = 114, + [166] = 118, + [167] = 113, + [168] = 115, + [169] = 113, + [170] = 118, + [171] = 114, + [172] = 114, + [173] = 115, + [174] = 113, + [175] = 118, + [176] = 113, + [177] = 114, + [178] = 114, + [179] = 118, + [180] = 6, [181] = 118, - [182] = 116, + [182] = 114, [183] = 118, - [184] = 115, - [185] = 116, - [186] = 2, - [187] = 116, - [188] = 116, - [189] = 113, - [190] = 116, + [184] = 114, + [185] = 113, + [186] = 115, + [187] = 113, + [188] = 115, + [189] = 114, + [190] = 118, [191] = 113, - [192] = 116, + [192] = 118, [193] = 115, [194] = 113, - [195] = 113, - [196] = 118, + [195] = 115, + [196] = 115, [197] = 118, - [198] = 118, - [199] = 115, - [200] = 115, - [201] = 118, - [202] = 116, - [203] = 113, - [204] = 118, + [198] = 113, + [199] = 114, + [200] = 118, + [201] = 115, + [202] = 113, + [203] = 118, + [204] = 114, [205] = 115, - [206] = 118, - [207] = 116, - [208] = 113, - [209] = 116, - [210] = 116, - [211] = 115, + [206] = 115, + [207] = 113, + [208] = 118, + [209] = 114, + [210] = 114, + [211] = 113, [212] = 118, [213] = 213, - [214] = 213, + [214] = 214, [215] = 215, - [216] = 213, + [216] = 216, [217] = 217, [218] = 218, - [219] = 219, - [220] = 218, - [221] = 221, - [222] = 218, + [219] = 214, + [220] = 220, + [221] = 220, + [222] = 213, [223] = 213, - [224] = 215, - [225] = 213, - [226] = 221, - [227] = 221, - [228] = 4, - [229] = 213, - [230] = 213, + [224] = 214, + [225] = 225, + [226] = 226, + [227] = 3, + [228] = 228, + [229] = 214, + [230] = 214, [231] = 213, - [232] = 232, - [233] = 221, + [232] = 214, + [233] = 213, [234] = 213, - [235] = 235, - [236] = 221, - [237] = 218, - [238] = 221, - [239] = 221, - [240] = 3, + [235] = 2, + [236] = 213, + [237] = 213, + [238] = 220, + [239] = 214, + [240] = 217, [241] = 241, - [242] = 215, - [243] = 215, - [244] = 221, - [245] = 245, - [246] = 213, - [247] = 247, - [248] = 215, - [249] = 249, - [250] = 218, - [251] = 213, - [252] = 213, - [253] = 253, - [254] = 221, - [255] = 215, - [256] = 218, + [242] = 220, + [243] = 217, + [244] = 213, + [245] = 214, + [246] = 220, + [247] = 214, + [248] = 214, + [249] = 217, + [250] = 217, + [251] = 251, + [252] = 252, + [253] = 220, + [254] = 214, + [255] = 217, + [256] = 214, [257] = 257, [258] = 258, [259] = 259, - [260] = 245, - [261] = 245, - [262] = 245, - [263] = 245, - [264] = 245, - [265] = 245, - [266] = 245, - [267] = 245, - [268] = 245, - [269] = 245, - [270] = 245, + [260] = 225, + [261] = 225, + [262] = 225, + [263] = 225, + [264] = 225, + [265] = 225, + [266] = 225, + [267] = 225, + [268] = 225, + [269] = 225, + [270] = 225, [271] = 271, [272] = 272, [273] = 273, [274] = 274, - [275] = 274, - [276] = 273, - [277] = 277, - [278] = 277, - [279] = 271, - [280] = 280, - [281] = 280, - [282] = 272, - [283] = 274, - [284] = 280, - [285] = 271, - [286] = 280, - [287] = 273, - [288] = 273, + [275] = 275, + [276] = 276, + [277] = 273, + [278] = 272, + [279] = 274, + [280] = 271, + [281] = 275, + [282] = 276, + [283] = 225, + [284] = 273, + [285] = 276, + [286] = 275, + [287] = 271, + [288] = 274, [289] = 272, [290] = 272, - [291] = 271, - [292] = 274, - [293] = 277, - [294] = 277, - [295] = 245, - [296] = 245, - [297] = 272, - [298] = 273, - [299] = 277, - [300] = 280, - [301] = 274, - [302] = 277, - [303] = 274, - [304] = 271, - [305] = 280, + [291] = 274, + [292] = 273, + [293] = 275, + [294] = 276, + [295] = 271, + [296] = 225, + [297] = 225, + [298] = 225, + [299] = 273, + [300] = 276, + [301] = 276, + [302] = 225, + [303] = 225, + [304] = 273, + [305] = 272, [306] = 272, - [307] = 271, - [308] = 245, - [309] = 273, - [310] = 245, - [311] = 274, - [312] = 273, - [313] = 277, - [314] = 277, - [315] = 245, - [316] = 271, - [317] = 277, - [318] = 280, - [319] = 274, - [320] = 274, - [321] = 280, - [322] = 273, - [323] = 245, + [307] = 274, + [308] = 274, + [309] = 275, + [310] = 271, + [311] = 271, + [312] = 275, + [313] = 225, + [314] = 276, + [315] = 276, + [316] = 273, + [317] = 272, + [318] = 271, + [319] = 271, + [320] = 273, + [321] = 275, + [322] = 274, + [323] = 273, [324] = 272, - [325] = 272, - [326] = 272, - [327] = 280, - [328] = 271, + [325] = 274, + [326] = 275, + [327] = 275, + [328] = 274, [329] = 271, - [330] = 273, - [331] = 245, + [330] = 272, + [331] = 276, [332] = 332, [333] = 332, [334] = 332, @@ -2896,13 +2941,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 332, [354] = 332, [355] = 332, - [356] = 245, - [357] = 357, - [358] = 358, + [356] = 225, + [357] = 225, + [358] = 225, [359] = 359, [360] = 360, [361] = 361, - [362] = 362, + [362] = 225, [363] = 363, [364] = 364, [365] = 365, @@ -2911,688 +2956,688 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [368] = 368, [369] = 369, [370] = 370, - [371] = 245, + [371] = 225, [372] = 372, [373] = 373, [374] = 374, [375] = 375, [376] = 376, - [377] = 245, - [378] = 369, - [379] = 363, - [380] = 364, - [381] = 245, - [382] = 367, - [383] = 383, - [384] = 373, - [385] = 372, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 379, + [381] = 359, + [382] = 364, + [383] = 374, + [384] = 384, + [385] = 377, [386] = 386, [387] = 387, - [388] = 245, - [389] = 365, - [390] = 390, - [391] = 387, - [392] = 386, - [393] = 366, - [394] = 375, - [395] = 360, - [396] = 357, - [397] = 390, - [398] = 368, - [399] = 359, - [400] = 383, - [401] = 362, - [402] = 361, - [403] = 358, - [404] = 376, - [405] = 374, - [406] = 386, - [407] = 390, - [408] = 383, + [388] = 373, + [389] = 368, + [390] = 369, + [391] = 366, + [392] = 378, + [393] = 393, + [394] = 376, + [395] = 393, + [396] = 360, + [397] = 367, + [398] = 363, + [399] = 384, + [400] = 372, + [401] = 370, + [402] = 386, + [403] = 387, + [404] = 375, + [405] = 361, + [406] = 387, + [407] = 407, + [408] = 386, [409] = 409, - [410] = 387, - [411] = 386, - [412] = 412, - [413] = 390, - [414] = 414, - [415] = 412, - [416] = 416, - [417] = 387, - [418] = 414, - [419] = 416, - [420] = 409, - [421] = 383, - [422] = 414, - [423] = 423, - [424] = 412, - [425] = 412, - [426] = 426, - [427] = 416, - [428] = 423, - [429] = 426, + [410] = 410, + [411] = 411, + [412] = 384, + [413] = 387, + [414] = 410, + [415] = 409, + [416] = 384, + [417] = 393, + [418] = 386, + [419] = 393, + [420] = 407, + [421] = 411, + [422] = 409, + [423] = 407, + [424] = 424, + [425] = 424, + [426] = 410, + [427] = 411, + [428] = 411, + [429] = 407, [430] = 430, - [431] = 414, - [432] = 430, - [433] = 409, - [434] = 434, + [431] = 431, + [432] = 409, + [433] = 433, + [434] = 433, [435] = 435, - [436] = 409, - [437] = 435, - [438] = 416, - [439] = 434, + [436] = 435, + [437] = 431, + [438] = 430, + [439] = 410, [440] = 440, - [441] = 426, + [441] = 435, [442] = 442, - [443] = 423, - [444] = 444, - [445] = 430, + [443] = 431, + [444] = 435, + [445] = 440, [446] = 446, [447] = 430, - [448] = 442, - [449] = 446, - [450] = 440, - [451] = 426, - [452] = 435, + [448] = 448, + [449] = 448, + [450] = 433, + [451] = 431, + [452] = 424, [453] = 453, - [454] = 435, - [455] = 434, - [456] = 453, - [457] = 444, - [458] = 434, - [459] = 423, - [460] = 363, - [461] = 361, + [454] = 453, + [455] = 430, + [456] = 446, + [457] = 424, + [458] = 442, + [459] = 433, + [460] = 377, + [461] = 372, [462] = 375, - [463] = 374, - [464] = 376, - [465] = 360, - [466] = 366, - [467] = 370, - [468] = 359, - [469] = 369, - [470] = 368, - [471] = 365, - [472] = 357, - [473] = 372, - [474] = 373, - [475] = 364, - [476] = 367, - [477] = 358, - [478] = 362, - [479] = 444, + [463] = 379, + [464] = 363, + [465] = 366, + [466] = 361, + [467] = 369, + [468] = 360, + [469] = 364, + [470] = 370, + [471] = 367, + [472] = 374, + [473] = 373, + [474] = 376, + [475] = 378, + [476] = 368, + [477] = 359, + [478] = 365, + [479] = 453, [480] = 480, - [481] = 440, + [481] = 481, [482] = 482, [483] = 483, - [484] = 442, - [485] = 444, - [486] = 446, - [487] = 483, + [484] = 484, + [485] = 483, + [486] = 484, + [487] = 487, [488] = 488, [489] = 489, [490] = 490, - [491] = 480, - [492] = 488, - [493] = 489, - [494] = 494, - [495] = 490, - [496] = 496, - [497] = 442, - [498] = 446, - [499] = 499, - [500] = 494, - [501] = 496, - [502] = 499, + [491] = 442, + [492] = 492, + [493] = 446, + [494] = 448, + [495] = 446, + [496] = 440, + [497] = 492, + [498] = 498, + [499] = 490, + [500] = 440, + [501] = 448, + [502] = 502, [503] = 503, - [504] = 440, - [505] = 505, + [504] = 488, + [505] = 442, [506] = 503, - [507] = 507, - [508] = 453, - [509] = 505, - [510] = 510, - [511] = 511, - [512] = 507, - [513] = 510, - [514] = 453, - [515] = 511, - [516] = 482, - [517] = 364, + [507] = 453, + [508] = 487, + [509] = 489, + [510] = 498, + [511] = 480, + [512] = 502, + [513] = 513, + [514] = 513, + [515] = 482, + [516] = 481, + [517] = 366, [518] = 387, - [519] = 386, + [519] = 363, [520] = 360, - [521] = 376, - [522] = 374, - [523] = 372, - [524] = 390, - [525] = 369, - [526] = 365, - [527] = 363, - [528] = 368, - [529] = 366, - [530] = 357, - [531] = 358, - [532] = 362, - [533] = 373, - [534] = 387, - [535] = 375, - [536] = 361, - [537] = 383, - [538] = 386, - [539] = 367, - [540] = 390, - [541] = 383, - [542] = 359, - [543] = 409, - [544] = 423, - [545] = 482, - [546] = 482, - [547] = 434, - [548] = 277, - [549] = 483, - [550] = 435, - [551] = 511, - [552] = 434, - [553] = 510, - [554] = 280, - [555] = 271, - [556] = 507, - [557] = 273, - [558] = 272, - [559] = 505, + [521] = 364, + [522] = 368, + [523] = 369, + [524] = 370, + [525] = 373, + [526] = 375, + [527] = 361, + [528] = 379, + [529] = 378, + [530] = 367, + [531] = 376, + [532] = 359, + [533] = 374, + [534] = 377, + [535] = 372, + [536] = 384, + [537] = 386, + [538] = 393, + [539] = 387, + [540] = 384, + [541] = 393, + [542] = 386, + [543] = 492, + [544] = 482, + [545] = 487, + [546] = 384, + [547] = 503, + [548] = 481, + [549] = 480, + [550] = 490, + [551] = 490, + [552] = 393, + [553] = 487, + [554] = 489, + [555] = 386, + [556] = 498, + [557] = 480, + [558] = 387, + [559] = 481, [560] = 503, - [561] = 274, - [562] = 274, - [563] = 480, - [564] = 488, - [565] = 489, - [566] = 490, - [567] = 423, - [568] = 272, - [569] = 273, - [570] = 494, - [571] = 496, - [572] = 430, - [573] = 499, - [574] = 412, - [575] = 416, - [576] = 414, - [577] = 271, - [578] = 426, - [579] = 510, - [580] = 511, - [581] = 496, - [582] = 499, - [583] = 383, - [584] = 426, - [585] = 386, - [586] = 480, - [587] = 503, - [588] = 387, - [589] = 494, - [590] = 488, - [591] = 435, - [592] = 280, - [593] = 390, - [594] = 390, - [595] = 490, - [596] = 505, - [597] = 387, - [598] = 386, - [599] = 277, - [600] = 507, - [601] = 412, - [602] = 430, - [603] = 416, + [561] = 411, + [562] = 435, + [563] = 410, + [564] = 409, + [565] = 488, + [566] = 502, + [567] = 407, + [568] = 513, + [569] = 431, + [570] = 435, + [571] = 411, + [572] = 410, + [573] = 409, + [574] = 482, + [575] = 407, + [576] = 384, + [577] = 393, + [578] = 386, + [579] = 483, + [580] = 484, + [581] = 433, + [582] = 484, + [583] = 483, + [584] = 431, + [585] = 488, + [586] = 492, + [587] = 502, + [588] = 424, + [589] = 513, + [590] = 489, + [591] = 433, + [592] = 387, + [593] = 424, + [594] = 430, + [595] = 498, + [596] = 430, + [597] = 435, + [598] = 424, + [599] = 448, + [600] = 446, + [601] = 446, + [602] = 424, + [603] = 440, [604] = 409, - [605] = 383, - [606] = 489, - [607] = 414, - [608] = 483, - [609] = 440, - [610] = 414, - [611] = 412, - [612] = 435, - [613] = 446, - [614] = 416, - [615] = 409, - [616] = 426, - [617] = 414, - [618] = 409, - [619] = 416, - [620] = 442, - [621] = 412, - [622] = 434, - [623] = 444, - [624] = 444, - [625] = 453, - [626] = 440, - [627] = 446, - [628] = 442, - [629] = 423, - [630] = 423, - [631] = 430, - [632] = 426, - [633] = 430, - [634] = 434, - [635] = 453, - [636] = 435, - [637] = 453, - [638] = 440, - [639] = 444, - [640] = 277, - [641] = 274, - [642] = 272, - [643] = 273, - [644] = 271, - [645] = 453, - [646] = 280, - [647] = 440, - [648] = 446, - [649] = 442, - [650] = 446, - [651] = 444, - [652] = 277, - [653] = 274, - [654] = 272, - [655] = 273, - [656] = 271, - [657] = 280, - [658] = 442, - [659] = 496, - [660] = 510, - [661] = 272, - [662] = 505, - [663] = 507, - [664] = 505, - [665] = 503, - [666] = 511, - [667] = 482, - [668] = 499, - [669] = 507, - [670] = 510, - [671] = 511, - [672] = 482, - [673] = 480, - [674] = 483, - [675] = 483, - [676] = 273, - [677] = 277, - [678] = 271, - [679] = 488, - [680] = 280, - [681] = 280, - [682] = 489, - [683] = 271, - [684] = 503, - [685] = 273, - [686] = 490, - [687] = 480, - [688] = 494, - [689] = 496, - [690] = 499, - [691] = 274, - [692] = 272, - [693] = 494, - [694] = 277, - [695] = 274, - [696] = 490, - [697] = 488, - [698] = 489, - [699] = 274, - [700] = 271, - [701] = 280, - [702] = 272, - [703] = 273, - [704] = 277, - [705] = 273, - [706] = 271, - [707] = 274, - [708] = 280, - [709] = 277, - [710] = 272, - [711] = 480, - [712] = 511, - [713] = 482, - [714] = 277, - [715] = 510, - [716] = 507, - [717] = 505, - [718] = 503, - [719] = 499, - [720] = 510, - [721] = 496, - [722] = 277, - [723] = 494, - [724] = 274, - [725] = 490, - [726] = 272, - [727] = 503, - [728] = 273, - [729] = 489, - [730] = 271, - [731] = 280, - [732] = 488, - [733] = 480, - [734] = 511, - [735] = 499, - [736] = 482, - [737] = 507, - [738] = 496, - [739] = 505, - [740] = 494, - [741] = 483, - [742] = 490, - [743] = 489, - [744] = 488, - [745] = 483, - [746] = 280, - [747] = 271, - [748] = 273, - [749] = 272, - [750] = 274, - [751] = 751, - [752] = 752, + [605] = 442, + [606] = 433, + [607] = 435, + [608] = 448, + [609] = 442, + [610] = 440, + [611] = 430, + [612] = 453, + [613] = 411, + [614] = 431, + [615] = 410, + [616] = 431, + [617] = 411, + [618] = 430, + [619] = 409, + [620] = 453, + [621] = 407, + [622] = 433, + [623] = 407, + [624] = 410, + [625] = 276, + [626] = 276, + [627] = 273, + [628] = 272, + [629] = 274, + [630] = 271, + [631] = 275, + [632] = 271, + [633] = 274, + [634] = 272, + [635] = 273, + [636] = 275, + [637] = 440, + [638] = 442, + [639] = 442, + [640] = 446, + [641] = 440, + [642] = 448, + [643] = 446, + [644] = 453, + [645] = 448, + [646] = 453, + [647] = 503, + [648] = 487, + [649] = 502, + [650] = 513, + [651] = 488, + [652] = 492, + [653] = 482, + [654] = 503, + [655] = 481, + [656] = 481, + [657] = 480, + [658] = 490, + [659] = 483, + [660] = 480, + [661] = 484, + [662] = 489, + [663] = 488, + [664] = 498, + [665] = 502, + [666] = 513, + [667] = 490, + [668] = 487, + [669] = 492, + [670] = 489, + [671] = 482, + [672] = 483, + [673] = 498, + [674] = 484, + [675] = 272, + [676] = 272, + [677] = 271, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 274, + [683] = 679, + [684] = 271, + [685] = 678, + [686] = 275, + [687] = 681, + [688] = 276, + [689] = 680, + [690] = 679, + [691] = 273, + [692] = 681, + [693] = 681, + [694] = 694, + [695] = 678, + [696] = 680, + [697] = 679, + [698] = 678, + [699] = 680, + [700] = 681, + [701] = 680, + [702] = 679, + [703] = 678, + [704] = 273, + [705] = 678, + [706] = 274, + [707] = 275, + [708] = 276, + [709] = 681, + [710] = 680, + [711] = 679, + [712] = 275, + [713] = 484, + [714] = 274, + [715] = 275, + [716] = 272, + [717] = 273, + [718] = 513, + [719] = 502, + [720] = 503, + [721] = 271, + [722] = 481, + [723] = 480, + [724] = 490, + [725] = 276, + [726] = 276, + [727] = 484, + [728] = 483, + [729] = 271, + [730] = 498, + [731] = 492, + [732] = 513, + [733] = 502, + [734] = 274, + [735] = 272, + [736] = 488, + [737] = 481, + [738] = 273, + [739] = 480, + [740] = 490, + [741] = 487, + [742] = 489, + [743] = 498, + [744] = 492, + [745] = 482, + [746] = 482, + [747] = 487, + [748] = 488, + [749] = 503, + [750] = 483, + [751] = 489, + [752] = 273, [753] = 753, - [754] = 752, - [755] = 755, - [756] = 751, - [757] = 757, - [758] = 757, - [759] = 759, - [760] = 752, - [761] = 759, - [762] = 762, - [763] = 763, - [764] = 763, - [765] = 763, - [766] = 759, - [767] = 752, - [768] = 752, - [769] = 763, - [770] = 753, - [771] = 757, - [772] = 757, - [773] = 759, - [774] = 757, - [775] = 755, - [776] = 759, - [777] = 763, - [778] = 778, - [779] = 779, - [780] = 759, - [781] = 752, - [782] = 763, - [783] = 757, - [784] = 784, + [754] = 753, + [755] = 753, + [756] = 276, + [757] = 275, + [758] = 271, + [759] = 274, + [760] = 272, + [761] = 273, + [762] = 753, + [763] = 753, + [764] = 764, + [765] = 753, + [766] = 753, + [767] = 753, + [768] = 753, + [769] = 753, + [770] = 272, + [771] = 753, + [772] = 274, + [773] = 773, + [774] = 774, + [775] = 276, + [776] = 774, + [777] = 777, + [778] = 777, + [779] = 753, + [780] = 753, + [781] = 753, + [782] = 753, + [783] = 275, + [784] = 753, [785] = 785, - [786] = 785, - [787] = 280, - [788] = 788, - [789] = 785, - [790] = 785, - [791] = 791, - [792] = 785, - [793] = 273, - [794] = 794, - [795] = 785, - [796] = 785, - [797] = 785, - [798] = 798, - [799] = 799, - [800] = 785, - [801] = 785, - [802] = 802, - [803] = 272, - [804] = 785, - [805] = 805, - [806] = 785, - [807] = 807, - [808] = 785, - [809] = 785, - [810] = 271, - [811] = 785, - [812] = 273, - [813] = 785, - [814] = 272, - [815] = 274, - [816] = 280, - [817] = 271, + [786] = 753, + [787] = 753, + [788] = 753, + [789] = 753, + [790] = 753, + [791] = 753, + [792] = 753, + [793] = 753, + [794] = 753, + [795] = 753, + [796] = 753, + [797] = 271, + [798] = 785, + [799] = 274, + [800] = 271, + [801] = 801, + [802] = 272, + [803] = 273, + [804] = 272, + [805] = 271, + [806] = 274, + [807] = 275, + [808] = 276, + [809] = 276, + [810] = 275, + [811] = 273, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, [818] = 818, - [819] = 785, - [820] = 785, - [821] = 785, + [819] = 819, + [820] = 820, + [821] = 821, [822] = 822, - [823] = 785, - [824] = 277, - [825] = 785, - [826] = 785, - [827] = 274, - [828] = 277, - [829] = 785, - [830] = 785, - [831] = 785, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 815, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, [832] = 832, [833] = 833, - [834] = 785, - [835] = 785, - [836] = 836, + [834] = 821, + [835] = 835, + [836] = 820, [837] = 837, - [838] = 838, + [838] = 814, [839] = 839, - [840] = 833, - [841] = 841, + [840] = 840, + [841] = 818, [842] = 842, - [843] = 843, - [844] = 280, - [845] = 271, + [843] = 822, + [844] = 844, + [845] = 845, [846] = 846, [847] = 847, [848] = 848, - [849] = 273, + [849] = 849, [850] = 850, - [851] = 272, + [851] = 851, [852] = 852, [853] = 853, - [854] = 794, + [854] = 854, [855] = 855, - [856] = 277, - [857] = 788, + [856] = 856, + [857] = 857, [858] = 858, [859] = 859, [860] = 860, [861] = 861, - [862] = 862, - [863] = 863, - [864] = 805, + [862] = 850, + [863] = 821, + [864] = 864, [865] = 865, [866] = 866, - [867] = 274, + [867] = 867, [868] = 868, [869] = 869, - [870] = 870, - [871] = 277, - [872] = 274, - [873] = 272, - [874] = 273, - [875] = 875, - [876] = 876, - [877] = 807, - [878] = 878, - [879] = 271, - [880] = 280, - [881] = 881, - [882] = 882, - [883] = 280, + [870] = 276, + [871] = 871, + [872] = 275, + [873] = 273, + [874] = 272, + [875] = 271, + [876] = 274, + [877] = 823, + [878] = 271, + [879] = 275, + [880] = 276, + [881] = 274, + [882] = 272, + [883] = 273, [884] = 884, [885] = 885, - [886] = 280, + [886] = 886, [887] = 887, - [888] = 271, - [889] = 273, - [890] = 272, - [891] = 839, - [892] = 843, - [893] = 893, - [894] = 858, - [895] = 878, + [888] = 857, + [889] = 849, + [890] = 855, + [891] = 891, + [892] = 848, + [893] = 829, + [894] = 894, + [895] = 845, [896] = 896, - [897] = 881, + [897] = 844, [898] = 898, [899] = 899, - [900] = 853, + [900] = 900, [901] = 901, - [902] = 902, - [903] = 875, - [904] = 274, - [905] = 866, - [906] = 859, + [902] = 837, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, - [911] = 838, + [911] = 911, [912] = 912, - [913] = 913, + [913] = 832, [914] = 914, [915] = 915, - [916] = 916, - [917] = 271, - [918] = 277, + [916] = 835, + [917] = 917, + [918] = 918, [919] = 919, [920] = 920, [921] = 921, - [922] = 832, - [923] = 923, + [922] = 853, + [923] = 859, [924] = 924, [925] = 925, - [926] = 926, + [926] = 271, [927] = 927, - [928] = 277, + [928] = 928, [929] = 929, [930] = 930, [931] = 931, - [932] = 273, - [933] = 272, + [932] = 932, + [933] = 933, [934] = 934, [935] = 935, [936] = 936, - [937] = 274, - [938] = 846, + [937] = 937, + [938] = 938, [939] = 939, - [940] = 842, + [940] = 852, [941] = 941, [942] = 942, [943] = 943, [944] = 944, - [945] = 841, + [945] = 945, [946] = 946, [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 280, + [948] = 372, + [949] = 361, + [950] = 367, + [951] = 374, [952] = 952, - [953] = 953, - [954] = 954, + [953] = 273, + [954] = 846, [955] = 955, - [956] = 277, - [957] = 949, - [958] = 958, - [959] = 959, + [956] = 956, + [957] = 359, + [958] = 363, + [959] = 272, [960] = 960, - [961] = 961, - [962] = 962, + [961] = 377, + [962] = 274, [963] = 963, - [964] = 964, - [965] = 965, + [964] = 275, + [965] = 276, [966] = 966, - [967] = 271, - [968] = 375, + [967] = 967, + [968] = 968, [969] = 969, - [970] = 970, + [970] = 273, [971] = 971, [972] = 972, [973] = 973, [974] = 974, [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, + [976] = 272, + [977] = 274, + [978] = 831, [979] = 979, - [980] = 980, + [980] = 271, [981] = 981, [982] = 982, [983] = 983, [984] = 984, [985] = 985, - [986] = 986, + [986] = 275, [987] = 987, [988] = 988, - [989] = 989, - [990] = 365, - [991] = 273, + [989] = 276, + [990] = 990, + [991] = 991, [992] = 992, [993] = 993, - [994] = 367, - [995] = 360, - [996] = 370, + [994] = 994, + [995] = 995, + [996] = 365, [997] = 997, - [998] = 366, - [999] = 363, - [1000] = 369, - [1001] = 364, - [1002] = 369, - [1003] = 365, - [1004] = 364, - [1005] = 1005, - [1006] = 359, - [1007] = 373, - [1008] = 372, - [1009] = 357, - [1010] = 368, - [1011] = 362, - [1012] = 361, - [1013] = 1013, - [1014] = 358, - [1015] = 1015, - [1016] = 376, - [1017] = 374, - [1018] = 375, + [998] = 994, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 373, + [1003] = 370, + [1004] = 1004, + [1005] = 369, + [1006] = 368, + [1007] = 364, + [1008] = 366, + [1009] = 360, + [1010] = 376, + [1011] = 378, + [1012] = 1012, + [1013] = 379, + [1014] = 1014, + [1015] = 867, + [1016] = 847, + [1017] = 1017, + [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 360, - [1022] = 1022, + [1021] = 1021, + [1022] = 840, [1023] = 1023, [1024] = 1024, - [1025] = 366, - [1026] = 359, - [1027] = 373, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, [1028] = 1028, - [1029] = 362, - [1030] = 368, - [1031] = 357, - [1032] = 372, - [1033] = 370, - [1034] = 855, - [1035] = 861, - [1036] = 272, - [1037] = 852, - [1038] = 274, - [1039] = 363, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 842, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 842, + [1038] = 1038, + [1039] = 1039, [1040] = 1040, - [1041] = 374, - [1042] = 376, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 358, - [1046] = 361, + [1045] = 842, + [1046] = 847, [1047] = 1047, [1048] = 1048, [1049] = 1049, - [1050] = 912, + [1050] = 1050, [1051] = 1051, - [1052] = 924, + [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 1055, @@ -3600,103 +3645,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1057] = 1057, [1058] = 1058, [1059] = 1059, - [1060] = 1060, + [1060] = 1054, [1061] = 1061, [1062] = 1062, [1063] = 1063, - [1064] = 870, - [1065] = 863, + [1064] = 1064, + [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 870, - [1072] = 863, + [1071] = 1071, + [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, - [1077] = 942, + [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1080, + [1080] = 842, [1081] = 1081, [1082] = 1082, - [1083] = 943, - [1084] = 909, + [1083] = 1083, + [1084] = 847, [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 272, - [1092] = 934, - [1093] = 870, + [1086] = 276, + [1087] = 275, + [1088] = 271, + [1089] = 274, + [1090] = 272, + [1091] = 273, + [1092] = 1092, + [1093] = 896, [1094] = 1094, - [1095] = 863, - [1096] = 1096, + [1095] = 898, + [1096] = 899, [1097] = 1097, - [1098] = 898, + [1098] = 1098, [1099] = 1099, - [1100] = 1100, + [1100] = 903, [1101] = 1101, - [1102] = 946, + [1102] = 905, [1103] = 1103, [1104] = 1104, - [1105] = 1105, - [1106] = 870, - [1107] = 1107, + [1105] = 909, + [1106] = 1106, + [1107] = 911, [1108] = 1108, - [1109] = 863, + [1109] = 1109, [1110] = 1110, - [1111] = 1111, + [1111] = 901, [1112] = 1112, - [1113] = 1113, + [1113] = 900, [1114] = 1114, [1115] = 1115, - [1116] = 941, - [1117] = 277, + [1116] = 1116, + [1117] = 1117, [1118] = 1118, - [1119] = 1119, + [1119] = 887, [1120] = 1120, - [1121] = 1121, + [1121] = 847, [1122] = 1122, - [1123] = 884, + [1123] = 1123, [1124] = 1124, - [1125] = 882, - [1126] = 1126, - [1127] = 1127, + [1125] = 1125, + [1126] = 914, + [1127] = 921, [1128] = 1128, [1129] = 1129, - [1130] = 936, + [1130] = 1130, [1131] = 1131, [1132] = 1132, [1133] = 1133, - [1134] = 1134, + [1134] = 904, [1135] = 1135, [1136] = 1136, - [1137] = 935, + [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 1142, + [1142] = 276, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1146, + [1146] = 275, [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 1152, + [1152] = 271, [1153] = 1153, [1154] = 1154, - [1155] = 280, - [1156] = 931, + [1155] = 1155, + [1156] = 274, [1157] = 1157, [1158] = 1158, [1159] = 1159, @@ -3718,8893 +3763,8982 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1178, - [1179] = 271, + [1178] = 273, + [1179] = 1057, [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1184, + [1184] = 272, [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 274, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1079, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1115, - [1208] = 273, - [1209] = 1209, - [1210] = 929, - [1211] = 369, - [1212] = 365, - [1213] = 805, - [1214] = 807, - [1215] = 833, - [1216] = 375, - [1217] = 360, - [1218] = 366, - [1219] = 788, - [1220] = 870, - [1221] = 863, - [1222] = 364, - [1223] = 390, - [1224] = 390, - [1225] = 794, - [1226] = 383, - [1227] = 363, - [1228] = 386, - [1229] = 386, - [1230] = 383, - [1231] = 387, - [1232] = 359, - [1233] = 373, - [1234] = 372, - [1235] = 357, - [1236] = 368, - [1237] = 362, - [1238] = 361, - [1239] = 358, - [1240] = 376, - [1241] = 374, - [1242] = 387, - [1243] = 838, - [1244] = 807, - [1245] = 863, - [1246] = 870, - [1247] = 805, - [1248] = 412, - [1249] = 363, - [1250] = 366, - [1251] = 416, - [1252] = 409, - [1253] = 364, - [1254] = 365, - [1255] = 369, - [1256] = 360, - [1257] = 863, - [1258] = 375, - [1259] = 367, - [1260] = 374, - [1261] = 376, - [1262] = 794, - [1263] = 358, - [1264] = 870, - [1265] = 361, - [1266] = 362, - [1267] = 368, - [1268] = 357, - [1269] = 870, - [1270] = 833, - [1271] = 1058, - [1272] = 1059, - [1273] = 1060, - [1274] = 1063, - [1275] = 372, - [1276] = 373, - [1277] = 359, - [1278] = 870, - [1279] = 788, - [1280] = 863, - [1281] = 370, - [1282] = 846, - [1283] = 855, - [1284] = 1105, - [1285] = 842, - [1286] = 414, - [1287] = 841, - [1288] = 852, - [1289] = 839, - [1290] = 861, - [1291] = 412, - [1292] = 416, - [1293] = 409, - [1294] = 863, - [1295] = 1104, - [1296] = 414, - [1297] = 435, - [1298] = 881, - [1299] = 931, - [1300] = 935, - [1301] = 936, - [1302] = 430, - [1303] = 941, - [1304] = 943, - [1305] = 426, - [1306] = 841, - [1307] = 435, - [1308] = 946, - [1309] = 898, - [1310] = 369, - [1311] = 359, - [1312] = 367, - [1313] = 373, - [1314] = 372, - [1315] = 357, - [1316] = 846, - [1317] = 365, - [1318] = 368, - [1319] = 362, - [1320] = 838, - [1321] = 909, - [1322] = 361, - [1323] = 912, - [1324] = 358, - [1325] = 376, - [1326] = 374, - [1327] = 423, - [1328] = 924, - [1329] = 375, - [1330] = 430, - [1331] = 360, - [1332] = 426, - [1333] = 434, - [1334] = 842, - [1335] = 364, - [1336] = 366, - [1337] = 859, - [1338] = 434, - [1339] = 423, - [1340] = 363, - [1341] = 875, - [1342] = 853, - [1343] = 843, - [1344] = 870, - [1345] = 839, - [1346] = 858, - [1347] = 866, - [1348] = 878, - [1349] = 863, - [1350] = 861, - [1351] = 440, - [1352] = 934, - [1353] = 942, - [1354] = 383, - [1355] = 881, - [1356] = 386, - [1357] = 1357, - [1358] = 1357, - [1359] = 387, - [1360] = 1357, - [1361] = 390, - [1362] = 1357, - [1363] = 1357, - [1364] = 1357, - [1365] = 442, - [1366] = 1357, - [1367] = 383, - [1368] = 386, - [1369] = 387, - [1370] = 1357, - [1371] = 1357, - [1372] = 390, - [1373] = 446, - [1374] = 1357, - [1375] = 363, - [1376] = 366, - [1377] = 1357, - [1378] = 1357, - [1379] = 390, - [1380] = 440, - [1381] = 1357, - [1382] = 387, - [1383] = 855, - [1384] = 858, - [1385] = 360, - [1386] = 444, - [1387] = 1357, - [1388] = 390, - [1389] = 453, - [1390] = 1357, - [1391] = 1357, - [1392] = 387, - [1393] = 446, - [1394] = 843, - [1395] = 1357, - [1396] = 386, - [1397] = 866, - [1398] = 383, - [1399] = 875, - [1400] = 442, - [1401] = 852, - [1402] = 859, - [1403] = 383, - [1404] = 907, - [1405] = 364, - [1406] = 1357, - [1407] = 853, - [1408] = 1357, - [1409] = 1357, - [1410] = 386, - [1411] = 1357, - [1412] = 878, - [1413] = 365, - [1414] = 444, - [1415] = 1357, - [1416] = 369, - [1417] = 453, - [1418] = 1357, - [1419] = 359, - [1420] = 373, - [1421] = 372, - [1422] = 357, - [1423] = 368, - [1424] = 367, - [1425] = 362, - [1426] = 361, - [1427] = 358, - [1428] = 376, - [1429] = 374, - [1430] = 375, - [1431] = 1357, - [1432] = 416, + [1188] = 372, + [1189] = 374, + [1190] = 271, + [1191] = 360, + [1192] = 366, + [1193] = 364, + [1194] = 368, + [1195] = 369, + [1196] = 370, + [1197] = 373, + [1198] = 820, + [1199] = 379, + [1200] = 378, + [1201] = 376, + [1202] = 361, + [1203] = 275, + [1204] = 367, + [1205] = 374, + [1206] = 375, + [1207] = 814, + [1208] = 377, + [1209] = 363, + [1210] = 359, + [1211] = 273, + [1212] = 276, + [1213] = 366, + [1214] = 272, + [1215] = 364, + [1216] = 368, + [1217] = 369, + [1218] = 370, + [1219] = 373, + [1220] = 379, + [1221] = 378, + [1222] = 376, + [1223] = 361, + [1224] = 372, + [1225] = 847, + [1226] = 377, + [1227] = 822, + [1228] = 274, + [1229] = 360, + [1230] = 367, + [1231] = 363, + [1232] = 818, + [1233] = 359, + [1234] = 365, + [1235] = 815, + [1236] = 842, + [1237] = 842, + [1238] = 1238, + [1239] = 1238, + [1240] = 1058, + [1241] = 1238, + [1242] = 1238, + [1243] = 272, + [1244] = 847, + [1245] = 1238, + [1246] = 1238, + [1247] = 1238, + [1248] = 1238, + [1249] = 1238, + [1250] = 849, + [1251] = 1040, + [1252] = 1035, + [1253] = 848, + [1254] = 845, + [1255] = 1238, + [1256] = 844, + [1257] = 1238, + [1258] = 837, + [1259] = 831, + [1260] = 1238, + [1261] = 276, + [1262] = 1238, + [1263] = 842, + [1264] = 814, + [1265] = 847, + [1266] = 275, + [1267] = 846, + [1268] = 852, + [1269] = 1238, + [1270] = 1238, + [1271] = 274, + [1272] = 1238, + [1273] = 847, + [1274] = 842, + [1275] = 1238, + [1276] = 1238, + [1277] = 820, + [1278] = 847, + [1279] = 1051, + [1280] = 273, + [1281] = 1034, + [1282] = 1238, + [1283] = 271, + [1284] = 1028, + [1285] = 1238, + [1286] = 1238, + [1287] = 842, + [1288] = 1238, + [1289] = 818, + [1290] = 815, + [1291] = 822, + [1292] = 1238, + [1293] = 1238, + [1294] = 1294, + [1295] = 832, + [1296] = 1296, + [1297] = 1294, + [1298] = 1294, + [1299] = 1299, + [1300] = 845, + [1301] = 1299, + [1302] = 1294, + [1303] = 386, + [1304] = 387, + [1305] = 1296, + [1306] = 844, + [1307] = 1294, + [1308] = 1299, + [1309] = 1294, + [1310] = 1294, + [1311] = 1296, + [1312] = 1299, + [1313] = 1294, + [1314] = 1296, + [1315] = 1299, + [1316] = 1299, + [1317] = 384, + [1318] = 1299, + [1319] = 1296, + [1320] = 1299, + [1321] = 1296, + [1322] = 1294, + [1323] = 393, + [1324] = 1296, + [1325] = 1296, + [1326] = 837, + [1327] = 849, + [1328] = 1294, + [1329] = 1294, + [1330] = 1296, + [1331] = 1299, + [1332] = 1294, + [1333] = 1296, + [1334] = 1299, + [1335] = 1296, + [1336] = 1336, + [1337] = 847, + [1338] = 1299, + [1339] = 1296, + [1340] = 848, + [1341] = 900, + [1342] = 842, + [1343] = 901, + [1344] = 887, + [1345] = 857, + [1346] = 855, + [1347] = 829, + [1348] = 1299, + [1349] = 835, + [1350] = 850, + [1351] = 393, + [1352] = 1299, + [1353] = 859, + [1354] = 1294, + [1355] = 1296, + [1356] = 1294, + [1357] = 1299, + [1358] = 387, + [1359] = 386, + [1360] = 1294, + [1361] = 1296, + [1362] = 911, + [1363] = 853, + [1364] = 1296, + [1365] = 1299, + [1366] = 1294, + [1367] = 909, + [1368] = 905, + [1369] = 903, + [1370] = 1299, + [1371] = 899, + [1372] = 898, + [1373] = 896, + [1374] = 1296, + [1375] = 1299, + [1376] = 1294, + [1377] = 1296, + [1378] = 1299, + [1379] = 1296, + [1380] = 1294, + [1381] = 1299, + [1382] = 1296, + [1383] = 384, + [1384] = 374, + [1385] = 359, + [1386] = 372, + [1387] = 867, + [1388] = 379, + [1389] = 411, + [1390] = 832, + [1391] = 835, + [1392] = 377, + [1393] = 921, + [1394] = 831, + [1395] = 378, + [1396] = 365, + [1397] = 925, + [1398] = 363, + [1399] = 376, + [1400] = 1400, + [1401] = 373, + [1402] = 407, + [1403] = 370, + [1404] = 369, + [1405] = 409, + [1406] = 368, + [1407] = 364, + [1408] = 410, + [1409] = 366, + [1410] = 360, + [1411] = 852, + [1412] = 1412, + [1413] = 375, + [1414] = 855, + [1415] = 367, + [1416] = 361, + [1417] = 1417, + [1418] = 411, + [1419] = 846, + [1420] = 853, + [1421] = 410, + [1422] = 409, + [1423] = 850, + [1424] = 859, + [1425] = 407, + [1426] = 857, + [1427] = 829, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1428, [1433] = 1433, - [1434] = 1433, + [1434] = 1434, [1435] = 1435, - [1436] = 414, - [1437] = 1437, - [1438] = 1433, - [1439] = 1435, - [1440] = 949, - [1441] = 941, - [1442] = 412, - [1443] = 960, - [1444] = 386, - [1445] = 1437, - [1446] = 1433, - [1447] = 369, - [1448] = 416, - [1449] = 414, - [1450] = 409, - [1451] = 1433, - [1452] = 364, - [1453] = 414, - [1454] = 409, - [1455] = 416, - [1456] = 412, - [1457] = 1437, - [1458] = 912, - [1459] = 383, - [1460] = 1435, - [1461] = 1435, - [1462] = 364, - [1463] = 1437, - [1464] = 1433, - [1465] = 1433, - [1466] = 370, + [1436] = 1436, + [1437] = 372, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 887, + [1452] = 1446, + [1453] = 1453, + [1454] = 1454, + [1455] = 1449, + [1456] = 1456, + [1457] = 1434, + [1458] = 1435, + [1459] = 1459, + [1460] = 1453, + [1461] = 1454, + [1462] = 1449, + [1463] = 1456, + [1464] = 1447, + [1465] = 1434, + [1466] = 1444, [1467] = 1435, - [1468] = 909, - [1469] = 1433, - [1470] = 359, - [1471] = 363, - [1472] = 1437, - [1473] = 1435, - [1474] = 359, - [1475] = 373, - [1476] = 372, - [1477] = 357, - [1478] = 368, - [1479] = 362, - [1480] = 361, - [1481] = 358, - [1482] = 376, - [1483] = 374, - [1484] = 376, - [1485] = 375, - [1486] = 1437, - [1487] = 373, - [1488] = 360, - [1489] = 1435, - [1490] = 366, - [1491] = 1435, - [1492] = 1437, - [1493] = 409, - [1494] = 1437, - [1495] = 372, - [1496] = 1433, - [1497] = 357, - [1498] = 416, - [1499] = 387, - [1500] = 1435, - [1501] = 368, - [1502] = 1433, - [1503] = 362, - [1504] = 412, - [1505] = 361, - [1506] = 363, - [1507] = 358, - [1508] = 366, - [1509] = 370, - [1510] = 898, - [1511] = 374, - [1512] = 1512, - [1513] = 949, - [1514] = 367, - [1515] = 390, - [1516] = 387, - [1517] = 1435, - [1518] = 386, - [1519] = 943, - [1520] = 1433, - [1521] = 383, - [1522] = 360, - [1523] = 1437, - [1524] = 931, - [1525] = 1435, - [1526] = 1433, - [1527] = 1437, - [1528] = 948, - [1529] = 961, - [1530] = 1437, - [1531] = 365, - [1532] = 1435, - [1533] = 946, - [1534] = 1437, - [1535] = 1437, - [1536] = 1435, - [1537] = 414, - [1538] = 1433, - [1539] = 409, - [1540] = 369, - [1541] = 365, - [1542] = 1433, - [1543] = 1437, - [1544] = 412, - [1545] = 1435, - [1546] = 1435, - [1547] = 1433, - [1548] = 1437, - [1549] = 936, - [1550] = 1437, - [1551] = 935, - [1552] = 1435, - [1553] = 1437, - [1554] = 924, - [1555] = 1437, + [1468] = 1449, + [1469] = 1453, + [1470] = 1454, + [1471] = 1449, + [1472] = 1456, + [1473] = 1443, + [1474] = 1434, + [1475] = 1475, + [1476] = 1435, + [1477] = 1454, + [1478] = 1442, + [1479] = 1441, + [1480] = 1453, + [1481] = 1454, + [1482] = 1449, + [1483] = 1456, + [1484] = 1484, + [1485] = 1434, + [1486] = 1435, + [1487] = 1453, + [1488] = 1453, + [1489] = 1454, + [1490] = 1438, + [1491] = 1449, + [1492] = 1456, + [1493] = 1484, + [1494] = 1434, + [1495] = 1435, + [1496] = 1496, + [1497] = 1440, + [1498] = 1498, + [1499] = 1456, + [1500] = 1433, + [1501] = 1428, + [1502] = 1438, + [1503] = 1447, + [1504] = 1431, + [1505] = 1430, + [1506] = 1453, + [1507] = 1507, + [1508] = 1508, + [1509] = 1454, + [1510] = 1510, + [1511] = 1429, + [1512] = 1449, + [1513] = 1496, + [1514] = 1456, + [1515] = 1515, + [1516] = 1484, + [1517] = 1434, + [1518] = 1518, + [1519] = 1459, + [1520] = 1520, + [1521] = 1521, + [1522] = 1430, + [1523] = 1431, + [1524] = 1428, + [1525] = 1433, + [1526] = 1440, + [1527] = 1441, + [1528] = 1442, + [1529] = 1443, + [1530] = 1530, + [1531] = 1444, + [1532] = 1484, + [1533] = 1459, + [1534] = 1498, + [1535] = 1446, + [1536] = 1498, + [1537] = 1435, + [1538] = 1430, + [1539] = 1447, + [1540] = 1438, + [1541] = 1438, + [1542] = 1508, + [1543] = 1496, + [1544] = 1459, + [1545] = 1459, + [1546] = 1431, + [1547] = 1447, + [1548] = 1430, + [1549] = 1446, + [1550] = 1428, + [1551] = 1444, + [1552] = 1508, + [1553] = 1443, + [1554] = 1431, + [1555] = 1428, [1556] = 1433, - [1557] = 375, - [1558] = 1435, - [1559] = 1435, - [1560] = 1437, - [1561] = 1435, - [1562] = 1433, - [1563] = 390, - [1564] = 1433, - [1565] = 499, - [1566] = 942, - [1567] = 483, - [1568] = 423, - [1569] = 426, - [1570] = 483, - [1571] = 430, - [1572] = 430, - [1573] = 1104, - [1574] = 1105, - [1575] = 423, - [1576] = 423, - [1577] = 426, - [1578] = 1063, - [1579] = 1060, - [1580] = 1059, - [1581] = 1058, - [1582] = 870, - [1583] = 1583, - [1584] = 863, - [1585] = 870, - [1586] = 434, - [1587] = 863, - [1588] = 412, - [1589] = 934, - [1590] = 1590, - [1591] = 416, - [1592] = 435, - [1593] = 409, - [1594] = 480, - [1595] = 488, - [1596] = 489, - [1597] = 414, - [1598] = 494, - [1599] = 496, - [1600] = 383, - [1601] = 1601, - [1602] = 409, - [1603] = 416, - [1604] = 386, - [1605] = 503, - [1606] = 387, - [1607] = 505, - [1608] = 499, - [1609] = 507, - [1610] = 482, - [1611] = 494, - [1612] = 503, - [1613] = 423, - [1614] = 505, - [1615] = 510, - [1616] = 434, - [1617] = 480, - [1618] = 434, - [1619] = 435, - [1620] = 435, - [1621] = 426, - [1622] = 488, - [1623] = 430, - [1624] = 426, - [1625] = 414, - [1626] = 489, - [1627] = 490, - [1628] = 435, - [1629] = 390, - [1630] = 507, - [1631] = 430, - [1632] = 511, - [1633] = 490, - [1634] = 510, - [1635] = 482, - [1636] = 511, - [1637] = 434, - [1638] = 412, - [1639] = 496, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1640, - [1649] = 430, - [1650] = 1650, - [1651] = 1651, - [1652] = 1644, - [1653] = 1653, - [1654] = 1646, - [1655] = 1655, - [1656] = 364, - [1657] = 1657, - [1658] = 435, - [1659] = 1653, - [1660] = 434, - [1661] = 1653, - [1662] = 1643, - [1663] = 1663, - [1664] = 1646, - [1665] = 1655, - [1666] = 1645, - [1667] = 1647, - [1668] = 1646, - [1669] = 1645, - [1670] = 1644, - [1671] = 1643, - [1672] = 1642, - [1673] = 1640, - [1674] = 423, - [1675] = 1647, - [1676] = 1653, - [1677] = 1644, - [1678] = 1643, - [1679] = 1642, - [1680] = 1640, - [1681] = 1647, - [1682] = 1645, - [1683] = 1644, - [1684] = 1643, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1689, - [1690] = 1690, - [1691] = 1640, - [1692] = 1692, - [1693] = 1655, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1642, - [1698] = 1647, - [1699] = 423, - [1700] = 1640, - [1701] = 1647, - [1702] = 1645, - [1703] = 1703, - [1704] = 1704, - [1705] = 1705, - [1706] = 1644, - [1707] = 1643, - [1708] = 1646, - [1709] = 1709, - [1710] = 1642, - [1711] = 1711, - [1712] = 1645, - [1713] = 430, - [1714] = 1714, - [1715] = 1640, - [1716] = 1647, - [1717] = 1703, - [1718] = 1692, - [1719] = 1645, - [1720] = 1689, - [1721] = 426, - [1722] = 1644, - [1723] = 1644, - [1724] = 1724, - [1725] = 1642, - [1726] = 426, - [1727] = 1643, - [1728] = 1642, - [1729] = 1692, - [1730] = 1643, - [1731] = 1655, - [1732] = 1663, - [1733] = 1689, - [1734] = 1643, - [1735] = 1642, - [1736] = 1663, - [1737] = 1644, - [1738] = 1645, - [1739] = 1692, - [1740] = 1686, - [1741] = 1703, - [1742] = 1687, - [1743] = 1690, - [1744] = 1694, - [1745] = 1647, - [1746] = 1695, - [1747] = 1640, - [1748] = 1696, - [1749] = 1705, - [1750] = 1709, - [1751] = 1711, - [1752] = 1714, - [1753] = 1642, - [1754] = 1643, - [1755] = 1689, - [1756] = 1714, - [1757] = 1692, - [1758] = 1711, - [1759] = 1644, - [1760] = 1703, - [1761] = 1709, - [1762] = 1692, - [1763] = 1645, - [1764] = 1647, - [1765] = 1640, - [1766] = 1642, - [1767] = 1643, - [1768] = 1703, - [1769] = 1705, - [1770] = 1689, - [1771] = 1644, - [1772] = 1645, - [1773] = 1696, - [1774] = 1647, - [1775] = 375, - [1776] = 1695, - [1777] = 1694, - [1778] = 1690, - [1779] = 1687, - [1780] = 1640, - [1781] = 1686, - [1782] = 1653, - [1783] = 434, - [1784] = 1642, - [1785] = 1643, - [1786] = 1653, - [1787] = 1663, - [1788] = 1644, - [1789] = 1645, - [1790] = 1689, - [1791] = 1647, - [1792] = 1640, - [1793] = 363, - [1794] = 1642, - [1795] = 1643, - [1796] = 1796, - [1797] = 1644, - [1798] = 1714, - [1799] = 1711, - [1800] = 1709, - [1801] = 1705, - [1802] = 1642, - [1803] = 1645, - [1804] = 1804, - [1805] = 1714, - [1806] = 1642, - [1807] = 1711, - [1808] = 1696, - [1809] = 1695, - [1810] = 1694, - [1811] = 1690, - [1812] = 1687, - [1813] = 1709, - [1814] = 1686, - [1815] = 1653, - [1816] = 1816, - [1817] = 1692, - [1818] = 1640, - [1819] = 1643, - [1820] = 1705, - [1821] = 1644, - [1822] = 1663, - [1823] = 1703, - [1824] = 1686, - [1825] = 1645, - [1826] = 1687, - [1827] = 1690, - [1828] = 1694, - [1829] = 1647, - [1830] = 1695, - [1831] = 1640, - [1832] = 1696, - [1833] = 1695, - [1834] = 1696, - [1835] = 1705, - [1836] = 1709, - [1837] = 1711, - [1838] = 435, - [1839] = 1714, - [1840] = 1653, - [1841] = 1703, - [1842] = 1689, - [1843] = 1647, - [1844] = 1646, - [1845] = 1692, - [1846] = 1692, - [1847] = 1689, - [1848] = 1655, - [1849] = 1645, - [1850] = 1850, - [1851] = 1644, - [1852] = 1643, - [1853] = 1714, - [1854] = 1711, - [1855] = 1663, - [1856] = 1694, - [1857] = 1709, - [1858] = 1705, - [1859] = 1690, - [1860] = 1696, - [1861] = 1687, - [1862] = 1695, - [1863] = 1686, - [1864] = 1642, - [1865] = 1653, - [1866] = 1866, - [1867] = 1663, - [1868] = 1653, - [1869] = 1655, - [1870] = 1703, - [1871] = 1640, - [1872] = 1647, - [1873] = 1646, - [1874] = 1645, - [1875] = 1642, - [1876] = 1647, - [1877] = 1644, - [1878] = 1643, - [1879] = 1642, - [1880] = 1714, - [1881] = 1711, - [1882] = 1709, - [1883] = 1705, - [1884] = 1643, - [1885] = 1694, - [1886] = 1690, - [1887] = 1696, - [1888] = 1653, - [1889] = 1686, - [1890] = 1687, - [1891] = 1695, - [1892] = 1690, - [1893] = 1694, - [1894] = 1695, - [1895] = 1696, - [1896] = 1640, - [1897] = 1705, - [1898] = 1709, - [1899] = 1711, - [1900] = 1714, - [1901] = 1644, - [1902] = 1687, - [1903] = 1686, - [1904] = 1703, - [1905] = 1905, - [1906] = 1653, - [1907] = 1663, - [1908] = 1692, - [1909] = 1663, - [1910] = 1689, - [1911] = 1694, - [1912] = 426, - [1913] = 1647, - [1914] = 1690, - [1915] = 1687, - [1916] = 1645, - [1917] = 1644, - [1918] = 1643, - [1919] = 1642, - [1920] = 1686, - [1921] = 1653, - [1922] = 1645, - [1923] = 1923, - [1924] = 1924, - [1925] = 1640, - [1926] = 1647, - [1927] = 1646, - [1928] = 1928, - [1929] = 1645, - [1930] = 1647, - [1931] = 1641, - [1932] = 1687, - [1933] = 1644, - [1934] = 1643, - [1935] = 1655, - [1936] = 1642, - [1937] = 1640, - [1938] = 1645, - [1939] = 442, - [1940] = 1690, - [1941] = 446, - [1942] = 1655, - [1943] = 440, - [1944] = 453, - [1945] = 1663, - [1946] = 1663, - [1947] = 1689, - [1948] = 1663, - [1949] = 444, - [1950] = 1653, - [1951] = 1686, - [1952] = 1687, - [1953] = 1690, - [1954] = 1694, - [1955] = 1686, - [1956] = 1695, - [1957] = 1696, - [1958] = 1705, - [1959] = 1709, - [1960] = 1711, - [1961] = 1714, - [1962] = 1687, - [1963] = 1690, - [1964] = 1694, - [1965] = 1703, - [1966] = 435, - [1967] = 1692, - [1968] = 1692, - [1969] = 1689, - [1970] = 430, - [1971] = 1695, - [1972] = 1696, - [1973] = 1705, - [1974] = 1689, - [1975] = 1646, - [1976] = 1663, - [1977] = 1709, - [1978] = 1653, - [1979] = 1686, - [1980] = 1687, - [1981] = 1690, - [1982] = 1694, - [1983] = 1663, - [1984] = 1695, - [1985] = 1696, - [1986] = 1705, - [1987] = 1709, - [1988] = 1711, - [1989] = 1711, - [1990] = 1714, - [1991] = 1703, - [1992] = 1714, - [1993] = 1714, - [1994] = 1703, - [1995] = 1703, - [1996] = 1711, - [1997] = 1692, - [1998] = 1709, - [1999] = 1689, - [2000] = 1646, - [2001] = 1663, - [2002] = 1692, - [2003] = 1655, - [2004] = 1653, - [2005] = 1686, - [2006] = 1687, - [2007] = 1690, - [2008] = 1694, - [2009] = 1695, - [2010] = 1696, - [2011] = 2011, - [2012] = 1705, - [2013] = 1709, - [2014] = 1711, - [2015] = 1714, - [2016] = 1905, - [2017] = 1705, - [2018] = 1703, - [2019] = 1696, - [2020] = 1692, - [2021] = 1695, - [2022] = 1905, - [2023] = 1689, - [2024] = 1663, - [2025] = 1686, - [2026] = 1641, - [2027] = 2027, - [2028] = 1796, - [2029] = 1641, - [2030] = 2027, - [2031] = 1796, - [2032] = 1641, - [2033] = 2033, - [2034] = 2027, - [2035] = 1796, - [2036] = 1694, - [2037] = 1641, - [2038] = 1690, - [2039] = 2039, - [2040] = 2027, - [2041] = 1796, - [2042] = 1641, - [2043] = 2027, - [2044] = 1796, - [2045] = 1905, - [2046] = 1641, - [2047] = 2027, - [2048] = 423, - [2049] = 1905, - [2050] = 1796, - [2051] = 1641, - [2052] = 2027, - [2053] = 1905, - [2054] = 1796, - [2055] = 1641, - [2056] = 2027, - [2057] = 1905, - [2058] = 1796, - [2059] = 1641, - [2060] = 2027, - [2061] = 1905, - [2062] = 1796, - [2063] = 1687, - [2064] = 1690, - [2065] = 1905, - [2066] = 1641, - [2067] = 2027, - [2068] = 2068, - [2069] = 1905, - [2070] = 1796, - [2071] = 1905, - [2072] = 1709, - [2073] = 1640, - [2074] = 1686, - [2075] = 1905, - [2076] = 1653, - [2077] = 1694, - [2078] = 1663, - [2079] = 1696, - [2080] = 1705, - [2081] = 1905, - [2082] = 1663, - [2083] = 366, - [2084] = 1653, - [2085] = 1686, - [2086] = 1687, - [2087] = 1690, - [2088] = 1694, - [2089] = 1709, - [2090] = 1695, - [2091] = 1696, - [2092] = 1711, - [2093] = 1705, - [2094] = 1714, - [2095] = 1686, - [2096] = 1703, - [2097] = 1711, - [2098] = 1714, - [2099] = 1692, - [2100] = 1689, - [2101] = 1663, - [2102] = 1646, - [2103] = 1689, - [2104] = 1653, - [2105] = 1686, - [2106] = 1692, - [2107] = 1687, - [2108] = 1690, - [2109] = 1694, - [2110] = 1703, - [2111] = 1714, - [2112] = 434, - [2113] = 1711, - [2114] = 1695, - [2115] = 1709, - [2116] = 1696, - [2117] = 1705, - [2118] = 1696, - [2119] = 1695, - [2120] = 1694, - [2121] = 1690, - [2122] = 1705, - [2123] = 1709, - [2124] = 1689, - [2125] = 1692, - [2126] = 1687, - [2127] = 1711, - [2128] = 1686, - [2129] = 1714, - [2130] = 1640, - [2131] = 1703, - [2132] = 1692, - [2133] = 1689, - [2134] = 1663, - [2135] = 1703, - [2136] = 1703, - [2137] = 1686, - [2138] = 360, - [2139] = 863, - [2140] = 1687, - [2141] = 1689, - [2142] = 1692, - [2143] = 1689, - [2144] = 1692, - [2145] = 1690, - [2146] = 383, - [2147] = 1694, - [2148] = 1695, - [2149] = 1696, - [2150] = 870, - [2151] = 1703, - [2152] = 2152, - [2153] = 369, - [2154] = 365, - [2155] = 1714, - [2156] = 1711, - [2157] = 1695, - [2158] = 1653, - [2159] = 1705, - [2160] = 1709, - [2161] = 1711, - [2162] = 1714, - [2163] = 1711, - [2164] = 1709, - [2165] = 1705, - [2166] = 1714, - [2167] = 1686, - [2168] = 1687, - [2169] = 1690, - [2170] = 1694, - [2171] = 1695, - [2172] = 1696, - [2173] = 1695, - [2174] = 1694, - [2175] = 1690, - [2176] = 1687, - [2177] = 1696, - [2178] = 1686, - [2179] = 1709, - [2180] = 1705, - [2181] = 1696, - [2182] = 1705, - [2183] = 1709, - [2184] = 1695, - [2185] = 1694, - [2186] = 1690, - [2187] = 1687, - [2188] = 1711, - [2189] = 1714, - [2190] = 1703, - [2191] = 1663, - [2192] = 1692, - [2193] = 1689, - [2194] = 386, - [2195] = 2195, - [2196] = 1703, - [2197] = 1714, - [2198] = 1711, - [2199] = 1709, - [2200] = 1705, - [2201] = 1696, - [2202] = 1695, - [2203] = 1685, - [2204] = 1703, - [2205] = 1663, - [2206] = 1653, - [2207] = 1686, - [2208] = 1687, - [2209] = 1690, - [2210] = 1692, - [2211] = 1689, - [2212] = 1694, - [2213] = 1695, - [2214] = 1688, - [2215] = 1796, - [2216] = 1905, - [2217] = 1663, - [2218] = 1804, - [2219] = 1640, - [2220] = 2011, - [2221] = 1647, - [2222] = 2027, - [2223] = 2223, - [2224] = 1696, - [2225] = 1645, - [2226] = 1694, - [2227] = 1647, - [2228] = 1641, - [2229] = 1705, - [2230] = 359, - [2231] = 373, - [2232] = 372, - [2233] = 357, - [2234] = 1644, - [2235] = 1709, - [2236] = 368, - [2237] = 362, - [2238] = 361, - [2239] = 1643, - [2240] = 358, - [2241] = 376, - [2242] = 442, - [2243] = 1711, - [2244] = 374, - [2245] = 1642, - [2246] = 387, - [2247] = 1905, - [2248] = 1714, - [2249] = 1641, - [2250] = 2027, - [2251] = 1796, - [2252] = 1703, - [2253] = 1641, - [2254] = 2027, - [2255] = 1796, - [2256] = 1641, - [2257] = 2027, - [2258] = 1796, - [2259] = 1641, - [2260] = 2027, - [2261] = 1796, - [2262] = 2223, - [2263] = 1641, - [2264] = 2027, - [2265] = 1663, - [2266] = 1689, - [2267] = 1655, - [2268] = 1796, - [2269] = 1641, - [2270] = 2027, - [2271] = 1646, - [2272] = 1796, - [2273] = 1687, - [2274] = 1642, - [2275] = 1643, - [2276] = 1686, - [2277] = 1641, - [2278] = 2027, - [2279] = 446, - [2280] = 1905, - [2281] = 1796, - [2282] = 1641, - [2283] = 2027, - [2284] = 1905, - [2285] = 2027, - [2286] = 1644, - [2287] = 440, - [2288] = 1796, - [2289] = 1645, - [2290] = 2223, - [2291] = 1647, - [2292] = 2027, - [2293] = 1640, - [2294] = 1642, - [2295] = 1905, - [2296] = 453, - [2297] = 1643, - [2298] = 1644, - [2299] = 1655, - [2300] = 1796, - [2301] = 1641, - [2302] = 2302, - [2303] = 1645, - [2304] = 2223, - [2305] = 1647, - [2306] = 2027, - [2307] = 390, - [2308] = 1905, - [2309] = 1796, - [2310] = 1641, - [2311] = 2223, - [2312] = 2027, - [2313] = 1905, - [2314] = 1796, - [2315] = 1641, - [2316] = 2223, - [2317] = 2027, - [2318] = 1804, - [2319] = 1905, - [2320] = 1796, - [2321] = 1688, - [2322] = 444, - [2323] = 1640, - [2324] = 1642, - [2325] = 1685, - [2326] = 1641, - [2327] = 2223, - [2328] = 2027, - [2329] = 1643, - [2330] = 1644, - [2331] = 1645, - [2332] = 1647, - [2333] = 2011, - [2334] = 1804, - [2335] = 1905, - [2336] = 1692, - [2337] = 1796, - [2338] = 1688, - [2339] = 1685, - [2340] = 1641, - [2341] = 2223, - [2342] = 1640, - [2343] = 1642, - [2344] = 2027, - [2345] = 2011, - [2346] = 1804, - [2347] = 1653, - [2348] = 1905, - [2349] = 1643, - [2350] = 1796, - [2351] = 1644, - [2352] = 1655, - [2353] = 1688, - [2354] = 1685, - [2355] = 1642, - [2356] = 1643, - [2357] = 1644, - [2358] = 1641, - [2359] = 1645, - [2360] = 1645, - [2361] = 2223, - [2362] = 2027, - [2363] = 1647, - [2364] = 2011, - [2365] = 1640, - [2366] = 1804, - [2367] = 1905, - [2368] = 1796, - [2369] = 1688, - [2370] = 1685, - [2371] = 1653, - [2372] = 1640, - [2373] = 1647, - [2374] = 1645, - [2375] = 1644, - [2376] = 1643, - [2377] = 1642, - [2378] = 1640, - [2379] = 1647, - [2380] = 1640, - [2381] = 1642, - [2382] = 1643, - [2383] = 390, - [2384] = 1653, - [2385] = 1644, - [2386] = 387, - [2387] = 386, - [2388] = 1645, - [2389] = 1647, - [2390] = 1689, - [2391] = 383, - [2392] = 435, - [2393] = 446, - [2394] = 416, - [2395] = 409, - [2396] = 361, - [2397] = 453, - [2398] = 444, - [2399] = 414, - [2400] = 414, - [2401] = 434, - [2402] = 423, - [2403] = 369, - [2404] = 423, - [2405] = 365, - [2406] = 375, - [2407] = 870, - [2408] = 1105, - [2409] = 430, - [2410] = 364, - [2411] = 1104, - [2412] = 409, - [2413] = 435, - [2414] = 409, - [2415] = 434, - [2416] = 376, - [2417] = 430, - [2418] = 412, - [2419] = 1063, - [2420] = 1060, - [2421] = 442, - [2422] = 440, - [2423] = 426, - [2424] = 366, + [1557] = 1440, + [1558] = 1442, + [1559] = 1441, + [1560] = 1447, + [1561] = 1496, + [1562] = 1508, + [1563] = 1433, + [1564] = 1440, + [1565] = 1440, + [1566] = 1496, + [1567] = 1508, + [1568] = 1441, + [1569] = 1442, + [1570] = 1443, + [1571] = 1444, + [1572] = 1446, + [1573] = 1447, + [1574] = 1438, + [1575] = 370, + [1576] = 1433, + [1577] = 1428, + [1578] = 1431, + [1579] = 1430, + [1580] = 1459, + [1581] = 1496, + [1582] = 1484, + [1583] = 1441, + [1584] = 1498, + [1585] = 1585, + [1586] = 1442, + [1587] = 1508, + [1588] = 1453, + [1589] = 1454, + [1590] = 1449, + [1591] = 1508, + [1592] = 1496, + [1593] = 1456, + [1594] = 1459, + [1595] = 1430, + [1596] = 1431, + [1597] = 1428, + [1598] = 1433, + [1599] = 1440, + [1600] = 1441, + [1601] = 1442, + [1602] = 1443, + [1603] = 1444, + [1604] = 1446, + [1605] = 1443, + [1606] = 1447, + [1607] = 1434, + [1608] = 1435, + [1609] = 1484, + [1610] = 1453, + [1611] = 1454, + [1612] = 1438, + [1613] = 1435, + [1614] = 1444, + [1615] = 1498, + [1616] = 1449, + [1617] = 1456, + [1618] = 360, + [1619] = 1434, + [1620] = 366, + [1621] = 365, + [1622] = 364, + [1623] = 368, + [1624] = 1434, + [1625] = 1484, + [1626] = 369, + [1627] = 370, + [1628] = 373, + [1629] = 379, + [1630] = 378, + [1631] = 376, + [1632] = 1435, + [1633] = 372, + [1634] = 1508, + [1635] = 1496, + [1636] = 377, + [1637] = 1459, + [1638] = 1430, + [1639] = 1438, + [1640] = 1453, + [1641] = 1431, + [1642] = 1446, + [1643] = 1444, + [1644] = 1443, + [1645] = 1442, + [1646] = 1441, + [1647] = 1440, + [1648] = 1456, + [1649] = 1433, + [1650] = 1428, + [1651] = 1431, + [1652] = 1430, + [1653] = 1459, + [1654] = 1428, + [1655] = 1496, + [1656] = 1508, + [1657] = 1446, + [1658] = 1454, + [1659] = 1454, + [1660] = 1449, + [1661] = 1433, + [1662] = 1440, + [1663] = 1441, + [1664] = 1442, + [1665] = 1443, + [1666] = 1444, + [1667] = 1446, + [1668] = 363, + [1669] = 1438, + [1670] = 1449, + [1671] = 1456, + [1672] = 1454, + [1673] = 360, + [1674] = 366, + [1675] = 1438, + [1676] = 1447, + [1677] = 1446, + [1678] = 1444, + [1679] = 1443, + [1680] = 1442, + [1681] = 1441, + [1682] = 1440, + [1683] = 1433, + [1684] = 929, + [1685] = 1431, + [1686] = 364, + [1687] = 1430, + [1688] = 368, + [1689] = 1459, + [1690] = 1453, + [1691] = 369, + [1692] = 1496, + [1693] = 1508, + [1694] = 1435, + [1695] = 1453, + [1696] = 1454, + [1697] = 1449, + [1698] = 1456, + [1699] = 1434, + [1700] = 1435, + [1701] = 1453, + [1702] = 1508, + [1703] = 1454, + [1704] = 1449, + [1705] = 1456, + [1706] = 1434, + [1707] = 1438, + [1708] = 900, + [1709] = 1447, + [1710] = 1446, + [1711] = 1444, + [1712] = 1442, + [1713] = 1443, + [1714] = 1434, + [1715] = 1496, + [1716] = 1442, + [1717] = 1441, + [1718] = 1440, + [1719] = 1433, + [1720] = 1428, + [1721] = 1431, + [1722] = 1430, + [1723] = 373, + [1724] = 379, + [1725] = 378, + [1726] = 376, + [1727] = 1459, + [1728] = 1435, + [1729] = 359, + [1730] = 1496, + [1731] = 1508, + [1732] = 1447, + [1733] = 1508, + [1734] = 1453, + [1735] = 1454, + [1736] = 1459, + [1737] = 1449, + [1738] = 1456, + [1739] = 1434, + [1740] = 1435, + [1741] = 1741, + [1742] = 1447, + [1743] = 1496, + [1744] = 1744, + [1745] = 1498, + [1746] = 431, + [1747] = 435, + [1748] = 1447, + [1749] = 1435, + [1750] = 1498, + [1751] = 1434, + [1752] = 1434, + [1753] = 375, + [1754] = 1754, + [1755] = 1438, + [1756] = 1484, + [1757] = 377, + [1758] = 1447, + [1759] = 1456, + [1760] = 1446, + [1761] = 1444, + [1762] = 1443, + [1763] = 1442, + [1764] = 1441, + [1765] = 1459, + [1766] = 1440, + [1767] = 1433, + [1768] = 1428, + [1769] = 1431, + [1770] = 1430, + [1771] = 1449, + [1772] = 1454, + [1773] = 1430, + [1774] = 1459, + [1775] = 1431, + [1776] = 1496, + [1777] = 1428, + [1778] = 1508, + [1779] = 1508, + [1780] = 1433, + [1781] = 1496, + [1782] = 1440, + [1783] = 1484, + [1784] = 1438, + [1785] = 1447, + [1786] = 1446, + [1787] = 1453, + [1788] = 1444, + [1789] = 1443, + [1790] = 363, + [1791] = 1442, + [1792] = 359, + [1793] = 1459, + [1794] = 1441, + [1795] = 1441, + [1796] = 1440, + [1797] = 1433, + [1798] = 1428, + [1799] = 1438, + [1800] = 1431, + [1801] = 1430, + [1802] = 1443, + [1803] = 1459, + [1804] = 1444, + [1805] = 1496, + [1806] = 1446, + [1807] = 901, + [1808] = 1508, + [1809] = 1435, + [1810] = 994, + [1811] = 1484, + [1812] = 1438, + [1813] = 1498, + [1814] = 1434, + [1815] = 1484, + [1816] = 1447, + [1817] = 1456, + [1818] = 1446, + [1819] = 1449, + [1820] = 1444, + [1821] = 1443, + [1822] = 1442, + [1823] = 1441, + [1824] = 1454, + [1825] = 1440, + [1826] = 1430, + [1827] = 1431, + [1828] = 1428, + [1829] = 1433, + [1830] = 1433, + [1831] = 1428, + [1832] = 1431, + [1833] = 1430, + [1834] = 1453, + [1835] = 1835, + [1836] = 1440, + [1837] = 1441, + [1838] = 1442, + [1839] = 1443, + [1840] = 1444, + [1841] = 1435, + [1842] = 1446, + [1843] = 1447, + [1844] = 1459, + [1845] = 374, + [1846] = 1496, + [1847] = 367, + [1848] = 361, + [1849] = 1835, + [1850] = 1450, + [1851] = 1429, + [1852] = 1852, + [1853] = 1450, + [1854] = 1429, + [1855] = 1852, + [1856] = 1450, + [1857] = 1508, + [1858] = 1429, + [1859] = 1496, + [1860] = 1852, + [1861] = 1450, + [1862] = 1429, + [1863] = 1852, + [1864] = 1450, + [1865] = 1429, + [1866] = 994, + [1867] = 1852, + [1868] = 975, + [1869] = 1835, + [1870] = 1450, + [1871] = 374, + [1872] = 367, + [1873] = 1429, + [1874] = 1835, + [1875] = 1852, + [1876] = 1450, + [1877] = 1429, + [1878] = 1835, + [1879] = 1852, + [1880] = 1450, + [1881] = 1429, + [1882] = 1835, + [1883] = 1438, + [1884] = 1852, + [1885] = 1450, + [1886] = 1429, + [1887] = 1835, + [1888] = 1852, + [1889] = 1835, + [1890] = 1450, + [1891] = 1429, + [1892] = 361, + [1893] = 1835, + [1894] = 1852, + [1895] = 1835, + [1896] = 1835, + [1897] = 1435, + [1898] = 1434, + [1899] = 1456, + [1900] = 1449, + [1901] = 1454, + [1902] = 1453, + [1903] = 1435, + [1904] = 1434, + [1905] = 1459, + [1906] = 1456, + [1907] = 1449, + [1908] = 1454, + [1909] = 1835, + [1910] = 1453, + [1911] = 1453, + [1912] = 896, + [1913] = 898, + [1914] = 1438, + [1915] = 1456, + [1916] = 1835, + [1917] = 1917, + [1918] = 911, + [1919] = 1430, + [1920] = 1431, + [1921] = 1428, + [1922] = 1433, + [1923] = 1440, + [1924] = 1441, + [1925] = 1442, + [1926] = 1443, + [1927] = 1498, + [1928] = 1444, + [1929] = 1446, + [1930] = 1447, + [1931] = 1446, + [1932] = 1430, + [1933] = 1431, + [1934] = 1498, + [1935] = 1447, + [1936] = 1435, + [1937] = 1434, + [1938] = 1456, + [1939] = 1449, + [1940] = 1428, + [1941] = 1447, + [1942] = 1433, + [1943] = 1444, + [1944] = 1454, + [1945] = 1453, + [1946] = 1435, + [1947] = 1434, + [1948] = 1456, + [1949] = 1449, + [1950] = 1454, + [1951] = 1453, + [1952] = 1435, + [1953] = 1443, + [1954] = 1434, + [1955] = 1456, + [1956] = 1449, + [1957] = 1454, + [1958] = 1453, + [1959] = 1442, + [1960] = 1449, + [1961] = 1434, + [1962] = 1456, + [1963] = 1449, + [1964] = 1454, + [1965] = 1453, + [1966] = 1435, + [1967] = 1441, + [1968] = 1440, + [1969] = 1434, + [1970] = 1456, + [1971] = 1449, + [1972] = 1454, + [1973] = 1453, + [1974] = 1433, + [1975] = 1435, + [1976] = 1440, + [1977] = 1434, + [1978] = 1456, + [1979] = 1441, + [1980] = 1454, + [1981] = 1453, + [1982] = 1498, + [1983] = 1508, + [1984] = 1496, + [1985] = 1459, + [1986] = 1430, + [1987] = 1431, + [1988] = 1428, + [1989] = 1433, + [1990] = 1484, + [1991] = 1440, + [1992] = 1441, + [1993] = 1442, + [1994] = 1443, + [1995] = 1442, + [1996] = 1444, + [1997] = 1835, + [1998] = 1450, + [1999] = 1428, + [2000] = 1443, + [2001] = 1444, + [2002] = 899, + [2003] = 1429, + [2004] = 1852, + [2005] = 1450, + [2006] = 1431, + [2007] = 1429, + [2008] = 1852, + [2009] = 1450, + [2010] = 1429, + [2011] = 1852, + [2012] = 1450, + [2013] = 1430, + [2014] = 1852, + [2015] = 1450, + [2016] = 1429, + [2017] = 1852, + [2018] = 1446, + [2019] = 1450, + [2020] = 1447, + [2021] = 1429, + [2022] = 1852, + [2023] = 1459, + [2024] = 1450, + [2025] = 1429, + [2026] = 1835, + [2027] = 1852, + [2028] = 1450, + [2029] = 1429, + [2030] = 1835, + [2031] = 1446, + [2032] = 1852, + [2033] = 1450, + [2034] = 1515, + [2035] = 1429, + [2036] = 1835, + [2037] = 1852, + [2038] = 1450, + [2039] = 1515, + [2040] = 1429, + [2041] = 1835, + [2042] = 1852, + [2043] = 1450, + [2044] = 1515, + [2045] = 1429, + [2046] = 1835, + [2047] = 1852, + [2048] = 1450, + [2049] = 1515, + [2050] = 1429, + [2051] = 1917, + [2052] = 1447, + [2053] = 1496, + [2054] = 1508, + [2055] = 1835, + [2056] = 1852, + [2057] = 1530, + [2058] = 1475, + [2059] = 1450, + [2060] = 1515, + [2061] = 1429, + [2062] = 2062, + [2063] = 1917, + [2064] = 1835, + [2065] = 1852, + [2066] = 1438, + [2067] = 1530, + [2068] = 430, + [2069] = 1475, + [2070] = 1450, + [2071] = 1515, + [2072] = 1429, + [2073] = 2062, + [2074] = 1917, + [2075] = 1835, + [2076] = 1852, + [2077] = 1530, + [2078] = 1446, + [2079] = 1475, + [2080] = 1453, + [2081] = 1454, + [2082] = 1449, + [2083] = 1450, + [2084] = 1456, + [2085] = 1515, + [2086] = 1429, + [2087] = 1434, + [2088] = 2062, + [2089] = 1435, + [2090] = 1917, + [2091] = 1835, + [2092] = 1852, + [2093] = 1444, + [2094] = 1443, + [2095] = 1530, + [2096] = 1475, + [2097] = 952, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 1442, + [2102] = 2062, + [2103] = 909, + [2104] = 1852, + [2105] = 1441, + [2106] = 1438, + [2107] = 1440, + [2108] = 1433, + [2109] = 1428, + [2110] = 1438, + [2111] = 1431, + [2112] = 1430, + [2113] = 1459, + [2114] = 1475, + [2115] = 1530, + [2116] = 1508, + [2117] = 1496, + [2118] = 1459, + [2119] = 1852, + [2120] = 1430, + [2121] = 1431, + [2122] = 1428, + [2123] = 1433, + [2124] = 1440, + [2125] = 1441, + [2126] = 1442, + [2127] = 1443, + [2128] = 1444, + [2129] = 1446, + [2130] = 1447, + [2131] = 1835, + [2132] = 1438, + [2133] = 1508, + [2134] = 1496, + [2135] = 433, + [2136] = 1459, + [2137] = 1430, + [2138] = 1917, + [2139] = 1431, + [2140] = 1428, + [2141] = 1433, + [2142] = 1440, + [2143] = 1441, + [2144] = 1435, + [2145] = 1442, + [2146] = 2062, + [2147] = 1434, + [2148] = 1443, + [2149] = 1444, + [2150] = 1429, + [2151] = 1515, + [2152] = 1496, + [2153] = 1456, + [2154] = 1508, + [2155] = 1496, + [2156] = 1446, + [2157] = 903, + [2158] = 1447, + [2159] = 1438, + [2160] = 1450, + [2161] = 1508, + [2162] = 1449, + [2163] = 1508, + [2164] = 1498, + [2165] = 1454, + [2166] = 1459, + [2167] = 1435, + [2168] = 1453, + [2169] = 435, + [2170] = 424, + [2171] = 2171, + [2172] = 1438, + [2173] = 431, + [2174] = 1446, + [2175] = 1444, + [2176] = 1443, + [2177] = 1442, + [2178] = 1441, + [2179] = 1440, + [2180] = 433, + [2181] = 424, + [2182] = 1433, + [2183] = 1428, + [2184] = 1431, + [2185] = 1430, + [2186] = 430, + [2187] = 905, + [2188] = 1438, + [2189] = 847, + [2190] = 375, + [2191] = 446, + [2192] = 393, + [2193] = 393, + [2194] = 448, + [2195] = 387, + [2196] = 374, + [2197] = 442, + [2198] = 367, + [2199] = 361, + [2200] = 442, + [2201] = 387, + [2202] = 440, + [2203] = 386, + [2204] = 384, + [2205] = 363, + [2206] = 386, + [2207] = 377, + [2208] = 359, + [2209] = 393, + [2210] = 1035, + [2211] = 453, + [2212] = 384, + [2213] = 1040, + [2214] = 393, + [2215] = 386, + [2216] = 372, + [2217] = 867, + [2218] = 387, + [2219] = 921, + [2220] = 386, + [2221] = 393, + [2222] = 446, + [2223] = 384, + [2224] = 376, + [2225] = 1058, + [2226] = 378, + [2227] = 448, + [2228] = 379, + [2229] = 384, + [2230] = 373, + [2231] = 1051, + [2232] = 370, + [2233] = 842, + [2234] = 369, + [2235] = 368, + [2236] = 384, + [2237] = 847, + [2238] = 1034, + [2239] = 386, + [2240] = 387, + [2241] = 842, + [2242] = 453, + [2243] = 364, + [2244] = 1028, + [2245] = 366, + [2246] = 360, + [2247] = 387, + [2248] = 440, + [2249] = 847, + [2250] = 410, + [2251] = 375, + [2252] = 384, + [2253] = 372, + [2254] = 377, + [2255] = 363, + [2256] = 378, + [2257] = 842, + [2258] = 409, + [2259] = 387, + [2260] = 409, + [2261] = 407, + [2262] = 386, + [2263] = 363, + [2264] = 360, + [2265] = 366, + [2266] = 364, + [2267] = 368, + [2268] = 407, + [2269] = 435, + [2270] = 369, + [2271] = 370, + [2272] = 373, + [2273] = 374, + [2274] = 379, + [2275] = 378, + [2276] = 410, + [2277] = 367, + [2278] = 376, + [2279] = 411, + [2280] = 359, + [2281] = 372, + [2282] = 386, + [2283] = 430, + [2284] = 361, + [2285] = 367, + [2286] = 361, + [2287] = 431, + [2288] = 409, + [2289] = 410, + [2290] = 384, + [2291] = 393, + [2292] = 365, + [2293] = 393, + [2294] = 407, + [2295] = 407, + [2296] = 360, + [2297] = 359, + [2298] = 366, + [2299] = 364, + [2300] = 409, + [2301] = 368, + [2302] = 411, + [2303] = 411, + [2304] = 424, + [2305] = 369, + [2306] = 374, + [2307] = 410, + [2308] = 387, + [2309] = 370, + [2310] = 411, + [2311] = 373, + [2312] = 376, + [2313] = 377, + [2314] = 433, + [2315] = 379, + [2316] = 409, + [2317] = 847, + [2318] = 409, + [2319] = 424, + [2320] = 481, + [2321] = 480, + [2322] = 484, + [2323] = 431, + [2324] = 435, + [2325] = 483, + [2326] = 490, + [2327] = 502, + [2328] = 410, + [2329] = 513, + [2330] = 433, + [2331] = 487, + [2332] = 489, + [2333] = 498, + [2334] = 492, + [2335] = 433, + [2336] = 483, + [2337] = 492, + [2338] = 503, + [2339] = 484, + [2340] = 488, + [2341] = 424, + [2342] = 482, + [2343] = 411, + [2344] = 410, + [2345] = 407, + [2346] = 431, + [2347] = 430, + [2348] = 482, + [2349] = 1034, + [2350] = 435, + [2351] = 498, + [2352] = 513, + [2353] = 489, + [2354] = 409, + [2355] = 488, + [2356] = 1051, + [2357] = 435, + [2358] = 430, + [2359] = 407, + [2360] = 487, + [2361] = 490, + [2362] = 431, + [2363] = 480, + [2364] = 433, + [2365] = 410, + [2366] = 481, + [2367] = 424, + [2368] = 411, + [2369] = 842, + [2370] = 847, + [2371] = 502, + [2372] = 424, + [2373] = 503, + [2374] = 1028, + [2375] = 430, + [2376] = 1040, + [2377] = 433, + [2378] = 411, + [2379] = 1035, + [2380] = 407, + [2381] = 431, + [2382] = 1058, + [2383] = 430, + [2384] = 435, + [2385] = 842, + [2386] = 386, + [2387] = 393, + [2388] = 448, + [2389] = 453, + [2390] = 424, + [2391] = 435, + [2392] = 433, + [2393] = 430, + [2394] = 453, + [2395] = 433, + [2396] = 440, + [2397] = 442, + [2398] = 440, + [2399] = 384, + [2400] = 446, + [2401] = 448, + [2402] = 393, + [2403] = 431, + [2404] = 446, + [2405] = 387, + [2406] = 430, + [2407] = 446, + [2408] = 448, + [2409] = 386, + [2410] = 431, + [2411] = 440, + [2412] = 435, + [2413] = 442, + [2414] = 453, + [2415] = 384, + [2416] = 387, + [2417] = 424, + [2418] = 442, + [2419] = 374, + [2420] = 448, + [2421] = 411, + [2422] = 410, + [2423] = 361, + [2424] = 446, [2425] = 367, - [2426] = 412, - [2427] = 362, - [2428] = 426, - [2429] = 1059, - [2430] = 373, - [2431] = 372, - [2432] = 416, - [2433] = 412, - [2434] = 863, - [2435] = 446, - [2436] = 870, - [2437] = 440, - [2438] = 357, - [2439] = 359, - [2440] = 414, - [2441] = 374, - [2442] = 863, - [2443] = 453, - [2444] = 1058, - [2445] = 363, - [2446] = 360, - [2447] = 442, - [2448] = 370, - [2449] = 368, - [2450] = 416, - [2451] = 444, - [2452] = 358, - [2453] = 453, - [2454] = 444, - [2455] = 510, - [2456] = 364, - [2457] = 511, - [2458] = 442, - [2459] = 369, - [2460] = 494, - [2461] = 483, - [2462] = 483, - [2463] = 507, - [2464] = 505, - [2465] = 503, - [2466] = 499, - [2467] = 496, - [2468] = 444, - [2469] = 494, - [2470] = 490, - [2471] = 365, - [2472] = 367, - [2473] = 489, - [2474] = 488, - [2475] = 507, - [2476] = 453, - [2477] = 453, - [2478] = 505, - [2479] = 480, - [2480] = 444, - [2481] = 499, - [2482] = 444, - [2483] = 496, - [2484] = 444, - [2485] = 442, - [2486] = 482, - [2487] = 440, - [2488] = 363, - [2489] = 357, - [2490] = 440, - [2491] = 442, - [2492] = 446, - [2493] = 442, - [2494] = 510, - [2495] = 480, - [2496] = 359, - [2497] = 373, - [2498] = 453, - [2499] = 503, - [2500] = 446, - [2501] = 372, - [2502] = 453, - [2503] = 366, - [2504] = 488, - [2505] = 440, - [2506] = 368, - [2507] = 446, - [2508] = 440, - [2509] = 362, - [2510] = 361, - [2511] = 489, - [2512] = 358, - [2513] = 376, - [2514] = 440, - [2515] = 446, - [2516] = 490, - [2517] = 374, - [2518] = 375, - [2519] = 482, - [2520] = 442, - [2521] = 511, - [2522] = 446, - [2523] = 360, - [2524] = 372, - [2525] = 363, - [2526] = 494, - [2527] = 496, - [2528] = 490, - [2529] = 489, - [2530] = 482, - [2531] = 511, - [2532] = 488, - [2533] = 510, - [2534] = 359, - [2535] = 507, - [2536] = 480, - [2537] = 505, - [2538] = 503, - [2539] = 383, - [2540] = 373, - [2541] = 499, - [2542] = 369, - [2543] = 496, - [2544] = 365, - [2545] = 357, - [2546] = 368, - [2547] = 364, - [2548] = 362, - [2549] = 494, - [2550] = 361, - [2551] = 499, - [2552] = 503, - [2553] = 505, - [2554] = 507, - [2555] = 358, - [2556] = 510, - [2557] = 483, - [2558] = 366, - [2559] = 511, - [2560] = 376, - [2561] = 482, - [2562] = 367, - [2563] = 383, - [2564] = 490, - [2565] = 489, - [2566] = 386, - [2567] = 387, - [2568] = 360, - [2569] = 390, - [2570] = 488, - [2571] = 383, - [2572] = 386, - [2573] = 387, - [2574] = 390, - [2575] = 383, - [2576] = 374, - [2577] = 483, - [2578] = 375, - [2579] = 386, - [2580] = 387, - [2581] = 390, - [2582] = 390, - [2583] = 387, - [2584] = 480, - [2585] = 386, - [2586] = 490, - [2587] = 390, - [2588] = 430, - [2589] = 496, - [2590] = 480, - [2591] = 423, - [2592] = 494, - [2593] = 430, - [2594] = 412, - [2595] = 414, - [2596] = 409, - [2597] = 434, - [2598] = 412, - [2599] = 435, - [2600] = 416, - [2601] = 412, - [2602] = 490, - [2603] = 435, - [2604] = 489, - [2605] = 482, - [2606] = 414, - [2607] = 488, - [2608] = 511, - [2609] = 480, - [2610] = 423, - [2611] = 426, - [2612] = 430, - [2613] = 383, - [2614] = 483, - [2615] = 426, - [2616] = 488, - [2617] = 416, - [2618] = 489, - [2619] = 387, - [2620] = 409, - [2621] = 507, - [2622] = 426, - [2623] = 510, - [2624] = 511, - [2625] = 409, - [2626] = 409, - [2627] = 507, - [2628] = 505, - [2629] = 482, - [2630] = 510, - [2631] = 505, - [2632] = 414, - [2633] = 483, - [2634] = 423, - [2635] = 503, - [2636] = 414, - [2637] = 494, - [2638] = 496, - [2639] = 499, - [2640] = 435, - [2641] = 434, - [2642] = 416, - [2643] = 499, - [2644] = 383, - [2645] = 434, - [2646] = 386, - [2647] = 435, - [2648] = 423, - [2649] = 387, - [2650] = 426, - [2651] = 503, - [2652] = 386, - [2653] = 434, - [2654] = 412, - [2655] = 416, - [2656] = 430, - [2657] = 390, - [2658] = 490, - [2659] = 510, - [2660] = 430, - [2661] = 503, - [2662] = 414, - [2663] = 440, - [2664] = 494, - [2665] = 409, - [2666] = 423, - [2667] = 489, - [2668] = 490, - [2669] = 510, - [2670] = 489, - [2671] = 409, - [2672] = 489, - [2673] = 499, - [2674] = 412, - [2675] = 505, - [2676] = 446, - [2677] = 488, - [2678] = 453, - [2679] = 494, - [2680] = 435, - [2681] = 496, - [2682] = 416, - [2683] = 499, - [2684] = 430, - [2685] = 496, - [2686] = 423, - [2687] = 480, - [2688] = 444, - [2689] = 412, - [2690] = 480, - [2691] = 442, - [2692] = 505, - [2693] = 446, - [2694] = 426, - [2695] = 482, - [2696] = 442, - [2697] = 503, - [2698] = 494, - [2699] = 482, - [2700] = 440, - [2701] = 482, - [2702] = 483, - [2703] = 505, - [2704] = 434, - [2705] = 488, - [2706] = 426, - [2707] = 511, - [2708] = 483, - [2709] = 499, - [2710] = 507, - [2711] = 416, - [2712] = 507, + [2426] = 370, + [2427] = 409, + [2428] = 453, + [2429] = 369, + [2430] = 368, + [2431] = 407, + [2432] = 379, + [2433] = 364, + [2434] = 366, + [2435] = 431, + [2436] = 378, + [2437] = 424, + [2438] = 409, + [2439] = 376, + [2440] = 430, + [2441] = 442, + [2442] = 373, + [2443] = 407, + [2444] = 430, + [2445] = 372, + [2446] = 424, + [2447] = 433, + [2448] = 365, + [2449] = 377, + [2450] = 363, + [2451] = 410, + [2452] = 446, + [2453] = 440, + [2454] = 440, + [2455] = 360, + [2456] = 435, + [2457] = 433, + [2458] = 453, + [2459] = 375, + [2460] = 431, + [2461] = 448, + [2462] = 411, + [2463] = 435, + [2464] = 359, + [2465] = 442, + [2466] = 502, + [2467] = 440, + [2468] = 488, + [2469] = 442, + [2470] = 482, + [2471] = 442, + [2472] = 482, + [2473] = 498, + [2474] = 446, + [2475] = 446, + [2476] = 484, + [2477] = 483, + [2478] = 374, + [2479] = 367, + [2480] = 361, + [2481] = 453, + [2482] = 492, + [2483] = 513, + [2484] = 503, + [2485] = 440, + [2486] = 363, + [2487] = 481, + [2488] = 448, + [2489] = 480, + [2490] = 448, + [2491] = 453, + [2492] = 490, + [2493] = 360, + [2494] = 440, + [2495] = 446, + [2496] = 489, + [2497] = 366, + [2498] = 442, + [2499] = 487, + [2500] = 364, + [2501] = 448, + [2502] = 368, + [2503] = 448, + [2504] = 446, + [2505] = 487, + [2506] = 489, + [2507] = 490, + [2508] = 377, + [2509] = 480, + [2510] = 481, + [2511] = 369, + [2512] = 370, + [2513] = 503, + [2514] = 373, + [2515] = 498, + [2516] = 379, + [2517] = 378, + [2518] = 442, + [2519] = 376, + [2520] = 502, + [2521] = 440, + [2522] = 513, + [2523] = 492, + [2524] = 483, + [2525] = 453, + [2526] = 484, + [2527] = 488, + [2528] = 453, + [2529] = 359, + [2530] = 375, + [2531] = 372, + [2532] = 490, + [2533] = 384, + [2534] = 480, + [2535] = 375, + [2536] = 481, + [2537] = 480, + [2538] = 393, + [2539] = 376, + [2540] = 503, + [2541] = 503, + [2542] = 378, + [2543] = 502, + [2544] = 513, + [2545] = 379, + [2546] = 373, + [2547] = 370, + [2548] = 369, + [2549] = 492, + [2550] = 368, + [2551] = 364, + [2552] = 483, + [2553] = 487, + [2554] = 513, + [2555] = 484, + [2556] = 366, + [2557] = 360, + [2558] = 374, + [2559] = 367, + [2560] = 483, + [2561] = 487, + [2562] = 488, + [2563] = 386, + [2564] = 393, + [2565] = 377, + [2566] = 361, + [2567] = 482, + [2568] = 489, + [2569] = 498, + [2570] = 359, + [2571] = 488, + [2572] = 484, + [2573] = 386, + [2574] = 483, + [2575] = 482, + [2576] = 387, + [2577] = 492, + [2578] = 372, + [2579] = 513, + [2580] = 502, + [2581] = 503, + [2582] = 387, + [2583] = 481, + [2584] = 386, + [2585] = 393, + [2586] = 480, + [2587] = 490, + [2588] = 487, + [2589] = 489, + [2590] = 384, + [2591] = 498, + [2592] = 498, + [2593] = 363, + [2594] = 384, + [2595] = 393, + [2596] = 386, + [2597] = 384, + [2598] = 387, + [2599] = 387, + [2600] = 430, + [2601] = 481, + [2602] = 431, + [2603] = 410, + [2604] = 484, + [2605] = 407, + [2606] = 409, + [2607] = 433, + [2608] = 492, + [2609] = 431, + [2610] = 411, + [2611] = 482, + [2612] = 502, + [2613] = 488, + [2614] = 407, + [2615] = 435, + [2616] = 492, + [2617] = 430, + [2618] = 387, + [2619] = 481, + [2620] = 430, + [2621] = 490, + [2622] = 502, + [2623] = 409, + [2624] = 489, + [2625] = 431, + [2626] = 435, + [2627] = 384, + [2628] = 498, + [2629] = 489, + [2630] = 487, + [2631] = 490, + [2632] = 480, + [2633] = 481, + [2634] = 503, + [2635] = 502, + [2636] = 513, + [2637] = 492, + [2638] = 483, + [2639] = 484, + [2640] = 488, + [2641] = 387, + [2642] = 483, + [2643] = 410, + [2644] = 498, + [2645] = 411, + [2646] = 433, + [2647] = 489, + [2648] = 487, + [2649] = 407, + [2650] = 409, + [2651] = 410, + [2652] = 433, + [2653] = 386, + [2654] = 393, + [2655] = 411, + [2656] = 435, + [2657] = 411, + [2658] = 424, + [2659] = 433, + [2660] = 424, + [2661] = 431, + [2662] = 393, + [2663] = 410, + [2664] = 435, + [2665] = 490, + [2666] = 480, + [2667] = 386, + [2668] = 482, + [2669] = 513, + [2670] = 384, + [2671] = 424, + [2672] = 430, + [2673] = 503, + [2674] = 482, + [2675] = 409, + [2676] = 407, + [2677] = 424, + [2678] = 484, + [2679] = 488, + [2680] = 490, + [2681] = 484, + [2682] = 492, + [2683] = 442, + [2684] = 487, + [2685] = 513, + [2686] = 483, + [2687] = 484, + [2688] = 435, + [2689] = 488, + [2690] = 502, + [2691] = 440, + [2692] = 489, + [2693] = 498, + [2694] = 490, + [2695] = 433, + [2696] = 482, + [2697] = 482, + [2698] = 446, + [2699] = 410, + [2700] = 503, + [2701] = 411, + [2702] = 481, + [2703] = 448, + [2704] = 407, + [2705] = 480, + [2706] = 407, + [2707] = 430, + [2708] = 502, + [2709] = 448, + [2710] = 410, + [2711] = 487, + [2712] = 440, [2713] = 453, - [2714] = 414, - [2715] = 435, - [2716] = 510, - [2717] = 444, - [2718] = 434, - [2719] = 511, + [2714] = 446, + [2715] = 424, + [2716] = 430, + [2717] = 481, + [2718] = 424, + [2719] = 489, [2720] = 503, - [2721] = 483, - [2722] = 440, - [2723] = 442, - [2724] = 507, - [2725] = 751, - [2726] = 490, - [2727] = 453, - [2728] = 444, - [2729] = 755, - [2730] = 496, - [2731] = 511, - [2732] = 440, - [2733] = 444, - [2734] = 751, - [2735] = 755, - [2736] = 446, - [2737] = 453, - [2738] = 442, - [2739] = 480, - [2740] = 488, - [2741] = 446, - [2742] = 453, - [2743] = 440, - [2744] = 444, + [2721] = 442, + [2722] = 498, + [2723] = 411, + [2724] = 488, + [2725] = 409, + [2726] = 409, + [2727] = 435, + [2728] = 431, + [2729] = 483, + [2730] = 513, + [2731] = 492, + [2732] = 480, + [2733] = 453, + [2734] = 433, + [2735] = 431, + [2736] = 777, + [2737] = 774, + [2738] = 448, + [2739] = 774, + [2740] = 440, + [2741] = 785, + [2742] = 440, + [2743] = 446, + [2744] = 777, [2745] = 442, [2746] = 446, [2747] = 453, - [2748] = 440, - [2749] = 446, - [2750] = 751, - [2751] = 444, - [2752] = 755, - [2753] = 442, - [2754] = 488, - [2755] = 494, - [2756] = 507, - [2757] = 483, - [2758] = 499, - [2759] = 503, - [2760] = 480, - [2761] = 753, - [2762] = 511, - [2763] = 489, - [2764] = 505, - [2765] = 490, - [2766] = 779, - [2767] = 505, - [2768] = 503, - [2769] = 753, - [2770] = 483, - [2771] = 753, - [2772] = 510, - [2773] = 510, - [2774] = 494, - [2775] = 496, - [2776] = 499, - [2777] = 779, - [2778] = 753, - [2779] = 490, - [2780] = 511, - [2781] = 778, - [2782] = 482, - [2783] = 489, - [2784] = 482, - [2785] = 488, - [2786] = 496, - [2787] = 507, - [2788] = 778, - [2789] = 480, - [2790] = 490, - [2791] = 483, - [2792] = 488, - [2793] = 499, - [2794] = 489, - [2795] = 784, - [2796] = 483, + [2748] = 764, + [2749] = 442, + [2750] = 448, + [2751] = 785, + [2752] = 453, + [2753] = 773, + [2754] = 440, + [2755] = 453, + [2756] = 453, + [2757] = 440, + [2758] = 442, + [2759] = 777, + [2760] = 446, + [2761] = 448, + [2762] = 448, + [2763] = 801, + [2764] = 442, + [2765] = 774, + [2766] = 446, + [2767] = 764, + [2768] = 820, + [2769] = 481, + [2770] = 480, + [2771] = 814, + [2772] = 821, + [2773] = 785, + [2774] = 785, + [2775] = 482, + [2776] = 488, + [2777] = 490, + [2778] = 484, + [2779] = 492, + [2780] = 502, + [2781] = 487, + [2782] = 502, + [2783] = 483, + [2784] = 513, + [2785] = 492, + [2786] = 503, + [2787] = 489, + [2788] = 513, + [2789] = 815, + [2790] = 498, + [2791] = 823, + [2792] = 503, + [2793] = 481, + [2794] = 480, + [2795] = 773, + [2796] = 825, [2797] = 482, - [2798] = 488, - [2799] = 510, - [2800] = 489, - [2801] = 494, - [2802] = 480, - [2803] = 503, - [2804] = 507, - [2805] = 496, - [2806] = 510, - [2807] = 482, - [2808] = 751, - [2809] = 480, - [2810] = 755, - [2811] = 505, - [2812] = 511, - [2813] = 499, - [2814] = 507, - [2815] = 503, - [2816] = 511, - [2817] = 490, - [2818] = 494, - [2819] = 784, - [2820] = 496, - [2821] = 505, - [2822] = 503, - [2823] = 482, - [2824] = 480, - [2825] = 488, - [2826] = 489, - [2827] = 802, - [2828] = 791, - [2829] = 490, - [2830] = 794, - [2831] = 833, - [2832] = 799, - [2833] = 788, - [2834] = 832, - [2835] = 482, - [2836] = 805, - [2837] = 505, - [2838] = 507, - [2839] = 791, - [2840] = 511, - [2841] = 499, - [2842] = 510, - [2843] = 807, - [2844] = 798, - [2845] = 511, - [2846] = 510, - [2847] = 507, - [2848] = 818, - [2849] = 505, - [2850] = 802, - [2851] = 798, - [2852] = 503, - [2853] = 833, - [2854] = 818, - [2855] = 499, - [2856] = 799, - [2857] = 794, - [2858] = 494, - [2859] = 496, - [2860] = 496, - [2861] = 483, - [2862] = 494, - [2863] = 788, - [2864] = 490, - [2865] = 805, - [2866] = 822, - [2867] = 807, - [2868] = 832, - [2869] = 489, - [2870] = 488, + [2798] = 818, + [2799] = 483, + [2800] = 484, + [2801] = 488, + [2802] = 498, + [2803] = 824, + [2804] = 490, + [2805] = 822, + [2806] = 489, + [2807] = 816, + [2808] = 487, + [2809] = 813, + [2810] = 819, + [2811] = 833, + [2812] = 851, + [2813] = 854, + [2814] = 822, + [2815] = 484, + [2816] = 856, + [2817] = 815, + [2818] = 858, + [2819] = 845, + [2820] = 483, + [2821] = 861, + [2822] = 498, + [2823] = 481, + [2824] = 844, + [2825] = 848, + [2826] = 824, + [2827] = 489, + [2828] = 487, + [2829] = 492, + [2830] = 837, + [2831] = 490, + [2832] = 821, + [2833] = 846, + [2834] = 801, + [2835] = 852, + [2836] = 480, + [2837] = 831, + [2838] = 839, + [2839] = 853, + [2840] = 860, + [2841] = 503, + [2842] = 827, + [2843] = 859, + [2844] = 850, + [2845] = 821, + [2846] = 835, + [2847] = 849, + [2848] = 828, + [2849] = 814, + [2850] = 840, + [2851] = 832, + [2852] = 829, + [2853] = 823, + [2854] = 855, + [2855] = 857, + [2856] = 777, + [2857] = 774, + [2858] = 498, + [2859] = 490, + [2860] = 842, + [2861] = 847, + [2862] = 830, + [2863] = 513, + [2864] = 489, + [2865] = 482, + [2866] = 818, + [2867] = 820, + [2868] = 488, + [2869] = 484, + [2870] = 502, [2871] = 483, - [2872] = 480, - [2873] = 807, - [2874] = 850, - [2875] = 842, - [2876] = 836, - [2877] = 841, - [2878] = 838, - [2879] = 839, - [2880] = 836, - [2881] = 847, - [2882] = 850, - [2883] = 848, - [2884] = 870, - [2885] = 842, - [2886] = 862, - [2887] = 805, - [2888] = 866, - [2889] = 788, - [2890] = 846, - [2891] = 860, - [2892] = 843, - [2893] = 847, - [2894] = 794, - [2895] = 802, - [2896] = 858, - [2897] = 861, - [2898] = 878, - [2899] = 881, - [2900] = 853, - [2901] = 859, - [2902] = 861, - [2903] = 862, - [2904] = 838, - [2905] = 875, - [2906] = 832, - [2907] = 852, - [2908] = 882, - [2909] = 869, - [2910] = 866, - [2911] = 859, - [2912] = 855, - [2913] = 852, - [2914] = 839, - [2915] = 868, - [2916] = 843, - [2917] = 841, - [2918] = 753, - [2919] = 833, - [2920] = 858, - [2921] = 837, - [2922] = 878, - [2923] = 865, - [2924] = 881, - [2925] = 865, - [2926] = 853, - [2927] = 778, - [2928] = 837, - [2929] = 846, - [2930] = 869, - [2931] = 860, - [2932] = 868, - [2933] = 876, - [2934] = 848, - [2935] = 875, - [2936] = 779, - [2937] = 863, - [2938] = 753, - [2939] = 855, - [2940] = 908, - [2941] = 927, - [2942] = 944, - [2943] = 884, - [2944] = 929, - [2945] = 832, - [2946] = 853, - [2947] = 838, - [2948] = 939, - [2949] = 944, - [2950] = 920, - [2951] = 885, - [2952] = 866, - [2953] = 875, - [2954] = 881, - [2955] = 887, - [2956] = 914, - [2957] = 930, - [2958] = 926, - [2959] = 924, - [2960] = 934, - [2961] = 942, - [2962] = 839, - [2963] = 908, - [2964] = 898, - [2965] = 946, - [2966] = 939, - [2967] = 902, - [2968] = 884, - [2969] = 878, - [2970] = 784, - [2971] = 858, - [2972] = 925, - [2973] = 899, - [2974] = 916, - [2975] = 943, - [2976] = 859, - [2977] = 941, - [2978] = 936, - [2979] = 935, - [2980] = 931, - [2981] = 930, - [2982] = 893, - [2983] = 876, - [2984] = 901, - [2985] = 926, - [2986] = 907, - [2987] = 921, - [2988] = 915, - [2989] = 927, - [2990] = 898, - [2991] = 946, - [2992] = 822, - [2993] = 943, - [2994] = 909, - [2995] = 841, - [2996] = 934, - [2997] = 936, - [2998] = 843, - [2999] = 935, - [3000] = 931, - [3001] = 923, - [3002] = 913, - [3003] = 941, - [3004] = 902, - [3005] = 925, - [3006] = 912, - [3007] = 921, - [3008] = 907, - [3009] = 942, - [3010] = 842, - [3011] = 901, - [3012] = 896, - [3013] = 916, - [3014] = 846, - [3015] = 791, - [3016] = 909, - [3017] = 912, - [3018] = 924, - [3019] = 893, - [3020] = 920, - [3021] = 896, - [3022] = 919, - [3023] = 923, - [3024] = 929, - [3025] = 818, - [3026] = 799, - [3027] = 913, - [3028] = 374, - [3029] = 993, - [3030] = 952, - [3031] = 852, - [3032] = 899, - [3033] = 985, - [3034] = 855, - [3035] = 978, - [3036] = 363, - [3037] = 960, - [3038] = 869, - [3039] = 1044, - [3040] = 1043, - [3041] = 366, - [3042] = 359, - [3043] = 373, - [3044] = 372, - [3045] = 357, - [3046] = 1040, - [3047] = 950, - [3048] = 368, - [3049] = 362, - [3050] = 361, - [3051] = 868, - [3052] = 1028, - [3053] = 358, - [3054] = 1022, - [3055] = 980, - [3056] = 865, - [3057] = 376, - [3058] = 981, - [3059] = 375, - [3060] = 837, - [3061] = 961, - [3062] = 992, - [3063] = 1023, - [3064] = 1013, - [3065] = 1015, - [3066] = 978, - [3067] = 959, - [3068] = 370, - [3069] = 1020, - [3070] = 992, - [3071] = 949, - [3072] = 950, - [3073] = 1022, - [3074] = 1028, - [3075] = 952, - [3076] = 953, - [3077] = 832, - [3078] = 1019, - [3079] = 833, - [3080] = 1040, - [3081] = 993, - [3082] = 964, - [3083] = 963, - [3084] = 794, - [3085] = 1005, - [3086] = 966, - [3087] = 997, - [3088] = 1043, - [3089] = 885, - [3090] = 788, - [3091] = 805, - [3092] = 962, - [3093] = 1044, - [3094] = 981, - [3095] = 980, - [3096] = 807, - [3097] = 958, - [3098] = 818, - [3099] = 987, - [3100] = 861, - [3101] = 953, - [3102] = 982, - [3103] = 979, - [3104] = 887, - [3105] = 807, - [3106] = 971, - [3107] = 974, - [3108] = 975, - [3109] = 805, - [3110] = 959, - [3111] = 948, - [3112] = 966, - [3113] = 360, - [3114] = 989, - [3115] = 1023, - [3116] = 1020, - [3117] = 988, - [3118] = 955, - [3119] = 954, - [3120] = 1019, - [3121] = 369, - [3122] = 1024, - [3123] = 986, - [3124] = 1005, - [3125] = 365, - [3126] = 964, - [3127] = 963, - [3128] = 364, - [3129] = 984, - [3130] = 962, - [3131] = 3131, - [3132] = 983, - [3133] = 958, - [3134] = 987, - [3135] = 947, - [3136] = 822, - [3137] = 997, - [3138] = 1024, - [3139] = 788, - [3140] = 965, - [3141] = 791, - [3142] = 794, - [3143] = 799, - [3144] = 802, - [3145] = 961, - [3146] = 989, - [3147] = 955, - [3148] = 948, - [3149] = 982, - [3150] = 988, - [3151] = 969, - [3152] = 949, - [3153] = 979, - [3154] = 970, - [3155] = 986, - [3156] = 833, - [3157] = 949, - [3158] = 965, - [3159] = 798, - [3160] = 971, - [3161] = 983, - [3162] = 984, - [3163] = 972, - [3164] = 973, - [3165] = 974, - [3166] = 975, - [3167] = 976, - [3168] = 977, - [3169] = 976, - [3170] = 977, - [3171] = 973, - [3172] = 972, - [3173] = 947, - [3174] = 1056, - [3175] = 1081, - [3176] = 1138, - [3177] = 863, - [3178] = 1150, - [3179] = 1153, - [3180] = 1205, - [3181] = 1206, - [3182] = 1206, - [3183] = 842, - [3184] = 1079, - [3185] = 843, - [3186] = 848, - [3187] = 858, - [3188] = 878, - [3189] = 1199, - [3190] = 1198, - [3191] = 1193, - [3192] = 881, - [3193] = 841, - [3194] = 946, - [3195] = 1183, - [3196] = 1182, - [3197] = 1181, - [3198] = 853, - [3199] = 847, - [3200] = 1180, - [3201] = 1174, - [3202] = 1170, - [3203] = 1167, - [3204] = 870, - [3205] = 875, - [3206] = 863, - [3207] = 1120, - [3208] = 1113, - [3209] = 898, - [3210] = 1199, - [3211] = 1157, - [3212] = 1110, - [3213] = 1115, - [3214] = 863, - [3215] = 1198, - [3216] = 866, - [3217] = 859, - [3218] = 846, - [3219] = 1074, - [3220] = 1152, - [3221] = 870, - [3222] = 860, - [3223] = 943, - [3224] = 1148, - [3225] = 863, - [3226] = 1145, - [3227] = 870, - [3228] = 1142, - [3229] = 1193, - [3230] = 1141, - [3231] = 1070, - [3232] = 833, - [3233] = 1076, - [3234] = 1088, - [3235] = 1122, - [3236] = 1099, - [3237] = 1168, - [3238] = 1108, - [3239] = 1107, - [3240] = 884, - [3241] = 942, - [3242] = 1100, - [3243] = 1159, - [3244] = 1097, - [3245] = 1096, - [3246] = 863, - [3247] = 870, - [3248] = 1202, - [3249] = 1197, - [3250] = 1094, - [3251] = 1201, - [3252] = 1196, - [3253] = 941, - [3254] = 1047, - [3255] = 1103, - [3256] = 1082, - [3257] = 1069, - [3258] = 839, - [3259] = 794, - [3260] = 1175, - [3261] = 859, - [3262] = 1066, - [3263] = 866, - [3264] = 1169, - [3265] = 1168, - [3266] = 1057, - [3267] = 1153, - [3268] = 1055, - [3269] = 1054, - [3270] = 934, - [3271] = 875, - [3272] = 929, - [3273] = 1053, - [3274] = 1115, - [3275] = 1051, - [3276] = 936, - [3277] = 1144, - [3278] = 1069, - [3279] = 1086, - [3280] = 1079, - [3281] = 1183, - [3282] = 1204, - [3283] = 1111, - [3284] = 1119, - [3285] = 1124, - [3286] = 838, - [3287] = 935, - [3288] = 1126, - [3289] = 1139, - [3290] = 853, - [3291] = 1191, - [3292] = 1162, - [3293] = 1166, - [3294] = 1171, - [3295] = 1185, - [3296] = 931, - [3297] = 1185, - [3298] = 1191, - [3299] = 1171, - [3300] = 1200, - [3301] = 1166, - [3302] = 901, - [3303] = 1162, - [3304] = 1169, - [3305] = 881, - [3306] = 878, - [3307] = 1139, - [3308] = 855, - [3309] = 852, - [3310] = 1150, - [3311] = 1126, - [3312] = 1175, - [3313] = 1124, - [3314] = 1119, - [3315] = 1111, - [3316] = 1086, - [3317] = 1144, - [3318] = 1051, - [3319] = 1196, - [3320] = 1053, - [3321] = 860, - [3322] = 836, - [3323] = 850, - [3324] = 1054, - [3325] = 1055, - [3326] = 1056, - [3327] = 1057, - [3328] = 1197, - [3329] = 912, - [3330] = 1200, - [3331] = 1066, - [3332] = 1189, - [3333] = 1202, - [3334] = 1154, - [3335] = 1129, - [3336] = 909, - [3337] = 1089, - [3338] = 1075, - [3339] = 1062, - [3340] = 1158, - [3341] = 1170, - [3342] = 1115, - [3343] = 1131, - [3344] = 1082, - [3345] = 836, - [3346] = 876, - [3347] = 1176, - [3348] = 1047, - [3349] = 1151, - [3350] = 1140, - [3351] = 1135, - [3352] = 1134, - [3353] = 1204, - [3354] = 1133, - [3355] = 1182, - [3356] = 1099, - [3357] = 869, - [3358] = 924, - [3359] = 1114, - [3360] = 862, - [3361] = 1094, - [3362] = 1209, - [3363] = 862, - [3364] = 1112, - [3365] = 1096, - [3366] = 1049, - [3367] = 1061, - [3368] = 1079, - [3369] = 1067, - [3370] = 1097, - [3371] = 1068, - [3372] = 1073, - [3373] = 1078, - [3374] = 858, - [3375] = 1080, - [3376] = 1128, - [3377] = 1081, - [3378] = 1079, - [3379] = 1085, - [3380] = 1100, - [3381] = 846, - [3382] = 1087, - [3383] = 842, - [3384] = 1107, - [3385] = 841, - [3386] = 1090, - [3387] = 839, - [3388] = 1108, - [3389] = 838, - [3390] = 1122, - [3391] = 1141, - [3392] = 1088, - [3393] = 1142, - [3394] = 843, - [3395] = 1145, - [3396] = 850, - [3397] = 1129, - [3398] = 876, - [3399] = 1118, - [3400] = 1121, - [3401] = 868, - [3402] = 1127, - [3403] = 1132, - [3404] = 1143, - [3405] = 1048, - [3406] = 1146, - [3407] = 1147, - [3408] = 1149, - [3409] = 1160, - [3410] = 1161, - [3411] = 1148, - [3412] = 1163, - [3413] = 1164, - [3414] = 1165, - [3415] = 1076, - [3416] = 1173, - [3417] = 847, - [3418] = 1209, - [3419] = 1177, - [3420] = 1178, - [3421] = 1181, - [3422] = 1184, - [3423] = 1186, - [3424] = 1187, - [3425] = 1190, - [3426] = 1186, - [3427] = 1192, - [3428] = 1194, - [3429] = 1195, - [3430] = 970, - [3431] = 1152, - [3432] = 969, - [3433] = 1074, - [3434] = 848, - [3435] = 1172, - [3436] = 865, - [3437] = 1189, - [3438] = 1154, - [3439] = 1105, - [3440] = 1070, - [3441] = 1104, - [3442] = 1140, - [3443] = 1089, - [3444] = 1115, - [3445] = 1136, - [3446] = 1075, - [3447] = 1062, - [3448] = 837, - [3449] = 1103, - [3450] = 1131, - [3451] = 1158, - [3452] = 1110, - [3453] = 1157, - [3454] = 1101, - [3455] = 788, - [3456] = 1167, - [3457] = 861, - [3458] = 1176, - [3459] = 1138, - [3460] = 1151, - [3461] = 805, - [3462] = 1159, - [3463] = 1135, - [3464] = 1134, - [3465] = 1133, - [3466] = 954, - [3467] = 1114, - [3468] = 1143, - [3469] = 1112, - [3470] = 1128, - [3471] = 1049, - [3472] = 1061, - [3473] = 1201, - [3474] = 1101, - [3475] = 1067, - [3476] = 1068, - [3477] = 1073, - [3478] = 1063, - [3479] = 1060, - [3480] = 1059, - [3481] = 1058, - [3482] = 1078, - [3483] = 1063, - [3484] = 1060, - [3485] = 1059, - [3486] = 1058, - [3487] = 1205, - [3488] = 3488, - [3489] = 1080, - [3490] = 870, - [3491] = 1085, - [3492] = 1087, - [3493] = 1174, - [3494] = 1090, - [3495] = 1118, - [3496] = 1121, - [3497] = 1127, - [3498] = 1132, - [3499] = 807, - [3500] = 1048, - [3501] = 1146, - [3502] = 882, - [3503] = 1147, - [3504] = 1149, - [3505] = 1160, - [3506] = 1161, - [3507] = 870, - [3508] = 863, - [3509] = 1113, - [3510] = 1163, - [3511] = 1164, - [3512] = 1165, - [3513] = 1173, - [3514] = 1120, - [3515] = 1177, - [3516] = 1178, - [3517] = 1184, - [3518] = 1105, - [3519] = 1104, - [3520] = 1187, - [3521] = 1190, - [3522] = 1180, - [3523] = 1192, - [3524] = 1136, - [3525] = 1194, - [3526] = 1195, - [3527] = 1172, - [3528] = 909, - [3529] = 838, - [3530] = 833, - [3531] = 899, - [3532] = 924, - [3533] = 885, - [3534] = 907, - [3535] = 901, - [3536] = 843, - [3537] = 915, - [3538] = 858, - [3539] = 878, - [3540] = 881, - [3541] = 887, - [3542] = 863, - [3543] = 870, - [3544] = 929, - [3545] = 852, - [3546] = 855, - [3547] = 853, - [3548] = 875, - [3549] = 866, - [3550] = 908, - [3551] = 833, - [3552] = 859, - [3553] = 919, - [3554] = 861, - [3555] = 807, - [3556] = 805, - [3557] = 884, - [3558] = 788, - [3559] = 794, - [3560] = 914, - [3561] = 921, - [3562] = 805, - [3563] = 912, - [3564] = 896, - [3565] = 913, - [3566] = 923, - [3567] = 925, - [3568] = 902, - [3569] = 926, - [3570] = 930, - [3571] = 960, - [3572] = 949, - [3573] = 939, - [3574] = 839, - [3575] = 944, - [3576] = 920, - [3577] = 898, - [3578] = 841, - [3579] = 931, - [3580] = 916, - [3581] = 842, - [3582] = 846, - [3583] = 832, - [3584] = 807, - [3585] = 927, - [3586] = 946, - [3587] = 943, - [3588] = 893, - [3589] = 935, - [3590] = 941, - [3591] = 942, - [3592] = 788, - [3593] = 934, - [3594] = 936, - [3595] = 794, - [3596] = 842, - [3597] = 969, - [3598] = 936, - [3599] = 935, - [3600] = 955, - [3601] = 931, - [3602] = 861, - [3603] = 838, - [3604] = 1019, - [3605] = 3605, - [3606] = 839, - [3607] = 841, - [3608] = 985, - [3609] = 898, - [3610] = 1020, - [3611] = 946, - [3612] = 846, - [3613] = 943, - [3614] = 941, - [3615] = 947, - [3616] = 1058, - [3617] = 1059, - [3618] = 978, - [3619] = 983, - [3620] = 981, - [3621] = 3621, - [3622] = 984, - [3623] = 1023, - [3624] = 855, - [3625] = 861, - [3626] = 852, - [3627] = 979, - [3628] = 986, - [3629] = 870, - [3630] = 863, - [3631] = 909, - [3632] = 887, - [3633] = 954, - [3634] = 1024, - [3635] = 949, - [3636] = 1060, - [3637] = 1063, - [3638] = 988, - [3639] = 980, - [3640] = 989, - [3641] = 948, - [3642] = 973, - [3643] = 950, - [3644] = 919, - [3645] = 1013, - [3646] = 1015, - [3647] = 1044, - [3648] = 1043, - [3649] = 912, - [3650] = 975, - [3651] = 974, - [3652] = 958, - [3653] = 971, - [3654] = 977, - [3655] = 987, - [3656] = 855, - [3657] = 852, - [3658] = 852, - [3659] = 992, - [3660] = 924, - [3661] = 976, - [3662] = 952, - [3663] = 364, - [3664] = 375, - [3665] = 964, - [3666] = 885, - [3667] = 972, - [3668] = 953, - [3669] = 1040, - [3670] = 861, - [3671] = 963, - [3672] = 953, - [3673] = 982, - [3674] = 833, - [3675] = 794, - [3676] = 788, - [3677] = 805, - [3678] = 370, - [3679] = 807, - [3680] = 846, - [3681] = 870, - [3682] = 863, - [3683] = 863, - [3684] = 855, - [3685] = 870, - [3686] = 842, - [3687] = 841, - [3688] = 839, - [3689] = 1005, - [3690] = 966, - [3691] = 838, - [3692] = 899, - [3693] = 959, - [3694] = 993, - [3695] = 997, - [3696] = 962, - [3697] = 970, - [3698] = 366, - [3699] = 979, - [3700] = 961, - [3701] = 965, - [3702] = 1028, - [3703] = 802, - [3704] = 359, - [3705] = 373, - [3706] = 3706, - [3707] = 372, - [3708] = 975, - [3709] = 357, - [3710] = 368, - [3711] = 362, - [3712] = 361, - [3713] = 934, - [3714] = 974, - [3715] = 358, - [3716] = 376, - [3717] = 971, - [3718] = 374, - [3719] = 870, - [3720] = 863, - [3721] = 1105, - [3722] = 363, - [3723] = 1104, - [3724] = 966, - [3725] = 949, - [3726] = 959, - [3727] = 360, - [3728] = 3728, - [3729] = 942, - [3730] = 960, - [3731] = 369, - [3732] = 365, - [3733] = 1022, - [3734] = 950, - [3735] = 952, - [3736] = 1111, - [3737] = 935, - [3738] = 936, - [3739] = 870, - [3740] = 1209, - [3741] = 1099, - [3742] = 901, - [3743] = 1089, - [3744] = 863, - [3745] = 941, - [3746] = 1142, - [3747] = 1129, - [3748] = 1086, - [3749] = 866, - [3750] = 1119, - [3751] = 1124, - [3752] = 360, - [3753] = 369, - [3754] = 863, - [3755] = 875, - [3756] = 870, - [3757] = 859, - [3758] = 365, - [3759] = 364, - [3760] = 1138, - [3761] = 853, - [3762] = 1090, - [3763] = 881, - [3764] = 1087, - [3765] = 878, - [3766] = 863, - [3767] = 1085, - [3768] = 1081, - [3769] = 1080, - [3770] = 870, - [3771] = 858, - [3772] = 1078, - [3773] = 1073, - [3774] = 1068, - [3775] = 931, - [3776] = 1126, - [3777] = 1139, - [3778] = 942, - [3779] = 1144, - [3780] = 934, - [3781] = 1141, - [3782] = 1180, - [3783] = 898, - [3784] = 1088, - [3785] = 1118, - [3786] = 946, - [3787] = 1121, - [3788] = 1150, - [3789] = 943, - [3790] = 1122, - [3791] = 941, - [3792] = 1051, - [3793] = 843, - [3794] = 859, - [3795] = 1067, - [3796] = 1108, - [3797] = 936, - [3798] = 935, - [3799] = 1160, - [3800] = 1127, - [3801] = 1132, - [3802] = 931, - [3803] = 1143, - [3804] = 1145, - [3805] = 1201, - [3806] = 943, - [3807] = 1061, - [3808] = 838, - [3809] = 1053, - [3810] = 969, - [3811] = 839, - [3812] = 866, - [3813] = 841, - [3814] = 985, - [3815] = 842, - [3816] = 875, - [3817] = 375, - [3818] = 846, - [3819] = 1048, - [3820] = 1153, - [3821] = 853, - [3822] = 1120, - [3823] = 1162, - [3824] = 1146, - [3825] = 374, - [3826] = 1079, - [3827] = 1107, - [3828] = 1113, - [3829] = 376, - [3830] = 358, - [3831] = 1054, - [3832] = 1075, - [3833] = 1062, - [3834] = 1147, - [3835] = 361, - [3836] = 1149, - [3837] = 362, - [3838] = 368, - [3839] = 357, - [3840] = 924, - [3841] = 372, - [3842] = 373, - [3843] = 359, - [3844] = 1055, - [3845] = 1049, - [3846] = 881, - [3847] = 1148, - [3848] = 1056, - [3849] = 1205, - [3850] = 1166, - [3851] = 1161, - [3852] = 1202, - [3853] = 1185, - [3854] = 924, - [3855] = 1057, - [3856] = 1191, - [3857] = 878, - [3858] = 1197, - [3859] = 1206, - [3860] = 1196, - [3861] = 1163, - [3862] = 799, - [3863] = 858, - [3864] = 1066, - [3865] = 843, - [3866] = 1079, - [3867] = 1069, - [3868] = 1112, - [3869] = 912, - [3870] = 1082, - [3871] = 1114, - [3872] = 1152, - [3873] = 1199, - [3874] = 1103, - [3875] = 1079, - [3876] = 1171, - [3877] = 1110, - [3878] = 1131, - [3879] = 909, - [3880] = 1157, - [3881] = 1198, - [3882] = 1047, - [3883] = 1115, - [3884] = 1133, - [3885] = 884, - [3886] = 1135, - [3887] = 1158, - [3888] = 946, - [3889] = 1159, - [3890] = 1193, - [3891] = 1013, - [3892] = 1015, - [3893] = 898, - [3894] = 912, - [3895] = 1115, - [3896] = 1140, - [3897] = 1076, - [3898] = 1070, - [3899] = 1151, - [3900] = 1094, - [3901] = 1181, - [3902] = 832, - [3903] = 3903, - [3904] = 970, - [3905] = 1176, - [3906] = 1164, - [3907] = 924, - [3908] = 1167, - [3909] = 909, - [3910] = 1104, - [3911] = 1170, - [3912] = 791, - [3913] = 1105, - [3914] = 1101, - [3915] = 1165, - [3916] = 912, - [3917] = 1136, - [3918] = 1174, - [3919] = 909, - [3920] = 1192, - [3921] = 929, - [3922] = 1194, - [3923] = 3923, - [3924] = 1183, - [3925] = 1175, - [3926] = 1195, - [3927] = 1204, - [3928] = 1169, - [3929] = 1182, - [3930] = 832, - [3931] = 1074, - [3932] = 931, - [3933] = 1200, - [3934] = 1096, - [3935] = 863, - [3936] = 1173, - [3937] = 1177, - [3938] = 1115, - [3939] = 1058, - [3940] = 1059, - [3941] = 1060, - [3942] = 1063, - [3943] = 1172, - [3944] = 366, - [3945] = 1097, - [3946] = 1178, - [3947] = 870, - [3948] = 935, - [3949] = 936, - [3950] = 1100, - [3951] = 1186, - [3952] = 1168, - [3953] = 363, - [3954] = 954, - [3955] = 1134, - [3956] = 941, - [3957] = 1184, - [3958] = 943, - [3959] = 1187, - [3960] = 946, - [3961] = 898, - [3962] = 1190, - [3963] = 1128, - [3964] = 1189, - [3965] = 1154, - [3966] = 1063, - [3967] = 374, - [3968] = 807, - [3969] = 907, - [3970] = 907, - [3971] = 788, - [3972] = 934, - [3973] = 365, - [3974] = 855, - [3975] = 852, - [3976] = 369, - [3977] = 942, - [3978] = 870, - [3979] = 868, - [3980] = 360, - [3981] = 368, - [3982] = 1058, - [3983] = 833, - [3984] = 1059, - [3985] = 859, - [3986] = 364, - [3987] = 1060, - [3988] = 837, - [3989] = 866, - [3990] = 875, - [3991] = 863, - [3992] = 794, - [3993] = 915, - [3994] = 794, - [3995] = 853, - [3996] = 881, - [3997] = 788, - [3998] = 878, - [3999] = 865, - [4000] = 858, - [4001] = 1104, - [4002] = 1105, - [4003] = 805, - [4004] = 4004, - [4005] = 833, - [4006] = 807, - [4007] = 843, - [4008] = 863, - [4009] = 934, - [4010] = 870, - [4011] = 366, - [4012] = 942, - [4013] = 359, - [4014] = 373, - [4015] = 372, - [4016] = 869, - [4017] = 375, - [4018] = 357, - [4019] = 861, - [4020] = 363, - [4021] = 362, - [4022] = 361, - [4023] = 358, - [4024] = 805, - [4025] = 914, - [4026] = 376, - [4027] = 4027, - [4028] = 870, - [4029] = 1058, - [4030] = 870, - [4031] = 4031, - [4032] = 852, - [4033] = 863, - [4034] = 805, - [4035] = 855, - [4036] = 1209, - [4037] = 358, - [4038] = 365, - [4039] = 376, - [4040] = 361, - [4041] = 861, - [4042] = 4042, - [4043] = 362, - [4044] = 1105, - [4045] = 368, - [4046] = 374, - [4047] = 1104, - [4048] = 366, - [4049] = 357, - [4050] = 1101, - [4051] = 961, - [4052] = 788, - [4053] = 1063, - [4054] = 370, - [4055] = 372, - [4056] = 1060, - [4057] = 846, - [4058] = 363, - [4059] = 898, - [4060] = 842, - [4061] = 946, - [4062] = 373, - [4063] = 1059, - [4064] = 943, - [4065] = 863, - [4066] = 841, - [4067] = 941, - [4068] = 936, - [4069] = 360, - [4070] = 935, - [4071] = 359, - [4072] = 931, - [4073] = 839, - [4074] = 1128, - [4075] = 375, - [4076] = 1172, - [4077] = 4077, - [4078] = 949, - [4079] = 1136, - [4080] = 961, - [4081] = 807, - [4082] = 838, - [4083] = 839, - [4084] = 833, - [4085] = 841, - [4086] = 842, - [4087] = 960, - [4088] = 949, - [4089] = 4089, - [4090] = 949, - [4091] = 846, - [4092] = 924, - [4093] = 912, - [4094] = 838, - [4095] = 948, - [4096] = 909, - [4097] = 4097, - [4098] = 369, - [4099] = 948, - [4100] = 364, - [4101] = 794, - [4102] = 912, - [4103] = 863, - [4104] = 838, - [4105] = 931, - [4106] = 935, - [4107] = 878, - [4108] = 881, - [4109] = 861, - [4110] = 878, - [4111] = 941, - [4112] = 943, - [4113] = 858, - [4114] = 853, + [2872] = 492, + [2873] = 513, + [2874] = 502, + [2875] = 503, + [2876] = 481, + [2877] = 480, + [2878] = 488, + [2879] = 487, + [2880] = 482, + [2881] = 825, + [2882] = 911, + [2883] = 822, + [2884] = 835, + [2885] = 821, + [2886] = 484, + [2887] = 482, + [2888] = 853, + [2889] = 813, + [2890] = 909, + [2891] = 483, + [2892] = 818, + [2893] = 488, + [2894] = 498, + [2895] = 850, + [2896] = 859, + [2897] = 815, + [2898] = 894, + [2899] = 824, + [2900] = 925, + [2901] = 844, + [2902] = 868, + [2903] = 492, + [2904] = 871, + [2905] = 819, + [2906] = 814, + [2907] = 832, + [2908] = 905, + [2909] = 820, + [2910] = 816, + [2911] = 903, + [2912] = 513, + [2913] = 502, + [2914] = 906, + [2915] = 884, + [2916] = 837, + [2917] = 924, + [2918] = 819, + [2919] = 829, + [2920] = 899, + [2921] = 855, + [2922] = 904, + [2923] = 898, + [2924] = 920, + [2925] = 919, + [2926] = 812, + [2927] = 896, + [2928] = 816, + [2929] = 503, + [2930] = 481, + [2931] = 825, + [2932] = 480, + [2933] = 908, + [2934] = 865, + [2935] = 917, + [2936] = 907, + [2937] = 857, + [2938] = 812, + [2939] = 498, + [2940] = 867, + [2941] = 921, + [2942] = 886, + [2943] = 480, + [2944] = 490, + [2945] = 845, + [2946] = 869, + [2947] = 910, + [2948] = 487, + [2949] = 848, + [2950] = 915, + [2951] = 849, + [2952] = 490, + [2953] = 481, + [2954] = 503, + [2955] = 823, + [2956] = 900, + [2957] = 901, + [2958] = 502, + [2959] = 513, + [2960] = 492, + [2961] = 483, + [2962] = 887, + [2963] = 482, + [2964] = 914, + [2965] = 484, + [2966] = 488, + [2967] = 487, + [2968] = 489, + [2969] = 489, + [2970] = 946, + [2971] = 972, + [2972] = 927, + [2973] = 860, + [2974] = 984, + [2975] = 852, + [2976] = 773, + [2977] = 851, + [2978] = 764, + [2979] = 833, + [2980] = 829, + [2981] = 975, + [2982] = 785, + [2983] = 853, + [2984] = 859, + [2985] = 937, + [2986] = 850, + [2987] = 994, + [2988] = 835, + [2989] = 960, + [2990] = 966, + [2991] = 832, + [2992] = 982, + [2993] = 979, + [2994] = 973, + [2995] = 963, + [2996] = 990, + [2997] = 993, + [2998] = 855, + [2999] = 934, + [3000] = 857, + [3001] = 971, + [3002] = 956, + [3003] = 1001, + [3004] = 785, + [3005] = 947, + [3006] = 943, + [3007] = 935, + [3008] = 854, + [3009] = 955, + [3010] = 931, + [3011] = 930, + [3012] = 928, + [3013] = 856, + [3014] = 858, + [3015] = 969, + [3016] = 864, + [3017] = 952, + [3018] = 854, + [3019] = 856, + [3020] = 987, + [3021] = 858, + [3022] = 999, + [3023] = 1000, + [3024] = 933, + [3025] = 861, + [3026] = 831, + [3027] = 983, + [3028] = 932, + [3029] = 938, + [3030] = 861, + [3031] = 974, + [3032] = 830, + [3033] = 1012, + [3034] = 994, + [3035] = 846, + [3036] = 942, + [3037] = 827, + [3038] = 848, + [3039] = 945, + [3040] = 944, + [3041] = 941, + [3042] = 929, + [3043] = 839, + [3044] = 845, + [3045] = 844, + [3046] = 885, + [3047] = 939, + [3048] = 936, + [3049] = 846, + [3050] = 837, + [3051] = 995, + [3052] = 852, + [3053] = 3053, + [3054] = 849, + [3055] = 997, + [3056] = 891, + [3057] = 991, + [3058] = 1004, + [3059] = 831, + [3060] = 1177, + [3061] = 1068, + [3062] = 1071, + [3063] = 1072, + [3064] = 860, + [3065] = 1073, + [3066] = 851, + [3067] = 887, + [3068] = 886, + [3069] = 925, + [3070] = 894, + [3071] = 1083, + [3072] = 1076, + [3073] = 1092, + [3074] = 1094, + [3075] = 801, + [3076] = 1077, + [3077] = 1125, + [3078] = 869, + [3079] = 1106, + [3080] = 1065, + [3081] = 910, + [3082] = 1129, + [3083] = 1101, + [3084] = 1104, + [3085] = 1110, + [3086] = 967, + [3087] = 918, + [3088] = 1035, + [3089] = 968, + [3090] = 1042, + [3091] = 1114, + [3092] = 1057, + [3093] = 1040, + [3094] = 1115, + [3095] = 1108, + [3096] = 915, + [3097] = 847, + [3098] = 1116, + [3099] = 1117, + [3100] = 842, + [3101] = 847, + [3102] = 1054, + [3103] = 1075, + [3104] = 917, + [3105] = 842, + [3106] = 865, + [3107] = 911, + [3108] = 866, + [3109] = 921, + [3110] = 1085, + [3111] = 1099, + [3112] = 896, + [3113] = 867, + [3114] = 1122, + [3115] = 1123, + [3116] = 1124, + [3117] = 868, + [3118] = 1128, + [3119] = 909, + [3120] = 1070, + [3121] = 1132, + [3122] = 3122, + [3123] = 1069, + [3124] = 898, + [3125] = 871, + [3126] = 1163, + [3127] = 921, + [3128] = 1027, + [3129] = 828, + [3130] = 1164, + [3131] = 1026, + [3132] = 1131, + [3133] = 1082, + [3134] = 1109, + [3135] = 1064, + [3136] = 905, + [3137] = 1023, + [3138] = 1135, + [3139] = 907, + [3140] = 1098, + [3141] = 1058, + [3142] = 908, + [3143] = 1051, + [3144] = 1041, + [3145] = 1034, + [3146] = 1028, + [3147] = 903, + [3148] = 1056, + [3149] = 1029, + [3150] = 1174, + [3151] = 1053, + [3152] = 1074, + [3153] = 1030, + [3154] = 839, + [3155] = 1050, + [3156] = 1059, + [3157] = 1043, + [3158] = 899, + [3159] = 1061, + [3160] = 1049, + [3161] = 1171, + [3162] = 1136, + [3163] = 828, + [3164] = 867, + [3165] = 1018, + [3166] = 840, + [3167] = 1140, + [3168] = 1062, + [3169] = 1057, + [3170] = 1047, + [3171] = 1063, + [3172] = 864, + [3173] = 1180, + [3174] = 1044, + [3175] = 904, + [3176] = 827, + [3177] = 830, + [3178] = 1186, + [3179] = 1165, + [3180] = 887, + [3181] = 1039, + [3182] = 1054, + [3183] = 914, + [3184] = 899, + [3185] = 847, + [3186] = 842, + [3187] = 1147, + [3188] = 1078, + [3189] = 898, + [3190] = 1149, + [3191] = 900, + [3192] = 896, + [3193] = 823, + [3194] = 911, + [3195] = 1014, + [3196] = 1079, + [3197] = 1036, + [3198] = 842, + [3199] = 833, + [3200] = 1133, + [3201] = 1019, + [3202] = 919, + [3203] = 1137, + [3204] = 988, + [3205] = 1139, + [3206] = 1141, + [3207] = 1020, + [3208] = 920, + [3209] = 885, + [3210] = 1169, + [3211] = 847, + [3212] = 1038, + [3213] = 1066, + [3214] = 901, + [3215] = 1052, + [3216] = 1017, + [3217] = 1168, + [3218] = 912, + [3219] = 1162, + [3220] = 1081, + [3221] = 1159, + [3222] = 884, + [3223] = 906, + [3224] = 903, + [3225] = 1158, + [3226] = 1161, + [3227] = 1103, + [3228] = 1187, + [3229] = 1112, + [3230] = 1021, + [3231] = 909, + [3232] = 1185, + [3233] = 821, + [3234] = 1183, + [3235] = 1182, + [3236] = 1118, + [3237] = 1170, + [3238] = 1181, + [3239] = 1120, + [3240] = 1176, + [3241] = 1138, + [3242] = 1024, + [3243] = 1033, + [3244] = 1175, + [3245] = 1031, + [3246] = 1173, + [3247] = 1172, + [3248] = 1150, + [3249] = 1143, + [3250] = 891, + [3251] = 1144, + [3252] = 1025, + [3253] = 924, + [3254] = 1148, + [3255] = 1167, + [3256] = 1166, + [3257] = 900, + [3258] = 1048, + [3259] = 1145, + [3260] = 1151, + [3261] = 884, + [3262] = 1055, + [3263] = 1067, + [3264] = 1160, + [3265] = 1097, + [3266] = 1130, + [3267] = 905, + [3268] = 1157, + [3269] = 1153, + [3270] = 1155, + [3271] = 901, + [3272] = 1154, + [3273] = 815, + [3274] = 818, + [3275] = 820, + [3276] = 942, + [3277] = 363, + [3278] = 359, + [3279] = 825, + [3280] = 969, + [3281] = 938, + [3282] = 967, + [3283] = 968, + [3284] = 928, + [3285] = 988, + [3286] = 377, + [3287] = 842, + [3288] = 365, + [3289] = 374, + [3290] = 847, + [3291] = 934, + [3292] = 991, + [3293] = 936, + [3294] = 812, + [3295] = 952, + [3296] = 367, + [3297] = 1004, + [3298] = 931, + [3299] = 361, + [3300] = 972, + [3301] = 1001, + [3302] = 955, + [3303] = 935, + [3304] = 973, + [3305] = 820, + [3306] = 819, + [3307] = 979, + [3308] = 824, + [3309] = 982, + [3310] = 376, + [3311] = 946, + [3312] = 932, + [3313] = 820, + [3314] = 814, + [3315] = 994, + [3316] = 815, + [3317] = 818, + [3318] = 822, + [3319] = 816, + [3320] = 974, + [3321] = 997, + [3322] = 814, + [3323] = 822, + [3324] = 943, + [3325] = 987, + [3326] = 995, + [3327] = 947, + [3328] = 366, + [3329] = 945, + [3330] = 360, + [3331] = 984, + [3332] = 823, + [3333] = 364, + [3334] = 999, + [3335] = 368, + [3336] = 369, + [3337] = 370, + [3338] = 373, + [3339] = 379, + [3340] = 378, + [3341] = 930, + [3342] = 939, + [3343] = 1000, + [3344] = 372, + [3345] = 937, + [3346] = 933, + [3347] = 813, + [3348] = 981, + [3349] = 822, + [3350] = 818, + [3351] = 960, + [3352] = 983, + [3353] = 927, + [3354] = 966, + [3355] = 815, + [3356] = 963, + [3357] = 992, + [3358] = 814, + [3359] = 1012, + [3360] = 985, + [3361] = 990, + [3362] = 993, + [3363] = 929, + [3364] = 821, + [3365] = 941, + [3366] = 971, + [3367] = 944, + [3368] = 956, + [3369] = 837, + [3370] = 1044, + [3371] = 833, + [3372] = 852, + [3373] = 846, + [3374] = 857, + [3375] = 855, + [3376] = 829, + [3377] = 832, + [3378] = 849, + [3379] = 848, + [3380] = 845, + [3381] = 835, + [3382] = 844, + [3383] = 837, + [3384] = 850, + [3385] = 849, + [3386] = 848, + [3387] = 1057, + [3388] = 845, + [3389] = 844, + [3390] = 859, + [3391] = 831, + [3392] = 860, + [3393] = 851, + [3394] = 853, + [3395] = 1106, + [3396] = 1067, + [3397] = 1097, + [3398] = 1103, + [3399] = 866, + [3400] = 1130, + [3401] = 1042, + [3402] = 1129, + [3403] = 904, + [3404] = 1036, + [3405] = 3405, + [3406] = 1133, + [3407] = 1012, + [3408] = 864, + [3409] = 846, + [3410] = 842, + [3411] = 847, + [3412] = 852, + [3413] = 1055, + [3414] = 1048, + [3415] = 1109, + [3416] = 842, + [3417] = 885, + [3418] = 847, + [3419] = 1151, + [3420] = 1117, + [3421] = 1116, + [3422] = 1115, + [3423] = 1054, + [3424] = 1145, + [3425] = 837, + [3426] = 914, + [3427] = 844, + [3428] = 1049, + [3429] = 831, + [3430] = 1131, + [3431] = 845, + [3432] = 848, + [3433] = 1028, + [3434] = 1034, + [3435] = 1075, + [3436] = 1164, + [3437] = 1077, + [3438] = 1076, + [3439] = 1149, + [3440] = 1150, + [3441] = 1176, + [3442] = 1058, + [3443] = 1051, + [3444] = 982, + [3445] = 979, + [3446] = 973, + [3447] = 1058, + [3448] = 1051, + [3449] = 1034, + [3450] = 1028, + [3451] = 1125, + [3452] = 1065, + [3453] = 1018, + [3454] = 1108, + [3455] = 849, + [3456] = 1114, + [3457] = 1085, + [3458] = 1099, + [3459] = 1098, + [3460] = 1122, + [3461] = 1123, + [3462] = 828, + [3463] = 1040, + [3464] = 1124, + [3465] = 1035, + [3466] = 1128, + [3467] = 1132, + [3468] = 1078, + [3469] = 1163, + [3470] = 1082, + [3471] = 1135, + [3472] = 1174, + [3473] = 1059, + [3474] = 1074, + [3475] = 1061, + [3476] = 1171, + [3477] = 1136, + [3478] = 1140, + [3479] = 1062, + [3480] = 1063, + [3481] = 1165, + [3482] = 1019, + [3483] = 1144, + [3484] = 938, + [3485] = 1110, + [3486] = 974, + [3487] = 1052, + [3488] = 1017, + [3489] = 1020, + [3490] = 1081, + [3491] = 1021, + [3492] = 1112, + [3493] = 1118, + [3494] = 1120, + [3495] = 1138, + [3496] = 1024, + [3497] = 1143, + [3498] = 1147, + [3499] = 1025, + [3500] = 1031, + [3501] = 1148, + [3502] = 1153, + [3503] = 1033, + [3504] = 1154, + [3505] = 1155, + [3506] = 842, + [3507] = 1157, + [3508] = 847, + [3509] = 1038, + [3510] = 1160, + [3511] = 1104, + [3512] = 1166, + [3513] = 1167, + [3514] = 1101, + [3515] = 3515, + [3516] = 1094, + [3517] = 1172, + [3518] = 991, + [3519] = 1004, + [3520] = 1173, + [3521] = 1175, + [3522] = 1040, + [3523] = 1035, + [3524] = 1181, + [3525] = 1092, + [3526] = 1083, + [3527] = 1182, + [3528] = 1183, + [3529] = 891, + [3530] = 1185, + [3531] = 1170, + [3532] = 842, + [3533] = 1187, + [3534] = 847, + [3535] = 1161, + [3536] = 1158, + [3537] = 1159, + [3538] = 854, + [3539] = 1068, + [3540] = 1066, + [3541] = 972, + [3542] = 1162, + [3543] = 1141, + [3544] = 1139, + [3545] = 856, + [3546] = 1137, + [3547] = 1168, + [3548] = 858, + [3549] = 1169, + [3550] = 861, + [3551] = 1079, + [3552] = 1014, + [3553] = 1054, + [3554] = 824, + [3555] = 822, + [3556] = 830, + [3557] = 1057, + [3558] = 827, + [3559] = 842, + [3560] = 847, + [3561] = 818, + [3562] = 1186, + [3563] = 815, + [3564] = 814, + [3565] = 1180, + [3566] = 820, + [3567] = 1177, + [3568] = 3568, + [3569] = 3569, + [3570] = 842, + [3571] = 847, + [3572] = 822, + [3573] = 853, + [3574] = 818, + [3575] = 859, + [3576] = 850, + [3577] = 835, + [3578] = 815, + [3579] = 832, + [3580] = 829, + [3581] = 814, + [3582] = 855, + [3583] = 1073, + [3584] = 1072, + [3585] = 1071, + [3586] = 857, + [3587] = 1070, + [3588] = 1027, + [3589] = 1043, + [3590] = 1041, + [3591] = 1069, + [3592] = 1064, + [3593] = 1056, + [3594] = 1053, + [3595] = 820, + [3596] = 1050, + [3597] = 839, + [3598] = 1039, + [3599] = 1030, + [3600] = 1029, + [3601] = 1047, + [3602] = 1023, + [3603] = 1026, + [3604] = 887, + [3605] = 894, + [3606] = 988, + [3607] = 907, + [3608] = 919, + [3609] = 925, + [3610] = 920, + [3611] = 914, + [3612] = 1057, + [3613] = 887, + [3614] = 886, + [3615] = 900, + [3616] = 901, + [3617] = 967, + [3618] = 968, + [3619] = 821, + [3620] = 896, + [3621] = 896, + [3622] = 869, + [3623] = 864, + [3624] = 910, + [3625] = 992, + [3626] = 985, + [3627] = 918, + [3628] = 3628, + [3629] = 975, + [3630] = 823, + [3631] = 898, + [3632] = 816, + [3633] = 899, + [3634] = 1054, + [3635] = 924, + [3636] = 884, + [3637] = 3637, + [3638] = 885, + [3639] = 994, + [3640] = 898, + [3641] = 899, + [3642] = 981, + [3643] = 837, + [3644] = 912, + [3645] = 903, + [3646] = 905, + [3647] = 903, + [3648] = 823, + [3649] = 905, + [3650] = 915, + [3651] = 891, + [3652] = 909, + [3653] = 909, + [3654] = 911, + [3655] = 844, + [3656] = 911, + [3657] = 821, + [3658] = 842, + [3659] = 847, + [3660] = 908, + [3661] = 871, + [3662] = 849, + [3663] = 845, + [3664] = 917, + [3665] = 848, + [3666] = 868, + [3667] = 867, + [3668] = 906, + [3669] = 848, + [3670] = 866, + [3671] = 831, + [3672] = 865, + [3673] = 849, + [3674] = 921, + [3675] = 820, + [3676] = 819, + [3677] = 845, + [3678] = 814, + [3679] = 842, + [3680] = 823, + [3681] = 815, + [3682] = 847, + [3683] = 857, + [3684] = 844, + [3685] = 855, + [3686] = 829, + [3687] = 818, + [3688] = 884, + [3689] = 853, + [3690] = 852, + [3691] = 821, + [3692] = 832, + [3693] = 859, + [3694] = 846, + [3695] = 850, + [3696] = 835, + [3697] = 832, + [3698] = 829, + [3699] = 855, + [3700] = 835, + [3701] = 850, + [3702] = 859, + [3703] = 857, + [3704] = 904, + [3705] = 837, + [3706] = 900, + [3707] = 822, + [3708] = 901, + [3709] = 853, + [3710] = 903, + [3711] = 374, + [3712] = 939, + [3713] = 848, + [3714] = 941, + [3715] = 944, + [3716] = 849, + [3717] = 937, + [3718] = 846, + [3719] = 927, + [3720] = 831, + [3721] = 945, + [3722] = 852, + [3723] = 946, + [3724] = 3724, + [3725] = 918, + [3726] = 852, + [3727] = 901, + [3728] = 845, + [3729] = 900, + [3730] = 831, + [3731] = 932, + [3732] = 844, + [3733] = 952, + [3734] = 887, + [3735] = 867, + [3736] = 921, + [3737] = 983, + [3738] = 837, + [3739] = 933, + [3740] = 988, + [3741] = 1000, + [3742] = 858, + [3743] = 846, + [3744] = 921, + [3745] = 994, + [3746] = 981, + [3747] = 999, + [3748] = 911, + [3749] = 909, + [3750] = 905, + [3751] = 899, + [3752] = 898, + [3753] = 987, + [3754] = 975, + [3755] = 365, + [3756] = 985, + [3757] = 995, + [3758] = 855, + [3759] = 896, + [3760] = 934, + [3761] = 967, + [3762] = 867, + [3763] = 968, + [3764] = 832, + [3765] = 835, + [3766] = 994, + [3767] = 829, + [3768] = 367, + [3769] = 936, + [3770] = 831, + [3771] = 377, + [3772] = 960, + [3773] = 359, + [3774] = 376, + [3775] = 966, + [3776] = 378, + [3777] = 379, + [3778] = 861, + [3779] = 373, + [3780] = 370, + [3781] = 997, + [3782] = 963, + [3783] = 853, + [3784] = 369, + [3785] = 368, + [3786] = 969, + [3787] = 364, + [3788] = 366, + [3789] = 360, + [3790] = 3790, + [3791] = 990, + [3792] = 363, + [3793] = 938, + [3794] = 993, + [3795] = 928, + [3796] = 925, + [3797] = 857, + [3798] = 859, + [3799] = 982, + [3800] = 979, + [3801] = 930, + [3802] = 973, + [3803] = 931, + [3804] = 912, + [3805] = 942, + [3806] = 854, + [3807] = 972, + [3808] = 852, + [3809] = 361, + [3810] = 971, + [3811] = 372, + [3812] = 846, + [3813] = 955, + [3814] = 850, + [3815] = 992, + [3816] = 943, + [3817] = 974, + [3818] = 984, + [3819] = 1012, + [3820] = 935, + [3821] = 991, + [3822] = 956, + [3823] = 947, + [3824] = 856, + [3825] = 929, + [3826] = 1004, + [3827] = 1001, + [3828] = 1027, + [3829] = 1057, + [3830] = 994, + [3831] = 1128, + [3832] = 1120, + [3833] = 1138, + [3834] = 1055, + [3835] = 952, + [3836] = 1143, + [3837] = 1144, + [3838] = 1168, + [3839] = 1148, + [3840] = 1153, + [3841] = 1125, + [3842] = 1154, + [3843] = 1054, + [3844] = 1155, + [3845] = 914, + [3846] = 1157, + [3847] = 1186, + [3848] = 842, + [3849] = 1160, + [3850] = 887, + [3851] = 1147, + [3852] = 896, + [3853] = 847, + [3854] = 1065, + [3855] = 900, + [3856] = 1166, + [3857] = 909, + [3858] = 1164, + [3859] = 898, + [3860] = 1106, + [3861] = 1167, + [3862] = 1150, + [3863] = 1049, + [3864] = 911, + [3865] = 921, + [3866] = 1014, + [3867] = 1079, + [3868] = 903, + [3869] = 887, + [3870] = 1177, + [3871] = 3871, + [3872] = 359, + [3873] = 1097, + [3874] = 1137, + [3875] = 1118, + [3876] = 904, + [3877] = 1162, + [3878] = 1139, + [3879] = 363, + [3880] = 900, + [3881] = 1043, + [3882] = 1129, + [3883] = 3883, + [3884] = 1141, + [3885] = 901, + [3886] = 1035, + [3887] = 1040, + [3888] = 1030, + [3889] = 3889, + [3890] = 1183, + [3891] = 1067, + [3892] = 1117, + [3893] = 1116, + [3894] = 1131, + [3895] = 1103, + [3896] = 911, + [3897] = 909, + [3898] = 1042, + [3899] = 1115, + [3900] = 1048, + [3901] = 1169, + [3902] = 1112, + [3903] = 1114, + [3904] = 1145, + [3905] = 905, + [3906] = 1151, + [3907] = 1029, + [3908] = 899, + [3909] = 1172, + [3910] = 1173, + [3911] = 901, + [3912] = 1149, + [3913] = 903, + [3914] = 1168, + [3915] = 1109, + [3916] = 1081, + [3917] = 898, + [3918] = 900, + [3919] = 377, + [3920] = 374, + [3921] = 367, + [3922] = 361, + [3923] = 1075, + [3924] = 896, + [3925] = 372, + [3926] = 376, + [3927] = 378, + [3928] = 379, + [3929] = 373, + [3930] = 370, + [3931] = 369, + [3932] = 1175, + [3933] = 1162, + [3934] = 368, + [3935] = 1076, + [3936] = 364, + [3937] = 899, + [3938] = 1017, + [3939] = 929, + [3940] = 366, + [3941] = 360, + [3942] = 1132, + [3943] = 1052, + [3944] = 898, + [3945] = 1066, + [3946] = 1159, + [3947] = 1108, + [3948] = 1110, + [3949] = 896, + [3950] = 1104, + [3951] = 901, + [3952] = 1133, + [3953] = 1068, + [3954] = 899, + [3955] = 1101, + [3956] = 1180, + [3957] = 1169, + [3958] = 1158, + [3959] = 1165, + [3960] = 1098, + [3961] = 1161, + [3962] = 1063, + [3963] = 1062, + [3964] = 1092, + [3965] = 975, + [3966] = 1036, + [3967] = 1140, + [3968] = 1023, + [3969] = 1083, + [3970] = 1176, + [3971] = 1078, + [3972] = 1130, + [3973] = 911, + [3974] = 994, + [3975] = 3975, + [3976] = 1170, + [3977] = 1074, + [3978] = 1136, + [3979] = 3979, + [3980] = 887, + [3981] = 1171, + [3982] = 1061, + [3983] = 1018, + [3984] = 909, + [3985] = 1028, + [3986] = 1059, + [3987] = 1181, + [3988] = 1034, + [3989] = 1077, + [3990] = 1019, + [3991] = 1051, + [3992] = 1058, + [3993] = 1170, + [3994] = 1073, + [3995] = 1085, + [3996] = 1072, + [3997] = 1071, + [3998] = 1159, + [3999] = 842, + [4000] = 1020, + [4001] = 1182, + [4002] = 1174, + [4003] = 1094, + [4004] = 853, + [4005] = 1021, + [4006] = 1026, + [4007] = 1024, + [4008] = 859, + [4009] = 850, + [4010] = 1025, + [4011] = 835, + [4012] = 832, + [4013] = 829, + [4014] = 1038, + [4015] = 855, + [4016] = 857, + [4017] = 1057, + [4018] = 1099, + [4019] = 905, + [4020] = 905, + [4021] = 1122, + [4022] = 1187, + [4023] = 847, + [4024] = 1031, + [4025] = 1069, + [4026] = 1054, + [4027] = 1123, + [4028] = 1033, + [4029] = 867, + [4030] = 1135, + [4031] = 1082, + [4032] = 1070, + [4033] = 1163, + [4034] = 1124, + [4035] = 1185, + [4036] = 903, + [4037] = 1039, + [4038] = 1041, + [4039] = 1044, + [4040] = 1047, + [4041] = 1050, + [4042] = 1053, + [4043] = 1056, + [4044] = 1064, + [4045] = 1034, + [4046] = 364, + [4047] = 376, + [4048] = 359, + [4049] = 925, + [4050] = 372, + [4051] = 369, + [4052] = 867, + [4053] = 367, + [4054] = 921, + [4055] = 1028, + [4056] = 847, + [4057] = 360, + [4058] = 1051, + [4059] = 1058, + [4060] = 368, + [4061] = 1035, + [4062] = 1040, + [4063] = 842, + [4064] = 818, + [4065] = 370, + [4066] = 820, + [4067] = 373, + [4068] = 1028, + [4069] = 378, + [4070] = 374, + [4071] = 1034, + [4072] = 379, + [4073] = 1058, + [4074] = 814, + [4075] = 815, + [4076] = 815, + [4077] = 1035, + [4078] = 818, + [4079] = 1040, + [4080] = 361, + [4081] = 867, + [4082] = 377, + [4083] = 847, + [4084] = 822, + [4085] = 842, + [4086] = 921, + [4087] = 820, + [4088] = 822, + [4089] = 363, + [4090] = 847, + [4091] = 842, + [4092] = 366, + [4093] = 842, + [4094] = 847, + [4095] = 814, + [4096] = 1051, + [4097] = 1051, + [4098] = 994, + [4099] = 842, + [4100] = 847, + [4101] = 377, + [4102] = 849, + [4103] = 831, + [4104] = 848, + [4105] = 845, + [4106] = 849, + [4107] = 374, + [4108] = 364, + [4109] = 844, + [4110] = 366, + [4111] = 820, + [4112] = 1034, + [4113] = 852, + [4114] = 367, [4115] = 846, - [4116] = 934, - [4117] = 875, - [4118] = 842, - [4119] = 841, - [4120] = 866, - [4121] = 881, - [4122] = 858, - [4123] = 843, - [4124] = 853, - [4125] = 855, - [4126] = 909, - [4127] = 1105, - [4128] = 1104, - [4129] = 859, - [4130] = 843, - [4131] = 839, - [4132] = 859, - [4133] = 1063, - [4134] = 924, - [4135] = 946, - [4136] = 942, - [4137] = 863, - [4138] = 1105, - [4139] = 870, - [4140] = 1104, - [4141] = 936, - [4142] = 1058, - [4143] = 870, - [4144] = 898, - [4145] = 852, - [4146] = 866, - [4147] = 875, - [4148] = 1060, - [4149] = 1063, - [4150] = 1060, - [4151] = 1059, - [4152] = 1059, - [4153] = 1058, - [4154] = 931, - [4155] = 960, - [4156] = 946, - [4157] = 853, - [4158] = 861, - [4159] = 924, - [4160] = 935, - [4161] = 936, - [4162] = 870, - [4163] = 863, - [4164] = 855, - [4165] = 912, - [4166] = 907, - [4167] = 941, - [4168] = 909, - [4169] = 881, - [4170] = 942, - [4171] = 858, - [4172] = 949, - [4173] = 866, - [4174] = 934, - [4175] = 852, - [4176] = 878, - [4177] = 859, - [4178] = 875, - [4179] = 843, - [4180] = 943, - [4181] = 898, - [4182] = 935, - [4183] = 1059, - [4184] = 909, - [4185] = 375, - [4186] = 1104, - [4187] = 360, - [4188] = 358, - [4189] = 961, - [4190] = 369, - [4191] = 365, - [4192] = 370, - [4193] = 949, - [4194] = 361, - [4195] = 912, - [4196] = 936, - [4197] = 946, - [4198] = 924, - [4199] = 1105, - [4200] = 376, - [4201] = 1063, - [4202] = 364, - [4203] = 1060, - [4204] = 362, - [4205] = 372, - [4206] = 931, - [4207] = 948, - [4208] = 363, - [4209] = 943, - [4210] = 4210, - [4211] = 941, - [4212] = 934, - [4213] = 1058, - [4214] = 898, - [4215] = 949, - [4216] = 368, - [4217] = 357, - [4218] = 366, - [4219] = 374, - [4220] = 863, - [4221] = 373, - [4222] = 870, - [4223] = 870, - [4224] = 359, - [4225] = 942, - [4226] = 863, - [4227] = 960, - [4228] = 934, - [4229] = 365, - [4230] = 373, - [4231] = 357, - [4232] = 362, - [4233] = 364, - [4234] = 359, - [4235] = 363, - [4236] = 368, - [4237] = 372, - [4238] = 1060, - [4239] = 1063, - [4240] = 361, - [4241] = 358, - [4242] = 360, - [4243] = 366, - [4244] = 1104, - [4245] = 1058, - [4246] = 376, - [4247] = 1059, - [4248] = 374, - [4249] = 1105, - [4250] = 369, - [4251] = 375, - [4252] = 942, - [4253] = 376, - [4254] = 1104, - [4255] = 360, - [4256] = 1059, - [4257] = 1060, - [4258] = 358, - [4259] = 365, - [4260] = 1058, - [4261] = 1063, - [4262] = 375, - [4263] = 361, - [4264] = 357, - [4265] = 1105, - [4266] = 362, - [4267] = 368, - [4268] = 359, - [4269] = 373, - [4270] = 369, - [4271] = 374, - [4272] = 372, - [4273] = 363, - [4274] = 366, - [4275] = 364, - [4276] = 4276, - [4277] = 4277, - [4278] = 4277, - [4279] = 4276, - [4280] = 1059, - [4281] = 4277, - [4282] = 4276, - [4283] = 4277, - [4284] = 1105, - [4285] = 1063, - [4286] = 4276, - [4287] = 1104, - [4288] = 4276, - [4289] = 1058, - [4290] = 4277, - [4291] = 1060, - [4292] = 4276, - [4293] = 4277, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 4299, - [4300] = 4300, - [4301] = 4298, - [4302] = 4294, - [4303] = 4303, - [4304] = 4299, - [4305] = 4305, - [4306] = 4306, - [4307] = 4307, + [4116] = 848, + [4117] = 837, + [4118] = 1058, + [4119] = 847, + [4120] = 842, + [4121] = 1028, + [4122] = 363, + [4123] = 845, + [4124] = 368, + [4125] = 369, + [4126] = 370, + [4127] = 842, + [4128] = 373, + [4129] = 814, + [4130] = 379, + [4131] = 360, + [4132] = 929, + [4133] = 847, + [4134] = 844, + [4135] = 822, + [4136] = 361, + [4137] = 1040, + [4138] = 1035, + [4139] = 365, + [4140] = 952, + [4141] = 378, + [4142] = 818, + [4143] = 376, + [4144] = 359, + [4145] = 815, + [4146] = 372, + [4147] = 837, + [4148] = 852, + [4149] = 1034, + [4150] = 1040, + [4151] = 848, + [4152] = 853, + [4153] = 842, + [4154] = 859, + [4155] = 829, + [4156] = 850, + [4157] = 835, + [4158] = 859, + [4159] = 4159, + [4160] = 855, + [4161] = 850, + [4162] = 911, + [4163] = 909, + [4164] = 832, + [4165] = 901, + [4166] = 844, + [4167] = 905, + [4168] = 903, + [4169] = 900, + [4170] = 1028, + [4171] = 857, + [4172] = 829, + [4173] = 887, + [4174] = 899, + [4175] = 842, + [4176] = 898, + [4177] = 1035, + [4178] = 847, + [4179] = 853, + [4180] = 1034, + [4181] = 855, + [4182] = 857, + [4183] = 896, + [4184] = 1051, + [4185] = 1058, + [4186] = 1040, + [4187] = 1035, + [4188] = 832, + [4189] = 845, + [4190] = 846, + [4191] = 831, + [4192] = 847, + [4193] = 1028, + [4194] = 835, + [4195] = 849, + [4196] = 837, + [4197] = 1058, + [4198] = 1051, + [4199] = 925, + [4200] = 903, + [4201] = 900, + [4202] = 898, + [4203] = 829, + [4204] = 852, + [4205] = 850, + [4206] = 911, + [4207] = 921, + [4208] = 887, + [4209] = 859, + [4210] = 831, + [4211] = 867, + [4212] = 857, + [4213] = 896, + [4214] = 846, + [4215] = 855, + [4216] = 853, + [4217] = 975, + [4218] = 832, + [4219] = 909, + [4220] = 905, + [4221] = 835, + [4222] = 899, + [4223] = 994, + [4224] = 901, + [4225] = 374, + [4226] = 900, + [4227] = 368, + [4228] = 867, + [4229] = 901, + [4230] = 365, + [4231] = 909, + [4232] = 903, + [4233] = 994, + [4234] = 994, + [4235] = 360, + [4236] = 929, + [4237] = 363, + [4238] = 369, + [4239] = 361, + [4240] = 370, + [4241] = 905, + [4242] = 367, + [4243] = 975, + [4244] = 379, + [4245] = 911, + [4246] = 366, + [4247] = 364, + [4248] = 921, + [4249] = 372, + [4250] = 359, + [4251] = 377, + [4252] = 899, + [4253] = 378, + [4254] = 376, + [4255] = 373, + [4256] = 896, + [4257] = 887, + [4258] = 952, + [4259] = 898, + [4260] = 378, + [4261] = 376, + [4262] = 1034, + [4263] = 1051, + [4264] = 1058, + [4265] = 366, + [4266] = 374, + [4267] = 373, + [4268] = 1040, + [4269] = 360, + [4270] = 867, + [4271] = 361, + [4272] = 1035, + [4273] = 367, + [4274] = 379, + [4275] = 359, + [4276] = 370, + [4277] = 1028, + [4278] = 363, + [4279] = 369, + [4280] = 921, + [4281] = 377, + [4282] = 372, + [4283] = 368, + [4284] = 364, + [4285] = 368, + [4286] = 1035, + [4287] = 1040, + [4288] = 360, + [4289] = 1051, + [4290] = 366, + [4291] = 1058, + [4292] = 367, + [4293] = 374, + [4294] = 1034, + [4295] = 361, + [4296] = 1028, + [4297] = 364, + [4298] = 373, + [4299] = 372, + [4300] = 377, + [4301] = 363, + [4302] = 359, + [4303] = 370, + [4304] = 378, + [4305] = 379, + [4306] = 376, + [4307] = 369, [4308] = 4308, [4309] = 4308, - [4310] = 4305, - [4311] = 4294, - [4312] = 4294, + [4310] = 4308, + [4311] = 1058, + [4312] = 4312, [4313] = 4308, - [4314] = 4306, - [4315] = 4315, - [4316] = 4299, - [4317] = 4294, - [4318] = 4306, - [4319] = 4319, - [4320] = 4306, - [4321] = 4299, - [4322] = 4294, - [4323] = 4298, - [4324] = 4308, - [4325] = 4308, - [4326] = 4306, - [4327] = 4327, - [4328] = 4294, + [4314] = 4308, + [4315] = 1028, + [4316] = 4308, + [4317] = 1034, + [4318] = 1035, + [4319] = 1040, + [4320] = 4312, + [4321] = 4312, + [4322] = 1051, + [4323] = 4312, + [4324] = 4312, + [4325] = 4312, + [4326] = 4326, + [4327] = 4326, + [4328] = 4328, [4329] = 4329, [4330] = 4330, - [4331] = 4306, - [4332] = 4308, - [4333] = 4305, - [4334] = 4305, - [4335] = 4308, - [4336] = 4298, - [4337] = 4299, - [4338] = 4299, - [4339] = 4294, - [4340] = 4306, - [4341] = 4341, - [4342] = 4308, - [4343] = 4343, - [4344] = 4298, - [4345] = 4308, - [4346] = 4346, - [4347] = 4299, - [4348] = 4348, - [4349] = 4349, - [4350] = 4350, - [4351] = 4298, - [4352] = 4305, - [4353] = 4298, - [4354] = 4306, - [4355] = 4306, - [4356] = 4305, - [4357] = 4298, - [4358] = 4299, - [4359] = 4305, - [4360] = 4305, - [4361] = 4298, - [4362] = 4299, - [4363] = 4305, - [4364] = 4294, - [4365] = 4365, - [4366] = 4365, - [4367] = 4367, - [4368] = 4368, - [4369] = 4369, - [4370] = 4365, - [4371] = 4371, - [4372] = 4369, - [4373] = 4365, + [4331] = 4331, + [4332] = 4332, + [4333] = 4333, + [4334] = 4334, + [4335] = 4328, + [4336] = 4326, + [4337] = 4337, + [4338] = 4330, + [4339] = 4330, + [4340] = 4328, + [4341] = 4332, + [4342] = 4331, + [4343] = 4332, + [4344] = 4330, + [4345] = 4326, + [4346] = 4331, + [4347] = 4332, + [4348] = 4326, + [4349] = 4330, + [4350] = 4331, + [4351] = 4330, + [4352] = 4331, + [4353] = 4332, + [4354] = 4329, + [4355] = 4355, + [4356] = 4332, + [4357] = 4357, + [4358] = 4328, + [4359] = 4328, + [4360] = 4332, + [4361] = 4361, + [4362] = 4330, + [4363] = 4329, + [4364] = 4364, + [4365] = 4326, + [4366] = 777, + [4367] = 4329, + [4368] = 4330, + [4369] = 4330, + [4370] = 4331, + [4371] = 4329, + [4372] = 4372, + [4373] = 774, [4374] = 4374, - [4375] = 4365, - [4376] = 4368, - [4377] = 4369, - [4378] = 4369, - [4379] = 4371, + [4375] = 4326, + [4376] = 4376, + [4377] = 4329, + [4378] = 4326, + [4379] = 4329, [4380] = 4380, - [4381] = 4371, - [4382] = 4365, - [4383] = 4371, - [4384] = 4368, - [4385] = 4369, - [4386] = 4371, - [4387] = 4371, - [4388] = 4371, - [4389] = 4367, - [4390] = 4365, - [4391] = 4369, - [4392] = 4369, - [4393] = 4374, - [4394] = 4365, - [4395] = 4368, - [4396] = 4369, - [4397] = 4368, - [4398] = 4369, - [4399] = 4365, - [4400] = 4371, - [4401] = 4369, - [4402] = 4368, - [4403] = 4369, - [4404] = 4365, - [4405] = 4374, - [4406] = 4368, - [4407] = 4369, - [4408] = 4369, - [4409] = 4369, - [4410] = 4365, - [4411] = 4368, - [4412] = 4371, - [4413] = 4369, - [4414] = 4371, - [4415] = 4368, - [4416] = 4368, - [4417] = 4368, - [4418] = 4369, - [4419] = 4369, - [4420] = 4365, - [4421] = 4374, - [4422] = 4371, - [4423] = 4365, - [4424] = 4368, - [4425] = 4368, - [4426] = 4369, - [4427] = 4369, - [4428] = 4371, - [4429] = 4368, - [4430] = 4371, - [4431] = 4369, - [4432] = 4367, - [4433] = 4365, - [4434] = 4371, - [4435] = 4371, - [4436] = 4365, - [4437] = 4368, - [4438] = 4368, - [4439] = 4371, - [4440] = 4368, - [4441] = 4365, - [4442] = 4374, - [4443] = 4371, - [4444] = 4367, - [4445] = 4371, - [4446] = 4368, - [4447] = 4365, - [4448] = 4365, - [4449] = 4365, - [4450] = 4369, - [4451] = 4374, - [4452] = 4368, - [4453] = 4453, - [4454] = 4368, - [4455] = 4368, - [4456] = 4380, - [4457] = 4371, - [4458] = 4371, - [4459] = 4365, - [4460] = 4374, - [4461] = 4371, - [4462] = 4371, - [4463] = 4367, - [4464] = 4368, - [4465] = 4365, - [4466] = 4371, - [4467] = 4371, - [4468] = 4380, - [4469] = 4369, - [4470] = 4368, - [4471] = 4380, - [4472] = 4380, - [4473] = 4368, - [4474] = 4365, - [4475] = 4475, - [4476] = 4374, - [4477] = 4365, - [4478] = 4368, - [4479] = 4369, - [4480] = 4371, - [4481] = 4365, - [4482] = 4371, - [4483] = 4483, - [4484] = 4368, - [4485] = 4380, - [4486] = 4365, - [4487] = 4369, - [4488] = 4365, - [4489] = 4371, - [4490] = 4490, - [4491] = 4368, - [4492] = 4365, - [4493] = 4374, - [4494] = 755, - [4495] = 751, - [4496] = 779, - [4497] = 753, - [4498] = 753, - [4499] = 778, - [4500] = 784, - [4501] = 798, - [4502] = 807, - [4503] = 802, - [4504] = 805, - [4505] = 799, - [4506] = 788, - [4507] = 794, - [4508] = 791, - [4509] = 833, - [4510] = 818, - [4511] = 832, - [4512] = 842, - [4513] = 847, - [4514] = 836, - [4515] = 753, - [4516] = 850, - [4517] = 846, - [4518] = 861, - [4519] = 860, - [4520] = 753, - [4521] = 852, - [4522] = 862, - [4523] = 841, - [4524] = 855, - [4525] = 839, - [4526] = 843, - [4527] = 865, - [4528] = 838, - [4529] = 858, - [4530] = 878, - [4531] = 868, - [4532] = 778, - [4533] = 779, - [4534] = 848, - [4535] = 869, - [4536] = 866, - [4537] = 875, - [4538] = 853, - [4539] = 837, - [4540] = 859, - [4541] = 881, - [4542] = 942, - [4543] = 934, - [4544] = 923, - [4545] = 930, - [4546] = 884, - [4547] = 920, - [4548] = 913, - [4549] = 926, - [4550] = 907, - [4551] = 908, - [4552] = 921, - [4553] = 784, - [4554] = 876, - [4555] = 927, - [4556] = 902, - [4557] = 944, - [4558] = 896, - [4559] = 925, - [4560] = 832, - [4561] = 832, - [4562] = 901, - [4563] = 931, - [4564] = 916, - [4565] = 939, - [4566] = 935, - [4567] = 924, - [4568] = 802, - [4569] = 943, - [4570] = 912, - [4571] = 941, - [4572] = 898, - [4573] = 909, - [4574] = 893, - [4575] = 946, - [4576] = 929, - [4577] = 936, - [4578] = 899, - [4579] = 1019, - [4580] = 993, - [4581] = 791, - [4582] = 965, - [4583] = 982, - [4584] = 799, - [4585] = 992, - [4586] = 1043, - [4587] = 807, - [4588] = 958, - [4589] = 962, - [4590] = 833, - [4591] = 973, - [4592] = 972, - [4593] = 959, - [4594] = 1040, - [4595] = 963, - [4596] = 1044, - [4597] = 986, - [4598] = 885, - [4599] = 947, - [4600] = 953, - [4601] = 983, - [4602] = 964, - [4603] = 984, - [4604] = 955, - [4605] = 1023, - [4606] = 833, - [4607] = 977, - [4608] = 979, - [4609] = 1020, - [4610] = 1024, - [4611] = 949, - [4612] = 887, - [4613] = 1005, - [4614] = 961, - [4615] = 791, - [4616] = 997, - [4617] = 794, - [4618] = 978, - [4619] = 818, - [4620] = 818, - [4621] = 802, - [4622] = 1022, - [4623] = 975, - [4624] = 794, - [4625] = 966, - [4626] = 799, - [4627] = 950, - [4628] = 974, + [4381] = 4381, + [4382] = 4332, + [4383] = 4383, + [4384] = 4328, + [4385] = 4385, + [4386] = 4331, + [4387] = 4387, + [4388] = 4331, + [4389] = 4329, + [4390] = 4332, + [4391] = 4391, + [4392] = 4328, + [4393] = 4331, + [4394] = 4329, + [4395] = 4328, + [4396] = 4326, + [4397] = 4328, + [4398] = 4398, + [4399] = 4399, + [4400] = 4400, + [4401] = 4399, + [4402] = 4402, + [4403] = 4403, + [4404] = 4402, + [4405] = 4405, + [4406] = 4400, + [4407] = 4405, + [4408] = 4408, + [4409] = 4399, + [4410] = 4405, + [4411] = 4400, + [4412] = 4412, + [4413] = 4400, + [4414] = 4414, + [4415] = 4405, + [4416] = 4414, + [4417] = 4402, + [4418] = 4399, + [4419] = 4403, + [4420] = 4405, + [4421] = 4399, + [4422] = 4400, + [4423] = 4399, + [4424] = 4400, + [4425] = 4412, + [4426] = 4399, + [4427] = 4405, + [4428] = 4405, + [4429] = 4400, + [4430] = 4405, + [4431] = 4399, + [4432] = 4400, + [4433] = 4405, + [4434] = 4402, + [4435] = 4400, + [4436] = 4399, + [4437] = 4400, + [4438] = 4399, + [4439] = 4405, + [4440] = 4400, + [4441] = 4399, + [4442] = 4400, + [4443] = 4414, + [4444] = 4399, + [4445] = 4405, + [4446] = 4399, + [4447] = 4412, + [4448] = 4412, + [4449] = 4399, + [4450] = 4399, + [4451] = 4400, + [4452] = 4405, + [4453] = 4403, + [4454] = 4403, + [4455] = 4414, + [4456] = 4400, + [4457] = 4402, + [4458] = 4399, + [4459] = 4400, + [4460] = 4402, + [4461] = 4405, + [4462] = 4402, + [4463] = 4402, + [4464] = 4405, + [4465] = 4405, + [4466] = 4402, + [4467] = 4412, + [4468] = 4414, + [4469] = 4399, + [4470] = 4402, + [4471] = 4402, + [4472] = 4412, + [4473] = 4399, + [4474] = 4400, + [4475] = 4400, + [4476] = 4414, + [4477] = 4400, + [4478] = 4412, + [4479] = 4399, + [4480] = 4405, + [4481] = 4400, + [4482] = 4482, + [4483] = 4399, + [4484] = 4402, + [4485] = 4405, + [4486] = 4400, + [4487] = 4399, + [4488] = 4405, + [4489] = 4402, + [4490] = 4402, + [4491] = 4405, + [4492] = 4405, + [4493] = 4400, + [4494] = 4399, + [4495] = 4400, + [4496] = 4412, + [4497] = 4399, + [4498] = 4405, + [4499] = 4399, + [4500] = 4400, + [4501] = 4405, + [4502] = 4402, + [4503] = 4402, + [4504] = 4400, + [4505] = 4399, + [4506] = 4400, + [4507] = 4400, + [4508] = 4402, + [4509] = 4405, + [4510] = 4399, + [4511] = 4405, + [4512] = 4399, + [4513] = 4402, + [4514] = 4400, + [4515] = 4412, + [4516] = 4405, + [4517] = 4402, + [4518] = 4402, + [4519] = 4405, + [4520] = 4402, + [4521] = 4521, + [4522] = 4402, + [4523] = 4402, + [4524] = 4524, + [4525] = 4405, + [4526] = 4402, + [4527] = 4403, + [4528] = 785, + [4529] = 764, + [4530] = 785, + [4531] = 773, + [4532] = 801, + [4533] = 820, + [4534] = 823, + [4535] = 814, + [4536] = 818, + [4537] = 821, + [4538] = 824, + [4539] = 815, + [4540] = 825, + [4541] = 819, + [4542] = 813, + [4543] = 822, + [4544] = 824, + [4545] = 823, + [4546] = 816, + [4547] = 821, + [4548] = 825, + [4549] = 785, + [4550] = 854, + [4551] = 785, + [4552] = 859, + [4553] = 850, + [4554] = 861, + [4555] = 764, + [4556] = 835, + [4557] = 832, + [4558] = 829, + [4559] = 839, + [4560] = 855, + [4561] = 852, + [4562] = 857, + [4563] = 831, + [4564] = 846, + [4565] = 853, + [4566] = 773, + [4567] = 819, + [4568] = 816, + [4569] = 830, + [4570] = 848, + [4571] = 849, + [4572] = 845, + [4573] = 833, + [4574] = 827, + [4575] = 856, + [4576] = 844, + [4577] = 858, + [4578] = 860, + [4579] = 837, + [4580] = 851, + [4581] = 907, + [4582] = 899, + [4583] = 869, + [4584] = 905, + [4585] = 887, + [4586] = 909, + [4587] = 925, + [4588] = 911, + [4589] = 868, + [4590] = 920, + [4591] = 921, + [4592] = 919, + [4593] = 904, + [4594] = 821, + [4595] = 867, + [4596] = 917, + [4597] = 915, + [4598] = 865, + [4599] = 801, + [4600] = 924, + [4601] = 871, + [4602] = 894, + [4603] = 828, + [4604] = 854, + [4605] = 856, + [4606] = 910, + [4607] = 898, + [4608] = 858, + [4609] = 914, + [4610] = 861, + [4611] = 901, + [4612] = 823, + [4613] = 906, + [4614] = 900, + [4615] = 886, + [4616] = 884, + [4617] = 908, + [4618] = 896, + [4619] = 903, + [4620] = 891, + [4621] = 969, + [4622] = 941, + [4623] = 944, + [4624] = 945, + [4625] = 963, + [4626] = 946, + [4627] = 956, + [4628] = 813, [4629] = 971, - [4630] = 788, - [4631] = 980, - [4632] = 981, - [4633] = 948, - [4634] = 805, - [4635] = 976, - [4636] = 952, - [4637] = 987, - [4638] = 989, - [4639] = 798, - [4640] = 807, - [4641] = 988, - [4642] = 788, - [4643] = 1028, - [4644] = 805, - [4645] = 969, - [4646] = 788, - [4647] = 1169, - [4648] = 1161, - [4649] = 1191, - [4650] = 1104, - [4651] = 1146, - [4652] = 1199, - [4653] = 1168, - [4654] = 1173, - [4655] = 1157, - [4656] = 1196, - [4657] = 1177, - [4658] = 1110, - [4659] = 870, - [4660] = 1202, - [4661] = 1197, - [4662] = 1163, - [4663] = 838, - [4664] = 1154, - [4665] = 1147, - [4666] = 1149, - [4667] = 838, - [4668] = 1189, - [4669] = 1129, - [4670] = 837, - [4671] = 1063, - [4672] = 1160, - [4673] = 1185, - [4674] = 1164, - [4675] = 839, - [4676] = 1165, - [4677] = 1060, - [4678] = 1115, - [4679] = 1184, - [4680] = 1059, - [4681] = 1058, - [4682] = 1167, - [4683] = 1048, - [4684] = 1186, - [4685] = 841, - [4686] = 842, - [4687] = 1152, - [4688] = 1099, - [4689] = 1171, - [4690] = 1143, - [4691] = 846, - [4692] = 1132, - [4693] = 1148, - [4694] = 1166, - [4695] = 1088, - [4696] = 1127, - [4697] = 1089, - [4698] = 1162, - [4699] = 1187, - [4700] = 846, - [4701] = 1121, - [4702] = 833, - [4703] = 1190, - [4704] = 842, - [4705] = 1076, - [4706] = 1118, - [4707] = 836, - [4708] = 1145, - [4709] = 855, - [4710] = 1142, - [4711] = 869, - [4712] = 1139, - [4713] = 1074, - [4714] = 860, - [4715] = 1126, - [4716] = 841, - [4717] = 852, - [4718] = 1141, - [4719] = 1124, - [4720] = 1200, - [4721] = 1119, - [4722] = 1111, - [4723] = 1122, - [4724] = 1105, - [4725] = 878, - [4726] = 1090, - [4727] = 1079, - [4728] = 1204, - [4729] = 1192, - [4730] = 1087, - [4731] = 839, - [4732] = 1108, - [4733] = 1113, - [4734] = 1172, - [4735] = 1120, - [4736] = 1194, - [4737] = 1107, - [4738] = 1079, - [4739] = 1075, - [4740] = 1112, - [4741] = 1086, - [4742] = 1195, - [4743] = 1062, - [4744] = 1085, - [4745] = 843, - [4746] = 1100, - [4747] = 1081, - [4748] = 1136, - [4749] = 1080, - [4750] = 1170, - [4751] = 1078, - [4752] = 1097, - [4753] = 1096, - [4754] = 1209, - [4755] = 954, - [4756] = 1073, - [4757] = 1174, - [4758] = 859, - [4759] = 1138, - [4760] = 866, - [4761] = 863, - [4762] = 1180, - [4763] = 1175, - [4764] = 865, - [4765] = 858, - [4766] = 875, - [4767] = 1144, - [4768] = 853, - [4769] = 1181, - [4770] = 881, - [4771] = 1051, - [4772] = 807, - [4773] = 1101, - [4774] = 858, - [4775] = 1182, - [4776] = 1183, - [4777] = 1128, - [4778] = 1068, - [4779] = 1053, - [4780] = 869, - [4781] = 878, - [4782] = 868, - [4783] = 881, - [4784] = 805, - [4785] = 1054, - [4786] = 843, - [4787] = 865, - [4788] = 1193, - [4789] = 1055, - [4790] = 970, - [4791] = 1103, - [4792] = 853, - [4793] = 1131, - [4794] = 837, - [4795] = 1158, - [4796] = 868, - [4797] = 1056, - [4798] = 1150, - [4799] = 861, - [4800] = 1198, - [4801] = 1094, - [4802] = 875, - [4803] = 866, - [4804] = 1057, - [4805] = 1067, - [4806] = 859, - [4807] = 794, - [4808] = 1153, - [4809] = 1201, - [4810] = 1178, - [4811] = 1061, - [4812] = 863, - [4813] = 870, - [4814] = 1066, - [4815] = 1114, - [4816] = 876, - [4817] = 1176, - [4818] = 848, - [4819] = 1151, - [4820] = 1205, - [4821] = 1140, - [4822] = 1206, - [4823] = 862, - [4824] = 1082, - [4825] = 1159, - [4826] = 1115, - [4827] = 1049, - [4828] = 1135, - [4829] = 1134, - [4830] = 847, - [4831] = 1133, - [4832] = 1047, - [4833] = 850, - [4834] = 1069, - [4835] = 1070, - [4836] = 907, - [4837] = 836, - [4838] = 843, - [4839] = 896, - [4840] = 902, - [4841] = 925, - [4842] = 846, - [4843] = 859, - [4844] = 884, - [4845] = 898, - [4846] = 920, - [4847] = 805, - [4848] = 946, - [4849] = 853, - [4850] = 893, - [4851] = 807, - [4852] = 878, - [4853] = 943, - [4854] = 850, - [4855] = 941, - [4856] = 842, - [4857] = 936, - [4858] = 935, - [4859] = 807, - [4860] = 839, - [4861] = 916, - [4862] = 794, - [4863] = 858, - [4864] = 901, - [4865] = 833, - [4866] = 931, - [4867] = 908, - [4868] = 876, - [4869] = 805, - [4870] = 852, - [4871] = 926, - [4872] = 855, - [4873] = 909, - [4874] = 912, - [4875] = 934, - [4876] = 913, - [4877] = 788, - [4878] = 930, - [4879] = 881, - [4880] = 949, - [4881] = 924, - [4882] = 862, - [4883] = 833, - [4884] = 794, - [4885] = 929, - [4886] = 838, - [4887] = 939, - [4888] = 841, - [4889] = 942, - [4890] = 901, - [4891] = 860, - [4892] = 875, - [4893] = 847, - [4894] = 923, - [4895] = 927, - [4896] = 861, - [4897] = 921, - [4898] = 866, - [4899] = 960, - [4900] = 788, - [4901] = 848, - [4902] = 944, - [4903] = 982, - [4904] = 959, - [4905] = 983, - [4906] = 942, - [4907] = 960, - [4908] = 966, - [4909] = 1044, - [4910] = 986, - [4911] = 899, - [4912] = 838, + [4630] = 820, + [4631] = 1012, + [4632] = 1000, + [4633] = 884, + [4634] = 990, + [4635] = 994, + [4636] = 995, + [4637] = 982, + [4638] = 979, + [4639] = 973, + [4640] = 822, + [4641] = 816, + [4642] = 822, + [4643] = 830, + [4644] = 819, + [4645] = 827, + [4646] = 839, + [4647] = 818, + [4648] = 952, + [4649] = 814, + [4650] = 928, + [4651] = 814, + [4652] = 864, + [4653] = 885, + [4654] = 934, + [4655] = 820, + [4656] = 1001, + [4657] = 966, + [4658] = 960, + [4659] = 987, + [4660] = 939, + [4661] = 814, + [4662] = 936, + [4663] = 851, + [4664] = 999, + [4665] = 860, + [4666] = 942, + [4667] = 815, + [4668] = 833, + [4669] = 972, + [4670] = 828, + [4671] = 997, + [4672] = 935, + [4673] = 815, + [4674] = 1004, + [4675] = 991, + [4676] = 933, + [4677] = 983, + [4678] = 825, + [4679] = 937, + [4680] = 929, + [4681] = 930, + [4682] = 943, + [4683] = 824, + [4684] = 984, + [4685] = 974, + [4686] = 822, + [4687] = 820, + [4688] = 927, + [4689] = 993, + [4690] = 932, + [4691] = 955, + [4692] = 938, + [4693] = 931, + [4694] = 947, + [4695] = 818, + [4696] = 818, + [4697] = 815, + [4698] = 1066, + [4699] = 1123, + [4700] = 1150, + [4701] = 1052, + [4702] = 1055, + [4703] = 1125, + [4704] = 837, + [4705] = 854, + [4706] = 1169, + [4707] = 844, + [4708] = 830, + [4709] = 1149, + [4710] = 1158, + [4711] = 1014, + [4712] = 820, + [4713] = 1079, + [4714] = 1017, + [4715] = 1140, + [4716] = 1109, + [4717] = 1034, + [4718] = 1058, + [4719] = 1076, + [4720] = 837, + [4721] = 1051, + [4722] = 833, + [4723] = 827, + [4724] = 1077, + [4725] = 818, + [4726] = 1166, + [4727] = 1165, + [4728] = 1147, + [4729] = 1172, + [4730] = 1081, + [4731] = 1176, + [4732] = 1065, + [4733] = 1040, + [4734] = 1112, + [4735] = 1063, + [4736] = 1062, + [4737] = 1161, + [4738] = 1035, + [4739] = 1118, + [4740] = 1120, + [4741] = 831, + [4742] = 1159, + [4743] = 845, + [4744] = 1138, + [4745] = 1186, + [4746] = 1075, + [4747] = 848, + [4748] = 1068, + [4749] = 1137, + [4750] = 1173, + [4751] = 828, + [4752] = 1117, + [4753] = 1108, + [4754] = 1116, + [4755] = 853, + [4756] = 1098, + [4757] = 1157, + [4758] = 1114, + [4759] = 1180, + [4760] = 1036, + [4761] = 1078, + [4762] = 1177, + [4763] = 1131, + [4764] = 1049, + [4765] = 849, + [4766] = 859, + [4767] = 1164, + [4768] = 1057, + [4769] = 1136, + [4770] = 1175, + [4771] = 1074, + [4772] = 1110, + [4773] = 1187, + [4774] = 1043, + [4775] = 1061, + [4776] = 857, + [4777] = 1171, + [4778] = 855, + [4779] = 1059, + [4780] = 1143, + [4781] = 829, + [4782] = 1144, + [4783] = 832, + [4784] = 1174, + [4785] = 1018, + [4786] = 1148, + [4787] = 1170, + [4788] = 822, + [4789] = 1019, + [4790] = 1020, + [4791] = 835, + [4792] = 1030, + [4793] = 1021, + [4794] = 850, + [4795] = 1024, + [4796] = 835, + [4797] = 1029, + [4798] = 850, + [4799] = 859, + [4800] = 1129, + [4801] = 832, + [4802] = 1025, + [4803] = 829, + [4804] = 1042, + [4805] = 846, + [4806] = 839, + [4807] = 852, + [4808] = 853, + [4809] = 1167, + [4810] = 1135, + [4811] = 1082, + [4812] = 1023, + [4813] = 1048, + [4814] = 814, + [4815] = 860, + [4816] = 851, + [4817] = 1026, + [4818] = 1027, + [4819] = 1181, + [4820] = 1031, + [4821] = 849, + [4822] = 1033, + [4823] = 1145, + [4824] = 1132, + [4825] = 1128, + [4826] = 855, + [4827] = 1124, + [4828] = 857, + [4829] = 1038, + [4830] = 1054, + [4831] = 1028, + [4832] = 1115, + [4833] = 1122, + [4834] = 1099, + [4835] = 844, + [4836] = 1039, + [4837] = 1067, + [4838] = 1085, + [4839] = 847, + [4840] = 847, + [4841] = 842, + [4842] = 1163, + [4843] = 988, + [4844] = 967, + [4845] = 968, + [4846] = 1133, + [4847] = 848, + [4848] = 861, + [4849] = 849, + [4850] = 848, + [4851] = 1182, + [4852] = 842, + [4853] = 1106, + [4854] = 1153, + [4855] = 1168, + [4856] = 1183, + [4857] = 858, + [4858] = 845, + [4859] = 1054, + [4860] = 1041, + [4861] = 1057, + [4862] = 1162, + [4863] = 844, + [4864] = 1044, + [4865] = 1094, + [4866] = 837, + [4867] = 1160, + [4868] = 1047, + [4869] = 815, + [4870] = 1050, + [4871] = 1185, + [4872] = 1053, + [4873] = 1056, + [4874] = 1064, + [4875] = 1069, + [4876] = 1070, + [4877] = 1071, + [4878] = 1072, + [4879] = 1073, + [4880] = 1083, + [4881] = 1130, + [4882] = 1104, + [4883] = 1092, + [4884] = 1103, + [4885] = 845, + [4886] = 1097, + [4887] = 1155, + [4888] = 1151, + [4889] = 1154, + [4890] = 1139, + [4891] = 1141, + [4892] = 856, + [4893] = 1101, + [4894] = 868, + [4895] = 857, + [4896] = 871, + [4897] = 884, + [4898] = 835, + [4899] = 837, + [4900] = 924, + [4901] = 829, + [4902] = 846, + [4903] = 855, + [4904] = 815, + [4905] = 852, + [4906] = 906, + [4907] = 907, + [4908] = 994, + [4909] = 975, + [4910] = 849, + [4911] = 915, + [4912] = 921, [4913] = 887, - [4914] = 947, - [4915] = 1043, - [4916] = 861, - [4917] = 950, - [4918] = 987, - [4919] = 852, - [4920] = 934, - [4921] = 855, - [4922] = 955, - [4923] = 961, - [4924] = 993, - [4925] = 943, - [4926] = 949, - [4927] = 839, - [4928] = 841, - [4929] = 838, - [4930] = 1028, - [4931] = 941, - [4932] = 988, - [4933] = 1024, - [4934] = 965, - [4935] = 989, - [4936] = 953, - [4937] = 839, - [4938] = 952, - [4939] = 909, - [4940] = 936, - [4941] = 912, - [4942] = 935, - [4943] = 846, - [4944] = 855, - [4945] = 975, - [4946] = 924, - [4947] = 971, - [4948] = 974, - [4949] = 1040, - [4950] = 964, - [4951] = 931, - [4952] = 963, - [4953] = 841, - [4954] = 949, - [4955] = 842, - [4956] = 972, - [4957] = 973, - [4958] = 885, - [4959] = 962, - [4960] = 948, - [4961] = 958, - [4962] = 1023, - [4963] = 979, - [4964] = 980, - [4965] = 1020, - [4966] = 1019, - [4967] = 977, - [4968] = 852, - [4969] = 978, - [4970] = 861, - [4971] = 981, - [4972] = 976, - [4973] = 1005, - [4974] = 992, - [4975] = 997, - [4976] = 842, - [4977] = 984, - [4978] = 946, - [4979] = 898, - [4980] = 1022, - [4981] = 846, - [4982] = 1176, - [4983] = 1154, - [4984] = 936, - [4985] = 1144, - [4986] = 1086, - [4987] = 1111, - [4988] = 1178, - [4989] = 1119, - [4990] = 1124, - [4991] = 935, - [4992] = 1126, - [4993] = 1139, - [4994] = 1162, - [4995] = 1166, - [4996] = 1171, - [4997] = 931, - [4998] = 1185, - [4999] = 1191, - [5000] = 1195, - [5001] = 1194, - [5002] = 1192, - [5003] = 843, - [5004] = 907, - [5005] = 1053, - [5006] = 1054, - [5007] = 1055, - [5008] = 1056, - [5009] = 858, - [5010] = 878, - [5011] = 1057, - [5012] = 1187, - [5013] = 1209, - [5014] = 881, - [5015] = 1066, - [5016] = 853, - [5017] = 1186, - [5018] = 1184, - [5019] = 875, - [5020] = 1069, - [5021] = 1082, - [5022] = 1190, - [5023] = 866, - [5024] = 1047, - [5025] = 1177, - [5026] = 941, - [5027] = 863, - [5028] = 1094, - [5029] = 870, - [5030] = 950, - [5031] = 952, - [5032] = 953, - [5033] = 966, - [5034] = 959, - [5035] = 979, - [5036] = 1173, - [5037] = 971, - [5038] = 1096, - [5039] = 1097, - [5040] = 1058, - [5041] = 1100, - [5042] = 954, - [5043] = 1059, - [5044] = 1107, - [5045] = 1108, - [5046] = 1122, - [5047] = 1060, - [5048] = 1063, - [5049] = 1141, - [5050] = 974, - [5051] = 1142, - [5052] = 1145, - [5053] = 1148, - [5054] = 943, - [5055] = 975, - [5056] = 1152, - [5057] = 1110, - [5058] = 1157, - [5059] = 969, - [5060] = 970, - [5061] = 1167, - [5062] = 1170, - [5063] = 1174, - [5064] = 1180, - [5065] = 1165, - [5066] = 1164, - [5067] = 1163, - [5068] = 1161, - [5069] = 1181, - [5070] = 1182, - [5071] = 1160, - [5072] = 1149, - [5073] = 1183, - [5074] = 946, - [5075] = 1193, - [5076] = 1147, - [5077] = 1198, - [5078] = 1199, - [5079] = 1146, - [5080] = 1079, - [5081] = 1048, - [5082] = 1143, - [5083] = 859, - [5084] = 1132, - [5085] = 1127, - [5086] = 1121, - [5087] = 1118, - [5088] = 1200, - [5089] = 1206, - [5090] = 1205, - [5091] = 843, - [5092] = 1104, - [5093] = 1105, - [5094] = 1153, - [5095] = 1150, - [5096] = 858, - [5097] = 878, - [5098] = 1090, - [5099] = 1204, - [5100] = 1138, - [5101] = 1087, - [5102] = 1085, - [5103] = 898, - [5104] = 1081, - [5105] = 1080, - [5106] = 1128, - [5107] = 1079, - [5108] = 1120, - [5109] = 881, - [5110] = 1113, - [5111] = 898, - [5112] = 1078, - [5113] = 1073, - [5114] = 1074, - [5115] = 1068, - [5116] = 1175, - [5117] = 1067, - [5118] = 1201, - [5119] = 853, - [5120] = 1076, - [5121] = 1061, - [5122] = 1049, - [5123] = 1088, - [5124] = 1112, - [5125] = 1099, - [5126] = 1114, - [5127] = 942, - [5128] = 1070, - [5129] = 946, - [5130] = 924, - [5131] = 1115, - [5132] = 1202, - [5133] = 1197, - [5134] = 1196, - [5135] = 875, - [5136] = 866, - [5137] = 1133, - [5138] = 1134, - [5139] = 1169, - [5140] = 1135, - [5141] = 1159, - [5142] = 1172, - [5143] = 1140, - [5144] = 1168, - [5145] = 1151, - [5146] = 934, - [5147] = 1051, - [5148] = 943, - [5149] = 859, - [5150] = 1158, - [5151] = 1131, - [5152] = 1103, - [5153] = 1136, - [5154] = 941, - [5155] = 863, - [5156] = 870, - [5157] = 936, - [5158] = 924, - [5159] = 912, - [5160] = 1062, - [5161] = 1075, - [5162] = 935, - [5163] = 1101, - [5164] = 931, - [5165] = 1089, - [5166] = 909, - [5167] = 909, - [5168] = 1129, - [5169] = 912, - [5170] = 1189, - [5171] = 1115, - [5172] = 943, - [5173] = 978, - [5174] = 907, - [5175] = 939, - [5176] = 870, - [5177] = 942, - [5178] = 863, - [5179] = 887, - [5180] = 946, - [5181] = 899, - [5182] = 944, - [5183] = 920, - [5184] = 833, - [5185] = 898, - [5186] = 5186, - [5187] = 931, - [5188] = 960, - [5189] = 930, - [5190] = 949, - [5191] = 926, - [5192] = 961, - [5193] = 863, - [5194] = 870, - [5195] = 993, - [5196] = 794, - [5197] = 925, - [5198] = 833, - [5199] = 935, - [5200] = 902, - [5201] = 896, - [5202] = 916, - [5203] = 934, - [5204] = 863, - [5205] = 794, - [5206] = 1058, - [5207] = 1059, - [5208] = 1060, - [5209] = 788, - [5210] = 893, - [5211] = 1063, - [5212] = 870, - [5213] = 1104, - [5214] = 936, - [5215] = 948, - [5216] = 1105, - [5217] = 941, - [5218] = 788, - [5219] = 1024, - [5220] = 923, - [5221] = 807, - [5222] = 805, - [5223] = 913, - [5224] = 982, - [5225] = 807, - [5226] = 885, - [5227] = 805, - [5228] = 942, - [5229] = 833, - [5230] = 961, - [5231] = 863, - [5232] = 383, - [5233] = 1101, - [5234] = 1136, - [5235] = 934, - [5236] = 387, - [5237] = 1172, - [5238] = 1128, - [5239] = 390, - [5240] = 852, - [5241] = 948, - [5242] = 1019, - [5243] = 1104, - [5244] = 1105, - [5245] = 386, - [5246] = 981, - [5247] = 1063, - [5248] = 1060, - [5249] = 954, - [5250] = 969, - [5251] = 970, - [5252] = 855, - [5253] = 949, - [5254] = 1059, - [5255] = 1058, - [5256] = 1209, - [5257] = 1197, - [5258] = 846, - [5259] = 1198, - [5260] = 976, - [5261] = 973, - [5262] = 842, - [5263] = 807, - [5264] = 838, - [5265] = 861, - [5266] = 870, - [5267] = 986, - [5268] = 964, - [5269] = 963, - [5270] = 805, - [5271] = 841, - [5272] = 839, - [5273] = 838, - [5274] = 863, - [5275] = 870, - [5276] = 841, - [5277] = 788, - [5278] = 842, - [5279] = 794, - [5280] = 839, - [5281] = 846, - [5282] = 881, - [5283] = 912, - [5284] = 858, - [5285] = 846, - [5286] = 878, - [5287] = 842, - [5288] = 1023, - [5289] = 841, - [5290] = 989, - [5291] = 426, - [5292] = 839, - [5293] = 1005, - [5294] = 5294, - [5295] = 838, - [5296] = 988, - [5297] = 861, - [5298] = 992, + [4914] = 900, + [4915] = 848, + [4916] = 867, + [4917] = 901, + [4918] = 1012, + [4919] = 831, + [4920] = 904, + [4921] = 982, + [4922] = 910, + [4923] = 869, + [4924] = 979, + [4925] = 973, + [4926] = 845, + [4927] = 820, + [4928] = 886, + [4929] = 896, + [4930] = 857, + [4931] = 853, + [4932] = 898, + [4933] = 899, + [4934] = 853, + [4935] = 938, + [4936] = 974, + [4937] = 991, + [4938] = 917, + [4939] = 925, + [4940] = 855, + [4941] = 850, + [4942] = 859, + [4943] = 829, + [4944] = 908, + [4945] = 1004, + [4946] = 972, + [4947] = 903, + [4948] = 844, + [4949] = 865, + [4950] = 832, + [4951] = 925, + [4952] = 919, + [4953] = 911, + [4954] = 822, + [4955] = 920, + [4956] = 905, + [4957] = 818, + [4958] = 894, + [4959] = 909, + [4960] = 859, + [4961] = 850, + [4962] = 914, + [4963] = 814, + [4964] = 835, + [4965] = 832, + [4966] = 899, + [4967] = 885, + [4968] = 942, + [4969] = 995, + [4970] = 852, + [4971] = 955, + [4972] = 935, + [4973] = 891, + [4974] = 852, + [4975] = 1012, + [4976] = 845, + [4977] = 894, + [4978] = 984, + [4979] = 943, + [4980] = 942, + [4981] = 947, + [4982] = 941, + [4983] = 831, + [4984] = 982, + [4985] = 979, + [4986] = 994, + [4987] = 973, + [4988] = 864, + [4989] = 1001, + [4990] = 911, + [4991] = 927, + [4992] = 846, + [4993] = 956, + [4994] = 944, + [4995] = 971, + [4996] = 848, + [4997] = 934, + [4998] = 993, + [4999] = 990, + [5000] = 868, + [5001] = 891, + [5002] = 871, + [5003] = 963, + [5004] = 927, + [5005] = 938, + [5006] = 974, + [5007] = 966, + [5008] = 960, + [5009] = 937, + [5010] = 849, + [5011] = 994, + [5012] = 896, + [5013] = 931, + [5014] = 952, + [5015] = 909, + [5016] = 864, + [5017] = 997, + [5018] = 898, + [5019] = 915, + [5020] = 930, + [5021] = 910, + [5022] = 869, + [5023] = 896, + [5024] = 928, + [5025] = 975, + [5026] = 924, + [5027] = 898, + [5028] = 899, + [5029] = 969, + [5030] = 945, + [5031] = 903, + [5032] = 929, + [5033] = 905, + [5034] = 837, + [5035] = 952, + [5036] = 909, + [5037] = 911, + [5038] = 939, + [5039] = 936, + [5040] = 975, + [5041] = 929, + [5042] = 991, + [5043] = 1004, + [5044] = 920, + [5045] = 994, + [5046] = 831, + [5047] = 921, + [5048] = 919, + [5049] = 987, + [5050] = 972, + [5051] = 999, + [5052] = 885, + [5053] = 867, + [5054] = 903, + [5055] = 1000, + [5056] = 946, + [5057] = 933, + [5058] = 886, + [5059] = 844, + [5060] = 908, + [5061] = 907, + [5062] = 932, + [5063] = 846, + [5064] = 900, + [5065] = 905, + [5066] = 934, + [5067] = 887, + [5068] = 997, + [5069] = 983, + [5070] = 901, + [5071] = 909, + [5072] = 1072, + [5073] = 1123, + [5074] = 1028, + [5075] = 911, + [5076] = 1131, + [5077] = 1027, + [5078] = 921, + [5079] = 1014, + [5080] = 911, + [5081] = 1042, + [5082] = 1079, + [5083] = 1159, + [5084] = 1054, + [5085] = 1162, + [5086] = 1168, + [5087] = 1169, + [5088] = 1064, + [5089] = 909, + [5090] = 1025, + [5091] = 1129, + [5092] = 1001, + [5093] = 1137, + [5094] = 1125, + [5095] = 901, + [5096] = 1024, + [5097] = 967, + [5098] = 887, + [5099] = 1021, + [5100] = 1139, + [5101] = 1177, + [5102] = 1141, + [5103] = 1083, + [5104] = 1056, + [5105] = 1054, + [5106] = 1167, + [5107] = 1034, + [5108] = 1147, + [5109] = 1051, + [5110] = 1058, + [5111] = 936, + [5112] = 1026, + [5113] = 1020, + [5114] = 1066, + [5115] = 1094, + [5116] = 1162, + [5117] = 901, + [5118] = 1068, + [5119] = 1170, + [5120] = 847, + [5121] = 900, + [5122] = 1166, + [5123] = 1186, + [5124] = 1053, + [5125] = 1019, + [5126] = 842, + [5127] = 1170, + [5128] = 1101, + [5129] = 1075, + [5130] = 1104, + [5131] = 1023, + [5132] = 1106, + [5133] = 968, + [5134] = 1158, + [5135] = 1161, + [5136] = 1169, + [5137] = 1030, + [5138] = 1187, + [5139] = 1050, + [5140] = 1130, + [5141] = 1185, + [5142] = 1117, + [5143] = 1183, + [5144] = 1029, + [5145] = 1182, + [5146] = 1181, + [5147] = 842, + [5148] = 921, + [5149] = 1164, + [5150] = 1049, + [5151] = 867, + [5152] = 1160, + [5153] = 1030, + [5154] = 1057, + [5155] = 1175, + [5156] = 1047, + [5157] = 1092, + [5158] = 1044, + [5159] = 1116, + [5160] = 1115, + [5161] = 1067, + [5162] = 1173, + [5163] = 1048, + [5164] = 905, + [5165] = 1145, + [5166] = 1103, + [5167] = 1097, + [5168] = 1110, + [5169] = 847, + [5170] = 1114, + [5171] = 1172, + [5172] = 1043, + [5173] = 896, + [5174] = 1085, + [5175] = 1180, + [5176] = 1018, + [5177] = 1099, + [5178] = 1157, + [5179] = 896, + [5180] = 1171, + [5181] = 1122, + [5182] = 1074, + [5183] = 1124, + [5184] = 1078, + [5185] = 1161, + [5186] = 1036, + [5187] = 1069, + [5188] = 903, + [5189] = 1070, + [5190] = 898, + [5191] = 1098, + [5192] = 1128, + [5193] = 1155, + [5194] = 1132, + [5195] = 944, + [5196] = 898, + [5197] = 968, + [5198] = 1163, + [5199] = 1082, + [5200] = 967, + [5201] = 1154, + [5202] = 1135, + [5203] = 887, + [5204] = 1176, + [5205] = 1150, + [5206] = 900, + [5207] = 853, + [5208] = 1149, + [5209] = 1057, + [5210] = 1174, + [5211] = 1040, + [5212] = 835, + [5213] = 1151, + [5214] = 1059, + [5215] = 1108, + [5216] = 1035, + [5217] = 1065, + [5218] = 1031, + [5219] = 899, + [5220] = 1061, + [5221] = 1136, + [5222] = 1033, + [5223] = 829, + [5224] = 1153, + [5225] = 1140, + [5226] = 1062, + [5227] = 1073, + [5228] = 1063, + [5229] = 850, + [5230] = 1165, + [5231] = 1133, + [5232] = 999, + [5233] = 857, + [5234] = 855, + [5235] = 1000, + [5236] = 1052, + [5237] = 899, + [5238] = 1017, + [5239] = 832, + [5240] = 1081, + [5241] = 1055, + [5242] = 941, + [5243] = 903, + [5244] = 1112, + [5245] = 1077, + [5246] = 1148, + [5247] = 1076, + [5248] = 1118, + [5249] = 1120, + [5250] = 905, + [5251] = 1071, + [5252] = 1041, + [5253] = 1138, + [5254] = 988, + [5255] = 931, + [5256] = 1038, + [5257] = 1159, + [5258] = 988, + [5259] = 1168, + [5260] = 1039, + [5261] = 1143, + [5262] = 1144, + [5263] = 859, + [5264] = 1109, + [5265] = 867, + [5266] = 963, + [5267] = 815, + [5268] = 983, + [5269] = 946, + [5270] = 945, + [5271] = 987, + [5272] = 5272, + [5273] = 925, + [5274] = 921, + [5275] = 5275, + [5276] = 847, + [5277] = 1058, + [5278] = 1051, + [5279] = 1040, + [5280] = 1035, + [5281] = 1034, + [5282] = 1028, + [5283] = 847, + [5284] = 842, + [5285] = 842, + [5286] = 822, + [5287] = 937, + [5288] = 960, + [5289] = 966, + [5290] = 867, + [5291] = 932, + [5292] = 820, + [5293] = 990, + [5294] = 993, + [5295] = 969, + [5296] = 928, + [5297] = 930, + [5298] = 933, [5299] = 955, - [5300] = 941, - [5301] = 853, - [5302] = 943, - [5303] = 997, - [5304] = 958, - [5305] = 962, - [5306] = 1022, - [5307] = 843, - [5308] = 984, - [5309] = 983, - [5310] = 858, - [5311] = 909, - [5312] = 965, - [5313] = 1028, - [5314] = 946, - [5315] = 972, - [5316] = 1020, - [5317] = 875, - [5318] = 878, - [5319] = 386, - [5320] = 977, - [5321] = 843, - [5322] = 936, - [5323] = 935, - [5324] = 898, - [5325] = 1058, - [5326] = 855, - [5327] = 852, - [5328] = 881, - [5329] = 931, - [5330] = 853, - [5331] = 875, - [5332] = 866, - [5333] = 859, - [5334] = 866, - [5335] = 434, - [5336] = 383, - [5337] = 1040, - [5338] = 430, - [5339] = 980, - [5340] = 859, - [5341] = 435, - [5342] = 947, - [5343] = 5343, - [5344] = 423, - [5345] = 1063, - [5346] = 1059, - [5347] = 1060, - [5348] = 390, - [5349] = 924, - [5350] = 387, - [5351] = 1043, - [5352] = 1104, - [5353] = 1105, - [5354] = 1044, - [5355] = 853, - [5356] = 884, - [5357] = 1100, - [5358] = 1204, - [5359] = 1193, - [5360] = 1107, - [5361] = 434, - [5362] = 1108, - [5363] = 1183, - [5364] = 1096, - [5365] = 5365, - [5366] = 1199, - [5367] = 1138, - [5368] = 1122, - [5369] = 909, - [5370] = 949, - [5371] = 1182, - [5372] = 1181, - [5373] = 912, - [5374] = 931, - [5375] = 1180, - [5376] = 934, - [5377] = 935, - [5378] = 5378, - [5379] = 936, - [5380] = 960, - [5381] = 941, - [5382] = 907, - [5383] = 943, - [5384] = 1205, - [5385] = 924, - [5386] = 855, - [5387] = 426, - [5388] = 852, - [5389] = 942, - [5390] = 1141, - [5391] = 409, - [5392] = 423, - [5393] = 1206, - [5394] = 5365, - [5395] = 1150, - [5396] = 1142, - [5397] = 430, - [5398] = 802, - [5399] = 5365, - [5400] = 1153, - [5401] = 1145, - [5402] = 1148, - [5403] = 3728, - [5404] = 1152, - [5405] = 1174, - [5406] = 1120, - [5407] = 1094, - [5408] = 1170, - [5409] = 1200, - [5410] = 1191, - [5411] = 1185, - [5412] = 1167, - [5413] = 1113, - [5414] = 946, - [5415] = 863, - [5416] = 861, - [5417] = 898, - [5418] = 870, - [5419] = 1047, - [5420] = 1157, - [5421] = 5421, - [5422] = 1110, - [5423] = 1082, - [5424] = 1171, - [5425] = 416, - [5426] = 1070, - [5427] = 5365, - [5428] = 1069, - [5429] = 1079, - [5430] = 1168, - [5431] = 1166, - [5432] = 1162, - [5433] = 5365, - [5434] = 1074, - [5435] = 1060, - [5436] = 1139, - [5437] = 1066, - [5438] = 1126, - [5439] = 5365, - [5440] = 1124, - [5441] = 414, - [5442] = 843, - [5443] = 1169, - [5444] = 1119, - [5445] = 1111, - [5446] = 1076, - [5447] = 5447, - [5448] = 1086, - [5449] = 5365, - [5450] = 1057, - [5451] = 1088, - [5452] = 5365, - [5453] = 858, - [5454] = 1144, - [5455] = 1099, - [5456] = 1051, - [5457] = 1202, - [5458] = 878, - [5459] = 1053, - [5460] = 1115, - [5461] = 1175, - [5462] = 412, - [5463] = 1063, - [5464] = 1196, - [5465] = 859, - [5466] = 881, - [5467] = 1097, - [5468] = 1054, - [5469] = 1059, - [5470] = 5365, - [5471] = 1058, - [5472] = 929, - [5473] = 435, - [5474] = 1055, - [5475] = 1056, - [5476] = 875, - [5477] = 866, - [5478] = 5478, - [5479] = 1079, - [5480] = 444, - [5481] = 5481, - [5482] = 961, - [5483] = 409, - [5484] = 440, - [5485] = 5478, - [5486] = 949, - [5487] = 5487, - [5488] = 5481, - [5489] = 5478, - [5490] = 5478, - [5491] = 416, - [5492] = 5487, - [5493] = 799, - [5494] = 442, - [5495] = 948, - [5496] = 949, - [5497] = 5497, - [5498] = 863, - [5499] = 5487, - [5500] = 960, - [5501] = 5481, - [5502] = 935, - [5503] = 5478, - [5504] = 832, - [5505] = 942, - [5506] = 5478, - [5507] = 909, - [5508] = 5481, - [5509] = 870, - [5510] = 414, - [5511] = 912, - [5512] = 5487, - [5513] = 5481, - [5514] = 5481, - [5515] = 901, - [5516] = 5487, - [5517] = 931, - [5518] = 5518, - [5519] = 412, - [5520] = 791, - [5521] = 5478, - [5522] = 934, - [5523] = 446, - [5524] = 936, - [5525] = 5481, - [5526] = 941, - [5527] = 5487, - [5528] = 943, - [5529] = 946, - [5530] = 453, - [5531] = 5481, - [5532] = 5478, - [5533] = 898, - [5534] = 5481, - [5535] = 1115, - [5536] = 924, - [5537] = 5478, - [5538] = 5487, - [5539] = 5487, - [5540] = 5487, - [5541] = 865, - [5542] = 837, - [5543] = 4027, - [5544] = 1104, + [5300] = 935, + [5301] = 939, + [5302] = 822, + [5303] = 818, + [5304] = 814, + [5305] = 842, + [5306] = 815, + [5307] = 847, + [5308] = 5308, + [5309] = 971, + [5310] = 814, + [5311] = 818, + [5312] = 956, + [5313] = 820, + [5314] = 947, + [5315] = 943, + [5316] = 1180, + [5317] = 1079, + [5318] = 847, + [5319] = 848, + [5320] = 845, + [5321] = 952, + [5322] = 844, + [5323] = 1023, + [5324] = 929, + [5325] = 837, + [5326] = 847, + [5327] = 831, + [5328] = 393, + [5329] = 842, + [5330] = 1153, + [5331] = 384, + [5332] = 1034, + [5333] = 1028, + [5334] = 852, + [5335] = 1029, + [5336] = 1043, + [5337] = 1177, + [5338] = 846, + [5339] = 1035, + [5340] = 824, + [5341] = 1155, + [5342] = 1154, + [5343] = 1040, + [5344] = 1186, + [5345] = 5345, + [5346] = 1157, + [5347] = 1160, + [5348] = 1058, + [5349] = 1147, + [5350] = 849, + [5351] = 1026, + [5352] = 1051, + [5353] = 1148, + [5354] = 1051, + [5355] = 1058, + [5356] = 1144, + [5357] = 1166, + [5358] = 1167, + [5359] = 1143, + [5360] = 1014, + [5361] = 1138, + [5362] = 387, + [5363] = 1120, + [5364] = 1118, + [5365] = 1085, + [5366] = 842, + [5367] = 3568, + [5368] = 1099, + [5369] = 1122, + [5370] = 1123, + [5371] = 837, + [5372] = 822, + [5373] = 1124, + [5374] = 994, + [5375] = 1137, + [5376] = 386, + [5377] = 1139, + [5378] = 1141, + [5379] = 844, + [5380] = 818, + [5381] = 1128, + [5382] = 1027, + [5383] = 845, + [5384] = 1066, + [5385] = 914, + [5386] = 1132, + [5387] = 815, + [5388] = 1172, + [5389] = 848, + [5390] = 1055, + [5391] = 1068, + [5392] = 814, + [5393] = 1163, + [5394] = 1112, + [5395] = 820, + [5396] = 849, + [5397] = 1082, + [5398] = 1135, + [5399] = 1174, + [5400] = 1173, + [5401] = 1034, + [5402] = 1028, + [5403] = 1175, + [5404] = 1081, + [5405] = 1059, + [5406] = 1061, + [5407] = 1136, + [5408] = 847, + [5409] = 842, + [5410] = 1140, + [5411] = 1062, + [5412] = 904, + [5413] = 1063, + [5414] = 1165, + [5415] = 1133, + [5416] = 1158, + [5417] = 1052, + [5418] = 1017, + [5419] = 1187, + [5420] = 1129, + [5421] = 1185, + [5422] = 1181, + [5423] = 1183, + [5424] = 1182, + [5425] = 1042, + [5426] = 911, + [5427] = 887, + [5428] = 829, + [5429] = 855, + [5430] = 857, + [5431] = 431, + [5432] = 1028, + [5433] = 901, + [5434] = 852, + [5435] = 816, + [5436] = 433, + [5437] = 846, + [5438] = 1034, + [5439] = 435, + [5440] = 819, + [5441] = 1035, + [5442] = 821, + [5443] = 884, + [5444] = 1040, + [5445] = 835, + [5446] = 850, + [5447] = 859, + [5448] = 1051, + [5449] = 853, + [5450] = 1058, + [5451] = 900, + [5452] = 430, + [5453] = 384, + [5454] = 393, + [5455] = 859, + [5456] = 896, + [5457] = 898, + [5458] = 823, + [5459] = 850, + [5460] = 835, + [5461] = 899, + [5462] = 853, + [5463] = 837, + [5464] = 903, + [5465] = 831, + [5466] = 5466, + [5467] = 844, + [5468] = 832, + [5469] = 5469, + [5470] = 905, + [5471] = 829, + [5472] = 845, + [5473] = 848, + [5474] = 424, + [5475] = 855, + [5476] = 857, + [5477] = 386, + [5478] = 909, + [5479] = 849, + [5480] = 832, + [5481] = 387, + [5482] = 909, + [5483] = 900, + [5484] = 861, + [5485] = 1054, + [5486] = 5486, + [5487] = 854, + [5488] = 898, + [5489] = 856, + [5490] = 5486, + [5491] = 5486, + [5492] = 407, + [5493] = 424, + [5494] = 433, + [5495] = 5486, + [5496] = 409, + [5497] = 921, + [5498] = 5486, + [5499] = 5499, + [5500] = 925, + [5501] = 3724, + [5502] = 411, + [5503] = 858, + [5504] = 852, + [5505] = 846, + [5506] = 859, + [5507] = 5486, + [5508] = 896, + [5509] = 901, + [5510] = 867, + [5511] = 994, + [5512] = 5486, + [5513] = 431, + [5514] = 5486, + [5515] = 850, + [5516] = 857, + [5517] = 5517, + [5518] = 835, + [5519] = 435, + [5520] = 410, + [5521] = 5486, + [5522] = 832, + [5523] = 430, + [5524] = 975, + [5525] = 887, + [5526] = 831, + [5527] = 911, + [5528] = 829, + [5529] = 853, + [5530] = 855, + [5531] = 1057, + [5532] = 905, + [5533] = 903, + [5534] = 899, + [5535] = 3979, + [5536] = 842, + [5537] = 921, + [5538] = 5538, + [5539] = 952, + [5540] = 5538, + [5541] = 448, + [5542] = 847, + [5543] = 994, + [5544] = 5538, [5545] = 5545, - [5546] = 934, - [5547] = 868, - [5548] = 442, - [5549] = 5378, - [5550] = 802, - [5551] = 942, - [5552] = 440, - [5553] = 5447, - [5554] = 446, - [5555] = 1058, - [5556] = 5556, - [5557] = 1105, - [5558] = 1059, - [5559] = 1060, - [5560] = 453, - [5561] = 1063, - [5562] = 832, - [5563] = 5563, - [5564] = 869, - [5565] = 444, - [5566] = 1059, - [5567] = 1136, - [5568] = 4097, - [5569] = 4077, - [5570] = 1101, - [5571] = 4089, - [5572] = 1128, - [5573] = 4042, - [5574] = 1209, - [5575] = 1063, - [5576] = 1060, - [5577] = 791, - [5578] = 1105, - [5579] = 799, - [5580] = 1104, - [5581] = 4031, - [5582] = 1172, - [5583] = 1058, - [5584] = 865, - [5585] = 1063, - [5586] = 1060, - [5587] = 489, - [5588] = 505, - [5589] = 1104, - [5590] = 1105, - [5591] = 1059, - [5592] = 837, - [5593] = 482, - [5594] = 869, - [5595] = 499, - [5596] = 868, - [5597] = 1058, - [5598] = 5598, - [5599] = 510, - [5600] = 494, - [5601] = 511, - [5602] = 5602, - [5603] = 488, - [5604] = 490, - [5605] = 489, + [5546] = 901, + [5547] = 1169, + [5548] = 900, + [5549] = 440, + [5550] = 5538, + [5551] = 975, + [5552] = 887, + [5553] = 5545, + [5554] = 867, + [5555] = 5538, + [5556] = 5538, + [5557] = 929, + [5558] = 5545, + [5559] = 5559, + [5560] = 5545, + [5561] = 3883, + [5562] = 5559, + [5563] = 896, + [5564] = 410, + [5565] = 5545, + [5566] = 5559, + [5567] = 911, + [5568] = 3889, + [5569] = 409, + [5570] = 909, + [5571] = 1159, + [5572] = 5538, + [5573] = 1168, + [5574] = 5559, + [5575] = 442, + [5576] = 3871, + [5577] = 905, + [5578] = 5559, + [5579] = 1057, + [5580] = 903, + [5581] = 5545, + [5582] = 5559, + [5583] = 898, + [5584] = 446, + [5585] = 3975, + [5586] = 411, + [5587] = 994, + [5588] = 5538, + [5589] = 5545, + [5590] = 1054, + [5591] = 5559, + [5592] = 899, + [5593] = 1170, + [5594] = 453, + [5595] = 5538, + [5596] = 5545, + [5597] = 407, + [5598] = 5545, + [5599] = 1162, + [5600] = 5559, + [5601] = 5559, + [5602] = 823, + [5603] = 5499, + [5604] = 921, + [5605] = 821, [5606] = 5606, - [5607] = 863, - [5608] = 5608, - [5609] = 499, - [5610] = 870, - [5611] = 494, - [5612] = 505, - [5613] = 510, - [5614] = 901, - [5615] = 483, - [5616] = 503, - [5617] = 832, - [5618] = 507, - [5619] = 496, - [5620] = 480, - [5621] = 482, - [5622] = 511, - [5623] = 863, - [5624] = 5378, - [5625] = 503, - [5626] = 483, - [5627] = 488, - [5628] = 496, - [5629] = 507, - [5630] = 870, - [5631] = 480, - [5632] = 5447, - [5633] = 490, - [5634] = 802, - [5635] = 3728, - [5636] = 822, - [5637] = 832, - [5638] = 802, - [5639] = 832, - [5640] = 799, - [5641] = 901, - [5642] = 832, - [5643] = 822, - [5644] = 791, - [5645] = 865, - [5646] = 5646, - [5647] = 5646, - [5648] = 865, - [5649] = 869, - [5650] = 837, - [5651] = 5646, - [5652] = 3728, - [5653] = 4027, - [5654] = 837, - [5655] = 837, - [5656] = 868, - [5657] = 5646, - [5658] = 5646, - [5659] = 865, - [5660] = 832, - [5661] = 5661, - [5662] = 5646, - [5663] = 868, - [5664] = 869, - [5665] = 799, - [5666] = 818, - [5667] = 791, - [5668] = 1209, - [5669] = 860, + [5607] = 446, + [5608] = 440, + [5609] = 448, + [5610] = 1028, + [5611] = 1035, + [5612] = 453, + [5613] = 1034, + [5614] = 1051, + [5615] = 1058, + [5616] = 5616, + [5617] = 824, + [5618] = 5618, + [5619] = 867, + [5620] = 5517, + [5621] = 442, + [5622] = 1040, + [5623] = 1051, + [5624] = 1034, + [5625] = 1040, + [5626] = 1058, + [5627] = 1035, + [5628] = 1028, + [5629] = 819, + [5630] = 816, + [5631] = 847, + [5632] = 842, + [5633] = 480, + [5634] = 498, + [5635] = 483, + [5636] = 503, + [5637] = 842, + [5638] = 854, + [5639] = 847, + [5640] = 513, + [5641] = 1028, + [5642] = 856, + [5643] = 1034, + [5644] = 1051, + [5645] = 1040, + [5646] = 1035, + [5647] = 861, + [5648] = 487, + [5649] = 858, + [5650] = 5650, + [5651] = 1058, + [5652] = 481, + [5653] = 884, + [5654] = 483, + [5655] = 498, + [5656] = 503, + [5657] = 484, + [5658] = 488, + [5659] = 482, + [5660] = 823, + [5661] = 502, + [5662] = 489, + [5663] = 821, + [5664] = 487, + [5665] = 492, + [5666] = 490, + [5667] = 5667, + [5668] = 480, + [5669] = 513, [5670] = 5670, [5671] = 5671, - [5672] = 5670, - [5673] = 5673, - [5674] = 5674, - [5675] = 4097, - [5676] = 5670, - [5677] = 4077, - [5678] = 4027, - [5679] = 4031, - [5680] = 5670, - [5681] = 818, - [5682] = 5670, - [5683] = 751, - [5684] = 5670, - [5685] = 5685, - [5686] = 847, - [5687] = 755, - [5688] = 848, - [5689] = 1101, - [5690] = 5690, - [5691] = 876, - [5692] = 5670, - [5693] = 1136, - [5694] = 5694, - [5695] = 4042, - [5696] = 836, - [5697] = 5670, - [5698] = 4089, - [5699] = 5670, - [5700] = 5670, - [5701] = 5670, - [5702] = 5702, - [5703] = 1172, - [5704] = 5670, - [5705] = 5670, - [5706] = 5670, - [5707] = 5670, - [5708] = 5670, - [5709] = 5670, - [5710] = 5710, - [5711] = 5670, - [5712] = 1128, - [5713] = 5670, - [5714] = 5670, - [5715] = 850, - [5716] = 901, - [5717] = 862, - [5718] = 5671, - [5719] = 5710, - [5720] = 959, - [5721] = 4089, - [5722] = 5674, - [5723] = 1136, - [5724] = 5690, - [5725] = 876, - [5726] = 4097, - [5727] = 802, - [5728] = 966, - [5729] = 953, - [5730] = 5694, - [5731] = 950, - [5732] = 850, - [5733] = 860, - [5734] = 1172, - [5735] = 848, - [5736] = 4042, - [5737] = 3728, - [5738] = 952, - [5739] = 1128, - [5740] = 5685, - [5741] = 5673, - [5742] = 847, - [5743] = 862, - [5744] = 836, - [5745] = 1101, - [5746] = 971, - [5747] = 974, - [5748] = 975, - [5749] = 4077, - [5750] = 4031, - [5751] = 979, - [5752] = 1209, - [5753] = 901, - [5754] = 799, - [5755] = 899, - [5756] = 969, - [5757] = 954, - [5758] = 887, - [5759] = 791, - [5760] = 970, - [5761] = 919, - [5762] = 885, - [5763] = 1015, - [5764] = 1013, - [5765] = 837, - [5766] = 865, - [5767] = 802, - [5768] = 954, - [5769] = 919, - [5770] = 899, - [5771] = 971, - [5772] = 969, - [5773] = 885, - [5774] = 4027, - [5775] = 970, - [5776] = 3728, - [5777] = 950, - [5778] = 952, - [5779] = 953, - [5780] = 959, - [5781] = 974, - [5782] = 966, - [5783] = 979, - [5784] = 975, - [5785] = 887, - [5786] = 985, - [5787] = 869, - [5788] = 868, - [5789] = 1013, - [5790] = 832, - [5791] = 901, - [5792] = 915, - [5793] = 1015, - [5794] = 791, - [5795] = 914, - [5796] = 799, - [5797] = 985, - [5798] = 5798, - [5799] = 4042, - [5800] = 5800, - [5801] = 5800, - [5802] = 1128, - [5803] = 5800, - [5804] = 1172, - [5805] = 5800, - [5806] = 5674, - [5807] = 5800, - [5808] = 1136, - [5809] = 5800, - [5810] = 1101, - [5811] = 4097, - [5812] = 5800, - [5813] = 5694, - [5814] = 4089, - [5815] = 5690, - [5816] = 915, - [5817] = 868, - [5818] = 5710, - [5819] = 5800, - [5820] = 4031, - [5821] = 869, - [5822] = 914, - [5823] = 4077, - [5824] = 5800, - [5825] = 5800, - [5826] = 1209, - [5827] = 4027, - [5828] = 5800, - [5829] = 5671, - [5830] = 5673, - [5831] = 5685, - [5832] = 5832, - [5833] = 5833, - [5834] = 5833, - [5835] = 5833, - [5836] = 5833, - [5837] = 5833, - [5838] = 5833, - [5839] = 5839, - [5840] = 5840, - [5841] = 5841, - [5842] = 5842, - [5843] = 5843, - [5844] = 5844, - [5845] = 5845, - [5846] = 5846, - [5847] = 5847, - [5848] = 5842, - [5849] = 5844, - [5850] = 5850, - [5851] = 5845, - [5852] = 5840, - [5853] = 5846, - [5854] = 5854, - [5855] = 5844, - [5856] = 5856, - [5857] = 5857, - [5858] = 5858, - [5859] = 5859, - [5860] = 5860, - [5861] = 5847, - [5862] = 5860, - [5863] = 5841, - [5864] = 5850, - [5865] = 5840, - [5866] = 5866, - [5867] = 4077, - [5868] = 5856, - [5869] = 5859, - [5870] = 5870, - [5871] = 5854, - [5872] = 5872, - [5873] = 5839, - [5874] = 5847, - [5875] = 5870, - [5876] = 5840, - [5877] = 5854, - [5878] = 5870, - [5879] = 5845, - [5880] = 5859, - [5881] = 5881, - [5882] = 5841, - [5883] = 5857, - [5884] = 5860, - [5885] = 5845, - [5886] = 5850, - [5887] = 5856, - [5888] = 5859, - [5889] = 5872, - [5890] = 5846, - [5891] = 5840, - [5892] = 5872, - [5893] = 5881, - [5894] = 4031, - [5895] = 4042, - [5896] = 5844, + [5672] = 490, + [5673] = 489, + [5674] = 488, + [5675] = 5517, + [5676] = 5499, + [5677] = 492, + [5678] = 482, + [5679] = 484, + [5680] = 481, + [5681] = 502, + [5682] = 823, + [5683] = 821, + [5684] = 824, + [5685] = 823, + [5686] = 824, + [5687] = 812, + [5688] = 3568, + [5689] = 821, + [5690] = 812, + [5691] = 819, + [5692] = 884, + [5693] = 821, + [5694] = 823, + [5695] = 816, + [5696] = 3568, + [5697] = 5697, + [5698] = 5698, + [5699] = 854, + [5700] = 854, + [5701] = 821, + [5702] = 5697, + [5703] = 856, + [5704] = 861, + [5705] = 3724, + [5706] = 858, + [5707] = 854, + [5708] = 858, + [5709] = 861, + [5710] = 5697, + [5711] = 5697, + [5712] = 856, + [5713] = 823, + [5714] = 5697, + [5715] = 5697, + [5716] = 856, + [5717] = 819, + [5718] = 825, + [5719] = 816, + [5720] = 5720, + [5721] = 3889, + [5722] = 1168, + [5723] = 830, + [5724] = 5724, + [5725] = 5725, + [5726] = 5725, + [5727] = 5725, + [5728] = 3979, + [5729] = 1169, + [5730] = 5725, + [5731] = 5725, + [5732] = 3883, + [5733] = 5725, + [5734] = 5725, + [5735] = 5725, + [5736] = 1162, + [5737] = 828, + [5738] = 3724, + [5739] = 5725, + [5740] = 5725, + [5741] = 5725, + [5742] = 5725, + [5743] = 3975, + [5744] = 1159, + [5745] = 827, + [5746] = 5725, + [5747] = 5725, + [5748] = 825, + [5749] = 3871, + [5750] = 1170, + [5751] = 5751, + [5752] = 5752, + [5753] = 5753, + [5754] = 5754, + [5755] = 5755, + [5756] = 5725, + [5757] = 777, + [5758] = 774, + [5759] = 5725, + [5760] = 839, + [5761] = 5761, + [5762] = 851, + [5763] = 5725, + [5764] = 5725, + [5765] = 5725, + [5766] = 5725, + [5767] = 833, + [5768] = 884, + [5769] = 860, + [5770] = 1170, + [5771] = 5751, + [5772] = 827, + [5773] = 5761, + [5774] = 5755, + [5775] = 3979, + [5776] = 1169, + [5777] = 833, + [5778] = 3975, + [5779] = 5754, + [5780] = 3871, + [5781] = 839, + [5782] = 3889, + [5783] = 5752, + [5784] = 860, + [5785] = 851, + [5786] = 1012, + [5787] = 824, + [5788] = 828, + [5789] = 3883, + [5790] = 972, + [5791] = 5724, + [5792] = 830, + [5793] = 5720, + [5794] = 938, + [5795] = 974, + [5796] = 1159, + [5797] = 1004, + [5798] = 991, + [5799] = 3568, + [5800] = 973, + [5801] = 982, + [5802] = 1162, + [5803] = 979, + [5804] = 1168, + [5805] = 891, + [5806] = 816, + [5807] = 866, + [5808] = 988, + [5809] = 819, + [5810] = 967, + [5811] = 968, + [5812] = 864, + [5813] = 884, + [5814] = 885, + [5815] = 858, + [5816] = 972, + [5817] = 967, + [5818] = 861, + [5819] = 985, + [5820] = 866, + [5821] = 938, + [5822] = 3568, + [5823] = 974, + [5824] = 973, + [5825] = 854, + [5826] = 824, + [5827] = 3724, + [5828] = 991, + [5829] = 1012, + [5830] = 981, + [5831] = 1004, + [5832] = 992, + [5833] = 968, + [5834] = 988, + [5835] = 982, + [5836] = 979, + [5837] = 891, + [5838] = 885, + [5839] = 864, + [5840] = 856, + [5841] = 884, + [5842] = 823, + [5843] = 816, + [5844] = 985, + [5845] = 992, + [5846] = 821, + [5847] = 918, + [5848] = 912, + [5849] = 981, + [5850] = 819, + [5851] = 1170, + [5852] = 5852, + [5853] = 5853, + [5854] = 5761, + [5855] = 5720, + [5856] = 5853, + [5857] = 858, + [5858] = 5853, + [5859] = 5724, + [5860] = 912, + [5861] = 918, + [5862] = 5853, + [5863] = 3724, + [5864] = 3871, + [5865] = 5751, + [5866] = 1159, + [5867] = 861, + [5868] = 5853, + [5869] = 5853, + [5870] = 3975, + [5871] = 1162, + [5872] = 5755, + [5873] = 1168, + [5874] = 5754, + [5875] = 1169, + [5876] = 3979, + [5877] = 5853, + [5878] = 3889, + [5879] = 5853, + [5880] = 3883, + [5881] = 5853, + [5882] = 5853, + [5883] = 5752, + [5884] = 5853, + [5885] = 5885, + [5886] = 5885, + [5887] = 5885, + [5888] = 5888, + [5889] = 5885, + [5890] = 5885, + [5891] = 5885, + [5892] = 5892, + [5893] = 5893, + [5894] = 5894, + [5895] = 5895, + [5896] = 5896, [5897] = 5897, - [5898] = 5857, - [5899] = 5847, - [5900] = 5845, - [5901] = 4089, - [5902] = 5902, + [5898] = 5893, + [5899] = 5899, + [5900] = 5900, + [5901] = 5901, + [5902] = 5901, [5903] = 5903, - [5904] = 5858, - [5905] = 5845, - [5906] = 5854, - [5907] = 5872, - [5908] = 5859, - [5909] = 5856, - [5910] = 5850, - [5911] = 5872, - [5912] = 5859, - [5913] = 5856, - [5914] = 5850, + [5904] = 5904, + [5905] = 5894, + [5906] = 5892, + [5907] = 5907, + [5908] = 5900, + [5909] = 5909, + [5910] = 5893, + [5911] = 5907, + [5912] = 5896, + [5913] = 5913, + [5914] = 5914, [5915] = 5915, - [5916] = 5845, - [5917] = 5843, - [5918] = 5872, - [5919] = 5842, - [5920] = 5854, - [5921] = 5872, - [5922] = 5846, - [5923] = 5870, - [5924] = 5903, - [5925] = 5872, - [5926] = 5881, - [5927] = 5859, - [5928] = 5902, - [5929] = 5841, + [5916] = 5913, + [5917] = 5917, + [5918] = 5900, + [5919] = 5919, + [5920] = 5920, + [5921] = 5896, + [5922] = 5922, + [5923] = 5901, + [5924] = 5894, + [5925] = 5897, + [5926] = 5893, + [5927] = 5927, + [5928] = 5899, + [5929] = 5909, [5930] = 5930, - [5931] = 5931, - [5932] = 5860, - [5933] = 5897, - [5934] = 5856, - [5935] = 5840, - [5936] = 5850, - [5937] = 5860, - [5938] = 5854, - [5939] = 1172, - [5940] = 1128, - [5941] = 5870, - [5942] = 5857, - [5943] = 5842, - [5944] = 5843, - [5945] = 1136, - [5946] = 5841, - [5947] = 5839, - [5948] = 5845, - [5949] = 5857, - [5950] = 5846, - [5951] = 5897, - [5952] = 5903, - [5953] = 5847, - [5954] = 5854, - [5955] = 5857, - [5956] = 5872, - [5957] = 5870, - [5958] = 5881, - [5959] = 5959, - [5960] = 5860, - [5961] = 1101, - [5962] = 5841, - [5963] = 5850, - [5964] = 5839, - [5965] = 5872, - [5966] = 5870, - [5967] = 5859, - [5968] = 5872, - [5969] = 5872, - [5970] = 5856, - [5971] = 5859, - [5972] = 5860, - [5973] = 5850, - [5974] = 5856, - [5975] = 5850, - [5976] = 5843, - [5977] = 4097, - [5978] = 5850, - [5979] = 5840, - [5980] = 5850, - [5981] = 5844, - [5982] = 5860, - [5983] = 5842, - [5984] = 5872, - [5985] = 5859, - [5986] = 5856, - [5987] = 5841, - [5988] = 5903, - [5989] = 5850, - [5990] = 5840, - [5991] = 5845, - [5992] = 5856, - [5993] = 5859, - [5994] = 5857, - [5995] = 5881, - [5996] = 5857, - [5997] = 5856, - [5998] = 5872, - [5999] = 5870, - [6000] = 5858, - [6001] = 5839, - [6002] = 5845, - [6003] = 5859, - [6004] = 5856, - [6005] = 5840, - [6006] = 5840, - [6007] = 6007, - [6008] = 5903, - [6009] = 5850, - [6010] = 5860, - [6011] = 5859, - [6012] = 6012, - [6013] = 5857, - [6014] = 5843, - [6015] = 5847, - [6016] = 5872, - [6017] = 5842, - [6018] = 5870, - [6019] = 5859, - [6020] = 5841, - [6021] = 5858, - [6022] = 5845, - [6023] = 5881, - [6024] = 5856, - [6025] = 5870, - [6026] = 5857, - [6027] = 5847, - [6028] = 5840, - [6029] = 5872, - [6030] = 5859, - [6031] = 5870, - [6032] = 5859, - [6033] = 5856, - [6034] = 5850, - [6035] = 5854, - [6036] = 5860, - [6037] = 5840, - [6038] = 5841, - [6039] = 5850, - [6040] = 5897, - [6041] = 5850, - [6042] = 5902, - [6043] = 5860, - [6044] = 5866, - [6045] = 5860, - [6046] = 5903, - [6047] = 5897, - [6048] = 5903, - [6049] = 5842, - [6050] = 5897, - [6051] = 5881, - [6052] = 5839, - [6053] = 5839, - [6054] = 5845, - [6055] = 5856, - [6056] = 5866, - [6057] = 5860, - [6058] = 5857, - [6059] = 5854, - [6060] = 5857, - [6061] = 5872, - [6062] = 5842, - [6063] = 5870, - [6064] = 5859, - [6065] = 5845, - [6066] = 5841, - [6067] = 5841, - [6068] = 5903, - [6069] = 5881, - [6070] = 5902, - [6071] = 5856, - [6072] = 5840, - [6073] = 5839, - [6074] = 5845, - [6075] = 5854, - [6076] = 5903, - [6077] = 5881, - [6078] = 5857, - [6079] = 6079, - [6080] = 6080, - [6081] = 6081, - [6082] = 5930, - [6083] = 5931, - [6084] = 5842, - [6085] = 5931, - [6086] = 5930, - [6087] = 5850, - [6088] = 5845, - [6089] = 5860, - [6090] = 5870, - [6091] = 5872, - [6092] = 5902, - [6093] = 5903, - [6094] = 5872, - [6095] = 5870, - [6096] = 5841, - [6097] = 5839, - [6098] = 5881, - [6099] = 5842, - [6100] = 5857, - [6101] = 5930, - [6102] = 5842, - [6103] = 5856, - [6104] = 5841, - [6105] = 6080, - [6106] = 5844, - [6107] = 1209, - [6108] = 5872, - [6109] = 5903, - [6110] = 5843, - [6111] = 5881, - [6112] = 5839, - [6113] = 5841, - [6114] = 5854, - [6115] = 5859, - [6116] = 5856, - [6117] = 5841, - [6118] = 5840, - [6119] = 5839, - [6120] = 5850, - [6121] = 6121, - [6122] = 5841, - [6123] = 832, - [6124] = 5872, - [6125] = 5842, - [6126] = 5845, - [6127] = 5844, - [6128] = 5897, - [6129] = 5856, - [6130] = 5850, - [6131] = 5857, - [6132] = 5857, - [6133] = 5845, - [6134] = 5870, - [6135] = 5842, - [6136] = 5870, - [6137] = 5841, - [6138] = 5840, - [6139] = 5860, - [6140] = 5842, - [6141] = 5841, - [6142] = 5841, - [6143] = 5854, - [6144] = 5897, - [6145] = 5897, - [6146] = 5842, - [6147] = 5841, - [6148] = 5842, - [6149] = 5903, - [6150] = 5881, - [6151] = 5839, - [6152] = 5866, - [6153] = 5841, - [6154] = 5860, - [6155] = 5903, - [6156] = 5854, - [6157] = 5839, - [6158] = 5902, - [6159] = 5839, - [6160] = 5847, - [6161] = 5842, - [6162] = 5903, - [6163] = 5881, - [6164] = 5881, - [6165] = 5881, - [6166] = 5859, - [6167] = 5839, - [6168] = 5903, - [6169] = 5839, - [6170] = 5845, - [6171] = 5931, - [6172] = 5857, - [6173] = 5858, - [6174] = 5870, - [6175] = 5872, - [6176] = 5856, - [6177] = 5881, - [6178] = 5840, - [6179] = 5842, - [6180] = 5870, - [6181] = 5845, - [6182] = 5845, - [6183] = 5857, - [6184] = 6184, - [6185] = 5903, - [6186] = 5857, - [6187] = 5872, - [6188] = 6188, - [6189] = 5844, - [6190] = 5859, - [6191] = 6191, - [6192] = 5870, - [6193] = 5840, - [6194] = 5839, - [6195] = 5856, - [6196] = 5847, - [6197] = 5844, - [6198] = 5843, - [6199] = 5902, - [6200] = 5840, - [6201] = 5845, - [6202] = 5881, - [6203] = 5846, - [6204] = 5856, - [6205] = 5854, - [6206] = 6206, - [6207] = 5850, - [6208] = 5860, - [6209] = 5859, - [6210] = 5866, - [6211] = 5857, - [6212] = 5881, - [6213] = 5860, - [6214] = 5866, - [6215] = 5881, - [6216] = 5850, - [6217] = 5897, - [6218] = 5857, - [6219] = 5860, - [6220] = 5850, - [6221] = 5843, - [6222] = 5858, - [6223] = 5858, - [6224] = 5859, - [6225] = 6225, - [6226] = 5844, - [6227] = 5903, - [6228] = 5856, - [6229] = 5846, - [6230] = 5840, - [6231] = 5856, - [6232] = 5859, - [6233] = 5847, - [6234] = 5859, - [6235] = 5847, - [6236] = 5840, - [6237] = 5897, - [6238] = 5870, - [6239] = 5872, - [6240] = 5840, - [6241] = 5881, - [6242] = 5856, - [6243] = 5857, - [6244] = 5897, - [6245] = 5903, - [6246] = 5845, - [6247] = 6079, - [6248] = 5930, - [6249] = 5931, - [6250] = 5857, - [6251] = 5839, - [6252] = 5842, - [6253] = 5844, - [6254] = 5881, - [6255] = 5850, - [6256] = 5903, - [6257] = 5842, - [6258] = 5902, - [6259] = 5897, - [6260] = 5841, - [6261] = 5872, - [6262] = 5860, - [6263] = 5931, - [6264] = 5930, - [6265] = 5870, - [6266] = 5844, - [6267] = 5858, - [6268] = 5843, - [6269] = 5859, - [6270] = 5903, - [6271] = 5842, - [6272] = 5859, - [6273] = 5860, - [6274] = 6079, - [6275] = 6080, - [6276] = 5840, - [6277] = 5856, - [6278] = 5840, - [6279] = 5850, - [6280] = 5845, - [6281] = 5903, - [6282] = 5866, - [6283] = 5881, - [6284] = 5850, - [6285] = 5839, - [6286] = 6079, - [6287] = 6080, - [6288] = 5860, - [6289] = 5850, - [6290] = 5845, - [6291] = 5857, - [6292] = 5857, - [6293] = 5872, - [6294] = 5870, - [6295] = 5860, - [6296] = 5840, - [6297] = 5859, - [6298] = 6079, - [6299] = 6080, - [6300] = 5860, - [6301] = 5841, - [6302] = 5903, - [6303] = 5860, - [6304] = 5858, - [6305] = 5842, - [6306] = 5870, - [6307] = 5842, - [6308] = 5841, - [6309] = 6079, - [6310] = 6080, - [6311] = 5840, - [6312] = 5860, - [6313] = 5841, - [6314] = 5840, - [6315] = 5839, - [6316] = 5845, - [6317] = 5846, - [6318] = 5870, - [6319] = 5842, - [6320] = 5870, - [6321] = 5846, - [6322] = 5856, - [6323] = 6323, - [6324] = 5839, - [6325] = 5860, - [6326] = 5841, - [6327] = 5842, - [6328] = 5866, - [6329] = 5903, - [6330] = 5839, - [6331] = 5847, - [6332] = 5881, - [6333] = 5857, - [6334] = 5841, - [6335] = 5842, - [6336] = 5866, - [6337] = 5845, - [6338] = 5845, - [6339] = 5842, - [6340] = 5839, - [6341] = 5897, - [6342] = 5872, - [6343] = 5857, - [6344] = 5903, - [6345] = 5870, - [6346] = 5881, - [6347] = 5870, - [6348] = 5840, - [6349] = 5839, - [6350] = 5850, - [6351] = 6351, - [6352] = 6352, - [6353] = 6351, - [6354] = 6352, - [6355] = 6352, - [6356] = 6351, - [6357] = 6351, - [6358] = 6351, - [6359] = 6352, - [6360] = 6351, - [6361] = 6351, - [6362] = 6351, - [6363] = 6351, - [6364] = 6351, - [6365] = 6351, - [6366] = 6351, - [6367] = 6352, - [6368] = 6351, - [6369] = 6351, - [6370] = 6352, - [6371] = 6352, - [6372] = 6351, - [6373] = 6351, - [6374] = 6352, - [6375] = 6351, - [6376] = 6351, - [6377] = 6351, - [6378] = 6352, - [6379] = 6351, - [6380] = 6351, - [6381] = 6351, - [6382] = 6352, - [6383] = 6351, - [6384] = 6352, - [6385] = 6351, - [6386] = 6351, - [6387] = 6352, - [6388] = 6352, - [6389] = 6352, - [6390] = 6351, - [6391] = 6351, - [6392] = 6392, - [6393] = 6393, - [6394] = 6392, + [5931] = 5892, + [5932] = 5932, + [5933] = 5922, + [5934] = 5896, + [5935] = 5914, + [5936] = 5903, + [5937] = 5909, + [5938] = 5900, + [5939] = 5904, + [5940] = 5940, + [5941] = 5941, + [5942] = 5915, + [5943] = 5899, + [5944] = 5913, + [5945] = 5915, + [5946] = 5940, + [5947] = 5917, + [5948] = 5909, + [5949] = 5907, + [5950] = 5913, + [5951] = 5951, + [5952] = 5892, + [5953] = 5892, + [5954] = 5954, + [5955] = 5904, + [5956] = 5903, + [5957] = 5917, + [5958] = 5922, + [5959] = 5897, + [5960] = 5951, + [5961] = 5919, + [5962] = 5900, + [5963] = 5930, + [5964] = 5914, + [5965] = 5940, + [5966] = 5966, + [5967] = 5920, + [5968] = 5894, + [5969] = 5894, + [5970] = 5917, + [5971] = 5896, + [5972] = 5922, + [5973] = 5900, + [5974] = 5930, + [5975] = 5893, + [5976] = 5914, + [5977] = 5966, + [5978] = 5892, + [5979] = 5913, + [5980] = 5915, + [5981] = 5917, + [5982] = 5922, + [5983] = 5915, + [5984] = 5940, + [5985] = 5900, + [5986] = 5894, + [5987] = 5930, + [5988] = 5899, + [5989] = 5893, + [5990] = 5990, + [5991] = 5915, + [5992] = 5913, + [5993] = 5932, + [5994] = 5922, + [5995] = 5894, + [5996] = 5940, + [5997] = 5997, + [5998] = 5899, + [5999] = 5966, + [6000] = 5922, + [6001] = 5913, + [6002] = 5896, + [6003] = 5930, + [6004] = 5917, + [6005] = 5901, + [6006] = 5892, + [6007] = 5919, + [6008] = 5899, + [6009] = 5914, + [6010] = 5951, + [6011] = 5922, + [6012] = 5917, + [6013] = 5907, + [6014] = 5922, + [6015] = 5930, + [6016] = 6016, + [6017] = 5913, + [6018] = 5914, + [6019] = 5893, + [6020] = 5932, + [6021] = 5951, + [6022] = 5892, + [6023] = 5894, + [6024] = 5917, + [6025] = 5922, + [6026] = 5930, + [6027] = 5897, + [6028] = 5914, + [6029] = 5954, + [6030] = 5907, + [6031] = 5894, + [6032] = 5914, + [6033] = 5892, + [6034] = 5915, + [6035] = 5940, + [6036] = 5913, + [6037] = 5896, + [6038] = 5907, + [6039] = 6039, + [6040] = 5917, + [6041] = 5917, + [6042] = 5900, + [6043] = 5909, + [6044] = 5922, + [6045] = 5913, + [6046] = 5932, + [6047] = 5930, + [6048] = 5899, + [6049] = 5920, + [6050] = 5930, + [6051] = 5917, + [6052] = 5914, + [6053] = 5907, + [6054] = 5899, + [6055] = 5900, + [6056] = 5922, + [6057] = 5893, + [6058] = 5930, + [6059] = 5899, + [6060] = 5894, + [6061] = 6061, + [6062] = 5914, + [6063] = 5907, + [6064] = 5893, + [6065] = 5892, + [6066] = 5894, + [6067] = 5951, + [6068] = 5893, + [6069] = 5913, + [6070] = 5919, + [6071] = 5917, + [6072] = 5915, + [6073] = 5900, + [6074] = 5940, + [6075] = 5922, + [6076] = 5930, + [6077] = 5893, + [6078] = 5899, + [6079] = 5914, + [6080] = 5907, + [6081] = 5917, + [6082] = 5951, + [6083] = 5892, + [6084] = 5892, + [6085] = 5913, + [6086] = 5914, + [6087] = 5893, + [6088] = 5917, + [6089] = 6089, + [6090] = 5900, + [6091] = 5894, + [6092] = 5907, + [6093] = 5915, + [6094] = 6094, + [6095] = 5940, + [6096] = 5951, + [6097] = 5901, + [6098] = 5892, + [6099] = 5913, + [6100] = 5932, + [6101] = 5893, + [6102] = 5940, + [6103] = 5917, + [6104] = 5913, + [6105] = 5895, + [6106] = 5900, + [6107] = 5893, + [6108] = 5922, + [6109] = 5922, + [6110] = 5966, + [6111] = 5930, + [6112] = 5930, + [6113] = 5899, + [6114] = 5909, + [6115] = 5966, + [6116] = 5914, + [6117] = 5892, + [6118] = 5907, + [6119] = 5954, + [6120] = 5901, + [6121] = 5904, + [6122] = 5901, + [6123] = 5903, + [6124] = 6124, + [6125] = 5909, + [6126] = 6126, + [6127] = 5915, + [6128] = 5940, + [6129] = 5899, + [6130] = 5951, + [6131] = 5914, + [6132] = 5951, + [6133] = 5940, + [6134] = 5892, + [6135] = 5894, + [6136] = 5907, + [6137] = 5895, + [6138] = 5914, + [6139] = 5893, + [6140] = 5913, + [6141] = 5915, + [6142] = 5915, + [6143] = 3889, + [6144] = 5940, + [6145] = 1162, + [6146] = 5894, + [6147] = 5930, + [6148] = 5893, + [6149] = 5904, + [6150] = 5917, + [6151] = 5900, + [6152] = 5892, + [6153] = 5922, + [6154] = 5913, + [6155] = 5930, + [6156] = 5899, + [6157] = 5907, + [6158] = 5914, + [6159] = 5899, + [6160] = 5909, + [6161] = 5917, + [6162] = 5907, + [6163] = 5900, + [6164] = 5900, + [6165] = 5913, + [6166] = 5901, + [6167] = 5922, + [6168] = 5927, + [6169] = 6169, + [6170] = 5897, + [6171] = 5897, + [6172] = 5894, + [6173] = 5966, + [6174] = 5932, + [6175] = 5896, + [6176] = 5920, + [6177] = 5892, + [6178] = 1168, + [6179] = 5951, + [6180] = 5930, + [6181] = 5930, + [6182] = 5940, + [6183] = 5915, + [6184] = 5893, + [6185] = 5966, + [6186] = 6186, + [6187] = 5894, + [6188] = 5930, + [6189] = 3871, + [6190] = 5899, + [6191] = 5954, + [6192] = 5914, + [6193] = 6169, + [6194] = 5922, + [6195] = 5907, + [6196] = 5896, + [6197] = 5895, + [6198] = 5954, + [6199] = 5914, + [6200] = 5907, + [6201] = 5900, + [6202] = 5907, + [6203] = 5914, + [6204] = 5899, + [6205] = 5914, + [6206] = 1169, + [6207] = 5954, + [6208] = 5894, + [6209] = 5901, + [6210] = 5915, + [6211] = 821, + [6212] = 5930, + [6213] = 5895, + [6214] = 5940, + [6215] = 5966, + [6216] = 5922, + [6217] = 5954, + [6218] = 5896, + [6219] = 5951, + [6220] = 5922, + [6221] = 5892, + [6222] = 5913, + [6223] = 5900, + [6224] = 823, + [6225] = 5893, + [6226] = 5966, + [6227] = 5893, + [6228] = 3883, + [6229] = 5903, + [6230] = 5954, + [6231] = 5900, + [6232] = 5917, + [6233] = 5917, + [6234] = 5913, + [6235] = 5900, + [6236] = 5951, + [6237] = 5966, + [6238] = 5917, + [6239] = 5892, + [6240] = 5893, + [6241] = 5951, + [6242] = 5915, + [6243] = 5940, + [6244] = 5917, + [6245] = 5895, + [6246] = 5909, + [6247] = 5951, + [6248] = 5940, + [6249] = 1159, + [6250] = 5915, + [6251] = 5892, + [6252] = 3975, + [6253] = 5895, + [6254] = 5894, + [6255] = 5907, + [6256] = 5913, + [6257] = 5914, + [6258] = 5894, + [6259] = 5899, + [6260] = 5897, + [6261] = 5900, + [6262] = 5930, + [6263] = 5892, + [6264] = 5899, + [6265] = 5922, + [6266] = 5919, + [6267] = 5930, + [6268] = 1170, + [6269] = 5900, + [6270] = 5913, + [6271] = 5899, + [6272] = 5894, + [6273] = 5954, + [6274] = 5907, + [6275] = 5899, + [6276] = 5915, + [6277] = 5899, + [6278] = 5907, + [6279] = 5920, + [6280] = 5893, + [6281] = 5899, + [6282] = 5940, + [6283] = 5915, + [6284] = 5917, + [6285] = 5913, + [6286] = 5892, + [6287] = 5940, + [6288] = 5894, + [6289] = 5915, + [6290] = 5940, + [6291] = 5966, + [6292] = 5951, + [6293] = 5899, + [6294] = 5893, + [6295] = 5920, + [6296] = 5932, + [6297] = 5909, + [6298] = 5901, + [6299] = 5894, + [6300] = 5920, + [6301] = 5893, + [6302] = 5951, + [6303] = 5940, + [6304] = 5900, + [6305] = 5914, + [6306] = 5894, + [6307] = 5907, + [6308] = 5893, + [6309] = 5909, + [6310] = 5966, + [6311] = 5909, + [6312] = 5894, + [6313] = 5951, + [6314] = 5915, + [6315] = 5951, + [6316] = 5900, + [6317] = 5940, + [6318] = 5917, + [6319] = 5951, + [6320] = 5951, + [6321] = 5922, + [6322] = 5940, + [6323] = 5915, + [6324] = 5894, + [6325] = 5966, + [6326] = 5894, + [6327] = 5930, + [6328] = 5892, + [6329] = 5896, + [6330] = 5893, + [6331] = 5922, + [6332] = 5909, + [6333] = 5895, + [6334] = 5893, + [6335] = 5892, + [6336] = 5951, + [6337] = 5909, + [6338] = 5951, + [6339] = 5919, + [6340] = 5913, + [6341] = 5917, + [6342] = 5914, + [6343] = 5915, + [6344] = 5913, + [6345] = 5932, + [6346] = 5900, + [6347] = 5899, + [6348] = 5904, + [6349] = 5930, + [6350] = 5899, + [6351] = 3979, + [6352] = 5892, + [6353] = 5922, + [6354] = 5966, + [6355] = 5907, + [6356] = 5930, + [6357] = 5913, + [6358] = 5907, + [6359] = 5951, + [6360] = 5914, + [6361] = 5896, + [6362] = 5900, + [6363] = 5927, + [6364] = 6169, + [6365] = 5930, + [6366] = 5922, + [6367] = 5903, + [6368] = 5900, + [6369] = 5901, + [6370] = 5917, + [6371] = 5932, + [6372] = 5913, + [6373] = 5917, + [6374] = 5892, + [6375] = 5927, + [6376] = 6169, + [6377] = 5894, + [6378] = 5940, + [6379] = 5893, + [6380] = 5922, + [6381] = 5907, + [6382] = 5907, + [6383] = 5920, + [6384] = 5914, + [6385] = 5915, + [6386] = 5899, + [6387] = 5927, + [6388] = 6169, + [6389] = 5940, + [6390] = 5897, + [6391] = 5930, + [6392] = 5951, + [6393] = 5914, + [6394] = 5907, [6395] = 6395, - [6396] = 6395, - [6397] = 6395, - [6398] = 6395, - [6399] = 6392, - [6400] = 6395, - [6401] = 6392, - [6402] = 6395, - [6403] = 6395, - [6404] = 6395, - [6405] = 6395, - [6406] = 6392, - [6407] = 6395, - [6408] = 6393, - [6409] = 6395, - [6410] = 6395, - [6411] = 6393, - [6412] = 6395, - [6413] = 6393, - [6414] = 6392, - [6415] = 6393, - [6416] = 6395, - [6417] = 6395, - [6418] = 6393, - [6419] = 6395, - [6420] = 6393, - [6421] = 6395, - [6422] = 6395, - [6423] = 6393, - [6424] = 6395, - [6425] = 6395, - [6426] = 6395, - [6427] = 6392, - [6428] = 6395, - [6429] = 6393, - [6430] = 6430, - [6431] = 6393, - [6432] = 6392, - [6433] = 6393, - [6434] = 6392, - [6435] = 6393, - [6436] = 6395, - [6437] = 6393, - [6438] = 6392, - [6439] = 6395, - [6440] = 6392, - [6441] = 6392, - [6442] = 6392, - [6443] = 6392, - [6444] = 6393, - [6445] = 6392, - [6446] = 6393, - [6447] = 6393, - [6448] = 6393, - [6449] = 6393, - [6450] = 6395, - [6451] = 6392, - [6452] = 6393, - [6453] = 6395, - [6454] = 6392, - [6455] = 6392, - [6456] = 6393, - [6457] = 6392, - [6458] = 6392, - [6459] = 6393, - [6460] = 6393, - [6461] = 6392, - [6462] = 6395, - [6463] = 6392, - [6464] = 6393, - [6465] = 6392, - [6466] = 6393, - [6467] = 6392, - [6468] = 6392, - [6469] = 6393, - [6470] = 6392, - [6471] = 6393, - [6472] = 6393, - [6473] = 6392, - [6474] = 6474, - [6475] = 6474, - [6476] = 6474, - [6477] = 6477, - [6478] = 6474, - [6479] = 6474, - [6480] = 6477, - [6481] = 6477, - [6482] = 6474, - [6483] = 868, - [6484] = 6477, - [6485] = 6474, - [6486] = 6477, - [6487] = 6474, - [6488] = 6477, - [6489] = 6474, - [6490] = 6477, - [6491] = 6477, - [6492] = 6477, - [6493] = 6474, - [6494] = 6474, - [6495] = 6477, - [6496] = 6474, - [6497] = 6477, - [6498] = 6474, - [6499] = 6474, - [6500] = 6477, - [6501] = 6477, - [6502] = 6474, - [6503] = 6477, - [6504] = 6474, - [6505] = 6474, - [6506] = 6477, - [6507] = 6474, - [6508] = 6474, - [6509] = 869, - [6510] = 6477, - [6511] = 6477, - [6512] = 6474, - [6513] = 6474, - [6514] = 6477, - [6515] = 6474, - [6516] = 6477, - [6517] = 6474, - [6518] = 6477, - [6519] = 6474, - [6520] = 6477, - [6521] = 6477, - [6522] = 6477, - [6523] = 6477, - [6524] = 6474, - [6525] = 6477, - [6526] = 6477, - [6527] = 6474, - [6528] = 6477, - [6529] = 6474, - [6530] = 802, - [6531] = 799, - [6532] = 6532, - [6533] = 6532, - [6534] = 6532, - [6535] = 6532, - [6536] = 6532, - [6537] = 6532, - [6538] = 6532, - [6539] = 791, - [6540] = 6532, - [6541] = 6532, - [6542] = 6542, - [6543] = 837, - [6544] = 6542, - [6545] = 6542, - [6546] = 6546, - [6547] = 6542, - [6548] = 6546, - [6549] = 6546, - [6550] = 6542, - [6551] = 6542, - [6552] = 6542, - [6553] = 6546, - [6554] = 6546, - [6555] = 865, - [6556] = 6546, - [6557] = 6546, - [6558] = 6542, - [6559] = 6546, - [6560] = 6560, - [6561] = 6542, - [6562] = 6546, - [6563] = 6563, - [6564] = 6564, - [6565] = 6565, - [6566] = 6566, - [6567] = 6567, - [6568] = 6565, - [6569] = 6566, - [6570] = 6564, - [6571] = 6566, - [6572] = 6566, - [6573] = 6563, - [6574] = 6566, - [6575] = 6575, - [6576] = 6566, - [6577] = 6564, - [6578] = 6567, - [6579] = 6564, - [6580] = 6564, - [6581] = 6563, - [6582] = 6565, - [6583] = 6565, - [6584] = 6564, - [6585] = 6565, - [6586] = 6564, - [6587] = 901, - [6588] = 6566, - [6589] = 6567, - [6590] = 6565, - [6591] = 6567, - [6592] = 6567, - [6593] = 6564, - [6594] = 6564, - [6595] = 6567, - [6596] = 6567, - [6597] = 6563, - [6598] = 6563, - [6599] = 6567, - [6600] = 6567, - [6601] = 6565, - [6602] = 6564, - [6603] = 6566, + [6396] = 5907, + [6397] = 5922, + [6398] = 5927, + [6399] = 6169, + [6400] = 5930, + [6401] = 5915, + [6402] = 5899, + [6403] = 5920, + [6404] = 5900, + [6405] = 5901, + [6406] = 5917, + [6407] = 5895, + [6408] = 5913, + [6409] = 5892, + [6410] = 5914, + [6411] = 6411, + [6412] = 6411, + [6413] = 6411, + [6414] = 6414, + [6415] = 6411, + [6416] = 6411, + [6417] = 6411, + [6418] = 6411, + [6419] = 6414, + [6420] = 6414, + [6421] = 6411, + [6422] = 6414, + [6423] = 6411, + [6424] = 6411, + [6425] = 6414, + [6426] = 6411, + [6427] = 6411, + [6428] = 6411, + [6429] = 6414, + [6430] = 6414, + [6431] = 6411, + [6432] = 6414, + [6433] = 6414, + [6434] = 6411, + [6435] = 6411, + [6436] = 6411, + [6437] = 6411, + [6438] = 6411, + [6439] = 6414, + [6440] = 6414, + [6441] = 6411, + [6442] = 6411, + [6443] = 6411, + [6444] = 6411, + [6445] = 6411, + [6446] = 6411, + [6447] = 6414, + [6448] = 6414, + [6449] = 6414, + [6450] = 6411, + [6451] = 6411, + [6452] = 6452, + [6453] = 6452, + [6454] = 6454, + [6455] = 6454, + [6456] = 6454, + [6457] = 6452, + [6458] = 6458, + [6459] = 6458, + [6460] = 6454, + [6461] = 6452, + [6462] = 6458, + [6463] = 6454, + [6464] = 6452, + [6465] = 6452, + [6466] = 6454, + [6467] = 6452, + [6468] = 6452, + [6469] = 6454, + [6470] = 6452, + [6471] = 6454, + [6472] = 6458, + [6473] = 6452, + [6474] = 6454, + [6475] = 6454, + [6476] = 6454, + [6477] = 6452, + [6478] = 6458, + [6479] = 6479, + [6480] = 6454, + [6481] = 6454, + [6482] = 6452, + [6483] = 6458, + [6484] = 6454, + [6485] = 6458, + [6486] = 6458, + [6487] = 6454, + [6488] = 6458, + [6489] = 6452, + [6490] = 6458, + [6491] = 6454, + [6492] = 6452, + [6493] = 6454, + [6494] = 6458, + [6495] = 6458, + [6496] = 6452, + [6497] = 6454, + [6498] = 6454, + [6499] = 6454, + [6500] = 6458, + [6501] = 6452, + [6502] = 6458, + [6503] = 6452, + [6504] = 6454, + [6505] = 6452, + [6506] = 6458, + [6507] = 6454, + [6508] = 6452, + [6509] = 6454, + [6510] = 6458, + [6511] = 6458, + [6512] = 6452, + [6513] = 6458, + [6514] = 6458, + [6515] = 6454, + [6516] = 6458, + [6517] = 6458, + [6518] = 6454, + [6519] = 6458, + [6520] = 6458, + [6521] = 6452, + [6522] = 6454, + [6523] = 6452, + [6524] = 6458, + [6525] = 6452, + [6526] = 6454, + [6527] = 6452, + [6528] = 6452, + [6529] = 6458, + [6530] = 6452, + [6531] = 6458, + [6532] = 6458, + [6533] = 6452, + [6534] = 6534, + [6535] = 6535, + [6536] = 6535, + [6537] = 6534, + [6538] = 861, + [6539] = 6535, + [6540] = 6535, + [6541] = 6534, + [6542] = 6535, + [6543] = 6534, + [6544] = 6534, + [6545] = 6535, + [6546] = 6535, + [6547] = 6534, + [6548] = 6535, + [6549] = 858, + [6550] = 6535, + [6551] = 6534, + [6552] = 6535, + [6553] = 6534, + [6554] = 6534, + [6555] = 6535, + [6556] = 6535, + [6557] = 6535, + [6558] = 6535, + [6559] = 6534, + [6560] = 6534, + [6561] = 6534, + [6562] = 6535, + [6563] = 6535, + [6564] = 6534, + [6565] = 6535, + [6566] = 6535, + [6567] = 6534, + [6568] = 6534, + [6569] = 6534, + [6570] = 6534, + [6571] = 6535, + [6572] = 6535, + [6573] = 6535, + [6574] = 6534, + [6575] = 6534, + [6576] = 6534, + [6577] = 6534, + [6578] = 6534, + [6579] = 6534, + [6580] = 6534, + [6581] = 6534, + [6582] = 6535, + [6583] = 6535, + [6584] = 6535, + [6585] = 6535, + [6586] = 6534, + [6587] = 6534, + [6588] = 6535, + [6589] = 6535, + [6590] = 824, + [6591] = 819, + [6592] = 816, + [6593] = 6593, + [6594] = 6593, + [6595] = 6593, + [6596] = 6593, + [6597] = 6593, + [6598] = 6593, + [6599] = 6593, + [6600] = 6593, + [6601] = 6593, + [6602] = 6602, + [6603] = 6602, [6604] = 6604, - [6605] = 6564, - [6606] = 6564, - [6607] = 6566, - [6608] = 6566, - [6609] = 6567, - [6610] = 6567, - [6611] = 6566, - [6612] = 6564, - [6613] = 6565, - [6614] = 6564, - [6615] = 6563, - [6616] = 6565, - [6617] = 6565, - [6618] = 6566, - [6619] = 6565, - [6620] = 6566, - [6621] = 6567, - [6622] = 6563, - [6623] = 6567, - [6624] = 6566, - [6625] = 6567, - [6626] = 6565, - [6627] = 6627, + [6605] = 854, + [6606] = 6602, + [6607] = 6604, + [6608] = 6602, + [6609] = 6602, + [6610] = 6602, + [6611] = 6604, + [6612] = 6602, + [6613] = 6604, + [6614] = 6604, + [6615] = 6602, + [6616] = 6604, + [6617] = 6602, + [6618] = 6604, + [6619] = 6604, + [6620] = 6604, + [6621] = 6621, + [6622] = 856, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6623, + [6627] = 6624, [6628] = 6628, - [6629] = 6627, - [6630] = 6628, - [6631] = 6628, - [6632] = 6627, - [6633] = 6627, - [6634] = 6627, - [6635] = 6627, + [6629] = 6629, + [6630] = 6630, + [6631] = 6630, + [6632] = 6623, + [6633] = 6623, + [6634] = 6628, + [6635] = 6630, [6636] = 6628, - [6637] = 6628, - [6638] = 6627, - [6639] = 6628, + [6637] = 6624, + [6638] = 6623, + [6639] = 6630, [6640] = 6628, - [6641] = 6627, - [6642] = 6628, + [6641] = 6630, + [6642] = 6629, [6643] = 6628, - [6644] = 6628, - [6645] = 6628, - [6646] = 6627, - [6647] = 6628, - [6648] = 6627, - [6649] = 6628, - [6650] = 6627, - [6651] = 6628, + [6644] = 6624, + [6645] = 6630, + [6646] = 6629, + [6647] = 6630, + [6648] = 6628, + [6649] = 6624, + [6650] = 6624, + [6651] = 6623, [6652] = 6628, - [6653] = 6627, - [6654] = 6628, - [6655] = 6627, - [6656] = 6627, - [6657] = 6627, - [6658] = 6627, - [6659] = 860, - [6660] = 848, - [6661] = 6628, - [6662] = 6627, - [6663] = 6628, - [6664] = 6628, - [6665] = 6627, - [6666] = 6627, + [6653] = 6628, + [6654] = 6624, + [6655] = 6623, + [6656] = 6628, + [6657] = 6628, + [6658] = 6629, + [6659] = 6630, + [6660] = 6629, + [6661] = 6623, + [6662] = 884, + [6663] = 6624, + [6664] = 6629, + [6665] = 6629, + [6666] = 6628, [6667] = 6628, - [6668] = 6627, - [6669] = 6627, - [6670] = 6628, - [6671] = 6627, - [6672] = 6627, - [6673] = 6628, - [6674] = 6628, - [6675] = 6627, - [6676] = 6627, - [6677] = 6628, - [6678] = 6627, - [6679] = 6628, - [6680] = 6627, - [6681] = 6628, + [6668] = 6624, + [6669] = 6623, + [6670] = 6624, + [6671] = 6630, + [6672] = 6672, + [6673] = 6630, + [6674] = 6630, + [6675] = 6623, + [6676] = 6630, + [6677] = 6623, + [6678] = 6628, + [6679] = 6623, + [6680] = 6630, + [6681] = 6623, [6682] = 6628, - [6683] = 1136, - [6684] = 1128, - [6685] = 1101, - [6686] = 1172, + [6683] = 6623, + [6684] = 6630, + [6685] = 6624, + [6686] = 6624, [6687] = 6687, - [6688] = 6688, - [6689] = 6689, - [6690] = 6690, + [6688] = 830, + [6689] = 6687, + [6690] = 6687, [6691] = 6691, - [6692] = 6692, - [6693] = 6693, - [6694] = 6690, - [6695] = 6692, - [6696] = 6696, - [6697] = 6697, - [6698] = 6698, - [6699] = 6699, - [6700] = 6700, - [6701] = 6701, + [6692] = 6691, + [6693] = 6687, + [6694] = 6691, + [6695] = 6691, + [6696] = 6691, + [6697] = 6691, + [6698] = 6691, + [6699] = 6687, + [6700] = 6687, + [6701] = 6691, [6702] = 6691, - [6703] = 6703, - [6704] = 6696, + [6703] = 6687, + [6704] = 6687, [6705] = 6687, - [6706] = 6690, - [6707] = 6697, - [6708] = 6703, - [6709] = 6703, - [6710] = 6688, - [6711] = 6711, - [6712] = 6689, - [6713] = 6690, - [6714] = 6692, - [6715] = 6697, - [6716] = 6698, + [6706] = 6687, + [6707] = 6691, + [6708] = 6687, + [6709] = 6691, + [6710] = 6691, + [6711] = 6691, + [6712] = 6691, + [6713] = 6687, + [6714] = 6687, + [6715] = 6687, + [6716] = 6691, [6717] = 6687, - [6718] = 6699, - [6719] = 6700, - [6720] = 6701, - [6721] = 6688, - [6722] = 6691, - [6723] = 6711, - [6724] = 6696, - [6725] = 6696, - [6726] = 6691, - [6727] = 6701, - [6728] = 6688, + [6718] = 6687, + [6719] = 6691, + [6720] = 6691, + [6721] = 6691, + [6722] = 6687, + [6723] = 6691, + [6724] = 6691, + [6725] = 6687, + [6726] = 6687, + [6727] = 6691, + [6728] = 6687, [6729] = 6687, - [6730] = 6693, - [6731] = 6700, - [6732] = 6690, - [6733] = 6699, - [6734] = 6690, - [6735] = 6689, - [6736] = 6692, - [6737] = 6703, - [6738] = 6688, - [6739] = 6711, - [6740] = 6689, - [6741] = 6692, - [6742] = 6711, - [6743] = 6697, - [6744] = 6697, - [6745] = 6745, - [6746] = 6698, - [6747] = 6698, - [6748] = 6699, - [6749] = 6700, - [6750] = 6701, - [6751] = 6687, - [6752] = 6696, - [6753] = 6691, - [6754] = 6699, - [6755] = 6701, - [6756] = 6700, - [6757] = 6699, - [6758] = 6700, - [6759] = 6698, - [6760] = 6697, - [6761] = 6692, - [6762] = 6689, - [6763] = 6698, - [6764] = 6711, - [6765] = 6688, - [6766] = 6701, - [6767] = 6703, - [6768] = 6690, - [6769] = 6691, - [6770] = 6691, - [6771] = 6696, - [6772] = 6699, - [6773] = 6688, - [6774] = 6696, - [6775] = 6700, - [6776] = 6693, - [6777] = 6703, - [6778] = 6687, - [6779] = 6703, - [6780] = 6687, - [6781] = 6698, - [6782] = 6698, - [6783] = 6701, - [6784] = 6689, - [6785] = 6698, - [6786] = 6687, - [6787] = 6689, - [6788] = 6693, - [6789] = 6691, - [6790] = 6711, - [6791] = 6688, - [6792] = 6696, - [6793] = 6687, - [6794] = 6692, - [6795] = 6690, - [6796] = 6703, - [6797] = 6688, - [6798] = 6693, - [6799] = 6711, - [6800] = 6690, - [6801] = 6697, - [6802] = 6687, - [6803] = 6690, - [6804] = 6703, - [6805] = 6689, - [6806] = 6698, - [6807] = 6688, - [6808] = 6711, - [6809] = 6699, - [6810] = 6700, - [6811] = 6689, - [6812] = 6692, - [6813] = 6703, - [6814] = 6697, - [6815] = 6698, - [6816] = 6701, - [6817] = 6692, - [6818] = 6691, - [6819] = 6699, - [6820] = 6700, - [6821] = 6696, - [6822] = 6701, - [6823] = 6687, - [6824] = 6697, - [6825] = 6825, - [6826] = 6691, - [6827] = 6696, - [6828] = 6696, - [6829] = 6699, - [6830] = 6691, - [6831] = 6700, - [6832] = 6696, - [6833] = 6687, - [6834] = 6696, - [6835] = 6691, - [6836] = 6701, - [6837] = 6700, - [6838] = 6699, - [6839] = 6701, - [6840] = 6698, - [6841] = 6697, - [6842] = 6691, - [6843] = 6697, - [6844] = 6692, - [6845] = 6696, - [6846] = 6689, - [6847] = 6711, - [6848] = 6701, - [6849] = 6688, - [6850] = 6690, - [6851] = 6697, - [6852] = 6690, - [6853] = 6690, - [6854] = 6692, - [6855] = 6855, - [6856] = 6703, - [6857] = 6689, - [6858] = 6703, - [6859] = 6692, - [6860] = 6711, - [6861] = 6861, - [6862] = 6689, - [6863] = 6687, - [6864] = 6690, - [6865] = 6688, - [6866] = 6688, - [6867] = 6711, - [6868] = 6703, - [6869] = 6699, - [6870] = 6690, - [6871] = 6687, - [6872] = 6687, - [6873] = 6689, - [6874] = 6692, - [6875] = 6696, - [6876] = 6703, - [6877] = 6697, - [6878] = 6698, - [6879] = 6687, - [6880] = 6699, - [6881] = 6700, - [6882] = 6701, - [6883] = 6691, - [6884] = 6696, - [6885] = 6696, - [6886] = 6691, - [6887] = 6687, - [6888] = 6703, - [6889] = 6690, - [6890] = 6691, - [6891] = 6696, - [6892] = 6700, - [6893] = 6699, - [6894] = 6691, - [6895] = 6701, - [6896] = 6698, - [6897] = 6697, - [6898] = 6701, - [6899] = 6687, - [6900] = 6703, - [6901] = 6692, - [6902] = 6700, - [6903] = 6699, - [6904] = 6689, - [6905] = 6700, - [6906] = 6696, - [6907] = 6691, - [6908] = 6688, - [6909] = 6698, - [6910] = 6711, - [6911] = 6687, - [6912] = 6701, - [6913] = 6697, - [6914] = 6699, - [6915] = 6692, - [6916] = 6689, - [6917] = 6692, - [6918] = 6697, - [6919] = 6697, - [6920] = 6698, - [6921] = 6692, - [6922] = 6701, - [6923] = 6699, - [6924] = 6696, - [6925] = 6689, - [6926] = 6700, - [6927] = 6701, - [6928] = 6691, - [6929] = 6696, - [6930] = 6687, - [6931] = 6689, - [6932] = 6711, - [6933] = 6703, - [6934] = 6711, - [6935] = 6688, - [6936] = 6690, - [6937] = 6690, - [6938] = 6688, - [6939] = 6690, - [6940] = 6688, - [6941] = 6703, - [6942] = 6698, - [6943] = 6703, - [6944] = 6703, - [6945] = 6688, - [6946] = 6711, - [6947] = 6688, - [6948] = 6690, - [6949] = 6711, - [6950] = 6700, - [6951] = 6711, - [6952] = 6711, - [6953] = 6689, - [6954] = 6692, - [6955] = 6703, - [6956] = 6697, - [6957] = 6698, - [6958] = 6711, - [6959] = 6688, - [6960] = 6711, - [6961] = 6699, - [6962] = 6700, - [6963] = 6687, - [6964] = 6701, - [6965] = 6698, - [6966] = 6703, - [6967] = 6691, - [6968] = 6696, - [6969] = 6689, - [6970] = 6691, - [6971] = 6692, - [6972] = 6687, - [6973] = 6691, - [6974] = 6701, - [6975] = 6700, - [6976] = 6697, - [6977] = 6698, - [6978] = 6701, - [6979] = 6703, - [6980] = 6699, - [6981] = 6700, - [6982] = 6701, - [6983] = 6691, - [6984] = 6696, - [6985] = 6687, - [6986] = 6699, - [6987] = 6697, - [6988] = 6701, - [6989] = 6700, - [6990] = 6690, - [6991] = 6688, - [6992] = 6703, - [6993] = 6698, - [6994] = 6697, - [6995] = 6711, - [6996] = 6693, - [6997] = 6692, - [6998] = 6688, - [6999] = 6711, - [7000] = 6690, - [7001] = 6689, - [7002] = 6703, - [7003] = 6690, - [7004] = 6688, - [7005] = 6711, - [7006] = 6689, - [7007] = 6692, - [7008] = 6711, - [7009] = 6690, - [7010] = 6697, - [7011] = 6698, - [7012] = 6688, - [7013] = 6699, - [7014] = 6711, - [7015] = 6700, - [7016] = 6699, - [7017] = 6700, - [7018] = 6689, - [7019] = 6701, - [7020] = 6692, - [7021] = 6699, - [7022] = 6691, - [7023] = 6696, - [7024] = 6698, - [7025] = 6689, - [7026] = 6697, - [7027] = 6689, - [7028] = 6687, - [7029] = 6697, - [7030] = 6692, - [7031] = 6698, - [7032] = 6697, - [7033] = 6692, - [7034] = 6698, - [7035] = 6688, - [7036] = 6687, - [7037] = 6689, - [7038] = 6699, - [7039] = 6700, - [7040] = 6701, - [7041] = 6691, - [7042] = 6696, - [7043] = 6690, - [7044] = 6687, - [7045] = 6696, - [7046] = 6691, - [7047] = 6692, - [7048] = 6690, - [7049] = 6697, - [7050] = 6703, - [7051] = 6711, - [7052] = 6700, - [7053] = 6701, - [7054] = 6703, - [7055] = 6690, - [7056] = 6688, - [7057] = 6711, - [7058] = 6700, - [7059] = 6688, - [7060] = 6692, - [7061] = 6698, - [7062] = 6697, - [7063] = 6698, - [7064] = 6699, - [7065] = 6700, - [7066] = 6701, - [7067] = 6692, - [7068] = 6689, - [7069] = 6691, - [7070] = 6696, - [7071] = 6687, - [7072] = 6699, - [7073] = 6699, - [7074] = 6689, - [7075] = 7075, - [7076] = 7075, - [7077] = 7077, - [7078] = 7075, - [7079] = 802, - [7080] = 7075, - [7081] = 7081, - [7082] = 7082, - [7083] = 7082, - [7084] = 7082, - [7085] = 7081, - [7086] = 7081, - [7087] = 7075, - [7088] = 7082, - [7089] = 7082, - [7090] = 7082, - [7091] = 7082, - [7092] = 7082, - [7093] = 7081, - [7094] = 7082, - [7095] = 7075, - [7096] = 7081, - [7097] = 7075, - [7098] = 7098, - [7099] = 7081, - [7100] = 7081, - [7101] = 7081, - [7102] = 7075, - [7103] = 7081, - [7104] = 7104, - [7105] = 7075, - [7106] = 7081, - [7107] = 7082, - [7108] = 7082, - [7109] = 7075, - [7110] = 7081, - [7111] = 7075, - [7112] = 7082, - [7113] = 7081, - [7114] = 7075, - [7115] = 7081, - [7116] = 7075, - [7117] = 7081, - [7118] = 7075, - [7119] = 1209, - [7120] = 7082, - [7121] = 7081, - [7122] = 7075, - [7123] = 7081, - [7124] = 7075, - [7125] = 7082, - [7126] = 7081, - [7127] = 3728, - [7128] = 7081, - [7129] = 7075, - [7130] = 7075, - [7131] = 7081, - [7132] = 7075, - [7133] = 7081, - [7134] = 7082, - [7135] = 7081, - [7136] = 7081, - [7137] = 7081, - [7138] = 7075, - [7139] = 7075, - [7140] = 7081, - [7141] = 7081, - [7142] = 7075, - [7143] = 7081, - [7144] = 7075, - [7145] = 7075, - [7146] = 7075, - [7147] = 7147, - [7148] = 7075, - [7149] = 7081, - [7150] = 7075, - [7151] = 7151, - [7152] = 7152, - [7153] = 799, - [7154] = 791, - [7155] = 7155, - [7156] = 7156, - [7157] = 7157, - [7158] = 7158, - [7159] = 901, - [7160] = 832, - [7161] = 7157, - [7162] = 7162, + [6730] = 6687, + [6731] = 6687, + [6732] = 6691, + [6733] = 6691, + [6734] = 6691, + [6735] = 6687, + [6736] = 6687, + [6737] = 6691, + [6738] = 839, + [6739] = 6687, + [6740] = 6691, + [6741] = 6687, + [6742] = 6691, + [6743] = 1169, + [6744] = 1159, + [6745] = 1162, + [6746] = 1168, + [6747] = 6747, + [6748] = 6748, + [6749] = 6747, + [6750] = 6750, + [6751] = 6748, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 6755, + [6756] = 6756, + [6757] = 6756, + [6758] = 6758, + [6759] = 6754, + [6760] = 6760, + [6761] = 6761, + [6762] = 6758, + [6763] = 6753, + [6764] = 6764, + [6765] = 6765, + [6766] = 6750, + [6767] = 6760, + [6768] = 6768, + [6769] = 6769, + [6770] = 6747, + [6771] = 6748, + [6772] = 6752, + [6773] = 6753, + [6774] = 6752, + [6775] = 6754, + [6776] = 6755, + [6777] = 6756, + [6778] = 6760, + [6779] = 6748, + [6780] = 6758, + [6781] = 6769, + [6782] = 6747, + [6783] = 6769, + [6784] = 6752, + [6785] = 6750, + [6786] = 6755, + [6787] = 6768, + [6788] = 6758, + [6789] = 6765, + [6790] = 6764, + [6791] = 6758, + [6792] = 6792, + [6793] = 6764, + [6794] = 6765, + [6795] = 6768, + [6796] = 6769, + [6797] = 6768, + [6798] = 6750, + [6799] = 6760, + [6800] = 6769, + [6801] = 6760, + [6802] = 6768, + [6803] = 6747, + [6804] = 6758, + [6805] = 6747, + [6806] = 6748, + [6807] = 6752, + [6808] = 6748, + [6809] = 6756, + [6810] = 6753, + [6811] = 6754, + [6812] = 6755, + [6813] = 6756, + [6814] = 6755, + [6815] = 6754, + [6816] = 6750, + [6817] = 6752, + [6818] = 6753, + [6819] = 6760, + [6820] = 6752, + [6821] = 6748, + [6822] = 6769, + [6823] = 6765, + [6824] = 6764, + [6825] = 6747, + [6826] = 6765, + [6827] = 6758, + [6828] = 6768, + [6829] = 6769, + [6830] = 6750, + [6831] = 6753, + [6832] = 6760, + [6833] = 6754, + [6834] = 6750, + [6835] = 6835, + [6836] = 6760, + [6837] = 6765, + [6838] = 6764, + [6839] = 6764, + [6840] = 6758, + [6841] = 6765, + [6842] = 6747, + [6843] = 6765, + [6844] = 6844, + [6845] = 6755, + [6846] = 6748, + [6847] = 6764, + [6848] = 6764, + [6849] = 6758, + [6850] = 6756, + [6851] = 6851, + [6852] = 6756, + [6853] = 6760, + [6854] = 6755, + [6855] = 6754, + [6856] = 6753, + [6857] = 6752, + [6858] = 6750, + [6859] = 6760, + [6860] = 6752, + [6861] = 6768, + [6862] = 6747, + [6863] = 6750, + [6864] = 6765, + [6865] = 6769, + [6866] = 6764, + [6867] = 6768, + [6868] = 6768, + [6869] = 6768, + [6870] = 6769, + [6871] = 6755, + [6872] = 6747, + [6873] = 6753, + [6874] = 6769, + [6875] = 6754, + [6876] = 6748, + [6877] = 6755, + [6878] = 6760, + [6879] = 6750, + [6880] = 6754, + [6881] = 6752, + [6882] = 6764, + [6883] = 6753, + [6884] = 6754, + [6885] = 6765, + [6886] = 6753, + [6887] = 6752, + [6888] = 6748, + [6889] = 6747, + [6890] = 6765, + [6891] = 6768, + [6892] = 6756, + [6893] = 6758, + [6894] = 6764, + [6895] = 6755, + [6896] = 6764, + [6897] = 6765, + [6898] = 6769, + [6899] = 6760, + [6900] = 6750, + [6901] = 6760, + [6902] = 6750, + [6903] = 6769, + [6904] = 6768, + [6905] = 6765, + [6906] = 6756, + [6907] = 6764, + [6908] = 6747, + [6909] = 6748, + [6910] = 6758, + [6911] = 6752, + [6912] = 6756, + [6913] = 6755, + [6914] = 6755, + [6915] = 6753, + [6916] = 6754, + [6917] = 6754, + [6918] = 6753, + [6919] = 6755, + [6920] = 6754, + [6921] = 6758, + [6922] = 6753, + [6923] = 6752, + [6924] = 6752, + [6925] = 6756, + [6926] = 6748, + [6927] = 6758, + [6928] = 6769, + [6929] = 6768, + [6930] = 6747, + [6931] = 6747, + [6932] = 6748, + [6933] = 6768, + [6934] = 6769, + [6935] = 6760, + [6936] = 6755, + [6937] = 6755, + [6938] = 6756, + [6939] = 6748, + [6940] = 6747, + [6941] = 6752, + [6942] = 6750, + [6943] = 6754, + [6944] = 6754, + [6945] = 6756, + [6946] = 6768, + [6947] = 6769, + [6948] = 6753, + [6949] = 6750, + [6950] = 6753, + [6951] = 6750, + [6952] = 6758, + [6953] = 6764, + [6954] = 6760, + [6955] = 6851, + [6956] = 6758, + [6957] = 6765, + [6958] = 6760, + [6959] = 6765, + [6960] = 6764, + [6961] = 6754, + [6962] = 6750, + [6963] = 6764, + [6964] = 6758, + [6965] = 6756, + [6966] = 6752, + [6967] = 6748, + [6968] = 6747, + [6969] = 6765, + [6970] = 6750, + [6971] = 6756, + [6972] = 6755, + [6973] = 6769, + [6974] = 6764, + [6975] = 6758, + [6976] = 6756, + [6977] = 6768, + [6978] = 6754, + [6979] = 6769, + [6980] = 6753, + [6981] = 6755, + [6982] = 6851, + [6983] = 6760, + [6984] = 6752, + [6985] = 6760, + [6986] = 6769, + [6987] = 6750, + [6988] = 6758, + [6989] = 6748, + [6990] = 6755, + [6991] = 6747, + [6992] = 6768, + [6993] = 6754, + [6994] = 6769, + [6995] = 6753, + [6996] = 6760, + [6997] = 6851, + [6998] = 6750, + [6999] = 6752, + [7000] = 6765, + [7001] = 6768, + [7002] = 6764, + [7003] = 6765, + [7004] = 6758, + [7005] = 6764, + [7006] = 6748, + [7007] = 6756, + [7008] = 6755, + [7009] = 6754, + [7010] = 6753, + [7011] = 6752, + [7012] = 6748, + [7013] = 6747, + [7014] = 6747, + [7015] = 6748, + [7016] = 6748, + [7017] = 6747, + [7018] = 6768, + [7019] = 6752, + [7020] = 6769, + [7021] = 6753, + [7022] = 6760, + [7023] = 6754, + [7024] = 6750, + [7025] = 6765, + [7026] = 6768, + [7027] = 6758, + [7028] = 6756, + [7029] = 6755, + [7030] = 6758, + [7031] = 6768, + [7032] = 6764, + [7033] = 6758, + [7034] = 6764, + [7035] = 6765, + [7036] = 6756, + [7037] = 6769, + [7038] = 6747, + [7039] = 6756, + [7040] = 6755, + [7041] = 6755, + [7042] = 6750, + [7043] = 6760, + [7044] = 6851, + [7045] = 6769, + [7046] = 6768, + [7047] = 6754, + [7048] = 6753, + [7049] = 6754, + [7050] = 6747, + [7051] = 6748, + [7052] = 6747, + [7053] = 6752, + [7054] = 6752, + [7055] = 6748, + [7056] = 6753, + [7057] = 6754, + [7058] = 6753, + [7059] = 6760, + [7060] = 6748, + [7061] = 6755, + [7062] = 6752, + [7063] = 6755, + [7064] = 6753, + [7065] = 6752, + [7066] = 6753, + [7067] = 6754, + [7068] = 6753, + [7069] = 6754, + [7070] = 6752, + [7071] = 6748, + [7072] = 6747, + [7073] = 6750, + [7074] = 6768, + [7075] = 6769, + [7076] = 6755, + [7077] = 6768, + [7078] = 6748, + [7079] = 6756, + [7080] = 6747, + [7081] = 6758, + [7082] = 6768, + [7083] = 6769, + [7084] = 6760, + [7085] = 6750, + [7086] = 6760, + [7087] = 6764, + [7088] = 6765, + [7089] = 6750, + [7090] = 6756, + [7091] = 6765, + [7092] = 6764, + [7093] = 6758, + [7094] = 6765, + [7095] = 6750, + [7096] = 6760, + [7097] = 6756, + [7098] = 6765, + [7099] = 6769, + [7100] = 6768, + [7101] = 6756, + [7102] = 6755, + [7103] = 6764, + [7104] = 6754, + [7105] = 6747, + [7106] = 6748, + [7107] = 6756, + [7108] = 6752, + [7109] = 6753, + [7110] = 6756, + [7111] = 6753, + [7112] = 6754, + [7113] = 6752, + [7114] = 6748, + [7115] = 6747, + [7116] = 6765, + [7117] = 6755, + [7118] = 6768, + [7119] = 6764, + [7120] = 6769, + [7121] = 6758, + [7122] = 6758, + [7123] = 6769, + [7124] = 6760, + [7125] = 6764, + [7126] = 6750, + [7127] = 6756, + [7128] = 6765, + [7129] = 6851, + [7130] = 6765, + [7131] = 6764, + [7132] = 6750, + [7133] = 6760, + [7134] = 6758, + [7135] = 7135, + [7136] = 7136, + [7137] = 7137, + [7138] = 7138, + [7139] = 7139, + [7140] = 7136, + [7141] = 7136, + [7142] = 7137, + [7143] = 7137, + [7144] = 7135, + [7145] = 7137, + [7146] = 7137, + [7147] = 7136, + [7148] = 7137, + [7149] = 7135, + [7150] = 824, + [7151] = 7136, + [7152] = 7136, + [7153] = 7137, + [7154] = 7135, + [7155] = 7137, + [7156] = 7135, + [7157] = 7136, + [7158] = 7136, + [7159] = 7137, + [7160] = 7135, + [7161] = 7136, + [7162] = 7136, [7163] = 7163, - [7164] = 7164, - [7165] = 7163, - [7166] = 7166, - [7167] = 802, - [7168] = 7163, - [7169] = 7164, - [7170] = 4027, - [7171] = 3728, - [7172] = 7172, - [7173] = 7166, - [7174] = 3728, - [7175] = 7166, - [7176] = 7163, - [7177] = 7172, - [7178] = 7164, - [7179] = 7166, - [7180] = 7163, - [7181] = 7164, - [7182] = 7172, - [7183] = 7172, - [7184] = 7163, - [7185] = 7163, - [7186] = 7164, - [7187] = 7172, - [7188] = 7172, - [7189] = 7166, - [7190] = 7166, - [7191] = 7191, - [7192] = 7164, - [7193] = 7163, - [7194] = 7163, - [7195] = 837, - [7196] = 865, - [7197] = 869, - [7198] = 7166, - [7199] = 7164, - [7200] = 868, - [7201] = 7201, - [7202] = 7164, - [7203] = 7166, - [7204] = 7163, - [7205] = 7172, - [7206] = 7172, - [7207] = 7166, - [7208] = 7164, - [7209] = 7164, - [7210] = 7166, - [7211] = 7163, - [7212] = 7172, - [7213] = 7172, - [7214] = 7172, - [7215] = 7166, - [7216] = 7164, - [7217] = 7163, - [7218] = 7172, + [7164] = 7137, + [7165] = 7137, + [7166] = 7136, + [7167] = 7137, + [7168] = 7136, + [7169] = 7136, + [7170] = 7137, + [7171] = 7137, + [7172] = 7136, + [7173] = 7136, + [7174] = 7137, + [7175] = 7136, + [7176] = 7137, + [7177] = 7136, + [7178] = 7137, + [7179] = 7136, + [7180] = 7137, + [7181] = 7136, + [7182] = 1170, + [7183] = 7135, + [7184] = 7135, + [7185] = 7137, + [7186] = 3568, + [7187] = 7135, + [7188] = 7137, + [7189] = 7136, + [7190] = 7137, + [7191] = 7137, + [7192] = 7137, + [7193] = 7135, + [7194] = 7136, + [7195] = 7135, + [7196] = 7135, + [7197] = 7135, + [7198] = 7136, + [7199] = 7137, + [7200] = 7136, + [7201] = 7136, + [7202] = 7136, + [7203] = 7137, + [7204] = 7137, + [7205] = 7137, + [7206] = 7135, + [7207] = 7136, + [7208] = 7135, + [7209] = 7209, + [7210] = 7136, + [7211] = 7211, + [7212] = 7212, + [7213] = 7213, + [7214] = 7214, + [7215] = 823, + [7216] = 7216, + [7217] = 7213, + [7218] = 821, [7219] = 7219, - [7220] = 4089, - [7221] = 7221, - [7222] = 7221, + [7220] = 884, + [7221] = 819, + [7222] = 816, [7223] = 7223, - [7224] = 7223, - [7225] = 7223, - [7226] = 7221, - [7227] = 7221, - [7228] = 7223, - [7229] = 7229, - [7230] = 7229, - [7231] = 7231, - [7232] = 7232, - [7233] = 7229, - [7234] = 4042, - [7235] = 7232, - [7236] = 7221, - [7237] = 7221, - [7238] = 7223, - [7239] = 802, - [7240] = 7229, - [7241] = 7221, - [7242] = 4027, - [7243] = 1172, - [7244] = 4097, - [7245] = 1209, - [7246] = 4031, - [7247] = 7231, - [7248] = 7232, - [7249] = 4077, - [7250] = 7221, - [7251] = 7232, - [7252] = 3728, - [7253] = 791, - [7254] = 7221, - [7255] = 1101, - [7256] = 901, - [7257] = 7257, - [7258] = 7257, - [7259] = 1136, - [7260] = 799, - [7261] = 7231, - [7262] = 1128, - [7263] = 7257, - [7264] = 7221, - [7265] = 7223, - [7266] = 7232, - [7267] = 7229, - [7268] = 7232, - [7269] = 7257, - [7270] = 7231, - [7271] = 7231, - [7272] = 7257, - [7273] = 7232, - [7274] = 7274, - [7275] = 7231, - [7276] = 7232, - [7277] = 7232, - [7278] = 7257, - [7279] = 7229, - [7280] = 7223, + [7224] = 7224, + [7225] = 7225, + [7226] = 7226, + [7227] = 7227, + [7228] = 3568, + [7229] = 3724, + [7230] = 7226, + [7231] = 7224, + [7232] = 7226, + [7233] = 7226, + [7234] = 7227, + [7235] = 7224, + [7236] = 7227, + [7237] = 7226, + [7238] = 7226, + [7239] = 7227, + [7240] = 7225, + [7241] = 7224, + [7242] = 7227, + [7243] = 7227, + [7244] = 7225, + [7245] = 7225, + [7246] = 861, + [7247] = 854, + [7248] = 7227, + [7249] = 7225, + [7250] = 3568, + [7251] = 7227, + [7252] = 7224, + [7253] = 7226, + [7254] = 7224, + [7255] = 7226, + [7256] = 7224, + [7257] = 7225, + [7258] = 7224, + [7259] = 7226, + [7260] = 7260, + [7261] = 7225, + [7262] = 7226, + [7263] = 856, + [7264] = 7227, + [7265] = 7224, + [7266] = 824, + [7267] = 7225, + [7268] = 7224, + [7269] = 7225, + [7270] = 7224, + [7271] = 7224, + [7272] = 7227, + [7273] = 7273, + [7274] = 7226, + [7275] = 7227, + [7276] = 7225, + [7277] = 7225, + [7278] = 7225, + [7279] = 858, + [7280] = 7280, [7281] = 7281, - [7282] = 7221, - [7283] = 7229, - [7284] = 7232, - [7285] = 7232, - [7286] = 7229, - [7287] = 7223, - [7288] = 7223, - [7289] = 832, - [7290] = 7221, - [7291] = 7223, - [7292] = 7223, - [7293] = 7232, - [7294] = 7229, - [7295] = 7229, - [7296] = 7229, - [7297] = 7297, - [7298] = 7298, - [7299] = 7299, - [7300] = 7300, - [7301] = 7301, - [7302] = 7302, - [7303] = 7301, - [7304] = 7299, + [7282] = 7280, + [7283] = 7283, + [7284] = 3883, + [7285] = 7280, + [7286] = 7286, + [7287] = 7280, + [7288] = 7283, + [7289] = 7286, + [7290] = 1169, + [7291] = 7291, + [7292] = 7281, + [7293] = 7281, + [7294] = 7286, + [7295] = 7291, + [7296] = 7281, + [7297] = 816, + [7298] = 7291, + [7299] = 7286, + [7300] = 7286, + [7301] = 7281, + [7302] = 7283, + [7303] = 7291, + [7304] = 7281, [7305] = 7305, - [7306] = 7300, - [7307] = 7307, - [7308] = 7300, - [7309] = 7305, - [7310] = 7310, - [7311] = 7307, - [7312] = 7312, - [7313] = 7299, - [7314] = 7314, - [7315] = 7298, - [7316] = 7314, - [7317] = 7307, - [7318] = 7305, - [7319] = 7297, - [7320] = 7305, - [7321] = 7314, - [7322] = 7300, - [7323] = 7298, - [7324] = 7300, - [7325] = 7314, - [7326] = 7312, - [7327] = 7305, - [7328] = 7307, - [7329] = 7307, - [7330] = 7305, - [7331] = 7312, - [7332] = 7312, - [7333] = 7310, - [7334] = 7298, - [7335] = 7297, - [7336] = 7310, - [7337] = 7310, - [7338] = 7338, - [7339] = 7307, - [7340] = 7300, - [7341] = 7314, - [7342] = 7298, - [7343] = 7301, - [7344] = 7297, - [7345] = 7305, - [7346] = 7298, - [7347] = 7299, - [7348] = 7312, - [7349] = 7349, - [7350] = 7307, - [7351] = 7310, - [7352] = 7300, - [7353] = 7300, - [7354] = 7307, - [7355] = 7297, - [7356] = 7310, - [7357] = 7298, + [7306] = 7291, + [7307] = 3724, + [7308] = 7305, + [7309] = 7280, + [7310] = 7280, + [7311] = 7311, + [7312] = 7291, + [7313] = 7291, + [7314] = 823, + [7315] = 1159, + [7316] = 7291, + [7317] = 7286, + [7318] = 7280, + [7319] = 7305, + [7320] = 7291, + [7321] = 1162, + [7322] = 3889, + [7323] = 7280, + [7324] = 7291, + [7325] = 7325, + [7326] = 3979, + [7327] = 3975, + [7328] = 7286, + [7329] = 7286, + [7330] = 7280, + [7331] = 7280, + [7332] = 7281, + [7333] = 884, + [7334] = 7281, + [7335] = 7286, + [7336] = 1168, + [7337] = 7283, + [7338] = 819, + [7339] = 7305, + [7340] = 3568, + [7341] = 3871, + [7342] = 7291, + [7343] = 7283, + [7344] = 7344, + [7345] = 7281, + [7346] = 7286, + [7347] = 7281, + [7348] = 7305, + [7349] = 7286, + [7350] = 1170, + [7351] = 7283, + [7352] = 7281, + [7353] = 821, + [7354] = 7280, + [7355] = 7286, + [7356] = 7281, + [7357] = 824, [7358] = 7305, - [7359] = 7297, - [7360] = 7314, - [7361] = 7297, - [7362] = 7301, - [7363] = 7314, - [7364] = 7312, - [7365] = 7301, - [7366] = 7314, - [7367] = 7298, - [7368] = 7312, - [7369] = 7299, - [7370] = 832, - [7371] = 7305, - [7372] = 7314, - [7373] = 7297, - [7374] = 7310, - [7375] = 869, - [7376] = 7307, - [7377] = 7297, - [7378] = 7307, - [7379] = 7305, - [7380] = 7299, - [7381] = 7297, - [7382] = 7314, - [7383] = 7298, - [7384] = 7298, - [7385] = 7310, - [7386] = 7314, - [7387] = 7300, - [7388] = 7297, - [7389] = 7307, - [7390] = 7297, - [7391] = 7314, - [7392] = 7300, - [7393] = 7299, - [7394] = 7298, - [7395] = 7314, - [7396] = 7305, - [7397] = 7305, - [7398] = 7298, - [7399] = 7297, - [7400] = 7297, - [7401] = 7305, - [7402] = 868, - [7403] = 7301, - [7404] = 7404, - [7405] = 7300, - [7406] = 7297, - [7407] = 7300, - [7408] = 7404, - [7409] = 865, - [7410] = 7300, - [7411] = 7301, - [7412] = 7307, - [7413] = 7404, - [7414] = 837, - [7415] = 7314, - [7416] = 7404, - [7417] = 7299, - [7418] = 7418, - [7419] = 7310, - [7420] = 7307, - [7421] = 7298, - [7422] = 7312, - [7423] = 7404, - [7424] = 7404, - [7425] = 7307, - [7426] = 7307, - [7427] = 799, - [7428] = 901, - [7429] = 7298, - [7430] = 7298, - [7431] = 7301, - [7432] = 7298, - [7433] = 7404, - [7434] = 7297, - [7435] = 7301, - [7436] = 7299, - [7437] = 7300, - [7438] = 7307, - [7439] = 7305, - [7440] = 7298, - [7441] = 7300, - [7442] = 7299, - [7443] = 7301, - [7444] = 7310, - [7445] = 7404, - [7446] = 7300, - [7447] = 7314, - [7448] = 7314, - [7449] = 7305, - [7450] = 7299, - [7451] = 7300, - [7452] = 7298, - [7453] = 7314, - [7454] = 7305, - [7455] = 7298, - [7456] = 7301, - [7457] = 7404, - [7458] = 7305, - [7459] = 7300, - [7460] = 7307, - [7461] = 7307, - [7462] = 7404, - [7463] = 7299, - [7464] = 7300, - [7465] = 7404, - [7466] = 7312, - [7467] = 7300, - [7468] = 7314, - [7469] = 7307, - [7470] = 7310, - [7471] = 7305, - [7472] = 7472, - [7473] = 7305, - [7474] = 7297, - [7475] = 7305, - [7476] = 7305, - [7477] = 7301, - [7478] = 7307, - [7479] = 7300, - [7480] = 7297, - [7481] = 7314, - [7482] = 7300, - [7483] = 7314, - [7484] = 7305, - [7485] = 7298, - [7486] = 7404, - [7487] = 7310, - [7488] = 7307, - [7489] = 7297, - [7490] = 7297, - [7491] = 7314, - [7492] = 791, - [7493] = 7297, - [7494] = 7300, - [7495] = 7310, - [7496] = 7298, - [7497] = 7307, - [7498] = 7314, - [7499] = 7298, - [7500] = 7297, - [7501] = 7301, - [7502] = 7307, - [7503] = 7305, - [7504] = 7305, - [7505] = 7299, - [7506] = 7298, - [7507] = 4027, - [7508] = 7301, - [7509] = 7300, - [7510] = 7314, - [7511] = 7314, - [7512] = 7305, - [7513] = 7297, - [7514] = 7307, - [7515] = 7305, - [7516] = 7297, - [7517] = 7307, - [7518] = 7404, - [7519] = 7314, - [7520] = 7300, - [7521] = 7299, - [7522] = 7298, - [7523] = 7297, - [7524] = 7314, - [7525] = 7297, - [7526] = 7305, - [7527] = 7312, - [7528] = 7298, - [7529] = 7307, - [7530] = 7307, - [7531] = 7310, - [7532] = 7298, - [7533] = 7314, - [7534] = 7300, - [7535] = 7404, - [7536] = 7298, - [7537] = 7297, - [7538] = 7300, - [7539] = 7312, - [7540] = 7540, - [7541] = 7541, - [7542] = 7542, - [7543] = 4027, - [7544] = 7544, - [7545] = 7542, - [7546] = 7546, - [7547] = 7542, - [7548] = 7548, - [7549] = 7546, - [7550] = 7550, - [7551] = 7546, - [7552] = 7544, - [7553] = 7553, - [7554] = 7542, - [7555] = 915, - [7556] = 7544, - [7557] = 7548, - [7558] = 7542, - [7559] = 7541, - [7560] = 7560, - [7561] = 869, - [7562] = 7560, - [7563] = 7560, - [7564] = 7540, - [7565] = 7544, - [7566] = 7560, - [7567] = 7542, - [7568] = 7544, - [7569] = 7540, - [7570] = 7550, - [7571] = 7548, - [7572] = 7540, - [7573] = 7542, - [7574] = 7540, - [7575] = 7540, - [7576] = 7550, - [7577] = 868, - [7578] = 7544, - [7579] = 7540, - [7580] = 7544, - [7581] = 7548, - [7582] = 7541, - [7583] = 7546, - [7584] = 7560, - [7585] = 7544, - [7586] = 7550, - [7587] = 7560, - [7588] = 7540, - [7589] = 7541, - [7590] = 7541, - [7591] = 7540, - [7592] = 7541, - [7593] = 7550, - [7594] = 7540, - [7595] = 7550, - [7596] = 7553, - [7597] = 7550, - [7598] = 7540, - [7599] = 7550, - [7600] = 7540, - [7601] = 7550, - [7602] = 7540, - [7603] = 7550, - [7604] = 7560, - [7605] = 7542, - [7606] = 7540, - [7607] = 914, - [7608] = 7544, - [7609] = 7541, - [7610] = 7553, - [7611] = 7548, - [7612] = 7548, - [7613] = 7540, - [7614] = 7560, - [7615] = 7550, - [7616] = 7550, - [7617] = 7550, - [7618] = 7541, - [7619] = 7546, - [7620] = 7544, - [7621] = 7548, - [7622] = 7550, - [7623] = 7541, - [7624] = 7541, - [7625] = 7560, - [7626] = 7544, - [7627] = 7548, - [7628] = 7550, - [7629] = 7550, - [7630] = 7550, - [7631] = 7560, - [7632] = 7540, - [7633] = 865, - [7634] = 7540, - [7635] = 7546, - [7636] = 7540, - [7637] = 7548, - [7638] = 7548, - [7639] = 7553, - [7640] = 7540, - [7641] = 7560, - [7642] = 7560, - [7643] = 7544, - [7644] = 7548, - [7645] = 7544, - [7646] = 7550, - [7647] = 7550, - [7648] = 7546, - [7649] = 7540, - [7650] = 7541, - [7651] = 7560, - [7652] = 7550, - [7653] = 7540, - [7654] = 7560, - [7655] = 7540, - [7656] = 7550, - [7657] = 7550, - [7658] = 7546, - [7659] = 7540, - [7660] = 7540, - [7661] = 7540, - [7662] = 7418, - [7663] = 7550, - [7664] = 7540, - [7665] = 7550, - [7666] = 7544, - [7667] = 7548, - [7668] = 7541, - [7669] = 7542, - [7670] = 7550, - [7671] = 7560, - [7672] = 7541, - [7673] = 7546, - [7674] = 7542, - [7675] = 7540, - [7676] = 7540, - [7677] = 7548, - [7678] = 7544, - [7679] = 7542, - [7680] = 7550, - [7681] = 7550, - [7682] = 7540, - [7683] = 7544, - [7684] = 7541, - [7685] = 7544, - [7686] = 7542, - [7687] = 7560, - [7688] = 7550, - [7689] = 7542, - [7690] = 7541, - [7691] = 7541, - [7692] = 7550, - [7693] = 7540, - [7694] = 7560, - [7695] = 7550, - [7696] = 7542, - [7697] = 7544, - [7698] = 7540, - [7699] = 7544, - [7700] = 7550, - [7701] = 7548, - [7702] = 7544, - [7703] = 7542, - [7704] = 7542, - [7705] = 7544, - [7706] = 7560, - [7707] = 7560, - [7708] = 7560, - [7709] = 7550, - [7710] = 7548, - [7711] = 7540, - [7712] = 7548, - [7713] = 7544, - [7714] = 7542, - [7715] = 7542, - [7716] = 7544, - [7717] = 7542, - [7718] = 7546, - [7719] = 7560, - [7720] = 7548, - [7721] = 7542, - [7722] = 7548, - [7723] = 7546, - [7724] = 7541, - [7725] = 7546, - [7726] = 7540, - [7727] = 7544, - [7728] = 7546, - [7729] = 7550, - [7730] = 7560, - [7731] = 7540, - [7732] = 7560, - [7733] = 7541, - [7734] = 4097, - [7735] = 7548, - [7736] = 7541, - [7737] = 7548, - [7738] = 7550, - [7739] = 4089, - [7740] = 4042, - [7741] = 7542, - [7742] = 7544, - [7743] = 7542, - [7744] = 7546, - [7745] = 4031, - [7746] = 7542, - [7747] = 7560, - [7748] = 7560, - [7749] = 7548, - [7750] = 7541, - [7751] = 7542, - [7752] = 7548, - [7753] = 7540, - [7754] = 7541, - [7755] = 7542, - [7756] = 7550, - [7757] = 7548, - [7758] = 4077, - [7759] = 7550, - [7760] = 7548, - [7761] = 7548, - [7762] = 7540, - [7763] = 7541, - [7764] = 7560, - [7765] = 837, - [7766] = 7548, - [7767] = 7541, - [7768] = 7560, - [7769] = 7544, - [7770] = 7544, - [7771] = 7542, - [7772] = 7553, - [7773] = 7548, - [7774] = 7553, - [7775] = 7542, - [7776] = 7541, - [7777] = 1172, - [7778] = 1209, - [7779] = 1209, - [7780] = 1172, - [7781] = 4097, - [7782] = 4089, - [7783] = 4097, - [7784] = 1101, - [7785] = 4042, - [7786] = 4077, - [7787] = 7787, - [7788] = 7788, - [7789] = 1128, - [7790] = 4031, - [7791] = 4042, - [7792] = 1136, - [7793] = 901, - [7794] = 1128, - [7795] = 4089, - [7796] = 4031, - [7797] = 5671, - [7798] = 1101, - [7799] = 791, - [7800] = 4077, - [7801] = 1136, - [7802] = 7802, - [7803] = 7349, - [7804] = 7804, - [7805] = 7805, - [7806] = 7806, - [7807] = 7804, - [7808] = 7808, - [7809] = 7809, - [7810] = 7810, - [7811] = 7811, - [7812] = 7811, - [7813] = 7813, - [7814] = 7808, - [7815] = 7813, - [7816] = 7816, - [7817] = 7813, - [7818] = 7806, - [7819] = 7810, - [7820] = 7804, - [7821] = 7821, - [7822] = 7808, - [7823] = 7821, - [7824] = 7816, - [7825] = 7808, - [7826] = 7811, - [7827] = 7827, - [7828] = 7821, - [7829] = 7821, - [7830] = 7816, - [7831] = 7816, - [7832] = 7804, - [7833] = 7821, - [7834] = 7813, - [7835] = 7806, - [7836] = 7810, - [7837] = 4027, - [7838] = 7806, - [7839] = 7816, - [7840] = 7811, - [7841] = 7806, - [7842] = 7808, - [7843] = 7813, - [7844] = 7816, - [7845] = 7821, - [7846] = 7804, - [7847] = 7811, - [7848] = 7804, - [7849] = 7808, - [7850] = 7811, - [7851] = 7816, - [7852] = 7816, - [7853] = 7821, - [7854] = 7811, - [7855] = 7808, - [7856] = 7804, - [7857] = 7804, - [7858] = 7804, - [7859] = 7804, - [7860] = 7810, - [7861] = 7816, - [7862] = 7808, - [7863] = 791, - [7864] = 7808, - [7865] = 7816, - [7866] = 7816, - [7867] = 7811, - [7868] = 7821, - [7869] = 7808, - [7870] = 7804, + [7359] = 7359, + [7360] = 856, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, + [7365] = 7363, + [7366] = 7364, + [7367] = 7367, + [7368] = 7361, + [7369] = 7362, + [7370] = 7362, + [7371] = 7359, + [7372] = 7372, + [7373] = 7361, + [7374] = 7374, + [7375] = 819, + [7376] = 7364, + [7377] = 7377, + [7378] = 7367, + [7379] = 7377, + [7380] = 7380, + [7381] = 7381, + [7382] = 7363, + [7383] = 7380, + [7384] = 7363, + [7385] = 7381, + [7386] = 7361, + [7387] = 7364, + [7388] = 823, + [7389] = 7367, + [7390] = 7361, + [7391] = 7367, + [7392] = 7372, + [7393] = 7362, + [7394] = 7377, + [7395] = 7359, + [7396] = 7367, + [7397] = 7367, + [7398] = 7372, + [7399] = 7363, + [7400] = 7367, + [7401] = 7359, + [7402] = 7364, + [7403] = 821, + [7404] = 7367, + [7405] = 7380, + [7406] = 7372, + [7407] = 7367, + [7408] = 7381, + [7409] = 7363, + [7410] = 7363, + [7411] = 7372, + [7412] = 7367, + [7413] = 7377, + [7414] = 7363, + [7415] = 7363, + [7416] = 7361, + [7417] = 7367, + [7418] = 7372, + [7419] = 7381, + [7420] = 7364, + [7421] = 7380, + [7422] = 7367, + [7423] = 7361, + [7424] = 7381, + [7425] = 7374, + [7426] = 7359, + [7427] = 7374, + [7428] = 7363, + [7429] = 7381, + [7430] = 7363, + [7431] = 7361, + [7432] = 7359, + [7433] = 7364, + [7434] = 7362, + [7435] = 7377, + [7436] = 7364, + [7437] = 7372, + [7438] = 7381, + [7439] = 7363, + [7440] = 7367, + [7441] = 7380, + [7442] = 7380, + [7443] = 7377, + [7444] = 7361, + [7445] = 7374, + [7446] = 7359, + [7447] = 7447, + [7448] = 7377, + [7449] = 7363, + [7450] = 7377, + [7451] = 7359, + [7452] = 7364, + [7453] = 7381, + [7454] = 7362, + [7455] = 7380, + [7456] = 7363, + [7457] = 7363, + [7458] = 7374, + [7459] = 7372, + [7460] = 7460, + [7461] = 7361, + [7462] = 7380, + [7463] = 7377, + [7464] = 7372, + [7465] = 7362, + [7466] = 7374, + [7467] = 7367, + [7468] = 7372, + [7469] = 7367, + [7470] = 7367, + [7471] = 854, + [7472] = 7361, + [7473] = 7363, + [7474] = 7359, + [7475] = 7362, + [7476] = 7377, + [7477] = 7359, + [7478] = 7372, + [7479] = 7363, + [7480] = 7380, + [7481] = 7374, + [7482] = 7482, + [7483] = 7363, + [7484] = 7380, + [7485] = 7359, + [7486] = 7364, + [7487] = 7372, + [7488] = 7361, + [7489] = 7374, + [7490] = 7361, + [7491] = 7361, + [7492] = 7362, + [7493] = 7367, + [7494] = 7380, + [7495] = 7364, + [7496] = 7364, + [7497] = 7381, + [7498] = 7361, + [7499] = 7359, + [7500] = 7361, + [7501] = 858, + [7502] = 7380, + [7503] = 7363, + [7504] = 7363, + [7505] = 7363, + [7506] = 861, + [7507] = 7377, + [7508] = 7377, + [7509] = 7367, + [7510] = 7361, + [7511] = 7372, + [7512] = 7363, + [7513] = 7377, + [7514] = 7359, + [7515] = 7374, + [7516] = 7367, + [7517] = 7380, + [7518] = 7372, + [7519] = 7362, + [7520] = 7372, + [7521] = 7377, + [7522] = 7372, + [7523] = 7377, + [7524] = 7367, + [7525] = 7372, + [7526] = 7367, + [7527] = 7361, + [7528] = 7380, + [7529] = 7367, + [7530] = 7372, + [7531] = 7377, + [7532] = 7380, + [7533] = 7361, + [7534] = 3724, + [7535] = 7361, + [7536] = 7380, + [7537] = 7374, + [7538] = 7363, + [7539] = 7377, + [7540] = 7377, + [7541] = 7367, + [7542] = 7380, + [7543] = 7380, + [7544] = 7377, + [7545] = 7363, + [7546] = 7367, + [7547] = 7377, + [7548] = 7380, + [7549] = 7549, + [7550] = 7372, + [7551] = 7380, + [7552] = 7374, + [7553] = 7367, + [7554] = 7377, + [7555] = 7361, + [7556] = 7372, + [7557] = 7372, + [7558] = 7558, + [7559] = 7380, + [7560] = 7372, + [7561] = 7372, + [7562] = 7359, + [7563] = 7377, + [7564] = 7361, + [7565] = 7380, + [7566] = 884, + [7567] = 816, + [7568] = 7361, + [7569] = 7374, + [7570] = 7381, + [7571] = 7372, + [7572] = 7362, + [7573] = 7377, + [7574] = 7364, + [7575] = 7363, + [7576] = 7362, + [7577] = 7363, + [7578] = 7380, + [7579] = 7377, + [7580] = 7377, + [7581] = 7372, + [7582] = 7362, + [7583] = 7367, + [7584] = 7372, + [7585] = 7364, + [7586] = 7372, + [7587] = 7367, + [7588] = 7374, + [7589] = 7380, + [7590] = 7374, + [7591] = 7377, + [7592] = 7381, + [7593] = 7361, + [7594] = 7361, + [7595] = 7361, + [7596] = 7380, + [7597] = 7362, + [7598] = 7361, + [7599] = 7380, + [7600] = 7363, + [7601] = 7377, + [7602] = 7380, + [7603] = 7603, + [7604] = 7604, + [7605] = 7605, + [7606] = 7606, + [7607] = 3871, + [7608] = 3979, + [7609] = 7604, + [7610] = 7610, + [7611] = 7611, + [7612] = 3889, + [7613] = 7549, + [7614] = 7610, + [7615] = 7615, + [7616] = 7610, + [7617] = 7617, + [7618] = 7610, + [7619] = 7603, + [7620] = 7611, + [7621] = 7617, + [7622] = 7610, + [7623] = 7610, + [7624] = 7611, + [7625] = 7604, + [7626] = 7610, + [7627] = 7604, + [7628] = 3883, + [7629] = 7611, + [7630] = 7611, + [7631] = 7610, + [7632] = 7606, + [7633] = 7603, + [7634] = 7617, + [7635] = 3975, + [7636] = 7610, + [7637] = 7606, + [7638] = 7606, + [7639] = 7639, + [7640] = 7603, + [7641] = 856, + [7642] = 7606, + [7643] = 7615, + [7644] = 7605, + [7645] = 7603, + [7646] = 7610, + [7647] = 854, + [7648] = 7603, + [7649] = 7606, + [7650] = 7605, + [7651] = 7603, + [7652] = 7610, + [7653] = 861, + [7654] = 7611, + [7655] = 7610, + [7656] = 7617, + [7657] = 7605, + [7658] = 7606, + [7659] = 7604, + [7660] = 7605, + [7661] = 7615, + [7662] = 7617, + [7663] = 7617, + [7664] = 7615, + [7665] = 7603, + [7666] = 7606, + [7667] = 7603, + [7668] = 7603, + [7669] = 7615, + [7670] = 7611, + [7671] = 7615, + [7672] = 7610, + [7673] = 7605, + [7674] = 7611, + [7675] = 7606, + [7676] = 7639, + [7677] = 7615, + [7678] = 7603, + [7679] = 7617, + [7680] = 7604, + [7681] = 7611, + [7682] = 7605, + [7683] = 7606, + [7684] = 7603, + [7685] = 7610, + [7686] = 7605, + [7687] = 7603, + [7688] = 7605, + [7689] = 7606, + [7690] = 7617, + [7691] = 7617, + [7692] = 7605, + [7693] = 912, + [7694] = 7606, + [7695] = 7604, + [7696] = 7606, + [7697] = 7615, + [7698] = 7605, + [7699] = 7617, + [7700] = 7603, + [7701] = 7611, + [7702] = 7615, + [7703] = 7611, + [7704] = 7615, + [7705] = 7617, + [7706] = 7604, + [7707] = 7605, + [7708] = 7606, + [7709] = 918, + [7710] = 7611, + [7711] = 7603, + [7712] = 7617, + [7713] = 7611, + [7714] = 7615, + [7715] = 7617, + [7716] = 7604, + [7717] = 7610, + [7718] = 7610, + [7719] = 7603, + [7720] = 7615, + [7721] = 7611, + [7722] = 7639, + [7723] = 7606, + [7724] = 7611, + [7725] = 7605, + [7726] = 7617, + [7727] = 858, + [7728] = 7610, + [7729] = 7615, + [7730] = 7639, + [7731] = 7617, + [7732] = 7615, + [7733] = 7605, + [7734] = 7610, + [7735] = 7617, + [7736] = 7617, + [7737] = 7605, + [7738] = 7610, + [7739] = 7603, + [7740] = 7615, + [7741] = 7615, + [7742] = 7615, + [7743] = 7606, + [7744] = 7615, + [7745] = 7610, + [7746] = 7617, + [7747] = 7611, + [7748] = 7615, + [7749] = 7615, + [7750] = 7617, + [7751] = 7617, + [7752] = 7617, + [7753] = 7617, + [7754] = 7605, + [7755] = 7611, + [7756] = 7615, + [7757] = 7605, + [7758] = 7611, + [7759] = 7610, + [7760] = 7617, + [7761] = 7615, + [7762] = 7611, + [7763] = 7603, + [7764] = 7615, + [7765] = 7611, + [7766] = 7617, + [7767] = 7603, + [7768] = 7617, + [7769] = 7615, + [7770] = 7603, + [7771] = 7603, + [7772] = 7610, + [7773] = 7615, + [7774] = 7606, + [7775] = 7603, + [7776] = 7606, + [7777] = 7617, + [7778] = 7604, + [7779] = 7610, + [7780] = 7605, + [7781] = 7605, + [7782] = 7605, + [7783] = 7606, + [7784] = 7606, + [7785] = 7605, + [7786] = 7606, + [7787] = 7603, + [7788] = 7610, + [7789] = 7606, + [7790] = 7615, + [7791] = 7610, + [7792] = 7605, + [7793] = 7605, + [7794] = 7606, + [7795] = 7611, + [7796] = 7615, + [7797] = 7611, + [7798] = 7617, + [7799] = 7604, + [7800] = 7617, + [7801] = 7603, + [7802] = 7617, + [7803] = 7603, + [7804] = 7611, + [7805] = 7604, + [7806] = 7611, + [7807] = 7617, + [7808] = 7605, + [7809] = 7606, + [7810] = 7615, + [7811] = 7604, + [7812] = 7611, + [7813] = 7615, + [7814] = 7617, + [7815] = 7639, + [7816] = 7603, + [7817] = 7615, + [7818] = 7603, + [7819] = 7617, + [7820] = 7615, + [7821] = 7615, + [7822] = 7605, + [7823] = 7617, + [7824] = 7611, + [7825] = 7615, + [7826] = 7617, + [7827] = 7617, + [7828] = 3724, + [7829] = 7615, + [7830] = 7605, + [7831] = 7615, + [7832] = 7617, + [7833] = 7604, + [7834] = 7605, + [7835] = 7610, + [7836] = 7639, + [7837] = 7611, + [7838] = 7615, + [7839] = 7610, + [7840] = 3979, + [7841] = 1162, + [7842] = 7482, + [7843] = 884, + [7844] = 3889, + [7845] = 3883, + [7846] = 1159, + [7847] = 3889, + [7848] = 3883, + [7849] = 3975, + [7850] = 3975, + [7851] = 3871, + [7852] = 7852, + [7853] = 5761, + [7854] = 1170, + [7855] = 1159, + [7856] = 7856, + [7857] = 816, + [7858] = 1162, + [7859] = 1168, + [7860] = 1169, + [7861] = 3979, + [7862] = 7862, + [7863] = 1170, + [7864] = 1168, + [7865] = 1169, + [7866] = 3871, + [7867] = 7867, + [7868] = 7868, + [7869] = 7867, + [7870] = 7870, [7871] = 7871, - [7872] = 7813, - [7873] = 7816, - [7874] = 7808, - [7875] = 7808, - [7876] = 7808, - [7877] = 7808, - [7878] = 7816, - [7879] = 7816, - [7880] = 7804, - [7881] = 7804, - [7882] = 799, - [7883] = 7827, - [7884] = 7816, - [7885] = 7885, - [7886] = 7816, - [7887] = 7808, - [7888] = 7813, - [7889] = 7808, - [7890] = 7811, - [7891] = 7804, - [7892] = 7804, - [7893] = 7810, - [7894] = 7806, - [7895] = 7816, - [7896] = 7816, - [7897] = 7808, - [7898] = 7804, - [7899] = 7808, - [7900] = 7804, - [7901] = 7804, - [7902] = 7804, - [7903] = 7804, - [7904] = 7808, - [7905] = 7813, - [7906] = 7808, - [7907] = 7816, - [7908] = 7808, - [7909] = 7811, - [7910] = 7821, - [7911] = 7911, - [7912] = 7816, - [7913] = 7811, - [7914] = 7808, - [7915] = 7804, - [7916] = 7806, - [7917] = 7808, - [7918] = 7827, - [7919] = 7827, - [7920] = 7808, - [7921] = 7813, - [7922] = 7813, - [7923] = 7923, - [7924] = 7924, - [7925] = 7813, - [7926] = 7816, - [7927] = 7813, - [7928] = 7804, - [7929] = 7821, - [7930] = 7816, - [7931] = 7821, - [7932] = 7804, - [7933] = 7808, - [7934] = 7816, - [7935] = 7813, - [7936] = 7804, - [7937] = 7816, - [7938] = 7804, - [7939] = 7813, - [7940] = 7821, - [7941] = 7808, - [7942] = 7813, - [7943] = 7816, - [7944] = 7813, - [7945] = 7813, - [7946] = 7810, - [7947] = 7804, - [7948] = 7811, - [7949] = 7813, - [7950] = 7813, - [7951] = 7808, - [7952] = 802, - [7953] = 7813, - [7954] = 7813, - [7955] = 7816, - [7956] = 7827, - [7957] = 7813, - [7958] = 7827, - [7959] = 7816, - [7960] = 7804, - [7961] = 7961, - [7962] = 818, - [7963] = 7963, - [7964] = 7964, - [7965] = 7965, - [7966] = 7966, - [7967] = 7967, - [7968] = 7968, - [7969] = 7969, - [7970] = 7963, - [7971] = 7968, - [7972] = 7972, - [7973] = 7973, - [7974] = 7968, - [7975] = 7975, - [7976] = 7966, - [7977] = 7973, - [7978] = 7966, - [7979] = 7967, - [7980] = 7964, - [7981] = 7968, - [7982] = 7963, - [7983] = 7975, - [7984] = 7975, - [7985] = 7969, - [7986] = 7986, - [7987] = 7969, - [7988] = 847, - [7989] = 7989, - [7990] = 7967, - [7991] = 7975, - [7992] = 7963, - [7993] = 7973, - [7994] = 7966, - [7995] = 7966, - [7996] = 7996, - [7997] = 7967, - [7998] = 7967, - [7999] = 7967, - [8000] = 7972, - [8001] = 7968, - [8002] = 7964, - [8003] = 7963, - [8004] = 7966, - [8005] = 7965, - [8006] = 7969, - [8007] = 7963, - [8008] = 7969, - [8009] = 7964, - [8010] = 8010, - [8011] = 7975, - [8012] = 7967, - [8013] = 7966, - [8014] = 7965, - [8015] = 7975, - [8016] = 7972, - [8017] = 7986, - [8018] = 7963, - [8019] = 791, - [8020] = 7968, - [8021] = 7986, - [8022] = 799, - [8023] = 7964, - [8024] = 7969, - [8025] = 7972, - [8026] = 7972, - [8027] = 7967, - [8028] = 7968, - [8029] = 7969, - [8030] = 7963, - [8031] = 7975, - [8032] = 7963, - [8033] = 7969, - [8034] = 7964, - [8035] = 7964, - [8036] = 7969, - [8037] = 7967, - [8038] = 7966, - [8039] = 7972, - [8040] = 7969, - [8041] = 7964, - [8042] = 7966, - [8043] = 7967, - [8044] = 7972, - [8045] = 7969, - [8046] = 7966, - [8047] = 7966, - [8048] = 7964, - [8049] = 7967, - [8050] = 7972, - [8051] = 7969, - [8052] = 7975, - [8053] = 7967, - [8054] = 7964, - [8055] = 7972, - [8056] = 7972, - [8057] = 7963, - [8058] = 7986, - [8059] = 7972, - [8060] = 7972, - [8061] = 836, - [8062] = 7986, - [8063] = 7975, - [8064] = 7969, - [8065] = 7969, - [8066] = 7964, - [8067] = 7972, - [8068] = 7963, - [8069] = 7967, - [8070] = 8070, - [8071] = 818, - [8072] = 7964, - [8073] = 7975, - [8074] = 7969, - [8075] = 7964, - [8076] = 7968, - [8077] = 7968, - [8078] = 7972, - [8079] = 7972, - [8080] = 8080, - [8081] = 7964, - [8082] = 7969, - [8083] = 7972, - [8084] = 7964, - [8085] = 7972, - [8086] = 7972, - [8087] = 7969, - [8088] = 7975, - [8089] = 7966, - [8090] = 7972, - [8091] = 7969, - [8092] = 7975, - [8093] = 7963, - [8094] = 7964, - [8095] = 7963, - [8096] = 7964, - [8097] = 7967, - [8098] = 8098, - [8099] = 7964, - [8100] = 7969, - [8101] = 7968, - [8102] = 7966, - [8103] = 7968, - [8104] = 7964, - [8105] = 7968, - [8106] = 7969, - [8107] = 7986, - [8108] = 7972, - [8109] = 7975, - [8110] = 7963, - [8111] = 7964, - [8112] = 7975, - [8113] = 7963, - [8114] = 7964, - [8115] = 7968, - [8116] = 7969, - [8117] = 7967, - [8118] = 7966, - [8119] = 7963, - [8120] = 7969, - [8121] = 7967, - [8122] = 7975, - [8123] = 7966, - [8124] = 7968, - [8125] = 7975, - [8126] = 7972, - [8127] = 7975, - [8128] = 7963, - [8129] = 7964, - [8130] = 7968, - [8131] = 7973, - [8132] = 7968, - [8133] = 7963, - [8134] = 7967, - [8135] = 7966, - [8136] = 7967, - [8137] = 7965, - [8138] = 7975, - [8139] = 7969, - [8140] = 7968, - [8141] = 7975, - [8142] = 7966, - [8143] = 7963, - [8144] = 7968, - [8145] = 7968, - [8146] = 7975, - [8147] = 7967, - [8148] = 7968, - [8149] = 7967, - [8150] = 7964, - [8151] = 7966, - [8152] = 7972, - [8153] = 7975, - [8154] = 7966, - [8155] = 7972, - [8156] = 7968, - [8157] = 7975, - [8158] = 7968, - [8159] = 7966, - [8160] = 7964, - [8161] = 8161, - [8162] = 8162, - [8163] = 7964, - [8164] = 7966, - [8165] = 7972, - [8166] = 7969, - [8167] = 7964, - [8168] = 7963, - [8169] = 7969, - [8170] = 7986, - [8171] = 7963, - [8172] = 7963, - [8173] = 8173, - [8174] = 7975, - [8175] = 7967, - [8176] = 7966, - [8177] = 7975, - [8178] = 7966, - [8179] = 7967, - [8180] = 7968, - [8181] = 7973, - [8182] = 7966, - [8183] = 975, - [8184] = 7967, - [8185] = 7967, - [8186] = 7973, - [8187] = 7972, - [8188] = 7968, - [8189] = 7972, - [8190] = 7973, - [8191] = 7964, - [8192] = 7963, - [8193] = 7969, - [8194] = 7966, - [8195] = 876, - [8196] = 7973, - [8197] = 7975, - [8198] = 7969, - [8199] = 7986, - [8200] = 7972, - [8201] = 818, - [8202] = 7966, - [8203] = 7967, - [8204] = 7986, - [8205] = 7975, - [8206] = 7968, - [8207] = 7963, - [8208] = 7975, - [8209] = 7965, - [8210] = 7966, - [8211] = 7967, - [8212] = 7965, - [8213] = 7968, - [8214] = 7967, - [8215] = 7968, - [8216] = 8216, - [8217] = 7963, - [8218] = 7963, - [8219] = 7973, - [8220] = 7963, - [8221] = 959, - [8222] = 974, - [8223] = 8223, - [8224] = 8223, - [8225] = 8223, - [8226] = 8226, - [8227] = 8223, - [8228] = 8223, - [8229] = 8223, - [8230] = 953, - [8231] = 901, - [8232] = 8223, - [8233] = 8223, - [8234] = 8223, - [8235] = 979, - [8236] = 8223, - [8237] = 950, - [8238] = 8223, - [8239] = 8223, - [8240] = 8223, - [8241] = 8223, - [8242] = 971, - [8243] = 8223, - [8244] = 8223, - [8245] = 8223, - [8246] = 952, - [8247] = 966, - [8248] = 8223, - [8249] = 8223, - [8250] = 8223, - [8251] = 901, - [8252] = 8223, - [8253] = 8223, - [8254] = 8223, - [8255] = 8223, - [8256] = 8223, - [8257] = 8223, - [8258] = 8223, - [8259] = 862, - [8260] = 850, - [8261] = 832, - [8262] = 833, - [8263] = 862, - [8264] = 807, - [8265] = 805, - [8266] = 794, - [8267] = 788, - [8268] = 850, - [8269] = 802, - [8270] = 8270, - [8271] = 8270, - [8272] = 807, - [8273] = 805, - [8274] = 8270, - [8275] = 8275, - [8276] = 842, - [8277] = 907, - [8278] = 799, - [8279] = 791, - [8280] = 838, - [8281] = 862, - [8282] = 833, - [8283] = 841, - [8284] = 839, - [8285] = 822, - [8286] = 794, - [8287] = 788, - [8288] = 846, - [8289] = 8270, - [8290] = 8270, - [8291] = 8270, - [8292] = 850, - [8293] = 8293, - [8294] = 843, - [8295] = 8293, - [8296] = 8293, - [8297] = 907, - [8298] = 8293, - [8299] = 8299, - [8300] = 8293, - [8301] = 842, - [8302] = 8293, - [8303] = 8293, - [8304] = 8293, - [8305] = 875, - [8306] = 7418, - [8307] = 866, - [8308] = 8293, - [8309] = 8293, - [8310] = 859, - [8311] = 839, - [8312] = 869, - [8313] = 8293, - [8314] = 8293, - [8315] = 8293, - [8316] = 838, - [8317] = 878, - [8318] = 8293, - [8319] = 8293, - [8320] = 865, - [8321] = 853, - [8322] = 8293, - [8323] = 858, - [8324] = 8293, - [8325] = 8293, - [8326] = 841, - [8327] = 8293, - [8328] = 837, - [8329] = 881, - [8330] = 8293, - [8331] = 868, - [8332] = 8293, - [8333] = 8293, - [8334] = 846, - [8335] = 8293, - [8336] = 8293, - [8337] = 8337, - [8338] = 941, - [8339] = 902, - [8340] = 943, - [8341] = 899, - [8342] = 875, - [8343] = 866, - [8344] = 7418, - [8345] = 8345, - [8346] = 858, - [8347] = 916, - [8348] = 8348, - [8349] = 935, - [8350] = 1024, - [8351] = 878, - [8352] = 8348, - [8353] = 8348, - [8354] = 8348, - [8355] = 885, - [8356] = 926, - [8357] = 8345, - [8358] = 944, - [8359] = 901, - [8360] = 8348, - [8361] = 948, - [8362] = 8345, - [8363] = 960, - [8364] = 893, - [8365] = 8348, - [8366] = 8345, - [8367] = 923, - [8368] = 949, - [8369] = 896, - [8370] = 936, - [8371] = 8371, - [8372] = 993, - [8373] = 913, - [8374] = 961, - [8375] = 982, - [8376] = 8345, - [8377] = 931, - [8378] = 925, - [8379] = 3728, - [8380] = 8380, - [8381] = 930, - [8382] = 8345, - [8383] = 887, - [8384] = 859, - [8385] = 853, - [8386] = 920, - [8387] = 8387, - [8388] = 843, - [8389] = 881, - [8390] = 939, - [8391] = 946, - [8392] = 978, - [8393] = 898, - [8394] = 941, - [8395] = 963, - [8396] = 8396, - [8397] = 961, - [8398] = 8398, - [8399] = 8399, - [8400] = 923, - [8401] = 8401, - [8402] = 8401, - [8403] = 913, - [8404] = 8398, - [8405] = 8398, - [8406] = 936, - [8407] = 8401, - [8408] = 920, - [8409] = 8398, - [8410] = 8399, - [8411] = 8398, - [8412] = 944, + [7872] = 7867, + [7873] = 816, + [7874] = 7870, + [7875] = 7875, + [7876] = 7876, + [7877] = 7877, + [7878] = 7871, + [7879] = 7877, + [7880] = 7871, + [7881] = 7877, + [7882] = 7871, + [7883] = 7877, + [7884] = 7871, + [7885] = 7868, + [7886] = 7886, + [7887] = 819, + [7888] = 3724, + [7889] = 7877, + [7890] = 7867, + [7891] = 825, + [7892] = 7886, + [7893] = 824, + [7894] = 7867, + [7895] = 7886, + [7896] = 7896, + [7897] = 7870, + [7898] = 7868, + [7899] = 7896, + [7900] = 7896, + [7901] = 7868, + [7902] = 7868, + [7903] = 7871, + [7904] = 7867, + [7905] = 7870, + [7906] = 7868, + [7907] = 7907, + [7908] = 7908, + [7909] = 7896, + [7910] = 7896, + [7911] = 7870, + [7912] = 7867, + [7913] = 7867, + [7914] = 7870, + [7915] = 7867, + [7916] = 7908, + [7917] = 7868, + [7918] = 7868, + [7919] = 7908, + [7920] = 7868, + [7921] = 7870, + [7922] = 7896, + [7923] = 7877, + [7924] = 7868, + [7925] = 7871, + [7926] = 7870, + [7927] = 7896, + [7928] = 7896, + [7929] = 7870, + [7930] = 7877, + [7931] = 7867, + [7932] = 7907, + [7933] = 7868, + [7934] = 7896, + [7935] = 7870, + [7936] = 7886, + [7937] = 7896, + [7938] = 7868, + [7939] = 7868, + [7940] = 7867, + [7941] = 7870, + [7942] = 7871, + [7943] = 7943, + [7944] = 7868, + [7945] = 7870, + [7946] = 7896, + [7947] = 7896, + [7948] = 7867, + [7949] = 7868, + [7950] = 7868, + [7951] = 7870, + [7952] = 7867, + [7953] = 7870, + [7954] = 7896, + [7955] = 7867, + [7956] = 7907, + [7957] = 7868, + [7958] = 7870, + [7959] = 7896, + [7960] = 7896, + [7961] = 7868, + [7962] = 7868, + [7963] = 7896, + [7964] = 7896, + [7965] = 7870, + [7966] = 7908, + [7967] = 7870, + [7968] = 7896, + [7969] = 7868, + [7970] = 7896, + [7971] = 7870, + [7972] = 7867, + [7973] = 7868, + [7974] = 7974, + [7975] = 7896, + [7976] = 7870, + [7977] = 7877, + [7978] = 7870, + [7979] = 7907, + [7980] = 7871, + [7981] = 7896, + [7982] = 7908, + [7983] = 7868, + [7984] = 7868, + [7985] = 7985, + [7986] = 7870, + [7987] = 7896, + [7988] = 7867, + [7989] = 7870, + [7990] = 7896, + [7991] = 7907, + [7992] = 7871, + [7993] = 7868, + [7994] = 7886, + [7995] = 7908, + [7996] = 7896, + [7997] = 7877, + [7998] = 7867, + [7999] = 7870, + [8000] = 7907, + [8001] = 7871, + [8002] = 7868, + [8003] = 8003, + [8004] = 7870, + [8005] = 8005, + [8006] = 7867, + [8007] = 7870, + [8008] = 7877, + [8009] = 7868, + [8010] = 7870, + [8011] = 7867, + [8012] = 7877, + [8013] = 7867, + [8014] = 7868, + [8015] = 7867, + [8016] = 7871, + [8017] = 8017, + [8018] = 7867, + [8019] = 7907, + [8020] = 7870, + [8021] = 7896, + [8022] = 7877, + [8023] = 7886, + [8024] = 7896, + [8025] = 7896, + [8026] = 8026, + [8027] = 8027, + [8028] = 8028, + [8029] = 8029, + [8030] = 8030, + [8031] = 8031, + [8032] = 8029, + [8033] = 8033, + [8034] = 8027, + [8035] = 8035, + [8036] = 8036, + [8037] = 8030, + [8038] = 819, + [8039] = 8039, + [8040] = 816, + [8041] = 8030, + [8042] = 8039, + [8043] = 8030, + [8044] = 8033, + [8045] = 8036, + [8046] = 8026, + [8047] = 8047, + [8048] = 8030, + [8049] = 8026, + [8050] = 8030, + [8051] = 8029, + [8052] = 8029, + [8053] = 8027, + [8054] = 8031, + [8055] = 8031, + [8056] = 8027, + [8057] = 8031, + [8058] = 8029, + [8059] = 8031, + [8060] = 8030, + [8061] = 8036, + [8062] = 8036, + [8063] = 8029, + [8064] = 8031, + [8065] = 8027, + [8066] = 8030, + [8067] = 8031, + [8068] = 8036, + [8069] = 8029, + [8070] = 8031, + [8071] = 8027, + [8072] = 8030, + [8073] = 8027, + [8074] = 8030, + [8075] = 8029, + [8076] = 8027, + [8077] = 8031, + [8078] = 8027, + [8079] = 8027, + [8080] = 8029, + [8081] = 8036, + [8082] = 8030, + [8083] = 8029, + [8084] = 8031, + [8085] = 8030, + [8086] = 8036, + [8087] = 8031, + [8088] = 8029, + [8089] = 8039, + [8090] = 8027, + [8091] = 8027, + [8092] = 8031, + [8093] = 8027, + [8094] = 8029, + [8095] = 8031, + [8096] = 8029, + [8097] = 8036, + [8098] = 8030, + [8099] = 8030, + [8100] = 8027, + [8101] = 8031, + [8102] = 8029, + [8103] = 8103, + [8104] = 8035, + [8105] = 8036, + [8106] = 8030, + [8107] = 8107, + [8108] = 8027, + [8109] = 8033, + [8110] = 8047, + [8111] = 8036, + [8112] = 8029, + [8113] = 8027, + [8114] = 8027, + [8115] = 8031, + [8116] = 8047, + [8117] = 8036, + [8118] = 8029, + [8119] = 8036, + [8120] = 8035, + [8121] = 8036, + [8122] = 8030, + [8123] = 8030, + [8124] = 8031, + [8125] = 825, + [8126] = 8027, + [8127] = 8031, + [8128] = 8031, + [8129] = 8129, + [8130] = 8029, + [8131] = 8035, + [8132] = 8027, + [8133] = 8028, + [8134] = 8027, + [8135] = 8135, + [8136] = 8036, + [8137] = 8030, + [8138] = 825, + [8139] = 8033, + [8140] = 8028, + [8141] = 8029, + [8142] = 8035, + [8143] = 8036, + [8144] = 8144, + [8145] = 8039, + [8146] = 8026, + [8147] = 8047, + [8148] = 8026, + [8149] = 8028, + [8150] = 8036, + [8151] = 8047, + [8152] = 8028, + [8153] = 8036, + [8154] = 8027, + [8155] = 8039, + [8156] = 8026, + [8157] = 8035, + [8158] = 8039, + [8159] = 8039, + [8160] = 8039, + [8161] = 8035, + [8162] = 8047, + [8163] = 8035, + [8164] = 8164, + [8165] = 8026, + [8166] = 8028, + [8167] = 8031, + [8168] = 8039, + [8169] = 8030, + [8170] = 8035, + [8171] = 8029, + [8172] = 8026, + [8173] = 8035, + [8174] = 8039, + [8175] = 8035, + [8176] = 8031, + [8177] = 8026, + [8178] = 8027, + [8179] = 8026, + [8180] = 8039, + [8181] = 8039, + [8182] = 8039, + [8183] = 8035, + [8184] = 8026, + [8185] = 827, + [8186] = 8035, + [8187] = 8047, + [8188] = 8026, + [8189] = 8026, + [8190] = 8028, + [8191] = 8039, + [8192] = 8026, + [8193] = 8026, + [8194] = 8035, + [8195] = 8047, + [8196] = 8039, + [8197] = 8029, + [8198] = 8026, + [8199] = 8027, + [8200] = 8036, + [8201] = 8031, + [8202] = 8027, + [8203] = 8029, + [8204] = 8035, + [8205] = 8035, + [8206] = 8206, + [8207] = 8030, + [8208] = 8036, + [8209] = 8209, + [8210] = 8029, + [8211] = 8036, + [8212] = 8030, + [8213] = 8026, + [8214] = 8039, + [8215] = 8039, + [8216] = 851, + [8217] = 8035, + [8218] = 8026, + [8219] = 8039, + [8220] = 8036, + [8221] = 8035, + [8222] = 8026, + [8223] = 8028, + [8224] = 8039, + [8225] = 8035, + [8226] = 8039, + [8227] = 8030, + [8228] = 8035, + [8229] = 8026, + [8230] = 8026, + [8231] = 8035, + [8232] = 8039, + [8233] = 8026, + [8234] = 8047, + [8235] = 8026, + [8236] = 8029, + [8237] = 8036, + [8238] = 8036, + [8239] = 8030, + [8240] = 8031, + [8241] = 8031, + [8242] = 8036, + [8243] = 8030, + [8244] = 8029, + [8245] = 8039, + [8246] = 8036, + [8247] = 8027, + [8248] = 8039, + [8249] = 8033, + [8250] = 8026, + [8251] = 8035, + [8252] = 8252, + [8253] = 8039, + [8254] = 8035, + [8255] = 8035, + [8256] = 8030, + [8257] = 8031, + [8258] = 8029, + [8259] = 8031, + [8260] = 982, + [8261] = 8035, + [8262] = 8030, + [8263] = 8026, + [8264] = 8031, + [8265] = 8039, + [8266] = 8026, + [8267] = 8027, + [8268] = 8268, + [8269] = 8026, + [8270] = 8031, + [8271] = 8029, + [8272] = 8027, + [8273] = 8039, + [8274] = 8035, + [8275] = 8028, + [8276] = 8029, + [8277] = 8036, + [8278] = 828, + [8279] = 8030, + [8280] = 8035, + [8281] = 8033, + [8282] = 8039, + [8283] = 8036, + [8284] = 8284, + [8285] = 8284, + [8286] = 974, + [8287] = 979, + [8288] = 8284, + [8289] = 8284, + [8290] = 1012, + [8291] = 1004, + [8292] = 938, + [8293] = 884, + [8294] = 8284, + [8295] = 8284, + [8296] = 991, + [8297] = 8284, + [8298] = 8284, + [8299] = 8284, + [8300] = 8284, + [8301] = 8301, + [8302] = 8284, + [8303] = 8284, + [8304] = 8284, + [8305] = 8284, + [8306] = 972, + [8307] = 8284, + [8308] = 8284, + [8309] = 8284, + [8310] = 8284, + [8311] = 8284, + [8312] = 8284, + [8313] = 8284, + [8314] = 884, + [8315] = 8284, + [8316] = 8284, + [8317] = 8284, + [8318] = 973, + [8319] = 8284, + [8320] = 8284, + [8321] = 8284, + [8322] = 820, + [8323] = 833, + [8324] = 860, + [8325] = 824, + [8326] = 822, + [8327] = 814, + [8328] = 815, + [8329] = 818, + [8330] = 833, + [8331] = 821, + [8332] = 860, + [8333] = 823, + [8334] = 849, + [8335] = 844, + [8336] = 8336, + [8337] = 845, + [8338] = 820, + [8339] = 822, + [8340] = 8336, + [8341] = 816, + [8342] = 8336, + [8343] = 8343, + [8344] = 818, + [8345] = 925, + [8346] = 819, + [8347] = 833, + [8348] = 812, + [8349] = 814, + [8350] = 8336, + [8351] = 8336, + [8352] = 8336, + [8353] = 815, + [8354] = 860, + [8355] = 837, + [8356] = 848, + [8357] = 850, + [8358] = 8358, + [8359] = 8358, + [8360] = 7549, + [8361] = 8358, + [8362] = 8358, + [8363] = 8358, + [8364] = 8358, + [8365] = 8358, + [8366] = 8358, + [8367] = 832, + [8368] = 837, + [8369] = 844, + [8370] = 8358, + [8371] = 8358, + [8372] = 8358, + [8373] = 858, + [8374] = 8358, + [8375] = 856, + [8376] = 853, + [8377] = 8358, + [8378] = 8358, + [8379] = 8358, + [8380] = 845, + [8381] = 854, + [8382] = 855, + [8383] = 859, + [8384] = 8358, + [8385] = 849, + [8386] = 8358, + [8387] = 8358, + [8388] = 8388, + [8389] = 835, + [8390] = 8358, + [8391] = 8358, + [8392] = 8358, + [8393] = 857, + [8394] = 925, + [8395] = 8358, + [8396] = 861, + [8397] = 848, + [8398] = 8358, + [8399] = 829, + [8400] = 8400, + [8401] = 8358, + [8402] = 8402, + [8403] = 859, + [8404] = 8404, + [8405] = 864, + [8406] = 3568, + [8407] = 853, + [8408] = 869, + [8409] = 910, + [8410] = 8410, + [8411] = 8411, + [8412] = 997, [8413] = 896, - [8414] = 1013, - [8415] = 8415, - [8416] = 8415, - [8417] = 8417, - [8418] = 8399, - [8419] = 8415, - [8420] = 1198, - [8421] = 8399, - [8422] = 898, - [8423] = 8417, - [8424] = 8401, - [8425] = 8415, - [8426] = 8398, - [8427] = 8398, - [8428] = 946, - [8429] = 978, - [8430] = 8430, - [8431] = 8415, - [8432] = 8401, - [8433] = 935, - [8434] = 8401, - [8435] = 8399, - [8436] = 893, - [8437] = 1019, - [8438] = 8398, - [8439] = 8415, - [8440] = 8415, - [8441] = 8399, - [8442] = 931, - [8443] = 8401, - [8444] = 8398, - [8445] = 8417, - [8446] = 8399, - [8447] = 8415, - [8448] = 8398, - [8449] = 8398, - [8450] = 8415, - [8451] = 8399, - [8452] = 1024, - [8453] = 8415, - [8454] = 8401, - [8455] = 8399, - [8456] = 8398, - [8457] = 8398, - [8458] = 982, - [8459] = 8399, - [8460] = 934, - [8461] = 8415, - [8462] = 8399, - [8463] = 899, - [8464] = 916, - [8465] = 1101, - [8466] = 8398, - [8467] = 973, - [8468] = 981, - [8469] = 8469, - [8470] = 8396, - [8471] = 8401, - [8472] = 8401, - [8473] = 8399, - [8474] = 1172, - [8475] = 8415, - [8476] = 8415, - [8477] = 8398, - [8478] = 8399, - [8479] = 8401, - [8480] = 8398, - [8481] = 8401, - [8482] = 939, - [8483] = 8417, - [8484] = 8399, - [8485] = 8415, - [8486] = 986, - [8487] = 8398, - [8488] = 8399, - [8489] = 8401, - [8490] = 8401, - [8491] = 925, - [8492] = 949, - [8493] = 964, - [8494] = 902, - [8495] = 8401, - [8496] = 1136, - [8497] = 8497, - [8498] = 8415, - [8499] = 976, - [8500] = 887, - [8501] = 8396, - [8502] = 1209, - [8503] = 8401, - [8504] = 885, - [8505] = 1197, - [8506] = 993, - [8507] = 8415, - [8508] = 8508, - [8509] = 8398, - [8510] = 8399, - [8511] = 8401, - [8512] = 8401, - [8513] = 8401, - [8514] = 8415, - [8515] = 942, - [8516] = 960, - [8517] = 818, - [8518] = 8415, - [8519] = 930, - [8520] = 8399, - [8521] = 8398, - [8522] = 8398, - [8523] = 8399, - [8524] = 943, - [8525] = 8401, - [8526] = 8396, - [8527] = 8415, - [8528] = 8415, - [8529] = 926, - [8530] = 948, - [8531] = 8398, - [8532] = 8401, - [8533] = 8415, - [8534] = 8415, - [8535] = 8398, - [8536] = 8396, - [8537] = 8398, - [8538] = 8399, - [8539] = 8415, - [8540] = 8415, - [8541] = 8399, - [8542] = 8401, - [8543] = 919, - [8544] = 8415, - [8545] = 8398, - [8546] = 8399, - [8547] = 8399, - [8548] = 8399, - [8549] = 8398, - [8550] = 1128, - [8551] = 8551, - [8552] = 8399, - [8553] = 8553, - [8554] = 8401, - [8555] = 8401, - [8556] = 8399, - [8557] = 8415, - [8558] = 8398, - [8559] = 8399, - [8560] = 8401, - [8561] = 8415, - [8562] = 8417, - [8563] = 8398, - [8564] = 8399, - [8565] = 8396, - [8566] = 8401, - [8567] = 8401, - [8568] = 8417, - [8569] = 8569, - [8570] = 8570, - [8571] = 8571, - [8572] = 8569, - [8573] = 8571, - [8574] = 8574, - [8575] = 8574, - [8576] = 8574, - [8577] = 8574, - [8578] = 977, - [8579] = 1044, - [8580] = 1043, - [8581] = 8569, - [8582] = 8582, - [8583] = 8571, - [8584] = 8570, - [8585] = 8585, - [8586] = 8574, - [8587] = 8570, - [8588] = 8569, - [8589] = 8571, - [8590] = 8571, - [8591] = 8570, - [8592] = 8570, - [8593] = 8593, - [8594] = 8594, - [8595] = 8569, - [8596] = 8570, - [8597] = 8574, - [8598] = 934, - [8599] = 8570, - [8600] = 8569, - [8601] = 8601, - [8602] = 8571, - [8603] = 8571, - [8604] = 8569, - [8605] = 8571, - [8606] = 8606, - [8607] = 8574, - [8608] = 8574, - [8609] = 8574, - [8610] = 8570, - [8611] = 8569, - [8612] = 1197, - [8613] = 8569, - [8614] = 8569, - [8615] = 8571, - [8616] = 8571, - [8617] = 8570, - [8618] = 8570, - [8619] = 8571, - [8620] = 8574, - [8621] = 832, - [8622] = 8570, - [8623] = 981, - [8624] = 989, - [8625] = 986, - [8626] = 8574, - [8627] = 988, - [8628] = 8569, - [8629] = 8569, - [8630] = 8571, - [8631] = 8570, - [8632] = 8632, - [8633] = 8574, - [8634] = 992, - [8635] = 8569, - [8636] = 955, - [8637] = 4027, - [8638] = 8569, - [8639] = 8574, - [8640] = 8640, - [8641] = 8571, - [8642] = 8570, - [8643] = 8569, - [8644] = 8644, - [8645] = 8645, - [8646] = 8574, - [8647] = 8574, - [8648] = 8570, - [8649] = 8569, - [8650] = 8571, - [8651] = 8570, - [8652] = 8570, - [8653] = 8571, - [8654] = 8570, - [8655] = 8574, - [8656] = 8656, - [8657] = 8569, - [8658] = 8570, - [8659] = 8574, - [8660] = 8569, - [8661] = 8661, - [8662] = 8571, - [8663] = 8570, - [8664] = 1023, - [8665] = 8571, - [8666] = 942, - [8667] = 980, - [8668] = 8668, - [8669] = 1019, - [8670] = 8570, - [8671] = 964, - [8672] = 963, - [8673] = 8571, - [8674] = 962, - [8675] = 8569, - [8676] = 8570, - [8677] = 1022, - [8678] = 8574, - [8679] = 972, - [8680] = 8574, - [8681] = 1020, - [8682] = 8570, - [8683] = 8571, - [8684] = 8569, - [8685] = 8571, - [8686] = 8569, - [8687] = 8574, - [8688] = 8574, - [8689] = 8574, - [8690] = 8571, - [8691] = 8574, - [8692] = 8570, - [8693] = 8570, - [8694] = 1028, - [8695] = 8569, - [8696] = 958, - [8697] = 8574, - [8698] = 8569, - [8699] = 984, - [8700] = 8571, - [8701] = 8701, - [8702] = 8570, - [8703] = 1200, - [8704] = 8704, - [8705] = 965, - [8706] = 8571, - [8707] = 1070, - [8708] = 8571, - [8709] = 983, - [8710] = 8570, - [8711] = 8571, - [8712] = 8569, - [8713] = 1005, - [8714] = 8574, - [8715] = 8570, - [8716] = 8571, - [8717] = 8569, - [8718] = 8569, - [8719] = 1040, - [8720] = 997, - [8721] = 947, - [8722] = 8722, - [8723] = 8569, - [8724] = 1198, - [8725] = 976, - [8726] = 8574, - [8727] = 8574, - [8728] = 8571, - [8729] = 973, + [8414] = 8410, + [8415] = 7549, + [8416] = 924, + [8417] = 894, + [8418] = 975, + [8419] = 8410, + [8420] = 855, + [8421] = 920, + [8422] = 929, + [8423] = 8404, + [8424] = 8404, + [8425] = 994, + [8426] = 905, + [8427] = 891, + [8428] = 919, + [8429] = 829, + [8430] = 8404, + [8431] = 885, + [8432] = 934, + [8433] = 832, + [8434] = 8410, + [8435] = 908, + [8436] = 898, + [8437] = 857, + [8438] = 911, + [8439] = 927, + [8440] = 907, + [8441] = 8441, + [8442] = 8410, + [8443] = 915, + [8444] = 8404, + [8445] = 886, + [8446] = 8410, + [8447] = 909, + [8448] = 835, + [8449] = 850, + [8450] = 903, + [8451] = 871, + [8452] = 884, + [8453] = 899, + [8454] = 8404, + [8455] = 952, + [8456] = 942, + [8457] = 868, + [8458] = 8458, + [8459] = 8459, + [8460] = 8460, + [8461] = 8459, + [8462] = 8462, + [8463] = 8462, + [8464] = 8458, + [8465] = 8460, + [8466] = 8459, + [8467] = 8458, + [8468] = 8462, + [8469] = 1169, + [8470] = 1168, + [8471] = 8471, + [8472] = 8462, + [8473] = 1162, + [8474] = 8474, + [8475] = 8460, + [8476] = 8459, + [8477] = 8458, + [8478] = 1159, + [8479] = 1170, + [8480] = 8460, + [8481] = 8458, + [8482] = 8460, + [8483] = 8462, + [8484] = 8484, + [8485] = 8462, + [8486] = 1000, + [8487] = 8460, + [8488] = 8459, + [8489] = 8458, + [8490] = 8458, + [8491] = 8459, + [8492] = 8460, + [8493] = 8462, + [8494] = 8462, + [8495] = 8460, + [8496] = 8459, + [8497] = 999, + [8498] = 931, + [8499] = 8459, + [8500] = 8458, + [8501] = 8458, + [8502] = 8459, + [8503] = 8503, + [8504] = 8460, + [8505] = 8462, + [8506] = 8462, + [8507] = 997, + [8508] = 8462, + [8509] = 8458, + [8510] = 8484, + [8511] = 8460, + [8512] = 8460, + [8513] = 8459, + [8514] = 8460, + [8515] = 8458, + [8516] = 8516, + [8517] = 8517, + [8518] = 8459, + [8519] = 927, + [8520] = 8458, + [8521] = 8462, + [8522] = 8459, + [8523] = 8460, + [8524] = 8459, + [8525] = 1030, + [8526] = 8458, + [8527] = 8458, + [8528] = 8460, + [8529] = 894, + [8530] = 8462, + [8531] = 8459, + [8532] = 8458, + [8533] = 864, + [8534] = 934, + [8535] = 8458, + [8536] = 911, + [8537] = 8459, + [8538] = 8460, + [8539] = 8459, + [8540] = 8462, + [8541] = 8462, + [8542] = 8484, + [8543] = 8460, + [8544] = 8459, + [8545] = 8458, + [8546] = 8462, + [8547] = 8460, + [8548] = 921, + [8549] = 885, + [8550] = 868, + [8551] = 825, + [8552] = 8484, + [8553] = 994, + [8554] = 8458, + [8555] = 8555, + [8556] = 8459, + [8557] = 8462, + [8558] = 8462, + [8559] = 924, + [8560] = 8460, + [8561] = 8459, + [8562] = 871, + [8563] = 936, + [8564] = 866, + [8565] = 8460, + [8566] = 8462, + [8567] = 942, + [8568] = 8460, + [8569] = 8459, + [8570] = 8458, + [8571] = 1161, + [8572] = 909, + [8573] = 8460, + [8574] = 8471, + [8575] = 8459, + [8576] = 8462, + [8577] = 8458, + [8578] = 8462, + [8579] = 8460, + [8580] = 952, + [8581] = 8459, + [8582] = 8458, + [8583] = 8471, + [8584] = 8471, + [8585] = 896, + [8586] = 8458, + [8587] = 975, + [8588] = 985, + [8589] = 8462, + [8590] = 898, + [8591] = 915, + [8592] = 8460, + [8593] = 8460, + [8594] = 8459, + [8595] = 8458, + [8596] = 899, + [8597] = 8471, + [8598] = 8458, + [8599] = 8462, + [8600] = 8462, + [8601] = 8460, + [8602] = 8459, + [8603] = 8458, + [8604] = 910, + [8605] = 886, + [8606] = 8459, + [8607] = 944, + [8608] = 941, + [8609] = 8609, + [8610] = 8484, + [8611] = 8471, + [8612] = 8460, + [8613] = 8462, + [8614] = 8460, + [8615] = 891, + [8616] = 8462, + [8617] = 867, + [8618] = 8484, + [8619] = 920, + [8620] = 869, + [8621] = 8458, + [8622] = 919, + [8623] = 905, + [8624] = 903, + [8625] = 929, + [8626] = 1001, + [8627] = 8458, + [8628] = 8462, + [8629] = 907, + [8630] = 8459, + [8631] = 8459, + [8632] = 908, + [8633] = 8633, + [8634] = 8634, + [8635] = 8635, + [8636] = 8636, + [8637] = 1001, + [8638] = 8634, + [8639] = 8635, + [8640] = 8635, + [8641] = 8634, + [8642] = 8636, + [8643] = 1030, + [8644] = 8634, + [8645] = 8636, + [8646] = 8635, + [8647] = 8635, + [8648] = 8634, + [8649] = 8633, + [8650] = 8650, + [8651] = 8633, + [8652] = 931, + [8653] = 947, + [8654] = 8654, + [8655] = 945, + [8656] = 946, + [8657] = 8633, + [8658] = 8636, + [8659] = 8633, + [8660] = 8634, + [8661] = 8635, + [8662] = 8636, + [8663] = 8663, + [8664] = 8664, + [8665] = 8636, + [8666] = 8633, + [8667] = 8635, + [8668] = 8634, + [8669] = 8635, + [8670] = 8636, + [8671] = 8635, + [8672] = 8636, + [8673] = 8673, + [8674] = 939, + [8675] = 8633, + [8676] = 8634, + [8677] = 8634, + [8678] = 1161, + [8679] = 8633, + [8680] = 8633, + [8681] = 8634, + [8682] = 8635, + [8683] = 8636, + [8684] = 8633, + [8685] = 8633, + [8686] = 8634, + [8687] = 8687, + [8688] = 8635, + [8689] = 8636, + [8690] = 8634, + [8691] = 8634, + [8692] = 8635, + [8693] = 8636, + [8694] = 8635, + [8695] = 8695, + [8696] = 8696, + [8697] = 8636, + [8698] = 999, + [8699] = 8699, + [8700] = 932, + [8701] = 1000, + [8702] = 8702, + [8703] = 8633, + [8704] = 8633, + [8705] = 1055, + [8706] = 8636, + [8707] = 8635, + [8708] = 8634, + [8709] = 8634, + [8710] = 8633, + [8711] = 8636, + [8712] = 8634, + [8713] = 983, + [8714] = 8633, + [8715] = 943, + [8716] = 8635, + [8717] = 944, + [8718] = 8636, + [8719] = 969, + [8720] = 8635, + [8721] = 8634, + [8722] = 987, + [8723] = 941, + [8724] = 8633, + [8725] = 867, + [8726] = 8633, + [8727] = 8727, + [8728] = 8634, + [8729] = 8635, [8730] = 8730, - [8731] = 8731, - [8732] = 8732, - [8733] = 8733, - [8734] = 8734, + [8731] = 8636, + [8732] = 928, + [8733] = 936, + [8734] = 8633, [8735] = 8735, - [8736] = 8736, - [8737] = 8737, - [8738] = 8738, - [8739] = 8739, - [8740] = 8740, - [8741] = 8741, - [8742] = 8742, - [8743] = 8743, - [8744] = 8744, - [8745] = 8745, - [8746] = 8746, - [8747] = 8747, - [8748] = 8730, - [8749] = 8749, - [8750] = 8750, + [8736] = 937, + [8737] = 1042, + [8738] = 930, + [8739] = 8636, + [8740] = 8635, + [8741] = 8634, + [8742] = 8634, + [8743] = 3724, + [8744] = 8634, + [8745] = 8635, + [8746] = 8633, + [8747] = 960, + [8748] = 971, + [8749] = 966, + [8750] = 956, [8751] = 8751, - [8752] = 8752, - [8753] = 8735, - [8754] = 8754, - [8755] = 8755, - [8756] = 8747, - [8757] = 8755, - [8758] = 8758, - [8759] = 8747, - [8760] = 8731, - [8761] = 8761, - [8762] = 985, - [8763] = 8763, - [8764] = 8755, - [8765] = 8733, - [8766] = 8750, - [8767] = 8732, - [8768] = 8734, - [8769] = 8769, - [8770] = 8750, - [8771] = 8737, - [8772] = 8738, - [8773] = 8773, - [8774] = 8774, - [8775] = 8749, - [8776] = 8739, - [8777] = 8777, - [8778] = 8778, - [8779] = 8730, - [8780] = 8746, - [8781] = 8741, - [8782] = 8782, - [8783] = 8742, - [8784] = 8745, - [8785] = 8785, - [8786] = 8746, - [8787] = 8730, - [8788] = 8749, - [8789] = 8746, - [8790] = 8740, - [8791] = 884, - [8792] = 8740, - [8793] = 8793, - [8794] = 8794, - [8795] = 8732, - [8796] = 8750, - [8797] = 8734, - [8798] = 8731, - [8799] = 8737, - [8800] = 8738, - [8801] = 8749, - [8802] = 8739, - [8803] = 8730, - [8804] = 8740, - [8805] = 8741, - [8806] = 8742, + [8752] = 8636, + [8753] = 8636, + [8754] = 8635, + [8755] = 8634, + [8756] = 8633, + [8757] = 8633, + [8758] = 921, + [8759] = 8635, + [8760] = 8636, + [8761] = 823, + [8762] = 8636, + [8763] = 955, + [8764] = 8635, + [8765] = 8634, + [8766] = 933, + [8767] = 935, + [8768] = 8633, + [8769] = 8633, + [8770] = 8770, + [8771] = 8634, + [8772] = 8635, + [8773] = 8635, + [8774] = 8636, + [8775] = 8775, + [8776] = 963, + [8777] = 8636, + [8778] = 990, + [8779] = 8633, + [8780] = 821, + [8781] = 8634, + [8782] = 8635, + [8783] = 993, + [8784] = 8633, + [8785] = 8636, + [8786] = 8636, + [8787] = 8633, + [8788] = 8635, + [8789] = 8633, + [8790] = 8634, + [8791] = 8635, + [8792] = 8634, + [8793] = 8636, + [8794] = 8636, + [8795] = 935, + [8796] = 8796, + [8797] = 8797, + [8798] = 8798, + [8799] = 8799, + [8800] = 8800, + [8801] = 8801, + [8802] = 8802, + [8803] = 8803, + [8804] = 3724, + [8805] = 8805, + [8806] = 8806, [8807] = 8807, - [8808] = 8745, - [8809] = 8731, - [8810] = 8730, - [8811] = 8749, - [8812] = 8750, - [8813] = 8745, - [8814] = 8742, - [8815] = 8741, - [8816] = 980, - [8817] = 8739, - [8818] = 8731, - [8819] = 8819, + [8808] = 8808, + [8809] = 8809, + [8810] = 8810, + [8811] = 8798, + [8812] = 8812, + [8813] = 8813, + [8814] = 8799, + [8815] = 8802, + [8816] = 8803, + [8817] = 8808, + [8818] = 8809, + [8819] = 8800, [8820] = 8820, - [8821] = 8745, - [8822] = 8822, - [8823] = 8738, + [8821] = 8813, + [8822] = 8806, + [8823] = 8823, [8824] = 8824, - [8825] = 8737, - [8826] = 8737, - [8827] = 8738, - [8828] = 8739, - [8829] = 8741, - [8830] = 8745, - [8831] = 8730, - [8832] = 8749, - [8833] = 8750, - [8834] = 8740, - [8835] = 8734, - [8836] = 962, - [8837] = 958, + [8825] = 851, + [8826] = 8826, + [8827] = 8796, + [8828] = 8801, + [8829] = 8805, + [8830] = 8826, + [8831] = 1058, + [8832] = 1051, + [8833] = 8833, + [8834] = 8834, + [8835] = 8834, + [8836] = 8833, + [8837] = 8837, [8838] = 8838, - [8839] = 8742, - [8840] = 8750, - [8841] = 8731, - [8842] = 8732, - [8843] = 8737, - [8844] = 8738, - [8845] = 955, - [8846] = 8739, - [8847] = 8741, - [8848] = 8745, - [8849] = 8733, - [8850] = 8730, - [8851] = 8749, - [8852] = 8750, - [8853] = 965, - [8854] = 972, - [8855] = 8741, - [8856] = 977, - [8857] = 8857, + [8839] = 8837, + [8840] = 8809, + [8841] = 8841, + [8842] = 8838, + [8843] = 8813, + [8844] = 8841, + [8845] = 8845, + [8846] = 8846, + [8847] = 8847, + [8848] = 8808, + [8849] = 8849, + [8850] = 8846, + [8851] = 8833, + [8852] = 8852, + [8853] = 8849, + [8854] = 8852, + [8855] = 8855, + [8856] = 8855, + [8857] = 8806, [8858] = 8858, - [8859] = 8859, - [8860] = 8749, - [8861] = 8730, - [8862] = 8747, + [8859] = 8809, + [8860] = 8801, + [8861] = 8803, + [8862] = 8802, [8863] = 8863, - [8864] = 1015, - [8865] = 8746, - [8866] = 8737, - [8867] = 8738, - [8868] = 8741, - [8869] = 8730, - [8870] = 8749, - [8871] = 8871, - [8872] = 8739, - [8873] = 8745, - [8874] = 947, - [8875] = 8737, - [8876] = 8742, - [8877] = 8738, - [8878] = 983, - [8879] = 8879, - [8880] = 8741, - [8881] = 984, + [8864] = 8800, + [8865] = 8799, + [8866] = 8797, + [8867] = 1034, + [8868] = 1028, + [8869] = 8838, + [8870] = 8870, + [8871] = 8833, + [8872] = 8809, + [8873] = 8797, + [8874] = 8833, + [8875] = 8809, + [8876] = 8797, + [8877] = 937, + [8878] = 8833, + [8879] = 8870, + [8880] = 960, + [8881] = 8805, [8882] = 8882, - [8883] = 8730, - [8884] = 8740, - [8885] = 8741, - [8886] = 8737, - [8887] = 8735, - [8888] = 8755, - [8889] = 8739, - [8890] = 8749, - [8891] = 8763, - [8892] = 8819, - [8893] = 988, - [8894] = 4027, - [8895] = 8735, - [8896] = 989, - [8897] = 8738, - [8898] = 8737, - [8899] = 8737, - [8900] = 8738, - [8901] = 8730, - [8902] = 8749, - [8903] = 8738, - [8904] = 8904, - [8905] = 8737, - [8906] = 8737, - [8907] = 8738, - [8908] = 929, - [8909] = 8730, - [8910] = 8749, - [8911] = 8911, - [8912] = 997, - [8913] = 8737, - [8914] = 8738, - [8915] = 8749, - [8916] = 1005, - [8917] = 8917, - [8918] = 8737, - [8919] = 8738, - [8920] = 8730, - [8921] = 1020, - [8922] = 1023, - [8923] = 8749, - [8924] = 8737, - [8925] = 8738, + [8883] = 8883, + [8884] = 966, + [8885] = 8809, + [8886] = 8886, + [8887] = 963, + [8888] = 8799, + [8889] = 8800, + [8890] = 8886, + [8891] = 8886, + [8892] = 8797, + [8893] = 990, + [8894] = 8894, + [8895] = 993, + [8896] = 8802, + [8897] = 971, + [8898] = 8803, + [8899] = 956, + [8900] = 8900, + [8901] = 904, + [8902] = 8902, + [8903] = 947, + [8904] = 943, + [8905] = 8805, + [8906] = 8826, + [8907] = 8808, + [8908] = 8796, + [8909] = 8798, + [8910] = 8886, + [8911] = 8799, + [8912] = 8800, + [8913] = 8802, + [8914] = 8803, + [8915] = 833, + [8916] = 8808, + [8917] = 8809, + [8918] = 8833, + [8919] = 8833, + [8920] = 955, + [8921] = 860, + [8922] = 839, + [8923] = 8826, + [8924] = 8813, + [8925] = 930, [8926] = 8926, - [8927] = 8730, - [8928] = 8749, - [8929] = 8737, - [8930] = 8738, - [8931] = 8730, - [8932] = 8731, - [8933] = 8749, - [8934] = 862, - [8935] = 8738, - [8936] = 8730, - [8937] = 8749, - [8938] = 8938, - [8939] = 8737, - [8940] = 8738, - [8941] = 1044, - [8942] = 8730, - [8943] = 1043, - [8944] = 8749, - [8945] = 8738, - [8946] = 8734, - [8947] = 8749, - [8948] = 8948, - [8949] = 8882, - [8950] = 1040, - [8951] = 8730, - [8952] = 850, - [8953] = 1028, - [8954] = 1022, - [8955] = 8819, - [8956] = 992, - [8957] = 8732, - [8958] = 8948, - [8959] = 8882, - [8960] = 8819, - [8961] = 8732, - [8962] = 8962, - [8963] = 8731, - [8964] = 8750, - [8965] = 8948, - [8966] = 8882, - [8967] = 8819, - [8968] = 1058, - [8969] = 8948, - [8970] = 1059, - [8971] = 8882, - [8972] = 8819, - [8973] = 8734, - [8974] = 1063, - [8975] = 8948, - [8976] = 8882, - [8977] = 8977, - [8978] = 8749, - [8979] = 8733, - [8980] = 8732, - [8981] = 8746, - [8982] = 8819, - [8983] = 8733, - [8984] = 8745, - [8985] = 8742, - [8986] = 8882, - [8987] = 8741, - [8988] = 8819, - [8989] = 8740, - [8990] = 8739, - [8991] = 1060, - [8992] = 847, - [8993] = 8819, - [8994] = 8738, - [8995] = 8737, - [8996] = 8731, - [8997] = 8734, - [8998] = 836, - [8999] = 8733, - [9000] = 848, - [9001] = 8882, - [9002] = 860, - [9003] = 8882, - [9004] = 8747, - [9005] = 8735, - [9006] = 8755, - [9007] = 8763, - [9008] = 9008, - [9009] = 8948, - [9010] = 8747, - [9011] = 8735, - [9012] = 8755, - [9013] = 8763, - [9014] = 9014, - [9015] = 9015, - [9016] = 9016, - [9017] = 9017, - [9018] = 9014, - [9019] = 9019, - [9020] = 9015, - [9021] = 929, - [9022] = 884, - [9023] = 9023, - [9024] = 9024, - [9025] = 9025, - [9026] = 9026, - [9027] = 9027, - [9028] = 9023, - [9029] = 1199, - [9030] = 9015, - [9031] = 9024, - [9032] = 9023, - [9033] = 1193, - [9034] = 9024, - [9035] = 9035, - [9036] = 4089, - [9037] = 9037, - [9038] = 4042, - [9039] = 9014, - [9040] = 9040, - [9041] = 1183, - [9042] = 9042, - [9043] = 9043, - [9044] = 4097, - [9045] = 9045, - [9046] = 1209, - [9047] = 1182, - [9048] = 9048, - [9049] = 1181, - [9050] = 4077, - [9051] = 9051, - [9052] = 9019, - [9053] = 4031, - [9054] = 9054, - [9055] = 9051, - [9056] = 9056, - [9057] = 1180, - [9058] = 9015, - [9059] = 9051, - [9060] = 1174, - [9061] = 1170, - [9062] = 9062, - [9063] = 1167, - [9064] = 9064, - [9065] = 9051, - [9066] = 9066, - [9067] = 9019, - [9068] = 9014, - [9069] = 1128, - [9070] = 9014, - [9071] = 1157, - [9072] = 1110, - [9073] = 1136, - [9074] = 9051, - [9075] = 9075, - [9076] = 9017, - [9077] = 1101, - [9078] = 9017, - [9079] = 9079, - [9080] = 9080, - [9081] = 9081, - [9082] = 9082, - [9083] = 1152, - [9084] = 9084, - [9085] = 9051, - [9086] = 9015, - [9087] = 9019, - [9088] = 9051, - [9089] = 9014, - [9090] = 1148, - [9091] = 1145, - [9092] = 1047, - [9093] = 1142, - [9094] = 9017, - [9095] = 9051, - [9096] = 9015, - [9097] = 9035, - [9098] = 9035, - [9099] = 9019, - [9100] = 9051, - [9101] = 1141, - [9102] = 9016, - [9103] = 9014, - [9104] = 9017, - [9105] = 1122, - [9106] = 1108, - [9107] = 9017, - [9108] = 9027, - [9109] = 1172, - [9110] = 1107, - [9111] = 9015, - [9112] = 9015, - [9113] = 9019, - [9114] = 9014, - [9115] = 9115, - [9116] = 9042, - [9117] = 9016, - [9118] = 9015, - [9119] = 1100, - [9120] = 1097, - [9121] = 1096, - [9122] = 9045, - [9123] = 9019, - [9124] = 9019, - [9125] = 1094, - [9126] = 9126, - [9127] = 9014, - [9128] = 9051, - [9129] = 9017, - [9130] = 9015, - [9131] = 9064, - [9132] = 9019, - [9133] = 9014, - [9134] = 9014, - [9135] = 9027, - [9136] = 9017, - [9137] = 9017, - [9138] = 9015, - [9139] = 9035, - [9140] = 9024, - [9141] = 9115, - [9142] = 9042, - [9143] = 9023, - [9144] = 9080, - [9145] = 9051, - [9146] = 9081, - [9147] = 9024, - [9148] = 1082, - [9149] = 1070, - [9150] = 1169, - [9151] = 1069, - [9152] = 9023, - [9153] = 9023, - [9154] = 9045, - [9155] = 9024, - [9156] = 9051, - [9157] = 9023, - [9158] = 9024, - [9159] = 9017, - [9160] = 9160, - [9161] = 9024, - [9162] = 1206, - [9163] = 9024, - [9164] = 9023, - [9165] = 1066, - [9166] = 9035, - [9167] = 1057, - [9168] = 9064, - [9169] = 9019, - [9170] = 1205, - [9171] = 9171, - [9172] = 9172, - [9173] = 9023, - [9174] = 9016, - [9175] = 9051, - [9176] = 1175, - [9177] = 9024, - [9178] = 9043, - [9179] = 9051, - [9180] = 9023, - [9181] = 9024, - [9182] = 9016, - [9183] = 9043, - [9184] = 9064, - [9185] = 1196, - [9186] = 1153, - [9187] = 1150, - [9188] = 9027, - [9189] = 9051, - [9190] = 9023, - [9191] = 9051, - [9192] = 9015, - [9193] = 9024, - [9194] = 1204, - [9195] = 1138, - [9196] = 9014, - [9197] = 9023, - [9198] = 9115, - [9199] = 9042, - [9200] = 9027, - [9201] = 9023, - [9202] = 9024, - [9203] = 9051, - [9204] = 9204, - [9205] = 1056, - [9206] = 1055, - [9207] = 1054, - [9208] = 9208, - [9209] = 9023, - [9210] = 9024, - [9211] = 9211, - [9212] = 1053, - [9213] = 9024, - [9214] = 9214, - [9215] = 9017, - [9216] = 9014, - [9217] = 9019, - [9218] = 9015, - [9219] = 9081, - [9220] = 9080, - [9221] = 9045, - [9222] = 9017, - [9223] = 9014, - [9224] = 9043, - [9225] = 1202, - [9226] = 9019, - [9227] = 9023, - [9228] = 9023, - [9229] = 9015, - [9230] = 9024, - [9231] = 9017, - [9232] = 1051, - [9233] = 9019, - [9234] = 9024, - [9235] = 9019, - [9236] = 9023, - [9237] = 9024, - [9238] = 9015, - [9239] = 1144, - [9240] = 9043, - [9241] = 9024, - [9242] = 9017, - [9243] = 9017, - [9244] = 9080, - [9245] = 9064, - [9246] = 9014, - [9247] = 1200, - [9248] = 9051, - [9249] = 9023, - [9250] = 9019, - [9251] = 9080, - [9252] = 9081, - [9253] = 9043, - [9254] = 9015, - [9255] = 9015, - [9256] = 9017, - [9257] = 1086, - [9258] = 9014, - [9259] = 9015, + [8927] = 8797, + [8928] = 8928, + [8929] = 8806, + [8930] = 8813, + [8931] = 8855, + [8932] = 8932, + [8933] = 8796, + [8934] = 8934, + [8935] = 8834, + [8936] = 8855, + [8937] = 8870, + [8938] = 8852, + [8939] = 928, + [8940] = 8796, + [8941] = 969, + [8942] = 8801, + [8943] = 8809, + [8944] = 8855, + [8945] = 8852, + [8946] = 8796, + [8947] = 8947, + [8948] = 8826, + [8949] = 8805, + [8950] = 8886, + [8951] = 992, + [8952] = 8855, + [8953] = 8837, + [8954] = 8855, + [8955] = 8852, + [8956] = 8849, + [8957] = 8852, + [8958] = 8796, + [8959] = 8959, + [8960] = 8960, + [8961] = 8961, + [8962] = 8838, + [8963] = 8826, + [8964] = 8846, + [8965] = 8855, + [8966] = 8852, + [8967] = 8806, + [8968] = 8826, + [8969] = 8796, + [8970] = 8801, + [8971] = 8796, + [8972] = 8972, + [8973] = 8833, + [8974] = 8826, + [8975] = 8841, + [8976] = 8841, + [8977] = 8796, + [8978] = 8978, + [8979] = 8837, + [8980] = 8855, + [8981] = 8834, + [8982] = 8852, + [8983] = 8796, + [8984] = 8834, + [8985] = 8985, + [8986] = 981, + [8987] = 8837, + [8988] = 8838, + [8989] = 8841, + [8990] = 8855, + [8991] = 8852, + [8992] = 8796, + [8993] = 8846, + [8994] = 8826, + [8995] = 8849, + [8996] = 8852, + [8997] = 8855, + [8998] = 8826, + [8999] = 8796, + [9000] = 987, + [9001] = 8855, + [9002] = 8870, + [9003] = 8852, + [9004] = 8796, + [9005] = 8826, + [9006] = 8826, + [9007] = 933, + [9008] = 8834, + [9009] = 9009, + [9010] = 8855, + [9011] = 9011, + [9012] = 8852, + [9013] = 8796, + [9014] = 8826, + [9015] = 8855, + [9016] = 827, + [9017] = 983, + [9018] = 8826, + [9019] = 830, + [9020] = 8837, + [9021] = 8846, + [9022] = 9022, + [9023] = 8870, + [9024] = 8855, + [9025] = 8852, + [9026] = 8838, + [9027] = 8796, + [9028] = 8826, + [9029] = 8886, + [9030] = 9030, + [9031] = 914, + [9032] = 8852, + [9033] = 8838, + [9034] = 8849, + [9035] = 8796, + [9036] = 8852, + [9037] = 8798, + [9038] = 8799, + [9039] = 8800, + [9040] = 8841, + [9041] = 8855, + [9042] = 8846, + [9043] = 8802, + [9044] = 8803, + [9045] = 8826, + [9046] = 8849, + [9047] = 8852, + [9048] = 8808, + [9049] = 8855, + [9050] = 932, + [9051] = 946, + [9052] = 945, + [9053] = 8870, + [9054] = 8838, + [9055] = 8855, + [9056] = 8852, + [9057] = 8846, + [9058] = 8805, + [9059] = 8838, + [9060] = 8834, + [9061] = 8796, + [9062] = 8826, + [9063] = 8805, + [9064] = 939, + [9065] = 8870, + [9066] = 8855, + [9067] = 8870, + [9068] = 8852, + [9069] = 9069, + [9070] = 9070, + [9071] = 8838, + [9072] = 8834, + [9073] = 9073, + [9074] = 8796, + [9075] = 8826, + [9076] = 8805, + [9077] = 8852, + [9078] = 8870, + [9079] = 8855, + [9080] = 8801, + [9081] = 8846, + [9082] = 8813, + [9083] = 8841, + [9084] = 8838, + [9085] = 8837, + [9086] = 8834, + [9087] = 8846, + [9088] = 9088, + [9089] = 8796, + [9090] = 9090, + [9091] = 8826, + [9092] = 8806, + [9093] = 9093, + [9094] = 8805, + [9095] = 8801, + [9096] = 8806, + [9097] = 9097, + [9098] = 1017, + [9099] = 9099, + [9100] = 9100, + [9101] = 1052, + [9102] = 9102, + [9103] = 9099, + [9104] = 9100, + [9105] = 9099, + [9106] = 9100, + [9107] = 9107, + [9108] = 9108, + [9109] = 9107, + [9110] = 1160, + [9111] = 9111, + [9112] = 9112, + [9113] = 1133, + [9114] = 9114, + [9115] = 1165, + [9116] = 9097, + [9117] = 9107, + [9118] = 9118, + [9119] = 1063, + [9120] = 3889, + [9121] = 3979, + [9122] = 9122, + [9123] = 1062, + [9124] = 3975, + [9125] = 9125, + [9126] = 3871, + [9127] = 9127, + [9128] = 9128, + [9129] = 9129, + [9130] = 3883, + [9131] = 1136, + [9132] = 1170, + [9133] = 1055, + [9134] = 904, + [9135] = 1081, + [9136] = 1061, + [9137] = 9107, + [9138] = 9129, + [9139] = 9139, + [9140] = 9118, + [9141] = 9097, + [9142] = 9128, + [9143] = 9122, + [9144] = 1174, + [9145] = 9129, + [9146] = 1135, + [9147] = 1140, + [9148] = 9102, + [9149] = 1082, + [9150] = 1163, + [9151] = 1169, + [9152] = 1132, + [9153] = 9127, + [9154] = 1128, + [9155] = 1168, + [9156] = 1124, + [9157] = 1123, + [9158] = 9097, + [9159] = 1122, + [9160] = 1099, + [9161] = 1085, + [9162] = 1162, + [9163] = 1059, + [9164] = 1159, + [9165] = 9097, + [9166] = 9122, + [9167] = 9125, + [9168] = 9168, + [9169] = 9122, + [9170] = 9107, + [9171] = 9129, + [9172] = 9118, + [9173] = 9102, + [9174] = 914, + [9175] = 1129, + [9176] = 1042, + [9177] = 1027, + [9178] = 9118, + [9179] = 9118, + [9180] = 9097, + [9181] = 9181, + [9182] = 9122, + [9183] = 9122, + [9184] = 9129, + [9185] = 9107, + [9186] = 9125, + [9187] = 9139, + [9188] = 9129, + [9189] = 1058, + [9190] = 1051, + [9191] = 9122, + [9192] = 9097, + [9193] = 9111, + [9194] = 9107, + [9195] = 9118, + [9196] = 9097, + [9197] = 9122, + [9198] = 9125, + [9199] = 9129, + [9200] = 9122, + [9201] = 9201, + [9202] = 9118, + [9203] = 9097, + [9204] = 9129, + [9205] = 866, + [9206] = 1034, + [9207] = 1028, + [9208] = 9122, + [9209] = 9102, + [9210] = 9102, + [9211] = 9129, + [9212] = 9212, + [9213] = 9118, + [9214] = 9118, + [9215] = 9107, + [9216] = 9118, + [9217] = 9217, + [9218] = 9097, + [9219] = 9111, + [9220] = 9201, + [9221] = 9139, + [9222] = 9201, + [9223] = 9129, + [9224] = 9097, + [9225] = 9097, + [9226] = 9122, + [9227] = 9118, + [9228] = 9122, + [9229] = 9100, + [9230] = 9107, + [9231] = 9212, + [9232] = 9099, + [9233] = 9125, + [9234] = 9129, + [9235] = 9118, + [9236] = 9097, + [9237] = 9201, + [9238] = 9097, + [9239] = 9122, + [9240] = 9129, + [9241] = 9241, + [9242] = 9242, + [9243] = 1137, + [9244] = 1166, + [9245] = 9217, + [9246] = 1026, + [9247] = 9129, + [9248] = 1167, + [9249] = 9107, + [9250] = 9122, + [9251] = 9139, + [9252] = 9118, + [9253] = 9139, + [9254] = 9100, + [9255] = 9097, + [9256] = 1157, + [9257] = 9107, + [9258] = 1079, + [9259] = 9097, [9260] = 9260, - [9261] = 9019, - [9262] = 9024, - [9263] = 9023, - [9264] = 9014, - [9265] = 9017, - [9266] = 9115, - [9267] = 9267, - [9268] = 9115, - [9269] = 9015, - [9270] = 9019, - [9271] = 9014, - [9272] = 9051, - [9273] = 9017, - [9274] = 9017, - [9275] = 9080, - [9276] = 9014, - [9277] = 9277, - [9278] = 9017, - [9279] = 9015, - [9280] = 9019, - [9281] = 1111, - [9282] = 9051, - [9283] = 9019, - [9284] = 9051, - [9285] = 9015, - [9286] = 9014, - [9287] = 1119, - [9288] = 9017, - [9289] = 9015, - [9290] = 9042, - [9291] = 9291, - [9292] = 9081, - [9293] = 9019, - [9294] = 9014, - [9295] = 9016, - [9296] = 9017, - [9297] = 1185, - [9298] = 9015, - [9299] = 9014, - [9300] = 9051, - [9301] = 1126, - [9302] = 9019, - [9303] = 9081, - [9304] = 9064, - [9305] = 1139, - [9306] = 9014, - [9307] = 9017, - [9308] = 1162, - [9309] = 9309, - [9310] = 1166, - [9311] = 1171, - [9312] = 9015, - [9313] = 1191, - [9314] = 9019, - [9315] = 9315, - [9316] = 9015, - [9317] = 1120, - [9318] = 9014, - [9319] = 9017, - [9320] = 9023, - [9321] = 9321, - [9322] = 1099, - [9323] = 9051, - [9324] = 9024, - [9325] = 9024, - [9326] = 9045, - [9327] = 9023, - [9328] = 9019, - [9329] = 9023, - [9330] = 9019, - [9331] = 9064, - [9332] = 9024, - [9333] = 9014, - [9334] = 1168, - [9335] = 9023, - [9336] = 9017, - [9337] = 1124, - [9338] = 1113, - [9339] = 9023, - [9340] = 1063, - [9341] = 1060, - [9342] = 1088, - [9343] = 9045, - [9344] = 9051, - [9345] = 9045, - [9346] = 9035, - [9347] = 9016, - [9348] = 9024, - [9349] = 1076, - [9350] = 9017, - [9351] = 9351, - [9352] = 9019, - [9353] = 919, - [9354] = 9015, - [9355] = 1059, - [9356] = 1058, - [9357] = 9042, - [9358] = 9051, - [9359] = 9014, - [9360] = 9360, - [9361] = 9361, - [9362] = 9051, - [9363] = 9019, - [9364] = 9064, - [9365] = 9115, - [9366] = 9366, - [9367] = 1074, - [9368] = 9016, - [9369] = 9027, - [9370] = 9014, - [9371] = 9051, - [9372] = 9017, - [9373] = 9016, - [9374] = 9015, - [9375] = 9045, - [9376] = 9019, - [9377] = 9045, - [9378] = 9064, - [9379] = 9379, - [9380] = 9380, - [9381] = 9381, + [9261] = 9118, + [9262] = 9129, + [9263] = 9263, + [9264] = 9264, + [9265] = 1112, + [9266] = 9102, + [9267] = 9118, + [9268] = 9268, + [9269] = 9099, + [9270] = 9097, + [9271] = 9107, + [9272] = 1023, + [9273] = 9097, + [9274] = 1172, + [9275] = 9099, + [9276] = 9276, + [9277] = 9099, + [9278] = 1173, + [9279] = 1155, + [9280] = 9100, + [9281] = 9100, + [9282] = 9107, + [9283] = 9100, + [9284] = 9284, + [9285] = 9099, + [9286] = 9099, + [9287] = 9100, + [9288] = 9100, + [9289] = 9108, + [9290] = 9099, + [9291] = 1175, + [9292] = 9292, + [9293] = 9100, + [9294] = 1139, + [9295] = 9099, + [9296] = 1014, + [9297] = 1141, + [9298] = 9125, + [9299] = 9122, + [9300] = 9127, + [9301] = 9128, + [9302] = 9107, + [9303] = 1154, + [9304] = 9097, + [9305] = 9122, + [9306] = 9118, + [9307] = 9099, + [9308] = 9129, + [9309] = 9212, + [9310] = 9107, + [9311] = 1029, + [9312] = 9129, + [9313] = 9122, + [9314] = 9097, + [9315] = 9118, + [9316] = 9129, + [9317] = 9099, + [9318] = 9122, + [9319] = 9100, + [9320] = 9118, + [9321] = 9097, + [9322] = 9107, + [9323] = 9099, + [9324] = 9118, + [9325] = 9100, + [9326] = 9129, + [9327] = 9100, + [9328] = 9122, + [9329] = 9108, + [9330] = 9129, + [9331] = 9097, + [9332] = 9097, + [9333] = 9100, + [9334] = 9099, + [9335] = 9118, + [9336] = 9100, + [9337] = 9108, + [9338] = 9122, + [9339] = 9129, + [9340] = 9122, + [9341] = 9128, + [9342] = 9127, + [9343] = 9099, + [9344] = 9129, + [9345] = 9129, + [9346] = 9139, + [9347] = 9100, + [9348] = 9122, + [9349] = 9111, + [9350] = 9099, + [9351] = 9100, + [9352] = 9099, + [9353] = 9353, + [9354] = 1153, + [9355] = 9355, + [9356] = 9356, + [9357] = 9129, + [9358] = 1043, + [9359] = 1181, + [9360] = 9128, + [9361] = 9118, + [9362] = 9362, + [9363] = 9127, + [9364] = 9099, + [9365] = 9097, + [9366] = 9108, + [9367] = 9118, + [9368] = 9107, + [9369] = 9118, + [9370] = 1066, + [9371] = 9371, + [9372] = 9372, + [9373] = 9127, + [9374] = 9129, + [9375] = 9122, + [9376] = 9107, + [9377] = 9377, + [9378] = 9100, + [9379] = 9128, + [9380] = 9122, + [9381] = 9097, [9382] = 9382, - [9383] = 1202, + [9383] = 9212, [9384] = 9384, - [9385] = 9385, + [9385] = 9129, [9386] = 9386, - [9387] = 9387, - [9388] = 9388, - [9389] = 9389, - [9390] = 9390, - [9391] = 1099, - [9392] = 1088, - [9393] = 9393, - [9394] = 9394, - [9395] = 1076, - [9396] = 9393, - [9397] = 9381, - [9398] = 9398, - [9399] = 1074, - [9400] = 9400, - [9401] = 9401, - [9402] = 9386, - [9403] = 1113, - [9404] = 1120, - [9405] = 1183, - [9406] = 9388, - [9407] = 1138, - [9408] = 9408, - [9409] = 1150, - [9410] = 1153, - [9411] = 1205, + [9387] = 1118, + [9388] = 1182, + [9389] = 9107, + [9390] = 9100, + [9391] = 9125, + [9392] = 9107, + [9393] = 1183, + [9394] = 9099, + [9395] = 9118, + [9396] = 9100, + [9397] = 9125, + [9398] = 9217, + [9399] = 9099, + [9400] = 9217, + [9401] = 9107, + [9402] = 1148, + [9403] = 9107, + [9404] = 1144, + [9405] = 1147, + [9406] = 9107, + [9407] = 9201, + [9408] = 9102, + [9409] = 9100, + [9410] = 9217, + [9411] = 9212, [9412] = 9412, - [9413] = 1206, - [9414] = 9389, - [9415] = 1196, - [9416] = 9416, - [9417] = 9381, - [9418] = 9382, - [9419] = 9390, - [9420] = 9384, - [9421] = 1199, - [9422] = 1193, - [9423] = 9423, - [9424] = 9393, + [9413] = 9097, + [9414] = 9100, + [9415] = 9107, + [9416] = 9099, + [9417] = 9122, + [9418] = 1068, + [9419] = 9100, + [9420] = 9129, + [9421] = 9102, + [9422] = 9099, + [9423] = 9201, + [9424] = 1143, [9425] = 9425, - [9426] = 1182, - [9427] = 1181, - [9428] = 9393, - [9429] = 9381, - [9430] = 9398, - [9431] = 9386, - [9432] = 9432, - [9433] = 9433, - [9434] = 1175, - [9435] = 9435, - [9436] = 9380, - [9437] = 9437, + [9426] = 9108, + [9427] = 9139, + [9428] = 9139, + [9429] = 1185, + [9430] = 9430, + [9431] = 9099, + [9432] = 1177, + [9433] = 9129, + [9434] = 9125, + [9435] = 9122, + [9436] = 9102, + [9437] = 9118, [9438] = 9438, - [9439] = 9388, - [9440] = 9433, - [9441] = 1169, - [9442] = 9442, - [9443] = 9389, - [9444] = 9437, - [9445] = 9416, - [9446] = 9390, - [9447] = 1180, - [9448] = 9437, - [9449] = 9389, - [9450] = 9387, - [9451] = 9386, - [9452] = 9393, - [9453] = 9386, - [9454] = 9381, + [9439] = 9122, + [9440] = 1187, + [9441] = 9217, + [9442] = 9111, + [9443] = 1138, + [9444] = 9107, + [9445] = 1180, + [9446] = 9097, + [9447] = 9107, + [9448] = 9107, + [9449] = 9118, + [9450] = 9212, + [9451] = 9451, + [9452] = 9111, + [9453] = 1120, + [9454] = 9454, [9455] = 9455, - [9456] = 9384, + [9456] = 9139, [9457] = 9457, [9458] = 9458, - [9459] = 9398, - [9460] = 9387, - [9461] = 1174, - [9462] = 9384, - [9463] = 9382, - [9464] = 9398, + [9459] = 9118, + [9460] = 1158, + [9461] = 1186, + [9462] = 9462, + [9463] = 9463, + [9464] = 1185, [9465] = 9465, - [9466] = 9437, - [9467] = 9381, - [9468] = 9382, + [9466] = 9466, + [9467] = 9467, + [9468] = 9468, [9469] = 9469, - [9470] = 9388, - [9471] = 9398, - [9472] = 9387, - [9473] = 9393, - [9474] = 9387, + [9470] = 9470, + [9471] = 1183, + [9472] = 9472, + [9473] = 9473, + [9474] = 9474, [9475] = 9475, - [9476] = 9384, - [9477] = 9382, - [9478] = 9478, - [9479] = 9437, - [9480] = 9389, - [9481] = 9437, - [9482] = 9384, - [9483] = 1170, - [9484] = 9382, - [9485] = 1167, + [9476] = 9468, + [9477] = 9474, + [9478] = 1182, + [9479] = 9479, + [9480] = 9475, + [9481] = 9481, + [9482] = 9468, + [9483] = 9468, + [9484] = 1181, + [9485] = 9468, [9486] = 9486, - [9487] = 9387, - [9488] = 9389, - [9489] = 9387, - [9490] = 9384, - [9491] = 9382, + [9487] = 9487, + [9488] = 9488, + [9489] = 9489, + [9490] = 9490, + [9491] = 9491, [9492] = 9492, - [9493] = 9437, - [9494] = 9437, - [9495] = 9390, - [9496] = 9390, + [9493] = 9493, + [9494] = 9487, + [9495] = 9495, + [9496] = 9479, [9497] = 9497, - [9498] = 9393, - [9499] = 9499, - [9500] = 9387, - [9501] = 9437, - [9502] = 9381, - [9503] = 9398, - [9504] = 9390, - [9505] = 9382, - [9506] = 9384, - [9507] = 9382, - [9508] = 9384, - [9509] = 1157, - [9510] = 1108, - [9511] = 1110, - [9512] = 9425, - [9513] = 9387, - [9514] = 9389, - [9515] = 9437, - [9516] = 9390, - [9517] = 9425, - [9518] = 9387, + [9498] = 9498, + [9499] = 9473, + [9500] = 9489, + [9501] = 1175, + [9502] = 9502, + [9503] = 9498, + [9504] = 9504, + [9505] = 9505, + [9506] = 9506, + [9507] = 1187, + [9508] = 9493, + [9509] = 9472, + [9510] = 9473, + [9511] = 1173, + [9512] = 9489, + [9513] = 9513, + [9514] = 9466, + [9515] = 1120, + [9516] = 9516, + [9517] = 9469, + [9518] = 1172, [9519] = 9519, [9520] = 9520, - [9521] = 9384, - [9522] = 9382, - [9523] = 9523, - [9524] = 9520, - [9525] = 9437, - [9526] = 9393, + [9521] = 9521, + [9522] = 1158, + [9523] = 9466, + [9524] = 9465, + [9525] = 9506, + [9526] = 9498, [9527] = 9527, - [9528] = 9398, - [9529] = 9381, - [9530] = 9387, - [9531] = 9384, - [9532] = 9382, - [9533] = 9437, - [9534] = 1152, - [9535] = 1148, - [9536] = 9523, - [9537] = 9389, - [9538] = 1145, - [9539] = 9520, - [9540] = 1141, - [9541] = 9523, - [9542] = 9542, - [9543] = 9381, - [9544] = 9381, - [9545] = 9520, - [9546] = 9523, - [9547] = 9547, - [9548] = 9520, - [9549] = 9523, - [9550] = 9382, - [9551] = 1122, - [9552] = 1107, - [9553] = 9433, - [9554] = 9381, - [9555] = 9437, - [9556] = 1142, - [9557] = 1097, - [9558] = 1096, - [9559] = 1094, - [9560] = 1047, - [9561] = 1082, - [9562] = 1069, - [9563] = 1066, - [9564] = 1057, - [9565] = 9523, - [9566] = 1056, - [9567] = 1055, - [9568] = 9382, - [9569] = 9569, - [9570] = 1054, - [9571] = 9437, - [9572] = 1100, - [9573] = 9573, - [9574] = 9520, - [9575] = 1053, - [9576] = 9400, - [9577] = 1051, - [9578] = 9578, - [9579] = 1144, - [9580] = 9580, - [9581] = 1086, - [9582] = 1111, - [9583] = 1119, - [9584] = 9389, - [9585] = 1124, - [9586] = 1126, - [9587] = 9382, - [9588] = 9520, - [9589] = 1139, - [9590] = 1162, - [9591] = 1166, - [9592] = 9384, - [9593] = 1171, - [9594] = 9384, - [9595] = 9523, - [9596] = 1185, - [9597] = 1191, - [9598] = 9387, - [9599] = 9401, - [9600] = 9458, - [9601] = 9387, - [9602] = 9475, - [9603] = 9603, - [9604] = 9604, - [9605] = 9605, - [9606] = 9606, - [9607] = 9603, - [9608] = 9425, - [9609] = 9390, - [9610] = 9523, - [9611] = 9387, - [9612] = 9384, - [9613] = 9382, - [9614] = 9569, - [9615] = 9573, - [9616] = 9520, - [9617] = 9384, - [9618] = 9400, - [9619] = 9469, - [9620] = 9387, - [9621] = 9437, - [9622] = 9578, - [9623] = 9580, - [9624] = 9382, - [9625] = 9433, - [9626] = 9390, - [9627] = 9401, - [9628] = 9458, - [9629] = 9475, - [9630] = 9604, - [9631] = 9390, - [9632] = 9606, - [9633] = 9603, - [9634] = 9388, - [9635] = 9384, - [9636] = 9523, - [9637] = 9416, - [9638] = 9387, - [9639] = 9569, - [9640] = 9573, - [9641] = 9641, - [9642] = 9642, - [9643] = 9643, - [9644] = 9400, - [9645] = 9386, - [9646] = 9578, - [9647] = 9384, - [9648] = 9580, - [9649] = 9401, - [9650] = 9458, - [9651] = 9425, - [9652] = 9398, - [9653] = 9433, - [9654] = 9604, - [9655] = 9389, - [9656] = 9381, - [9657] = 9401, - [9658] = 9382, - [9659] = 9458, - [9660] = 9475, - [9661] = 9604, - [9662] = 9387, - [9663] = 9388, - [9664] = 9606, - [9665] = 9393, - [9666] = 9603, - [9667] = 9523, - [9668] = 9394, - [9669] = 9475, - [9670] = 9569, - [9671] = 9573, - [9672] = 9520, - [9673] = 9673, - [9674] = 9400, - [9675] = 9393, - [9676] = 9578, - [9677] = 9580, - [9678] = 9438, - [9679] = 9433, - [9680] = 9580, - [9681] = 9573, - [9682] = 9523, - [9683] = 9458, - [9684] = 9387, - [9685] = 9475, - [9686] = 9604, - [9687] = 9606, - [9688] = 9603, - [9689] = 9689, - [9690] = 9604, - [9691] = 9523, - [9692] = 9435, - [9693] = 9458, - [9694] = 9569, - [9695] = 9435, - [9696] = 9380, - [9697] = 9394, - [9698] = 9573, - [9699] = 9520, - [9700] = 9438, - [9701] = 9438, - [9702] = 9578, - [9703] = 9400, - [9704] = 9704, - [9705] = 9578, - [9706] = 9380, - [9707] = 9580, - [9708] = 9520, - [9709] = 9435, - [9710] = 9523, - [9711] = 9475, + [9528] = 9516, + [9529] = 9529, + [9530] = 9498, + [9531] = 9466, + [9532] = 9492, + [9533] = 9533, + [9534] = 9534, + [9535] = 9535, + [9536] = 9520, + [9537] = 9520, + [9538] = 9472, + [9539] = 9463, + [9540] = 9533, + [9541] = 9472, + [9542] = 9498, + [9543] = 1167, + [9544] = 9498, + [9545] = 1068, + [9546] = 9521, + [9547] = 9488, + [9548] = 9493, + [9549] = 9487, + [9550] = 9535, + [9551] = 9551, + [9552] = 9552, + [9553] = 9534, + [9554] = 9520, + [9555] = 9488, + [9556] = 9462, + [9557] = 9557, + [9558] = 9463, + [9559] = 9488, + [9560] = 9560, + [9561] = 9467, + [9562] = 9462, + [9563] = 9552, + [9564] = 9560, + [9565] = 1160, + [9566] = 9566, + [9567] = 9567, + [9568] = 1066, + [9569] = 9489, + [9570] = 9466, + [9571] = 1157, + [9572] = 9491, + [9573] = 1155, + [9574] = 9490, + [9575] = 1154, + [9576] = 9576, + [9577] = 1166, + [9578] = 1153, + [9579] = 9490, + [9580] = 9520, + [9581] = 9472, + [9582] = 9582, + [9583] = 9465, + [9584] = 9584, + [9585] = 1148, + [9586] = 1144, + [9587] = 1143, + [9588] = 1138, + [9589] = 9498, + [9590] = 9590, + [9591] = 9474, + [9592] = 9592, + [9593] = 9487, + [9594] = 9488, + [9595] = 1118, + [9596] = 9596, + [9597] = 9466, + [9598] = 9598, + [9599] = 1112, + [9600] = 1081, + [9601] = 9601, + [9602] = 9469, + [9603] = 9521, + [9604] = 1017, + [9605] = 9472, + [9606] = 1052, + [9607] = 9520, + [9608] = 9466, + [9609] = 9502, + [9610] = 9472, + [9611] = 1133, + [9612] = 9521, + [9613] = 1165, + [9614] = 1063, + [9615] = 9467, + [9616] = 1062, + [9617] = 1140, + [9618] = 9552, + [9619] = 9498, + [9620] = 1136, + [9621] = 1061, + [9622] = 1059, + [9623] = 1141, + [9624] = 9488, + [9625] = 1139, + [9626] = 9506, + [9627] = 1174, + [9628] = 9479, + [9629] = 9502, + [9630] = 9506, + [9631] = 1135, + [9632] = 9502, + [9633] = 1082, + [9634] = 1163, + [9635] = 9551, + [9636] = 9636, + [9637] = 9502, + [9638] = 9488, + [9639] = 9506, + [9640] = 9506, + [9641] = 9502, + [9642] = 9516, + [9643] = 9519, + [9644] = 9506, + [9645] = 9535, + [9646] = 9462, + [9647] = 9502, + [9648] = 9493, + [9649] = 9490, + [9650] = 1132, + [9651] = 9534, + [9652] = 9560, + [9653] = 1128, + [9654] = 9475, + [9655] = 1124, + [9656] = 1123, + [9657] = 9467, + [9658] = 1122, + [9659] = 9462, + [9660] = 1099, + [9661] = 1085, + [9662] = 9566, + [9663] = 9465, + [9664] = 1137, + [9665] = 9567, + [9666] = 9502, + [9667] = 9506, + [9668] = 9502, + [9669] = 9521, + [9670] = 9519, + [9671] = 9551, + [9672] = 9506, + [9673] = 9487, + [9674] = 9516, + [9675] = 9529, + [9676] = 9535, + [9677] = 9520, + [9678] = 9472, + [9679] = 9493, + [9680] = 9490, + [9681] = 9498, + [9682] = 9534, + [9683] = 9560, + [9684] = 9467, + [9685] = 9566, + [9686] = 9567, + [9687] = 9462, + [9688] = 9502, + [9689] = 9552, + [9690] = 9488, + [9691] = 9462, + [9692] = 9519, + [9693] = 9551, + [9694] = 9475, + [9695] = 9474, + [9696] = 9506, + [9697] = 9560, + [9698] = 9516, + [9699] = 9529, + [9700] = 9468, + [9701] = 9462, + [9702] = 9520, + [9703] = 9535, + [9704] = 9497, + [9705] = 9506, + [9706] = 9502, + [9707] = 9472, + [9708] = 9492, + [9709] = 9498, + [9710] = 9488, + [9711] = 9521, [9712] = 9520, - [9713] = 9400, - [9714] = 9438, - [9715] = 9438, - [9716] = 9433, - [9717] = 9438, - [9718] = 9469, - [9719] = 9401, - [9720] = 9458, - [9721] = 9475, - [9722] = 9398, - [9723] = 9432, - [9724] = 9606, - [9725] = 9603, - [9726] = 9606, - [9727] = 9401, - [9728] = 9523, - [9729] = 9520, - [9730] = 9730, - [9731] = 9520, - [9732] = 9400, - [9733] = 9578, - [9734] = 9437, - [9735] = 9393, - [9736] = 9580, - [9737] = 9416, - [9738] = 9580, - [9739] = 9433, - [9740] = 9401, - [9741] = 9741, - [9742] = 9455, - [9743] = 9433, - [9744] = 9401, - [9745] = 9458, - [9746] = 9389, - [9747] = 9386, - [9748] = 9475, - [9749] = 9604, - [9750] = 9386, - [9751] = 9523, - [9752] = 9520, - [9753] = 9520, - [9754] = 9578, - [9755] = 9580, - [9756] = 9433, - [9757] = 9401, - [9758] = 9475, - [9759] = 9384, - [9760] = 9604, - [9761] = 9425, - [9762] = 9523, - [9763] = 9387, - [9764] = 9520, - [9765] = 9578, - [9766] = 9387, - [9767] = 9384, - [9768] = 9398, - [9769] = 9381, - [9770] = 9382, - [9771] = 9382, - [9772] = 9580, - [9773] = 9773, - [9774] = 9774, - [9775] = 9432, - [9776] = 9384, - [9777] = 9437, - [9778] = 9382, - [9779] = 9437, - [9780] = 9388, - [9781] = 9433, - [9782] = 9455, - [9783] = 9390, - [9784] = 9438, - [9785] = 1168, - [9786] = 9786, - [9787] = 9704, - [9788] = 9389, - [9789] = 9789, - [9790] = 9401, - [9791] = 9437, - [9792] = 9792, - [9793] = 9604, - [9794] = 9794, - [9795] = 9387, - [9796] = 9475, - [9797] = 9580, - [9798] = 9387, - [9799] = 9393, - [9800] = 9384, - [9801] = 9382, - [9802] = 9416, - [9803] = 9394, - [9804] = 9437, - [9805] = 9604, - [9806] = 9523, - [9807] = 9520, - [9808] = 9401, - [9809] = 9580, - [9810] = 9433, - [9811] = 9401, - [9812] = 9475, - [9813] = 9604, - [9814] = 9814, - [9815] = 9384, - [9816] = 9523, - [9817] = 9387, - [9818] = 9520, - [9819] = 9400, - [9820] = 9398, - [9821] = 9384, - [9822] = 9382, - [9823] = 9381, - [9824] = 9382, - [9825] = 9580, - [9826] = 9387, - [9827] = 9437, - [9828] = 9604, - [9829] = 9523, - [9830] = 9520, - [9831] = 9580, - [9832] = 9401, - [9833] = 9604, - [9834] = 9388, - [9835] = 9520, - [9836] = 9523, - [9837] = 9520, - [9838] = 9838, - [9839] = 9469, - [9840] = 9393, - [9841] = 9387, - [9842] = 9469, - [9843] = 9523, - [9844] = 9520, - [9845] = 9469, - [9846] = 9469, - [9847] = 9469, - [9848] = 9469, - [9849] = 9469, - [9850] = 9469, - [9851] = 9469, - [9852] = 9469, - [9853] = 9469, - [9854] = 9469, - [9855] = 9469, - [9856] = 9469, - [9857] = 9469, - [9858] = 9469, - [9859] = 9469, - [9860] = 9469, - [9861] = 9469, - [9862] = 9469, - [9863] = 9469, - [9864] = 9469, - [9865] = 9469, - [9866] = 9394, - [9867] = 9384, - [9868] = 9868, - [9869] = 9435, - [9870] = 9432, - [9871] = 9382, - [9872] = 9432, - [9873] = 9437, - [9874] = 9704, - [9875] = 9527, - [9876] = 9786, - [9877] = 9437, - [9878] = 9547, - [9879] = 9542, - [9880] = 9455, - [9881] = 9486, - [9882] = 9390, - [9883] = 9437, - [9884] = 9390, - [9885] = 9390, - [9886] = 9455, - [9887] = 9387, - [9888] = 9425, - [9889] = 9889, - [9890] = 9390, - [9891] = 9523, - [9892] = 9384, - [9893] = 9382, - [9894] = 9894, - [9895] = 9437, - [9896] = 9390, - [9897] = 9390, - [9898] = 9390, - [9899] = 9390, - [9900] = 9390, - [9901] = 9390, - [9902] = 9390, - [9903] = 9390, - [9904] = 9704, - [9905] = 9868, - [9906] = 9704, - [9907] = 9384, - [9908] = 9382, - [9909] = 9786, - [9910] = 9437, - [9911] = 9547, - [9912] = 9542, - [9913] = 9569, - [9914] = 9486, - [9915] = 9455, - [9916] = 9868, - [9917] = 9704, - [9918] = 9786, - [9919] = 9547, - [9920] = 9542, - [9921] = 9486, - [9922] = 9922, - [9923] = 9868, - [9924] = 9704, - [9925] = 9786, - [9926] = 9547, - [9927] = 9542, - [9928] = 9425, - [9929] = 9929, - [9930] = 9486, - [9931] = 9425, - [9932] = 9390, - [9933] = 9868, - [9934] = 9382, - [9935] = 9394, - [9936] = 9868, - [9937] = 9389, - [9938] = 9547, - [9939] = 9437, - [9940] = 9542, - [9941] = 9387, - [9942] = 9942, - [9943] = 9486, - [9944] = 9868, - [9945] = 9704, - [9946] = 9547, - [9947] = 9542, - [9948] = 9486, - [9949] = 9868, - [9950] = 9547, - [9951] = 9542, - [9952] = 9486, - [9953] = 9868, - [9954] = 9704, - [9955] = 9547, - [9956] = 9542, - [9957] = 9486, - [9958] = 9868, - [9959] = 9704, - [9960] = 9547, - [9961] = 9486, - [9962] = 9868, - [9963] = 9425, - [9964] = 9704, - [9965] = 9547, - [9966] = 9486, - [9967] = 9380, - [9968] = 9704, - [9969] = 9969, - [9970] = 9547, - [9971] = 9971, - [9972] = 9972, - [9973] = 9486, - [9974] = 9868, - [9975] = 9704, - [9976] = 9547, - [9977] = 9486, - [9978] = 9868, - [9979] = 9704, - [9980] = 9547, - [9981] = 9486, - [9982] = 9868, - [9983] = 9983, - [9984] = 9704, - [9985] = 9547, - [9986] = 9486, - [9987] = 9868, - [9988] = 9416, - [9989] = 9386, - [9990] = 9704, - [9991] = 9704, - [9992] = 9868, - [9993] = 9469, - [9994] = 9547, - [9995] = 9486, - [9996] = 9384, - [9997] = 9868, - [9998] = 9704, - [9999] = 9547, - [10000] = 9398, - [10001] = 9523, - [10002] = 9486, - [10003] = 9868, - [10004] = 9704, - [10005] = 9547, - [10006] = 9486, - [10007] = 9868, - [10008] = 9704, - [10009] = 9547, - [10010] = 9486, - [10011] = 9868, - [10012] = 9704, - [10013] = 9547, - [10014] = 9486, - [10015] = 9868, - [10016] = 9704, - [10017] = 9547, - [10018] = 9486, - [10019] = 9868, - [10020] = 9547, - [10021] = 9486, - [10022] = 9868, - [10023] = 9547, - [10024] = 9486, - [10025] = 9868, - [10026] = 9547, - [10027] = 9486, - [10028] = 9381, - [10029] = 9868, - [10030] = 9432, - [10031] = 9547, - [10032] = 9486, - [10033] = 9868, - [10034] = 10034, - [10035] = 9547, - [10036] = 10036, - [10037] = 9486, - [10038] = 9868, - [10039] = 9523, - [10040] = 9520, - [10041] = 9523, - [10042] = 9520, - [10043] = 9523, - [10044] = 9520, - [10045] = 9523, - [10046] = 9520, - [10047] = 9547, - [10048] = 9486, - [10049] = 9527, - [10050] = 9704, - [10051] = 9425, - [10052] = 9438, - [10053] = 9704, - [10054] = 9388, - [10055] = 9604, - [10056] = 9380, - [10057] = 9527, - [10058] = 9435, - [10059] = 9389, - [10060] = 9527, - [10061] = 9527, - [10062] = 9393, - [10063] = 1204, - [10064] = 10064, + [9713] = 9472, + [9714] = 9493, + [9715] = 9529, + [9716] = 9498, + [9717] = 9465, + [9718] = 9718, + [9719] = 9467, + [9720] = 9521, + [9721] = 9534, + [9722] = 9560, + [9723] = 9467, + [9724] = 9473, + [9725] = 9566, + [9726] = 9567, + [9727] = 9502, + [9728] = 9521, + [9729] = 9465, + [9730] = 9488, + [9731] = 9466, + [9732] = 9533, + [9733] = 9733, + [9734] = 9560, + [9735] = 9535, + [9736] = 9487, + [9737] = 9506, + [9738] = 9738, + [9739] = 9502, + [9740] = 9519, + [9741] = 9487, + [9742] = 9742, + [9743] = 9488, + [9744] = 9551, + [9745] = 9466, + [9746] = 9506, + [9747] = 9462, + [9748] = 9748, + [9749] = 9749, + [9750] = 9516, + [9751] = 9529, + [9752] = 9491, + [9753] = 9535, + [9754] = 9534, + [9755] = 9469, + [9756] = 9521, + [9757] = 9529, + [9758] = 9488, + [9759] = 9552, + [9760] = 9534, + [9761] = 9488, + [9762] = 9472, + [9763] = 9498, + [9764] = 9468, + [9765] = 9472, + [9766] = 9493, + [9767] = 9516, + [9768] = 9490, + [9769] = 9520, + [9770] = 9770, + [9771] = 9474, + [9772] = 9472, + [9773] = 9560, + [9774] = 9475, + [9775] = 9467, + [9776] = 9776, + [9777] = 9566, + [9778] = 9567, + [9779] = 9534, + [9780] = 9488, + [9781] = 9502, + [9782] = 1014, + [9783] = 9463, + [9784] = 9490, + [9785] = 9473, + [9786] = 9520, + [9787] = 9552, + [9788] = 9473, + [9789] = 9506, + [9790] = 9465, + [9791] = 9516, + [9792] = 9529, + [9793] = 9466, + [9794] = 9535, + [9795] = 9493, + [9796] = 9552, + [9797] = 9493, + [9798] = 9487, + [9799] = 9488, + [9800] = 9489, + [9801] = 9490, + [9802] = 9489, + [9803] = 9498, + [9804] = 9498, + [9805] = 9472, + [9806] = 1147, + [9807] = 9521, + [9808] = 9534, + [9809] = 9462, + [9810] = 9520, + [9811] = 1079, + [9812] = 9812, + [9813] = 9520, + [9814] = 1186, + [9815] = 9498, + [9816] = 9506, + [9817] = 9521, + [9818] = 9533, + [9819] = 1180, + [9820] = 9560, + [9821] = 1177, + [9822] = 9488, + [9823] = 9465, + [9824] = 9498, + [9825] = 9466, + [9826] = 9469, + [9827] = 9472, + [9828] = 9467, + [9829] = 9490, + [9830] = 9472, + [9831] = 9520, + [9832] = 9488, + [9833] = 9520, + [9834] = 9834, + [9835] = 9479, + [9836] = 9836, + [9837] = 9837, + [9838] = 9533, + [9839] = 9502, + [9840] = 9498, + [9841] = 9489, + [9842] = 9498, + [9843] = 9472, + [9844] = 9472, + [9845] = 9535, + [9846] = 9487, + [9847] = 9479, + [9848] = 9551, + [9849] = 9468, + [9850] = 9465, + [9851] = 1027, + [9852] = 9520, + [9853] = 9506, + [9854] = 9529, + [9855] = 9855, + [9856] = 9491, + [9857] = 9466, + [9858] = 9520, + [9859] = 9535, + [9860] = 9479, + [9861] = 9493, + [9862] = 9490, + [9863] = 9487, + [9864] = 1043, + [9865] = 9488, + [9866] = 9516, + [9867] = 9465, + [9868] = 9560, + [9869] = 9467, + [9870] = 1029, + [9871] = 9498, + [9872] = 9472, + [9873] = 9873, + [9874] = 9502, + [9875] = 9520, + [9876] = 9529, + [9877] = 9535, + [9878] = 9493, + [9879] = 9462, + [9880] = 9466, + [9881] = 9519, + [9882] = 1023, + [9883] = 9463, + [9884] = 9533, + [9885] = 9490, + [9886] = 9560, + [9887] = 9521, + [9888] = 9520, + [9889] = 9488, + [9890] = 9467, + [9891] = 9891, + [9892] = 9463, + [9893] = 9502, + [9894] = 9498, + [9895] = 9895, + [9896] = 9488, + [9897] = 9462, + [9898] = 9506, + [9899] = 9469, + [9900] = 9520, + [9901] = 9535, + [9902] = 9493, + [9903] = 9490, + [9904] = 9560, + [9905] = 9467, + [9906] = 9502, + [9907] = 1026, + [9908] = 9488, + [9909] = 9506, + [9910] = 9535, + [9911] = 9489, + [9912] = 9490, + [9913] = 9467, + [9914] = 9502, + [9915] = 9506, + [9916] = 9535, + [9917] = 9498, + [9918] = 9488, + [9919] = 9490, + [9920] = 9920, + [9921] = 9488, + [9922] = 9467, + [9923] = 9502, + [9924] = 9465, + [9925] = 9506, + [9926] = 9506, + [9927] = 9472, + [9928] = 9492, + [9929] = 9498, + [9930] = 9472, + [9931] = 9492, + [9932] = 9466, + [9933] = 9472, + [9934] = 9492, + [9935] = 9492, + [9936] = 9492, + [9937] = 9492, + [9938] = 9492, + [9939] = 9492, + [9940] = 9492, + [9941] = 9492, + [9942] = 9492, + [9943] = 9492, + [9944] = 9492, + [9945] = 9492, + [9946] = 9492, + [9947] = 9492, + [9948] = 9492, + [9949] = 9492, + [9950] = 9492, + [9951] = 9492, + [9952] = 9492, + [9953] = 9492, + [9954] = 9492, + [9955] = 9552, + [9956] = 9520, + [9957] = 9506, + [9958] = 9502, + [9959] = 9506, + [9960] = 9960, + [9961] = 9497, + [9962] = 9770, + [9963] = 9521, + [9964] = 9582, + [9965] = 9601, + [9966] = 9596, + [9967] = 9488, + [9968] = 9733, + [9969] = 9498, + [9970] = 9472, + [9971] = 9462, + [9972] = 9520, + [9973] = 9502, + [9974] = 9552, + [9975] = 9479, + [9976] = 9487, + [9977] = 9520, + [9978] = 9497, + [9979] = 9462, + [9980] = 9462, + [9981] = 9462, + [9982] = 9521, + [9983] = 9488, + [9984] = 9984, + [9985] = 9462, + [9986] = 9498, + [9987] = 9987, + [9988] = 9472, + [9989] = 9462, + [9990] = 9462, + [9991] = 9520, + [9992] = 9462, + [9993] = 9462, + [9994] = 9567, + [9995] = 9462, + [9996] = 9462, + [9997] = 9997, + [9998] = 1129, + [9999] = 9999, + [10000] = 9462, + [10001] = 9960, + [10002] = 9497, + [10003] = 9770, + [10004] = 10004, + [10005] = 9601, + [10006] = 9489, + [10007] = 9733, + [10008] = 9960, + [10009] = 9497, + [10010] = 9770, + [10011] = 9601, + [10012] = 9596, + [10013] = 10013, + [10014] = 9733, + [10015] = 9960, + [10016] = 9497, + [10017] = 9770, + [10018] = 9520, + [10019] = 9601, + [10020] = 9596, + [10021] = 10021, + [10022] = 9498, + [10023] = 9733, + [10024] = 9960, + [10025] = 9960, + [10026] = 9601, + [10027] = 9552, + [10028] = 9596, + [10029] = 9733, + [10030] = 9552, + [10031] = 9465, + [10032] = 9497, + [10033] = 9601, + [10034] = 9596, + [10035] = 9733, + [10036] = 9960, + [10037] = 9466, + [10038] = 9497, + [10039] = 9472, + [10040] = 9601, + [10041] = 9596, + [10042] = 9733, + [10043] = 9960, + [10044] = 9497, + [10045] = 9601, + [10046] = 9491, + [10047] = 9596, + [10048] = 9733, + [10049] = 9960, + [10050] = 9497, + [10051] = 9601, + [10052] = 9733, + [10053] = 9960, + [10054] = 9497, + [10055] = 9601, + [10056] = 9488, + [10057] = 10057, + [10058] = 9733, + [10059] = 9960, + [10060] = 9497, + [10061] = 9601, + [10062] = 9733, + [10063] = 9491, + [10064] = 9487, + [10065] = 9479, + [10066] = 9520, + [10067] = 9566, + [10068] = 9472, + [10069] = 9960, + [10070] = 9497, + [10071] = 9601, + [10072] = 9733, + [10073] = 9960, + [10074] = 9497, + [10075] = 9596, + [10076] = 9733, + [10077] = 9960, + [10078] = 9498, + [10079] = 9479, + [10080] = 9497, + [10081] = 9960, + [10082] = 9492, + [10083] = 9497, + [10084] = 9601, + [10085] = 9733, + [10086] = 9960, + [10087] = 9498, + [10088] = 9497, + [10089] = 9601, + [10090] = 9502, + [10091] = 9733, + [10092] = 9960, + [10093] = 9497, + [10094] = 9601, + [10095] = 9733, + [10096] = 9960, + [10097] = 9497, + [10098] = 9601, + [10099] = 9733, + [10100] = 9960, + [10101] = 9497, + [10102] = 9601, + [10103] = 9733, + [10104] = 9960, + [10105] = 9497, + [10106] = 9601, + [10107] = 9733, + [10108] = 9960, + [10109] = 9497, + [10110] = 9601, + [10111] = 9733, + [10112] = 9960, + [10113] = 9601, + [10114] = 9733, + [10115] = 9960, + [10116] = 9601, + [10117] = 9487, + [10118] = 9733, + [10119] = 9488, + [10120] = 9960, + [10121] = 9601, + [10122] = 9733, + [10123] = 10123, + [10124] = 9960, + [10125] = 9472, + [10126] = 9601, + [10127] = 9733, + [10128] = 9502, + [10129] = 9506, + [10130] = 9502, + [10131] = 9506, + [10132] = 9502, + [10133] = 9506, + [10134] = 9502, + [10135] = 9506, + [10136] = 9960, + [10137] = 9601, + [10138] = 9582, + [10139] = 9733, + [10140] = 9960, + [10141] = 9601, + [10142] = 9733, + [10143] = 9487, + [10144] = 9520, + [10145] = 9497, + [10146] = 9582, + [10147] = 9468, + [10148] = 9474, + [10149] = 9582, + [10150] = 9582, + [10151] = 9475, + [10152] = 9601, + [10153] = 10153, }; static inline bool sym__alpha_identifier_character_set_1(int32_t c) { @@ -16210,5944 +16344,6556 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(308); - if (lookahead == '!') ADVANCE(385); - if (lookahead == '#') ADVANCE(4); - if (lookahead == '$') ADVANCE(359); - if (lookahead == '%') ADVANCE(380); - if (lookahead == '&') ADVANCE(347); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(351); - if (lookahead == '+') ADVANCE(375); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(377); - if (lookahead == '.') ADVANCE(333); - if (lookahead == '/') ADVANCE(379); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(328); - if (lookahead == '=') ADVANCE(321); - if (lookahead == '>') ADVANCE(330); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == ']') ADVANCE(318); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(799); - if (lookahead == 'c') ADVANCE(784); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(836); - if (lookahead == 'f') ADVANCE(742); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(685); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(791); - if (lookahead == 'p') ADVANCE(795); - if (lookahead == 'r') ADVANCE(731); - if (lookahead == 's') ADVANCE(709); - if (lookahead == 't') ADVANCE(681); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '|') ADVANCE(297); - if (lookahead == '}') ADVANCE(323); + if (eof) ADVANCE(319); + if (lookahead == '!') ADVANCE(397); + if (lookahead == '#') ADVANCE(8); + if (lookahead == '$') ADVANCE(370); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(358); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(344); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(360); + if (lookahead == '@') ADVANCE(510); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(726); + if (lookahead == 'b') ADVANCE(833); + if (lookahead == 'c') ADVANCE(818); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(872); + if (lookahead == 'f') ADVANCE(775); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'l') ADVANCE(715); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(824); + if (lookahead == 'p') ADVANCE(829); + if (lookahead == 'r') ADVANCE(763); + if (lookahead == 's') ADVANCE(739); + if (lookahead == 't') ADVANCE(710); + if (lookahead == 'v') ADVANCE(707); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + lookahead == ' ') SKIP(317) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(385); - if (lookahead == '%') ADVANCE(380); - if (lookahead == '&') ADVANCE(347); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(351); - if (lookahead == '+') ADVANCE(375); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(377); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '/') ADVANCE(379); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(328); - if (lookahead == '=') ADVANCE(321); - if (lookahead == '>') ADVANCE(330); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == ']') ADVANCE(318); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(532); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(621); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(674); - if (lookahead == 'f') ADVANCE(578); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(600); - if (lookahead == 'l') ADVANCE(521); - if (lookahead == 'n') ADVANCE(628); - if (lookahead == 'o') ADVANCE(629); - if (lookahead == 'p') ADVANCE(633); - if (lookahead == 'r') ADVANCE(567); - if (lookahead == 's') ADVANCE(546); - if (lookahead == 't') ADVANCE(518); - if (lookahead == 'v') ADVANCE(515); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '|') ADVANCE(297); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(397); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(358); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(360); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(647); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(566); + if (lookahead == 't') ADVANCE(537); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(385); - if (lookahead == '%') ADVANCE(380); - if (lookahead == '&') ADVANCE(347); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(351); - if (lookahead == '+') ADVANCE(375); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(377); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '/') ADVANCE(379); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(328); - if (lookahead == '=') ADVANCE(321); - if (lookahead == '>') ADVANCE(330); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == ']') ADVANCE(318); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(535); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(626); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(676); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(619); - if (lookahead == 'r') ADVANCE(567); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 'v') ADVANCE(528); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '|') ADVANCE(297); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(397); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(358); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(360); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(588); + if (lookahead == 't') ADVANCE(596); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(387); - if (lookahead == '=') ADVANCE(366); - if (lookahead == 'i') ADVANCE(236); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(309); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(350); - if (lookahead == '+') ADVANCE(374); - if (lookahead == '-') ADVANCE(376); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(536); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(626); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(676); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(619); - if (lookahead == 'r') ADVANCE(567); + if (lookahead == '!') ADVANCE(397); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(388); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(510); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(647); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 'r') ADVANCE(590); if (lookahead == 's') ADVANCE(566); - if (lookahead == 'v') ADVANCE(528); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + if (lookahead == 't') ADVANCE(537); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(384); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == '*') ADVANCE(350); - if (lookahead == '+') ADVANCE(374); - if (lookahead == '-') ADVANCE(376); - if (lookahead == '.') ADVANCE(300); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(24); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(536); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(626); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(676); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(619); - if (lookahead == 'r') ADVANCE(567); - if (lookahead == 's') ADVANCE(565); - if (lookahead == 'v') ADVANCE(528); - if (lookahead == '{') ADVANCE(322); + case 4: + if (lookahead == '!') ADVANCE(397); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(388); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(510); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(588); + if (lookahead == 't') ADVANCE(596); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(386); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == '*') ADVANCE(350); - if (lookahead == '+') ADVANCE(374); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(378); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(533); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(621); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(674); - if (lookahead == 'f') ADVANCE(578); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(600); - if (lookahead == 'l') ADVANCE(521); - if (lookahead == 'n') ADVANCE(628); - if (lookahead == 'o') ADVANCE(629); - if (lookahead == 'p') ADVANCE(633); - if (lookahead == 'r') ADVANCE(567); - if (lookahead == 's') ADVANCE(546); - if (lookahead == 't') ADVANCE(518); - if (lookahead == 'v') ADVANCE(515); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + case 5: + if (lookahead == '!') ADVANCE(397); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(388); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(647); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(566); + if (lookahead == 't') ADVANCE(537); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(386); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == '*') ADVANCE(350); - if (lookahead == '+') ADVANCE(374); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(378); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(536); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(626); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(676); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(619); - if (lookahead == 'r') ADVANCE(567); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 'v') ADVANCE(528); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + case 6: + if (lookahead == '!') ADVANCE(397); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(388); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(588); + if (lookahead == 't') ADVANCE(596); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + lookahead == ' ') SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(399); + if (lookahead == '=') ADVANCE(377); + if (lookahead == 'i') ADVANCE(246); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(320); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(3); - if (lookahead == '%') ADVANCE(380); - if (lookahead == '&') ADVANCE(347); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(351); - if (lookahead == '+') ADVANCE(375); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(377); - if (lookahead == '.') ADVANCE(334); - if (lookahead == '/') ADVANCE(379); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(328); - if (lookahead == '=') ADVANCE(321); - if (lookahead == '>') ADVANCE(330); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == ']') ADVANCE(318); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(532); - if (lookahead == 'c') ADVANCE(627); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(674); - if (lookahead == 'f') ADVANCE(578); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(600); - if (lookahead == 'l') ADVANCE(521); - if (lookahead == 'n') ADVANCE(628); - if (lookahead == 'o') ADVANCE(629); - if (lookahead == 'p') ADVANCE(633); - if (lookahead == 's') ADVANCE(546); - if (lookahead == 't') ADVANCE(518); - if (lookahead == 'v') ADVANCE(515); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '|') ADVANCE(297); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(396); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(387); + if (lookahead == '.') ADVANCE(347); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(556); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(588); + if (lookahead == 't') ADVANCE(596); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(3); - if (lookahead == '%') ADVANCE(380); - if (lookahead == '&') ADVANCE(347); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(351); - if (lookahead == '+') ADVANCE(375); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(377); - if (lookahead == '.') ADVANCE(334); - if (lookahead == '/') ADVANCE(379); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(328); - if (lookahead == '=') ADVANCE(321); - if (lookahead == '>') ADVANCE(330); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == ']') ADVANCE(318); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(535); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(676); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(619); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 'v') ADVANCE(528); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '|') ADVANCE(297); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(396); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(387); + if (lookahead == '.') ADVANCE(310); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(33); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(556); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(587); + if (lookahead == 't') ADVANCE(596); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 11: - if (lookahead == '&') ADVANCE(346); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(25); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == ']') ADVANCE(318); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(699); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(838); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 'i') ADVANCE(782); - if (lookahead == 's') ADVANCE(730); - if (lookahead == 'v') ADVANCE(692); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(398); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '+') ADVANCE(385); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(347); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(553); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(647); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(566); + if (lookahead == 't') ADVANCE(537); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 12: - if (lookahead == '&') ADVANCE(346); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(25); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'c') ADVANCE(789); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(836); - if (lookahead == 'f') ADVANCE(742); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(685); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(791); - if (lookahead == 'p') ADVANCE(795); - if (lookahead == 's') ADVANCE(709); - if (lookahead == 't') ADVANCE(681); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(398); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '+') ADVANCE(385); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(347); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(556); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(588); + if (lookahead == 't') ADVANCE(596); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 13: - if (lookahead == '&') ADVANCE(346); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(25); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == 'a') ADVANCE(533); - if (lookahead == 'c') ADVANCE(627); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(674); - if (lookahead == 'f') ADVANCE(578); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(600); - if (lookahead == 'l') ADVANCE(521); - if (lookahead == 'n') ADVANCE(628); - if (lookahead == 'o') ADVANCE(629); - if (lookahead == 'p') ADVANCE(633); - if (lookahead == 's') ADVANCE(546); - if (lookahead == 't') ADVANCE(518); - if (lookahead == 'v') ADVANCE(515); - if (lookahead == '{') ADVANCE(322); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(358); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(391); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(360); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'c') ADVANCE(652); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 's') ADVANCE(567); + if (lookahead == 't') ADVANCE(538); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 14: - if (lookahead == '&') ADVANCE(346); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(25); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '`') ADVANCE(306); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(358); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(391); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(360); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 's') ADVANCE(589); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 15: - if (lookahead == '&') ADVANCE(346); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'c') ADVANCE(789); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(836); - if (lookahead == 'f') ADVANCE(742); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(685); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(791); - if (lookahead == 'p') ADVANCE(795); - if (lookahead == 's') ADVANCE(728); - if (lookahead == 't') ADVANCE(681); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(391); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(510); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'c') ADVANCE(652); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 's') ADVANCE(567); + if (lookahead == 't') ADVANCE(538); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (sym__alpha_identifier_character_set_3(lookahead)) ADVANCE(839); + lookahead == ' ') SKIP(17) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 16: - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(350); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(699); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(838); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 'i') ADVANCE(782); - if (lookahead == 's') ADVANCE(729); - if (lookahead == 'v') ADVANCE(692); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(391); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(510); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 's') ADVANCE(589); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + lookahead == ' ') SKIP(18) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(699); - if (lookahead == 'c') ADVANCE(800); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(838); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 'i') ADVANCE(782); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 's') ADVANCE(729); - if (lookahead == 'v') ADVANCE(678); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(391); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'c') ADVANCE(652); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 's') ADVANCE(567); + if (lookahead == 't') ADVANCE(538); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(699); - if (lookahead == 'c') ADVANCE(800); - if (lookahead == 'd') ADVANCE(682); - if (lookahead == 'e') ADVANCE(838); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 'i') ADVANCE(782); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 's') ADVANCE(730); - if (lookahead == 'v') ADVANCE(678); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(19); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(391); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(34); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(555); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(705); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(644); + if (lookahead == 's') ADVANCE(589); + if (lookahead == 'v') ADVANCE(548); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(18) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(839); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 19: - if (lookahead == '(') ADVANCE(324); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(20); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '@') ADVANCE(314); - if (lookahead == 'a') ADVANCE(41); - if (lookahead == 'c') ADVANCE(113); - if (lookahead == 'd') ADVANCE(29); - if (lookahead == 'e') ADVANCE(155); - if (lookahead == 'f') ADVANCE(79); - if (lookahead == 'g') ADVANCE(63); - if (lookahead == 'i') ADVANCE(98); - if (lookahead == 'l') ADVANCE(31); - if (lookahead == 'n') ADVANCE(118); - if (lookahead == 'o') ADVANCE(119); - if (lookahead == 'p') ADVANCE(122); - if (lookahead == 's') ADVANCE(52); - if (lookahead == 't') ADVANCE(28); - if (lookahead == 'v') ADVANCE(26); - if (lookahead == '{') ADVANCE(322); + if (lookahead == '&') ADVANCE(367); + END_STATE(); + case 20: + if (lookahead == '&') ADVANCE(357); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '>') ADVANCE(340); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(729); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(874); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 's') ADVANCE(762); + if (lookahead == 'v') ADVANCE(722); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); - END_STATE(); - case 20: - if (lookahead == '/') ADVANCE(492); + lookahead == ' ') SKIP(20) + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 21: - if (lookahead == '/') ADVANCE(20); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '@') ADVANCE(314); - if (lookahead == 'a') ADVANCE(179); - if (lookahead == 'c') ADVANCE(253); - if (lookahead == 'd') ADVANCE(166); - if (lookahead == 'e') ADVANCE(295); - if (lookahead == 'f') ADVANCE(217); - if (lookahead == 'g') ADVANCE(190); - if (lookahead == 'i') ADVANCE(237); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(252); - if (lookahead == 'o') ADVANCE(258); - if (lookahead == 'p') ADVANCE(261); - if (lookahead == 's') ADVANCE(191); - if (lookahead == 't') ADVANCE(168); - if (lookahead == 'v') ADVANCE(164); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(727); + if (lookahead == 'c') ADVANCE(822); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(872); + if (lookahead == 'f') ADVANCE(775); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'l') ADVANCE(715); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(824); + if (lookahead == 'p') ADVANCE(829); + if (lookahead == 's') ADVANCE(740); + if (lookahead == 't') ADVANCE(711); + if (lookahead == 'v') ADVANCE(707); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == 'b') ADVANCE(305); + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 22: - if (lookahead == '/') ADVANCE(20); - if (lookahead == 'g') ADVANCE(720); - if (lookahead == 's') ADVANCE(730); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '>') ADVANCE(340); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == 'a') ADVANCE(553); + if (lookahead == 'c') ADVANCE(652); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 's') ADVANCE(567); + if (lookahead == 't') ADVANCE(538); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (sym__alpha_identifier_character_set_4(lookahead)) ADVANCE(839); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); case 23: - if (lookahead == '/') ADVANCE(505); - if (lookahead == '\\') ADVANCE(291); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(343); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '>') ADVANCE(340); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '`') ADVANCE(316); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(506); - if (lookahead == '\n' || - lookahead == '\r') SKIP(23) - if (lookahead != 0 && - lookahead != '\'') ADVANCE(504); + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 24: - if (lookahead == ':') ADVANCE(360); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '.') ADVANCE(343); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == 'a') ADVANCE(727); + if (lookahead == 'c') ADVANCE(822); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(872); + if (lookahead == 'f') ADVANCE(775); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'l') ADVANCE(715); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(824); + if (lookahead == 'p') ADVANCE(829); + if (lookahead == 's') ADVANCE(760); + if (lookahead == 't') ADVANCE(711); + if (lookahead == 'v') ADVANCE(707); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(24) + if (sym__alpha_identifier_character_set_3(lookahead)) ADVANCE(875); END_STATE(); case 25: - if (lookahead == '>') ADVANCE(352); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(331); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(729); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(874); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 's') ADVANCE(761); + if (lookahead == 'v') ADVANCE(722); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(25) + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 26: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(92); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(729); + if (lookahead == 'c') ADVANCE(834); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(874); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 's') ADVANCE(761); + if (lookahead == 'v') ADVANCE(707); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 27: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(402); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(729); + if (lookahead == 'c') ADVANCE(834); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(874); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 's') ADVANCE(762); + if (lookahead == 'v') ADVANCE(707); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); END_STATE(); case 28: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '(') ADVANCE(335); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ':') ADVANCE(326); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '@') ADVANCE(325); + if (lookahead == 'a') ADVANCE(51); + if (lookahead == 'c') ADVANCE(123); + if (lookahead == 'd') ADVANCE(39); + if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'f') ADVANCE(89); + if (lookahead == 'g') ADVANCE(73); + if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'l') ADVANCE(41); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(129); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 's') ADVANCE(62); + if (lookahead == 't') ADVANCE(38); + if (lookahead == 'v') ADVANCE(36); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(28) + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 29: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == '/') ADVANCE(504); END_STATE(); case 30: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(95); - if (lookahead == 't') ADVANCE(344); + if (lookahead == '/') ADVANCE(29); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '@') ADVANCE(325); + if (lookahead == 'a') ADVANCE(189); + if (lookahead == 'c') ADVANCE(263); + if (lookahead == 'd') ADVANCE(176); + if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'f') ADVANCE(227); + if (lookahead == 'g') ADVANCE(200); + if (lookahead == 'i') ADVANCE(247); + if (lookahead == 'l') ADVANCE(177); + if (lookahead == 'n') ADVANCE(262); + if (lookahead == 'o') ADVANCE(268); + if (lookahead == 'p') ADVANCE(271); + if (lookahead == 's') ADVANCE(201); + if (lookahead == 't') ADVANCE(178); + if (lookahead == 'v') ADVANCE(174); + if (lookahead == '}') ADVANCE(334); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('A' <= lookahead && lookahead <= 'F') || + lookahead == 'b') ADVANCE(315); END_STATE(); case 31: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(147); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == '/') ADVANCE(29); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 's') ADVANCE(762); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(31) + if (sym__alpha_identifier_character_set_4(lookahead)) ADVANCE(875); END_STATE(); case 32: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(88); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == '/') ADVANCE(520); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(521); + if (lookahead == '\n' || + lookahead == '\r') SKIP(32) + if (lookahead != 0 && + lookahead != '\'') ADVANCE(519); END_STATE(); case 33: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == ':') ADVANCE(371); END_STATE(); case 34: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == ':') ADVANCE(366); END_STATE(); case 35: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + if (lookahead == '>') ADVANCE(363); END_STATE(); case 36: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(91); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 37: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(145); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 38: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(146); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 39: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(148); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 40: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(46); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 't') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 41: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'b') ADVANCE(134); - if (lookahead == 'c') ADVANCE(137); - if (lookahead == 'n') ADVANCE(101); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 42: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'b') ADVANCE(93); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 43: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(422); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 44: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(438); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 45: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(140); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 46: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(141); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 47: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(149); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 48: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(394); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 49: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(390); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 50: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(434); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 51: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(61); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'b') ADVANCE(144); + if (lookahead == 'c') ADVANCE(147); + if (lookahead == 'n') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 52: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(30); - if (lookahead == 'u') ADVANCE(132); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'b') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 53: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(99); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 54: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(127); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 55: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(45); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 56: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(48); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 57: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(410); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 58: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(450); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 59: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(426); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 60: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(478); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 61: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(414); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 62: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(482); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(40); + if (lookahead == 'u') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 63: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(138); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 64: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(130); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 65: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(44); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 66: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(123); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 67: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(50); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 68: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(102); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 69: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(47); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 70: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(83); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 71: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(131); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 72: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'f') ADVANCE(75); - if (lookahead == 'l') ADVANCE(82); - if (lookahead == 'n') ADVANCE(66); - if (lookahead == 't') ADVANCE(71); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 73: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'g') ADVANCE(474); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 74: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(154); - if (lookahead == 'o') ADVANCE(150); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 75: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(156); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 76: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(43); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 77: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(51); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(60); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 78: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(94); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 79: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(103); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 80: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(104); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 81: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(117); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 82: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(108); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'f') ADVANCE(85); + if (lookahead == 'l') ADVANCE(92); + if (lookahead == 'n') ADVANCE(76); + if (lookahead == 't') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 83: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(105); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'g') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 84: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(142); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(164); + if (lookahead == 'o') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 85: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(109); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 86: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(110); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 87: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(112); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(61); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 88: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(466); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 89: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(490); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 90: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(454); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 91: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(430); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 92: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(153); - if (lookahead == 'r') ADVANCE(34); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 93: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(76); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 94: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(129); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 95: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(56); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 96: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(85); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 97: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(86); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 98: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(72); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 99: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(470); - if (lookahead == 'r') ADVANCE(37); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 100: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(398); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(466); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 101: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(115); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 102: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(49); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'r') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 103: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(32); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 104: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(96); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 105: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(84); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(66); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 106: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(35); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(95); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 107: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(36); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 108: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(58); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 109: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(60); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(482); + if (lookahead == 'r') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 110: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(62); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 111: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(135); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 112: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(97); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 113: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(111); - if (lookahead == 'r') ADVANCE(114); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 114: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(133); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 115: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(151); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 116: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(125); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 117: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(100); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(46); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 118: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(80); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 119: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(53); - if (lookahead == 'v') ADVANCE(54); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 120: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(55); - if (lookahead == 't') ADVANCE(64); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 121: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(68); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 122: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(74); - if (lookahead == 'u') ADVANCE(42); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 123: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(406); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(121); + if (lookahead == 'r') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 124: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(73); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 125: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(442); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 126: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(77); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 127: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(126); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 128: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(40); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 129: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(65); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(63); + if (lookahead == 'v') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 130: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(106); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(65); + if (lookahead == 't') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 131: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(107); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 132: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(121); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(84); + if (lookahead == 'u') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 133: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(136); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 134: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(143); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 135: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(139); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(454); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 136: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(87); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 137: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(152); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 138: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(340); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 139: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(458); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 140: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(486); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 141: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(462); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 142: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(418); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 143: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(128); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 144: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(27); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 145: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(116); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 146: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(81); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 147: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(70); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 148: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(59); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 149: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(67); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 150: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(69); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 151: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(38); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 152: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'u') ADVANCE(33); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 153: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 154: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'v') ADVANCE(39); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 155: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'x') ADVANCE(120); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 156: - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'x') ADVANCE(446); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 157: - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 158: - if (lookahead == '_') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(500); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 159: - if (lookahead == '_') ADVANCE(159); - if (lookahead == '0' || - lookahead == '1') ADVANCE(502); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 160: - if (lookahead == '_') ADVANCE(160); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(501); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 161: - if (lookahead == '_') ADVANCE(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 162: - if (lookahead == '_') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'u') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 163: - if (lookahead == '`') ADVANCE(840); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(163); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'u') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 164: - if (lookahead == 'a') ADVANCE(230); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'v') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 165: - if (lookahead == 'a') ADVANCE(400); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'x') ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 166: - if (lookahead == 'a') ADVANCE(283); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'x') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(304); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 167: - if (lookahead == 'a') ADVANCE(285); + if (lookahead == '@') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); case 168: - if (lookahead == 'a') ADVANCE(216); + if (lookahead == '_') ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 169: - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 't') ADVANCE(342); + if (lookahead == '_') ADVANCE(169); + if (lookahead == '0' || + lookahead == '1') ADVANCE(517); END_STATE(); case 170: - if (lookahead == 'a') ADVANCE(226); + if (lookahead == '_') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); END_STATE(); case 171: - if (lookahead == 'a') ADVANCE(227); + if (lookahead == '_') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); END_STATE(); case 172: - if (lookahead == 'a') ADVANCE(284); + if (lookahead == '_') ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); END_STATE(); case 173: - if (lookahead == 'a') ADVANCE(263); + if (lookahead == '`') ADVANCE(876); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(173); END_STATE(); case 174: - if (lookahead == 'a') ADVANCE(228); + if (lookahead == 'a') ADVANCE(240); END_STATE(); case 175: - if (lookahead == 'a') ADVANCE(286); + if (lookahead == 'a') ADVANCE(412); END_STATE(); case 176: - if (lookahead == 'a') ADVANCE(229); + if (lookahead == 'a') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 177: - if (lookahead == 'a') ADVANCE(184); + if (lookahead == 'a') ADVANCE(295); END_STATE(); case 178: - if (lookahead == 'a') ADVANCE(287); + if (lookahead == 'a') ADVANCE(226); END_STATE(); case 179: - if (lookahead == 'b') ADVANCE(272); - if (lookahead == 'c') ADVANCE(276); - if (lookahead == 'n') ADVANCE(241); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + if (lookahead == 'a') ADVANCE(243); + if (lookahead == 't') ADVANCE(353); END_STATE(); case 180: - if (lookahead == 'b') ADVANCE(231); + if (lookahead == 'a') ADVANCE(236); END_STATE(); case 181: - if (lookahead == 'c') ADVANCE(420); + if (lookahead == 'a') ADVANCE(237); END_STATE(); case 182: - if (lookahead == 'c') ADVANCE(436); + if (lookahead == 'a') ADVANCE(294); END_STATE(); case 183: - if (lookahead == 'c') ADVANCE(279); + if (lookahead == 'a') ADVANCE(273); END_STATE(); case 184: - if (lookahead == 'c') ADVANCE(280); + if (lookahead == 'a') ADVANCE(238); END_STATE(); case 185: - if (lookahead == 'c') ADVANCE(288); + if (lookahead == 'a') ADVANCE(296); END_STATE(); case 186: - if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'a') ADVANCE(239); END_STATE(); case 187: - if (lookahead == 'd') ADVANCE(388); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 188: - if (lookahead == 'd') ADVANCE(432); + if (lookahead == 'a') ADVANCE(297); END_STATE(); case 189: - if (lookahead == 'd') ADVANCE(200); + if (lookahead == 'b') ADVANCE(282); + if (lookahead == 'c') ADVANCE(286); + if (lookahead == 'n') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 190: - if (lookahead == 'e') ADVANCE(277); + if (lookahead == 'b') ADVANCE(241); END_STATE(); case 191: - if (lookahead == 'e') ADVANCE(169); - if (lookahead == 'u') ADVANCE(271); + if (lookahead == 'c') ADVANCE(432); END_STATE(); case 192: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'c') ADVANCE(448); END_STATE(); case 193: - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'c') ADVANCE(289); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'c') ADVANCE(290); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'c') ADVANCE(298); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'd') ADVANCE(404); END_STATE(); case 197: - if (lookahead == 'e') ADVANCE(448); + if (lookahead == 'd') ADVANCE(400); END_STATE(); case 198: - if (lookahead == 'e') ADVANCE(424); + if (lookahead == 'd') ADVANCE(444); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(476); + if (lookahead == 'd') ADVANCE(210); END_STATE(); case 200: - if (lookahead == 'e') ADVANCE(412); + if (lookahead == 'e') ADVANCE(287); END_STATE(); case 201: - if (lookahead == 'e') ADVANCE(480); + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'u') ADVANCE(281); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(269); + if (lookahead == 'e') ADVANCE(248); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(276); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(262); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 205: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'e') ADVANCE(420); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'e') ADVANCE(436); END_STATE(); case 209: - if (lookahead == 'e') ADVANCE(270); + if (lookahead == 'e') ADVANCE(488); END_STATE(); case 210: - if (lookahead == 'f') ADVANCE(213); - if (lookahead == 'l') ADVANCE(220); - if (lookahead == 'n') ADVANCE(204); - if (lookahead == 't') ADVANCE(209); + if (lookahead == 'e') ADVANCE(424); END_STATE(); case 211: - if (lookahead == 'g') ADVANCE(472); + if (lookahead == 'e') ADVANCE(492); END_STATE(); case 212: - if (lookahead == 'i') ADVANCE(294); - if (lookahead == 'o') ADVANCE(289); + if (lookahead == 'e') ADVANCE(279); END_STATE(); case 213: - if (lookahead == 'i') ADVANCE(296); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 214: - if (lookahead == 'i') ADVANCE(181); + if (lookahead == 'e') ADVANCE(272); END_STATE(); case 215: - if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 216: - if (lookahead == 'i') ADVANCE(232); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 217: - if (lookahead == 'i') ADVANCE(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 218: - if (lookahead == 'i') ADVANCE(244); + if (lookahead == 'e') ADVANCE(231); END_STATE(); case 219: - if (lookahead == 'i') ADVANCE(257); + if (lookahead == 'e') ADVANCE(280); END_STATE(); case 220: - if (lookahead == 'i') ADVANCE(248); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'l') ADVANCE(230); + if (lookahead == 'n') ADVANCE(214); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 221: - if (lookahead == 'i') ADVANCE(245); + if (lookahead == 'g') ADVANCE(484); END_STATE(); case 222: - if (lookahead == 'i') ADVANCE(281); + if (lookahead == 'i') ADVANCE(304); + if (lookahead == 'o') ADVANCE(299); END_STATE(); case 223: - if (lookahead == 'i') ADVANCE(249); + if (lookahead == 'i') ADVANCE(306); END_STATE(); case 224: - if (lookahead == 'i') ADVANCE(250); + if (lookahead == 'i') ADVANCE(191); END_STATE(); case 225: - if (lookahead == 'i') ADVANCE(251); + if (lookahead == 'i') ADVANCE(199); END_STATE(); case 226: - if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'i') ADVANCE(242); END_STATE(); case 227: - if (lookahead == 'l') ADVANCE(488); + if (lookahead == 'i') ADVANCE(253); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 228: - if (lookahead == 'l') ADVANCE(452); + if (lookahead == 'i') ADVANCE(254); END_STATE(); case 229: - if (lookahead == 'l') ADVANCE(428); + if (lookahead == 'i') ADVANCE(267); END_STATE(); case 230: - if (lookahead == 'l') ADVANCE(293); - if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'i') ADVANCE(258); END_STATE(); case 231: - if (lookahead == 'l') ADVANCE(214); + if (lookahead == 'i') ADVANCE(255); END_STATE(); case 232: - if (lookahead == 'l') ADVANCE(268); + if (lookahead == 'i') ADVANCE(291); END_STATE(); case 233: - if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'i') ADVANCE(259); END_STATE(); case 234: - if (lookahead == 'l') ADVANCE(223); + if (lookahead == 'i') ADVANCE(260); END_STATE(); case 235: - if (lookahead == 'l') ADVANCE(224); + if (lookahead == 'i') ADVANCE(261); END_STATE(); case 236: - if (lookahead == 'n') ADVANCE(372); - if (lookahead == 's') ADVANCE(373); + if (lookahead == 'l') ADVANCE(476); END_STATE(); case 237: - if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'l') ADVANCE(500); END_STATE(); case 238: - if (lookahead == 'n') ADVANCE(468); - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'l') ADVANCE(464); END_STATE(); case 239: - if (lookahead == 'n') ADVANCE(396); + if (lookahead == 'l') ADVANCE(440); END_STATE(); case 240: - if (lookahead == 'n') ADVANCE(274); + if (lookahead == 'l') ADVANCE(303); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 241: - if (lookahead == 'n') ADVANCE(255); + if (lookahead == 'l') ADVANCE(224); END_STATE(); case 242: - if (lookahead == 'n') ADVANCE(187); + if (lookahead == 'l') ADVANCE(278); END_STATE(); case 243: - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'l') ADVANCE(205); END_STATE(); case 244: - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'l') ADVANCE(233); END_STATE(); case 245: - if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'l') ADVANCE(234); END_STATE(); case 246: - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(383); + if (lookahead == 's') ADVANCE(384); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(176); + if (lookahead == 'n') ADVANCE(220); END_STATE(); case 248: - if (lookahead == 'n') ADVANCE(197); + if (lookahead == 'n') ADVANCE(480); + if (lookahead == 'r') ADVANCE(182); END_STATE(); case 249: - if (lookahead == 'n') ADVANCE(199); + if (lookahead == 'n') ADVANCE(408); END_STATE(); case 250: - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'n') ADVANCE(284); END_STATE(); case 251: - if (lookahead == 'n') ADVANCE(235); + if (lookahead == 'n') ADVANCE(265); END_STATE(); case 252: - if (lookahead == 'o') ADVANCE(218); + if (lookahead == 'n') ADVANCE(197); END_STATE(); case 253: - if (lookahead == 'o') ADVANCE(240); - if (lookahead == 'r') ADVANCE(254); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + if (lookahead == 'n') ADVANCE(180); END_STATE(); case 254: - if (lookahead == 'o') ADVANCE(273); + if (lookahead == 'n') ADVANCE(244); END_STATE(); case 255: - if (lookahead == 'o') ADVANCE(290); + if (lookahead == 'n') ADVANCE(232); END_STATE(); case 256: - if (lookahead == 'o') ADVANCE(264); + if (lookahead == 'n') ADVANCE(184); END_STATE(); case 257: - if (lookahead == 'o') ADVANCE(239); + if (lookahead == 'n') ADVANCE(186); END_STATE(); case 258: - if (lookahead == 'p') ADVANCE(192); - if (lookahead == 'v') ADVANCE(193); + if (lookahead == 'n') ADVANCE(207); END_STATE(); case 259: - if (lookahead == 'p') ADVANCE(194); - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 260: - if (lookahead == 'p') ADVANCE(206); + if (lookahead == 'n') ADVANCE(211); END_STATE(); case 261: - if (lookahead == 'r') ADVANCE(212); - if (lookahead == 'u') ADVANCE(180); + if (lookahead == 'n') ADVANCE(245); END_STATE(); case 262: - if (lookahead == 'r') ADVANCE(404); + if (lookahead == 'o') ADVANCE(228); END_STATE(); case 263: - if (lookahead == 'r') ADVANCE(211); + if (lookahead == 'o') ADVANCE(250); + if (lookahead == 'r') ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 264: - if (lookahead == 'r') ADVANCE(440); + if (lookahead == 'o') ADVANCE(283); END_STATE(); case 265: - if (lookahead == 'r') ADVANCE(215); + if (lookahead == 'o') ADVANCE(300); END_STATE(); case 266: - if (lookahead == 'r') ADVANCE(265); + if (lookahead == 'o') ADVANCE(274); END_STATE(); case 267: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'o') ADVANCE(249); END_STATE(); case 268: - if (lookahead == 'r') ADVANCE(203); + if (lookahead == 'p') ADVANCE(202); + if (lookahead == 'v') ADVANCE(203); END_STATE(); case 269: - if (lookahead == 'r') ADVANCE(246); + if (lookahead == 'p') ADVANCE(204); + if (lookahead == 't') ADVANCE(212); END_STATE(); case 270: - if (lookahead == 'r') ADVANCE(247); + if (lookahead == 'p') ADVANCE(216); END_STATE(); case 271: - if (lookahead == 's') ADVANCE(260); + if (lookahead == 'r') ADVANCE(222); + if (lookahead == 'u') ADVANCE(190); END_STATE(); case 272: - if (lookahead == 's') ADVANCE(282); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + if (lookahead == 'r') ADVANCE(416); END_STATE(); case 273: - if (lookahead == 's') ADVANCE(275); + if (lookahead == 'r') ADVANCE(221); END_STATE(); case 274: - if (lookahead == 's') ADVANCE(278); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 275: - if (lookahead == 's') ADVANCE(225); + if (lookahead == 'r') ADVANCE(225); END_STATE(); case 276: - if (lookahead == 't') ADVANCE(292); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + if (lookahead == 'r') ADVANCE(275); END_STATE(); case 277: - if (lookahead == 't') ADVANCE(338); + if (lookahead == 'r') ADVANCE(187); END_STATE(); case 278: - if (lookahead == 't') ADVANCE(456); + if (lookahead == 'r') ADVANCE(213); END_STATE(); case 279: - if (lookahead == 't') ADVANCE(484); + if (lookahead == 'r') ADVANCE(256); END_STATE(); case 280: - if (lookahead == 't') ADVANCE(460); + if (lookahead == 'r') ADVANCE(257); END_STATE(); case 281: - if (lookahead == 't') ADVANCE(416); + if (lookahead == 's') ADVANCE(270); END_STATE(); case 282: - if (lookahead == 't') ADVANCE(267); - END_STATE(); - case 283: - if (lookahead == 't') ADVANCE(165); + if (lookahead == 's') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); + END_STATE(); + case 283: + if (lookahead == 's') ADVANCE(285); END_STATE(); case 284: - if (lookahead == 't') ADVANCE(256); + if (lookahead == 's') ADVANCE(288); END_STATE(); case 285: - if (lookahead == 't') ADVANCE(208); + if (lookahead == 's') ADVANCE(235); END_STATE(); case 286: - if (lookahead == 't') ADVANCE(219); + if (lookahead == 't') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); END_STATE(); case 287: - if (lookahead == 't') ADVANCE(198); + if (lookahead == 't') ADVANCE(349); END_STATE(); case 288: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 't') ADVANCE(468); END_STATE(); case 289: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 't') ADVANCE(496); END_STATE(); case 290: - if (lookahead == 't') ADVANCE(175); + if (lookahead == 't') ADVANCE(472); END_STATE(); case 291: - if (lookahead == 'u') ADVANCE(841); - if (lookahead == '"' || - lookahead == '$' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'b' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(843); + if (lookahead == 't') ADVANCE(428); END_STATE(); case 292: - if (lookahead == 'u') ADVANCE(171); + if (lookahead == 't') ADVANCE(277); END_STATE(); case 293: - if (lookahead == 'u') ADVANCE(196); + if (lookahead == 't') ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); END_STATE(); case 294: - if (lookahead == 'v') ADVANCE(178); + if (lookahead == 't') ADVANCE(266); END_STATE(); case 295: - if (lookahead == 'x') ADVANCE(259); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + if (lookahead == 't') ADVANCE(218); END_STATE(); case 296: - if (lookahead == 'x') ADVANCE(444); + if (lookahead == 't') ADVANCE(229); END_STATE(); case 297: - if (lookahead == '|') ADVANCE(357); + if (lookahead == 't') ADVANCE(208); END_STATE(); case 298: - if (lookahead == '+' || - lookahead == '-') ADVANCE(301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + if (lookahead == 't') ADVANCE(215); END_STATE(); case 299: - if (lookahead == '0' || - lookahead == '1') ADVANCE(502); + if (lookahead == 't') ADVANCE(217); END_STATE(); case 300: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 301: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + if (lookahead == 'u') ADVANCE(877); + if (lookahead == '"' || + lookahead == '$' || + lookahead == '\'' || + lookahead == '\\' || + lookahead == 'b' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(879); END_STATE(); case 302: + if (lookahead == 'u') ADVANCE(181); + END_STATE(); + case 303: + if (lookahead == 'u') ADVANCE(206); + END_STATE(); + case 304: + if (lookahead == 'v') ADVANCE(188); + END_STATE(); + case 305: + if (lookahead == 'x') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(501); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); - case 303: + case 306: + if (lookahead == 'x') ADVANCE(456); + END_STATE(); + case 307: + if (lookahead == '|') ADVANCE(368); + END_STATE(); + case 308: + if (lookahead == '+' || + lookahead == '-') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); + END_STATE(); + case 309: + if (lookahead == '0' || + lookahead == '1') ADVANCE(517); + END_STATE(); + case 310: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + END_STATE(); + case 311: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); + END_STATE(); + case 312: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(842); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); END_STATE(); - case 304: + case 313: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(878); END_STATE(); - case 305: + case 314: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); END_STATE(); - case 306: + case 315: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + END_STATE(); + case 316: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '`') ADVANCE(163); + lookahead != '`') ADVANCE(173); END_STATE(); - case 307: - if (eof) ADVANCE(308); - if (lookahead == '!') ADVANCE(384); - if (lookahead == '#') ADVANCE(4); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(503); - if (lookahead == '(') ADVANCE(324); - if (lookahead == ')') ADVANCE(326); - if (lookahead == '*') ADVANCE(350); - if (lookahead == '+') ADVANCE(374); - if (lookahead == ',') ADVANCE(325); - if (lookahead == '-') ADVANCE(378); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(499); - if (lookahead == ':') ADVANCE(316); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '>') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(314); - if (lookahead == '[') ADVANCE(317); - if (lookahead == '`') ADVANCE(306); - if (lookahead == 'a') ADVANCE(533); - if (lookahead == 'b') ADVANCE(637); - if (lookahead == 'c') ADVANCE(621); - if (lookahead == 'd') ADVANCE(519); - if (lookahead == 'e') ADVANCE(674); - if (lookahead == 'f') ADVANCE(578); - if (lookahead == 'g') ADVANCE(557); - if (lookahead == 'i') ADVANCE(600); - if (lookahead == 'l') ADVANCE(521); - if (lookahead == 'n') ADVANCE(628); - if (lookahead == 'o') ADVANCE(629); - if (lookahead == 'p') ADVANCE(633); - if (lookahead == 'r') ADVANCE(567); - if (lookahead == 's') ADVANCE(546); - if (lookahead == 't') ADVANCE(518); - if (lookahead == 'v') ADVANCE(515); - if (lookahead == '{') ADVANCE(322); - if (lookahead == '}') ADVANCE(323); + case 317: + if (eof) ADVANCE(319); + if (lookahead == '!') ADVANCE(397); + if (lookahead == '#') ADVANCE(8); + if (lookahead == '$') ADVANCE(370); + if (lookahead == '%') ADVANCE(392); + if (lookahead == '&') ADVANCE(358); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(362); + if (lookahead == '+') ADVANCE(386); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '.') ADVANCE(344); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(339); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '>') ADVANCE(341); + if (lookahead == '?') ADVANCE(360); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == ']') ADVANCE(329); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(726); + if (lookahead == 'b') ADVANCE(833); + if (lookahead == 'c') ADVANCE(818); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(872); + if (lookahead == 'f') ADVANCE(775); + if (lookahead == 'g') ADVANCE(752); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'l') ADVANCE(715); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(824); + if (lookahead == 'p') ADVANCE(829); + if (lookahead == 'r') ADVANCE(763); + if (lookahead == 's') ADVANCE(739); + if (lookahead == 't') ADVANCE(710); + if (lookahead == 'v') ADVANCE(707); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(334); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(307) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(500); + lookahead == ' ') SKIP(317) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + END_STATE(); + case 318: + if (eof) ADVANCE(319); + if (lookahead == '!') ADVANCE(396); + if (lookahead == '#') ADVANCE(8); + if (lookahead == '&') ADVANCE(357); + if (lookahead == '\'') ADVANCE(518); + if (lookahead == '(') ADVANCE(335); + if (lookahead == ')') ADVANCE(337); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '+') ADVANCE(385); + if (lookahead == ',') ADVANCE(336); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '.') ADVANCE(347); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '0') ADVANCE(514); + if (lookahead == ':') ADVANCE(327); + if (lookahead == ';') ADVANCE(348); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '>') ADVANCE(340); + if (lookahead == '?') ADVANCE(359); + if (lookahead == '@') ADVANCE(325); + if (lookahead == '[') ADVANCE(328); + if (lookahead == '`') ADVANCE(316); + if (lookahead == 'a') ADVANCE(553); + if (lookahead == 'b') ADVANCE(664); + if (lookahead == 'c') ADVANCE(647); + if (lookahead == 'd') ADVANCE(539); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(541); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'p') ADVANCE(660); + if (lookahead == 'r') ADVANCE(590); + if (lookahead == 's') ADVANCE(566); + if (lookahead == 't') ADVANCE(537); + if (lookahead == 'v') ADVANCE(534); + if (lookahead == '{') ADVANCE(333); + if (lookahead == '}') ADVANCE(334); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(318) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(839); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); END_STATE(); - case 308: + case 319: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 309: + case 320: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 310: + case 321: ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '\r') ADVANCE(492); + if (lookahead == '\r') ADVANCE(504); if (lookahead != 0 && - lookahead != '\n') ADVANCE(310); + lookahead != '\n') ADVANCE(321); END_STATE(); - case 311: + case 322: ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(312); + if (lookahead == '/') ADVANCE(323); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(311); + lookahead == ' ') ADVANCE(322); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(313); + lookahead != '\r') ADVANCE(324); END_STATE(); - case 312: + case 323: ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(310); + if (lookahead == '/') ADVANCE(321); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(313); + lookahead != '\r') ADVANCE(324); END_STATE(); - case 313: + case 324: ACCEPT_TOKEN(aux_sym_shebang_line_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(313); + lookahead != '\r') ADVANCE(324); END_STATE(); - case 314: + case 325: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 315: + case 326: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 316: + case 327: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(360); + if (lookahead == ':') ADVANCE(371); END_STATE(); - case 317: + case 328: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 318: + case 329: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 319: + case 330: ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); - case 320: + case 331: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 321: + case 332: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(368); + if (lookahead == '=') ADVANCE(379); END_STATE(); - case 322: + case 333: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 323: + case 334: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 324: + case 335: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 325: + case 336: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 326: + case 337: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 327: + case 338: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 328: + case 339: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); END_STATE(); - case 329: + case 340: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 330: + case 341: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(371); + if (lookahead == '=') ADVANCE(382); END_STATE(); - case 331: + case 342: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 332: + case 343: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(319); + if (lookahead == '*') ADVANCE(330); END_STATE(); - case 333: + case 344: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(319); - if (lookahead == '.') ADVANCE(354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (lookahead == '*') ADVANCE(330); + if (lookahead == '.') ADVANCE(365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); END_STATE(); - case 334: + case 345: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(354); + if (lookahead == '.') ADVANCE(365); END_STATE(); - case 335: + case 346: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (lookahead == '.') ADVANCE(365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); END_STATE(); - case 336: + case 347: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); END_STATE(); - case 337: + case 348: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 338: + case 349: ACCEPT_TOKEN(anon_sym_get); END_STATE(); - case 339: + case 350: ACCEPT_TOKEN(anon_sym_get); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 340: + case 351: ACCEPT_TOKEN(anon_sym_get); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 341: + case 352: ACCEPT_TOKEN(anon_sym_get); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 342: + case 353: ACCEPT_TOKEN(anon_sym_set); END_STATE(); - case 343: + case 354: ACCEPT_TOKEN(anon_sym_set); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 344: + case 355: ACCEPT_TOKEN(anon_sym_set); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 345: + case 356: ACCEPT_TOKEN(anon_sym_set); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 346: + case 357: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 347: + case 358: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(356); + if (lookahead == '&') ADVANCE(367); END_STATE(); - case 348: + case 359: ACCEPT_TOKEN(sym__quest); END_STATE(); - case 349: + case 360: ACCEPT_TOKEN(sym__quest); - if (lookahead == ':') ADVANCE(355); + if (lookahead == ':') ADVANCE(366); END_STATE(); - case 350: + case 361: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 351: + case 362: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(363); + if (lookahead == '=') ADVANCE(374); END_STATE(); - case 352: + case 363: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 353: + case 364: ACCEPT_TOKEN(sym_label); END_STATE(); - case 354: + case 365: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 355: + case 366: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 356: + case 367: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 357: + case 368: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 358: + case 369: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 359: + case 370: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(358); + if (lookahead == '{') ADVANCE(369); END_STATE(); - case 360: + case 371: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 361: + case 372: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 362: + case 373: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 363: + case 374: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 364: + case 375: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 365: + case 376: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 366: + case 377: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(367); + if (lookahead == '=') ADVANCE(378); END_STATE(); - case 367: + case 378: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 368: + case 379: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(369); + if (lookahead == '=') ADVANCE(380); END_STATE(); - case 369: + case 380: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 370: + case 381: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 371: + case 382: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 372: + case 383: ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); - case 373: + case 384: ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); - case 374: + case 385: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(382); + if (lookahead == '+') ADVANCE(394); END_STATE(); - case 375: + case 386: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(382); - if (lookahead == '=') ADVANCE(361); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '=') ADVANCE(372); END_STATE(); - case 376: + case 387: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); + if (lookahead == '-') ADVANCE(395); END_STATE(); - case 377: + case 388: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '=') ADVANCE(362); - if (lookahead == '>') ADVANCE(352); + if (lookahead == '-') ADVANCE(395); + if (lookahead == '=') ADVANCE(373); END_STATE(); - case 378: + case 389: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '>') ADVANCE(352); + if (lookahead == '-') ADVANCE(395); + if (lookahead == '=') ADVANCE(373); + if (lookahead == '>') ADVANCE(363); END_STATE(); - case 379: + case 390: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(395); + if (lookahead == '>') ADVANCE(363); + END_STATE(); + case 391: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(492); - if (lookahead == '=') ADVANCE(364); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '=') ADVANCE(375); END_STATE(); - case 380: + case 392: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(365); + if (lookahead == '=') ADVANCE(376); END_STATE(); - case 381: + case 393: ACCEPT_TOKEN(anon_sym_as_QMARK); END_STATE(); - case 382: + case 394: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 383: + case 395: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 384: + case 396: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 385: + case 397: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(387); - if (lookahead == '=') ADVANCE(366); - if (lookahead == 'i') ADVANCE(236); + if (lookahead == '!') ADVANCE(399); + if (lookahead == '=') ADVANCE(377); + if (lookahead == 'i') ADVANCE(246); END_STATE(); - case 386: + case 398: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == 'i') ADVANCE(236); + if (lookahead == 'i') ADVANCE(246); END_STATE(); - case 387: + case 399: ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); - case 388: + case 400: ACCEPT_TOKEN(anon_sym_suspend); END_STATE(); - case 389: + case 401: ACCEPT_TOKEN(anon_sym_suspend); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 390: + case 402: ACCEPT_TOKEN(anon_sym_suspend); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 391: + case 403: ACCEPT_TOKEN(anon_sym_suspend); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 392: + case 404: ACCEPT_TOKEN(anon_sym_sealed); END_STATE(); - case 393: + case 405: ACCEPT_TOKEN(anon_sym_sealed); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 394: + case 406: ACCEPT_TOKEN(anon_sym_sealed); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 395: + case 407: ACCEPT_TOKEN(anon_sym_sealed); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 396: + case 408: ACCEPT_TOKEN(anon_sym_annotation); END_STATE(); - case 397: + case 409: ACCEPT_TOKEN(anon_sym_annotation); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 398: + case 410: ACCEPT_TOKEN(anon_sym_annotation); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 399: + case 411: ACCEPT_TOKEN(anon_sym_annotation); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 400: + case 412: ACCEPT_TOKEN(anon_sym_data); END_STATE(); - case 401: + case 413: ACCEPT_TOKEN(anon_sym_data); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 402: + case 414: ACCEPT_TOKEN(anon_sym_data); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 403: + case 415: ACCEPT_TOKEN(anon_sym_data); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 404: + case 416: ACCEPT_TOKEN(anon_sym_inner); END_STATE(); - case 405: + case 417: ACCEPT_TOKEN(anon_sym_inner); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 406: + case 418: ACCEPT_TOKEN(anon_sym_inner); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 407: + case 419: ACCEPT_TOKEN(anon_sym_inner); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 408: + case 420: ACCEPT_TOKEN(anon_sym_value); END_STATE(); - case 409: + case 421: ACCEPT_TOKEN(anon_sym_value); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 410: + case 422: ACCEPT_TOKEN(anon_sym_value); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 411: + case 423: ACCEPT_TOKEN(anon_sym_value); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 412: + case 424: ACCEPT_TOKEN(anon_sym_override); END_STATE(); - case 413: + case 425: ACCEPT_TOKEN(anon_sym_override); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 414: + case 426: ACCEPT_TOKEN(anon_sym_override); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 415: + case 427: ACCEPT_TOKEN(anon_sym_override); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 416: + case 428: ACCEPT_TOKEN(anon_sym_lateinit); END_STATE(); - case 417: + case 429: ACCEPT_TOKEN(anon_sym_lateinit); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 418: + case 430: ACCEPT_TOKEN(anon_sym_lateinit); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 419: + case 431: ACCEPT_TOKEN(anon_sym_lateinit); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 420: + case 432: ACCEPT_TOKEN(anon_sym_public); END_STATE(); - case 421: + case 433: ACCEPT_TOKEN(anon_sym_public); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 422: + case 434: ACCEPT_TOKEN(anon_sym_public); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 423: + case 435: ACCEPT_TOKEN(anon_sym_public); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 424: + case 436: ACCEPT_TOKEN(anon_sym_private); END_STATE(); - case 425: + case 437: ACCEPT_TOKEN(anon_sym_private); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 426: + case 438: ACCEPT_TOKEN(anon_sym_private); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 427: + case 439: ACCEPT_TOKEN(anon_sym_private); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 428: + case 440: ACCEPT_TOKEN(anon_sym_internal); END_STATE(); - case 429: + case 441: ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 430: + case 442: ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 431: + case 443: ACCEPT_TOKEN(anon_sym_internal); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 432: + case 444: ACCEPT_TOKEN(anon_sym_protected); END_STATE(); - case 433: + case 445: ACCEPT_TOKEN(anon_sym_protected); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 434: + case 446: ACCEPT_TOKEN(anon_sym_protected); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 435: + case 447: ACCEPT_TOKEN(anon_sym_protected); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 436: + case 448: ACCEPT_TOKEN(anon_sym_tailrec); END_STATE(); - case 437: + case 449: ACCEPT_TOKEN(anon_sym_tailrec); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 438: + case 450: ACCEPT_TOKEN(anon_sym_tailrec); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 439: + case 451: ACCEPT_TOKEN(anon_sym_tailrec); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 440: + case 452: ACCEPT_TOKEN(anon_sym_operator); END_STATE(); - case 441: + case 453: ACCEPT_TOKEN(anon_sym_operator); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 442: + case 454: ACCEPT_TOKEN(anon_sym_operator); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 443: + case 455: ACCEPT_TOKEN(anon_sym_operator); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 444: + case 456: ACCEPT_TOKEN(anon_sym_infix); END_STATE(); - case 445: + case 457: ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 446: + case 458: ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 447: + case 459: ACCEPT_TOKEN(anon_sym_infix); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 448: + case 460: ACCEPT_TOKEN(anon_sym_inline); END_STATE(); - case 449: + case 461: ACCEPT_TOKEN(anon_sym_inline); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 450: + case 462: ACCEPT_TOKEN(anon_sym_inline); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 451: + case 463: ACCEPT_TOKEN(anon_sym_inline); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 452: + case 464: ACCEPT_TOKEN(anon_sym_external); END_STATE(); - case 453: + case 465: ACCEPT_TOKEN(anon_sym_external); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 454: + case 466: ACCEPT_TOKEN(anon_sym_external); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 455: + case 467: ACCEPT_TOKEN(anon_sym_external); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 456: + case 468: ACCEPT_TOKEN(sym_property_modifier); END_STATE(); - case 457: + case 469: ACCEPT_TOKEN(sym_property_modifier); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 458: + case 470: ACCEPT_TOKEN(sym_property_modifier); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 459: + case 471: ACCEPT_TOKEN(sym_property_modifier); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 460: + case 472: ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); - case 461: + case 473: ACCEPT_TOKEN(anon_sym_abstract); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 462: + case 474: ACCEPT_TOKEN(anon_sym_abstract); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 463: + case 475: ACCEPT_TOKEN(anon_sym_abstract); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 464: + case 476: ACCEPT_TOKEN(anon_sym_final); END_STATE(); - case 465: + case 477: ACCEPT_TOKEN(anon_sym_final); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 466: + case 478: ACCEPT_TOKEN(anon_sym_final); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 467: + case 479: ACCEPT_TOKEN(anon_sym_final); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 468: + case 480: ACCEPT_TOKEN(anon_sym_open); END_STATE(); - case 469: + case 481: ACCEPT_TOKEN(anon_sym_open); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 470: + case 482: ACCEPT_TOKEN(anon_sym_open); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 471: + case 483: ACCEPT_TOKEN(anon_sym_open); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 472: + case 484: ACCEPT_TOKEN(anon_sym_vararg); END_STATE(); - case 473: + case 485: ACCEPT_TOKEN(anon_sym_vararg); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 474: + case 486: ACCEPT_TOKEN(anon_sym_vararg); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 475: + case 487: ACCEPT_TOKEN(anon_sym_vararg); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 476: + case 488: ACCEPT_TOKEN(anon_sym_noinline); END_STATE(); - case 477: + case 489: ACCEPT_TOKEN(anon_sym_noinline); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 478: + case 490: ACCEPT_TOKEN(anon_sym_noinline); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 479: + case 491: ACCEPT_TOKEN(anon_sym_noinline); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 480: + case 492: ACCEPT_TOKEN(anon_sym_crossinline); END_STATE(); - case 481: + case 493: ACCEPT_TOKEN(anon_sym_crossinline); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 482: + case 494: ACCEPT_TOKEN(anon_sym_crossinline); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 483: + case 495: ACCEPT_TOKEN(anon_sym_crossinline); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 484: + case 496: ACCEPT_TOKEN(anon_sym_expect); END_STATE(); - case 485: + case 497: ACCEPT_TOKEN(anon_sym_expect); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 486: + case 498: ACCEPT_TOKEN(anon_sym_expect); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 487: + case 499: ACCEPT_TOKEN(anon_sym_expect); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 488: + case 500: ACCEPT_TOKEN(anon_sym_actual); END_STATE(); - case 489: + case 501: ACCEPT_TOKEN(anon_sym_actual); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); - case 490: + case 502: ACCEPT_TOKEN(anon_sym_actual); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); END_STATE(); - case 491: + case 503: ACCEPT_TOKEN(anon_sym_actual); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); - case 492: + case 504: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(492); + lookahead != '\n') ADVANCE(504); END_STATE(); - case 493: + case 505: ACCEPT_TOKEN(anon_sym_return_AT); END_STATE(); - case 494: + case 506: ACCEPT_TOKEN(anon_sym_continue_AT); END_STATE(); - case 495: + case 507: ACCEPT_TOKEN(anon_sym_break_AT); END_STATE(); - case 496: + case 508: + ACCEPT_TOKEN(anon_sym_this_AT); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym_super_AT); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_AT2); + END_STATE(); + case 511: ACCEPT_TOKEN(sym_real_literal); END_STATE(); - case 497: + case 512: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(161); + if (lookahead == '_') ADVANCE(171); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(298); + lookahead == 'e') ADVANCE(308); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + lookahead == 'f') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); END_STATE(); - case 498: + case 513: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(162); + if (lookahead == '_') ADVANCE(172); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + lookahead == 'f') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); END_STATE(); - case 499: + case 514: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(300); - if (lookahead == '_') ADVANCE(158); + if (lookahead == '.') ADVANCE(310); + if (lookahead == '_') ADVANCE(168); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(299); + lookahead == 'b') ADVANCE(309); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(298); + lookahead == 'e') ADVANCE(308); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(496); + lookahead == 'f') ADVANCE(511); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(302); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(500); + lookahead == 'x') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); - case 500: + case 515: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(300); - if (lookahead == '_') ADVANCE(158); + if (lookahead == '.') ADVANCE(310); + if (lookahead == '_') ADVANCE(168); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(298); + lookahead == 'e') ADVANCE(308); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(500); + lookahead == 'f') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); - case 501: + case 516: ACCEPT_TOKEN(sym_hex_literal); - if (lookahead == '_') ADVANCE(160); + if (lookahead == '_') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(501); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); END_STATE(); - case 502: + case 517: ACCEPT_TOKEN(sym_bin_literal); - if (lookahead == '_') ADVANCE(159); + if (lookahead == '_') ADVANCE(169); END_STATE(); - case 503: + case 518: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 504: + case 519: ACCEPT_TOKEN(aux_sym_character_literal_token1); END_STATE(); - case 505: + case 520: ACCEPT_TOKEN(aux_sym_character_literal_token1); - if (lookahead == '/') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); END_STATE(); - case 506: + case 521: ACCEPT_TOKEN(aux_sym_character_literal_token1); - if (lookahead == '/') ADVANCE(505); + if (lookahead == '/') ADVANCE(520); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(506); + lookahead == ' ') ADVANCE(521); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(504); - END_STATE(); - case 507: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '?') ADVANCE(381); - if (lookahead == '@') ADVANCE(353); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 508: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '?') ADVANCE(381); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); - END_STATE(); - case 509: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(495); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 510: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(495); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); - END_STATE(); - case 511: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(493); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 512: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(493); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); - END_STATE(); - case 513: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 514: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(494); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); - END_STATE(); - case 515: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(593); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 516: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(588); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 517: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(401); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 518: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(577); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 519: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(661); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 520: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 't') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); - END_STATE(); - case 521: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + lookahead != '\\') ADVANCE(519); END_STATE(); case 522: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(589); + if (lookahead == '?') ADVANCE(393); + if (lookahead == '@') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 523: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(590); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + if (lookahead == '?') ADVANCE(393); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 524: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(635); + if (lookahead == '@') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 525: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(591); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(508); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 526: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(592); + if (lookahead == '@') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 527: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(660); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(507); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 528: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(594); + if (lookahead == '@') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 529: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(662); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(509); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 530: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(540); + if (lookahead == '@') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 531: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'a') ADVANCE(664); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(505); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 532: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'b') ADVANCE(647); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'n') ADVANCE(604); - if (lookahead == 's') ADVANCE(507); + if (lookahead == '@') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 533: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'b') ADVANCE(647); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'n') ADVANCE(604); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(506); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 534: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'b') ADVANCE(595); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 535: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 's') ADVANCE(507); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 536: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(651); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 537: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(421); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(602); + if (lookahead == 'h') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 538: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(437); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(602); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 539: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(655); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 540: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(656); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(621); + if (lookahead == 't') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 541: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'c') ADVANCE(665); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 542: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(393); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 543: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(389); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 544: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(433); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 545: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'd') ADVANCE(554); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(662); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 546: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(520); - if (lookahead == 'u') ADVANCE(645); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 547: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(602); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 548: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(539); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 549: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(542); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 550: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(409); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 551: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(449); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'a') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 552: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(425); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'b') ADVANCE(676); + if (lookahead == 'c') ADVANCE(680); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 's') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 553: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(477); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'b') ADVANCE(676); + if (lookahead == 'c') ADVANCE(680); + if (lookahead == 'n') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 554: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(413); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'b') ADVANCE(620); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 555: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(481); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(680); + if (lookahead == 's') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 556: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(639); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 557: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(652); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 558: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(538); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 559: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(643); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 560: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(516); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 561: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(513); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'c') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 562: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(544); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 563: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(634); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 564: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(606); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 565: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(653); - if (lookahead == 'u') ADVANCE(645); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'd') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 566: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(653); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(540); + if (lookahead == 'u') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 567: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(658); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(540); + if (lookahead == 'u') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 568: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(541); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 569: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(583); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 570: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'e') ADVANCE(644); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 571: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'f') ADVANCE(574); - if (lookahead == 'l') ADVANCE(581); - if (lookahead == 'n') ADVANCE(563); - if (lookahead == 't') ADVANCE(570); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 572: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'g') ADVANCE(473); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 573: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(673); - if (lookahead == 'o') ADVANCE(666); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 574: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(675); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 575: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(537); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 576: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(545); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 577: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 578: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(608); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 579: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(607); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 580: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(625); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 581: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(613); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 582: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(618); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 583: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(609); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 584: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(657); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 585: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(615); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(665); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 586: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(616); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 587: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'i') ADVANCE(620); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(682); + if (lookahead == 'u') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 588: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'k') ADVANCE(509); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(682); + if (lookahead == 'u') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 589: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(465); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 590: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(489); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(687); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 591: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(453); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 592: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(429); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(608); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 593: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(670); - if (lookahead == 'r') ADVANCE(524); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'e') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 594: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(670); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'f') ADVANCE(598); + if (lookahead == 'l') ADVANCE(606); + if (lookahead == 'n') ADVANCE(583); + if (lookahead == 't') ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 595: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(575); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'g') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 596: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(549); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'h') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 597: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(642); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(702); + if (lookahead == 'o') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 598: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(585); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(704); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 599: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'l') ADVANCE(586); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 600: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(571); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 601: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(648); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 602: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(469); - if (lookahead == 'r') ADVANCE(527); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 603: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(397); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 604: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(623); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 605: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(511); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 606: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(543); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 607: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(598); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 608: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(522); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 609: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(584); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 610: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(563); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 611: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(525); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 612: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(526); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'i') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 613: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(551); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'k') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 614: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(667); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 615: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(553); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 616: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(555); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(465); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 617: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(649); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 618: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(671); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(699); + if (lookahead == 'r') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 619: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(610); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 620: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'n') ADVANCE(599); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 621: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(601); - if (lookahead == 'r') ADVANCE(622); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 622: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(646); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(670); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 623: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(668); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(610); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 624: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(636); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'l') ADVANCE(611); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 625: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(603); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 626: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(614); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 627: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(617); - if (lookahead == 'r') ADVANCE(622); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(481); + if (lookahead == 'r') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 628: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'o') ADVANCE(579); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 629: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(547); - if (lookahead == 'v') ADVANCE(556); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 630: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(548); - if (lookahead == 't') ADVANCE(559); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 631: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(548); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 632: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'p') ADVANCE(564); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 633: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(573); - if (lookahead == 'u') ADVANCE(534); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(623); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 634: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(405); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 635: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(572); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 636: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(441); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 637: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(560); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 638: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(576); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 639: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(638); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 640: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(530); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 641: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(605); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 642: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(558); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(678); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 643: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(611); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 644: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'r') ADVANCE(612); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 645: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(632); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'n') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 646: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(650); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 647: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(659); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(626); + if (lookahead == 'r') ADVANCE(646); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 648: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(654); - if (lookahead == 't') ADVANCE(582); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 649: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(654); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 650: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 's') ADVANCE(587); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(628); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 651: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(669); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 652: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(339); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(642); + if (lookahead == 'r') ADVANCE(646); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 653: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(343); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'o') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 654: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(457); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(568); + if (lookahead == 'v') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 655: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(485); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(569); + if (lookahead == 't') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 656: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(461); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 657: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(417); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(585); + if (lookahead == 's') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 658: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(672); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 659: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(640); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'p') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 660: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(624); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(597); + if (lookahead == 'u') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 661: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(517); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 662: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(580); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 663: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(569); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 664: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(552); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 665: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(562); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 666: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(568); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 667: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(582); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 668: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 't') ADVANCE(529); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 669: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'u') ADVANCE(523); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 670: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'u') ADVANCE(550); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 671: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'u') ADVANCE(561); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 672: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'u') ADVANCE(641); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'r') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 673: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'v') ADVANCE(531); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 674: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'x') ADVANCE(630); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 675: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 676: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); - if (lookahead == 'x') ADVANCE(631); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 677: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(353); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(683); + if (lookahead == 't') ADVANCE(607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 678: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(757); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(683); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 679: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(752); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 's') ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 680: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(403); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 681: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(741); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(350); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 682: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(824); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(354); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 683: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 't') ADVANCE(345); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 684: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(760); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 685: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(826); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 686: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(753); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(429); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 687: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(754); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 688: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(797); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 689: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(755); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 690: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(756); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(649); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 691: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(823); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(605); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 692: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(758); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(592); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 693: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(825); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 694: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(703); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 695: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(827); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(591); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 696: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'b') ADVANCE(810); - if (lookahead == 'c') ADVANCE(814); - if (lookahead == 'n') ADVANCE(769); - if (lookahead == 's') ADVANCE(508); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(607); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 697: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'b') ADVANCE(810); - if (lookahead == 'c') ADVANCE(814); - if (lookahead == 'n') ADVANCE(769); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 't') ADVANCE(549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 698: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'b') ADVANCE(759); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'u') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 699: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(814); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'u') ADVANCE(571); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 700: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(423); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'u') ADVANCE(584); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 701: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(439); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'u') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 702: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(818); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'v') ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 703: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(819); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'x') ADVANCE(655); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 704: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(828); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'x') ADVANCE(457); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 705: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(395); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (lookahead == 'x') ADVANCE(656); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 706: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(391); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == '@') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); END_STATE(); case 707: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(435); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(790); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 708: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(717); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(785); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 709: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(683); - if (lookahead == 'u') ADVANCE(808); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(415); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 710: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(766); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(774); + if (lookahead == 'h') ADVANCE(773); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 711: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(702); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(774); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 712: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(705); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(859); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 713: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(411); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 't') ADVANCE(356); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 714: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(451); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(793); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 715: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(427); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(862); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 716: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(479); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(786); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 717: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(415); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(787); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 718: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(483); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(788); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 719: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(802); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(831); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 720: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(815); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(789); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 721: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(701); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(860); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 722: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(514); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(791); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 723: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(806); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(861); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 724: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(679); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(733); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 725: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(707); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'a') ADVANCE(863); + if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); END_STATE(); case 726: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(796); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'b') ADVANCE(846); + if (lookahead == 'c') ADVANCE(850); + if (lookahead == 'n') ADVANCE(801); + if (lookahead == 's') ADVANCE(523); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 727: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(770); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'b') ADVANCE(846); + if (lookahead == 'c') ADVANCE(850); + if (lookahead == 'n') ADVANCE(801); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 728: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(684); - if (lookahead == 'u') ADVANCE(808); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'b') ADVANCE(792); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 729: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(816); - if (lookahead == 'u') ADVANCE(808); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'c') ADVANCE(850); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 730: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(816); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'c') ADVANCE(435); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 731: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(821); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'c') ADVANCE(451); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 732: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(704); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'c') ADVANCE(854); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 733: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(747); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'c') ADVANCE(855); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 734: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(807); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'c') ADVANCE(864); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 735: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'f') ADVANCE(738); - if (lookahead == 'l') ADVANCE(745); - if (lookahead == 'n') ADVANCE(726); - if (lookahead == 't') ADVANCE(734); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'd') ADVANCE(407); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 736: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'g') ADVANCE(475); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'd') ADVANCE(403); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 737: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(835); - if (lookahead == 'o') ADVANCE(829); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'd') ADVANCE(447); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 738: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(837); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'd') ADVANCE(748); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 739: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(700); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(713); + if (lookahead == 'u') ADVANCE(827); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 740: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(708); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(713); + if (lookahead == 'u') ADVANCE(843); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 741: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(761); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(799); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 742: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(772); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(732); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 743: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(771); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(735); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 744: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(788); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(423); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 745: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(777); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(463); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 746: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(781); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(439); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 747: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(773); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(491); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 748: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(820); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(427); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 749: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(778); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(495); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 750: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(779); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(836); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 751: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(783); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(708); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 752: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'k') ADVANCE(510); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(851); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 753: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(467); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(731); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 754: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(491); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(841); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 755: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(455); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(737); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 756: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(431); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(830); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 757: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(832); - if (lookahead == 'r') ADVANCE(688); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(533); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 758: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(832); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(835); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 759: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(739); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(802); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 760: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(712); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(714); + if (lookahead == 'u') ADVANCE(843); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 761: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(805); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(852); + if (lookahead == 'u') ADVANCE(843); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 762: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(749); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(852); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 763: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(750); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(857); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 764: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(735); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(734); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 765: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(811); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(780); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 766: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(471); - if (lookahead == 'r') ADVANCE(691); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'e') ADVANCE(842); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 767: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(399); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'f') ADVANCE(770); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(756); + if (lookahead == 't') ADVANCE(766); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 768: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(512); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'g') ADVANCE(487); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 769: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(786); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(871); + if (lookahead == 'o') ADVANCE(865); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 770: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(706); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(873); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 771: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(762); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(730); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 772: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(686); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(738); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 773: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(748); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(844); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 774: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(726); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(794); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 775: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(689); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(804); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 776: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(690); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(805); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 777: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(714); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(821); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 778: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(716); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(810); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 779: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(718); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(814); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 780: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(812); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(806); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 781: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(833); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(856); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 782: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(774); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(811); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 783: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(763); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(812); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 784: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(765); - if (lookahead == 'r') ADVANCE(785); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'i') ADVANCE(816); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 785: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(809); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'k') ADVANCE(527); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 786: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(830); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(479); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 787: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(798); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(503); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 788: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(767); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(467); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 789: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(780); - if (lookahead == 'r') ADVANCE(785); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(443); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 790: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(743); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(868); + if (lookahead == 'r') ADVANCE(719); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 791: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(710); - if (lookahead == 'v') ADVANCE(719); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(868); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 792: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(711); - if (lookahead == 't') ADVANCE(723); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(771); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 793: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(711); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(743); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 794: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(727); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(840); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 795: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(737); - if (lookahead == 'u') ADVANCE(698); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(782); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 796: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(407); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'l') ADVANCE(783); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 797: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(736); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(767); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 798: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(443); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(847); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 799: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(724); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(483); + if (lookahead == 'r') ADVANCE(721); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 800: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(785); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(411); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 801: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(740); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(819); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 802: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(801); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(736); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 803: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(694); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(531); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 804: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(768); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(716); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 805: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(721); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(795); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 806: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(775); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(781); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 807: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(776); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(756); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 808: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(794); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(718); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 809: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(813); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(720); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 810: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(822); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(745); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 811: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(817); - if (lookahead == 't') ADVANCE(746); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(747); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 812: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(817); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(749); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 813: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(751); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(848); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 814: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(831); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(869); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 815: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(341); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(807); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 816: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(345); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'n') ADVANCE(796); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 817: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(459); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(845); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 818: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(487); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(798); + if (lookahead == 'r') ADVANCE(817); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 819: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(463); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(866); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 820: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(419); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(832); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 821: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(834); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(800); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 822: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(803); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(813); + if (lookahead == 'r') ADVANCE(817); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 823: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(787); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'o') ADVANCE(776); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 824: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(680); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'p') ADVANCE(741); + if (lookahead == 'v') ADVANCE(750); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 825: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(744); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'p') ADVANCE(742); + if (lookahead == 't') ADVANCE(754); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 826: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(733); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'p') ADVANCE(742); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 827: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(715); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'p') ADVANCE(758); + if (lookahead == 's') ADVANCE(828); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 828: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(725); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'p') ADVANCE(759); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 829: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(732); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'u') ADVANCE(728); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 830: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(693); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(419); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 831: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(687); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(768); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 832: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(713); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(455); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 833: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(722); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(751); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 834: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(804); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(817); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 835: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'v') ADVANCE(695); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(529); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 836: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'x') ADVANCE(792); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(837); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 837: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'x') ADVANCE(447); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(772); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 838: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'x') ADVANCE(793); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(724); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 839: ACCEPT_TOKEN(sym__alpha_identifier); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(839); + if (lookahead == 'r') ADVANCE(803); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 840: - ACCEPT_TOKEN(sym__backtick_identifier); + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(753); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 841: - ACCEPT_TOKEN(anon_sym_BSLASHu); + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(808); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 842: - ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(809); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); END_STATE(); case 843: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(828); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(525); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(849); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(858); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(853); + if (lookahead == 't') ADVANCE(779); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(853); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(784); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(867); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(352); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(356); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 853: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(471); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 854: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(499); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 855: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(475); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 856: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(431); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 857: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(870); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 858: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(838); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 859: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(709); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 860: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(820); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 861: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(777); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 862: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(765); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 863: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(746); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 864: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(755); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 865: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(764); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 866: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(723); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 867: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(717); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 868: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(744); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 869: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(757); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 870: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(839); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 871: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'v') ADVANCE(725); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 872: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(825); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 873: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(459); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 874: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(826); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 875: + ACCEPT_TOKEN(sym__alpha_identifier); + if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + END_STATE(); + case 876: + ACCEPT_TOKEN(sym__backtick_identifier); + END_STATE(); + case 877: + ACCEPT_TOKEN(anon_sym_BSLASHu); + END_STATE(); + case 878: + ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); + END_STATE(); + case 879: ACCEPT_TOKEN(sym__escaped_identifier); END_STATE(); default: @@ -22794,7 +23540,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 307, .external_lex_state = 2}, + [1] = {.lex_state = 318, .external_lex_state = 2}, [2] = {.lex_state = 1, .external_lex_state = 3}, [3] = {.lex_state = 1, .external_lex_state = 3}, [4] = {.lex_state = 1, .external_lex_state = 3}, @@ -22811,15 +23557,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [15] = {.lex_state = 1, .external_lex_state = 4}, [16] = {.lex_state = 1, .external_lex_state = 4}, [17] = {.lex_state = 1, .external_lex_state = 3}, - [18] = {.lex_state = 1, .external_lex_state = 4}, + [18] = {.lex_state = 1, .external_lex_state = 3}, [19] = {.lex_state = 1, .external_lex_state = 4}, [20] = {.lex_state = 1, .external_lex_state = 4}, - [21] = {.lex_state = 1, .external_lex_state = 3}, - [22] = {.lex_state = 1, .external_lex_state = 4}, - [23] = {.lex_state = 1, .external_lex_state = 4}, - [24] = {.lex_state = 1, .external_lex_state = 3}, + [21] = {.lex_state = 1, .external_lex_state = 4}, + [22] = {.lex_state = 1, .external_lex_state = 3}, + [23] = {.lex_state = 1, .external_lex_state = 3}, + [24] = {.lex_state = 1, .external_lex_state = 4}, [25] = {.lex_state = 1, .external_lex_state = 4}, - [26] = {.lex_state = 1, .external_lex_state = 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}, @@ -22834,225 +23580,225 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 1, .external_lex_state = 4}, [39] = {.lex_state = 1, .external_lex_state = 4}, [40] = {.lex_state = 1, .external_lex_state = 4}, - [41] = {.lex_state = 1, .external_lex_state = 3}, - [42] = {.lex_state = 1, .external_lex_state = 3}, - [43] = {.lex_state = 1, .external_lex_state = 3}, - [44] = {.lex_state = 1, .external_lex_state = 4}, - [45] = {.lex_state = 1, .external_lex_state = 4}, - [46] = {.lex_state = 1, .external_lex_state = 4}, - [47] = {.lex_state = 1, .external_lex_state = 4}, - [48] = {.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 = 4}, + [44] = {.lex_state = 1, .external_lex_state = 3}, + [45] = {.lex_state = 1, .external_lex_state = 3}, + [46] = {.lex_state = 1, .external_lex_state = 3}, + [47] = {.lex_state = 1, .external_lex_state = 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 = 4}, - [52] = {.lex_state = 307, .external_lex_state = 2}, - [53] = {.lex_state = 307, .external_lex_state = 2}, - [54] = {.lex_state = 307, .external_lex_state = 2}, - [55] = {.lex_state = 7, .external_lex_state = 5}, - [56] = {.lex_state = 7, .external_lex_state = 5}, - [57] = {.lex_state = 7, .external_lex_state = 5}, - [58] = {.lex_state = 307, .external_lex_state = 2}, - [59] = {.lex_state = 307, .external_lex_state = 2}, - [60] = {.lex_state = 307, .external_lex_state = 2}, - [61] = {.lex_state = 307, .external_lex_state = 2}, - [62] = {.lex_state = 307, .external_lex_state = 2}, - [63] = {.lex_state = 307, .external_lex_state = 2}, - [64] = {.lex_state = 307, .external_lex_state = 2}, - [65] = {.lex_state = 307, .external_lex_state = 2}, - [66] = {.lex_state = 307, .external_lex_state = 2}, - [67] = {.lex_state = 307, .external_lex_state = 2}, - [68] = {.lex_state = 307, .external_lex_state = 2}, - [69] = {.lex_state = 307, .external_lex_state = 2}, - [70] = {.lex_state = 307, .external_lex_state = 2}, - [71] = {.lex_state = 307, .external_lex_state = 2}, - [72] = {.lex_state = 307, .external_lex_state = 2}, - [73] = {.lex_state = 307, .external_lex_state = 2}, - [74] = {.lex_state = 307, .external_lex_state = 2}, - [75] = {.lex_state = 307, .external_lex_state = 2}, - [76] = {.lex_state = 307, .external_lex_state = 2}, - [77] = {.lex_state = 307, .external_lex_state = 2}, - [78] = {.lex_state = 307, .external_lex_state = 2}, - [79] = {.lex_state = 307, .external_lex_state = 2}, - [80] = {.lex_state = 307, .external_lex_state = 2}, - [81] = {.lex_state = 307, .external_lex_state = 2}, - [82] = {.lex_state = 307, .external_lex_state = 2}, - [83] = {.lex_state = 307, .external_lex_state = 2}, - [84] = {.lex_state = 307, .external_lex_state = 2}, - [85] = {.lex_state = 307, .external_lex_state = 2}, - [86] = {.lex_state = 307, .external_lex_state = 5}, - [87] = {.lex_state = 307, .external_lex_state = 2}, - [88] = {.lex_state = 307, .external_lex_state = 5}, - [89] = {.lex_state = 307, .external_lex_state = 2}, - [90] = {.lex_state = 307, .external_lex_state = 2}, - [91] = {.lex_state = 307, .external_lex_state = 2}, - [92] = {.lex_state = 307, .external_lex_state = 2}, - [93] = {.lex_state = 307, .external_lex_state = 2}, - [94] = {.lex_state = 307, .external_lex_state = 2}, - [95] = {.lex_state = 307, .external_lex_state = 2}, - [96] = {.lex_state = 307, .external_lex_state = 2}, - [97] = {.lex_state = 307, .external_lex_state = 2}, - [98] = {.lex_state = 307, .external_lex_state = 2}, - [99] = {.lex_state = 307, .external_lex_state = 2}, - [100] = {.lex_state = 307, .external_lex_state = 2}, - [101] = {.lex_state = 307, .external_lex_state = 2}, - [102] = {.lex_state = 307, .external_lex_state = 2}, - [103] = {.lex_state = 307, .external_lex_state = 2}, - [104] = {.lex_state = 307, .external_lex_state = 5}, - [105] = {.lex_state = 307, .external_lex_state = 2}, - [106] = {.lex_state = 307, .external_lex_state = 2}, - [107] = {.lex_state = 307, .external_lex_state = 2}, - [108] = {.lex_state = 307, .external_lex_state = 2}, - [109] = {.lex_state = 307, .external_lex_state = 2}, - [110] = {.lex_state = 307, .external_lex_state = 2}, - [111] = {.lex_state = 307, .external_lex_state = 2}, - [112] = {.lex_state = 307, .external_lex_state = 2}, - [113] = {.lex_state = 307, .external_lex_state = 2}, - [114] = {.lex_state = 307, .external_lex_state = 2}, - [115] = {.lex_state = 307, .external_lex_state = 2}, - [116] = {.lex_state = 307, .external_lex_state = 2}, - [117] = {.lex_state = 307, .external_lex_state = 2}, - [118] = {.lex_state = 307, .external_lex_state = 2}, - [119] = {.lex_state = 307, .external_lex_state = 2}, - [120] = {.lex_state = 307, .external_lex_state = 2}, - [121] = {.lex_state = 307, .external_lex_state = 2}, - [122] = {.lex_state = 307, .external_lex_state = 2}, - [123] = {.lex_state = 307, .external_lex_state = 2}, - [124] = {.lex_state = 307, .external_lex_state = 2}, - [125] = {.lex_state = 307, .external_lex_state = 2}, - [126] = {.lex_state = 307, .external_lex_state = 2}, - [127] = {.lex_state = 307, .external_lex_state = 2}, - [128] = {.lex_state = 307, .external_lex_state = 2}, - [129] = {.lex_state = 307, .external_lex_state = 2}, - [130] = {.lex_state = 307, .external_lex_state = 2}, - [131] = {.lex_state = 307, .external_lex_state = 2}, - [132] = {.lex_state = 307, .external_lex_state = 2}, - [133] = {.lex_state = 307, .external_lex_state = 2}, - [134] = {.lex_state = 307, .external_lex_state = 2}, - [135] = {.lex_state = 307, .external_lex_state = 2}, - [136] = {.lex_state = 307, .external_lex_state = 2}, - [137] = {.lex_state = 307, .external_lex_state = 2}, - [138] = {.lex_state = 307, .external_lex_state = 2}, - [139] = {.lex_state = 307, .external_lex_state = 2}, - [140] = {.lex_state = 307, .external_lex_state = 2}, - [141] = {.lex_state = 307, .external_lex_state = 2}, - [142] = {.lex_state = 307, .external_lex_state = 2}, - [143] = {.lex_state = 307, .external_lex_state = 2}, - [144] = {.lex_state = 307, .external_lex_state = 2}, - [145] = {.lex_state = 307, .external_lex_state = 2}, - [146] = {.lex_state = 307, .external_lex_state = 2}, - [147] = {.lex_state = 307, .external_lex_state = 2}, - [148] = {.lex_state = 307, .external_lex_state = 2}, - [149] = {.lex_state = 307, .external_lex_state = 2}, - [150] = {.lex_state = 307, .external_lex_state = 2}, - [151] = {.lex_state = 307, .external_lex_state = 2}, - [152] = {.lex_state = 307, .external_lex_state = 2}, - [153] = {.lex_state = 307, .external_lex_state = 2}, - [154] = {.lex_state = 307, .external_lex_state = 2}, - [155] = {.lex_state = 307, .external_lex_state = 2}, - [156] = {.lex_state = 307, .external_lex_state = 2}, - [157] = {.lex_state = 307, .external_lex_state = 2}, - [158] = {.lex_state = 307, .external_lex_state = 2}, - [159] = {.lex_state = 307, .external_lex_state = 2}, - [160] = {.lex_state = 307, .external_lex_state = 2}, - [161] = {.lex_state = 307, .external_lex_state = 2}, - [162] = {.lex_state = 307, .external_lex_state = 2}, - [163] = {.lex_state = 307, .external_lex_state = 2}, - [164] = {.lex_state = 307, .external_lex_state = 2}, - [165] = {.lex_state = 307, .external_lex_state = 2}, - [166] = {.lex_state = 307, .external_lex_state = 2}, - [167] = {.lex_state = 307, .external_lex_state = 2}, - [168] = {.lex_state = 307, .external_lex_state = 2}, - [169] = {.lex_state = 307, .external_lex_state = 2}, - [170] = {.lex_state = 307, .external_lex_state = 2}, - [171] = {.lex_state = 307, .external_lex_state = 2}, - [172] = {.lex_state = 307, .external_lex_state = 2}, - [173] = {.lex_state = 307, .external_lex_state = 2}, - [174] = {.lex_state = 307, .external_lex_state = 2}, - [175] = {.lex_state = 307, .external_lex_state = 2}, - [176] = {.lex_state = 307, .external_lex_state = 2}, - [177] = {.lex_state = 307, .external_lex_state = 2}, - [178] = {.lex_state = 307, .external_lex_state = 2}, - [179] = {.lex_state = 307, .external_lex_state = 2}, - [180] = {.lex_state = 307, .external_lex_state = 2}, - [181] = {.lex_state = 307, .external_lex_state = 2}, - [182] = {.lex_state = 307, .external_lex_state = 2}, - [183] = {.lex_state = 307, .external_lex_state = 2}, - [184] = {.lex_state = 307, .external_lex_state = 2}, - [185] = {.lex_state = 307, .external_lex_state = 2}, - [186] = {.lex_state = 307, .external_lex_state = 2}, - [187] = {.lex_state = 307, .external_lex_state = 2}, - [188] = {.lex_state = 307, .external_lex_state = 2}, - [189] = {.lex_state = 307, .external_lex_state = 2}, - [190] = {.lex_state = 307, .external_lex_state = 2}, - [191] = {.lex_state = 307, .external_lex_state = 2}, - [192] = {.lex_state = 307, .external_lex_state = 2}, - [193] = {.lex_state = 307, .external_lex_state = 2}, - [194] = {.lex_state = 307, .external_lex_state = 2}, - [195] = {.lex_state = 307, .external_lex_state = 2}, - [196] = {.lex_state = 307, .external_lex_state = 2}, - [197] = {.lex_state = 307, .external_lex_state = 2}, - [198] = {.lex_state = 307, .external_lex_state = 2}, - [199] = {.lex_state = 307, .external_lex_state = 2}, - [200] = {.lex_state = 307, .external_lex_state = 2}, - [201] = {.lex_state = 307, .external_lex_state = 2}, - [202] = {.lex_state = 307, .external_lex_state = 2}, - [203] = {.lex_state = 307, .external_lex_state = 2}, - [204] = {.lex_state = 307, .external_lex_state = 2}, - [205] = {.lex_state = 307, .external_lex_state = 2}, - [206] = {.lex_state = 307, .external_lex_state = 2}, - [207] = {.lex_state = 307, .external_lex_state = 2}, - [208] = {.lex_state = 307, .external_lex_state = 2}, - [209] = {.lex_state = 307, .external_lex_state = 2}, - [210] = {.lex_state = 307, .external_lex_state = 2}, - [211] = {.lex_state = 307, .external_lex_state = 2}, - [212] = {.lex_state = 307, .external_lex_state = 2}, - [213] = {.lex_state = 307, .external_lex_state = 2}, - [214] = {.lex_state = 307, .external_lex_state = 2}, - [215] = {.lex_state = 307, .external_lex_state = 2}, - [216] = {.lex_state = 307, .external_lex_state = 2}, - [217] = {.lex_state = 307, .external_lex_state = 2}, - [218] = {.lex_state = 307, .external_lex_state = 2}, - [219] = {.lex_state = 307, .external_lex_state = 2}, - [220] = {.lex_state = 307, .external_lex_state = 2}, - [221] = {.lex_state = 307, .external_lex_state = 2}, - [222] = {.lex_state = 307, .external_lex_state = 2}, - [223] = {.lex_state = 307, .external_lex_state = 2}, - [224] = {.lex_state = 307, .external_lex_state = 2}, - [225] = {.lex_state = 307, .external_lex_state = 2}, - [226] = {.lex_state = 307, .external_lex_state = 2}, - [227] = {.lex_state = 307, .external_lex_state = 2}, - [228] = {.lex_state = 307, .external_lex_state = 2}, - [229] = {.lex_state = 307, .external_lex_state = 2}, - [230] = {.lex_state = 307, .external_lex_state = 2}, - [231] = {.lex_state = 307, .external_lex_state = 2}, - [232] = {.lex_state = 307, .external_lex_state = 2}, - [233] = {.lex_state = 307, .external_lex_state = 2}, - [234] = {.lex_state = 307, .external_lex_state = 2}, - [235] = {.lex_state = 307, .external_lex_state = 2}, - [236] = {.lex_state = 307, .external_lex_state = 2}, - [237] = {.lex_state = 307, .external_lex_state = 2}, - [238] = {.lex_state = 307, .external_lex_state = 2}, - [239] = {.lex_state = 307, .external_lex_state = 2}, - [240] = {.lex_state = 307, .external_lex_state = 2}, - [241] = {.lex_state = 307, .external_lex_state = 2}, - [242] = {.lex_state = 307, .external_lex_state = 2}, - [243] = {.lex_state = 307, .external_lex_state = 2}, - [244] = {.lex_state = 307, .external_lex_state = 2}, - [245] = {.lex_state = 1, .external_lex_state = 3}, - [246] = {.lex_state = 307, .external_lex_state = 2}, - [247] = {.lex_state = 307, .external_lex_state = 2}, - [248] = {.lex_state = 307, .external_lex_state = 2}, - [249] = {.lex_state = 307, .external_lex_state = 2}, - [250] = {.lex_state = 307, .external_lex_state = 2}, - [251] = {.lex_state = 307, .external_lex_state = 2}, - [252] = {.lex_state = 307, .external_lex_state = 2}, - [253] = {.lex_state = 307, .external_lex_state = 2}, - [254] = {.lex_state = 307, .external_lex_state = 2}, - [255] = {.lex_state = 307, .external_lex_state = 2}, - [256] = {.lex_state = 307, .external_lex_state = 2}, - [257] = {.lex_state = 307, .external_lex_state = 2}, - [258] = {.lex_state = 307, .external_lex_state = 2}, - [259] = {.lex_state = 307, .external_lex_state = 2}, + [52] = {.lex_state = 318, .external_lex_state = 2}, + [53] = {.lex_state = 318, .external_lex_state = 2}, + [54] = {.lex_state = 318, .external_lex_state = 2}, + [55] = {.lex_state = 11, .external_lex_state = 5}, + [56] = {.lex_state = 11, .external_lex_state = 5}, + [57] = {.lex_state = 11, .external_lex_state = 5}, + [58] = {.lex_state = 318, .external_lex_state = 2}, + [59] = {.lex_state = 318, .external_lex_state = 2}, + [60] = {.lex_state = 318, .external_lex_state = 2}, + [61] = {.lex_state = 318, .external_lex_state = 2}, + [62] = {.lex_state = 318, .external_lex_state = 2}, + [63] = {.lex_state = 318, .external_lex_state = 2}, + [64] = {.lex_state = 318, .external_lex_state = 2}, + [65] = {.lex_state = 318, .external_lex_state = 2}, + [66] = {.lex_state = 318, .external_lex_state = 2}, + [67] = {.lex_state = 318, .external_lex_state = 2}, + [68] = {.lex_state = 318, .external_lex_state = 2}, + [69] = {.lex_state = 318, .external_lex_state = 2}, + [70] = {.lex_state = 318, .external_lex_state = 2}, + [71] = {.lex_state = 318, .external_lex_state = 2}, + [72] = {.lex_state = 318, .external_lex_state = 2}, + [73] = {.lex_state = 318, .external_lex_state = 2}, + [74] = {.lex_state = 318, .external_lex_state = 2}, + [75] = {.lex_state = 318, .external_lex_state = 2}, + [76] = {.lex_state = 318, .external_lex_state = 2}, + [77] = {.lex_state = 318, .external_lex_state = 2}, + [78] = {.lex_state = 318, .external_lex_state = 2}, + [79] = {.lex_state = 318, .external_lex_state = 2}, + [80] = {.lex_state = 318, .external_lex_state = 2}, + [81] = {.lex_state = 318, .external_lex_state = 2}, + [82] = {.lex_state = 318, .external_lex_state = 2}, + [83] = {.lex_state = 318, .external_lex_state = 2}, + [84] = {.lex_state = 318, .external_lex_state = 2}, + [85] = {.lex_state = 318, .external_lex_state = 2}, + [86] = {.lex_state = 318, .external_lex_state = 5}, + [87] = {.lex_state = 318, .external_lex_state = 2}, + [88] = {.lex_state = 318, .external_lex_state = 2}, + [89] = {.lex_state = 318, .external_lex_state = 2}, + [90] = {.lex_state = 318, .external_lex_state = 2}, + [91] = {.lex_state = 318, .external_lex_state = 2}, + [92] = {.lex_state = 318, .external_lex_state = 2}, + [93] = {.lex_state = 318, .external_lex_state = 2}, + [94] = {.lex_state = 318, .external_lex_state = 2}, + [95] = {.lex_state = 318, .external_lex_state = 2}, + [96] = {.lex_state = 318, .external_lex_state = 2}, + [97] = {.lex_state = 318, .external_lex_state = 2}, + [98] = {.lex_state = 318, .external_lex_state = 2}, + [99] = {.lex_state = 318, .external_lex_state = 2}, + [100] = {.lex_state = 318, .external_lex_state = 2}, + [101] = {.lex_state = 318, .external_lex_state = 2}, + [102] = {.lex_state = 318, .external_lex_state = 2}, + [103] = {.lex_state = 318, .external_lex_state = 2}, + [104] = {.lex_state = 318, .external_lex_state = 2}, + [105] = {.lex_state = 318, .external_lex_state = 2}, + [106] = {.lex_state = 318, .external_lex_state = 5}, + [107] = {.lex_state = 318, .external_lex_state = 2}, + [108] = {.lex_state = 318, .external_lex_state = 2}, + [109] = {.lex_state = 318, .external_lex_state = 5}, + [110] = {.lex_state = 318, .external_lex_state = 2}, + [111] = {.lex_state = 318, .external_lex_state = 2}, + [112] = {.lex_state = 318, .external_lex_state = 2}, + [113] = {.lex_state = 318, .external_lex_state = 2}, + [114] = {.lex_state = 318, .external_lex_state = 2}, + [115] = {.lex_state = 318, .external_lex_state = 2}, + [116] = {.lex_state = 318, .external_lex_state = 2}, + [117] = {.lex_state = 318, .external_lex_state = 2}, + [118] = {.lex_state = 318, .external_lex_state = 2}, + [119] = {.lex_state = 318, .external_lex_state = 2}, + [120] = {.lex_state = 318, .external_lex_state = 2}, + [121] = {.lex_state = 318, .external_lex_state = 2}, + [122] = {.lex_state = 318, .external_lex_state = 2}, + [123] = {.lex_state = 318, .external_lex_state = 2}, + [124] = {.lex_state = 318, .external_lex_state = 2}, + [125] = {.lex_state = 318, .external_lex_state = 2}, + [126] = {.lex_state = 318, .external_lex_state = 2}, + [127] = {.lex_state = 318, .external_lex_state = 2}, + [128] = {.lex_state = 318, .external_lex_state = 2}, + [129] = {.lex_state = 318, .external_lex_state = 2}, + [130] = {.lex_state = 318, .external_lex_state = 2}, + [131] = {.lex_state = 318, .external_lex_state = 2}, + [132] = {.lex_state = 318, .external_lex_state = 2}, + [133] = {.lex_state = 318, .external_lex_state = 2}, + [134] = {.lex_state = 318, .external_lex_state = 2}, + [135] = {.lex_state = 318, .external_lex_state = 2}, + [136] = {.lex_state = 318, .external_lex_state = 2}, + [137] = {.lex_state = 318, .external_lex_state = 2}, + [138] = {.lex_state = 318, .external_lex_state = 2}, + [139] = {.lex_state = 318, .external_lex_state = 2}, + [140] = {.lex_state = 318, .external_lex_state = 2}, + [141] = {.lex_state = 318, .external_lex_state = 2}, + [142] = {.lex_state = 318, .external_lex_state = 2}, + [143] = {.lex_state = 318, .external_lex_state = 2}, + [144] = {.lex_state = 318, .external_lex_state = 2}, + [145] = {.lex_state = 318, .external_lex_state = 2}, + [146] = {.lex_state = 318, .external_lex_state = 2}, + [147] = {.lex_state = 318, .external_lex_state = 2}, + [148] = {.lex_state = 318, .external_lex_state = 2}, + [149] = {.lex_state = 318, .external_lex_state = 2}, + [150] = {.lex_state = 318, .external_lex_state = 2}, + [151] = {.lex_state = 318, .external_lex_state = 2}, + [152] = {.lex_state = 318, .external_lex_state = 2}, + [153] = {.lex_state = 318, .external_lex_state = 2}, + [154] = {.lex_state = 318, .external_lex_state = 2}, + [155] = {.lex_state = 318, .external_lex_state = 2}, + [156] = {.lex_state = 318, .external_lex_state = 2}, + [157] = {.lex_state = 318, .external_lex_state = 2}, + [158] = {.lex_state = 318, .external_lex_state = 2}, + [159] = {.lex_state = 318, .external_lex_state = 2}, + [160] = {.lex_state = 318, .external_lex_state = 2}, + [161] = {.lex_state = 318, .external_lex_state = 2}, + [162] = {.lex_state = 318, .external_lex_state = 2}, + [163] = {.lex_state = 318, .external_lex_state = 2}, + [164] = {.lex_state = 318, .external_lex_state = 2}, + [165] = {.lex_state = 318, .external_lex_state = 2}, + [166] = {.lex_state = 318, .external_lex_state = 2}, + [167] = {.lex_state = 318, .external_lex_state = 2}, + [168] = {.lex_state = 318, .external_lex_state = 2}, + [169] = {.lex_state = 318, .external_lex_state = 2}, + [170] = {.lex_state = 318, .external_lex_state = 2}, + [171] = {.lex_state = 318, .external_lex_state = 2}, + [172] = {.lex_state = 318, .external_lex_state = 2}, + [173] = {.lex_state = 318, .external_lex_state = 2}, + [174] = {.lex_state = 318, .external_lex_state = 2}, + [175] = {.lex_state = 318, .external_lex_state = 2}, + [176] = {.lex_state = 318, .external_lex_state = 2}, + [177] = {.lex_state = 318, .external_lex_state = 2}, + [178] = {.lex_state = 318, .external_lex_state = 2}, + [179] = {.lex_state = 318, .external_lex_state = 2}, + [180] = {.lex_state = 318, .external_lex_state = 2}, + [181] = {.lex_state = 318, .external_lex_state = 2}, + [182] = {.lex_state = 318, .external_lex_state = 2}, + [183] = {.lex_state = 318, .external_lex_state = 2}, + [184] = {.lex_state = 318, .external_lex_state = 2}, + [185] = {.lex_state = 318, .external_lex_state = 2}, + [186] = {.lex_state = 318, .external_lex_state = 2}, + [187] = {.lex_state = 318, .external_lex_state = 2}, + [188] = {.lex_state = 318, .external_lex_state = 2}, + [189] = {.lex_state = 318, .external_lex_state = 2}, + [190] = {.lex_state = 318, .external_lex_state = 2}, + [191] = {.lex_state = 318, .external_lex_state = 2}, + [192] = {.lex_state = 318, .external_lex_state = 2}, + [193] = {.lex_state = 318, .external_lex_state = 2}, + [194] = {.lex_state = 318, .external_lex_state = 2}, + [195] = {.lex_state = 318, .external_lex_state = 2}, + [196] = {.lex_state = 318, .external_lex_state = 2}, + [197] = {.lex_state = 318, .external_lex_state = 2}, + [198] = {.lex_state = 318, .external_lex_state = 2}, + [199] = {.lex_state = 318, .external_lex_state = 2}, + [200] = {.lex_state = 318, .external_lex_state = 2}, + [201] = {.lex_state = 318, .external_lex_state = 2}, + [202] = {.lex_state = 318, .external_lex_state = 2}, + [203] = {.lex_state = 318, .external_lex_state = 2}, + [204] = {.lex_state = 318, .external_lex_state = 2}, + [205] = {.lex_state = 318, .external_lex_state = 2}, + [206] = {.lex_state = 318, .external_lex_state = 2}, + [207] = {.lex_state = 318, .external_lex_state = 2}, + [208] = {.lex_state = 318, .external_lex_state = 2}, + [209] = {.lex_state = 318, .external_lex_state = 2}, + [210] = {.lex_state = 318, .external_lex_state = 2}, + [211] = {.lex_state = 318, .external_lex_state = 2}, + [212] = {.lex_state = 318, .external_lex_state = 2}, + [213] = {.lex_state = 318, .external_lex_state = 2}, + [214] = {.lex_state = 318, .external_lex_state = 2}, + [215] = {.lex_state = 318, .external_lex_state = 2}, + [216] = {.lex_state = 318, .external_lex_state = 2}, + [217] = {.lex_state = 318, .external_lex_state = 2}, + [218] = {.lex_state = 318, .external_lex_state = 2}, + [219] = {.lex_state = 318, .external_lex_state = 2}, + [220] = {.lex_state = 318, .external_lex_state = 2}, + [221] = {.lex_state = 318, .external_lex_state = 2}, + [222] = {.lex_state = 318, .external_lex_state = 2}, + [223] = {.lex_state = 318, .external_lex_state = 2}, + [224] = {.lex_state = 318, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 3}, + [226] = {.lex_state = 318, .external_lex_state = 2}, + [227] = {.lex_state = 318, .external_lex_state = 2}, + [228] = {.lex_state = 318, .external_lex_state = 2}, + [229] = {.lex_state = 318, .external_lex_state = 2}, + [230] = {.lex_state = 318, .external_lex_state = 2}, + [231] = {.lex_state = 318, .external_lex_state = 2}, + [232] = {.lex_state = 318, .external_lex_state = 2}, + [233] = {.lex_state = 318, .external_lex_state = 2}, + [234] = {.lex_state = 318, .external_lex_state = 2}, + [235] = {.lex_state = 318, .external_lex_state = 2}, + [236] = {.lex_state = 318, .external_lex_state = 2}, + [237] = {.lex_state = 318, .external_lex_state = 2}, + [238] = {.lex_state = 318, .external_lex_state = 2}, + [239] = {.lex_state = 318, .external_lex_state = 2}, + [240] = {.lex_state = 318, .external_lex_state = 2}, + [241] = {.lex_state = 318, .external_lex_state = 2}, + [242] = {.lex_state = 318, .external_lex_state = 2}, + [243] = {.lex_state = 318, .external_lex_state = 2}, + [244] = {.lex_state = 318, .external_lex_state = 2}, + [245] = {.lex_state = 318, .external_lex_state = 2}, + [246] = {.lex_state = 318, .external_lex_state = 2}, + [247] = {.lex_state = 318, .external_lex_state = 2}, + [248] = {.lex_state = 318, .external_lex_state = 2}, + [249] = {.lex_state = 318, .external_lex_state = 2}, + [250] = {.lex_state = 318, .external_lex_state = 2}, + [251] = {.lex_state = 318, .external_lex_state = 2}, + [252] = {.lex_state = 318, .external_lex_state = 2}, + [253] = {.lex_state = 318, .external_lex_state = 2}, + [254] = {.lex_state = 318, .external_lex_state = 2}, + [255] = {.lex_state = 318, .external_lex_state = 2}, + [256] = {.lex_state = 318, .external_lex_state = 2}, + [257] = {.lex_state = 318, .external_lex_state = 2}, + [258] = {.lex_state = 318, .external_lex_state = 2}, + [259] = {.lex_state = 318, .external_lex_state = 2}, [260] = {.lex_state = 1, .external_lex_state = 4}, [261] = {.lex_state = 1, .external_lex_state = 4}, [262] = {.lex_state = 1, .external_lex_state = 3}, @@ -23076,7 +23822,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 1, .external_lex_state = 4}, [281] = {.lex_state = 1, .external_lex_state = 4}, [282] = {.lex_state = 1, .external_lex_state = 4}, - [283] = {.lex_state = 1, .external_lex_state = 4}, + [283] = {.lex_state = 2, .external_lex_state = 3}, [284] = {.lex_state = 1, .external_lex_state = 4}, [285] = {.lex_state = 1, .external_lex_state = 4}, [286] = {.lex_state = 1, .external_lex_state = 4}, @@ -23088,27 +23834,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [292] = {.lex_state = 1, .external_lex_state = 4}, [293] = {.lex_state = 1, .external_lex_state = 4}, [294] = {.lex_state = 1, .external_lex_state = 4}, - [295] = {.lex_state = 2, .external_lex_state = 3}, + [295] = {.lex_state = 1, .external_lex_state = 4}, [296] = {.lex_state = 2, .external_lex_state = 4}, - [297] = {.lex_state = 1, .external_lex_state = 4}, - [298] = {.lex_state = 1, .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}, [300] = {.lex_state = 1, .external_lex_state = 4}, [301] = {.lex_state = 1, .external_lex_state = 4}, - [302] = {.lex_state = 1, .external_lex_state = 4}, - [303] = {.lex_state = 1, .external_lex_state = 4}, + [302] = {.lex_state = 2, .external_lex_state = 4}, + [303] = {.lex_state = 2, .external_lex_state = 4}, [304] = {.lex_state = 1, .external_lex_state = 4}, [305] = {.lex_state = 1, .external_lex_state = 4}, [306] = {.lex_state = 1, .external_lex_state = 4}, [307] = {.lex_state = 1, .external_lex_state = 4}, - [308] = {.lex_state = 2, .external_lex_state = 4}, + [308] = {.lex_state = 1, .external_lex_state = 4}, [309] = {.lex_state = 1, .external_lex_state = 4}, - [310] = {.lex_state = 2, .external_lex_state = 3}, + [310] = {.lex_state = 1, .external_lex_state = 4}, [311] = {.lex_state = 1, .external_lex_state = 4}, [312] = {.lex_state = 1, .external_lex_state = 4}, - [313] = {.lex_state = 1, .external_lex_state = 4}, + [313] = {.lex_state = 2, .external_lex_state = 3}, [314] = {.lex_state = 1, .external_lex_state = 4}, - [315] = {.lex_state = 2, .external_lex_state = 4}, + [315] = {.lex_state = 1, .external_lex_state = 4}, [316] = {.lex_state = 1, .external_lex_state = 4}, [317] = {.lex_state = 1, .external_lex_state = 4}, [318] = {.lex_state = 1, .external_lex_state = 4}, @@ -23116,7 +23862,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 1, .external_lex_state = 4}, [321] = {.lex_state = 1, .external_lex_state = 4}, [322] = {.lex_state = 1, .external_lex_state = 4}, - [323] = {.lex_state = 2, .external_lex_state = 4}, + [323] = {.lex_state = 1, .external_lex_state = 4}, [324] = {.lex_state = 1, .external_lex_state = 4}, [325] = {.lex_state = 1, .external_lex_state = 4}, [326] = {.lex_state = 1, .external_lex_state = 4}, @@ -23124,38 +23870,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [328] = {.lex_state = 1, .external_lex_state = 4}, [329] = {.lex_state = 1, .external_lex_state = 4}, [330] = {.lex_state = 1, .external_lex_state = 4}, - [331] = {.lex_state = 2, .external_lex_state = 3}, - [332] = {.lex_state = 307, .external_lex_state = 2}, - [333] = {.lex_state = 307, .external_lex_state = 2}, - [334] = {.lex_state = 307, .external_lex_state = 2}, - [335] = {.lex_state = 307, .external_lex_state = 2}, - [336] = {.lex_state = 307, .external_lex_state = 2}, - [337] = {.lex_state = 307, .external_lex_state = 2}, - [338] = {.lex_state = 307, .external_lex_state = 2}, - [339] = {.lex_state = 307, .external_lex_state = 2}, - [340] = {.lex_state = 307, .external_lex_state = 2}, - [341] = {.lex_state = 307, .external_lex_state = 2}, - [342] = {.lex_state = 307, .external_lex_state = 2}, - [343] = {.lex_state = 307, .external_lex_state = 2}, - [344] = {.lex_state = 307, .external_lex_state = 2}, - [345] = {.lex_state = 307, .external_lex_state = 2}, - [346] = {.lex_state = 307, .external_lex_state = 2}, - [347] = {.lex_state = 307, .external_lex_state = 2}, - [348] = {.lex_state = 307, .external_lex_state = 2}, - [349] = {.lex_state = 307, .external_lex_state = 2}, - [350] = {.lex_state = 307, .external_lex_state = 2}, - [351] = {.lex_state = 307, .external_lex_state = 2}, - [352] = {.lex_state = 307, .external_lex_state = 2}, - [353] = {.lex_state = 307, .external_lex_state = 2}, - [354] = {.lex_state = 307, .external_lex_state = 2}, - [355] = {.lex_state = 307, .external_lex_state = 2}, + [331] = {.lex_state = 1, .external_lex_state = 4}, + [332] = {.lex_state = 318, .external_lex_state = 2}, + [333] = {.lex_state = 318, .external_lex_state = 2}, + [334] = {.lex_state = 318, .external_lex_state = 2}, + [335] = {.lex_state = 318, .external_lex_state = 2}, + [336] = {.lex_state = 318, .external_lex_state = 2}, + [337] = {.lex_state = 318, .external_lex_state = 2}, + [338] = {.lex_state = 318, .external_lex_state = 2}, + [339] = {.lex_state = 318, .external_lex_state = 2}, + [340] = {.lex_state = 318, .external_lex_state = 2}, + [341] = {.lex_state = 318, .external_lex_state = 2}, + [342] = {.lex_state = 318, .external_lex_state = 2}, + [343] = {.lex_state = 318, .external_lex_state = 2}, + [344] = {.lex_state = 318, .external_lex_state = 2}, + [345] = {.lex_state = 318, .external_lex_state = 2}, + [346] = {.lex_state = 318, .external_lex_state = 2}, + [347] = {.lex_state = 318, .external_lex_state = 2}, + [348] = {.lex_state = 318, .external_lex_state = 2}, + [349] = {.lex_state = 318, .external_lex_state = 2}, + [350] = {.lex_state = 318, .external_lex_state = 2}, + [351] = {.lex_state = 318, .external_lex_state = 2}, + [352] = {.lex_state = 318, .external_lex_state = 2}, + [353] = {.lex_state = 318, .external_lex_state = 2}, + [354] = {.lex_state = 318, .external_lex_state = 2}, + [355] = {.lex_state = 318, .external_lex_state = 2}, [356] = {.lex_state = 2, .external_lex_state = 4}, - [357] = {.lex_state = 1, .external_lex_state = 4}, - [358] = {.lex_state = 1, .external_lex_state = 4}, + [357] = {.lex_state = 2, .external_lex_state = 4}, + [358] = {.lex_state = 2, .external_lex_state = 3}, [359] = {.lex_state = 1, .external_lex_state = 4}, [360] = {.lex_state = 1, .external_lex_state = 4}, [361] = {.lex_state = 1, .external_lex_state = 4}, - [362] = {.lex_state = 1, .external_lex_state = 4}, + [362] = {.lex_state = 2, .external_lex_state = 4}, [363] = {.lex_state = 1, .external_lex_state = 4}, [364] = {.lex_state = 1, .external_lex_state = 4}, [365] = {.lex_state = 1, .external_lex_state = 4}, @@ -23170,18 +23916,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 1, .external_lex_state = 4}, [375] = {.lex_state = 1, .external_lex_state = 4}, [376] = {.lex_state = 1, .external_lex_state = 4}, - [377] = {.lex_state = 2, .external_lex_state = 3}, + [377] = {.lex_state = 1, .external_lex_state = 4}, [378] = {.lex_state = 1, .external_lex_state = 4}, [379] = {.lex_state = 1, .external_lex_state = 4}, [380] = {.lex_state = 1, .external_lex_state = 4}, - [381] = {.lex_state = 2, .external_lex_state = 4}, + [381] = {.lex_state = 1, .external_lex_state = 4}, [382] = {.lex_state = 1, .external_lex_state = 4}, [383] = {.lex_state = 1, .external_lex_state = 4}, [384] = {.lex_state = 1, .external_lex_state = 4}, [385] = {.lex_state = 1, .external_lex_state = 4}, [386] = {.lex_state = 1, .external_lex_state = 4}, [387] = {.lex_state = 1, .external_lex_state = 4}, - [388] = {.lex_state = 2, .external_lex_state = 4}, + [388] = {.lex_state = 1, .external_lex_state = 4}, [389] = {.lex_state = 1, .external_lex_state = 4}, [390] = {.lex_state = 1, .external_lex_state = 4}, [391] = {.lex_state = 1, .external_lex_state = 4}, @@ -23341,28 +24087,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [545] = {.lex_state = 1, .external_lex_state = 4}, [546] = {.lex_state = 1, .external_lex_state = 4}, [547] = {.lex_state = 1, .external_lex_state = 4}, - [548] = {.lex_state = 9, .external_lex_state = 6}, + [548] = {.lex_state = 1, .external_lex_state = 4}, [549] = {.lex_state = 1, .external_lex_state = 4}, [550] = {.lex_state = 1, .external_lex_state = 4}, [551] = {.lex_state = 1, .external_lex_state = 4}, [552] = {.lex_state = 1, .external_lex_state = 4}, [553] = {.lex_state = 1, .external_lex_state = 4}, - [554] = {.lex_state = 9, .external_lex_state = 6}, - [555] = {.lex_state = 9, .external_lex_state = 6}, + [554] = {.lex_state = 1, .external_lex_state = 4}, + [555] = {.lex_state = 1, .external_lex_state = 4}, [556] = {.lex_state = 1, .external_lex_state = 4}, - [557] = {.lex_state = 9, .external_lex_state = 6}, - [558] = {.lex_state = 9, .external_lex_state = 6}, + [557] = {.lex_state = 1, .external_lex_state = 4}, + [558] = {.lex_state = 1, .external_lex_state = 4}, [559] = {.lex_state = 1, .external_lex_state = 4}, [560] = {.lex_state = 1, .external_lex_state = 4}, - [561] = {.lex_state = 9, .external_lex_state = 6}, - [562] = {.lex_state = 9, .external_lex_state = 6}, + [561] = {.lex_state = 1, .external_lex_state = 4}, + [562] = {.lex_state = 1, .external_lex_state = 4}, [563] = {.lex_state = 1, .external_lex_state = 4}, [564] = {.lex_state = 1, .external_lex_state = 4}, [565] = {.lex_state = 1, .external_lex_state = 4}, [566] = {.lex_state = 1, .external_lex_state = 4}, [567] = {.lex_state = 1, .external_lex_state = 4}, - [568] = {.lex_state = 9, .external_lex_state = 6}, - [569] = {.lex_state = 9, .external_lex_state = 6}, + [568] = {.lex_state = 1, .external_lex_state = 4}, + [569] = {.lex_state = 1, .external_lex_state = 4}, [570] = {.lex_state = 1, .external_lex_state = 4}, [571] = {.lex_state = 1, .external_lex_state = 4}, [572] = {.lex_state = 1, .external_lex_state = 4}, @@ -23370,7 +24116,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [574] = {.lex_state = 1, .external_lex_state = 4}, [575] = {.lex_state = 1, .external_lex_state = 4}, [576] = {.lex_state = 1, .external_lex_state = 4}, - [577] = {.lex_state = 9, .external_lex_state = 6}, + [577] = {.lex_state = 1, .external_lex_state = 4}, [578] = {.lex_state = 1, .external_lex_state = 4}, [579] = {.lex_state = 1, .external_lex_state = 4}, [580] = {.lex_state = 1, .external_lex_state = 4}, @@ -23385,14 +24131,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [589] = {.lex_state = 1, .external_lex_state = 4}, [590] = {.lex_state = 1, .external_lex_state = 4}, [591] = {.lex_state = 1, .external_lex_state = 4}, - [592] = {.lex_state = 9, .external_lex_state = 6}, + [592] = {.lex_state = 1, .external_lex_state = 4}, [593] = {.lex_state = 1, .external_lex_state = 4}, [594] = {.lex_state = 1, .external_lex_state = 4}, [595] = {.lex_state = 1, .external_lex_state = 4}, [596] = {.lex_state = 1, .external_lex_state = 4}, [597] = {.lex_state = 1, .external_lex_state = 4}, [598] = {.lex_state = 1, .external_lex_state = 4}, - [599] = {.lex_state = 9, .external_lex_state = 6}, + [599] = {.lex_state = 1, .external_lex_state = 4}, [600] = {.lex_state = 1, .external_lex_state = 4}, [601] = {.lex_state = 1, .external_lex_state = 4}, [602] = {.lex_state = 1, .external_lex_state = 4}, @@ -23418,43 +24164,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [622] = {.lex_state = 1, .external_lex_state = 4}, [623] = {.lex_state = 1, .external_lex_state = 4}, [624] = {.lex_state = 1, .external_lex_state = 4}, - [625] = {.lex_state = 1, .external_lex_state = 4}, - [626] = {.lex_state = 1, .external_lex_state = 4}, - [627] = {.lex_state = 1, .external_lex_state = 4}, - [628] = {.lex_state = 1, .external_lex_state = 4}, - [629] = {.lex_state = 1, .external_lex_state = 4}, - [630] = {.lex_state = 1, .external_lex_state = 4}, - [631] = {.lex_state = 1, .external_lex_state = 4}, - [632] = {.lex_state = 1, .external_lex_state = 4}, - [633] = {.lex_state = 1, .external_lex_state = 4}, - [634] = {.lex_state = 1, .external_lex_state = 4}, - [635] = {.lex_state = 1, .external_lex_state = 4}, - [636] = {.lex_state = 1, .external_lex_state = 4}, + [625] = {.lex_state = 13, .external_lex_state = 6}, + [626] = {.lex_state = 13, .external_lex_state = 6}, + [627] = {.lex_state = 13, .external_lex_state = 6}, + [628] = {.lex_state = 13, .external_lex_state = 6}, + [629] = {.lex_state = 13, .external_lex_state = 6}, + [630] = {.lex_state = 13, .external_lex_state = 6}, + [631] = {.lex_state = 13, .external_lex_state = 6}, + [632] = {.lex_state = 13, .external_lex_state = 6}, + [633] = {.lex_state = 13, .external_lex_state = 6}, + [634] = {.lex_state = 13, .external_lex_state = 6}, + [635] = {.lex_state = 13, .external_lex_state = 6}, + [636] = {.lex_state = 13, .external_lex_state = 6}, [637] = {.lex_state = 1, .external_lex_state = 4}, [638] = {.lex_state = 1, .external_lex_state = 4}, [639] = {.lex_state = 1, .external_lex_state = 4}, - [640] = {.lex_state = 9, .external_lex_state = 7}, - [641] = {.lex_state = 9, .external_lex_state = 7}, - [642] = {.lex_state = 9, .external_lex_state = 7}, - [643] = {.lex_state = 9, .external_lex_state = 7}, - [644] = {.lex_state = 9, .external_lex_state = 7}, + [640] = {.lex_state = 1, .external_lex_state = 4}, + [641] = {.lex_state = 1, .external_lex_state = 4}, + [642] = {.lex_state = 1, .external_lex_state = 4}, + [643] = {.lex_state = 1, .external_lex_state = 4}, + [644] = {.lex_state = 1, .external_lex_state = 4}, [645] = {.lex_state = 1, .external_lex_state = 4}, - [646] = {.lex_state = 9, .external_lex_state = 7}, + [646] = {.lex_state = 1, .external_lex_state = 4}, [647] = {.lex_state = 1, .external_lex_state = 4}, [648] = {.lex_state = 1, .external_lex_state = 4}, [649] = {.lex_state = 1, .external_lex_state = 4}, [650] = {.lex_state = 1, .external_lex_state = 4}, [651] = {.lex_state = 1, .external_lex_state = 4}, - [652] = {.lex_state = 9, .external_lex_state = 7}, - [653] = {.lex_state = 9, .external_lex_state = 7}, - [654] = {.lex_state = 9, .external_lex_state = 7}, - [655] = {.lex_state = 9, .external_lex_state = 7}, - [656] = {.lex_state = 9, .external_lex_state = 7}, - [657] = {.lex_state = 9, .external_lex_state = 7}, + [652] = {.lex_state = 1, .external_lex_state = 4}, + [653] = {.lex_state = 1, .external_lex_state = 4}, + [654] = {.lex_state = 1, .external_lex_state = 4}, + [655] = {.lex_state = 1, .external_lex_state = 4}, + [656] = {.lex_state = 1, .external_lex_state = 4}, + [657] = {.lex_state = 1, .external_lex_state = 4}, [658] = {.lex_state = 1, .external_lex_state = 4}, [659] = {.lex_state = 1, .external_lex_state = 4}, [660] = {.lex_state = 1, .external_lex_state = 4}, - [661] = {.lex_state = 9, .external_lex_state = 6}, + [661] = {.lex_state = 1, .external_lex_state = 4}, [662] = {.lex_state = 1, .external_lex_state = 4}, [663] = {.lex_state = 1, .external_lex_state = 4}, [664] = {.lex_state = 1, .external_lex_state = 4}, @@ -23468,70 +24214,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 1, .external_lex_state = 4}, [673] = {.lex_state = 1, .external_lex_state = 4}, [674] = {.lex_state = 1, .external_lex_state = 4}, - [675] = {.lex_state = 1, .external_lex_state = 4}, - [676] = {.lex_state = 9, .external_lex_state = 6}, - [677] = {.lex_state = 9, .external_lex_state = 6}, - [678] = {.lex_state = 9, .external_lex_state = 6}, - [679] = {.lex_state = 1, .external_lex_state = 4}, - [680] = {.lex_state = 9, .external_lex_state = 6}, - [681] = {.lex_state = 9, .external_lex_state = 6}, - [682] = {.lex_state = 1, .external_lex_state = 4}, - [683] = {.lex_state = 9, .external_lex_state = 6}, - [684] = {.lex_state = 1, .external_lex_state = 4}, - [685] = {.lex_state = 9, .external_lex_state = 6}, - [686] = {.lex_state = 1, .external_lex_state = 4}, - [687] = {.lex_state = 1, .external_lex_state = 4}, - [688] = {.lex_state = 1, .external_lex_state = 4}, - [689] = {.lex_state = 1, .external_lex_state = 4}, - [690] = {.lex_state = 1, .external_lex_state = 4}, - [691] = {.lex_state = 9, .external_lex_state = 6}, - [692] = {.lex_state = 9, .external_lex_state = 6}, - [693] = {.lex_state = 1, .external_lex_state = 4}, - [694] = {.lex_state = 9, .external_lex_state = 6}, - [695] = {.lex_state = 9, .external_lex_state = 6}, - [696] = {.lex_state = 1, .external_lex_state = 4}, - [697] = {.lex_state = 1, .external_lex_state = 4}, - [698] = {.lex_state = 1, .external_lex_state = 4}, - [699] = {.lex_state = 9, .external_lex_state = 7}, - [700] = {.lex_state = 9, .external_lex_state = 7}, - [701] = {.lex_state = 9, .external_lex_state = 7}, - [702] = {.lex_state = 9, .external_lex_state = 7}, - [703] = {.lex_state = 9, .external_lex_state = 7}, - [704] = {.lex_state = 9, .external_lex_state = 7}, - [705] = {.lex_state = 9, .external_lex_state = 7}, - [706] = {.lex_state = 9, .external_lex_state = 7}, - [707] = {.lex_state = 9, .external_lex_state = 7}, - [708] = {.lex_state = 9, .external_lex_state = 7}, - [709] = {.lex_state = 9, .external_lex_state = 7}, - [710] = {.lex_state = 9, .external_lex_state = 7}, - [711] = {.lex_state = 1, .external_lex_state = 4}, - [712] = {.lex_state = 1, .external_lex_state = 4}, + [675] = {.lex_state = 13, .external_lex_state = 7}, + [676] = {.lex_state = 13, .external_lex_state = 7}, + [677] = {.lex_state = 13, .external_lex_state = 7}, + [678] = {.lex_state = 12, .external_lex_state = 2}, + [679] = {.lex_state = 12, .external_lex_state = 2}, + [680] = {.lex_state = 12, .external_lex_state = 2}, + [681] = {.lex_state = 12, .external_lex_state = 2}, + [682] = {.lex_state = 13, .external_lex_state = 7}, + [683] = {.lex_state = 12, .external_lex_state = 2}, + [684] = {.lex_state = 13, .external_lex_state = 7}, + [685] = {.lex_state = 12, .external_lex_state = 2}, + [686] = {.lex_state = 13, .external_lex_state = 7}, + [687] = {.lex_state = 12, .external_lex_state = 2}, + [688] = {.lex_state = 13, .external_lex_state = 7}, + [689] = {.lex_state = 12, .external_lex_state = 2}, + [690] = {.lex_state = 12, .external_lex_state = 2}, + [691] = {.lex_state = 13, .external_lex_state = 7}, + [692] = {.lex_state = 12, .external_lex_state = 2}, + [693] = {.lex_state = 12, .external_lex_state = 2}, + [694] = {.lex_state = 12, .external_lex_state = 2}, + [695] = {.lex_state = 12, .external_lex_state = 2}, + [696] = {.lex_state = 12, .external_lex_state = 2}, + [697] = {.lex_state = 12, .external_lex_state = 2}, + [698] = {.lex_state = 12, .external_lex_state = 2}, + [699] = {.lex_state = 12, .external_lex_state = 2}, + [700] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 13, .external_lex_state = 7}, + [705] = {.lex_state = 12, .external_lex_state = 2}, + [706] = {.lex_state = 13, .external_lex_state = 7}, + [707] = {.lex_state = 13, .external_lex_state = 7}, + [708] = {.lex_state = 13, .external_lex_state = 7}, + [709] = {.lex_state = 12, .external_lex_state = 2}, + [710] = {.lex_state = 12, .external_lex_state = 2}, + [711] = {.lex_state = 12, .external_lex_state = 2}, + [712] = {.lex_state = 13, .external_lex_state = 6}, [713] = {.lex_state = 1, .external_lex_state = 4}, - [714] = {.lex_state = 9, .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}, + [714] = {.lex_state = 13, .external_lex_state = 6}, + [715] = {.lex_state = 13, .external_lex_state = 6}, + [716] = {.lex_state = 13, .external_lex_state = 6}, + [717] = {.lex_state = 13, .external_lex_state = 6}, [718] = {.lex_state = 1, .external_lex_state = 4}, [719] = {.lex_state = 1, .external_lex_state = 4}, [720] = {.lex_state = 1, .external_lex_state = 4}, - [721] = {.lex_state = 1, .external_lex_state = 4}, - [722] = {.lex_state = 9, .external_lex_state = 6}, + [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 = 9, .external_lex_state = 6}, - [725] = {.lex_state = 1, .external_lex_state = 4}, - [726] = {.lex_state = 9, .external_lex_state = 6}, + [724] = {.lex_state = 1, .external_lex_state = 4}, + [725] = {.lex_state = 13, .external_lex_state = 6}, + [726] = {.lex_state = 13, .external_lex_state = 6}, [727] = {.lex_state = 1, .external_lex_state = 4}, - [728] = {.lex_state = 9, .external_lex_state = 6}, - [729] = {.lex_state = 1, .external_lex_state = 4}, - [730] = {.lex_state = 9, .external_lex_state = 6}, - [731] = {.lex_state = 9, .external_lex_state = 6}, + [728] = {.lex_state = 1, .external_lex_state = 4}, + [729] = {.lex_state = 13, .external_lex_state = 6}, + [730] = {.lex_state = 1, .external_lex_state = 4}, + [731] = {.lex_state = 1, .external_lex_state = 4}, [732] = {.lex_state = 1, .external_lex_state = 4}, [733] = {.lex_state = 1, .external_lex_state = 4}, - [734] = {.lex_state = 1, .external_lex_state = 4}, - [735] = {.lex_state = 1, .external_lex_state = 4}, + [734] = {.lex_state = 13, .external_lex_state = 6}, + [735] = {.lex_state = 13, .external_lex_state = 6}, [736] = {.lex_state = 1, .external_lex_state = 4}, [737] = {.lex_state = 1, .external_lex_state = 4}, - [738] = {.lex_state = 1, .external_lex_state = 4}, + [738] = {.lex_state = 13, .external_lex_state = 6}, [739] = {.lex_state = 1, .external_lex_state = 4}, [740] = {.lex_state = 1, .external_lex_state = 4}, [741] = {.lex_state = 1, .external_lex_state = 4}, @@ -23539,151 +24285,151 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 1, .external_lex_state = 4}, [744] = {.lex_state = 1, .external_lex_state = 4}, [745] = {.lex_state = 1, .external_lex_state = 4}, - [746] = {.lex_state = 9, .external_lex_state = 6}, - [747] = {.lex_state = 9, .external_lex_state = 6}, - [748] = {.lex_state = 9, .external_lex_state = 6}, - [749] = {.lex_state = 9, .external_lex_state = 6}, - [750] = {.lex_state = 9, .external_lex_state = 6}, + [746] = {.lex_state = 1, .external_lex_state = 4}, + [747] = {.lex_state = 1, .external_lex_state = 4}, + [748] = {.lex_state = 1, .external_lex_state = 4}, + [749] = {.lex_state = 1, .external_lex_state = 4}, + [750] = {.lex_state = 1, .external_lex_state = 4}, [751] = {.lex_state = 1, .external_lex_state = 4}, - [752] = {.lex_state = 8, .external_lex_state = 2}, - [753] = {.lex_state = 1, .external_lex_state = 4}, - [754] = {.lex_state = 8, .external_lex_state = 2}, - [755] = {.lex_state = 1, .external_lex_state = 4}, - [756] = {.lex_state = 1, .external_lex_state = 4}, - [757] = {.lex_state = 8, .external_lex_state = 2}, - [758] = {.lex_state = 8, .external_lex_state = 2}, - [759] = {.lex_state = 8, .external_lex_state = 2}, - [760] = {.lex_state = 8, .external_lex_state = 2}, - [761] = {.lex_state = 8, .external_lex_state = 2}, - [762] = {.lex_state = 8, .external_lex_state = 2}, - [763] = {.lex_state = 8, .external_lex_state = 2}, - [764] = {.lex_state = 8, .external_lex_state = 2}, - [765] = {.lex_state = 8, .external_lex_state = 2}, - [766] = {.lex_state = 8, .external_lex_state = 2}, - [767] = {.lex_state = 8, .external_lex_state = 2}, - [768] = {.lex_state = 8, .external_lex_state = 2}, - [769] = {.lex_state = 8, .external_lex_state = 2}, - [770] = {.lex_state = 1, .external_lex_state = 4}, - [771] = {.lex_state = 8, .external_lex_state = 2}, - [772] = {.lex_state = 8, .external_lex_state = 2}, - [773] = {.lex_state = 8, .external_lex_state = 2}, - [774] = {.lex_state = 8, .external_lex_state = 2}, - [775] = {.lex_state = 1, .external_lex_state = 4}, - [776] = {.lex_state = 8, .external_lex_state = 2}, - [777] = {.lex_state = 8, .external_lex_state = 2}, + [752] = {.lex_state = 13, .external_lex_state = 7}, + [753] = {.lex_state = 9, .external_lex_state = 2}, + [754] = {.lex_state = 9, .external_lex_state = 2}, + [755] = {.lex_state = 9, .external_lex_state = 2}, + [756] = {.lex_state = 13, .external_lex_state = 7}, + [757] = {.lex_state = 13, .external_lex_state = 7}, + [758] = {.lex_state = 13, .external_lex_state = 7}, + [759] = {.lex_state = 13, .external_lex_state = 7}, + [760] = {.lex_state = 13, .external_lex_state = 7}, + [761] = {.lex_state = 13, .external_lex_state = 7}, + [762] = {.lex_state = 9, .external_lex_state = 2}, + [763] = {.lex_state = 9, .external_lex_state = 2}, + [764] = {.lex_state = 1, .external_lex_state = 4}, + [765] = {.lex_state = 9, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 9, .external_lex_state = 2}, + [768] = {.lex_state = 9, .external_lex_state = 2}, + [769] = {.lex_state = 9, .external_lex_state = 2}, + [770] = {.lex_state = 13, .external_lex_state = 7}, + [771] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 13, .external_lex_state = 7}, + [773] = {.lex_state = 1, .external_lex_state = 4}, + [774] = {.lex_state = 1, .external_lex_state = 4}, + [775] = {.lex_state = 13, .external_lex_state = 7}, + [776] = {.lex_state = 1, .external_lex_state = 4}, + [777] = {.lex_state = 1, .external_lex_state = 4}, [778] = {.lex_state = 1, .external_lex_state = 4}, - [779] = {.lex_state = 1, .external_lex_state = 4}, - [780] = {.lex_state = 8, .external_lex_state = 2}, - [781] = {.lex_state = 8, .external_lex_state = 2}, - [782] = {.lex_state = 8, .external_lex_state = 2}, - [783] = {.lex_state = 8, .external_lex_state = 2}, - [784] = {.lex_state = 1, .external_lex_state = 4}, - [785] = {.lex_state = 5, .external_lex_state = 2}, - [786] = {.lex_state = 5, .external_lex_state = 2}, - [787] = {.lex_state = 9, .external_lex_state = 7}, - [788] = {.lex_state = 1, .external_lex_state = 4}, - [789] = {.lex_state = 5, .external_lex_state = 2}, - [790] = {.lex_state = 5, .external_lex_state = 2}, - [791] = {.lex_state = 1, .external_lex_state = 4}, - [792] = {.lex_state = 5, .external_lex_state = 2}, - [793] = {.lex_state = 9, .external_lex_state = 7}, - [794] = {.lex_state = 1, .external_lex_state = 4}, - [795] = {.lex_state = 5, .external_lex_state = 2}, - [796] = {.lex_state = 5, .external_lex_state = 2}, - [797] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [783] = {.lex_state = 13, .external_lex_state = 7}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 1, .external_lex_state = 4}, + [786] = {.lex_state = 9, .external_lex_state = 2}, + [787] = {.lex_state = 9, .external_lex_state = 2}, + [788] = {.lex_state = 9, .external_lex_state = 2}, + [789] = {.lex_state = 9, .external_lex_state = 2}, + [790] = {.lex_state = 9, .external_lex_state = 2}, + [791] = {.lex_state = 9, .external_lex_state = 2}, + [792] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 9, .external_lex_state = 2}, + [797] = {.lex_state = 13, .external_lex_state = 7}, [798] = {.lex_state = 1, .external_lex_state = 4}, - [799] = {.lex_state = 1, .external_lex_state = 4}, - [800] = {.lex_state = 5, .external_lex_state = 2}, - [801] = {.lex_state = 5, .external_lex_state = 2}, - [802] = {.lex_state = 1, .external_lex_state = 4}, - [803] = {.lex_state = 9, .external_lex_state = 7}, - [804] = {.lex_state = 5, .external_lex_state = 2}, - [805] = {.lex_state = 1, .external_lex_state = 4}, - [806] = {.lex_state = 5, .external_lex_state = 2}, - [807] = {.lex_state = 1, .external_lex_state = 4}, - [808] = {.lex_state = 5, .external_lex_state = 2}, - [809] = {.lex_state = 5, .external_lex_state = 2}, - [810] = {.lex_state = 9, .external_lex_state = 7}, - [811] = {.lex_state = 5, .external_lex_state = 2}, - [812] = {.lex_state = 9, .external_lex_state = 7}, - [813] = {.lex_state = 5, .external_lex_state = 2}, - [814] = {.lex_state = 9, .external_lex_state = 7}, - [815] = {.lex_state = 9, .external_lex_state = 7}, - [816] = {.lex_state = 9, .external_lex_state = 7}, - [817] = {.lex_state = 9, .external_lex_state = 7}, + [799] = {.lex_state = 13, .external_lex_state = 6}, + [800] = {.lex_state = 13, .external_lex_state = 6}, + [801] = {.lex_state = 1, .external_lex_state = 4}, + [802] = {.lex_state = 13, .external_lex_state = 6}, + [803] = {.lex_state = 13, .external_lex_state = 6}, + [804] = {.lex_state = 13, .external_lex_state = 6}, + [805] = {.lex_state = 13, .external_lex_state = 6}, + [806] = {.lex_state = 13, .external_lex_state = 6}, + [807] = {.lex_state = 13, .external_lex_state = 6}, + [808] = {.lex_state = 13, .external_lex_state = 6}, + [809] = {.lex_state = 13, .external_lex_state = 6}, + [810] = {.lex_state = 13, .external_lex_state = 6}, + [811] = {.lex_state = 13, .external_lex_state = 6}, + [812] = {.lex_state = 1, .external_lex_state = 4}, + [813] = {.lex_state = 1, .external_lex_state = 4}, + [814] = {.lex_state = 1, .external_lex_state = 4}, + [815] = {.lex_state = 1, .external_lex_state = 4}, + [816] = {.lex_state = 1, .external_lex_state = 4}, + [817] = {.lex_state = 12, .external_lex_state = 2}, [818] = {.lex_state = 1, .external_lex_state = 4}, - [819] = {.lex_state = 5, .external_lex_state = 2}, - [820] = {.lex_state = 5, .external_lex_state = 2}, - [821] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 5, .external_lex_state = 2}, - [824] = {.lex_state = 9, .external_lex_state = 7}, - [825] = {.lex_state = 5, .external_lex_state = 2}, - [826] = {.lex_state = 5, .external_lex_state = 2}, - [827] = {.lex_state = 9, .external_lex_state = 7}, - [828] = {.lex_state = 9, .external_lex_state = 7}, - [829] = {.lex_state = 5, .external_lex_state = 2}, - [830] = {.lex_state = 5, .external_lex_state = 2}, - [831] = {.lex_state = 5, .external_lex_state = 2}, + [823] = {.lex_state = 1, .external_lex_state = 4}, + [824] = {.lex_state = 1, .external_lex_state = 4}, + [825] = {.lex_state = 1, .external_lex_state = 4}, + [826] = {.lex_state = 1, .external_lex_state = 4}, + [827] = {.lex_state = 1, .external_lex_state = 4}, + [828] = {.lex_state = 1, .external_lex_state = 4}, + [829] = {.lex_state = 1, .external_lex_state = 4}, + [830] = {.lex_state = 1, .external_lex_state = 4}, + [831] = {.lex_state = 1, .external_lex_state = 4}, [832] = {.lex_state = 1, .external_lex_state = 4}, [833] = {.lex_state = 1, .external_lex_state = 4}, - [834] = {.lex_state = 5, .external_lex_state = 2}, - [835] = {.lex_state = 5, .external_lex_state = 2}, + [834] = {.lex_state = 1, .external_lex_state = 3}, + [835] = {.lex_state = 1, .external_lex_state = 4}, [836] = {.lex_state = 1, .external_lex_state = 4}, [837] = {.lex_state = 1, .external_lex_state = 4}, [838] = {.lex_state = 1, .external_lex_state = 4}, [839] = {.lex_state = 1, .external_lex_state = 4}, - [840] = {.lex_state = 1, .external_lex_state = 4}, + [840] = {.lex_state = 1, .external_lex_state = 3}, [841] = {.lex_state = 1, .external_lex_state = 4}, - [842] = {.lex_state = 1, .external_lex_state = 4}, + [842] = {.lex_state = 1, .external_lex_state = 3}, [843] = {.lex_state = 1, .external_lex_state = 4}, - [844] = {.lex_state = 9, .external_lex_state = 6}, - [845] = {.lex_state = 9, .external_lex_state = 6}, + [844] = {.lex_state = 1, .external_lex_state = 4}, + [845] = {.lex_state = 1, .external_lex_state = 4}, [846] = {.lex_state = 1, .external_lex_state = 4}, - [847] = {.lex_state = 1, .external_lex_state = 4}, + [847] = {.lex_state = 1, .external_lex_state = 3}, [848] = {.lex_state = 1, .external_lex_state = 4}, - [849] = {.lex_state = 9, .external_lex_state = 6}, + [849] = {.lex_state = 1, .external_lex_state = 4}, [850] = {.lex_state = 1, .external_lex_state = 4}, - [851] = {.lex_state = 9, .external_lex_state = 6}, + [851] = {.lex_state = 1, .external_lex_state = 4}, [852] = {.lex_state = 1, .external_lex_state = 4}, [853] = {.lex_state = 1, .external_lex_state = 4}, [854] = {.lex_state = 1, .external_lex_state = 4}, [855] = {.lex_state = 1, .external_lex_state = 4}, - [856] = {.lex_state = 9, .external_lex_state = 6}, + [856] = {.lex_state = 1, .external_lex_state = 4}, [857] = {.lex_state = 1, .external_lex_state = 4}, [858] = {.lex_state = 1, .external_lex_state = 4}, [859] = {.lex_state = 1, .external_lex_state = 4}, [860] = {.lex_state = 1, .external_lex_state = 4}, [861] = {.lex_state = 1, .external_lex_state = 4}, [862] = {.lex_state = 1, .external_lex_state = 4}, - [863] = {.lex_state = 1, .external_lex_state = 3}, + [863] = {.lex_state = 1, .external_lex_state = 4}, [864] = {.lex_state = 1, .external_lex_state = 4}, [865] = {.lex_state = 1, .external_lex_state = 4}, [866] = {.lex_state = 1, .external_lex_state = 4}, - [867] = {.lex_state = 9, .external_lex_state = 6}, + [867] = {.lex_state = 1, .external_lex_state = 4}, [868] = {.lex_state = 1, .external_lex_state = 4}, [869] = {.lex_state = 1, .external_lex_state = 4}, - [870] = {.lex_state = 1, .external_lex_state = 3}, - [871] = {.lex_state = 9, .external_lex_state = 6}, - [872] = {.lex_state = 9, .external_lex_state = 6}, - [873] = {.lex_state = 9, .external_lex_state = 6}, - [874] = {.lex_state = 9, .external_lex_state = 6}, - [875] = {.lex_state = 1, .external_lex_state = 4}, - [876] = {.lex_state = 1, .external_lex_state = 4}, + [870] = {.lex_state = 13, .external_lex_state = 7}, + [871] = {.lex_state = 1, .external_lex_state = 4}, + [872] = {.lex_state = 13, .external_lex_state = 7}, + [873] = {.lex_state = 13, .external_lex_state = 7}, + [874] = {.lex_state = 13, .external_lex_state = 7}, + [875] = {.lex_state = 13, .external_lex_state = 7}, + [876] = {.lex_state = 13, .external_lex_state = 7}, [877] = {.lex_state = 1, .external_lex_state = 4}, - [878] = {.lex_state = 1, .external_lex_state = 4}, - [879] = {.lex_state = 9, .external_lex_state = 6}, - [880] = {.lex_state = 9, .external_lex_state = 6}, - [881] = {.lex_state = 1, .external_lex_state = 4}, - [882] = {.lex_state = 1, .external_lex_state = 3}, - [883] = {.lex_state = 9, .external_lex_state = 7}, + [878] = {.lex_state = 13, .external_lex_state = 7}, + [879] = {.lex_state = 13, .external_lex_state = 7}, + [880] = {.lex_state = 13, .external_lex_state = 7}, + [881] = {.lex_state = 13, .external_lex_state = 7}, + [882] = {.lex_state = 13, .external_lex_state = 7}, + [883] = {.lex_state = 13, .external_lex_state = 7}, [884] = {.lex_state = 1, .external_lex_state = 4}, [885] = {.lex_state = 1, .external_lex_state = 4}, - [886] = {.lex_state = 9, .external_lex_state = 7}, + [886] = {.lex_state = 1, .external_lex_state = 4}, [887] = {.lex_state = 1, .external_lex_state = 4}, - [888] = {.lex_state = 9, .external_lex_state = 7}, - [889] = {.lex_state = 9, .external_lex_state = 7}, - [890] = {.lex_state = 9, .external_lex_state = 7}, + [888] = {.lex_state = 1, .external_lex_state = 4}, + [889] = {.lex_state = 1, .external_lex_state = 4}, + [890] = {.lex_state = 1, .external_lex_state = 4}, [891] = {.lex_state = 1, .external_lex_state = 4}, [892] = {.lex_state = 1, .external_lex_state = 4}, [893] = {.lex_state = 1, .external_lex_state = 4}, @@ -23697,21 +24443,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 9, .external_lex_state = 7}, + [904] = {.lex_state = 1, .external_lex_state = 4}, [905] = {.lex_state = 1, .external_lex_state = 4}, [906] = {.lex_state = 1, .external_lex_state = 4}, [907] = {.lex_state = 1, .external_lex_state = 4}, [908] = {.lex_state = 1, .external_lex_state = 4}, [909] = {.lex_state = 1, .external_lex_state = 4}, - [910] = {.lex_state = 8, .external_lex_state = 2}, + [910] = {.lex_state = 1, .external_lex_state = 4}, [911] = {.lex_state = 1, .external_lex_state = 4}, [912] = {.lex_state = 1, .external_lex_state = 4}, [913] = {.lex_state = 1, .external_lex_state = 4}, [914] = {.lex_state = 1, .external_lex_state = 4}, [915] = {.lex_state = 1, .external_lex_state = 4}, [916] = {.lex_state = 1, .external_lex_state = 4}, - [917] = {.lex_state = 9, .external_lex_state = 7}, - [918] = {.lex_state = 9, .external_lex_state = 7}, + [917] = {.lex_state = 1, .external_lex_state = 4}, + [918] = {.lex_state = 1, .external_lex_state = 4}, [919] = {.lex_state = 1, .external_lex_state = 4}, [920] = {.lex_state = 1, .external_lex_state = 4}, [921] = {.lex_state = 1, .external_lex_state = 4}, @@ -23719,18 +24465,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 1, .external_lex_state = 4}, [924] = {.lex_state = 1, .external_lex_state = 4}, [925] = {.lex_state = 1, .external_lex_state = 4}, - [926] = {.lex_state = 1, .external_lex_state = 4}, + [926] = {.lex_state = 13, .external_lex_state = 6}, [927] = {.lex_state = 1, .external_lex_state = 4}, - [928] = {.lex_state = 9, .external_lex_state = 7}, + [928] = {.lex_state = 1, .external_lex_state = 4}, [929] = {.lex_state = 1, .external_lex_state = 4}, [930] = {.lex_state = 1, .external_lex_state = 4}, [931] = {.lex_state = 1, .external_lex_state = 4}, - [932] = {.lex_state = 9, .external_lex_state = 7}, - [933] = {.lex_state = 9, .external_lex_state = 7}, + [932] = {.lex_state = 1, .external_lex_state = 4}, + [933] = {.lex_state = 1, .external_lex_state = 4}, [934] = {.lex_state = 1, .external_lex_state = 4}, [935] = {.lex_state = 1, .external_lex_state = 4}, [936] = {.lex_state = 1, .external_lex_state = 4}, - [937] = {.lex_state = 9, .external_lex_state = 7}, + [937] = {.lex_state = 1, .external_lex_state = 4}, [938] = {.lex_state = 1, .external_lex_state = 4}, [939] = {.lex_state = 1, .external_lex_state = 4}, [940] = {.lex_state = 1, .external_lex_state = 4}, @@ -23741,105 +24487,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, - [950] = {.lex_state = 1, .external_lex_state = 4}, - [951] = {.lex_state = 9, .external_lex_state = 7}, + [948] = {.lex_state = 2, .external_lex_state = 4}, + [949] = {.lex_state = 2, .external_lex_state = 4}, + [950] = {.lex_state = 2, .external_lex_state = 4}, + [951] = {.lex_state = 2, .external_lex_state = 4}, [952] = {.lex_state = 1, .external_lex_state = 4}, - [953] = {.lex_state = 1, .external_lex_state = 4}, + [953] = {.lex_state = 13, .external_lex_state = 6}, [954] = {.lex_state = 1, .external_lex_state = 4}, [955] = {.lex_state = 1, .external_lex_state = 4}, - [956] = {.lex_state = 9, .external_lex_state = 7}, - [957] = {.lex_state = 1, .external_lex_state = 4}, - [958] = {.lex_state = 1, .external_lex_state = 4}, - [959] = {.lex_state = 1, .external_lex_state = 4}, + [956] = {.lex_state = 1, .external_lex_state = 4}, + [957] = {.lex_state = 2, .external_lex_state = 4}, + [958] = {.lex_state = 2, .external_lex_state = 4}, + [959] = {.lex_state = 13, .external_lex_state = 6}, [960] = {.lex_state = 1, .external_lex_state = 4}, - [961] = {.lex_state = 1, .external_lex_state = 4}, - [962] = {.lex_state = 1, .external_lex_state = 4}, + [961] = {.lex_state = 2, .external_lex_state = 4}, + [962] = {.lex_state = 13, .external_lex_state = 6}, [963] = {.lex_state = 1, .external_lex_state = 4}, - [964] = {.lex_state = 1, .external_lex_state = 4}, - [965] = {.lex_state = 1, .external_lex_state = 4}, + [964] = {.lex_state = 13, .external_lex_state = 6}, + [965] = {.lex_state = 13, .external_lex_state = 6}, [966] = {.lex_state = 1, .external_lex_state = 4}, - [967] = {.lex_state = 9, .external_lex_state = 7}, - [968] = {.lex_state = 2, .external_lex_state = 4}, + [967] = {.lex_state = 1, .external_lex_state = 4}, + [968] = {.lex_state = 1, .external_lex_state = 4}, [969] = {.lex_state = 1, .external_lex_state = 4}, - [970] = {.lex_state = 1, .external_lex_state = 4}, + [970] = {.lex_state = 13, .external_lex_state = 6}, [971] = {.lex_state = 1, .external_lex_state = 4}, [972] = {.lex_state = 1, .external_lex_state = 4}, [973] = {.lex_state = 1, .external_lex_state = 4}, [974] = {.lex_state = 1, .external_lex_state = 4}, [975] = {.lex_state = 1, .external_lex_state = 4}, - [976] = {.lex_state = 1, .external_lex_state = 4}, - [977] = {.lex_state = 1, .external_lex_state = 4}, + [976] = {.lex_state = 13, .external_lex_state = 6}, + [977] = {.lex_state = 13, .external_lex_state = 6}, [978] = {.lex_state = 1, .external_lex_state = 4}, [979] = {.lex_state = 1, .external_lex_state = 4}, - [980] = {.lex_state = 1, .external_lex_state = 4}, + [980] = {.lex_state = 13, .external_lex_state = 6}, [981] = {.lex_state = 1, .external_lex_state = 4}, [982] = {.lex_state = 1, .external_lex_state = 4}, [983] = {.lex_state = 1, .external_lex_state = 4}, - [984] = {.lex_state = 1, .external_lex_state = 4}, + [984] = {.lex_state = 3, .external_lex_state = 4}, [985] = {.lex_state = 1, .external_lex_state = 4}, - [986] = {.lex_state = 1, .external_lex_state = 4}, + [986] = {.lex_state = 13, .external_lex_state = 6}, [987] = {.lex_state = 1, .external_lex_state = 4}, [988] = {.lex_state = 1, .external_lex_state = 4}, - [989] = {.lex_state = 1, .external_lex_state = 4}, - [990] = {.lex_state = 9, .external_lex_state = 6}, - [991] = {.lex_state = 9, .external_lex_state = 7}, + [989] = {.lex_state = 13, .external_lex_state = 6}, + [990] = {.lex_state = 1, .external_lex_state = 4}, + [991] = {.lex_state = 1, .external_lex_state = 4}, [992] = {.lex_state = 1, .external_lex_state = 4}, [993] = {.lex_state = 1, .external_lex_state = 4}, - [994] = {.lex_state = 9, .external_lex_state = 6}, - [995] = {.lex_state = 2, .external_lex_state = 4}, + [994] = {.lex_state = 1, .external_lex_state = 4}, + [995] = {.lex_state = 1, .external_lex_state = 4}, [996] = {.lex_state = 2, .external_lex_state = 4}, [997] = {.lex_state = 1, .external_lex_state = 4}, - [998] = {.lex_state = 2, .external_lex_state = 4}, - [999] = {.lex_state = 2, .external_lex_state = 4}, - [1000] = {.lex_state = 9, .external_lex_state = 6}, - [1001] = {.lex_state = 9, .external_lex_state = 6}, + [998] = {.lex_state = 1, .external_lex_state = 4}, + [999] = {.lex_state = 1, .external_lex_state = 4}, + [1000] = {.lex_state = 1, .external_lex_state = 4}, + [1001] = {.lex_state = 1, .external_lex_state = 4}, [1002] = {.lex_state = 2, .external_lex_state = 4}, [1003] = {.lex_state = 2, .external_lex_state = 4}, - [1004] = {.lex_state = 2, .external_lex_state = 4}, - [1005] = {.lex_state = 1, .external_lex_state = 4}, - [1006] = {.lex_state = 9, .external_lex_state = 6}, - [1007] = {.lex_state = 9, .external_lex_state = 6}, - [1008] = {.lex_state = 9, .external_lex_state = 6}, - [1009] = {.lex_state = 9, .external_lex_state = 6}, - [1010] = {.lex_state = 9, .external_lex_state = 6}, - [1011] = {.lex_state = 9, .external_lex_state = 6}, - [1012] = {.lex_state = 9, .external_lex_state = 6}, - [1013] = {.lex_state = 1, .external_lex_state = 4}, - [1014] = {.lex_state = 9, .external_lex_state = 6}, + [1004] = {.lex_state = 1, .external_lex_state = 4}, + [1005] = {.lex_state = 2, .external_lex_state = 4}, + [1006] = {.lex_state = 2, .external_lex_state = 4}, + [1007] = {.lex_state = 2, .external_lex_state = 4}, + [1008] = {.lex_state = 2, .external_lex_state = 4}, + [1009] = {.lex_state = 2, .external_lex_state = 4}, + [1010] = {.lex_state = 2, .external_lex_state = 4}, + [1011] = {.lex_state = 2, .external_lex_state = 4}, + [1012] = {.lex_state = 1, .external_lex_state = 4}, + [1013] = {.lex_state = 2, .external_lex_state = 4}, + [1014] = {.lex_state = 1, .external_lex_state = 4}, [1015] = {.lex_state = 1, .external_lex_state = 4}, - [1016] = {.lex_state = 9, .external_lex_state = 6}, - [1017] = {.lex_state = 9, .external_lex_state = 6}, - [1018] = {.lex_state = 9, .external_lex_state = 6}, + [1016] = {.lex_state = 1, .external_lex_state = 4}, + [1017] = {.lex_state = 1, .external_lex_state = 4}, + [1018] = {.lex_state = 1, .external_lex_state = 4}, [1019] = {.lex_state = 1, .external_lex_state = 4}, [1020] = {.lex_state = 1, .external_lex_state = 4}, - [1021] = {.lex_state = 9, .external_lex_state = 6}, + [1021] = {.lex_state = 1, .external_lex_state = 4}, [1022] = {.lex_state = 1, .external_lex_state = 4}, [1023] = {.lex_state = 1, .external_lex_state = 4}, [1024] = {.lex_state = 1, .external_lex_state = 4}, - [1025] = {.lex_state = 9, .external_lex_state = 6}, - [1026] = {.lex_state = 2, .external_lex_state = 4}, - [1027] = {.lex_state = 2, .external_lex_state = 4}, + [1025] = {.lex_state = 1, .external_lex_state = 4}, + [1026] = {.lex_state = 1, .external_lex_state = 4}, + [1027] = {.lex_state = 1, .external_lex_state = 4}, [1028] = {.lex_state = 1, .external_lex_state = 4}, - [1029] = {.lex_state = 2, .external_lex_state = 4}, - [1030] = {.lex_state = 2, .external_lex_state = 4}, - [1031] = {.lex_state = 2, .external_lex_state = 4}, - [1032] = {.lex_state = 2, .external_lex_state = 4}, - [1033] = {.lex_state = 9, .external_lex_state = 6}, + [1029] = {.lex_state = 1, .external_lex_state = 4}, + [1030] = {.lex_state = 1, .external_lex_state = 4}, + [1031] = {.lex_state = 1, .external_lex_state = 4}, + [1032] = {.lex_state = 1, .external_lex_state = 4}, + [1033] = {.lex_state = 1, .external_lex_state = 4}, [1034] = {.lex_state = 1, .external_lex_state = 4}, [1035] = {.lex_state = 1, .external_lex_state = 4}, - [1036] = {.lex_state = 9, .external_lex_state = 7}, + [1036] = {.lex_state = 1, .external_lex_state = 4}, [1037] = {.lex_state = 1, .external_lex_state = 4}, - [1038] = {.lex_state = 9, .external_lex_state = 7}, - [1039] = {.lex_state = 9, .external_lex_state = 6}, + [1038] = {.lex_state = 1, .external_lex_state = 4}, + [1039] = {.lex_state = 1, .external_lex_state = 4}, [1040] = {.lex_state = 1, .external_lex_state = 4}, - [1041] = {.lex_state = 2, .external_lex_state = 4}, - [1042] = {.lex_state = 2, .external_lex_state = 4}, + [1041] = {.lex_state = 1, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 4}, - [1046] = {.lex_state = 2, .external_lex_state = 4}, + [1045] = {.lex_state = 1, .external_lex_state = 4}, + [1046] = {.lex_state = 1, .external_lex_state = 4}, [1047] = {.lex_state = 1, .external_lex_state = 4}, [1048] = {.lex_state = 1, .external_lex_state = 4}, [1049] = {.lex_state = 1, .external_lex_state = 4}, @@ -23879,12 +24625,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1083] = {.lex_state = 1, .external_lex_state = 4}, [1084] = {.lex_state = 1, .external_lex_state = 4}, [1085] = {.lex_state = 1, .external_lex_state = 4}, - [1086] = {.lex_state = 1, .external_lex_state = 4}, - [1087] = {.lex_state = 1, .external_lex_state = 4}, - [1088] = {.lex_state = 1, .external_lex_state = 4}, - [1089] = {.lex_state = 1, .external_lex_state = 4}, - [1090] = {.lex_state = 1, .external_lex_state = 4}, - [1091] = {.lex_state = 9, .external_lex_state = 6}, + [1086] = {.lex_state = 13, .external_lex_state = 7}, + [1087] = {.lex_state = 13, .external_lex_state = 7}, + [1088] = {.lex_state = 13, .external_lex_state = 7}, + [1089] = {.lex_state = 13, .external_lex_state = 7}, + [1090] = {.lex_state = 13, .external_lex_state = 7}, + [1091] = {.lex_state = 13, .external_lex_state = 7}, [1092] = {.lex_state = 1, .external_lex_state = 4}, [1093] = {.lex_state = 1, .external_lex_state = 4}, [1094] = {.lex_state = 1, .external_lex_state = 4}, @@ -23910,7 +24656,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1114] = {.lex_state = 1, .external_lex_state = 4}, [1115] = {.lex_state = 1, .external_lex_state = 4}, [1116] = {.lex_state = 1, .external_lex_state = 4}, - [1117] = {.lex_state = 9, .external_lex_state = 6}, + [1117] = {.lex_state = 1, .external_lex_state = 4}, [1118] = {.lex_state = 1, .external_lex_state = 4}, [1119] = {.lex_state = 1, .external_lex_state = 4}, [1120] = {.lex_state = 1, .external_lex_state = 4}, @@ -23935,21 +24681,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1139] = {.lex_state = 1, .external_lex_state = 4}, [1140] = {.lex_state = 1, .external_lex_state = 4}, [1141] = {.lex_state = 1, .external_lex_state = 4}, - [1142] = {.lex_state = 1, .external_lex_state = 4}, + [1142] = {.lex_state = 13, .external_lex_state = 7}, [1143] = {.lex_state = 1, .external_lex_state = 4}, [1144] = {.lex_state = 1, .external_lex_state = 4}, [1145] = {.lex_state = 1, .external_lex_state = 4}, - [1146] = {.lex_state = 1, .external_lex_state = 4}, + [1146] = {.lex_state = 13, .external_lex_state = 7}, [1147] = {.lex_state = 1, .external_lex_state = 4}, [1148] = {.lex_state = 1, .external_lex_state = 4}, [1149] = {.lex_state = 1, .external_lex_state = 4}, [1150] = {.lex_state = 1, .external_lex_state = 4}, [1151] = {.lex_state = 1, .external_lex_state = 4}, - [1152] = {.lex_state = 1, .external_lex_state = 4}, + [1152] = {.lex_state = 13, .external_lex_state = 7}, [1153] = {.lex_state = 1, .external_lex_state = 4}, [1154] = {.lex_state = 1, .external_lex_state = 4}, - [1155] = {.lex_state = 9, .external_lex_state = 6}, - [1156] = {.lex_state = 1, .external_lex_state = 4}, + [1155] = {.lex_state = 1, .external_lex_state = 4}, + [1156] = {.lex_state = 13, .external_lex_state = 7}, [1157] = {.lex_state = 1, .external_lex_state = 4}, [1158] = {.lex_state = 1, .external_lex_state = 4}, [1159] = {.lex_state = 1, .external_lex_state = 4}, @@ -23971,7363 +24717,7363 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1175] = {.lex_state = 1, .external_lex_state = 4}, [1176] = {.lex_state = 1, .external_lex_state = 4}, [1177] = {.lex_state = 1, .external_lex_state = 4}, - [1178] = {.lex_state = 1, .external_lex_state = 4}, - [1179] = {.lex_state = 9, .external_lex_state = 6}, + [1178] = {.lex_state = 13, .external_lex_state = 7}, + [1179] = {.lex_state = 1, .external_lex_state = 4}, [1180] = {.lex_state = 1, .external_lex_state = 4}, [1181] = {.lex_state = 1, .external_lex_state = 4}, [1182] = {.lex_state = 1, .external_lex_state = 4}, [1183] = {.lex_state = 1, .external_lex_state = 4}, - [1184] = {.lex_state = 1, .external_lex_state = 4}, + [1184] = {.lex_state = 13, .external_lex_state = 7}, [1185] = {.lex_state = 1, .external_lex_state = 4}, [1186] = {.lex_state = 1, .external_lex_state = 4}, [1187] = {.lex_state = 1, .external_lex_state = 4}, - [1188] = {.lex_state = 9, .external_lex_state = 6}, - [1189] = {.lex_state = 1, .external_lex_state = 4}, - [1190] = {.lex_state = 1, .external_lex_state = 4}, - [1191] = {.lex_state = 1, .external_lex_state = 4}, - [1192] = {.lex_state = 1, .external_lex_state = 4}, - [1193] = {.lex_state = 1, .external_lex_state = 4}, - [1194] = {.lex_state = 1, .external_lex_state = 4}, - [1195] = {.lex_state = 1, .external_lex_state = 4}, - [1196] = {.lex_state = 1, .external_lex_state = 4}, - [1197] = {.lex_state = 1, .external_lex_state = 4}, + [1188] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 2, .external_lex_state = 4}, + [1190] = {.lex_state = 13, .external_lex_state = 7}, + [1191] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1193] = {.lex_state = 2, .external_lex_state = 4}, + [1194] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 2, .external_lex_state = 4}, + [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 2, .external_lex_state = 4}, [1198] = {.lex_state = 1, .external_lex_state = 4}, - [1199] = {.lex_state = 1, .external_lex_state = 4}, - [1200] = {.lex_state = 1, .external_lex_state = 4}, - [1201] = {.lex_state = 1, .external_lex_state = 4}, - [1202] = {.lex_state = 1, .external_lex_state = 4}, - [1203] = {.lex_state = 1, .external_lex_state = 4}, - [1204] = {.lex_state = 1, .external_lex_state = 4}, - [1205] = {.lex_state = 1, .external_lex_state = 4}, - [1206] = {.lex_state = 1, .external_lex_state = 4}, + [1199] = {.lex_state = 2, .external_lex_state = 4}, + [1200] = {.lex_state = 2, .external_lex_state = 4}, + [1201] = {.lex_state = 2, .external_lex_state = 4}, + [1202] = {.lex_state = 13, .external_lex_state = 6}, + [1203] = {.lex_state = 13, .external_lex_state = 7}, + [1204] = {.lex_state = 13, .external_lex_state = 6}, + [1205] = {.lex_state = 13, .external_lex_state = 6}, + [1206] = {.lex_state = 13, .external_lex_state = 6}, [1207] = {.lex_state = 1, .external_lex_state = 4}, - [1208] = {.lex_state = 9, .external_lex_state = 6}, - [1209] = {.lex_state = 1, .external_lex_state = 4}, - [1210] = {.lex_state = 1, .external_lex_state = 4}, - [1211] = {.lex_state = 2, .external_lex_state = 4}, - [1212] = {.lex_state = 2, .external_lex_state = 4}, - [1213] = {.lex_state = 1, .external_lex_state = 4}, - [1214] = {.lex_state = 1, .external_lex_state = 4}, - [1215] = {.lex_state = 1, .external_lex_state = 4}, - [1216] = {.lex_state = 2, .external_lex_state = 4}, - [1217] = {.lex_state = 2, .external_lex_state = 4}, - [1218] = {.lex_state = 2, .external_lex_state = 4}, - [1219] = {.lex_state = 1, .external_lex_state = 4}, - [1220] = {.lex_state = 1, .external_lex_state = 3}, - [1221] = {.lex_state = 1, .external_lex_state = 3}, - [1222] = {.lex_state = 2, .external_lex_state = 4}, - [1223] = {.lex_state = 9, .external_lex_state = 6}, - [1224] = {.lex_state = 9, .external_lex_state = 6}, - [1225] = {.lex_state = 1, .external_lex_state = 4}, - [1226] = {.lex_state = 9, .external_lex_state = 6}, - [1227] = {.lex_state = 2, .external_lex_state = 4}, - [1228] = {.lex_state = 9, .external_lex_state = 6}, - [1229] = {.lex_state = 9, .external_lex_state = 6}, - [1230] = {.lex_state = 9, .external_lex_state = 6}, - [1231] = {.lex_state = 9, .external_lex_state = 6}, - [1232] = {.lex_state = 2, .external_lex_state = 4}, - [1233] = {.lex_state = 2, .external_lex_state = 4}, - [1234] = {.lex_state = 2, .external_lex_state = 4}, - [1235] = {.lex_state = 2, .external_lex_state = 4}, - [1236] = {.lex_state = 2, .external_lex_state = 4}, - [1237] = {.lex_state = 2, .external_lex_state = 4}, - [1238] = {.lex_state = 2, .external_lex_state = 4}, - [1239] = {.lex_state = 2, .external_lex_state = 4}, - [1240] = {.lex_state = 2, .external_lex_state = 4}, - [1241] = {.lex_state = 2, .external_lex_state = 4}, - [1242] = {.lex_state = 9, .external_lex_state = 6}, - [1243] = {.lex_state = 1, .external_lex_state = 4}, + [1208] = {.lex_state = 2, .external_lex_state = 4}, + [1209] = {.lex_state = 2, .external_lex_state = 4}, + [1210] = {.lex_state = 2, .external_lex_state = 4}, + [1211] = {.lex_state = 13, .external_lex_state = 7}, + [1212] = {.lex_state = 13, .external_lex_state = 7}, + [1213] = {.lex_state = 13, .external_lex_state = 6}, + [1214] = {.lex_state = 13, .external_lex_state = 7}, + [1215] = {.lex_state = 13, .external_lex_state = 6}, + [1216] = {.lex_state = 13, .external_lex_state = 6}, + [1217] = {.lex_state = 13, .external_lex_state = 6}, + [1218] = {.lex_state = 13, .external_lex_state = 6}, + [1219] = {.lex_state = 13, .external_lex_state = 6}, + [1220] = {.lex_state = 13, .external_lex_state = 6}, + [1221] = {.lex_state = 13, .external_lex_state = 6}, + [1222] = {.lex_state = 13, .external_lex_state = 6}, + [1223] = {.lex_state = 2, .external_lex_state = 4}, + [1224] = {.lex_state = 13, .external_lex_state = 6}, + [1225] = {.lex_state = 1, .external_lex_state = 3}, + [1226] = {.lex_state = 13, .external_lex_state = 6}, + [1227] = {.lex_state = 1, .external_lex_state = 4}, + [1228] = {.lex_state = 13, .external_lex_state = 7}, + [1229] = {.lex_state = 13, .external_lex_state = 6}, + [1230] = {.lex_state = 2, .external_lex_state = 4}, + [1231] = {.lex_state = 13, .external_lex_state = 6}, + [1232] = {.lex_state = 1, .external_lex_state = 4}, + [1233] = {.lex_state = 13, .external_lex_state = 6}, + [1234] = {.lex_state = 13, .external_lex_state = 6}, + [1235] = {.lex_state = 1, .external_lex_state = 4}, + [1236] = {.lex_state = 1, .external_lex_state = 3}, + [1237] = {.lex_state = 1, .external_lex_state = 4}, + [1238] = {.lex_state = 9, .external_lex_state = 2}, + [1239] = {.lex_state = 9, .external_lex_state = 2}, + [1240] = {.lex_state = 1, .external_lex_state = 4}, + [1241] = {.lex_state = 9, .external_lex_state = 2}, + [1242] = {.lex_state = 9, .external_lex_state = 2}, + [1243] = {.lex_state = 13, .external_lex_state = 6}, [1244] = {.lex_state = 1, .external_lex_state = 4}, - [1245] = {.lex_state = 1, .external_lex_state = 4}, - [1246] = {.lex_state = 1, .external_lex_state = 4}, - [1247] = {.lex_state = 1, .external_lex_state = 4}, - [1248] = {.lex_state = 9, .external_lex_state = 6}, - [1249] = {.lex_state = 9, .external_lex_state = 7}, - [1250] = {.lex_state = 9, .external_lex_state = 7}, - [1251] = {.lex_state = 9, .external_lex_state = 6}, - [1252] = {.lex_state = 9, .external_lex_state = 6}, - [1253] = {.lex_state = 9, .external_lex_state = 7}, - [1254] = {.lex_state = 9, .external_lex_state = 7}, - [1255] = {.lex_state = 9, .external_lex_state = 7}, - [1256] = {.lex_state = 9, .external_lex_state = 7}, - [1257] = {.lex_state = 1, .external_lex_state = 4}, - [1258] = {.lex_state = 9, .external_lex_state = 7}, - [1259] = {.lex_state = 9, .external_lex_state = 7}, - [1260] = {.lex_state = 9, .external_lex_state = 7}, - [1261] = {.lex_state = 9, .external_lex_state = 7}, - [1262] = {.lex_state = 1, .external_lex_state = 4}, - [1263] = {.lex_state = 9, .external_lex_state = 7}, + [1245] = {.lex_state = 9, .external_lex_state = 2}, + [1246] = {.lex_state = 9, .external_lex_state = 2}, + [1247] = {.lex_state = 9, .external_lex_state = 2}, + [1248] = {.lex_state = 9, .external_lex_state = 2}, + [1249] = {.lex_state = 9, .external_lex_state = 2}, + [1250] = {.lex_state = 1, .external_lex_state = 4}, + [1251] = {.lex_state = 1, .external_lex_state = 4}, + [1252] = {.lex_state = 1, .external_lex_state = 4}, + [1253] = {.lex_state = 1, .external_lex_state = 4}, + [1254] = {.lex_state = 1, .external_lex_state = 4}, + [1255] = {.lex_state = 9, .external_lex_state = 2}, + [1256] = {.lex_state = 1, .external_lex_state = 4}, + [1257] = {.lex_state = 9, .external_lex_state = 2}, + [1258] = {.lex_state = 1, .external_lex_state = 4}, + [1259] = {.lex_state = 1, .external_lex_state = 4}, + [1260] = {.lex_state = 9, .external_lex_state = 2}, + [1261] = {.lex_state = 13, .external_lex_state = 6}, + [1262] = {.lex_state = 9, .external_lex_state = 2}, + [1263] = {.lex_state = 1, .external_lex_state = 4}, [1264] = {.lex_state = 1, .external_lex_state = 4}, - [1265] = {.lex_state = 9, .external_lex_state = 7}, - [1266] = {.lex_state = 9, .external_lex_state = 7}, - [1267] = {.lex_state = 9, .external_lex_state = 7}, - [1268] = {.lex_state = 9, .external_lex_state = 7}, - [1269] = {.lex_state = 1, .external_lex_state = 4}, - [1270] = {.lex_state = 1, .external_lex_state = 4}, - [1271] = {.lex_state = 1, .external_lex_state = 4}, - [1272] = {.lex_state = 1, .external_lex_state = 4}, + [1265] = {.lex_state = 1, .external_lex_state = 4}, + [1266] = {.lex_state = 13, .external_lex_state = 6}, + [1267] = {.lex_state = 1, .external_lex_state = 4}, + [1268] = {.lex_state = 1, .external_lex_state = 4}, + [1269] = {.lex_state = 9, .external_lex_state = 2}, + [1270] = {.lex_state = 9, .external_lex_state = 2}, + [1271] = {.lex_state = 13, .external_lex_state = 6}, + [1272] = {.lex_state = 9, .external_lex_state = 2}, [1273] = {.lex_state = 1, .external_lex_state = 4}, [1274] = {.lex_state = 1, .external_lex_state = 4}, - [1275] = {.lex_state = 9, .external_lex_state = 7}, - [1276] = {.lex_state = 9, .external_lex_state = 7}, - [1277] = {.lex_state = 9, .external_lex_state = 7}, + [1275] = {.lex_state = 9, .external_lex_state = 2}, + [1276] = {.lex_state = 9, .external_lex_state = 2}, + [1277] = {.lex_state = 1, .external_lex_state = 4}, [1278] = {.lex_state = 1, .external_lex_state = 4}, [1279] = {.lex_state = 1, .external_lex_state = 4}, - [1280] = {.lex_state = 1, .external_lex_state = 4}, - [1281] = {.lex_state = 9, .external_lex_state = 7}, - [1282] = {.lex_state = 1, .external_lex_state = 4}, - [1283] = {.lex_state = 1, .external_lex_state = 4}, + [1280] = {.lex_state = 13, .external_lex_state = 6}, + [1281] = {.lex_state = 1, .external_lex_state = 4}, + [1282] = {.lex_state = 9, .external_lex_state = 2}, + [1283] = {.lex_state = 13, .external_lex_state = 6}, [1284] = {.lex_state = 1, .external_lex_state = 4}, - [1285] = {.lex_state = 1, .external_lex_state = 4}, - [1286] = {.lex_state = 9, .external_lex_state = 6}, + [1285] = {.lex_state = 9, .external_lex_state = 2}, + [1286] = {.lex_state = 9, .external_lex_state = 2}, [1287] = {.lex_state = 1, .external_lex_state = 4}, - [1288] = {.lex_state = 1, .external_lex_state = 4}, + [1288] = {.lex_state = 9, .external_lex_state = 2}, [1289] = {.lex_state = 1, .external_lex_state = 4}, [1290] = {.lex_state = 1, .external_lex_state = 4}, - [1291] = {.lex_state = 9, .external_lex_state = 6}, - [1292] = {.lex_state = 9, .external_lex_state = 6}, - [1293] = {.lex_state = 9, .external_lex_state = 6}, - [1294] = {.lex_state = 1, .external_lex_state = 4}, + [1291] = {.lex_state = 1, .external_lex_state = 4}, + [1292] = {.lex_state = 9, .external_lex_state = 2}, + [1293] = {.lex_state = 9, .external_lex_state = 2}, + [1294] = {.lex_state = 9, .external_lex_state = 2}, [1295] = {.lex_state = 1, .external_lex_state = 4}, - [1296] = {.lex_state = 9, .external_lex_state = 6}, - [1297] = {.lex_state = 9, .external_lex_state = 6}, - [1298] = {.lex_state = 1, .external_lex_state = 4}, - [1299] = {.lex_state = 1, .external_lex_state = 4}, + [1296] = {.lex_state = 9, .external_lex_state = 2}, + [1297] = {.lex_state = 9, .external_lex_state = 2}, + [1298] = {.lex_state = 9, .external_lex_state = 2}, + [1299] = {.lex_state = 9, .external_lex_state = 2}, [1300] = {.lex_state = 1, .external_lex_state = 4}, - [1301] = {.lex_state = 1, .external_lex_state = 4}, - [1302] = {.lex_state = 9, .external_lex_state = 6}, - [1303] = {.lex_state = 1, .external_lex_state = 4}, - [1304] = {.lex_state = 1, .external_lex_state = 4}, - [1305] = {.lex_state = 9, .external_lex_state = 6}, + [1301] = {.lex_state = 9, .external_lex_state = 2}, + [1302] = {.lex_state = 9, .external_lex_state = 2}, + [1303] = {.lex_state = 13, .external_lex_state = 6}, + [1304] = {.lex_state = 13, .external_lex_state = 6}, + [1305] = {.lex_state = 9, .external_lex_state = 2}, [1306] = {.lex_state = 1, .external_lex_state = 4}, - [1307] = {.lex_state = 9, .external_lex_state = 6}, - [1308] = {.lex_state = 1, .external_lex_state = 4}, - [1309] = {.lex_state = 1, .external_lex_state = 4}, - [1310] = {.lex_state = 9, .external_lex_state = 6}, - [1311] = {.lex_state = 9, .external_lex_state = 6}, - [1312] = {.lex_state = 9, .external_lex_state = 6}, - [1313] = {.lex_state = 9, .external_lex_state = 6}, - [1314] = {.lex_state = 9, .external_lex_state = 6}, - [1315] = {.lex_state = 9, .external_lex_state = 6}, - [1316] = {.lex_state = 1, .external_lex_state = 4}, - [1317] = {.lex_state = 9, .external_lex_state = 6}, - [1318] = {.lex_state = 9, .external_lex_state = 6}, - [1319] = {.lex_state = 9, .external_lex_state = 6}, - [1320] = {.lex_state = 1, .external_lex_state = 4}, - [1321] = {.lex_state = 1, .external_lex_state = 4}, - [1322] = {.lex_state = 9, .external_lex_state = 6}, - [1323] = {.lex_state = 1, .external_lex_state = 4}, - [1324] = {.lex_state = 9, .external_lex_state = 6}, - [1325] = {.lex_state = 9, .external_lex_state = 6}, - [1326] = {.lex_state = 9, .external_lex_state = 6}, - [1327] = {.lex_state = 9, .external_lex_state = 6}, - [1328] = {.lex_state = 1, .external_lex_state = 4}, - [1329] = {.lex_state = 9, .external_lex_state = 6}, - [1330] = {.lex_state = 9, .external_lex_state = 6}, - [1331] = {.lex_state = 9, .external_lex_state = 6}, - [1332] = {.lex_state = 9, .external_lex_state = 6}, - [1333] = {.lex_state = 9, .external_lex_state = 6}, - [1334] = {.lex_state = 1, .external_lex_state = 4}, - [1335] = {.lex_state = 9, .external_lex_state = 6}, - [1336] = {.lex_state = 9, .external_lex_state = 6}, - [1337] = {.lex_state = 1, .external_lex_state = 4}, - [1338] = {.lex_state = 9, .external_lex_state = 6}, - [1339] = {.lex_state = 9, .external_lex_state = 6}, - [1340] = {.lex_state = 9, .external_lex_state = 6}, + [1307] = {.lex_state = 9, .external_lex_state = 2}, + [1308] = {.lex_state = 9, .external_lex_state = 2}, + [1309] = {.lex_state = 9, .external_lex_state = 2}, + [1310] = {.lex_state = 9, .external_lex_state = 2}, + [1311] = {.lex_state = 9, .external_lex_state = 2}, + [1312] = {.lex_state = 9, .external_lex_state = 2}, + [1313] = {.lex_state = 9, .external_lex_state = 2}, + [1314] = {.lex_state = 9, .external_lex_state = 2}, + [1315] = {.lex_state = 9, .external_lex_state = 2}, + [1316] = {.lex_state = 9, .external_lex_state = 2}, + [1317] = {.lex_state = 13, .external_lex_state = 6}, + [1318] = {.lex_state = 9, .external_lex_state = 2}, + [1319] = {.lex_state = 9, .external_lex_state = 2}, + [1320] = {.lex_state = 9, .external_lex_state = 2}, + [1321] = {.lex_state = 9, .external_lex_state = 2}, + [1322] = {.lex_state = 9, .external_lex_state = 2}, + [1323] = {.lex_state = 13, .external_lex_state = 6}, + [1324] = {.lex_state = 9, .external_lex_state = 2}, + [1325] = {.lex_state = 9, .external_lex_state = 2}, + [1326] = {.lex_state = 1, .external_lex_state = 4}, + [1327] = {.lex_state = 1, .external_lex_state = 4}, + [1328] = {.lex_state = 9, .external_lex_state = 2}, + [1329] = {.lex_state = 9, .external_lex_state = 2}, + [1330] = {.lex_state = 9, .external_lex_state = 2}, + [1331] = {.lex_state = 9, .external_lex_state = 2}, + [1332] = {.lex_state = 9, .external_lex_state = 2}, + [1333] = {.lex_state = 9, .external_lex_state = 2}, + [1334] = {.lex_state = 9, .external_lex_state = 2}, + [1335] = {.lex_state = 9, .external_lex_state = 2}, + [1336] = {.lex_state = 9, .external_lex_state = 2}, + [1337] = {.lex_state = 1, .external_lex_state = 3}, + [1338] = {.lex_state = 9, .external_lex_state = 2}, + [1339] = {.lex_state = 9, .external_lex_state = 2}, + [1340] = {.lex_state = 1, .external_lex_state = 4}, [1341] = {.lex_state = 1, .external_lex_state = 4}, - [1342] = {.lex_state = 1, .external_lex_state = 4}, + [1342] = {.lex_state = 1, .external_lex_state = 3}, [1343] = {.lex_state = 1, .external_lex_state = 4}, - [1344] = {.lex_state = 1, .external_lex_state = 3}, + [1344] = {.lex_state = 1, .external_lex_state = 4}, [1345] = {.lex_state = 1, .external_lex_state = 4}, [1346] = {.lex_state = 1, .external_lex_state = 4}, [1347] = {.lex_state = 1, .external_lex_state = 4}, - [1348] = {.lex_state = 1, .external_lex_state = 4}, - [1349] = {.lex_state = 1, .external_lex_state = 3}, + [1348] = {.lex_state = 9, .external_lex_state = 2}, + [1349] = {.lex_state = 1, .external_lex_state = 4}, [1350] = {.lex_state = 1, .external_lex_state = 4}, - [1351] = {.lex_state = 9, .external_lex_state = 6}, - [1352] = {.lex_state = 1, .external_lex_state = 4}, + [1351] = {.lex_state = 13, .external_lex_state = 6}, + [1352] = {.lex_state = 9, .external_lex_state = 2}, [1353] = {.lex_state = 1, .external_lex_state = 4}, - [1354] = {.lex_state = 9, .external_lex_state = 6}, - [1355] = {.lex_state = 1, .external_lex_state = 4}, - [1356] = {.lex_state = 9, .external_lex_state = 6}, - [1357] = {.lex_state = 5, .external_lex_state = 2}, - [1358] = {.lex_state = 5, .external_lex_state = 2}, - [1359] = {.lex_state = 9, .external_lex_state = 6}, - [1360] = {.lex_state = 5, .external_lex_state = 2}, - [1361] = {.lex_state = 9, .external_lex_state = 6}, - [1362] = {.lex_state = 5, .external_lex_state = 2}, - [1363] = {.lex_state = 5, .external_lex_state = 2}, - [1364] = {.lex_state = 5, .external_lex_state = 2}, - [1365] = {.lex_state = 9, .external_lex_state = 6}, - [1366] = {.lex_state = 5, .external_lex_state = 2}, - [1367] = {.lex_state = 9, .external_lex_state = 7}, - [1368] = {.lex_state = 9, .external_lex_state = 7}, - [1369] = {.lex_state = 9, .external_lex_state = 7}, - [1370] = {.lex_state = 5, .external_lex_state = 2}, - [1371] = {.lex_state = 5, .external_lex_state = 2}, - [1372] = {.lex_state = 9, .external_lex_state = 7}, - [1373] = {.lex_state = 9, .external_lex_state = 6}, - [1374] = {.lex_state = 5, .external_lex_state = 2}, - [1375] = {.lex_state = 9, .external_lex_state = 7}, - [1376] = {.lex_state = 9, .external_lex_state = 7}, - [1377] = {.lex_state = 5, .external_lex_state = 2}, - [1378] = {.lex_state = 5, .external_lex_state = 2}, - [1379] = {.lex_state = 9, .external_lex_state = 7}, - [1380] = {.lex_state = 9, .external_lex_state = 6}, - [1381] = {.lex_state = 5, .external_lex_state = 2}, - [1382] = {.lex_state = 9, .external_lex_state = 7}, - [1383] = {.lex_state = 1, .external_lex_state = 4}, - [1384] = {.lex_state = 1, .external_lex_state = 4}, - [1385] = {.lex_state = 9, .external_lex_state = 7}, - [1386] = {.lex_state = 9, .external_lex_state = 6}, - [1387] = {.lex_state = 5, .external_lex_state = 2}, - [1388] = {.lex_state = 9, .external_lex_state = 6}, - [1389] = {.lex_state = 9, .external_lex_state = 6}, - [1390] = {.lex_state = 5, .external_lex_state = 2}, - [1391] = {.lex_state = 5, .external_lex_state = 2}, - [1392] = {.lex_state = 9, .external_lex_state = 6}, - [1393] = {.lex_state = 9, .external_lex_state = 6}, + [1354] = {.lex_state = 9, .external_lex_state = 2}, + [1355] = {.lex_state = 9, .external_lex_state = 2}, + [1356] = {.lex_state = 9, .external_lex_state = 2}, + [1357] = {.lex_state = 9, .external_lex_state = 2}, + [1358] = {.lex_state = 13, .external_lex_state = 6}, + [1359] = {.lex_state = 13, .external_lex_state = 6}, + [1360] = {.lex_state = 9, .external_lex_state = 2}, + [1361] = {.lex_state = 9, .external_lex_state = 2}, + [1362] = {.lex_state = 1, .external_lex_state = 4}, + [1363] = {.lex_state = 1, .external_lex_state = 4}, + [1364] = {.lex_state = 9, .external_lex_state = 2}, + [1365] = {.lex_state = 9, .external_lex_state = 2}, + [1366] = {.lex_state = 9, .external_lex_state = 2}, + [1367] = {.lex_state = 1, .external_lex_state = 4}, + [1368] = {.lex_state = 1, .external_lex_state = 4}, + [1369] = {.lex_state = 1, .external_lex_state = 4}, + [1370] = {.lex_state = 9, .external_lex_state = 2}, + [1371] = {.lex_state = 1, .external_lex_state = 4}, + [1372] = {.lex_state = 1, .external_lex_state = 4}, + [1373] = {.lex_state = 1, .external_lex_state = 4}, + [1374] = {.lex_state = 9, .external_lex_state = 2}, + [1375] = {.lex_state = 9, .external_lex_state = 2}, + [1376] = {.lex_state = 9, .external_lex_state = 2}, + [1377] = {.lex_state = 9, .external_lex_state = 2}, + [1378] = {.lex_state = 9, .external_lex_state = 2}, + [1379] = {.lex_state = 9, .external_lex_state = 2}, + [1380] = {.lex_state = 9, .external_lex_state = 2}, + [1381] = {.lex_state = 9, .external_lex_state = 2}, + [1382] = {.lex_state = 9, .external_lex_state = 2}, + [1383] = {.lex_state = 13, .external_lex_state = 6}, + [1384] = {.lex_state = 13, .external_lex_state = 7}, + [1385] = {.lex_state = 13, .external_lex_state = 7}, + [1386] = {.lex_state = 13, .external_lex_state = 7}, + [1387] = {.lex_state = 1, .external_lex_state = 4}, + [1388] = {.lex_state = 13, .external_lex_state = 7}, + [1389] = {.lex_state = 13, .external_lex_state = 6}, + [1390] = {.lex_state = 1, .external_lex_state = 4}, + [1391] = {.lex_state = 1, .external_lex_state = 4}, + [1392] = {.lex_state = 13, .external_lex_state = 7}, + [1393] = {.lex_state = 1, .external_lex_state = 4}, [1394] = {.lex_state = 1, .external_lex_state = 4}, - [1395] = {.lex_state = 5, .external_lex_state = 2}, - [1396] = {.lex_state = 9, .external_lex_state = 6}, + [1395] = {.lex_state = 13, .external_lex_state = 7}, + [1396] = {.lex_state = 13, .external_lex_state = 7}, [1397] = {.lex_state = 1, .external_lex_state = 4}, - [1398] = {.lex_state = 9, .external_lex_state = 6}, - [1399] = {.lex_state = 1, .external_lex_state = 4}, - [1400] = {.lex_state = 9, .external_lex_state = 6}, - [1401] = {.lex_state = 1, .external_lex_state = 4}, - [1402] = {.lex_state = 1, .external_lex_state = 4}, - [1403] = {.lex_state = 9, .external_lex_state = 7}, - [1404] = {.lex_state = 1, .external_lex_state = 4}, - [1405] = {.lex_state = 9, .external_lex_state = 7}, - [1406] = {.lex_state = 5, .external_lex_state = 2}, - [1407] = {.lex_state = 1, .external_lex_state = 4}, - [1408] = {.lex_state = 5, .external_lex_state = 2}, - [1409] = {.lex_state = 5, .external_lex_state = 2}, - [1410] = {.lex_state = 9, .external_lex_state = 7}, - [1411] = {.lex_state = 5, .external_lex_state = 2}, - [1412] = {.lex_state = 1, .external_lex_state = 4}, - [1413] = {.lex_state = 9, .external_lex_state = 7}, - [1414] = {.lex_state = 9, .external_lex_state = 6}, - [1415] = {.lex_state = 5, .external_lex_state = 2}, - [1416] = {.lex_state = 9, .external_lex_state = 7}, - [1417] = {.lex_state = 9, .external_lex_state = 6}, - [1418] = {.lex_state = 5, .external_lex_state = 2}, - [1419] = {.lex_state = 9, .external_lex_state = 7}, - [1420] = {.lex_state = 9, .external_lex_state = 7}, - [1421] = {.lex_state = 9, .external_lex_state = 7}, - [1422] = {.lex_state = 9, .external_lex_state = 7}, - [1423] = {.lex_state = 9, .external_lex_state = 7}, - [1424] = {.lex_state = 9, .external_lex_state = 7}, - [1425] = {.lex_state = 9, .external_lex_state = 7}, - [1426] = {.lex_state = 9, .external_lex_state = 7}, - [1427] = {.lex_state = 9, .external_lex_state = 7}, - [1428] = {.lex_state = 9, .external_lex_state = 7}, - [1429] = {.lex_state = 9, .external_lex_state = 7}, - [1430] = {.lex_state = 9, .external_lex_state = 7}, - [1431] = {.lex_state = 5, .external_lex_state = 2}, - [1432] = {.lex_state = 9, .external_lex_state = 6}, - [1433] = {.lex_state = 5, .external_lex_state = 2}, - [1434] = {.lex_state = 5, .external_lex_state = 2}, - [1435] = {.lex_state = 5, .external_lex_state = 2}, - [1436] = {.lex_state = 9, .external_lex_state = 7}, - [1437] = {.lex_state = 5, .external_lex_state = 2}, - [1438] = {.lex_state = 5, .external_lex_state = 2}, - [1439] = {.lex_state = 5, .external_lex_state = 2}, - [1440] = {.lex_state = 1, .external_lex_state = 4}, - [1441] = {.lex_state = 1, .external_lex_state = 4}, - [1442] = {.lex_state = 9, .external_lex_state = 7}, - [1443] = {.lex_state = 1, .external_lex_state = 4}, - [1444] = {.lex_state = 9, .external_lex_state = 7}, - [1445] = {.lex_state = 5, .external_lex_state = 2}, - [1446] = {.lex_state = 5, .external_lex_state = 2}, - [1447] = {.lex_state = 2, .external_lex_state = 4}, - [1448] = {.lex_state = 9, .external_lex_state = 7}, - [1449] = {.lex_state = 9, .external_lex_state = 6}, - [1450] = {.lex_state = 9, .external_lex_state = 7}, - [1451] = {.lex_state = 5, .external_lex_state = 2}, - [1452] = {.lex_state = 2, .external_lex_state = 4}, - [1453] = {.lex_state = 9, .external_lex_state = 7}, - [1454] = {.lex_state = 9, .external_lex_state = 6}, - [1455] = {.lex_state = 9, .external_lex_state = 6}, - [1456] = {.lex_state = 9, .external_lex_state = 6}, - [1457] = {.lex_state = 5, .external_lex_state = 2}, - [1458] = {.lex_state = 1, .external_lex_state = 4}, - [1459] = {.lex_state = 9, .external_lex_state = 7}, - [1460] = {.lex_state = 5, .external_lex_state = 2}, - [1461] = {.lex_state = 5, .external_lex_state = 2}, - [1462] = {.lex_state = 9, .external_lex_state = 6}, - [1463] = {.lex_state = 5, .external_lex_state = 2}, - [1464] = {.lex_state = 5, .external_lex_state = 2}, - [1465] = {.lex_state = 5, .external_lex_state = 2}, - [1466] = {.lex_state = 9, .external_lex_state = 6}, - [1467] = {.lex_state = 5, .external_lex_state = 2}, - [1468] = {.lex_state = 1, .external_lex_state = 4}, - [1469] = {.lex_state = 5, .external_lex_state = 2}, - [1470] = {.lex_state = 2, .external_lex_state = 4}, - [1471] = {.lex_state = 2, .external_lex_state = 4}, - [1472] = {.lex_state = 5, .external_lex_state = 2}, - [1473] = {.lex_state = 5, .external_lex_state = 2}, - [1474] = {.lex_state = 9, .external_lex_state = 6}, - [1475] = {.lex_state = 9, .external_lex_state = 6}, - [1476] = {.lex_state = 9, .external_lex_state = 6}, - [1477] = {.lex_state = 9, .external_lex_state = 6}, - [1478] = {.lex_state = 9, .external_lex_state = 6}, - [1479] = {.lex_state = 9, .external_lex_state = 6}, - [1480] = {.lex_state = 9, .external_lex_state = 6}, - [1481] = {.lex_state = 9, .external_lex_state = 6}, - [1482] = {.lex_state = 9, .external_lex_state = 6}, - [1483] = {.lex_state = 9, .external_lex_state = 6}, - [1484] = {.lex_state = 2, .external_lex_state = 4}, - [1485] = {.lex_state = 9, .external_lex_state = 6}, - [1486] = {.lex_state = 5, .external_lex_state = 2}, - [1487] = {.lex_state = 2, .external_lex_state = 4}, - [1488] = {.lex_state = 9, .external_lex_state = 6}, - [1489] = {.lex_state = 5, .external_lex_state = 2}, - [1490] = {.lex_state = 9, .external_lex_state = 6}, - [1491] = {.lex_state = 5, .external_lex_state = 2}, - [1492] = {.lex_state = 5, .external_lex_state = 2}, - [1493] = {.lex_state = 9, .external_lex_state = 7}, - [1494] = {.lex_state = 5, .external_lex_state = 2}, - [1495] = {.lex_state = 2, .external_lex_state = 4}, - [1496] = {.lex_state = 5, .external_lex_state = 2}, - [1497] = {.lex_state = 2, .external_lex_state = 4}, - [1498] = {.lex_state = 9, .external_lex_state = 7}, - [1499] = {.lex_state = 9, .external_lex_state = 7}, - [1500] = {.lex_state = 5, .external_lex_state = 2}, - [1501] = {.lex_state = 2, .external_lex_state = 4}, - [1502] = {.lex_state = 5, .external_lex_state = 2}, - [1503] = {.lex_state = 2, .external_lex_state = 4}, - [1504] = {.lex_state = 9, .external_lex_state = 7}, - [1505] = {.lex_state = 2, .external_lex_state = 4}, - [1506] = {.lex_state = 9, .external_lex_state = 6}, - [1507] = {.lex_state = 2, .external_lex_state = 4}, - [1508] = {.lex_state = 2, .external_lex_state = 4}, - [1509] = {.lex_state = 2, .external_lex_state = 4}, - [1510] = {.lex_state = 1, .external_lex_state = 4}, - [1511] = {.lex_state = 2, .external_lex_state = 4}, - [1512] = {.lex_state = 5, .external_lex_state = 2}, - [1513] = {.lex_state = 1, .external_lex_state = 4}, - [1514] = {.lex_state = 9, .external_lex_state = 6}, - [1515] = {.lex_state = 9, .external_lex_state = 7}, - [1516] = {.lex_state = 9, .external_lex_state = 7}, - [1517] = {.lex_state = 5, .external_lex_state = 2}, - [1518] = {.lex_state = 9, .external_lex_state = 7}, - [1519] = {.lex_state = 1, .external_lex_state = 4}, - [1520] = {.lex_state = 5, .external_lex_state = 2}, - [1521] = {.lex_state = 9, .external_lex_state = 7}, - [1522] = {.lex_state = 2, .external_lex_state = 4}, - [1523] = {.lex_state = 5, .external_lex_state = 2}, - [1524] = {.lex_state = 1, .external_lex_state = 4}, - [1525] = {.lex_state = 5, .external_lex_state = 2}, - [1526] = {.lex_state = 5, .external_lex_state = 2}, - [1527] = {.lex_state = 5, .external_lex_state = 2}, - [1528] = {.lex_state = 1, .external_lex_state = 4}, - [1529] = {.lex_state = 1, .external_lex_state = 4}, - [1530] = {.lex_state = 5, .external_lex_state = 2}, - [1531] = {.lex_state = 2, .external_lex_state = 4}, - [1532] = {.lex_state = 5, .external_lex_state = 2}, - [1533] = {.lex_state = 1, .external_lex_state = 4}, - [1534] = {.lex_state = 5, .external_lex_state = 2}, - [1535] = {.lex_state = 5, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, - [1537] = {.lex_state = 9, .external_lex_state = 6}, - [1538] = {.lex_state = 5, .external_lex_state = 2}, - [1539] = {.lex_state = 9, .external_lex_state = 6}, - [1540] = {.lex_state = 9, .external_lex_state = 6}, - [1541] = {.lex_state = 9, .external_lex_state = 6}, - [1542] = {.lex_state = 5, .external_lex_state = 2}, - [1543] = {.lex_state = 5, .external_lex_state = 2}, - [1544] = {.lex_state = 9, .external_lex_state = 6}, - [1545] = {.lex_state = 5, .external_lex_state = 2}, - [1546] = {.lex_state = 5, .external_lex_state = 2}, - [1547] = {.lex_state = 5, .external_lex_state = 2}, - [1548] = {.lex_state = 5, .external_lex_state = 2}, - [1549] = {.lex_state = 1, .external_lex_state = 4}, - [1550] = {.lex_state = 5, .external_lex_state = 2}, - [1551] = {.lex_state = 1, .external_lex_state = 4}, - [1552] = {.lex_state = 5, .external_lex_state = 2}, - [1553] = {.lex_state = 5, .external_lex_state = 2}, - [1554] = {.lex_state = 1, .external_lex_state = 4}, - [1555] = {.lex_state = 5, .external_lex_state = 2}, - [1556] = {.lex_state = 5, .external_lex_state = 2}, - [1557] = {.lex_state = 2, .external_lex_state = 4}, - [1558] = {.lex_state = 5, .external_lex_state = 2}, - [1559] = {.lex_state = 5, .external_lex_state = 2}, - [1560] = {.lex_state = 5, .external_lex_state = 2}, - [1561] = {.lex_state = 5, .external_lex_state = 2}, - [1562] = {.lex_state = 5, .external_lex_state = 2}, - [1563] = {.lex_state = 9, .external_lex_state = 7}, - [1564] = {.lex_state = 5, .external_lex_state = 2}, - [1565] = {.lex_state = 9, .external_lex_state = 6}, - [1566] = {.lex_state = 1, .external_lex_state = 4}, - [1567] = {.lex_state = 9, .external_lex_state = 6}, - [1568] = {.lex_state = 9, .external_lex_state = 7}, - [1569] = {.lex_state = 9, .external_lex_state = 6}, - [1570] = {.lex_state = 9, .external_lex_state = 6}, - [1571] = {.lex_state = 9, .external_lex_state = 7}, - [1572] = {.lex_state = 9, .external_lex_state = 6}, - [1573] = {.lex_state = 1, .external_lex_state = 4}, - [1574] = {.lex_state = 1, .external_lex_state = 4}, - [1575] = {.lex_state = 9, .external_lex_state = 6}, - [1576] = {.lex_state = 9, .external_lex_state = 7}, - [1577] = {.lex_state = 9, .external_lex_state = 7}, - [1578] = {.lex_state = 1, .external_lex_state = 4}, - [1579] = {.lex_state = 1, .external_lex_state = 4}, - [1580] = {.lex_state = 1, .external_lex_state = 4}, - [1581] = {.lex_state = 1, .external_lex_state = 4}, - [1582] = {.lex_state = 1, .external_lex_state = 4}, - [1583] = {.lex_state = 5, .external_lex_state = 2}, - [1584] = {.lex_state = 1, .external_lex_state = 4}, - [1585] = {.lex_state = 1, .external_lex_state = 4}, - [1586] = {.lex_state = 9, .external_lex_state = 7}, - [1587] = {.lex_state = 1, .external_lex_state = 4}, - [1588] = {.lex_state = 9, .external_lex_state = 7}, - [1589] = {.lex_state = 1, .external_lex_state = 4}, - [1590] = {.lex_state = 5, .external_lex_state = 2}, - [1591] = {.lex_state = 9, .external_lex_state = 7}, - [1592] = {.lex_state = 9, .external_lex_state = 7}, - [1593] = {.lex_state = 9, .external_lex_state = 7}, - [1594] = {.lex_state = 9, .external_lex_state = 6}, - [1595] = {.lex_state = 9, .external_lex_state = 6}, - [1596] = {.lex_state = 9, .external_lex_state = 6}, - [1597] = {.lex_state = 9, .external_lex_state = 7}, - [1598] = {.lex_state = 9, .external_lex_state = 6}, - [1599] = {.lex_state = 9, .external_lex_state = 6}, - [1600] = {.lex_state = 7, .external_lex_state = 5}, - [1601] = {.lex_state = 5, .external_lex_state = 2}, - [1602] = {.lex_state = 9, .external_lex_state = 7}, - [1603] = {.lex_state = 9, .external_lex_state = 7}, - [1604] = {.lex_state = 7, .external_lex_state = 5}, - [1605] = {.lex_state = 9, .external_lex_state = 6}, - [1606] = {.lex_state = 7, .external_lex_state = 5}, - [1607] = {.lex_state = 9, .external_lex_state = 6}, - [1608] = {.lex_state = 9, .external_lex_state = 6}, - [1609] = {.lex_state = 9, .external_lex_state = 6}, - [1610] = {.lex_state = 9, .external_lex_state = 6}, - [1611] = {.lex_state = 9, .external_lex_state = 6}, - [1612] = {.lex_state = 9, .external_lex_state = 6}, - [1613] = {.lex_state = 9, .external_lex_state = 6}, - [1614] = {.lex_state = 9, .external_lex_state = 6}, - [1615] = {.lex_state = 9, .external_lex_state = 6}, - [1616] = {.lex_state = 9, .external_lex_state = 6}, - [1617] = {.lex_state = 9, .external_lex_state = 6}, - [1618] = {.lex_state = 9, .external_lex_state = 7}, - [1619] = {.lex_state = 9, .external_lex_state = 6}, - [1620] = {.lex_state = 9, .external_lex_state = 7}, - [1621] = {.lex_state = 9, .external_lex_state = 7}, - [1622] = {.lex_state = 9, .external_lex_state = 6}, - [1623] = {.lex_state = 9, .external_lex_state = 6}, - [1624] = {.lex_state = 9, .external_lex_state = 6}, - [1625] = {.lex_state = 9, .external_lex_state = 7}, - [1626] = {.lex_state = 9, .external_lex_state = 6}, - [1627] = {.lex_state = 9, .external_lex_state = 6}, - [1628] = {.lex_state = 9, .external_lex_state = 6}, - [1629] = {.lex_state = 7, .external_lex_state = 5}, - [1630] = {.lex_state = 9, .external_lex_state = 6}, - [1631] = {.lex_state = 9, .external_lex_state = 7}, - [1632] = {.lex_state = 9, .external_lex_state = 6}, - [1633] = {.lex_state = 9, .external_lex_state = 6}, - [1634] = {.lex_state = 9, .external_lex_state = 6}, - [1635] = {.lex_state = 9, .external_lex_state = 6}, - [1636] = {.lex_state = 9, .external_lex_state = 6}, - [1637] = {.lex_state = 9, .external_lex_state = 6}, - [1638] = {.lex_state = 9, .external_lex_state = 7}, - [1639] = {.lex_state = 9, .external_lex_state = 6}, - [1640] = {.lex_state = 5, .external_lex_state = 2}, - [1641] = {.lex_state = 5, .external_lex_state = 2}, - [1642] = {.lex_state = 5, .external_lex_state = 2}, - [1643] = {.lex_state = 5, .external_lex_state = 2}, - [1644] = {.lex_state = 5, .external_lex_state = 2}, - [1645] = {.lex_state = 5, .external_lex_state = 2}, - [1646] = {.lex_state = 5, .external_lex_state = 2}, - [1647] = {.lex_state = 5, .external_lex_state = 2}, - [1648] = {.lex_state = 5, .external_lex_state = 2}, - [1649] = {.lex_state = 9, .external_lex_state = 7}, - [1650] = {.lex_state = 5, .external_lex_state = 2}, - [1651] = {.lex_state = 5, .external_lex_state = 2}, - [1652] = {.lex_state = 5, .external_lex_state = 2}, - [1653] = {.lex_state = 5, .external_lex_state = 2}, - [1654] = {.lex_state = 5, .external_lex_state = 2}, - [1655] = {.lex_state = 5, .external_lex_state = 2}, - [1656] = {.lex_state = 2, .external_lex_state = 4}, - [1657] = {.lex_state = 5, .external_lex_state = 2}, - [1658] = {.lex_state = 9, .external_lex_state = 7}, - [1659] = {.lex_state = 5, .external_lex_state = 2}, - [1660] = {.lex_state = 9, .external_lex_state = 7}, - [1661] = {.lex_state = 5, .external_lex_state = 2}, - [1662] = {.lex_state = 5, .external_lex_state = 2}, - [1663] = {.lex_state = 5, .external_lex_state = 2}, - [1664] = {.lex_state = 5, .external_lex_state = 2}, - [1665] = {.lex_state = 5, .external_lex_state = 2}, - [1666] = {.lex_state = 5, .external_lex_state = 2}, - [1667] = {.lex_state = 5, .external_lex_state = 2}, - [1668] = {.lex_state = 5, .external_lex_state = 2}, - [1669] = {.lex_state = 5, .external_lex_state = 2}, - [1670] = {.lex_state = 5, .external_lex_state = 2}, - [1671] = {.lex_state = 5, .external_lex_state = 2}, - [1672] = {.lex_state = 5, .external_lex_state = 2}, - [1673] = {.lex_state = 5, .external_lex_state = 2}, - [1674] = {.lex_state = 9, .external_lex_state = 7}, - [1675] = {.lex_state = 5, .external_lex_state = 2}, - [1676] = {.lex_state = 5, .external_lex_state = 2}, - [1677] = {.lex_state = 5, .external_lex_state = 2}, - [1678] = {.lex_state = 5, .external_lex_state = 2}, - [1679] = {.lex_state = 5, .external_lex_state = 2}, - [1680] = {.lex_state = 5, .external_lex_state = 2}, - [1681] = {.lex_state = 5, .external_lex_state = 2}, - [1682] = {.lex_state = 5, .external_lex_state = 2}, - [1683] = {.lex_state = 5, .external_lex_state = 2}, - [1684] = {.lex_state = 5, .external_lex_state = 2}, - [1685] = {.lex_state = 5, .external_lex_state = 2}, - [1686] = {.lex_state = 5, .external_lex_state = 2}, - [1687] = {.lex_state = 5, .external_lex_state = 2}, - [1688] = {.lex_state = 5, .external_lex_state = 2}, - [1689] = {.lex_state = 5, .external_lex_state = 2}, - [1690] = {.lex_state = 5, .external_lex_state = 2}, - [1691] = {.lex_state = 5, .external_lex_state = 2}, - [1692] = {.lex_state = 5, .external_lex_state = 2}, - [1693] = {.lex_state = 5, .external_lex_state = 2}, - [1694] = {.lex_state = 5, .external_lex_state = 2}, - [1695] = {.lex_state = 5, .external_lex_state = 2}, - [1696] = {.lex_state = 5, .external_lex_state = 2}, - [1697] = {.lex_state = 5, .external_lex_state = 2}, - [1698] = {.lex_state = 5, .external_lex_state = 2}, - [1699] = {.lex_state = 9, .external_lex_state = 7}, - [1700] = {.lex_state = 5, .external_lex_state = 2}, - [1701] = {.lex_state = 5, .external_lex_state = 2}, - [1702] = {.lex_state = 5, .external_lex_state = 2}, - [1703] = {.lex_state = 5, .external_lex_state = 2}, - [1704] = {.lex_state = 5, .external_lex_state = 2}, - [1705] = {.lex_state = 5, .external_lex_state = 2}, - [1706] = {.lex_state = 5, .external_lex_state = 2}, - [1707] = {.lex_state = 5, .external_lex_state = 2}, - [1708] = {.lex_state = 5, .external_lex_state = 2}, - [1709] = {.lex_state = 5, .external_lex_state = 2}, - [1710] = {.lex_state = 5, .external_lex_state = 2}, - [1711] = {.lex_state = 5, .external_lex_state = 2}, - [1712] = {.lex_state = 5, .external_lex_state = 2}, - [1713] = {.lex_state = 9, .external_lex_state = 7}, - [1714] = {.lex_state = 5, .external_lex_state = 2}, - [1715] = {.lex_state = 5, .external_lex_state = 2}, - [1716] = {.lex_state = 5, .external_lex_state = 2}, - [1717] = {.lex_state = 5, .external_lex_state = 2}, - [1718] = {.lex_state = 5, .external_lex_state = 2}, - [1719] = {.lex_state = 5, .external_lex_state = 2}, - [1720] = {.lex_state = 5, .external_lex_state = 2}, - [1721] = {.lex_state = 9, .external_lex_state = 7}, - [1722] = {.lex_state = 5, .external_lex_state = 2}, - [1723] = {.lex_state = 5, .external_lex_state = 2}, - [1724] = {.lex_state = 5, .external_lex_state = 2}, - [1725] = {.lex_state = 5, .external_lex_state = 2}, - [1726] = {.lex_state = 9, .external_lex_state = 7}, - [1727] = {.lex_state = 5, .external_lex_state = 2}, - [1728] = {.lex_state = 5, .external_lex_state = 2}, - [1729] = {.lex_state = 5, .external_lex_state = 2}, - [1730] = {.lex_state = 5, .external_lex_state = 2}, - [1731] = {.lex_state = 5, .external_lex_state = 2}, - [1732] = {.lex_state = 5, .external_lex_state = 2}, - [1733] = {.lex_state = 5, .external_lex_state = 2}, - [1734] = {.lex_state = 5, .external_lex_state = 2}, - [1735] = {.lex_state = 5, .external_lex_state = 2}, - [1736] = {.lex_state = 5, .external_lex_state = 2}, - [1737] = {.lex_state = 5, .external_lex_state = 2}, - [1738] = {.lex_state = 5, .external_lex_state = 2}, - [1739] = {.lex_state = 5, .external_lex_state = 2}, - [1740] = {.lex_state = 5, .external_lex_state = 2}, - [1741] = {.lex_state = 5, .external_lex_state = 2}, - [1742] = {.lex_state = 5, .external_lex_state = 2}, - [1743] = {.lex_state = 5, .external_lex_state = 2}, - [1744] = {.lex_state = 5, .external_lex_state = 2}, - [1745] = {.lex_state = 5, .external_lex_state = 2}, - [1746] = {.lex_state = 5, .external_lex_state = 2}, - [1747] = {.lex_state = 5, .external_lex_state = 2}, - [1748] = {.lex_state = 5, .external_lex_state = 2}, - [1749] = {.lex_state = 5, .external_lex_state = 2}, - [1750] = {.lex_state = 5, .external_lex_state = 2}, - [1751] = {.lex_state = 5, .external_lex_state = 2}, - [1752] = {.lex_state = 5, .external_lex_state = 2}, - [1753] = {.lex_state = 5, .external_lex_state = 2}, - [1754] = {.lex_state = 5, .external_lex_state = 2}, - [1755] = {.lex_state = 5, .external_lex_state = 2}, - [1756] = {.lex_state = 5, .external_lex_state = 2}, - [1757] = {.lex_state = 5, .external_lex_state = 2}, - [1758] = {.lex_state = 5, .external_lex_state = 2}, - [1759] = {.lex_state = 5, .external_lex_state = 2}, - [1760] = {.lex_state = 5, .external_lex_state = 2}, - [1761] = {.lex_state = 5, .external_lex_state = 2}, - [1762] = {.lex_state = 5, .external_lex_state = 2}, - [1763] = {.lex_state = 5, .external_lex_state = 2}, - [1764] = {.lex_state = 5, .external_lex_state = 2}, - [1765] = {.lex_state = 5, .external_lex_state = 2}, - [1766] = {.lex_state = 5, .external_lex_state = 2}, - [1767] = {.lex_state = 5, .external_lex_state = 2}, - [1768] = {.lex_state = 5, .external_lex_state = 2}, - [1769] = {.lex_state = 5, .external_lex_state = 2}, - [1770] = {.lex_state = 5, .external_lex_state = 2}, - [1771] = {.lex_state = 5, .external_lex_state = 2}, - [1772] = {.lex_state = 5, .external_lex_state = 2}, - [1773] = {.lex_state = 5, .external_lex_state = 2}, - [1774] = {.lex_state = 5, .external_lex_state = 2}, - [1775] = {.lex_state = 2, .external_lex_state = 4}, - [1776] = {.lex_state = 5, .external_lex_state = 2}, - [1777] = {.lex_state = 5, .external_lex_state = 2}, - [1778] = {.lex_state = 5, .external_lex_state = 2}, - [1779] = {.lex_state = 5, .external_lex_state = 2}, - [1780] = {.lex_state = 5, .external_lex_state = 2}, - [1781] = {.lex_state = 5, .external_lex_state = 2}, - [1782] = {.lex_state = 5, .external_lex_state = 2}, - [1783] = {.lex_state = 7, .external_lex_state = 5}, - [1784] = {.lex_state = 5, .external_lex_state = 2}, - [1785] = {.lex_state = 5, .external_lex_state = 2}, - [1786] = {.lex_state = 5, .external_lex_state = 2}, - [1787] = {.lex_state = 5, .external_lex_state = 2}, - [1788] = {.lex_state = 5, .external_lex_state = 2}, - [1789] = {.lex_state = 5, .external_lex_state = 2}, - [1790] = {.lex_state = 5, .external_lex_state = 2}, - [1791] = {.lex_state = 5, .external_lex_state = 2}, - [1792] = {.lex_state = 5, .external_lex_state = 2}, - [1793] = {.lex_state = 2, .external_lex_state = 4}, - [1794] = {.lex_state = 5, .external_lex_state = 2}, - [1795] = {.lex_state = 5, .external_lex_state = 2}, - [1796] = {.lex_state = 5, .external_lex_state = 2}, - [1797] = {.lex_state = 5, .external_lex_state = 2}, - [1798] = {.lex_state = 5, .external_lex_state = 2}, - [1799] = {.lex_state = 5, .external_lex_state = 2}, - [1800] = {.lex_state = 5, .external_lex_state = 2}, - [1801] = {.lex_state = 5, .external_lex_state = 2}, - [1802] = {.lex_state = 5, .external_lex_state = 2}, - [1803] = {.lex_state = 5, .external_lex_state = 2}, - [1804] = {.lex_state = 5, .external_lex_state = 2}, - [1805] = {.lex_state = 5, .external_lex_state = 2}, - [1806] = {.lex_state = 5, .external_lex_state = 2}, - [1807] = {.lex_state = 5, .external_lex_state = 2}, - [1808] = {.lex_state = 5, .external_lex_state = 2}, - [1809] = {.lex_state = 5, .external_lex_state = 2}, - [1810] = {.lex_state = 5, .external_lex_state = 2}, - [1811] = {.lex_state = 5, .external_lex_state = 2}, - [1812] = {.lex_state = 5, .external_lex_state = 2}, - [1813] = {.lex_state = 5, .external_lex_state = 2}, - [1814] = {.lex_state = 5, .external_lex_state = 2}, - [1815] = {.lex_state = 5, .external_lex_state = 2}, - [1816] = {.lex_state = 5, .external_lex_state = 2}, - [1817] = {.lex_state = 5, .external_lex_state = 2}, - [1818] = {.lex_state = 5, .external_lex_state = 2}, - [1819] = {.lex_state = 5, .external_lex_state = 2}, - [1820] = {.lex_state = 5, .external_lex_state = 2}, - [1821] = {.lex_state = 5, .external_lex_state = 2}, - [1822] = {.lex_state = 5, .external_lex_state = 2}, - [1823] = {.lex_state = 5, .external_lex_state = 2}, - [1824] = {.lex_state = 5, .external_lex_state = 2}, - [1825] = {.lex_state = 5, .external_lex_state = 2}, - [1826] = {.lex_state = 5, .external_lex_state = 2}, - [1827] = {.lex_state = 5, .external_lex_state = 2}, - [1828] = {.lex_state = 5, .external_lex_state = 2}, - [1829] = {.lex_state = 5, .external_lex_state = 2}, - [1830] = {.lex_state = 5, .external_lex_state = 2}, - [1831] = {.lex_state = 5, .external_lex_state = 2}, - [1832] = {.lex_state = 5, .external_lex_state = 2}, - [1833] = {.lex_state = 5, .external_lex_state = 2}, - [1834] = {.lex_state = 5, .external_lex_state = 2}, - [1835] = {.lex_state = 5, .external_lex_state = 2}, - [1836] = {.lex_state = 5, .external_lex_state = 2}, - [1837] = {.lex_state = 5, .external_lex_state = 2}, - [1838] = {.lex_state = 7, .external_lex_state = 5}, - [1839] = {.lex_state = 5, .external_lex_state = 2}, - [1840] = {.lex_state = 5, .external_lex_state = 2}, - [1841] = {.lex_state = 5, .external_lex_state = 2}, - [1842] = {.lex_state = 5, .external_lex_state = 2}, - [1843] = {.lex_state = 5, .external_lex_state = 2}, - [1844] = {.lex_state = 5, .external_lex_state = 2}, - [1845] = {.lex_state = 5, .external_lex_state = 2}, - [1846] = {.lex_state = 5, .external_lex_state = 2}, - [1847] = {.lex_state = 5, .external_lex_state = 2}, - [1848] = {.lex_state = 5, .external_lex_state = 2}, - [1849] = {.lex_state = 5, .external_lex_state = 2}, - [1850] = {.lex_state = 5, .external_lex_state = 2}, - [1851] = {.lex_state = 5, .external_lex_state = 2}, - [1852] = {.lex_state = 5, .external_lex_state = 2}, - [1853] = {.lex_state = 5, .external_lex_state = 2}, - [1854] = {.lex_state = 5, .external_lex_state = 2}, - [1855] = {.lex_state = 5, .external_lex_state = 2}, - [1856] = {.lex_state = 5, .external_lex_state = 2}, - [1857] = {.lex_state = 5, .external_lex_state = 2}, - [1858] = {.lex_state = 5, .external_lex_state = 2}, - [1859] = {.lex_state = 5, .external_lex_state = 2}, - [1860] = {.lex_state = 5, .external_lex_state = 2}, - [1861] = {.lex_state = 5, .external_lex_state = 2}, - [1862] = {.lex_state = 5, .external_lex_state = 2}, - [1863] = {.lex_state = 5, .external_lex_state = 2}, - [1864] = {.lex_state = 5, .external_lex_state = 2}, - [1865] = {.lex_state = 5, .external_lex_state = 2}, - [1866] = {.lex_state = 5, .external_lex_state = 2}, - [1867] = {.lex_state = 5, .external_lex_state = 2}, - [1868] = {.lex_state = 5, .external_lex_state = 2}, - [1869] = {.lex_state = 5, .external_lex_state = 2}, - [1870] = {.lex_state = 5, .external_lex_state = 2}, - [1871] = {.lex_state = 5, .external_lex_state = 2}, - [1872] = {.lex_state = 5, .external_lex_state = 2}, - [1873] = {.lex_state = 5, .external_lex_state = 2}, - [1874] = {.lex_state = 5, .external_lex_state = 2}, - [1875] = {.lex_state = 5, .external_lex_state = 2}, - [1876] = {.lex_state = 5, .external_lex_state = 2}, - [1877] = {.lex_state = 5, .external_lex_state = 2}, - [1878] = {.lex_state = 5, .external_lex_state = 2}, - [1879] = {.lex_state = 5, .external_lex_state = 2}, - [1880] = {.lex_state = 5, .external_lex_state = 2}, - [1881] = {.lex_state = 5, .external_lex_state = 2}, - [1882] = {.lex_state = 5, .external_lex_state = 2}, - [1883] = {.lex_state = 5, .external_lex_state = 2}, - [1884] = {.lex_state = 5, .external_lex_state = 2}, - [1885] = {.lex_state = 5, .external_lex_state = 2}, - [1886] = {.lex_state = 5, .external_lex_state = 2}, - [1887] = {.lex_state = 5, .external_lex_state = 2}, - [1888] = {.lex_state = 5, .external_lex_state = 2}, - [1889] = {.lex_state = 5, .external_lex_state = 2}, - [1890] = {.lex_state = 5, .external_lex_state = 2}, - [1891] = {.lex_state = 5, .external_lex_state = 2}, - [1892] = {.lex_state = 5, .external_lex_state = 2}, - [1893] = {.lex_state = 5, .external_lex_state = 2}, - [1894] = {.lex_state = 5, .external_lex_state = 2}, - [1895] = {.lex_state = 5, .external_lex_state = 2}, - [1896] = {.lex_state = 5, .external_lex_state = 2}, - [1897] = {.lex_state = 5, .external_lex_state = 2}, - [1898] = {.lex_state = 5, .external_lex_state = 2}, - [1899] = {.lex_state = 5, .external_lex_state = 2}, - [1900] = {.lex_state = 5, .external_lex_state = 2}, - [1901] = {.lex_state = 5, .external_lex_state = 2}, - [1902] = {.lex_state = 5, .external_lex_state = 2}, - [1903] = {.lex_state = 5, .external_lex_state = 2}, - [1904] = {.lex_state = 5, .external_lex_state = 2}, - [1905] = {.lex_state = 5, .external_lex_state = 2}, - [1906] = {.lex_state = 5, .external_lex_state = 2}, - [1907] = {.lex_state = 5, .external_lex_state = 2}, - [1908] = {.lex_state = 5, .external_lex_state = 2}, - [1909] = {.lex_state = 5, .external_lex_state = 2}, - [1910] = {.lex_state = 5, .external_lex_state = 2}, - [1911] = {.lex_state = 5, .external_lex_state = 2}, - [1912] = {.lex_state = 7, .external_lex_state = 5}, - [1913] = {.lex_state = 5, .external_lex_state = 2}, - [1914] = {.lex_state = 5, .external_lex_state = 2}, - [1915] = {.lex_state = 5, .external_lex_state = 2}, - [1916] = {.lex_state = 5, .external_lex_state = 2}, - [1917] = {.lex_state = 5, .external_lex_state = 2}, - [1918] = {.lex_state = 5, .external_lex_state = 2}, - [1919] = {.lex_state = 5, .external_lex_state = 2}, - [1920] = {.lex_state = 5, .external_lex_state = 2}, - [1921] = {.lex_state = 5, .external_lex_state = 2}, - [1922] = {.lex_state = 5, .external_lex_state = 2}, - [1923] = {.lex_state = 5, .external_lex_state = 2}, - [1924] = {.lex_state = 5, .external_lex_state = 2}, - [1925] = {.lex_state = 5, .external_lex_state = 2}, - [1926] = {.lex_state = 5, .external_lex_state = 2}, - [1927] = {.lex_state = 5, .external_lex_state = 2}, - [1928] = {.lex_state = 5, .external_lex_state = 2}, - [1929] = {.lex_state = 5, .external_lex_state = 2}, - [1930] = {.lex_state = 5, .external_lex_state = 2}, - [1931] = {.lex_state = 5, .external_lex_state = 2}, - [1932] = {.lex_state = 5, .external_lex_state = 2}, - [1933] = {.lex_state = 5, .external_lex_state = 2}, - [1934] = {.lex_state = 5, .external_lex_state = 2}, - [1935] = {.lex_state = 5, .external_lex_state = 2}, - [1936] = {.lex_state = 5, .external_lex_state = 2}, - [1937] = {.lex_state = 5, .external_lex_state = 2}, - [1938] = {.lex_state = 5, .external_lex_state = 2}, - [1939] = {.lex_state = 9, .external_lex_state = 7}, - [1940] = {.lex_state = 5, .external_lex_state = 2}, - [1941] = {.lex_state = 9, .external_lex_state = 7}, - [1942] = {.lex_state = 5, .external_lex_state = 2}, - [1943] = {.lex_state = 9, .external_lex_state = 7}, - [1944] = {.lex_state = 9, .external_lex_state = 7}, - [1945] = {.lex_state = 5, .external_lex_state = 2}, - [1946] = {.lex_state = 5, .external_lex_state = 2}, - [1947] = {.lex_state = 5, .external_lex_state = 2}, - [1948] = {.lex_state = 5, .external_lex_state = 2}, - [1949] = {.lex_state = 9, .external_lex_state = 7}, - [1950] = {.lex_state = 5, .external_lex_state = 2}, - [1951] = {.lex_state = 5, .external_lex_state = 2}, - [1952] = {.lex_state = 5, .external_lex_state = 2}, - [1953] = {.lex_state = 5, .external_lex_state = 2}, - [1954] = {.lex_state = 5, .external_lex_state = 2}, - [1955] = {.lex_state = 5, .external_lex_state = 2}, - [1956] = {.lex_state = 5, .external_lex_state = 2}, - [1957] = {.lex_state = 5, .external_lex_state = 2}, - [1958] = {.lex_state = 5, .external_lex_state = 2}, - [1959] = {.lex_state = 5, .external_lex_state = 2}, - [1960] = {.lex_state = 5, .external_lex_state = 2}, - [1961] = {.lex_state = 5, .external_lex_state = 2}, - [1962] = {.lex_state = 5, .external_lex_state = 2}, - [1963] = {.lex_state = 5, .external_lex_state = 2}, - [1964] = {.lex_state = 5, .external_lex_state = 2}, - [1965] = {.lex_state = 5, .external_lex_state = 2}, - [1966] = {.lex_state = 9, .external_lex_state = 7}, - [1967] = {.lex_state = 5, .external_lex_state = 2}, - [1968] = {.lex_state = 5, .external_lex_state = 2}, - [1969] = {.lex_state = 5, .external_lex_state = 2}, - [1970] = {.lex_state = 7, .external_lex_state = 5}, - [1971] = {.lex_state = 5, .external_lex_state = 2}, - [1972] = {.lex_state = 5, .external_lex_state = 2}, - [1973] = {.lex_state = 5, .external_lex_state = 2}, - [1974] = {.lex_state = 5, .external_lex_state = 2}, - [1975] = {.lex_state = 5, .external_lex_state = 2}, - [1976] = {.lex_state = 5, .external_lex_state = 2}, - [1977] = {.lex_state = 5, .external_lex_state = 2}, - [1978] = {.lex_state = 5, .external_lex_state = 2}, - [1979] = {.lex_state = 5, .external_lex_state = 2}, - [1980] = {.lex_state = 5, .external_lex_state = 2}, - [1981] = {.lex_state = 5, .external_lex_state = 2}, - [1982] = {.lex_state = 5, .external_lex_state = 2}, - [1983] = {.lex_state = 5, .external_lex_state = 2}, - [1984] = {.lex_state = 5, .external_lex_state = 2}, - [1985] = {.lex_state = 5, .external_lex_state = 2}, - [1986] = {.lex_state = 5, .external_lex_state = 2}, - [1987] = {.lex_state = 5, .external_lex_state = 2}, - [1988] = {.lex_state = 5, .external_lex_state = 2}, - [1989] = {.lex_state = 5, .external_lex_state = 2}, - [1990] = {.lex_state = 5, .external_lex_state = 2}, - [1991] = {.lex_state = 5, .external_lex_state = 2}, - [1992] = {.lex_state = 5, .external_lex_state = 2}, - [1993] = {.lex_state = 5, .external_lex_state = 2}, - [1994] = {.lex_state = 5, .external_lex_state = 2}, - [1995] = {.lex_state = 5, .external_lex_state = 2}, - [1996] = {.lex_state = 5, .external_lex_state = 2}, - [1997] = {.lex_state = 5, .external_lex_state = 2}, - [1998] = {.lex_state = 5, .external_lex_state = 2}, - [1999] = {.lex_state = 5, .external_lex_state = 2}, - [2000] = {.lex_state = 5, .external_lex_state = 2}, - [2001] = {.lex_state = 5, .external_lex_state = 2}, - [2002] = {.lex_state = 5, .external_lex_state = 2}, - [2003] = {.lex_state = 5, .external_lex_state = 2}, - [2004] = {.lex_state = 5, .external_lex_state = 2}, - [2005] = {.lex_state = 5, .external_lex_state = 2}, - [2006] = {.lex_state = 5, .external_lex_state = 2}, - [2007] = {.lex_state = 5, .external_lex_state = 2}, - [2008] = {.lex_state = 5, .external_lex_state = 2}, - [2009] = {.lex_state = 5, .external_lex_state = 2}, - [2010] = {.lex_state = 5, .external_lex_state = 2}, - [2011] = {.lex_state = 5, .external_lex_state = 2}, - [2012] = {.lex_state = 5, .external_lex_state = 2}, - [2013] = {.lex_state = 5, .external_lex_state = 2}, - [2014] = {.lex_state = 5, .external_lex_state = 2}, - [2015] = {.lex_state = 5, .external_lex_state = 2}, - [2016] = {.lex_state = 5, .external_lex_state = 2}, - [2017] = {.lex_state = 5, .external_lex_state = 2}, - [2018] = {.lex_state = 5, .external_lex_state = 2}, - [2019] = {.lex_state = 5, .external_lex_state = 2}, - [2020] = {.lex_state = 5, .external_lex_state = 2}, - [2021] = {.lex_state = 5, .external_lex_state = 2}, - [2022] = {.lex_state = 5, .external_lex_state = 2}, - [2023] = {.lex_state = 5, .external_lex_state = 2}, - [2024] = {.lex_state = 5, .external_lex_state = 2}, - [2025] = {.lex_state = 5, .external_lex_state = 2}, - [2026] = {.lex_state = 5, .external_lex_state = 2}, - [2027] = {.lex_state = 5, .external_lex_state = 2}, - [2028] = {.lex_state = 5, .external_lex_state = 2}, - [2029] = {.lex_state = 5, .external_lex_state = 2}, - [2030] = {.lex_state = 5, .external_lex_state = 2}, - [2031] = {.lex_state = 5, .external_lex_state = 2}, - [2032] = {.lex_state = 5, .external_lex_state = 2}, - [2033] = {.lex_state = 5, .external_lex_state = 2}, - [2034] = {.lex_state = 5, .external_lex_state = 2}, - [2035] = {.lex_state = 5, .external_lex_state = 2}, - [2036] = {.lex_state = 5, .external_lex_state = 2}, - [2037] = {.lex_state = 5, .external_lex_state = 2}, - [2038] = {.lex_state = 5, .external_lex_state = 2}, - [2039] = {.lex_state = 5, .external_lex_state = 2}, - [2040] = {.lex_state = 5, .external_lex_state = 2}, - [2041] = {.lex_state = 5, .external_lex_state = 2}, - [2042] = {.lex_state = 5, .external_lex_state = 2}, - [2043] = {.lex_state = 5, .external_lex_state = 2}, - [2044] = {.lex_state = 5, .external_lex_state = 2}, - [2045] = {.lex_state = 5, .external_lex_state = 2}, - [2046] = {.lex_state = 5, .external_lex_state = 2}, - [2047] = {.lex_state = 5, .external_lex_state = 2}, - [2048] = {.lex_state = 7, .external_lex_state = 5}, - [2049] = {.lex_state = 5, .external_lex_state = 2}, - [2050] = {.lex_state = 5, .external_lex_state = 2}, - [2051] = {.lex_state = 5, .external_lex_state = 2}, - [2052] = {.lex_state = 5, .external_lex_state = 2}, - [2053] = {.lex_state = 5, .external_lex_state = 2}, - [2054] = {.lex_state = 5, .external_lex_state = 2}, - [2055] = {.lex_state = 5, .external_lex_state = 2}, - [2056] = {.lex_state = 5, .external_lex_state = 2}, - [2057] = {.lex_state = 5, .external_lex_state = 2}, - [2058] = {.lex_state = 5, .external_lex_state = 2}, - [2059] = {.lex_state = 5, .external_lex_state = 2}, - [2060] = {.lex_state = 5, .external_lex_state = 2}, - [2061] = {.lex_state = 5, .external_lex_state = 2}, - [2062] = {.lex_state = 5, .external_lex_state = 2}, - [2063] = {.lex_state = 5, .external_lex_state = 2}, - [2064] = {.lex_state = 5, .external_lex_state = 2}, - [2065] = {.lex_state = 5, .external_lex_state = 2}, - [2066] = {.lex_state = 5, .external_lex_state = 2}, - [2067] = {.lex_state = 5, .external_lex_state = 2}, - [2068] = {.lex_state = 5, .external_lex_state = 2}, - [2069] = {.lex_state = 5, .external_lex_state = 2}, - [2070] = {.lex_state = 5, .external_lex_state = 2}, - [2071] = {.lex_state = 5, .external_lex_state = 2}, - [2072] = {.lex_state = 5, .external_lex_state = 2}, - [2073] = {.lex_state = 5, .external_lex_state = 2}, - [2074] = {.lex_state = 5, .external_lex_state = 2}, - [2075] = {.lex_state = 5, .external_lex_state = 2}, - [2076] = {.lex_state = 5, .external_lex_state = 2}, - [2077] = {.lex_state = 5, .external_lex_state = 2}, - [2078] = {.lex_state = 5, .external_lex_state = 2}, - [2079] = {.lex_state = 5, .external_lex_state = 2}, - [2080] = {.lex_state = 5, .external_lex_state = 2}, - [2081] = {.lex_state = 5, .external_lex_state = 2}, - [2082] = {.lex_state = 5, .external_lex_state = 2}, - [2083] = {.lex_state = 2, .external_lex_state = 4}, - [2084] = {.lex_state = 5, .external_lex_state = 2}, - [2085] = {.lex_state = 5, .external_lex_state = 2}, - [2086] = {.lex_state = 5, .external_lex_state = 2}, - [2087] = {.lex_state = 5, .external_lex_state = 2}, - [2088] = {.lex_state = 5, .external_lex_state = 2}, - [2089] = {.lex_state = 5, .external_lex_state = 2}, - [2090] = {.lex_state = 5, .external_lex_state = 2}, - [2091] = {.lex_state = 5, .external_lex_state = 2}, - [2092] = {.lex_state = 5, .external_lex_state = 2}, - [2093] = {.lex_state = 5, .external_lex_state = 2}, - [2094] = {.lex_state = 5, .external_lex_state = 2}, - [2095] = {.lex_state = 5, .external_lex_state = 2}, - [2096] = {.lex_state = 5, .external_lex_state = 2}, - [2097] = {.lex_state = 5, .external_lex_state = 2}, - [2098] = {.lex_state = 5, .external_lex_state = 2}, - [2099] = {.lex_state = 5, .external_lex_state = 2}, - [2100] = {.lex_state = 5, .external_lex_state = 2}, - [2101] = {.lex_state = 5, .external_lex_state = 2}, - [2102] = {.lex_state = 5, .external_lex_state = 2}, - [2103] = {.lex_state = 5, .external_lex_state = 2}, - [2104] = {.lex_state = 5, .external_lex_state = 2}, - [2105] = {.lex_state = 5, .external_lex_state = 2}, - [2106] = {.lex_state = 5, .external_lex_state = 2}, - [2107] = {.lex_state = 5, .external_lex_state = 2}, - [2108] = {.lex_state = 5, .external_lex_state = 2}, - [2109] = {.lex_state = 5, .external_lex_state = 2}, - [2110] = {.lex_state = 5, .external_lex_state = 2}, - [2111] = {.lex_state = 5, .external_lex_state = 2}, - [2112] = {.lex_state = 9, .external_lex_state = 7}, - [2113] = {.lex_state = 5, .external_lex_state = 2}, - [2114] = {.lex_state = 5, .external_lex_state = 2}, - [2115] = {.lex_state = 5, .external_lex_state = 2}, - [2116] = {.lex_state = 5, .external_lex_state = 2}, - [2117] = {.lex_state = 5, .external_lex_state = 2}, - [2118] = {.lex_state = 5, .external_lex_state = 2}, - [2119] = {.lex_state = 5, .external_lex_state = 2}, - [2120] = {.lex_state = 5, .external_lex_state = 2}, - [2121] = {.lex_state = 5, .external_lex_state = 2}, - [2122] = {.lex_state = 5, .external_lex_state = 2}, - [2123] = {.lex_state = 5, .external_lex_state = 2}, - [2124] = {.lex_state = 5, .external_lex_state = 2}, - [2125] = {.lex_state = 5, .external_lex_state = 2}, - [2126] = {.lex_state = 5, .external_lex_state = 2}, - [2127] = {.lex_state = 5, .external_lex_state = 2}, - [2128] = {.lex_state = 5, .external_lex_state = 2}, - [2129] = {.lex_state = 5, .external_lex_state = 2}, - [2130] = {.lex_state = 5, .external_lex_state = 2}, - [2131] = {.lex_state = 5, .external_lex_state = 2}, - [2132] = {.lex_state = 5, .external_lex_state = 2}, - [2133] = {.lex_state = 5, .external_lex_state = 2}, - [2134] = {.lex_state = 5, .external_lex_state = 2}, - [2135] = {.lex_state = 5, .external_lex_state = 2}, - [2136] = {.lex_state = 5, .external_lex_state = 2}, - [2137] = {.lex_state = 5, .external_lex_state = 2}, - [2138] = {.lex_state = 2, .external_lex_state = 4}, - [2139] = {.lex_state = 1, .external_lex_state = 3}, - [2140] = {.lex_state = 5, .external_lex_state = 2}, - [2141] = {.lex_state = 5, .external_lex_state = 2}, - [2142] = {.lex_state = 5, .external_lex_state = 2}, - [2143] = {.lex_state = 5, .external_lex_state = 2}, - [2144] = {.lex_state = 5, .external_lex_state = 2}, - [2145] = {.lex_state = 5, .external_lex_state = 2}, - [2146] = {.lex_state = 9, .external_lex_state = 6}, - [2147] = {.lex_state = 5, .external_lex_state = 2}, - [2148] = {.lex_state = 5, .external_lex_state = 2}, - [2149] = {.lex_state = 5, .external_lex_state = 2}, - [2150] = {.lex_state = 1, .external_lex_state = 3}, - [2151] = {.lex_state = 5, .external_lex_state = 2}, - [2152] = {.lex_state = 5, .external_lex_state = 2}, - [2153] = {.lex_state = 2, .external_lex_state = 4}, - [2154] = {.lex_state = 2, .external_lex_state = 4}, - [2155] = {.lex_state = 5, .external_lex_state = 2}, - [2156] = {.lex_state = 5, .external_lex_state = 2}, - [2157] = {.lex_state = 5, .external_lex_state = 2}, - [2158] = {.lex_state = 5, .external_lex_state = 2}, - [2159] = {.lex_state = 5, .external_lex_state = 2}, - [2160] = {.lex_state = 5, .external_lex_state = 2}, - [2161] = {.lex_state = 5, .external_lex_state = 2}, - [2162] = {.lex_state = 5, .external_lex_state = 2}, - [2163] = {.lex_state = 5, .external_lex_state = 2}, - [2164] = {.lex_state = 5, .external_lex_state = 2}, - [2165] = {.lex_state = 5, .external_lex_state = 2}, - [2166] = {.lex_state = 5, .external_lex_state = 2}, - [2167] = {.lex_state = 5, .external_lex_state = 2}, - [2168] = {.lex_state = 5, .external_lex_state = 2}, - [2169] = {.lex_state = 5, .external_lex_state = 2}, - [2170] = {.lex_state = 5, .external_lex_state = 2}, - [2171] = {.lex_state = 5, .external_lex_state = 2}, - [2172] = {.lex_state = 5, .external_lex_state = 2}, - [2173] = {.lex_state = 5, .external_lex_state = 2}, - [2174] = {.lex_state = 5, .external_lex_state = 2}, - [2175] = {.lex_state = 5, .external_lex_state = 2}, - [2176] = {.lex_state = 5, .external_lex_state = 2}, - [2177] = {.lex_state = 5, .external_lex_state = 2}, - [2178] = {.lex_state = 5, .external_lex_state = 2}, - [2179] = {.lex_state = 5, .external_lex_state = 2}, - [2180] = {.lex_state = 5, .external_lex_state = 2}, - [2181] = {.lex_state = 5, .external_lex_state = 2}, - [2182] = {.lex_state = 5, .external_lex_state = 2}, - [2183] = {.lex_state = 5, .external_lex_state = 2}, - [2184] = {.lex_state = 5, .external_lex_state = 2}, - [2185] = {.lex_state = 5, .external_lex_state = 2}, - [2186] = {.lex_state = 5, .external_lex_state = 2}, - [2187] = {.lex_state = 5, .external_lex_state = 2}, - [2188] = {.lex_state = 5, .external_lex_state = 2}, - [2189] = {.lex_state = 5, .external_lex_state = 2}, - [2190] = {.lex_state = 5, .external_lex_state = 2}, - [2191] = {.lex_state = 5, .external_lex_state = 2}, - [2192] = {.lex_state = 5, .external_lex_state = 2}, - [2193] = {.lex_state = 5, .external_lex_state = 2}, - [2194] = {.lex_state = 9, .external_lex_state = 6}, - [2195] = {.lex_state = 5, .external_lex_state = 2}, - [2196] = {.lex_state = 5, .external_lex_state = 2}, - [2197] = {.lex_state = 5, .external_lex_state = 2}, - [2198] = {.lex_state = 5, .external_lex_state = 2}, - [2199] = {.lex_state = 5, .external_lex_state = 2}, - [2200] = {.lex_state = 5, .external_lex_state = 2}, - [2201] = {.lex_state = 5, .external_lex_state = 2}, - [2202] = {.lex_state = 5, .external_lex_state = 2}, - [2203] = {.lex_state = 5, .external_lex_state = 2}, - [2204] = {.lex_state = 5, .external_lex_state = 2}, - [2205] = {.lex_state = 5, .external_lex_state = 2}, - [2206] = {.lex_state = 5, .external_lex_state = 2}, - [2207] = {.lex_state = 5, .external_lex_state = 2}, - [2208] = {.lex_state = 5, .external_lex_state = 2}, - [2209] = {.lex_state = 5, .external_lex_state = 2}, - [2210] = {.lex_state = 5, .external_lex_state = 2}, - [2211] = {.lex_state = 5, .external_lex_state = 2}, - [2212] = {.lex_state = 5, .external_lex_state = 2}, - [2213] = {.lex_state = 5, .external_lex_state = 2}, - [2214] = {.lex_state = 5, .external_lex_state = 2}, - [2215] = {.lex_state = 5, .external_lex_state = 2}, - [2216] = {.lex_state = 5, .external_lex_state = 2}, - [2217] = {.lex_state = 5, .external_lex_state = 2}, - [2218] = {.lex_state = 5, .external_lex_state = 2}, - [2219] = {.lex_state = 5, .external_lex_state = 2}, - [2220] = {.lex_state = 5, .external_lex_state = 2}, - [2221] = {.lex_state = 5, .external_lex_state = 2}, - [2222] = {.lex_state = 5, .external_lex_state = 2}, - [2223] = {.lex_state = 5, .external_lex_state = 2}, - [2224] = {.lex_state = 5, .external_lex_state = 2}, - [2225] = {.lex_state = 5, .external_lex_state = 2}, - [2226] = {.lex_state = 5, .external_lex_state = 2}, - [2227] = {.lex_state = 5, .external_lex_state = 2}, - [2228] = {.lex_state = 5, .external_lex_state = 2}, - [2229] = {.lex_state = 5, .external_lex_state = 2}, - [2230] = {.lex_state = 2, .external_lex_state = 4}, - [2231] = {.lex_state = 2, .external_lex_state = 4}, - [2232] = {.lex_state = 2, .external_lex_state = 4}, - [2233] = {.lex_state = 2, .external_lex_state = 4}, - [2234] = {.lex_state = 5, .external_lex_state = 2}, - [2235] = {.lex_state = 5, .external_lex_state = 2}, - [2236] = {.lex_state = 2, .external_lex_state = 4}, - [2237] = {.lex_state = 2, .external_lex_state = 4}, - [2238] = {.lex_state = 2, .external_lex_state = 4}, - [2239] = {.lex_state = 5, .external_lex_state = 2}, - [2240] = {.lex_state = 2, .external_lex_state = 4}, - [2241] = {.lex_state = 2, .external_lex_state = 4}, - [2242] = {.lex_state = 9, .external_lex_state = 7}, - [2243] = {.lex_state = 5, .external_lex_state = 2}, - [2244] = {.lex_state = 2, .external_lex_state = 4}, - [2245] = {.lex_state = 5, .external_lex_state = 2}, - [2246] = {.lex_state = 9, .external_lex_state = 6}, - [2247] = {.lex_state = 5, .external_lex_state = 2}, - [2248] = {.lex_state = 5, .external_lex_state = 2}, - [2249] = {.lex_state = 5, .external_lex_state = 2}, - [2250] = {.lex_state = 5, .external_lex_state = 2}, - [2251] = {.lex_state = 5, .external_lex_state = 2}, - [2252] = {.lex_state = 5, .external_lex_state = 2}, - [2253] = {.lex_state = 5, .external_lex_state = 2}, - [2254] = {.lex_state = 5, .external_lex_state = 2}, - [2255] = {.lex_state = 5, .external_lex_state = 2}, - [2256] = {.lex_state = 5, .external_lex_state = 2}, - [2257] = {.lex_state = 5, .external_lex_state = 2}, - [2258] = {.lex_state = 5, .external_lex_state = 2}, - [2259] = {.lex_state = 5, .external_lex_state = 2}, - [2260] = {.lex_state = 5, .external_lex_state = 2}, - [2261] = {.lex_state = 5, .external_lex_state = 2}, - [2262] = {.lex_state = 5, .external_lex_state = 2}, - [2263] = {.lex_state = 5, .external_lex_state = 2}, - [2264] = {.lex_state = 5, .external_lex_state = 2}, - [2265] = {.lex_state = 5, .external_lex_state = 2}, - [2266] = {.lex_state = 5, .external_lex_state = 2}, - [2267] = {.lex_state = 5, .external_lex_state = 2}, - [2268] = {.lex_state = 5, .external_lex_state = 2}, - [2269] = {.lex_state = 5, .external_lex_state = 2}, - [2270] = {.lex_state = 5, .external_lex_state = 2}, - [2271] = {.lex_state = 5, .external_lex_state = 2}, - [2272] = {.lex_state = 5, .external_lex_state = 2}, - [2273] = {.lex_state = 5, .external_lex_state = 2}, - [2274] = {.lex_state = 5, .external_lex_state = 2}, - [2275] = {.lex_state = 5, .external_lex_state = 2}, - [2276] = {.lex_state = 5, .external_lex_state = 2}, - [2277] = {.lex_state = 5, .external_lex_state = 2}, - [2278] = {.lex_state = 5, .external_lex_state = 2}, - [2279] = {.lex_state = 9, .external_lex_state = 7}, - [2280] = {.lex_state = 5, .external_lex_state = 2}, - [2281] = {.lex_state = 5, .external_lex_state = 2}, - [2282] = {.lex_state = 5, .external_lex_state = 2}, - [2283] = {.lex_state = 5, .external_lex_state = 2}, - [2284] = {.lex_state = 5, .external_lex_state = 2}, - [2285] = {.lex_state = 5, .external_lex_state = 2}, - [2286] = {.lex_state = 5, .external_lex_state = 2}, - [2287] = {.lex_state = 9, .external_lex_state = 7}, - [2288] = {.lex_state = 5, .external_lex_state = 2}, - [2289] = {.lex_state = 5, .external_lex_state = 2}, - [2290] = {.lex_state = 5, .external_lex_state = 2}, - [2291] = {.lex_state = 5, .external_lex_state = 2}, - [2292] = {.lex_state = 5, .external_lex_state = 2}, - [2293] = {.lex_state = 5, .external_lex_state = 2}, - [2294] = {.lex_state = 5, .external_lex_state = 2}, - [2295] = {.lex_state = 5, .external_lex_state = 2}, - [2296] = {.lex_state = 9, .external_lex_state = 7}, - [2297] = {.lex_state = 5, .external_lex_state = 2}, - [2298] = {.lex_state = 5, .external_lex_state = 2}, - [2299] = {.lex_state = 5, .external_lex_state = 2}, - [2300] = {.lex_state = 5, .external_lex_state = 2}, - [2301] = {.lex_state = 5, .external_lex_state = 2}, - [2302] = {.lex_state = 5, .external_lex_state = 2}, - [2303] = {.lex_state = 5, .external_lex_state = 2}, - [2304] = {.lex_state = 5, .external_lex_state = 2}, - [2305] = {.lex_state = 5, .external_lex_state = 2}, - [2306] = {.lex_state = 5, .external_lex_state = 2}, - [2307] = {.lex_state = 9, .external_lex_state = 6}, - [2308] = {.lex_state = 5, .external_lex_state = 2}, - [2309] = {.lex_state = 5, .external_lex_state = 2}, - [2310] = {.lex_state = 5, .external_lex_state = 2}, - [2311] = {.lex_state = 5, .external_lex_state = 2}, - [2312] = {.lex_state = 5, .external_lex_state = 2}, - [2313] = {.lex_state = 5, .external_lex_state = 2}, - [2314] = {.lex_state = 5, .external_lex_state = 2}, - [2315] = {.lex_state = 5, .external_lex_state = 2}, - [2316] = {.lex_state = 5, .external_lex_state = 2}, - [2317] = {.lex_state = 5, .external_lex_state = 2}, - [2318] = {.lex_state = 5, .external_lex_state = 2}, - [2319] = {.lex_state = 5, .external_lex_state = 2}, - [2320] = {.lex_state = 5, .external_lex_state = 2}, - [2321] = {.lex_state = 5, .external_lex_state = 2}, - [2322] = {.lex_state = 9, .external_lex_state = 7}, - [2323] = {.lex_state = 5, .external_lex_state = 2}, - [2324] = {.lex_state = 5, .external_lex_state = 2}, - [2325] = {.lex_state = 5, .external_lex_state = 2}, - [2326] = {.lex_state = 5, .external_lex_state = 2}, - [2327] = {.lex_state = 5, .external_lex_state = 2}, - [2328] = {.lex_state = 5, .external_lex_state = 2}, - [2329] = {.lex_state = 5, .external_lex_state = 2}, - [2330] = {.lex_state = 5, .external_lex_state = 2}, - [2331] = {.lex_state = 5, .external_lex_state = 2}, - [2332] = {.lex_state = 5, .external_lex_state = 2}, - [2333] = {.lex_state = 5, .external_lex_state = 2}, - [2334] = {.lex_state = 5, .external_lex_state = 2}, - [2335] = {.lex_state = 5, .external_lex_state = 2}, - [2336] = {.lex_state = 5, .external_lex_state = 2}, - [2337] = {.lex_state = 5, .external_lex_state = 2}, - [2338] = {.lex_state = 5, .external_lex_state = 2}, - [2339] = {.lex_state = 5, .external_lex_state = 2}, - [2340] = {.lex_state = 5, .external_lex_state = 2}, - [2341] = {.lex_state = 5, .external_lex_state = 2}, - [2342] = {.lex_state = 5, .external_lex_state = 2}, - [2343] = {.lex_state = 5, .external_lex_state = 2}, - [2344] = {.lex_state = 5, .external_lex_state = 2}, - [2345] = {.lex_state = 5, .external_lex_state = 2}, - [2346] = {.lex_state = 5, .external_lex_state = 2}, - [2347] = {.lex_state = 5, .external_lex_state = 2}, - [2348] = {.lex_state = 5, .external_lex_state = 2}, - [2349] = {.lex_state = 5, .external_lex_state = 2}, - [2350] = {.lex_state = 5, .external_lex_state = 2}, - [2351] = {.lex_state = 5, .external_lex_state = 2}, - [2352] = {.lex_state = 5, .external_lex_state = 2}, - [2353] = {.lex_state = 5, .external_lex_state = 2}, - [2354] = {.lex_state = 5, .external_lex_state = 2}, - [2355] = {.lex_state = 5, .external_lex_state = 2}, - [2356] = {.lex_state = 5, .external_lex_state = 2}, - [2357] = {.lex_state = 5, .external_lex_state = 2}, - [2358] = {.lex_state = 5, .external_lex_state = 2}, - [2359] = {.lex_state = 5, .external_lex_state = 2}, - [2360] = {.lex_state = 5, .external_lex_state = 2}, - [2361] = {.lex_state = 5, .external_lex_state = 2}, - [2362] = {.lex_state = 5, .external_lex_state = 2}, - [2363] = {.lex_state = 5, .external_lex_state = 2}, - [2364] = {.lex_state = 5, .external_lex_state = 2}, - [2365] = {.lex_state = 5, .external_lex_state = 2}, - [2366] = {.lex_state = 5, .external_lex_state = 2}, - [2367] = {.lex_state = 5, .external_lex_state = 2}, - [2368] = {.lex_state = 5, .external_lex_state = 2}, - [2369] = {.lex_state = 5, .external_lex_state = 2}, - [2370] = {.lex_state = 5, .external_lex_state = 2}, - [2371] = {.lex_state = 5, .external_lex_state = 2}, - [2372] = {.lex_state = 5, .external_lex_state = 2}, - [2373] = {.lex_state = 5, .external_lex_state = 2}, - [2374] = {.lex_state = 5, .external_lex_state = 2}, - [2375] = {.lex_state = 5, .external_lex_state = 2}, - [2376] = {.lex_state = 5, .external_lex_state = 2}, - [2377] = {.lex_state = 5, .external_lex_state = 2}, - [2378] = {.lex_state = 5, .external_lex_state = 2}, - [2379] = {.lex_state = 5, .external_lex_state = 2}, - [2380] = {.lex_state = 5, .external_lex_state = 2}, - [2381] = {.lex_state = 5, .external_lex_state = 2}, - [2382] = {.lex_state = 5, .external_lex_state = 2}, - [2383] = {.lex_state = 9, .external_lex_state = 6}, - [2384] = {.lex_state = 5, .external_lex_state = 2}, - [2385] = {.lex_state = 5, .external_lex_state = 2}, - [2386] = {.lex_state = 9, .external_lex_state = 6}, - [2387] = {.lex_state = 9, .external_lex_state = 6}, - [2388] = {.lex_state = 5, .external_lex_state = 2}, - [2389] = {.lex_state = 5, .external_lex_state = 2}, - [2390] = {.lex_state = 5, .external_lex_state = 2}, - [2391] = {.lex_state = 9, .external_lex_state = 6}, - [2392] = {.lex_state = 9, .external_lex_state = 6}, - [2393] = {.lex_state = 9, .external_lex_state = 6}, - [2394] = {.lex_state = 9, .external_lex_state = 6}, - [2395] = {.lex_state = 9, .external_lex_state = 6}, - [2396] = {.lex_state = 9, .external_lex_state = 7}, - [2397] = {.lex_state = 9, .external_lex_state = 6}, - [2398] = {.lex_state = 9, .external_lex_state = 6}, - [2399] = {.lex_state = 9, .external_lex_state = 6}, - [2400] = {.lex_state = 9, .external_lex_state = 6}, - [2401] = {.lex_state = 9, .external_lex_state = 6}, - [2402] = {.lex_state = 9, .external_lex_state = 6}, - [2403] = {.lex_state = 9, .external_lex_state = 7}, - [2404] = {.lex_state = 9, .external_lex_state = 6}, - [2405] = {.lex_state = 9, .external_lex_state = 7}, - [2406] = {.lex_state = 9, .external_lex_state = 7}, - [2407] = {.lex_state = 1, .external_lex_state = 4}, - [2408] = {.lex_state = 1, .external_lex_state = 4}, - [2409] = {.lex_state = 9, .external_lex_state = 6}, - [2410] = {.lex_state = 9, .external_lex_state = 7}, - [2411] = {.lex_state = 1, .external_lex_state = 4}, - [2412] = {.lex_state = 9, .external_lex_state = 6}, - [2413] = {.lex_state = 9, .external_lex_state = 6}, - [2414] = {.lex_state = 7, .external_lex_state = 5}, - [2415] = {.lex_state = 9, .external_lex_state = 6}, - [2416] = {.lex_state = 9, .external_lex_state = 7}, - [2417] = {.lex_state = 9, .external_lex_state = 6}, - [2418] = {.lex_state = 9, .external_lex_state = 6}, - [2419] = {.lex_state = 1, .external_lex_state = 4}, - [2420] = {.lex_state = 1, .external_lex_state = 4}, - [2421] = {.lex_state = 9, .external_lex_state = 6}, - [2422] = {.lex_state = 9, .external_lex_state = 6}, - [2423] = {.lex_state = 9, .external_lex_state = 6}, - [2424] = {.lex_state = 9, .external_lex_state = 7}, - [2425] = {.lex_state = 9, .external_lex_state = 7}, - [2426] = {.lex_state = 9, .external_lex_state = 6}, - [2427] = {.lex_state = 9, .external_lex_state = 7}, - [2428] = {.lex_state = 9, .external_lex_state = 6}, - [2429] = {.lex_state = 1, .external_lex_state = 4}, - [2430] = {.lex_state = 9, .external_lex_state = 7}, - [2431] = {.lex_state = 9, .external_lex_state = 7}, - [2432] = {.lex_state = 7, .external_lex_state = 5}, - [2433] = {.lex_state = 7, .external_lex_state = 5}, - [2434] = {.lex_state = 1, .external_lex_state = 4}, - [2435] = {.lex_state = 9, .external_lex_state = 6}, - [2436] = {.lex_state = 1, .external_lex_state = 4}, - [2437] = {.lex_state = 9, .external_lex_state = 6}, - [2438] = {.lex_state = 9, .external_lex_state = 7}, - [2439] = {.lex_state = 9, .external_lex_state = 7}, - [2440] = {.lex_state = 7, .external_lex_state = 5}, - [2441] = {.lex_state = 9, .external_lex_state = 7}, - [2442] = {.lex_state = 1, .external_lex_state = 4}, - [2443] = {.lex_state = 9, .external_lex_state = 6}, - [2444] = {.lex_state = 1, .external_lex_state = 4}, - [2445] = {.lex_state = 9, .external_lex_state = 7}, - [2446] = {.lex_state = 9, .external_lex_state = 7}, - [2447] = {.lex_state = 9, .external_lex_state = 6}, - [2448] = {.lex_state = 9, .external_lex_state = 7}, - [2449] = {.lex_state = 9, .external_lex_state = 7}, - [2450] = {.lex_state = 9, .external_lex_state = 6}, - [2451] = {.lex_state = 9, .external_lex_state = 6}, - [2452] = {.lex_state = 9, .external_lex_state = 7}, - [2453] = {.lex_state = 9, .external_lex_state = 6}, - [2454] = {.lex_state = 9, .external_lex_state = 6}, - [2455] = {.lex_state = 9, .external_lex_state = 7}, - [2456] = {.lex_state = 9, .external_lex_state = 6}, - [2457] = {.lex_state = 9, .external_lex_state = 7}, - [2458] = {.lex_state = 7, .external_lex_state = 5}, - [2459] = {.lex_state = 9, .external_lex_state = 6}, - [2460] = {.lex_state = 9, .external_lex_state = 7}, - [2461] = {.lex_state = 9, .external_lex_state = 7}, - [2462] = {.lex_state = 9, .external_lex_state = 7}, - [2463] = {.lex_state = 9, .external_lex_state = 7}, - [2464] = {.lex_state = 9, .external_lex_state = 7}, - [2465] = {.lex_state = 9, .external_lex_state = 7}, - [2466] = {.lex_state = 9, .external_lex_state = 7}, - [2467] = {.lex_state = 9, .external_lex_state = 7}, - [2468] = {.lex_state = 9, .external_lex_state = 7}, - [2469] = {.lex_state = 9, .external_lex_state = 7}, - [2470] = {.lex_state = 9, .external_lex_state = 7}, - [2471] = {.lex_state = 9, .external_lex_state = 6}, - [2472] = {.lex_state = 9, .external_lex_state = 6}, - [2473] = {.lex_state = 9, .external_lex_state = 7}, - [2474] = {.lex_state = 9, .external_lex_state = 7}, - [2475] = {.lex_state = 9, .external_lex_state = 7}, - [2476] = {.lex_state = 7, .external_lex_state = 5}, - [2477] = {.lex_state = 9, .external_lex_state = 7}, - [2478] = {.lex_state = 9, .external_lex_state = 7}, - [2479] = {.lex_state = 9, .external_lex_state = 7}, - [2480] = {.lex_state = 9, .external_lex_state = 7}, - [2481] = {.lex_state = 9, .external_lex_state = 7}, - [2482] = {.lex_state = 7, .external_lex_state = 5}, - [2483] = {.lex_state = 9, .external_lex_state = 7}, - [2484] = {.lex_state = 9, .external_lex_state = 6}, - [2485] = {.lex_state = 9, .external_lex_state = 6}, - [2486] = {.lex_state = 9, .external_lex_state = 7}, - [2487] = {.lex_state = 7, .external_lex_state = 5}, - [2488] = {.lex_state = 9, .external_lex_state = 6}, - [2489] = {.lex_state = 9, .external_lex_state = 6}, - [2490] = {.lex_state = 9, .external_lex_state = 7}, - [2491] = {.lex_state = 9, .external_lex_state = 7}, - [2492] = {.lex_state = 9, .external_lex_state = 7}, - [2493] = {.lex_state = 9, .external_lex_state = 7}, - [2494] = {.lex_state = 9, .external_lex_state = 7}, - [2495] = {.lex_state = 9, .external_lex_state = 7}, - [2496] = {.lex_state = 9, .external_lex_state = 6}, - [2497] = {.lex_state = 9, .external_lex_state = 6}, - [2498] = {.lex_state = 9, .external_lex_state = 6}, - [2499] = {.lex_state = 9, .external_lex_state = 7}, - [2500] = {.lex_state = 9, .external_lex_state = 7}, - [2501] = {.lex_state = 9, .external_lex_state = 6}, - [2502] = {.lex_state = 9, .external_lex_state = 7}, - [2503] = {.lex_state = 9, .external_lex_state = 6}, - [2504] = {.lex_state = 9, .external_lex_state = 7}, - [2505] = {.lex_state = 9, .external_lex_state = 6}, - [2506] = {.lex_state = 9, .external_lex_state = 6}, - [2507] = {.lex_state = 7, .external_lex_state = 5}, - [2508] = {.lex_state = 9, .external_lex_state = 7}, - [2509] = {.lex_state = 9, .external_lex_state = 6}, - [2510] = {.lex_state = 9, .external_lex_state = 6}, - [2511] = {.lex_state = 9, .external_lex_state = 7}, - [2512] = {.lex_state = 9, .external_lex_state = 6}, - [2513] = {.lex_state = 9, .external_lex_state = 6}, - [2514] = {.lex_state = 9, .external_lex_state = 6}, - [2515] = {.lex_state = 9, .external_lex_state = 6}, - [2516] = {.lex_state = 9, .external_lex_state = 7}, - [2517] = {.lex_state = 9, .external_lex_state = 6}, - [2518] = {.lex_state = 9, .external_lex_state = 6}, - [2519] = {.lex_state = 9, .external_lex_state = 7}, - [2520] = {.lex_state = 9, .external_lex_state = 6}, - [2521] = {.lex_state = 9, .external_lex_state = 7}, - [2522] = {.lex_state = 9, .external_lex_state = 6}, - [2523] = {.lex_state = 9, .external_lex_state = 6}, - [2524] = {.lex_state = 9, .external_lex_state = 7}, - [2525] = {.lex_state = 9, .external_lex_state = 7}, - [2526] = {.lex_state = 9, .external_lex_state = 6}, - [2527] = {.lex_state = 9, .external_lex_state = 6}, - [2528] = {.lex_state = 9, .external_lex_state = 6}, - [2529] = {.lex_state = 9, .external_lex_state = 6}, - [2530] = {.lex_state = 9, .external_lex_state = 6}, - [2531] = {.lex_state = 9, .external_lex_state = 6}, - [2532] = {.lex_state = 9, .external_lex_state = 6}, - [2533] = {.lex_state = 9, .external_lex_state = 6}, - [2534] = {.lex_state = 9, .external_lex_state = 7}, - [2535] = {.lex_state = 9, .external_lex_state = 6}, - [2536] = {.lex_state = 9, .external_lex_state = 6}, - [2537] = {.lex_state = 9, .external_lex_state = 6}, - [2538] = {.lex_state = 9, .external_lex_state = 6}, - [2539] = {.lex_state = 9, .external_lex_state = 6}, - [2540] = {.lex_state = 9, .external_lex_state = 7}, - [2541] = {.lex_state = 9, .external_lex_state = 6}, - [2542] = {.lex_state = 9, .external_lex_state = 7}, - [2543] = {.lex_state = 9, .external_lex_state = 6}, - [2544] = {.lex_state = 9, .external_lex_state = 7}, - [2545] = {.lex_state = 9, .external_lex_state = 7}, - [2546] = {.lex_state = 9, .external_lex_state = 7}, - [2547] = {.lex_state = 9, .external_lex_state = 7}, - [2548] = {.lex_state = 9, .external_lex_state = 7}, - [2549] = {.lex_state = 9, .external_lex_state = 6}, - [2550] = {.lex_state = 9, .external_lex_state = 7}, - [2551] = {.lex_state = 9, .external_lex_state = 6}, - [2552] = {.lex_state = 9, .external_lex_state = 6}, - [2553] = {.lex_state = 9, .external_lex_state = 6}, - [2554] = {.lex_state = 9, .external_lex_state = 6}, - [2555] = {.lex_state = 9, .external_lex_state = 7}, - [2556] = {.lex_state = 9, .external_lex_state = 6}, - [2557] = {.lex_state = 9, .external_lex_state = 6}, - [2558] = {.lex_state = 9, .external_lex_state = 7}, - [2559] = {.lex_state = 9, .external_lex_state = 6}, - [2560] = {.lex_state = 9, .external_lex_state = 7}, - [2561] = {.lex_state = 9, .external_lex_state = 6}, - [2562] = {.lex_state = 9, .external_lex_state = 7}, - [2563] = {.lex_state = 9, .external_lex_state = 6}, - [2564] = {.lex_state = 9, .external_lex_state = 6}, - [2565] = {.lex_state = 9, .external_lex_state = 6}, - [2566] = {.lex_state = 9, .external_lex_state = 6}, - [2567] = {.lex_state = 9, .external_lex_state = 6}, - [2568] = {.lex_state = 9, .external_lex_state = 7}, - [2569] = {.lex_state = 9, .external_lex_state = 6}, - [2570] = {.lex_state = 9, .external_lex_state = 6}, - [2571] = {.lex_state = 9, .external_lex_state = 7}, - [2572] = {.lex_state = 9, .external_lex_state = 7}, - [2573] = {.lex_state = 9, .external_lex_state = 7}, - [2574] = {.lex_state = 9, .external_lex_state = 7}, - [2575] = {.lex_state = 9, .external_lex_state = 7}, - [2576] = {.lex_state = 9, .external_lex_state = 7}, - [2577] = {.lex_state = 9, .external_lex_state = 6}, - [2578] = {.lex_state = 9, .external_lex_state = 7}, - [2579] = {.lex_state = 9, .external_lex_state = 7}, - [2580] = {.lex_state = 9, .external_lex_state = 7}, - [2581] = {.lex_state = 9, .external_lex_state = 6}, - [2582] = {.lex_state = 9, .external_lex_state = 7}, - [2583] = {.lex_state = 9, .external_lex_state = 6}, - [2584] = {.lex_state = 9, .external_lex_state = 6}, - [2585] = {.lex_state = 9, .external_lex_state = 6}, - [2586] = {.lex_state = 9, .external_lex_state = 7}, - [2587] = {.lex_state = 9, .external_lex_state = 7}, - [2588] = {.lex_state = 9, .external_lex_state = 6}, - [2589] = {.lex_state = 9, .external_lex_state = 7}, - [2590] = {.lex_state = 9, .external_lex_state = 7}, - [2591] = {.lex_state = 9, .external_lex_state = 6}, - [2592] = {.lex_state = 9, .external_lex_state = 7}, - [2593] = {.lex_state = 9, .external_lex_state = 6}, - [2594] = {.lex_state = 9, .external_lex_state = 7}, - [2595] = {.lex_state = 9, .external_lex_state = 6}, - [2596] = {.lex_state = 9, .external_lex_state = 6}, - [2597] = {.lex_state = 9, .external_lex_state = 6}, - [2598] = {.lex_state = 9, .external_lex_state = 6}, - [2599] = {.lex_state = 9, .external_lex_state = 7}, - [2600] = {.lex_state = 9, .external_lex_state = 6}, - [2601] = {.lex_state = 9, .external_lex_state = 6}, - [2602] = {.lex_state = 9, .external_lex_state = 7}, - [2603] = {.lex_state = 9, .external_lex_state = 6}, - [2604] = {.lex_state = 9, .external_lex_state = 7}, - [2605] = {.lex_state = 9, .external_lex_state = 7}, - [2606] = {.lex_state = 9, .external_lex_state = 7}, - [2607] = {.lex_state = 9, .external_lex_state = 7}, - [2608] = {.lex_state = 9, .external_lex_state = 7}, - [2609] = {.lex_state = 9, .external_lex_state = 7}, - [2610] = {.lex_state = 9, .external_lex_state = 7}, - [2611] = {.lex_state = 9, .external_lex_state = 6}, - [2612] = {.lex_state = 9, .external_lex_state = 7}, - [2613] = {.lex_state = 9, .external_lex_state = 7}, - [2614] = {.lex_state = 9, .external_lex_state = 7}, - [2615] = {.lex_state = 9, .external_lex_state = 7}, - [2616] = {.lex_state = 9, .external_lex_state = 7}, - [2617] = {.lex_state = 9, .external_lex_state = 6}, - [2618] = {.lex_state = 9, .external_lex_state = 7}, - [2619] = {.lex_state = 9, .external_lex_state = 7}, - [2620] = {.lex_state = 9, .external_lex_state = 7}, - [2621] = {.lex_state = 9, .external_lex_state = 7}, - [2622] = {.lex_state = 9, .external_lex_state = 6}, - [2623] = {.lex_state = 9, .external_lex_state = 7}, - [2624] = {.lex_state = 9, .external_lex_state = 7}, - [2625] = {.lex_state = 9, .external_lex_state = 6}, - [2626] = {.lex_state = 9, .external_lex_state = 7}, - [2627] = {.lex_state = 9, .external_lex_state = 7}, - [2628] = {.lex_state = 9, .external_lex_state = 7}, - [2629] = {.lex_state = 9, .external_lex_state = 7}, - [2630] = {.lex_state = 9, .external_lex_state = 7}, - [2631] = {.lex_state = 9, .external_lex_state = 7}, - [2632] = {.lex_state = 9, .external_lex_state = 7}, - [2633] = {.lex_state = 9, .external_lex_state = 7}, - [2634] = {.lex_state = 9, .external_lex_state = 6}, - [2635] = {.lex_state = 9, .external_lex_state = 7}, - [2636] = {.lex_state = 9, .external_lex_state = 6}, - [2637] = {.lex_state = 9, .external_lex_state = 7}, - [2638] = {.lex_state = 9, .external_lex_state = 7}, - [2639] = {.lex_state = 9, .external_lex_state = 7}, - [2640] = {.lex_state = 9, .external_lex_state = 6}, - [2641] = {.lex_state = 9, .external_lex_state = 6}, - [2642] = {.lex_state = 9, .external_lex_state = 7}, - [2643] = {.lex_state = 9, .external_lex_state = 7}, - [2644] = {.lex_state = 9, .external_lex_state = 7}, - [2645] = {.lex_state = 9, .external_lex_state = 7}, - [2646] = {.lex_state = 9, .external_lex_state = 7}, - [2647] = {.lex_state = 9, .external_lex_state = 7}, - [2648] = {.lex_state = 9, .external_lex_state = 7}, - [2649] = {.lex_state = 9, .external_lex_state = 7}, - [2650] = {.lex_state = 9, .external_lex_state = 7}, - [2651] = {.lex_state = 9, .external_lex_state = 7}, - [2652] = {.lex_state = 9, .external_lex_state = 7}, - [2653] = {.lex_state = 9, .external_lex_state = 7}, - [2654] = {.lex_state = 9, .external_lex_state = 7}, - [2655] = {.lex_state = 9, .external_lex_state = 7}, - [2656] = {.lex_state = 9, .external_lex_state = 7}, - [2657] = {.lex_state = 9, .external_lex_state = 7}, - [2658] = {.lex_state = 9, .external_lex_state = 6}, - [2659] = {.lex_state = 9, .external_lex_state = 6}, - [2660] = {.lex_state = 9, .external_lex_state = 7}, - [2661] = {.lex_state = 9, .external_lex_state = 6}, - [2662] = {.lex_state = 9, .external_lex_state = 7}, - [2663] = {.lex_state = 9, .external_lex_state = 7}, - [2664] = {.lex_state = 7, .external_lex_state = 5}, - [2665] = {.lex_state = 9, .external_lex_state = 7}, - [2666] = {.lex_state = 9, .external_lex_state = 7}, - [2667] = {.lex_state = 9, .external_lex_state = 6}, - [2668] = {.lex_state = 9, .external_lex_state = 6}, - [2669] = {.lex_state = 7, .external_lex_state = 5}, - [2670] = {.lex_state = 9, .external_lex_state = 6}, - [2671] = {.lex_state = 9, .external_lex_state = 7}, - [2672] = {.lex_state = 7, .external_lex_state = 5}, - [2673] = {.lex_state = 7, .external_lex_state = 5}, - [2674] = {.lex_state = 9, .external_lex_state = 7}, - [2675] = {.lex_state = 9, .external_lex_state = 6}, - [2676] = {.lex_state = 9, .external_lex_state = 7}, - [2677] = {.lex_state = 9, .external_lex_state = 6}, - [2678] = {.lex_state = 9, .external_lex_state = 7}, - [2679] = {.lex_state = 9, .external_lex_state = 6}, - [2680] = {.lex_state = 9, .external_lex_state = 7}, - [2681] = {.lex_state = 9, .external_lex_state = 6}, - [2682] = {.lex_state = 9, .external_lex_state = 7}, - [2683] = {.lex_state = 9, .external_lex_state = 6}, - [2684] = {.lex_state = 9, .external_lex_state = 7}, - [2685] = {.lex_state = 9, .external_lex_state = 6}, - [2686] = {.lex_state = 9, .external_lex_state = 7}, - [2687] = {.lex_state = 9, .external_lex_state = 6}, - [2688] = {.lex_state = 9, .external_lex_state = 7}, - [2689] = {.lex_state = 9, .external_lex_state = 7}, - [2690] = {.lex_state = 9, .external_lex_state = 6}, - [2691] = {.lex_state = 9, .external_lex_state = 7}, - [2692] = {.lex_state = 7, .external_lex_state = 5}, - [2693] = {.lex_state = 9, .external_lex_state = 7}, - [2694] = {.lex_state = 9, .external_lex_state = 7}, - [2695] = {.lex_state = 7, .external_lex_state = 5}, - [2696] = {.lex_state = 9, .external_lex_state = 7}, - [2697] = {.lex_state = 9, .external_lex_state = 6}, - [2698] = {.lex_state = 9, .external_lex_state = 6}, - [2699] = {.lex_state = 9, .external_lex_state = 6}, - [2700] = {.lex_state = 9, .external_lex_state = 7}, - [2701] = {.lex_state = 9, .external_lex_state = 6}, - [2702] = {.lex_state = 9, .external_lex_state = 6}, - [2703] = {.lex_state = 9, .external_lex_state = 6}, - [2704] = {.lex_state = 9, .external_lex_state = 7}, - [2705] = {.lex_state = 9, .external_lex_state = 6}, - [2706] = {.lex_state = 9, .external_lex_state = 7}, - [2707] = {.lex_state = 9, .external_lex_state = 6}, - [2708] = {.lex_state = 9, .external_lex_state = 6}, - [2709] = {.lex_state = 9, .external_lex_state = 6}, - [2710] = {.lex_state = 9, .external_lex_state = 6}, - [2711] = {.lex_state = 9, .external_lex_state = 7}, - [2712] = {.lex_state = 9, .external_lex_state = 6}, - [2713] = {.lex_state = 9, .external_lex_state = 7}, - [2714] = {.lex_state = 9, .external_lex_state = 7}, - [2715] = {.lex_state = 9, .external_lex_state = 7}, - [2716] = {.lex_state = 9, .external_lex_state = 6}, - [2717] = {.lex_state = 9, .external_lex_state = 7}, - [2718] = {.lex_state = 9, .external_lex_state = 7}, - [2719] = {.lex_state = 9, .external_lex_state = 6}, - [2720] = {.lex_state = 7, .external_lex_state = 5}, - [2721] = {.lex_state = 7, .external_lex_state = 5}, - [2722] = {.lex_state = 9, .external_lex_state = 6}, - [2723] = {.lex_state = 9, .external_lex_state = 6}, - [2724] = {.lex_state = 7, .external_lex_state = 5}, - [2725] = {.lex_state = 9, .external_lex_state = 6}, - [2726] = {.lex_state = 7, .external_lex_state = 5}, - [2727] = {.lex_state = 9, .external_lex_state = 6}, - [2728] = {.lex_state = 9, .external_lex_state = 6}, - [2729] = {.lex_state = 9, .external_lex_state = 6}, - [2730] = {.lex_state = 7, .external_lex_state = 5}, - [2731] = {.lex_state = 7, .external_lex_state = 5}, - [2732] = {.lex_state = 9, .external_lex_state = 6}, - [2733] = {.lex_state = 9, .external_lex_state = 6}, - [2734] = {.lex_state = 9, .external_lex_state = 6}, - [2735] = {.lex_state = 9, .external_lex_state = 6}, - [2736] = {.lex_state = 9, .external_lex_state = 6}, - [2737] = {.lex_state = 9, .external_lex_state = 6}, - [2738] = {.lex_state = 9, .external_lex_state = 6}, - [2739] = {.lex_state = 7, .external_lex_state = 5}, - [2740] = {.lex_state = 7, .external_lex_state = 5}, - [2741] = {.lex_state = 9, .external_lex_state = 6}, - [2742] = {.lex_state = 9, .external_lex_state = 7}, - [2743] = {.lex_state = 9, .external_lex_state = 7}, - [2744] = {.lex_state = 9, .external_lex_state = 7}, - [2745] = {.lex_state = 9, .external_lex_state = 7}, - [2746] = {.lex_state = 9, .external_lex_state = 7}, - [2747] = {.lex_state = 9, .external_lex_state = 7}, - [2748] = {.lex_state = 9, .external_lex_state = 7}, - [2749] = {.lex_state = 9, .external_lex_state = 7}, - [2750] = {.lex_state = 9, .external_lex_state = 7}, - [2751] = {.lex_state = 9, .external_lex_state = 7}, - [2752] = {.lex_state = 9, .external_lex_state = 7}, - [2753] = {.lex_state = 9, .external_lex_state = 7}, - [2754] = {.lex_state = 9, .external_lex_state = 7}, - [2755] = {.lex_state = 9, .external_lex_state = 7}, - [2756] = {.lex_state = 9, .external_lex_state = 7}, - [2757] = {.lex_state = 9, .external_lex_state = 7}, - [2758] = {.lex_state = 9, .external_lex_state = 7}, - [2759] = {.lex_state = 9, .external_lex_state = 7}, - [2760] = {.lex_state = 9, .external_lex_state = 7}, - [2761] = {.lex_state = 9, .external_lex_state = 6}, - [2762] = {.lex_state = 9, .external_lex_state = 7}, - [2763] = {.lex_state = 9, .external_lex_state = 7}, - [2764] = {.lex_state = 9, .external_lex_state = 7}, - [2765] = {.lex_state = 9, .external_lex_state = 7}, - [2766] = {.lex_state = 2, .external_lex_state = 4}, - [2767] = {.lex_state = 9, .external_lex_state = 7}, - [2768] = {.lex_state = 9, .external_lex_state = 7}, - [2769] = {.lex_state = 2, .external_lex_state = 4}, - [2770] = {.lex_state = 9, .external_lex_state = 7}, - [2771] = {.lex_state = 9, .external_lex_state = 6}, - [2772] = {.lex_state = 9, .external_lex_state = 7}, - [2773] = {.lex_state = 9, .external_lex_state = 7}, - [2774] = {.lex_state = 9, .external_lex_state = 7}, - [2775] = {.lex_state = 9, .external_lex_state = 7}, - [2776] = {.lex_state = 9, .external_lex_state = 7}, - [2777] = {.lex_state = 9, .external_lex_state = 6}, - [2778] = {.lex_state = 2, .external_lex_state = 4}, - [2779] = {.lex_state = 9, .external_lex_state = 7}, - [2780] = {.lex_state = 9, .external_lex_state = 7}, - [2781] = {.lex_state = 2, .external_lex_state = 4}, - [2782] = {.lex_state = 9, .external_lex_state = 7}, - [2783] = {.lex_state = 9, .external_lex_state = 7}, - [2784] = {.lex_state = 9, .external_lex_state = 7}, - [2785] = {.lex_state = 9, .external_lex_state = 7}, - [2786] = {.lex_state = 9, .external_lex_state = 7}, - [2787] = {.lex_state = 9, .external_lex_state = 7}, - [2788] = {.lex_state = 9, .external_lex_state = 6}, - [2789] = {.lex_state = 9, .external_lex_state = 7}, - [2790] = {.lex_state = 9, .external_lex_state = 6}, - [2791] = {.lex_state = 9, .external_lex_state = 6}, - [2792] = {.lex_state = 9, .external_lex_state = 6}, - [2793] = {.lex_state = 9, .external_lex_state = 6}, - [2794] = {.lex_state = 9, .external_lex_state = 6}, - [2795] = {.lex_state = 9, .external_lex_state = 6}, - [2796] = {.lex_state = 9, .external_lex_state = 6}, - [2797] = {.lex_state = 9, .external_lex_state = 6}, - [2798] = {.lex_state = 9, .external_lex_state = 6}, - [2799] = {.lex_state = 9, .external_lex_state = 6}, - [2800] = {.lex_state = 9, .external_lex_state = 6}, - [2801] = {.lex_state = 9, .external_lex_state = 6}, - [2802] = {.lex_state = 9, .external_lex_state = 6}, - [2803] = {.lex_state = 9, .external_lex_state = 6}, - [2804] = {.lex_state = 9, .external_lex_state = 6}, - [2805] = {.lex_state = 9, .external_lex_state = 6}, - [2806] = {.lex_state = 9, .external_lex_state = 6}, - [2807] = {.lex_state = 9, .external_lex_state = 6}, - [2808] = {.lex_state = 9, .external_lex_state = 7}, - [2809] = {.lex_state = 9, .external_lex_state = 6}, - [2810] = {.lex_state = 9, .external_lex_state = 7}, - [2811] = {.lex_state = 9, .external_lex_state = 6}, - [2812] = {.lex_state = 9, .external_lex_state = 6}, - [2813] = {.lex_state = 9, .external_lex_state = 6}, - [2814] = {.lex_state = 9, .external_lex_state = 6}, - [2815] = {.lex_state = 9, .external_lex_state = 6}, - [2816] = {.lex_state = 9, .external_lex_state = 6}, - [2817] = {.lex_state = 9, .external_lex_state = 6}, - [2818] = {.lex_state = 9, .external_lex_state = 6}, + [1398] = {.lex_state = 13, .external_lex_state = 7}, + [1399] = {.lex_state = 13, .external_lex_state = 7}, + [1400] = {.lex_state = 9, .external_lex_state = 2}, + [1401] = {.lex_state = 13, .external_lex_state = 7}, + [1402] = {.lex_state = 13, .external_lex_state = 6}, + [1403] = {.lex_state = 13, .external_lex_state = 7}, + [1404] = {.lex_state = 13, .external_lex_state = 7}, + [1405] = {.lex_state = 13, .external_lex_state = 6}, + [1406] = {.lex_state = 13, .external_lex_state = 7}, + [1407] = {.lex_state = 13, .external_lex_state = 7}, + [1408] = {.lex_state = 13, .external_lex_state = 6}, + [1409] = {.lex_state = 13, .external_lex_state = 7}, + [1410] = {.lex_state = 13, .external_lex_state = 7}, + [1411] = {.lex_state = 1, .external_lex_state = 4}, + [1412] = {.lex_state = 9, .external_lex_state = 2}, + [1413] = {.lex_state = 13, .external_lex_state = 7}, + [1414] = {.lex_state = 1, .external_lex_state = 4}, + [1415] = {.lex_state = 13, .external_lex_state = 7}, + [1416] = {.lex_state = 13, .external_lex_state = 7}, + [1417] = {.lex_state = 9, .external_lex_state = 2}, + [1418] = {.lex_state = 13, .external_lex_state = 6}, + [1419] = {.lex_state = 1, .external_lex_state = 4}, + [1420] = {.lex_state = 1, .external_lex_state = 4}, + [1421] = {.lex_state = 13, .external_lex_state = 6}, + [1422] = {.lex_state = 13, .external_lex_state = 6}, + [1423] = {.lex_state = 1, .external_lex_state = 4}, + [1424] = {.lex_state = 1, .external_lex_state = 4}, + [1425] = {.lex_state = 13, .external_lex_state = 6}, + [1426] = {.lex_state = 1, .external_lex_state = 4}, + [1427] = {.lex_state = 1, .external_lex_state = 4}, + [1428] = {.lex_state = 9, .external_lex_state = 2}, + [1429] = {.lex_state = 9, .external_lex_state = 2}, + [1430] = {.lex_state = 9, .external_lex_state = 2}, + [1431] = {.lex_state = 9, .external_lex_state = 2}, + [1432] = {.lex_state = 9, .external_lex_state = 2}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 9, .external_lex_state = 2}, + [1435] = {.lex_state = 9, .external_lex_state = 2}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 2, .external_lex_state = 4}, + [1438] = {.lex_state = 9, .external_lex_state = 2}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 9, .external_lex_state = 2}, + [1441] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 9, .external_lex_state = 2}, + [1444] = {.lex_state = 9, .external_lex_state = 2}, + [1445] = {.lex_state = 9, .external_lex_state = 2}, + [1446] = {.lex_state = 9, .external_lex_state = 2}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, + [1448] = {.lex_state = 9, .external_lex_state = 2}, + [1449] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1451] = {.lex_state = 1, .external_lex_state = 4}, + [1452] = {.lex_state = 9, .external_lex_state = 2}, + [1453] = {.lex_state = 9, .external_lex_state = 2}, + [1454] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 9, .external_lex_state = 2}, + [1457] = {.lex_state = 9, .external_lex_state = 2}, + [1458] = {.lex_state = 9, .external_lex_state = 2}, + [1459] = {.lex_state = 9, .external_lex_state = 2}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 9, .external_lex_state = 2}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 9, .external_lex_state = 2}, + [1464] = {.lex_state = 9, .external_lex_state = 2}, + [1465] = {.lex_state = 9, .external_lex_state = 2}, + [1466] = {.lex_state = 9, .external_lex_state = 2}, + [1467] = {.lex_state = 9, .external_lex_state = 2}, + [1468] = {.lex_state = 9, .external_lex_state = 2}, + [1469] = {.lex_state = 9, .external_lex_state = 2}, + [1470] = {.lex_state = 9, .external_lex_state = 2}, + [1471] = {.lex_state = 9, .external_lex_state = 2}, + [1472] = {.lex_state = 9, .external_lex_state = 2}, + [1473] = {.lex_state = 9, .external_lex_state = 2}, + [1474] = {.lex_state = 9, .external_lex_state = 2}, + [1475] = {.lex_state = 9, .external_lex_state = 2}, + [1476] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1481] = {.lex_state = 9, .external_lex_state = 2}, + [1482] = {.lex_state = 9, .external_lex_state = 2}, + [1483] = {.lex_state = 9, .external_lex_state = 2}, + [1484] = {.lex_state = 9, .external_lex_state = 2}, + [1485] = {.lex_state = 9, .external_lex_state = 2}, + [1486] = {.lex_state = 9, .external_lex_state = 2}, + [1487] = {.lex_state = 9, .external_lex_state = 2}, + [1488] = {.lex_state = 9, .external_lex_state = 2}, + [1489] = {.lex_state = 9, .external_lex_state = 2}, + [1490] = {.lex_state = 9, .external_lex_state = 2}, + [1491] = {.lex_state = 9, .external_lex_state = 2}, + [1492] = {.lex_state = 9, .external_lex_state = 2}, + [1493] = {.lex_state = 9, .external_lex_state = 2}, + [1494] = {.lex_state = 9, .external_lex_state = 2}, + [1495] = {.lex_state = 9, .external_lex_state = 2}, + [1496] = {.lex_state = 9, .external_lex_state = 2}, + [1497] = {.lex_state = 9, .external_lex_state = 2}, + [1498] = {.lex_state = 9, .external_lex_state = 2}, + [1499] = {.lex_state = 9, .external_lex_state = 2}, + [1500] = {.lex_state = 9, .external_lex_state = 2}, + [1501] = {.lex_state = 9, .external_lex_state = 2}, + [1502] = {.lex_state = 9, .external_lex_state = 2}, + [1503] = {.lex_state = 9, .external_lex_state = 2}, + [1504] = {.lex_state = 9, .external_lex_state = 2}, + [1505] = {.lex_state = 9, .external_lex_state = 2}, + [1506] = {.lex_state = 9, .external_lex_state = 2}, + [1507] = {.lex_state = 9, .external_lex_state = 2}, + [1508] = {.lex_state = 9, .external_lex_state = 2}, + [1509] = {.lex_state = 9, .external_lex_state = 2}, + [1510] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 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}, + [1522] = {.lex_state = 9, .external_lex_state = 2}, + [1523] = {.lex_state = 9, .external_lex_state = 2}, + [1524] = {.lex_state = 9, .external_lex_state = 2}, + [1525] = {.lex_state = 9, .external_lex_state = 2}, + [1526] = {.lex_state = 9, .external_lex_state = 2}, + [1527] = {.lex_state = 9, .external_lex_state = 2}, + [1528] = {.lex_state = 9, .external_lex_state = 2}, + [1529] = {.lex_state = 9, .external_lex_state = 2}, + [1530] = {.lex_state = 9, .external_lex_state = 2}, + [1531] = {.lex_state = 9, .external_lex_state = 2}, + [1532] = {.lex_state = 9, .external_lex_state = 2}, + [1533] = {.lex_state = 9, .external_lex_state = 2}, + [1534] = {.lex_state = 9, .external_lex_state = 2}, + [1535] = {.lex_state = 9, .external_lex_state = 2}, + [1536] = {.lex_state = 9, .external_lex_state = 2}, + [1537] = {.lex_state = 9, .external_lex_state = 2}, + [1538] = {.lex_state = 9, .external_lex_state = 2}, + [1539] = {.lex_state = 9, .external_lex_state = 2}, + [1540] = {.lex_state = 9, .external_lex_state = 2}, + [1541] = {.lex_state = 9, .external_lex_state = 2}, + [1542] = {.lex_state = 9, .external_lex_state = 2}, + [1543] = {.lex_state = 9, .external_lex_state = 2}, + [1544] = {.lex_state = 9, .external_lex_state = 2}, + [1545] = {.lex_state = 9, .external_lex_state = 2}, + [1546] = {.lex_state = 9, .external_lex_state = 2}, + [1547] = {.lex_state = 9, .external_lex_state = 2}, + [1548] = {.lex_state = 9, .external_lex_state = 2}, + [1549] = {.lex_state = 9, .external_lex_state = 2}, + [1550] = {.lex_state = 9, .external_lex_state = 2}, + [1551] = {.lex_state = 9, .external_lex_state = 2}, + [1552] = {.lex_state = 9, .external_lex_state = 2}, + [1553] = {.lex_state = 9, .external_lex_state = 2}, + [1554] = {.lex_state = 9, .external_lex_state = 2}, + [1555] = {.lex_state = 9, .external_lex_state = 2}, + [1556] = {.lex_state = 9, .external_lex_state = 2}, + [1557] = {.lex_state = 9, .external_lex_state = 2}, + [1558] = {.lex_state = 9, .external_lex_state = 2}, + [1559] = {.lex_state = 9, .external_lex_state = 2}, + [1560] = {.lex_state = 9, .external_lex_state = 2}, + [1561] = {.lex_state = 9, .external_lex_state = 2}, + [1562] = {.lex_state = 9, .external_lex_state = 2}, + [1563] = {.lex_state = 9, .external_lex_state = 2}, + [1564] = {.lex_state = 9, .external_lex_state = 2}, + [1565] = {.lex_state = 9, .external_lex_state = 2}, + [1566] = {.lex_state = 9, .external_lex_state = 2}, + [1567] = {.lex_state = 9, .external_lex_state = 2}, + [1568] = {.lex_state = 9, .external_lex_state = 2}, + [1569] = {.lex_state = 9, .external_lex_state = 2}, + [1570] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [1575] = {.lex_state = 2, .external_lex_state = 4}, + [1576] = {.lex_state = 9, .external_lex_state = 2}, + [1577] = {.lex_state = 9, .external_lex_state = 2}, + [1578] = {.lex_state = 9, .external_lex_state = 2}, + [1579] = {.lex_state = 9, .external_lex_state = 2}, + [1580] = {.lex_state = 9, .external_lex_state = 2}, + [1581] = {.lex_state = 9, .external_lex_state = 2}, + [1582] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 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}, + [1594] = {.lex_state = 9, .external_lex_state = 2}, + [1595] = {.lex_state = 9, .external_lex_state = 2}, + [1596] = {.lex_state = 9, .external_lex_state = 2}, + [1597] = {.lex_state = 9, .external_lex_state = 2}, + [1598] = {.lex_state = 9, .external_lex_state = 2}, + [1599] = {.lex_state = 9, .external_lex_state = 2}, + [1600] = {.lex_state = 9, .external_lex_state = 2}, + [1601] = {.lex_state = 9, .external_lex_state = 2}, + [1602] = {.lex_state = 9, .external_lex_state = 2}, + [1603] = {.lex_state = 9, .external_lex_state = 2}, + [1604] = {.lex_state = 9, .external_lex_state = 2}, + [1605] = {.lex_state = 9, .external_lex_state = 2}, + [1606] = {.lex_state = 9, .external_lex_state = 2}, + [1607] = {.lex_state = 9, .external_lex_state = 2}, + [1608] = {.lex_state = 9, .external_lex_state = 2}, + [1609] = {.lex_state = 9, .external_lex_state = 2}, + [1610] = {.lex_state = 9, .external_lex_state = 2}, + [1611] = {.lex_state = 9, .external_lex_state = 2}, + [1612] = {.lex_state = 9, .external_lex_state = 2}, + [1613] = {.lex_state = 9, .external_lex_state = 2}, + [1614] = {.lex_state = 9, .external_lex_state = 2}, + [1615] = {.lex_state = 9, .external_lex_state = 2}, + [1616] = {.lex_state = 9, .external_lex_state = 2}, + [1617] = {.lex_state = 9, .external_lex_state = 2}, + [1618] = {.lex_state = 13, .external_lex_state = 6}, + [1619] = {.lex_state = 9, .external_lex_state = 2}, + [1620] = {.lex_state = 13, .external_lex_state = 6}, + [1621] = {.lex_state = 2, .external_lex_state = 4}, + [1622] = {.lex_state = 13, .external_lex_state = 6}, + [1623] = {.lex_state = 13, .external_lex_state = 6}, + [1624] = {.lex_state = 9, .external_lex_state = 2}, + [1625] = {.lex_state = 9, .external_lex_state = 2}, + [1626] = {.lex_state = 13, .external_lex_state = 6}, + [1627] = {.lex_state = 13, .external_lex_state = 6}, + [1628] = {.lex_state = 13, .external_lex_state = 6}, + [1629] = {.lex_state = 13, .external_lex_state = 6}, + [1630] = {.lex_state = 13, .external_lex_state = 6}, + [1631] = {.lex_state = 13, .external_lex_state = 6}, + [1632] = {.lex_state = 9, .external_lex_state = 2}, + [1633] = {.lex_state = 13, .external_lex_state = 6}, + [1634] = {.lex_state = 9, .external_lex_state = 2}, + [1635] = {.lex_state = 9, .external_lex_state = 2}, + [1636] = {.lex_state = 13, .external_lex_state = 6}, + [1637] = {.lex_state = 9, .external_lex_state = 2}, + [1638] = {.lex_state = 9, .external_lex_state = 2}, + [1639] = {.lex_state = 9, .external_lex_state = 2}, + [1640] = {.lex_state = 9, .external_lex_state = 2}, + [1641] = {.lex_state = 9, .external_lex_state = 2}, + [1642] = {.lex_state = 9, .external_lex_state = 2}, + [1643] = {.lex_state = 9, .external_lex_state = 2}, + [1644] = {.lex_state = 9, .external_lex_state = 2}, + [1645] = {.lex_state = 9, .external_lex_state = 2}, + [1646] = {.lex_state = 9, .external_lex_state = 2}, + [1647] = {.lex_state = 9, .external_lex_state = 2}, + [1648] = {.lex_state = 9, .external_lex_state = 2}, + [1649] = {.lex_state = 9, .external_lex_state = 2}, + [1650] = {.lex_state = 9, .external_lex_state = 2}, + [1651] = {.lex_state = 9, .external_lex_state = 2}, + [1652] = {.lex_state = 9, .external_lex_state = 2}, + [1653] = {.lex_state = 9, .external_lex_state = 2}, + [1654] = {.lex_state = 9, .external_lex_state = 2}, + [1655] = {.lex_state = 9, .external_lex_state = 2}, + [1656] = {.lex_state = 9, .external_lex_state = 2}, + [1657] = {.lex_state = 9, .external_lex_state = 2}, + [1658] = {.lex_state = 9, .external_lex_state = 2}, + [1659] = {.lex_state = 9, .external_lex_state = 2}, + [1660] = {.lex_state = 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 = 9, .external_lex_state = 2}, + [1668] = {.lex_state = 13, .external_lex_state = 6}, + [1669] = {.lex_state = 9, .external_lex_state = 2}, + [1670] = {.lex_state = 9, .external_lex_state = 2}, + [1671] = {.lex_state = 9, .external_lex_state = 2}, + [1672] = {.lex_state = 9, .external_lex_state = 2}, + [1673] = {.lex_state = 2, .external_lex_state = 4}, + [1674] = {.lex_state = 2, .external_lex_state = 4}, + [1675] = {.lex_state = 9, .external_lex_state = 2}, + [1676] = {.lex_state = 9, .external_lex_state = 2}, + [1677] = {.lex_state = 9, .external_lex_state = 2}, + [1678] = {.lex_state = 9, .external_lex_state = 2}, + [1679] = {.lex_state = 9, .external_lex_state = 2}, + [1680] = {.lex_state = 9, .external_lex_state = 2}, + [1681] = {.lex_state = 9, .external_lex_state = 2}, + [1682] = {.lex_state = 9, .external_lex_state = 2}, + [1683] = {.lex_state = 9, .external_lex_state = 2}, + [1684] = {.lex_state = 1, .external_lex_state = 4}, + [1685] = {.lex_state = 9, .external_lex_state = 2}, + [1686] = {.lex_state = 2, .external_lex_state = 4}, + [1687] = {.lex_state = 9, .external_lex_state = 2}, + [1688] = {.lex_state = 2, .external_lex_state = 4}, + [1689] = {.lex_state = 9, .external_lex_state = 2}, + [1690] = {.lex_state = 9, .external_lex_state = 2}, + [1691] = {.lex_state = 2, .external_lex_state = 4}, + [1692] = {.lex_state = 9, .external_lex_state = 2}, + [1693] = {.lex_state = 9, .external_lex_state = 2}, + [1694] = {.lex_state = 9, .external_lex_state = 2}, + [1695] = {.lex_state = 9, .external_lex_state = 2}, + [1696] = {.lex_state = 9, .external_lex_state = 2}, + [1697] = {.lex_state = 9, .external_lex_state = 2}, + [1698] = {.lex_state = 9, .external_lex_state = 2}, + [1699] = {.lex_state = 9, .external_lex_state = 2}, + [1700] = {.lex_state = 9, .external_lex_state = 2}, + [1701] = {.lex_state = 9, .external_lex_state = 2}, + [1702] = {.lex_state = 9, .external_lex_state = 2}, + [1703] = {.lex_state = 9, .external_lex_state = 2}, + [1704] = {.lex_state = 9, .external_lex_state = 2}, + [1705] = {.lex_state = 9, .external_lex_state = 2}, + [1706] = {.lex_state = 9, .external_lex_state = 2}, + [1707] = {.lex_state = 9, .external_lex_state = 2}, + [1708] = {.lex_state = 1, .external_lex_state = 4}, + [1709] = {.lex_state = 9, .external_lex_state = 2}, + [1710] = {.lex_state = 9, .external_lex_state = 2}, + [1711] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1717] = {.lex_state = 9, .external_lex_state = 2}, + [1718] = {.lex_state = 9, .external_lex_state = 2}, + [1719] = {.lex_state = 9, .external_lex_state = 2}, + [1720] = {.lex_state = 9, .external_lex_state = 2}, + [1721] = {.lex_state = 9, .external_lex_state = 2}, + [1722] = {.lex_state = 9, .external_lex_state = 2}, + [1723] = {.lex_state = 2, .external_lex_state = 4}, + [1724] = {.lex_state = 2, .external_lex_state = 4}, + [1725] = {.lex_state = 2, .external_lex_state = 4}, + [1726] = {.lex_state = 2, .external_lex_state = 4}, + [1727] = {.lex_state = 9, .external_lex_state = 2}, + [1728] = {.lex_state = 9, .external_lex_state = 2}, + [1729] = {.lex_state = 13, .external_lex_state = 6}, + [1730] = {.lex_state = 9, .external_lex_state = 2}, + [1731] = {.lex_state = 9, .external_lex_state = 2}, + [1732] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1737] = {.lex_state = 9, .external_lex_state = 2}, + [1738] = {.lex_state = 9, .external_lex_state = 2}, + [1739] = {.lex_state = 9, .external_lex_state = 2}, + [1740] = {.lex_state = 9, .external_lex_state = 2}, + [1741] = {.lex_state = 9, .external_lex_state = 2}, + [1742] = {.lex_state = 9, .external_lex_state = 2}, + [1743] = {.lex_state = 9, .external_lex_state = 2}, + [1744] = {.lex_state = 9, .external_lex_state = 2}, + [1745] = {.lex_state = 9, .external_lex_state = 2}, + [1746] = {.lex_state = 13, .external_lex_state = 6}, + [1747] = {.lex_state = 13, .external_lex_state = 6}, + [1748] = {.lex_state = 9, .external_lex_state = 2}, + [1749] = {.lex_state = 9, .external_lex_state = 2}, + [1750] = {.lex_state = 9, .external_lex_state = 2}, + [1751] = {.lex_state = 9, .external_lex_state = 2}, + [1752] = {.lex_state = 9, .external_lex_state = 2}, + [1753] = {.lex_state = 13, .external_lex_state = 6}, + [1754] = {.lex_state = 9, .external_lex_state = 2}, + [1755] = {.lex_state = 9, .external_lex_state = 2}, + [1756] = {.lex_state = 9, .external_lex_state = 2}, + [1757] = {.lex_state = 2, .external_lex_state = 4}, + [1758] = {.lex_state = 9, .external_lex_state = 2}, + [1759] = {.lex_state = 9, .external_lex_state = 2}, + [1760] = {.lex_state = 9, .external_lex_state = 2}, + [1761] = {.lex_state = 9, .external_lex_state = 2}, + [1762] = {.lex_state = 9, .external_lex_state = 2}, + [1763] = {.lex_state = 9, .external_lex_state = 2}, + [1764] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1770] = {.lex_state = 9, .external_lex_state = 2}, + [1771] = {.lex_state = 9, .external_lex_state = 2}, + [1772] = {.lex_state = 9, .external_lex_state = 2}, + [1773] = {.lex_state = 9, .external_lex_state = 2}, + [1774] = {.lex_state = 9, .external_lex_state = 2}, + [1775] = {.lex_state = 9, .external_lex_state = 2}, + [1776] = {.lex_state = 9, .external_lex_state = 2}, + [1777] = {.lex_state = 9, .external_lex_state = 2}, + [1778] = {.lex_state = 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}, + [1782] = {.lex_state = 9, .external_lex_state = 2}, + [1783] = {.lex_state = 9, .external_lex_state = 2}, + [1784] = {.lex_state = 9, .external_lex_state = 2}, + [1785] = {.lex_state = 9, .external_lex_state = 2}, + [1786] = {.lex_state = 9, .external_lex_state = 2}, + [1787] = {.lex_state = 9, .external_lex_state = 2}, + [1788] = {.lex_state = 9, .external_lex_state = 2}, + [1789] = {.lex_state = 9, .external_lex_state = 2}, + [1790] = {.lex_state = 2, .external_lex_state = 4}, + [1791] = {.lex_state = 9, .external_lex_state = 2}, + [1792] = {.lex_state = 2, .external_lex_state = 4}, + [1793] = {.lex_state = 9, .external_lex_state = 2}, + [1794] = {.lex_state = 9, .external_lex_state = 2}, + [1795] = {.lex_state = 9, .external_lex_state = 2}, + [1796] = {.lex_state = 9, .external_lex_state = 2}, + [1797] = {.lex_state = 9, .external_lex_state = 2}, + [1798] = {.lex_state = 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}, + [1804] = {.lex_state = 9, .external_lex_state = 2}, + [1805] = {.lex_state = 9, .external_lex_state = 2}, + [1806] = {.lex_state = 9, .external_lex_state = 2}, + [1807] = {.lex_state = 1, .external_lex_state = 4}, + [1808] = {.lex_state = 9, .external_lex_state = 2}, + [1809] = {.lex_state = 9, .external_lex_state = 2}, + [1810] = {.lex_state = 1, .external_lex_state = 4}, + [1811] = {.lex_state = 9, .external_lex_state = 2}, + [1812] = {.lex_state = 9, .external_lex_state = 2}, + [1813] = {.lex_state = 9, .external_lex_state = 2}, + [1814] = {.lex_state = 9, .external_lex_state = 2}, + [1815] = {.lex_state = 9, .external_lex_state = 2}, + [1816] = {.lex_state = 9, .external_lex_state = 2}, + [1817] = {.lex_state = 9, .external_lex_state = 2}, + [1818] = {.lex_state = 9, .external_lex_state = 2}, + [1819] = {.lex_state = 9, .external_lex_state = 2}, + [1820] = {.lex_state = 9, .external_lex_state = 2}, + [1821] = {.lex_state = 9, .external_lex_state = 2}, + [1822] = {.lex_state = 9, .external_lex_state = 2}, + [1823] = {.lex_state = 9, .external_lex_state = 2}, + [1824] = {.lex_state = 9, .external_lex_state = 2}, + [1825] = {.lex_state = 9, .external_lex_state = 2}, + [1826] = {.lex_state = 9, .external_lex_state = 2}, + [1827] = {.lex_state = 9, .external_lex_state = 2}, + [1828] = {.lex_state = 9, .external_lex_state = 2}, + [1829] = {.lex_state = 9, .external_lex_state = 2}, + [1830] = {.lex_state = 9, .external_lex_state = 2}, + [1831] = {.lex_state = 9, .external_lex_state = 2}, + [1832] = {.lex_state = 9, .external_lex_state = 2}, + [1833] = {.lex_state = 9, .external_lex_state = 2}, + [1834] = {.lex_state = 9, .external_lex_state = 2}, + [1835] = {.lex_state = 9, .external_lex_state = 2}, + [1836] = {.lex_state = 9, .external_lex_state = 2}, + [1837] = {.lex_state = 9, .external_lex_state = 2}, + [1838] = {.lex_state = 9, .external_lex_state = 2}, + [1839] = {.lex_state = 9, .external_lex_state = 2}, + [1840] = {.lex_state = 9, .external_lex_state = 2}, + [1841] = {.lex_state = 9, .external_lex_state = 2}, + [1842] = {.lex_state = 9, .external_lex_state = 2}, + [1843] = {.lex_state = 9, .external_lex_state = 2}, + [1844] = {.lex_state = 9, .external_lex_state = 2}, + [1845] = {.lex_state = 13, .external_lex_state = 6}, + [1846] = {.lex_state = 9, .external_lex_state = 2}, + [1847] = {.lex_state = 13, .external_lex_state = 6}, + [1848] = {.lex_state = 13, .external_lex_state = 6}, + [1849] = {.lex_state = 9, .external_lex_state = 2}, + [1850] = {.lex_state = 9, .external_lex_state = 2}, + [1851] = {.lex_state = 9, .external_lex_state = 2}, + [1852] = {.lex_state = 9, .external_lex_state = 2}, + [1853] = {.lex_state = 9, .external_lex_state = 2}, + [1854] = {.lex_state = 9, .external_lex_state = 2}, + [1855] = {.lex_state = 9, .external_lex_state = 2}, + [1856] = {.lex_state = 9, .external_lex_state = 2}, + [1857] = {.lex_state = 9, .external_lex_state = 2}, + [1858] = {.lex_state = 9, .external_lex_state = 2}, + [1859] = {.lex_state = 9, .external_lex_state = 2}, + [1860] = {.lex_state = 9, .external_lex_state = 2}, + [1861] = {.lex_state = 9, .external_lex_state = 2}, + [1862] = {.lex_state = 9, .external_lex_state = 2}, + [1863] = {.lex_state = 9, .external_lex_state = 2}, + [1864] = {.lex_state = 9, .external_lex_state = 2}, + [1865] = {.lex_state = 9, .external_lex_state = 2}, + [1866] = {.lex_state = 1, .external_lex_state = 4}, + [1867] = {.lex_state = 9, .external_lex_state = 2}, + [1868] = {.lex_state = 1, .external_lex_state = 4}, + [1869] = {.lex_state = 9, .external_lex_state = 2}, + [1870] = {.lex_state = 9, .external_lex_state = 2}, + [1871] = {.lex_state = 2, .external_lex_state = 4}, + [1872] = {.lex_state = 2, .external_lex_state = 4}, + [1873] = {.lex_state = 9, .external_lex_state = 2}, + [1874] = {.lex_state = 9, .external_lex_state = 2}, + [1875] = {.lex_state = 9, .external_lex_state = 2}, + [1876] = {.lex_state = 9, .external_lex_state = 2}, + [1877] = {.lex_state = 9, .external_lex_state = 2}, + [1878] = {.lex_state = 9, .external_lex_state = 2}, + [1879] = {.lex_state = 9, .external_lex_state = 2}, + [1880] = {.lex_state = 9, .external_lex_state = 2}, + [1881] = {.lex_state = 9, .external_lex_state = 2}, + [1882] = {.lex_state = 9, .external_lex_state = 2}, + [1883] = {.lex_state = 9, .external_lex_state = 2}, + [1884] = {.lex_state = 9, .external_lex_state = 2}, + [1885] = {.lex_state = 9, .external_lex_state = 2}, + [1886] = {.lex_state = 9, .external_lex_state = 2}, + [1887] = {.lex_state = 9, .external_lex_state = 2}, + [1888] = {.lex_state = 9, .external_lex_state = 2}, + [1889] = {.lex_state = 9, .external_lex_state = 2}, + [1890] = {.lex_state = 9, .external_lex_state = 2}, + [1891] = {.lex_state = 9, .external_lex_state = 2}, + [1892] = {.lex_state = 2, .external_lex_state = 4}, + [1893] = {.lex_state = 9, .external_lex_state = 2}, + [1894] = {.lex_state = 9, .external_lex_state = 2}, + [1895] = {.lex_state = 9, .external_lex_state = 2}, + [1896] = {.lex_state = 9, .external_lex_state = 2}, + [1897] = {.lex_state = 9, .external_lex_state = 2}, + [1898] = {.lex_state = 9, .external_lex_state = 2}, + [1899] = {.lex_state = 9, .external_lex_state = 2}, + [1900] = {.lex_state = 9, .external_lex_state = 2}, + [1901] = {.lex_state = 9, .external_lex_state = 2}, + [1902] = {.lex_state = 9, .external_lex_state = 2}, + [1903] = {.lex_state = 9, .external_lex_state = 2}, + [1904] = {.lex_state = 9, .external_lex_state = 2}, + [1905] = {.lex_state = 9, .external_lex_state = 2}, + [1906] = {.lex_state = 9, .external_lex_state = 2}, + [1907] = {.lex_state = 9, .external_lex_state = 2}, + [1908] = {.lex_state = 9, .external_lex_state = 2}, + [1909] = {.lex_state = 9, .external_lex_state = 2}, + [1910] = {.lex_state = 9, .external_lex_state = 2}, + [1911] = {.lex_state = 9, .external_lex_state = 2}, + [1912] = {.lex_state = 1, .external_lex_state = 4}, + [1913] = {.lex_state = 1, .external_lex_state = 4}, + [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 = 1, .external_lex_state = 4}, + [1919] = {.lex_state = 9, .external_lex_state = 2}, + [1920] = {.lex_state = 9, .external_lex_state = 2}, + [1921] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [1929] = {.lex_state = 9, .external_lex_state = 2}, + [1930] = {.lex_state = 9, .external_lex_state = 2}, + [1931] = {.lex_state = 9, .external_lex_state = 2}, + [1932] = {.lex_state = 9, .external_lex_state = 2}, + [1933] = {.lex_state = 9, .external_lex_state = 2}, + [1934] = {.lex_state = 9, .external_lex_state = 2}, + [1935] = {.lex_state = 9, .external_lex_state = 2}, + [1936] = {.lex_state = 9, .external_lex_state = 2}, + [1937] = {.lex_state = 9, .external_lex_state = 2}, + [1938] = {.lex_state = 9, .external_lex_state = 2}, + [1939] = {.lex_state = 9, .external_lex_state = 2}, + [1940] = {.lex_state = 9, .external_lex_state = 2}, + [1941] = {.lex_state = 9, .external_lex_state = 2}, + [1942] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1947] = {.lex_state = 9, .external_lex_state = 2}, + [1948] = {.lex_state = 9, .external_lex_state = 2}, + [1949] = {.lex_state = 9, .external_lex_state = 2}, + [1950] = {.lex_state = 9, .external_lex_state = 2}, + [1951] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [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 = 9, .external_lex_state = 2}, + [1961] = {.lex_state = 9, .external_lex_state = 2}, + [1962] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [1970] = {.lex_state = 9, .external_lex_state = 2}, + [1971] = {.lex_state = 9, .external_lex_state = 2}, + [1972] = {.lex_state = 9, .external_lex_state = 2}, + [1973] = {.lex_state = 9, .external_lex_state = 2}, + [1974] = {.lex_state = 9, .external_lex_state = 2}, + [1975] = {.lex_state = 9, .external_lex_state = 2}, + [1976] = {.lex_state = 9, .external_lex_state = 2}, + [1977] = {.lex_state = 9, .external_lex_state = 2}, + [1978] = {.lex_state = 9, .external_lex_state = 2}, + [1979] = {.lex_state = 9, .external_lex_state = 2}, + [1980] = {.lex_state = 9, .external_lex_state = 2}, + [1981] = {.lex_state = 9, .external_lex_state = 2}, + [1982] = {.lex_state = 9, .external_lex_state = 2}, + [1983] = {.lex_state = 9, .external_lex_state = 2}, + [1984] = {.lex_state = 9, .external_lex_state = 2}, + [1985] = {.lex_state = 9, .external_lex_state = 2}, + [1986] = {.lex_state = 9, .external_lex_state = 2}, + [1987] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1992] = {.lex_state = 9, .external_lex_state = 2}, + [1993] = {.lex_state = 9, .external_lex_state = 2}, + [1994] = {.lex_state = 9, .external_lex_state = 2}, + [1995] = {.lex_state = 9, .external_lex_state = 2}, + [1996] = {.lex_state = 9, .external_lex_state = 2}, + [1997] = {.lex_state = 9, .external_lex_state = 2}, + [1998] = {.lex_state = 9, .external_lex_state = 2}, + [1999] = {.lex_state = 9, .external_lex_state = 2}, + [2000] = {.lex_state = 9, .external_lex_state = 2}, + [2001] = {.lex_state = 9, .external_lex_state = 2}, + [2002] = {.lex_state = 1, .external_lex_state = 4}, + [2003] = {.lex_state = 9, .external_lex_state = 2}, + [2004] = {.lex_state = 9, .external_lex_state = 2}, + [2005] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [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}, + [2016] = {.lex_state = 9, .external_lex_state = 2}, + [2017] = {.lex_state = 9, .external_lex_state = 2}, + [2018] = {.lex_state = 9, .external_lex_state = 2}, + [2019] = {.lex_state = 9, .external_lex_state = 2}, + [2020] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [2025] = {.lex_state = 9, .external_lex_state = 2}, + [2026] = {.lex_state = 9, .external_lex_state = 2}, + [2027] = {.lex_state = 9, .external_lex_state = 2}, + [2028] = {.lex_state = 9, .external_lex_state = 2}, + [2029] = {.lex_state = 9, .external_lex_state = 2}, + [2030] = {.lex_state = 9, .external_lex_state = 2}, + [2031] = {.lex_state = 9, .external_lex_state = 2}, + [2032] = {.lex_state = 9, .external_lex_state = 2}, + [2033] = {.lex_state = 9, .external_lex_state = 2}, + [2034] = {.lex_state = 9, .external_lex_state = 2}, + [2035] = {.lex_state = 9, .external_lex_state = 2}, + [2036] = {.lex_state = 9, .external_lex_state = 2}, + [2037] = {.lex_state = 9, .external_lex_state = 2}, + [2038] = {.lex_state = 9, .external_lex_state = 2}, + [2039] = {.lex_state = 9, .external_lex_state = 2}, + [2040] = {.lex_state = 9, .external_lex_state = 2}, + [2041] = {.lex_state = 9, .external_lex_state = 2}, + [2042] = {.lex_state = 9, .external_lex_state = 2}, + [2043] = {.lex_state = 9, .external_lex_state = 2}, + [2044] = {.lex_state = 9, .external_lex_state = 2}, + [2045] = {.lex_state = 9, .external_lex_state = 2}, + [2046] = {.lex_state = 9, .external_lex_state = 2}, + [2047] = {.lex_state = 9, .external_lex_state = 2}, + [2048] = {.lex_state = 9, .external_lex_state = 2}, + [2049] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 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}, + [2058] = {.lex_state = 9, .external_lex_state = 2}, + [2059] = {.lex_state = 9, .external_lex_state = 2}, + [2060] = {.lex_state = 9, .external_lex_state = 2}, + [2061] = {.lex_state = 9, .external_lex_state = 2}, + [2062] = {.lex_state = 9, .external_lex_state = 2}, + [2063] = {.lex_state = 9, .external_lex_state = 2}, + [2064] = {.lex_state = 9, .external_lex_state = 2}, + [2065] = {.lex_state = 9, .external_lex_state = 2}, + [2066] = {.lex_state = 9, .external_lex_state = 2}, + [2067] = {.lex_state = 9, .external_lex_state = 2}, + [2068] = {.lex_state = 13, .external_lex_state = 6}, + [2069] = {.lex_state = 9, .external_lex_state = 2}, + [2070] = {.lex_state = 9, .external_lex_state = 2}, + [2071] = {.lex_state = 9, .external_lex_state = 2}, + [2072] = {.lex_state = 9, .external_lex_state = 2}, + [2073] = {.lex_state = 9, .external_lex_state = 2}, + [2074] = {.lex_state = 9, .external_lex_state = 2}, + [2075] = {.lex_state = 9, .external_lex_state = 2}, + [2076] = {.lex_state = 9, .external_lex_state = 2}, + [2077] = {.lex_state = 9, .external_lex_state = 2}, + [2078] = {.lex_state = 9, .external_lex_state = 2}, + [2079] = {.lex_state = 9, .external_lex_state = 2}, + [2080] = {.lex_state = 9, .external_lex_state = 2}, + [2081] = {.lex_state = 9, .external_lex_state = 2}, + [2082] = {.lex_state = 9, .external_lex_state = 2}, + [2083] = {.lex_state = 9, .external_lex_state = 2}, + [2084] = {.lex_state = 9, .external_lex_state = 2}, + [2085] = {.lex_state = 9, .external_lex_state = 2}, + [2086] = {.lex_state = 9, .external_lex_state = 2}, + [2087] = {.lex_state = 9, .external_lex_state = 2}, + [2088] = {.lex_state = 9, .external_lex_state = 2}, + [2089] = {.lex_state = 9, .external_lex_state = 2}, + [2090] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [2095] = {.lex_state = 9, .external_lex_state = 2}, + [2096] = {.lex_state = 9, .external_lex_state = 2}, + [2097] = {.lex_state = 1, .external_lex_state = 4}, + [2098] = {.lex_state = 9, .external_lex_state = 2}, + [2099] = {.lex_state = 9, .external_lex_state = 2}, + [2100] = {.lex_state = 9, .external_lex_state = 2}, + [2101] = {.lex_state = 9, .external_lex_state = 2}, + [2102] = {.lex_state = 9, .external_lex_state = 2}, + [2103] = {.lex_state = 1, .external_lex_state = 4}, + [2104] = {.lex_state = 9, .external_lex_state = 2}, + [2105] = {.lex_state = 9, .external_lex_state = 2}, + [2106] = {.lex_state = 9, .external_lex_state = 2}, + [2107] = {.lex_state = 9, .external_lex_state = 2}, + [2108] = {.lex_state = 9, .external_lex_state = 2}, + [2109] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [2114] = {.lex_state = 9, .external_lex_state = 2}, + [2115] = {.lex_state = 9, .external_lex_state = 2}, + [2116] = {.lex_state = 9, .external_lex_state = 2}, + [2117] = {.lex_state = 9, .external_lex_state = 2}, + [2118] = {.lex_state = 9, .external_lex_state = 2}, + [2119] = {.lex_state = 9, .external_lex_state = 2}, + [2120] = {.lex_state = 9, .external_lex_state = 2}, + [2121] = {.lex_state = 9, .external_lex_state = 2}, + [2122] = {.lex_state = 9, .external_lex_state = 2}, + [2123] = {.lex_state = 9, .external_lex_state = 2}, + [2124] = {.lex_state = 9, .external_lex_state = 2}, + [2125] = {.lex_state = 9, .external_lex_state = 2}, + [2126] = {.lex_state = 9, .external_lex_state = 2}, + [2127] = {.lex_state = 9, .external_lex_state = 2}, + [2128] = {.lex_state = 9, .external_lex_state = 2}, + [2129] = {.lex_state = 9, .external_lex_state = 2}, + [2130] = {.lex_state = 9, .external_lex_state = 2}, + [2131] = {.lex_state = 9, .external_lex_state = 2}, + [2132] = {.lex_state = 9, .external_lex_state = 2}, + [2133] = {.lex_state = 9, .external_lex_state = 2}, + [2134] = {.lex_state = 9, .external_lex_state = 2}, + [2135] = {.lex_state = 13, .external_lex_state = 6}, + [2136] = {.lex_state = 9, .external_lex_state = 2}, + [2137] = {.lex_state = 9, .external_lex_state = 2}, + [2138] = {.lex_state = 9, .external_lex_state = 2}, + [2139] = {.lex_state = 9, .external_lex_state = 2}, + [2140] = {.lex_state = 9, .external_lex_state = 2}, + [2141] = {.lex_state = 9, .external_lex_state = 2}, + [2142] = {.lex_state = 9, .external_lex_state = 2}, + [2143] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [2149] = {.lex_state = 9, .external_lex_state = 2}, + [2150] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [2155] = {.lex_state = 9, .external_lex_state = 2}, + [2156] = {.lex_state = 9, .external_lex_state = 2}, + [2157] = {.lex_state = 1, .external_lex_state = 4}, + [2158] = {.lex_state = 9, .external_lex_state = 2}, + [2159] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 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 = 9, .external_lex_state = 2}, + [2169] = {.lex_state = 13, .external_lex_state = 6}, + [2170] = {.lex_state = 13, .external_lex_state = 6}, + [2171] = {.lex_state = 9, .external_lex_state = 2}, + [2172] = {.lex_state = 9, .external_lex_state = 2}, + [2173] = {.lex_state = 13, .external_lex_state = 6}, + [2174] = {.lex_state = 9, .external_lex_state = 2}, + [2175] = {.lex_state = 9, .external_lex_state = 2}, + [2176] = {.lex_state = 9, .external_lex_state = 2}, + [2177] = {.lex_state = 9, .external_lex_state = 2}, + [2178] = {.lex_state = 9, .external_lex_state = 2}, + [2179] = {.lex_state = 9, .external_lex_state = 2}, + [2180] = {.lex_state = 13, .external_lex_state = 6}, + [2181] = {.lex_state = 13, .external_lex_state = 6}, + [2182] = {.lex_state = 9, .external_lex_state = 2}, + [2183] = {.lex_state = 9, .external_lex_state = 2}, + [2184] = {.lex_state = 9, .external_lex_state = 2}, + [2185] = {.lex_state = 9, .external_lex_state = 2}, + [2186] = {.lex_state = 13, .external_lex_state = 6}, + [2187] = {.lex_state = 1, .external_lex_state = 4}, + [2188] = {.lex_state = 9, .external_lex_state = 2}, + [2189] = {.lex_state = 1, .external_lex_state = 4}, + [2190] = {.lex_state = 13, .external_lex_state = 7}, + [2191] = {.lex_state = 13, .external_lex_state = 6}, + [2192] = {.lex_state = 11, .external_lex_state = 5}, + [2193] = {.lex_state = 13, .external_lex_state = 7}, + [2194] = {.lex_state = 13, .external_lex_state = 6}, + [2195] = {.lex_state = 11, .external_lex_state = 5}, + [2196] = {.lex_state = 13, .external_lex_state = 7}, + [2197] = {.lex_state = 13, .external_lex_state = 6}, + [2198] = {.lex_state = 13, .external_lex_state = 7}, + [2199] = {.lex_state = 13, .external_lex_state = 7}, + [2200] = {.lex_state = 13, .external_lex_state = 6}, + [2201] = {.lex_state = 13, .external_lex_state = 7}, + [2202] = {.lex_state = 13, .external_lex_state = 6}, + [2203] = {.lex_state = 13, .external_lex_state = 7}, + [2204] = {.lex_state = 13, .external_lex_state = 7}, + [2205] = {.lex_state = 13, .external_lex_state = 7}, + [2206] = {.lex_state = 13, .external_lex_state = 6}, + [2207] = {.lex_state = 13, .external_lex_state = 7}, + [2208] = {.lex_state = 13, .external_lex_state = 7}, + [2209] = {.lex_state = 13, .external_lex_state = 6}, + [2210] = {.lex_state = 1, .external_lex_state = 4}, + [2211] = {.lex_state = 13, .external_lex_state = 6}, + [2212] = {.lex_state = 13, .external_lex_state = 6}, + [2213] = {.lex_state = 1, .external_lex_state = 4}, + [2214] = {.lex_state = 13, .external_lex_state = 6}, + [2215] = {.lex_state = 11, .external_lex_state = 5}, + [2216] = {.lex_state = 13, .external_lex_state = 7}, + [2217] = {.lex_state = 1, .external_lex_state = 4}, + [2218] = {.lex_state = 13, .external_lex_state = 6}, + [2219] = {.lex_state = 1, .external_lex_state = 4}, + [2220] = {.lex_state = 13, .external_lex_state = 6}, + [2221] = {.lex_state = 13, .external_lex_state = 7}, + [2222] = {.lex_state = 13, .external_lex_state = 6}, + [2223] = {.lex_state = 11, .external_lex_state = 5}, + [2224] = {.lex_state = 13, .external_lex_state = 7}, + [2225] = {.lex_state = 1, .external_lex_state = 4}, + [2226] = {.lex_state = 13, .external_lex_state = 7}, + [2227] = {.lex_state = 13, .external_lex_state = 6}, + [2228] = {.lex_state = 13, .external_lex_state = 7}, + [2229] = {.lex_state = 13, .external_lex_state = 6}, + [2230] = {.lex_state = 13, .external_lex_state = 7}, + [2231] = {.lex_state = 1, .external_lex_state = 4}, + [2232] = {.lex_state = 13, .external_lex_state = 7}, + [2233] = {.lex_state = 1, .external_lex_state = 4}, + [2234] = {.lex_state = 13, .external_lex_state = 7}, + [2235] = {.lex_state = 13, .external_lex_state = 7}, + [2236] = {.lex_state = 13, .external_lex_state = 7}, + [2237] = {.lex_state = 1, .external_lex_state = 4}, + [2238] = {.lex_state = 1, .external_lex_state = 4}, + [2239] = {.lex_state = 13, .external_lex_state = 7}, + [2240] = {.lex_state = 13, .external_lex_state = 7}, + [2241] = {.lex_state = 1, .external_lex_state = 4}, + [2242] = {.lex_state = 13, .external_lex_state = 6}, + [2243] = {.lex_state = 13, .external_lex_state = 7}, + [2244] = {.lex_state = 1, .external_lex_state = 4}, + [2245] = {.lex_state = 13, .external_lex_state = 7}, + [2246] = {.lex_state = 13, .external_lex_state = 7}, + [2247] = {.lex_state = 13, .external_lex_state = 6}, + [2248] = {.lex_state = 13, .external_lex_state = 6}, + [2249] = {.lex_state = 1, .external_lex_state = 3}, + [2250] = {.lex_state = 13, .external_lex_state = 6}, + [2251] = {.lex_state = 13, .external_lex_state = 6}, + [2252] = {.lex_state = 13, .external_lex_state = 7}, + [2253] = {.lex_state = 13, .external_lex_state = 6}, + [2254] = {.lex_state = 13, .external_lex_state = 6}, + [2255] = {.lex_state = 13, .external_lex_state = 6}, + [2256] = {.lex_state = 13, .external_lex_state = 6}, + [2257] = {.lex_state = 1, .external_lex_state = 3}, + [2258] = {.lex_state = 13, .external_lex_state = 6}, + [2259] = {.lex_state = 13, .external_lex_state = 7}, + [2260] = {.lex_state = 13, .external_lex_state = 7}, + [2261] = {.lex_state = 13, .external_lex_state = 7}, + [2262] = {.lex_state = 13, .external_lex_state = 7}, + [2263] = {.lex_state = 2, .external_lex_state = 4}, + [2264] = {.lex_state = 2, .external_lex_state = 4}, + [2265] = {.lex_state = 2, .external_lex_state = 4}, + [2266] = {.lex_state = 2, .external_lex_state = 4}, + [2267] = {.lex_state = 2, .external_lex_state = 4}, + [2268] = {.lex_state = 13, .external_lex_state = 6}, + [2269] = {.lex_state = 11, .external_lex_state = 5}, + [2270] = {.lex_state = 2, .external_lex_state = 4}, + [2271] = {.lex_state = 2, .external_lex_state = 4}, + [2272] = {.lex_state = 2, .external_lex_state = 4}, + [2273] = {.lex_state = 13, .external_lex_state = 6}, + [2274] = {.lex_state = 2, .external_lex_state = 4}, + [2275] = {.lex_state = 2, .external_lex_state = 4}, + [2276] = {.lex_state = 13, .external_lex_state = 7}, + [2277] = {.lex_state = 13, .external_lex_state = 6}, + [2278] = {.lex_state = 2, .external_lex_state = 4}, + [2279] = {.lex_state = 13, .external_lex_state = 7}, + [2280] = {.lex_state = 13, .external_lex_state = 6}, + [2281] = {.lex_state = 2, .external_lex_state = 4}, + [2282] = {.lex_state = 13, .external_lex_state = 7}, + [2283] = {.lex_state = 11, .external_lex_state = 5}, + [2284] = {.lex_state = 13, .external_lex_state = 6}, + [2285] = {.lex_state = 2, .external_lex_state = 4}, + [2286] = {.lex_state = 2, .external_lex_state = 4}, + [2287] = {.lex_state = 11, .external_lex_state = 5}, + [2288] = {.lex_state = 13, .external_lex_state = 6}, + [2289] = {.lex_state = 13, .external_lex_state = 6}, + [2290] = {.lex_state = 13, .external_lex_state = 7}, + [2291] = {.lex_state = 13, .external_lex_state = 7}, + [2292] = {.lex_state = 13, .external_lex_state = 6}, + [2293] = {.lex_state = 13, .external_lex_state = 7}, + [2294] = {.lex_state = 13, .external_lex_state = 6}, + [2295] = {.lex_state = 13, .external_lex_state = 7}, + [2296] = {.lex_state = 13, .external_lex_state = 6}, + [2297] = {.lex_state = 2, .external_lex_state = 4}, + [2298] = {.lex_state = 13, .external_lex_state = 6}, + [2299] = {.lex_state = 13, .external_lex_state = 6}, + [2300] = {.lex_state = 13, .external_lex_state = 7}, + [2301] = {.lex_state = 13, .external_lex_state = 6}, + [2302] = {.lex_state = 13, .external_lex_state = 6}, + [2303] = {.lex_state = 13, .external_lex_state = 6}, + [2304] = {.lex_state = 11, .external_lex_state = 5}, + [2305] = {.lex_state = 13, .external_lex_state = 6}, + [2306] = {.lex_state = 2, .external_lex_state = 4}, + [2307] = {.lex_state = 13, .external_lex_state = 7}, + [2308] = {.lex_state = 13, .external_lex_state = 7}, + [2309] = {.lex_state = 13, .external_lex_state = 6}, + [2310] = {.lex_state = 13, .external_lex_state = 7}, + [2311] = {.lex_state = 13, .external_lex_state = 6}, + [2312] = {.lex_state = 13, .external_lex_state = 6}, + [2313] = {.lex_state = 2, .external_lex_state = 4}, + [2314] = {.lex_state = 11, .external_lex_state = 5}, + [2315] = {.lex_state = 13, .external_lex_state = 6}, + [2316] = {.lex_state = 11, .external_lex_state = 5}, + [2317] = {.lex_state = 1, .external_lex_state = 4}, + [2318] = {.lex_state = 13, .external_lex_state = 7}, + [2319] = {.lex_state = 13, .external_lex_state = 6}, + [2320] = {.lex_state = 13, .external_lex_state = 6}, + [2321] = {.lex_state = 13, .external_lex_state = 6}, + [2322] = {.lex_state = 13, .external_lex_state = 6}, + [2323] = {.lex_state = 13, .external_lex_state = 6}, + [2324] = {.lex_state = 13, .external_lex_state = 6}, + [2325] = {.lex_state = 13, .external_lex_state = 6}, + [2326] = {.lex_state = 13, .external_lex_state = 6}, + [2327] = {.lex_state = 13, .external_lex_state = 6}, + [2328] = {.lex_state = 11, .external_lex_state = 5}, + [2329] = {.lex_state = 13, .external_lex_state = 6}, + [2330] = {.lex_state = 13, .external_lex_state = 6}, + [2331] = {.lex_state = 13, .external_lex_state = 6}, + [2332] = {.lex_state = 13, .external_lex_state = 6}, + [2333] = {.lex_state = 13, .external_lex_state = 6}, + [2334] = {.lex_state = 13, .external_lex_state = 6}, + [2335] = {.lex_state = 13, .external_lex_state = 7}, + [2336] = {.lex_state = 13, .external_lex_state = 6}, + [2337] = {.lex_state = 13, .external_lex_state = 6}, + [2338] = {.lex_state = 13, .external_lex_state = 6}, + [2339] = {.lex_state = 13, .external_lex_state = 6}, + [2340] = {.lex_state = 13, .external_lex_state = 6}, + [2341] = {.lex_state = 13, .external_lex_state = 7}, + [2342] = {.lex_state = 13, .external_lex_state = 6}, + [2343] = {.lex_state = 13, .external_lex_state = 7}, + [2344] = {.lex_state = 13, .external_lex_state = 7}, + [2345] = {.lex_state = 13, .external_lex_state = 7}, + [2346] = {.lex_state = 13, .external_lex_state = 7}, + [2347] = {.lex_state = 13, .external_lex_state = 7}, + [2348] = {.lex_state = 13, .external_lex_state = 6}, + [2349] = {.lex_state = 1, .external_lex_state = 4}, + [2350] = {.lex_state = 13, .external_lex_state = 7}, + [2351] = {.lex_state = 13, .external_lex_state = 6}, + [2352] = {.lex_state = 13, .external_lex_state = 6}, + [2353] = {.lex_state = 13, .external_lex_state = 6}, + [2354] = {.lex_state = 13, .external_lex_state = 7}, + [2355] = {.lex_state = 13, .external_lex_state = 6}, + [2356] = {.lex_state = 1, .external_lex_state = 4}, + [2357] = {.lex_state = 13, .external_lex_state = 7}, + [2358] = {.lex_state = 13, .external_lex_state = 6}, + [2359] = {.lex_state = 13, .external_lex_state = 7}, + [2360] = {.lex_state = 13, .external_lex_state = 6}, + [2361] = {.lex_state = 13, .external_lex_state = 6}, + [2362] = {.lex_state = 13, .external_lex_state = 7}, + [2363] = {.lex_state = 13, .external_lex_state = 6}, + [2364] = {.lex_state = 13, .external_lex_state = 7}, + [2365] = {.lex_state = 13, .external_lex_state = 7}, + [2366] = {.lex_state = 13, .external_lex_state = 6}, + [2367] = {.lex_state = 13, .external_lex_state = 7}, + [2368] = {.lex_state = 11, .external_lex_state = 5}, + [2369] = {.lex_state = 1, .external_lex_state = 4}, + [2370] = {.lex_state = 1, .external_lex_state = 4}, + [2371] = {.lex_state = 13, .external_lex_state = 6}, + [2372] = {.lex_state = 13, .external_lex_state = 6}, + [2373] = {.lex_state = 13, .external_lex_state = 6}, + [2374] = {.lex_state = 1, .external_lex_state = 4}, + [2375] = {.lex_state = 13, .external_lex_state = 7}, + [2376] = {.lex_state = 1, .external_lex_state = 4}, + [2377] = {.lex_state = 13, .external_lex_state = 6}, + [2378] = {.lex_state = 13, .external_lex_state = 7}, + [2379] = {.lex_state = 1, .external_lex_state = 4}, + [2380] = {.lex_state = 11, .external_lex_state = 5}, + [2381] = {.lex_state = 13, .external_lex_state = 6}, + [2382] = {.lex_state = 1, .external_lex_state = 4}, + [2383] = {.lex_state = 13, .external_lex_state = 6}, + [2384] = {.lex_state = 13, .external_lex_state = 6}, + [2385] = {.lex_state = 1, .external_lex_state = 4}, + [2386] = {.lex_state = 13, .external_lex_state = 6}, + [2387] = {.lex_state = 13, .external_lex_state = 6}, + [2388] = {.lex_state = 11, .external_lex_state = 5}, + [2389] = {.lex_state = 11, .external_lex_state = 5}, + [2390] = {.lex_state = 13, .external_lex_state = 7}, + [2391] = {.lex_state = 13, .external_lex_state = 7}, + [2392] = {.lex_state = 13, .external_lex_state = 7}, + [2393] = {.lex_state = 13, .external_lex_state = 7}, + [2394] = {.lex_state = 13, .external_lex_state = 7}, + [2395] = {.lex_state = 13, .external_lex_state = 7}, + [2396] = {.lex_state = 11, .external_lex_state = 5}, + [2397] = {.lex_state = 13, .external_lex_state = 7}, + [2398] = {.lex_state = 13, .external_lex_state = 7}, + [2399] = {.lex_state = 13, .external_lex_state = 6}, + [2400] = {.lex_state = 11, .external_lex_state = 5}, + [2401] = {.lex_state = 13, .external_lex_state = 7}, + [2402] = {.lex_state = 13, .external_lex_state = 6}, + [2403] = {.lex_state = 13, .external_lex_state = 7}, + [2404] = {.lex_state = 13, .external_lex_state = 7}, + [2405] = {.lex_state = 13, .external_lex_state = 6}, + [2406] = {.lex_state = 13, .external_lex_state = 7}, + [2407] = {.lex_state = 13, .external_lex_state = 7}, + [2408] = {.lex_state = 13, .external_lex_state = 7}, + [2409] = {.lex_state = 13, .external_lex_state = 6}, + [2410] = {.lex_state = 13, .external_lex_state = 7}, + [2411] = {.lex_state = 13, .external_lex_state = 7}, + [2412] = {.lex_state = 13, .external_lex_state = 7}, + [2413] = {.lex_state = 13, .external_lex_state = 7}, + [2414] = {.lex_state = 13, .external_lex_state = 7}, + [2415] = {.lex_state = 13, .external_lex_state = 6}, + [2416] = {.lex_state = 13, .external_lex_state = 6}, + [2417] = {.lex_state = 13, .external_lex_state = 7}, + [2418] = {.lex_state = 11, .external_lex_state = 5}, + [2419] = {.lex_state = 13, .external_lex_state = 7}, + [2420] = {.lex_state = 13, .external_lex_state = 6}, + [2421] = {.lex_state = 13, .external_lex_state = 6}, + [2422] = {.lex_state = 13, .external_lex_state = 6}, + [2423] = {.lex_state = 13, .external_lex_state = 7}, + [2424] = {.lex_state = 13, .external_lex_state = 6}, + [2425] = {.lex_state = 13, .external_lex_state = 7}, + [2426] = {.lex_state = 13, .external_lex_state = 7}, + [2427] = {.lex_state = 13, .external_lex_state = 6}, + [2428] = {.lex_state = 13, .external_lex_state = 6}, + [2429] = {.lex_state = 13, .external_lex_state = 7}, + [2430] = {.lex_state = 13, .external_lex_state = 7}, + [2431] = {.lex_state = 13, .external_lex_state = 6}, + [2432] = {.lex_state = 13, .external_lex_state = 7}, + [2433] = {.lex_state = 13, .external_lex_state = 7}, + [2434] = {.lex_state = 13, .external_lex_state = 7}, + [2435] = {.lex_state = 13, .external_lex_state = 6}, + [2436] = {.lex_state = 13, .external_lex_state = 7}, + [2437] = {.lex_state = 13, .external_lex_state = 6}, + [2438] = {.lex_state = 13, .external_lex_state = 6}, + [2439] = {.lex_state = 13, .external_lex_state = 7}, + [2440] = {.lex_state = 13, .external_lex_state = 6}, + [2441] = {.lex_state = 13, .external_lex_state = 6}, + [2442] = {.lex_state = 13, .external_lex_state = 7}, + [2443] = {.lex_state = 13, .external_lex_state = 6}, + [2444] = {.lex_state = 13, .external_lex_state = 6}, + [2445] = {.lex_state = 13, .external_lex_state = 7}, + [2446] = {.lex_state = 13, .external_lex_state = 6}, + [2447] = {.lex_state = 13, .external_lex_state = 6}, + [2448] = {.lex_state = 13, .external_lex_state = 7}, + [2449] = {.lex_state = 13, .external_lex_state = 7}, + [2450] = {.lex_state = 13, .external_lex_state = 7}, + [2451] = {.lex_state = 13, .external_lex_state = 6}, + [2452] = {.lex_state = 13, .external_lex_state = 6}, + [2453] = {.lex_state = 13, .external_lex_state = 6}, + [2454] = {.lex_state = 13, .external_lex_state = 6}, + [2455] = {.lex_state = 13, .external_lex_state = 7}, + [2456] = {.lex_state = 13, .external_lex_state = 6}, + [2457] = {.lex_state = 13, .external_lex_state = 6}, + [2458] = {.lex_state = 13, .external_lex_state = 6}, + [2459] = {.lex_state = 13, .external_lex_state = 7}, + [2460] = {.lex_state = 13, .external_lex_state = 6}, + [2461] = {.lex_state = 13, .external_lex_state = 6}, + [2462] = {.lex_state = 13, .external_lex_state = 6}, + [2463] = {.lex_state = 13, .external_lex_state = 6}, + [2464] = {.lex_state = 13, .external_lex_state = 7}, + [2465] = {.lex_state = 13, .external_lex_state = 6}, + [2466] = {.lex_state = 13, .external_lex_state = 7}, + [2467] = {.lex_state = 13, .external_lex_state = 6}, + [2468] = {.lex_state = 13, .external_lex_state = 7}, + [2469] = {.lex_state = 13, .external_lex_state = 7}, + [2470] = {.lex_state = 13, .external_lex_state = 7}, + [2471] = {.lex_state = 13, .external_lex_state = 6}, + [2472] = {.lex_state = 13, .external_lex_state = 7}, + [2473] = {.lex_state = 13, .external_lex_state = 7}, + [2474] = {.lex_state = 13, .external_lex_state = 7}, + [2475] = {.lex_state = 13, .external_lex_state = 6}, + [2476] = {.lex_state = 13, .external_lex_state = 7}, + [2477] = {.lex_state = 13, .external_lex_state = 7}, + [2478] = {.lex_state = 13, .external_lex_state = 6}, + [2479] = {.lex_state = 13, .external_lex_state = 6}, + [2480] = {.lex_state = 13, .external_lex_state = 6}, + [2481] = {.lex_state = 13, .external_lex_state = 7}, + [2482] = {.lex_state = 13, .external_lex_state = 7}, + [2483] = {.lex_state = 13, .external_lex_state = 7}, + [2484] = {.lex_state = 13, .external_lex_state = 7}, + [2485] = {.lex_state = 13, .external_lex_state = 7}, + [2486] = {.lex_state = 13, .external_lex_state = 6}, + [2487] = {.lex_state = 13, .external_lex_state = 7}, + [2488] = {.lex_state = 13, .external_lex_state = 7}, + [2489] = {.lex_state = 13, .external_lex_state = 7}, + [2490] = {.lex_state = 13, .external_lex_state = 7}, + [2491] = {.lex_state = 13, .external_lex_state = 6}, + [2492] = {.lex_state = 13, .external_lex_state = 7}, + [2493] = {.lex_state = 13, .external_lex_state = 6}, + [2494] = {.lex_state = 13, .external_lex_state = 6}, + [2495] = {.lex_state = 13, .external_lex_state = 7}, + [2496] = {.lex_state = 13, .external_lex_state = 7}, + [2497] = {.lex_state = 13, .external_lex_state = 6}, + [2498] = {.lex_state = 13, .external_lex_state = 7}, + [2499] = {.lex_state = 13, .external_lex_state = 7}, + [2500] = {.lex_state = 13, .external_lex_state = 6}, + [2501] = {.lex_state = 13, .external_lex_state = 6}, + [2502] = {.lex_state = 13, .external_lex_state = 6}, + [2503] = {.lex_state = 13, .external_lex_state = 6}, + [2504] = {.lex_state = 13, .external_lex_state = 6}, + [2505] = {.lex_state = 13, .external_lex_state = 7}, + [2506] = {.lex_state = 13, .external_lex_state = 7}, + [2507] = {.lex_state = 13, .external_lex_state = 7}, + [2508] = {.lex_state = 13, .external_lex_state = 6}, + [2509] = {.lex_state = 13, .external_lex_state = 7}, + [2510] = {.lex_state = 13, .external_lex_state = 7}, + [2511] = {.lex_state = 13, .external_lex_state = 6}, + [2512] = {.lex_state = 13, .external_lex_state = 6}, + [2513] = {.lex_state = 13, .external_lex_state = 7}, + [2514] = {.lex_state = 13, .external_lex_state = 6}, + [2515] = {.lex_state = 13, .external_lex_state = 7}, + [2516] = {.lex_state = 13, .external_lex_state = 6}, + [2517] = {.lex_state = 13, .external_lex_state = 6}, + [2518] = {.lex_state = 13, .external_lex_state = 6}, + [2519] = {.lex_state = 13, .external_lex_state = 6}, + [2520] = {.lex_state = 13, .external_lex_state = 7}, + [2521] = {.lex_state = 13, .external_lex_state = 7}, + [2522] = {.lex_state = 13, .external_lex_state = 7}, + [2523] = {.lex_state = 13, .external_lex_state = 7}, + [2524] = {.lex_state = 13, .external_lex_state = 7}, + [2525] = {.lex_state = 13, .external_lex_state = 7}, + [2526] = {.lex_state = 13, .external_lex_state = 7}, + [2527] = {.lex_state = 13, .external_lex_state = 7}, + [2528] = {.lex_state = 13, .external_lex_state = 6}, + [2529] = {.lex_state = 13, .external_lex_state = 6}, + [2530] = {.lex_state = 13, .external_lex_state = 6}, + [2531] = {.lex_state = 13, .external_lex_state = 6}, + [2532] = {.lex_state = 13, .external_lex_state = 6}, + [2533] = {.lex_state = 13, .external_lex_state = 7}, + [2534] = {.lex_state = 13, .external_lex_state = 6}, + [2535] = {.lex_state = 13, .external_lex_state = 7}, + [2536] = {.lex_state = 13, .external_lex_state = 6}, + [2537] = {.lex_state = 11, .external_lex_state = 5}, + [2538] = {.lex_state = 13, .external_lex_state = 6}, + [2539] = {.lex_state = 13, .external_lex_state = 7}, + [2540] = {.lex_state = 11, .external_lex_state = 5}, + [2541] = {.lex_state = 13, .external_lex_state = 6}, + [2542] = {.lex_state = 13, .external_lex_state = 7}, + [2543] = {.lex_state = 13, .external_lex_state = 6}, + [2544] = {.lex_state = 13, .external_lex_state = 6}, + [2545] = {.lex_state = 13, .external_lex_state = 7}, + [2546] = {.lex_state = 13, .external_lex_state = 7}, + [2547] = {.lex_state = 13, .external_lex_state = 7}, + [2548] = {.lex_state = 13, .external_lex_state = 7}, + [2549] = {.lex_state = 13, .external_lex_state = 6}, + [2550] = {.lex_state = 13, .external_lex_state = 7}, + [2551] = {.lex_state = 13, .external_lex_state = 7}, + [2552] = {.lex_state = 13, .external_lex_state = 6}, + [2553] = {.lex_state = 11, .external_lex_state = 5}, + [2554] = {.lex_state = 11, .external_lex_state = 5}, + [2555] = {.lex_state = 13, .external_lex_state = 6}, + [2556] = {.lex_state = 13, .external_lex_state = 7}, + [2557] = {.lex_state = 13, .external_lex_state = 7}, + [2558] = {.lex_state = 13, .external_lex_state = 7}, + [2559] = {.lex_state = 13, .external_lex_state = 7}, + [2560] = {.lex_state = 11, .external_lex_state = 5}, + [2561] = {.lex_state = 13, .external_lex_state = 6}, + [2562] = {.lex_state = 13, .external_lex_state = 6}, + [2563] = {.lex_state = 13, .external_lex_state = 6}, + [2564] = {.lex_state = 13, .external_lex_state = 7}, + [2565] = {.lex_state = 13, .external_lex_state = 7}, + [2566] = {.lex_state = 13, .external_lex_state = 7}, + [2567] = {.lex_state = 13, .external_lex_state = 6}, + [2568] = {.lex_state = 13, .external_lex_state = 6}, + [2569] = {.lex_state = 13, .external_lex_state = 6}, + [2570] = {.lex_state = 13, .external_lex_state = 7}, + [2571] = {.lex_state = 13, .external_lex_state = 6}, + [2572] = {.lex_state = 13, .external_lex_state = 6}, + [2573] = {.lex_state = 13, .external_lex_state = 7}, + [2574] = {.lex_state = 13, .external_lex_state = 6}, + [2575] = {.lex_state = 13, .external_lex_state = 6}, + [2576] = {.lex_state = 13, .external_lex_state = 7}, + [2577] = {.lex_state = 13, .external_lex_state = 6}, + [2578] = {.lex_state = 13, .external_lex_state = 7}, + [2579] = {.lex_state = 13, .external_lex_state = 6}, + [2580] = {.lex_state = 13, .external_lex_state = 6}, + [2581] = {.lex_state = 13, .external_lex_state = 6}, + [2582] = {.lex_state = 13, .external_lex_state = 7}, + [2583] = {.lex_state = 13, .external_lex_state = 6}, + [2584] = {.lex_state = 13, .external_lex_state = 7}, + [2585] = {.lex_state = 13, .external_lex_state = 7}, + [2586] = {.lex_state = 13, .external_lex_state = 6}, + [2587] = {.lex_state = 13, .external_lex_state = 6}, + [2588] = {.lex_state = 13, .external_lex_state = 6}, + [2589] = {.lex_state = 13, .external_lex_state = 6}, + [2590] = {.lex_state = 13, .external_lex_state = 7}, + [2591] = {.lex_state = 13, .external_lex_state = 6}, + [2592] = {.lex_state = 11, .external_lex_state = 5}, + [2593] = {.lex_state = 13, .external_lex_state = 7}, + [2594] = {.lex_state = 13, .external_lex_state = 6}, + [2595] = {.lex_state = 13, .external_lex_state = 6}, + [2596] = {.lex_state = 13, .external_lex_state = 6}, + [2597] = {.lex_state = 13, .external_lex_state = 6}, + [2598] = {.lex_state = 13, .external_lex_state = 6}, + [2599] = {.lex_state = 13, .external_lex_state = 6}, + [2600] = {.lex_state = 13, .external_lex_state = 7}, + [2601] = {.lex_state = 13, .external_lex_state = 7}, + [2602] = {.lex_state = 13, .external_lex_state = 7}, + [2603] = {.lex_state = 13, .external_lex_state = 6}, + [2604] = {.lex_state = 13, .external_lex_state = 7}, + [2605] = {.lex_state = 13, .external_lex_state = 6}, + [2606] = {.lex_state = 13, .external_lex_state = 6}, + [2607] = {.lex_state = 13, .external_lex_state = 6}, + [2608] = {.lex_state = 11, .external_lex_state = 5}, + [2609] = {.lex_state = 13, .external_lex_state = 6}, + [2610] = {.lex_state = 13, .external_lex_state = 6}, + [2611] = {.lex_state = 13, .external_lex_state = 7}, + [2612] = {.lex_state = 11, .external_lex_state = 5}, + [2613] = {.lex_state = 13, .external_lex_state = 7}, + [2614] = {.lex_state = 13, .external_lex_state = 6}, + [2615] = {.lex_state = 13, .external_lex_state = 6}, + [2616] = {.lex_state = 13, .external_lex_state = 7}, + [2617] = {.lex_state = 13, .external_lex_state = 6}, + [2618] = {.lex_state = 13, .external_lex_state = 7}, + [2619] = {.lex_state = 11, .external_lex_state = 5}, + [2620] = {.lex_state = 13, .external_lex_state = 6}, + [2621] = {.lex_state = 11, .external_lex_state = 5}, + [2622] = {.lex_state = 13, .external_lex_state = 7}, + [2623] = {.lex_state = 13, .external_lex_state = 6}, + [2624] = {.lex_state = 11, .external_lex_state = 5}, + [2625] = {.lex_state = 13, .external_lex_state = 7}, + [2626] = {.lex_state = 13, .external_lex_state = 7}, + [2627] = {.lex_state = 13, .external_lex_state = 7}, + [2628] = {.lex_state = 13, .external_lex_state = 7}, + [2629] = {.lex_state = 13, .external_lex_state = 7}, + [2630] = {.lex_state = 13, .external_lex_state = 7}, + [2631] = {.lex_state = 13, .external_lex_state = 7}, + [2632] = {.lex_state = 13, .external_lex_state = 7}, + [2633] = {.lex_state = 13, .external_lex_state = 7}, + [2634] = {.lex_state = 13, .external_lex_state = 7}, + [2635] = {.lex_state = 13, .external_lex_state = 7}, + [2636] = {.lex_state = 13, .external_lex_state = 7}, + [2637] = {.lex_state = 13, .external_lex_state = 7}, + [2638] = {.lex_state = 13, .external_lex_state = 7}, + [2639] = {.lex_state = 13, .external_lex_state = 7}, + [2640] = {.lex_state = 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 = 6}, + [2644] = {.lex_state = 13, .external_lex_state = 7}, + [2645] = {.lex_state = 13, .external_lex_state = 6}, + [2646] = {.lex_state = 13, .external_lex_state = 7}, + [2647] = {.lex_state = 13, .external_lex_state = 7}, + [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 = 7}, + [2652] = {.lex_state = 13, .external_lex_state = 6}, + [2653] = {.lex_state = 13, .external_lex_state = 7}, + [2654] = {.lex_state = 13, .external_lex_state = 7}, + [2655] = {.lex_state = 13, .external_lex_state = 7}, + [2656] = {.lex_state = 13, .external_lex_state = 7}, + [2657] = {.lex_state = 13, .external_lex_state = 7}, + [2658] = {.lex_state = 13, .external_lex_state = 7}, + [2659] = {.lex_state = 13, .external_lex_state = 7}, + [2660] = {.lex_state = 13, .external_lex_state = 6}, + [2661] = {.lex_state = 13, .external_lex_state = 6}, + [2662] = {.lex_state = 13, .external_lex_state = 7}, + [2663] = {.lex_state = 13, .external_lex_state = 7}, + [2664] = {.lex_state = 13, .external_lex_state = 6}, + [2665] = {.lex_state = 13, .external_lex_state = 7}, + [2666] = {.lex_state = 13, .external_lex_state = 7}, + [2667] = {.lex_state = 13, .external_lex_state = 7}, + [2668] = {.lex_state = 13, .external_lex_state = 7}, + [2669] = {.lex_state = 13, .external_lex_state = 7}, + [2670] = {.lex_state = 13, .external_lex_state = 7}, + [2671] = {.lex_state = 13, .external_lex_state = 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 = 11, .external_lex_state = 5}, + [2679] = {.lex_state = 11, .external_lex_state = 5}, + [2680] = {.lex_state = 13, .external_lex_state = 6}, + [2681] = {.lex_state = 13, .external_lex_state = 6}, + [2682] = {.lex_state = 13, .external_lex_state = 6}, + [2683] = {.lex_state = 13, .external_lex_state = 7}, + [2684] = {.lex_state = 13, .external_lex_state = 6}, + [2685] = {.lex_state = 13, .external_lex_state = 6}, + [2686] = {.lex_state = 13, .external_lex_state = 6}, + [2687] = {.lex_state = 13, .external_lex_state = 6}, + [2688] = {.lex_state = 13, .external_lex_state = 7}, + [2689] = {.lex_state = 13, .external_lex_state = 6}, + [2690] = {.lex_state = 13, .external_lex_state = 6}, + [2691] = {.lex_state = 13, .external_lex_state = 7}, + [2692] = {.lex_state = 13, .external_lex_state = 6}, + [2693] = {.lex_state = 13, .external_lex_state = 6}, + [2694] = {.lex_state = 13, .external_lex_state = 6}, + [2695] = {.lex_state = 13, .external_lex_state = 7}, + [2696] = {.lex_state = 13, .external_lex_state = 6}, + [2697] = {.lex_state = 13, .external_lex_state = 6}, + [2698] = {.lex_state = 13, .external_lex_state = 7}, + [2699] = {.lex_state = 13, .external_lex_state = 7}, + [2700] = {.lex_state = 13, .external_lex_state = 6}, + [2701] = {.lex_state = 13, .external_lex_state = 7}, + [2702] = {.lex_state = 13, .external_lex_state = 6}, + [2703] = {.lex_state = 13, .external_lex_state = 7}, + [2704] = {.lex_state = 13, .external_lex_state = 7}, + [2705] = {.lex_state = 13, .external_lex_state = 6}, + [2706] = {.lex_state = 13, .external_lex_state = 7}, + [2707] = {.lex_state = 13, .external_lex_state = 7}, + [2708] = {.lex_state = 13, .external_lex_state = 6}, + [2709] = {.lex_state = 13, .external_lex_state = 7}, + [2710] = {.lex_state = 13, .external_lex_state = 7}, + [2711] = {.lex_state = 13, .external_lex_state = 6}, + [2712] = {.lex_state = 13, .external_lex_state = 7}, + [2713] = {.lex_state = 13, .external_lex_state = 7}, + [2714] = {.lex_state = 13, .external_lex_state = 7}, + [2715] = {.lex_state = 13, .external_lex_state = 7}, + [2716] = {.lex_state = 13, .external_lex_state = 7}, + [2717] = {.lex_state = 13, .external_lex_state = 6}, + [2718] = {.lex_state = 13, .external_lex_state = 7}, + [2719] = {.lex_state = 13, .external_lex_state = 6}, + [2720] = {.lex_state = 13, .external_lex_state = 6}, + [2721] = {.lex_state = 13, .external_lex_state = 7}, + [2722] = {.lex_state = 13, .external_lex_state = 6}, + [2723] = {.lex_state = 13, .external_lex_state = 7}, + [2724] = {.lex_state = 13, .external_lex_state = 6}, + [2725] = {.lex_state = 13, .external_lex_state = 7}, + [2726] = {.lex_state = 13, .external_lex_state = 7}, + [2727] = {.lex_state = 13, .external_lex_state = 7}, + [2728] = {.lex_state = 13, .external_lex_state = 7}, + [2729] = {.lex_state = 13, .external_lex_state = 6}, + [2730] = {.lex_state = 13, .external_lex_state = 6}, + [2731] = {.lex_state = 13, .external_lex_state = 6}, + [2732] = {.lex_state = 13, .external_lex_state = 6}, + [2733] = {.lex_state = 13, .external_lex_state = 7}, + [2734] = {.lex_state = 13, .external_lex_state = 7}, + [2735] = {.lex_state = 13, .external_lex_state = 7}, + [2736] = {.lex_state = 13, .external_lex_state = 6}, + [2737] = {.lex_state = 13, .external_lex_state = 6}, + [2738] = {.lex_state = 13, .external_lex_state = 6}, + [2739] = {.lex_state = 13, .external_lex_state = 6}, + [2740] = {.lex_state = 13, .external_lex_state = 6}, + [2741] = {.lex_state = 2, .external_lex_state = 4}, + [2742] = {.lex_state = 13, .external_lex_state = 6}, + [2743] = {.lex_state = 13, .external_lex_state = 6}, + [2744] = {.lex_state = 13, .external_lex_state = 6}, + [2745] = {.lex_state = 13, .external_lex_state = 6}, + [2746] = {.lex_state = 13, .external_lex_state = 6}, + [2747] = {.lex_state = 13, .external_lex_state = 6}, + [2748] = {.lex_state = 2, .external_lex_state = 4}, + [2749] = {.lex_state = 13, .external_lex_state = 6}, + [2750] = {.lex_state = 13, .external_lex_state = 6}, + [2751] = {.lex_state = 2, .external_lex_state = 4}, + [2752] = {.lex_state = 13, .external_lex_state = 6}, + [2753] = {.lex_state = 2, .external_lex_state = 4}, + [2754] = {.lex_state = 13, .external_lex_state = 7}, + [2755] = {.lex_state = 13, .external_lex_state = 7}, + [2756] = {.lex_state = 13, .external_lex_state = 7}, + [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}, + [2762] = {.lex_state = 13, .external_lex_state = 7}, + [2763] = {.lex_state = 2, .external_lex_state = 4}, + [2764] = {.lex_state = 13, .external_lex_state = 7}, + [2765] = {.lex_state = 13, .external_lex_state = 7}, + [2766] = {.lex_state = 13, .external_lex_state = 7}, + [2767] = {.lex_state = 13, .external_lex_state = 6}, + [2768] = {.lex_state = 2, .external_lex_state = 4}, + [2769] = {.lex_state = 13, .external_lex_state = 7}, + [2770] = {.lex_state = 13, .external_lex_state = 7}, + [2771] = {.lex_state = 2, .external_lex_state = 4}, + [2772] = {.lex_state = 2, .external_lex_state = 4}, + [2773] = {.lex_state = 13, .external_lex_state = 6}, + [2774] = {.lex_state = 13, .external_lex_state = 6}, + [2775] = {.lex_state = 13, .external_lex_state = 7}, + [2776] = {.lex_state = 13, .external_lex_state = 7}, + [2777] = {.lex_state = 13, .external_lex_state = 7}, + [2778] = {.lex_state = 13, .external_lex_state = 7}, + [2779] = {.lex_state = 13, .external_lex_state = 7}, + [2780] = {.lex_state = 13, .external_lex_state = 7}, + [2781] = {.lex_state = 13, .external_lex_state = 7}, + [2782] = {.lex_state = 13, .external_lex_state = 7}, + [2783] = {.lex_state = 13, .external_lex_state = 7}, + [2784] = {.lex_state = 13, .external_lex_state = 7}, + [2785] = {.lex_state = 13, .external_lex_state = 7}, + [2786] = {.lex_state = 13, .external_lex_state = 7}, + [2787] = {.lex_state = 13, .external_lex_state = 7}, + [2788] = {.lex_state = 13, .external_lex_state = 7}, + [2789] = {.lex_state = 2, .external_lex_state = 4}, + [2790] = {.lex_state = 13, .external_lex_state = 7}, + [2791] = {.lex_state = 2, .external_lex_state = 4}, + [2792] = {.lex_state = 13, .external_lex_state = 7}, + [2793] = {.lex_state = 13, .external_lex_state = 7}, + [2794] = {.lex_state = 13, .external_lex_state = 7}, + [2795] = {.lex_state = 13, .external_lex_state = 6}, + [2796] = {.lex_state = 2, .external_lex_state = 4}, + [2797] = {.lex_state = 13, .external_lex_state = 7}, + [2798] = {.lex_state = 2, .external_lex_state = 4}, + [2799] = {.lex_state = 13, .external_lex_state = 7}, + [2800] = {.lex_state = 13, .external_lex_state = 7}, + [2801] = {.lex_state = 13, .external_lex_state = 7}, + [2802] = {.lex_state = 13, .external_lex_state = 7}, + [2803] = {.lex_state = 2, .external_lex_state = 4}, + [2804] = {.lex_state = 13, .external_lex_state = 7}, + [2805] = {.lex_state = 2, .external_lex_state = 4}, + [2806] = {.lex_state = 13, .external_lex_state = 7}, + [2807] = {.lex_state = 2, .external_lex_state = 4}, + [2808] = {.lex_state = 13, .external_lex_state = 7}, + [2809] = {.lex_state = 2, .external_lex_state = 4}, + [2810] = {.lex_state = 2, .external_lex_state = 4}, + [2811] = {.lex_state = 2, .external_lex_state = 4}, + [2812] = {.lex_state = 2, .external_lex_state = 4}, + [2813] = {.lex_state = 2, .external_lex_state = 4}, + [2814] = {.lex_state = 2, .external_lex_state = 4}, + [2815] = {.lex_state = 13, .external_lex_state = 6}, + [2816] = {.lex_state = 2, .external_lex_state = 4}, + [2817] = {.lex_state = 2, .external_lex_state = 4}, + [2818] = {.lex_state = 2, .external_lex_state = 4}, [2819] = {.lex_state = 2, .external_lex_state = 4}, - [2820] = {.lex_state = 9, .external_lex_state = 6}, - [2821] = {.lex_state = 9, .external_lex_state = 6}, - [2822] = {.lex_state = 9, .external_lex_state = 7}, - [2823] = {.lex_state = 9, .external_lex_state = 7}, - [2824] = {.lex_state = 9, .external_lex_state = 7}, - [2825] = {.lex_state = 9, .external_lex_state = 7}, - [2826] = {.lex_state = 9, .external_lex_state = 7}, - [2827] = {.lex_state = 9, .external_lex_state = 6}, - [2828] = {.lex_state = 2, .external_lex_state = 4}, - [2829] = {.lex_state = 9, .external_lex_state = 7}, + [2820] = {.lex_state = 13, .external_lex_state = 6}, + [2821] = {.lex_state = 2, .external_lex_state = 4}, + [2822] = {.lex_state = 13, .external_lex_state = 6}, + [2823] = {.lex_state = 13, .external_lex_state = 6}, + [2824] = {.lex_state = 2, .external_lex_state = 4}, + [2825] = {.lex_state = 2, .external_lex_state = 4}, + [2826] = {.lex_state = 11, .external_lex_state = 5}, + [2827] = {.lex_state = 13, .external_lex_state = 6}, + [2828] = {.lex_state = 13, .external_lex_state = 6}, + [2829] = {.lex_state = 13, .external_lex_state = 6}, [2830] = {.lex_state = 2, .external_lex_state = 4}, - [2831] = {.lex_state = 2, .external_lex_state = 4}, - [2832] = {.lex_state = 9, .external_lex_state = 6}, + [2831] = {.lex_state = 13, .external_lex_state = 6}, + [2832] = {.lex_state = 2, .external_lex_state = 3}, [2833] = {.lex_state = 2, .external_lex_state = 4}, - [2834] = {.lex_state = 2, .external_lex_state = 4}, - [2835] = {.lex_state = 9, .external_lex_state = 7}, - [2836] = {.lex_state = 2, .external_lex_state = 4}, - [2837] = {.lex_state = 9, .external_lex_state = 7}, - [2838] = {.lex_state = 9, .external_lex_state = 7}, - [2839] = {.lex_state = 9, .external_lex_state = 6}, - [2840] = {.lex_state = 9, .external_lex_state = 7}, - [2841] = {.lex_state = 9, .external_lex_state = 7}, - [2842] = {.lex_state = 9, .external_lex_state = 7}, + [2834] = {.lex_state = 13, .external_lex_state = 6}, + [2835] = {.lex_state = 2, .external_lex_state = 4}, + [2836] = {.lex_state = 13, .external_lex_state = 6}, + [2837] = {.lex_state = 2, .external_lex_state = 4}, + [2838] = {.lex_state = 2, .external_lex_state = 4}, + [2839] = {.lex_state = 2, .external_lex_state = 4}, + [2840] = {.lex_state = 2, .external_lex_state = 4}, + [2841] = {.lex_state = 13, .external_lex_state = 6}, + [2842] = {.lex_state = 2, .external_lex_state = 4}, [2843] = {.lex_state = 2, .external_lex_state = 4}, - [2844] = {.lex_state = 9, .external_lex_state = 6}, - [2845] = {.lex_state = 9, .external_lex_state = 7}, - [2846] = {.lex_state = 9, .external_lex_state = 7}, - [2847] = {.lex_state = 9, .external_lex_state = 7}, - [2848] = {.lex_state = 9, .external_lex_state = 6}, - [2849] = {.lex_state = 9, .external_lex_state = 7}, - [2850] = {.lex_state = 2, .external_lex_state = 4}, + [2844] = {.lex_state = 2, .external_lex_state = 4}, + [2845] = {.lex_state = 11, .external_lex_state = 5}, + [2846] = {.lex_state = 2, .external_lex_state = 4}, + [2847] = {.lex_state = 2, .external_lex_state = 4}, + [2848] = {.lex_state = 2, .external_lex_state = 4}, + [2849] = {.lex_state = 2, .external_lex_state = 4}, + [2850] = {.lex_state = 2, .external_lex_state = 3}, [2851] = {.lex_state = 2, .external_lex_state = 4}, - [2852] = {.lex_state = 9, .external_lex_state = 7}, - [2853] = {.lex_state = 9, .external_lex_state = 6}, + [2852] = {.lex_state = 2, .external_lex_state = 4}, + [2853] = {.lex_state = 11, .external_lex_state = 5}, [2854] = {.lex_state = 2, .external_lex_state = 4}, - [2855] = {.lex_state = 9, .external_lex_state = 7}, - [2856] = {.lex_state = 2, .external_lex_state = 4}, - [2857] = {.lex_state = 9, .external_lex_state = 6}, - [2858] = {.lex_state = 9, .external_lex_state = 7}, - [2859] = {.lex_state = 9, .external_lex_state = 7}, - [2860] = {.lex_state = 9, .external_lex_state = 7}, - [2861] = {.lex_state = 9, .external_lex_state = 7}, - [2862] = {.lex_state = 9, .external_lex_state = 7}, - [2863] = {.lex_state = 9, .external_lex_state = 6}, - [2864] = {.lex_state = 9, .external_lex_state = 7}, - [2865] = {.lex_state = 9, .external_lex_state = 6}, - [2866] = {.lex_state = 9, .external_lex_state = 6}, - [2867] = {.lex_state = 9, .external_lex_state = 6}, - [2868] = {.lex_state = 9, .external_lex_state = 6}, - [2869] = {.lex_state = 9, .external_lex_state = 7}, - [2870] = {.lex_state = 9, .external_lex_state = 7}, - [2871] = {.lex_state = 9, .external_lex_state = 7}, - [2872] = {.lex_state = 9, .external_lex_state = 7}, - [2873] = {.lex_state = 2, .external_lex_state = 4}, - [2874] = {.lex_state = 9, .external_lex_state = 6}, - [2875] = {.lex_state = 9, .external_lex_state = 6}, - [2876] = {.lex_state = 9, .external_lex_state = 6}, - [2877] = {.lex_state = 9, .external_lex_state = 6}, - [2878] = {.lex_state = 9, .external_lex_state = 6}, - [2879] = {.lex_state = 9, .external_lex_state = 6}, - [2880] = {.lex_state = 2, .external_lex_state = 4}, - [2881] = {.lex_state = 9, .external_lex_state = 6}, + [2855] = {.lex_state = 2, .external_lex_state = 4}, + [2856] = {.lex_state = 13, .external_lex_state = 7}, + [2857] = {.lex_state = 13, .external_lex_state = 7}, + [2858] = {.lex_state = 13, .external_lex_state = 6}, + [2859] = {.lex_state = 13, .external_lex_state = 6}, + [2860] = {.lex_state = 2, .external_lex_state = 3}, + [2861] = {.lex_state = 2, .external_lex_state = 3}, + [2862] = {.lex_state = 2, .external_lex_state = 4}, + [2863] = {.lex_state = 13, .external_lex_state = 6}, + [2864] = {.lex_state = 13, .external_lex_state = 6}, + [2865] = {.lex_state = 13, .external_lex_state = 6}, + [2866] = {.lex_state = 2, .external_lex_state = 4}, + [2867] = {.lex_state = 2, .external_lex_state = 4}, + [2868] = {.lex_state = 13, .external_lex_state = 6}, + [2869] = {.lex_state = 13, .external_lex_state = 6}, + [2870] = {.lex_state = 13, .external_lex_state = 6}, + [2871] = {.lex_state = 13, .external_lex_state = 6}, + [2872] = {.lex_state = 13, .external_lex_state = 6}, + [2873] = {.lex_state = 13, .external_lex_state = 6}, + [2874] = {.lex_state = 13, .external_lex_state = 6}, + [2875] = {.lex_state = 13, .external_lex_state = 6}, + [2876] = {.lex_state = 13, .external_lex_state = 6}, + [2877] = {.lex_state = 13, .external_lex_state = 6}, + [2878] = {.lex_state = 13, .external_lex_state = 6}, + [2879] = {.lex_state = 13, .external_lex_state = 6}, + [2880] = {.lex_state = 13, .external_lex_state = 6}, + [2881] = {.lex_state = 11, .external_lex_state = 5}, [2882] = {.lex_state = 2, .external_lex_state = 4}, - [2883] = {.lex_state = 9, .external_lex_state = 6}, - [2884] = {.lex_state = 2, .external_lex_state = 3}, - [2885] = {.lex_state = 2, .external_lex_state = 4}, - [2886] = {.lex_state = 9, .external_lex_state = 6}, - [2887] = {.lex_state = 2, .external_lex_state = 4}, + [2883] = {.lex_state = 13, .external_lex_state = 6}, + [2884] = {.lex_state = 2, .external_lex_state = 4}, + [2885] = {.lex_state = 13, .external_lex_state = 6}, + [2886] = {.lex_state = 13, .external_lex_state = 7}, + [2887] = {.lex_state = 13, .external_lex_state = 7}, [2888] = {.lex_state = 2, .external_lex_state = 4}, - [2889] = {.lex_state = 2, .external_lex_state = 4}, - [2890] = {.lex_state = 9, .external_lex_state = 6}, - [2891] = {.lex_state = 9, .external_lex_state = 6}, - [2892] = {.lex_state = 9, .external_lex_state = 6}, - [2893] = {.lex_state = 2, .external_lex_state = 4}, - [2894] = {.lex_state = 2, .external_lex_state = 4}, - [2895] = {.lex_state = 7, .external_lex_state = 5}, - [2896] = {.lex_state = 9, .external_lex_state = 6}, - [2897] = {.lex_state = 2, .external_lex_state = 4}, - [2898] = {.lex_state = 9, .external_lex_state = 6}, - [2899] = {.lex_state = 9, .external_lex_state = 6}, - [2900] = {.lex_state = 9, .external_lex_state = 6}, + [2889] = {.lex_state = 13, .external_lex_state = 6}, + [2890] = {.lex_state = 2, .external_lex_state = 4}, + [2891] = {.lex_state = 13, .external_lex_state = 7}, + [2892] = {.lex_state = 13, .external_lex_state = 6}, + [2893] = {.lex_state = 13, .external_lex_state = 7}, + [2894] = {.lex_state = 13, .external_lex_state = 7}, + [2895] = {.lex_state = 2, .external_lex_state = 4}, + [2896] = {.lex_state = 2, .external_lex_state = 4}, + [2897] = {.lex_state = 13, .external_lex_state = 6}, + [2898] = {.lex_state = 2, .external_lex_state = 4}, + [2899] = {.lex_state = 13, .external_lex_state = 6}, + [2900] = {.lex_state = 2, .external_lex_state = 4}, [2901] = {.lex_state = 2, .external_lex_state = 4}, - [2902] = {.lex_state = 9, .external_lex_state = 6}, - [2903] = {.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 = 2, .external_lex_state = 4}, - [2905] = {.lex_state = 9, .external_lex_state = 6}, - [2906] = {.lex_state = 7, .external_lex_state = 5}, - [2907] = {.lex_state = 9, .external_lex_state = 6}, - [2908] = {.lex_state = 2, .external_lex_state = 3}, - [2909] = {.lex_state = 9, .external_lex_state = 6}, - [2910] = {.lex_state = 9, .external_lex_state = 6}, - [2911] = {.lex_state = 9, .external_lex_state = 6}, - [2912] = {.lex_state = 2, .external_lex_state = 4}, - [2913] = {.lex_state = 2, .external_lex_state = 4}, + [2905] = {.lex_state = 13, .external_lex_state = 6}, + [2906] = {.lex_state = 13, .external_lex_state = 6}, + [2907] = {.lex_state = 2, .external_lex_state = 4}, + [2908] = {.lex_state = 2, .external_lex_state = 4}, + [2909] = {.lex_state = 13, .external_lex_state = 6}, + [2910] = {.lex_state = 13, .external_lex_state = 6}, + [2911] = {.lex_state = 2, .external_lex_state = 4}, + [2912] = {.lex_state = 13, .external_lex_state = 7}, + [2913] = {.lex_state = 13, .external_lex_state = 7}, [2914] = {.lex_state = 2, .external_lex_state = 4}, - [2915] = {.lex_state = 9, .external_lex_state = 6}, + [2915] = {.lex_state = 2, .external_lex_state = 4}, [2916] = {.lex_state = 2, .external_lex_state = 4}, [2917] = {.lex_state = 2, .external_lex_state = 4}, - [2918] = {.lex_state = 9, .external_lex_state = 7}, + [2918] = {.lex_state = 11, .external_lex_state = 5}, [2919] = {.lex_state = 2, .external_lex_state = 4}, [2920] = {.lex_state = 2, .external_lex_state = 4}, [2921] = {.lex_state = 2, .external_lex_state = 4}, [2922] = {.lex_state = 2, .external_lex_state = 4}, - [2923] = {.lex_state = 9, .external_lex_state = 6}, + [2923] = {.lex_state = 2, .external_lex_state = 4}, [2924] = {.lex_state = 2, .external_lex_state = 4}, [2925] = {.lex_state = 2, .external_lex_state = 4}, - [2926] = {.lex_state = 2, .external_lex_state = 4}, - [2927] = {.lex_state = 9, .external_lex_state = 7}, - [2928] = {.lex_state = 9, .external_lex_state = 6}, - [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 = 2, .external_lex_state = 4}, + [2926] = {.lex_state = 11, .external_lex_state = 5}, + [2927] = {.lex_state = 2, .external_lex_state = 4}, + [2928] = {.lex_state = 11, .external_lex_state = 5}, + [2929] = {.lex_state = 13, .external_lex_state = 7}, + [2930] = {.lex_state = 13, .external_lex_state = 7}, + [2931] = {.lex_state = 13, .external_lex_state = 6}, + [2932] = {.lex_state = 13, .external_lex_state = 7}, [2933] = {.lex_state = 2, .external_lex_state = 4}, [2934] = {.lex_state = 2, .external_lex_state = 4}, [2935] = {.lex_state = 2, .external_lex_state = 4}, - [2936] = {.lex_state = 9, .external_lex_state = 7}, - [2937] = {.lex_state = 2, .external_lex_state = 3}, - [2938] = {.lex_state = 9, .external_lex_state = 7}, - [2939] = {.lex_state = 9, .external_lex_state = 6}, + [2936] = {.lex_state = 2, .external_lex_state = 4}, + [2937] = {.lex_state = 2, .external_lex_state = 4}, + [2938] = {.lex_state = 13, .external_lex_state = 6}, + [2939] = {.lex_state = 13, .external_lex_state = 7}, [2940] = {.lex_state = 2, .external_lex_state = 4}, [2941] = {.lex_state = 2, .external_lex_state = 4}, - [2942] = {.lex_state = 9, .external_lex_state = 6}, - [2943] = {.lex_state = 9, .external_lex_state = 6}, - [2944] = {.lex_state = 9, .external_lex_state = 6}, - [2945] = {.lex_state = 9, .external_lex_state = 6}, + [2942] = {.lex_state = 2, .external_lex_state = 4}, + [2943] = {.lex_state = 13, .external_lex_state = 7}, + [2944] = {.lex_state = 13, .external_lex_state = 7}, + [2945] = {.lex_state = 2, .external_lex_state = 4}, [2946] = {.lex_state = 2, .external_lex_state = 4}, [2947] = {.lex_state = 2, .external_lex_state = 4}, - [2948] = {.lex_state = 2, .external_lex_state = 4}, + [2948] = {.lex_state = 13, .external_lex_state = 7}, [2949] = {.lex_state = 2, .external_lex_state = 4}, [2950] = {.lex_state = 2, .external_lex_state = 4}, - [2951] = {.lex_state = 9, .external_lex_state = 6}, - [2952] = {.lex_state = 2, .external_lex_state = 4}, - [2953] = {.lex_state = 2, .external_lex_state = 4}, - [2954] = {.lex_state = 2, .external_lex_state = 4}, - [2955] = {.lex_state = 9, .external_lex_state = 6}, - [2956] = {.lex_state = 9, .external_lex_state = 6}, + [2951] = {.lex_state = 2, .external_lex_state = 4}, + [2952] = {.lex_state = 13, .external_lex_state = 7}, + [2953] = {.lex_state = 13, .external_lex_state = 7}, + [2954] = {.lex_state = 13, .external_lex_state = 7}, + [2955] = {.lex_state = 13, .external_lex_state = 6}, + [2956] = {.lex_state = 2, .external_lex_state = 4}, [2957] = {.lex_state = 2, .external_lex_state = 4}, - [2958] = {.lex_state = 2, .external_lex_state = 4}, - [2959] = {.lex_state = 2, .external_lex_state = 4}, - [2960] = {.lex_state = 9, .external_lex_state = 6}, - [2961] = {.lex_state = 9, .external_lex_state = 6}, + [2958] = {.lex_state = 13, .external_lex_state = 7}, + [2959] = {.lex_state = 13, .external_lex_state = 7}, + [2960] = {.lex_state = 13, .external_lex_state = 7}, + [2961] = {.lex_state = 13, .external_lex_state = 7}, [2962] = {.lex_state = 2, .external_lex_state = 4}, - [2963] = {.lex_state = 9, .external_lex_state = 6}, - [2964] = {.lex_state = 9, .external_lex_state = 6}, - [2965] = {.lex_state = 9, .external_lex_state = 6}, - [2966] = {.lex_state = 9, .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 = 9, .external_lex_state = 7}, + [2963] = {.lex_state = 13, .external_lex_state = 7}, + [2964] = {.lex_state = 2, .external_lex_state = 4}, + [2965] = {.lex_state = 13, .external_lex_state = 7}, + [2966] = {.lex_state = 13, .external_lex_state = 7}, + [2967] = {.lex_state = 13, .external_lex_state = 7}, + [2968] = {.lex_state = 13, .external_lex_state = 7}, + [2969] = {.lex_state = 13, .external_lex_state = 7}, + [2970] = {.lex_state = 2, .external_lex_state = 4}, [2971] = {.lex_state = 2, .external_lex_state = 4}, [2972] = {.lex_state = 2, .external_lex_state = 4}, - [2973] = {.lex_state = 9, .external_lex_state = 6}, - [2974] = {.lex_state = 2, .external_lex_state = 4}, - [2975] = {.lex_state = 9, .external_lex_state = 6}, - [2976] = {.lex_state = 2, .external_lex_state = 4}, - [2977] = {.lex_state = 9, .external_lex_state = 6}, - [2978] = {.lex_state = 9, .external_lex_state = 6}, - [2979] = {.lex_state = 9, .external_lex_state = 6}, - [2980] = {.lex_state = 9, .external_lex_state = 6}, - [2981] = {.lex_state = 9, .external_lex_state = 6}, - [2982] = {.lex_state = 2, .external_lex_state = 4}, - [2983] = {.lex_state = 9, .external_lex_state = 6}, - [2984] = {.lex_state = 9, .external_lex_state = 6}, - [2985] = {.lex_state = 9, .external_lex_state = 6}, - [2986] = {.lex_state = 2, .external_lex_state = 4}, - [2987] = {.lex_state = 9, .external_lex_state = 6}, - [2988] = {.lex_state = 9, .external_lex_state = 6}, - [2989] = {.lex_state = 9, .external_lex_state = 6}, + [2973] = {.lex_state = 13, .external_lex_state = 6}, + [2974] = {.lex_state = 4, .external_lex_state = 4}, + [2975] = {.lex_state = 2, .external_lex_state = 4}, + [2976] = {.lex_state = 13, .external_lex_state = 7}, + [2977] = {.lex_state = 13, .external_lex_state = 6}, + [2978] = {.lex_state = 13, .external_lex_state = 7}, + [2979] = {.lex_state = 13, .external_lex_state = 6}, + [2980] = {.lex_state = 13, .external_lex_state = 6}, + [2981] = {.lex_state = 2, .external_lex_state = 4}, + [2982] = {.lex_state = 13, .external_lex_state = 7}, + [2983] = {.lex_state = 13, .external_lex_state = 6}, + [2984] = {.lex_state = 13, .external_lex_state = 6}, + [2985] = {.lex_state = 2, .external_lex_state = 4}, + [2986] = {.lex_state = 13, .external_lex_state = 6}, + [2987] = {.lex_state = 2, .external_lex_state = 4}, + [2988] = {.lex_state = 13, .external_lex_state = 6}, + [2989] = {.lex_state = 2, .external_lex_state = 4}, [2990] = {.lex_state = 2, .external_lex_state = 4}, - [2991] = {.lex_state = 2, .external_lex_state = 4}, - [2992] = {.lex_state = 7, .external_lex_state = 5}, + [2991] = {.lex_state = 13, .external_lex_state = 6}, + [2992] = {.lex_state = 2, .external_lex_state = 4}, [2993] = {.lex_state = 2, .external_lex_state = 4}, [2994] = {.lex_state = 2, .external_lex_state = 4}, [2995] = {.lex_state = 2, .external_lex_state = 4}, [2996] = {.lex_state = 2, .external_lex_state = 4}, [2997] = {.lex_state = 2, .external_lex_state = 4}, - [2998] = {.lex_state = 2, .external_lex_state = 4}, + [2998] = {.lex_state = 13, .external_lex_state = 6}, [2999] = {.lex_state = 2, .external_lex_state = 4}, - [3000] = {.lex_state = 2, .external_lex_state = 4}, + [3000] = {.lex_state = 13, .external_lex_state = 6}, [3001] = {.lex_state = 2, .external_lex_state = 4}, [3002] = {.lex_state = 2, .external_lex_state = 4}, [3003] = {.lex_state = 2, .external_lex_state = 4}, - [3004] = {.lex_state = 9, .external_lex_state = 6}, - [3005] = {.lex_state = 9, .external_lex_state = 6}, + [3004] = {.lex_state = 13, .external_lex_state = 7}, + [3005] = {.lex_state = 2, .external_lex_state = 4}, [3006] = {.lex_state = 2, .external_lex_state = 4}, [3007] = {.lex_state = 2, .external_lex_state = 4}, - [3008] = {.lex_state = 9, .external_lex_state = 6}, + [3008] = {.lex_state = 11, .external_lex_state = 5}, [3009] = {.lex_state = 2, .external_lex_state = 4}, [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 = 9, .external_lex_state = 6}, - [3014] = {.lex_state = 2, .external_lex_state = 4}, - [3015] = {.lex_state = 7, .external_lex_state = 5}, - [3016] = {.lex_state = 9, .external_lex_state = 6}, - [3017] = {.lex_state = 9, .external_lex_state = 6}, - [3018] = {.lex_state = 9, .external_lex_state = 6}, - [3019] = {.lex_state = 9, .external_lex_state = 6}, - [3020] = {.lex_state = 9, .external_lex_state = 6}, - [3021] = {.lex_state = 9, .external_lex_state = 6}, - [3022] = {.lex_state = 9, .external_lex_state = 6}, - [3023] = {.lex_state = 9, .external_lex_state = 6}, + [3013] = {.lex_state = 11, .external_lex_state = 5}, + [3014] = {.lex_state = 11, .external_lex_state = 5}, + [3015] = {.lex_state = 2, .external_lex_state = 4}, + [3016] = {.lex_state = 2, .external_lex_state = 4}, + [3017] = {.lex_state = 2, .external_lex_state = 4}, + [3018] = {.lex_state = 13, .external_lex_state = 6}, + [3019] = {.lex_state = 13, .external_lex_state = 6}, + [3020] = {.lex_state = 2, .external_lex_state = 4}, + [3021] = {.lex_state = 13, .external_lex_state = 6}, + [3022] = {.lex_state = 2, .external_lex_state = 4}, + [3023] = {.lex_state = 2, .external_lex_state = 4}, [3024] = {.lex_state = 2, .external_lex_state = 4}, - [3025] = {.lex_state = 7, .external_lex_state = 5}, - [3026] = {.lex_state = 7, .external_lex_state = 5}, - [3027] = {.lex_state = 9, .external_lex_state = 6}, - [3028] = {.lex_state = 10, .external_lex_state = 6}, + [3025] = {.lex_state = 13, .external_lex_state = 6}, + [3026] = {.lex_state = 13, .external_lex_state = 6}, + [3027] = {.lex_state = 2, .external_lex_state = 4}, + [3028] = {.lex_state = 2, .external_lex_state = 4}, [3029] = {.lex_state = 2, .external_lex_state = 4}, - [3030] = {.lex_state = 2, .external_lex_state = 4}, + [3030] = {.lex_state = 11, .external_lex_state = 5}, [3031] = {.lex_state = 2, .external_lex_state = 4}, - [3032] = {.lex_state = 2, .external_lex_state = 4}, - [3033] = {.lex_state = 9, .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 = 10, .external_lex_state = 6}, - [3037] = {.lex_state = 2, .external_lex_state = 4}, - [3038] = {.lex_state = 7, .external_lex_state = 5}, - [3039] = {.lex_state = 9, .external_lex_state = 6}, - [3040] = {.lex_state = 9, .external_lex_state = 6}, - [3041] = {.lex_state = 10, .external_lex_state = 6}, - [3042] = {.lex_state = 10, .external_lex_state = 6}, - [3043] = {.lex_state = 10, .external_lex_state = 6}, - [3044] = {.lex_state = 10, .external_lex_state = 6}, - [3045] = {.lex_state = 10, .external_lex_state = 6}, - [3046] = {.lex_state = 9, .external_lex_state = 6}, + [3035] = {.lex_state = 13, .external_lex_state = 6}, + [3036] = {.lex_state = 2, .external_lex_state = 4}, + [3037] = {.lex_state = 13, .external_lex_state = 6}, + [3038] = {.lex_state = 13, .external_lex_state = 6}, + [3039] = {.lex_state = 2, .external_lex_state = 4}, + [3040] = {.lex_state = 2, .external_lex_state = 4}, + [3041] = {.lex_state = 2, .external_lex_state = 4}, + [3042] = {.lex_state = 2, .external_lex_state = 4}, + [3043] = {.lex_state = 13, .external_lex_state = 6}, + [3044] = {.lex_state = 13, .external_lex_state = 6}, + [3045] = {.lex_state = 13, .external_lex_state = 6}, + [3046] = {.lex_state = 2, .external_lex_state = 4}, [3047] = {.lex_state = 2, .external_lex_state = 4}, - [3048] = {.lex_state = 10, .external_lex_state = 6}, - [3049] = {.lex_state = 10, .external_lex_state = 6}, - [3050] = {.lex_state = 10, .external_lex_state = 6}, - [3051] = {.lex_state = 7, .external_lex_state = 5}, - [3052] = {.lex_state = 9, .external_lex_state = 6}, - [3053] = {.lex_state = 10, .external_lex_state = 6}, - [3054] = {.lex_state = 9, .external_lex_state = 6}, - [3055] = {.lex_state = 9, .external_lex_state = 6}, - [3056] = {.lex_state = 7, .external_lex_state = 5}, - [3057] = {.lex_state = 10, .external_lex_state = 6}, - [3058] = {.lex_state = 9, .external_lex_state = 6}, - [3059] = {.lex_state = 10, .external_lex_state = 6}, - [3060] = {.lex_state = 7, .external_lex_state = 5}, + [3048] = {.lex_state = 2, .external_lex_state = 4}, + [3049] = {.lex_state = 2, .external_lex_state = 4}, + [3050] = {.lex_state = 13, .external_lex_state = 6}, + [3051] = {.lex_state = 2, .external_lex_state = 4}, + [3052] = {.lex_state = 13, .external_lex_state = 6}, + [3053] = {.lex_state = 318, .external_lex_state = 2}, + [3054] = {.lex_state = 13, .external_lex_state = 6}, + [3055] = {.lex_state = 2, .external_lex_state = 4}, + [3056] = {.lex_state = 2, .external_lex_state = 4}, + [3057] = {.lex_state = 2, .external_lex_state = 4}, + [3058] = {.lex_state = 2, .external_lex_state = 4}, + [3059] = {.lex_state = 2, .external_lex_state = 4}, + [3060] = {.lex_state = 2, .external_lex_state = 4}, [3061] = {.lex_state = 2, .external_lex_state = 4}, - [3062] = {.lex_state = 9, .external_lex_state = 6}, - [3063] = {.lex_state = 9, .external_lex_state = 6}, - [3064] = {.lex_state = 9, .external_lex_state = 6}, - [3065] = {.lex_state = 9, .external_lex_state = 6}, - [3066] = {.lex_state = 9, .external_lex_state = 6}, - [3067] = {.lex_state = 9, .external_lex_state = 6}, - [3068] = {.lex_state = 10, .external_lex_state = 6}, - [3069] = {.lex_state = 9, .external_lex_state = 6}, - [3070] = {.lex_state = 2, .external_lex_state = 4}, + [3062] = {.lex_state = 2, .external_lex_state = 4}, + [3063] = {.lex_state = 2, .external_lex_state = 4}, + [3064] = {.lex_state = 11, .external_lex_state = 5}, + [3065] = {.lex_state = 2, .external_lex_state = 4}, + [3066] = {.lex_state = 11, .external_lex_state = 5}, + [3067] = {.lex_state = 2, .external_lex_state = 4}, + [3068] = {.lex_state = 13, .external_lex_state = 6}, + [3069] = {.lex_state = 13, .external_lex_state = 6}, + [3070] = {.lex_state = 13, .external_lex_state = 6}, [3071] = {.lex_state = 2, .external_lex_state = 4}, - [3072] = {.lex_state = 9, .external_lex_state = 6}, + [3072] = {.lex_state = 2, .external_lex_state = 4}, [3073] = {.lex_state = 2, .external_lex_state = 4}, [3074] = {.lex_state = 2, .external_lex_state = 4}, - [3075] = {.lex_state = 9, .external_lex_state = 6}, - [3076] = {.lex_state = 9, .external_lex_state = 6}, - [3077] = {.lex_state = 9, .external_lex_state = 7}, - [3078] = {.lex_state = 9, .external_lex_state = 6}, - [3079] = {.lex_state = 9, .external_lex_state = 6}, + [3075] = {.lex_state = 13, .external_lex_state = 7}, + [3076] = {.lex_state = 2, .external_lex_state = 4}, + [3077] = {.lex_state = 2, .external_lex_state = 4}, + [3078] = {.lex_state = 13, .external_lex_state = 6}, + [3079] = {.lex_state = 2, .external_lex_state = 4}, [3080] = {.lex_state = 2, .external_lex_state = 4}, - [3081] = {.lex_state = 9, .external_lex_state = 6}, - [3082] = {.lex_state = 9, .external_lex_state = 6}, - [3083] = {.lex_state = 9, .external_lex_state = 6}, - [3084] = {.lex_state = 9, .external_lex_state = 6}, - [3085] = {.lex_state = 9, .external_lex_state = 6}, - [3086] = {.lex_state = 9, .external_lex_state = 6}, - [3087] = {.lex_state = 9, .external_lex_state = 6}, + [3081] = {.lex_state = 13, .external_lex_state = 6}, + [3082] = {.lex_state = 2, .external_lex_state = 4}, + [3083] = {.lex_state = 2, .external_lex_state = 4}, + [3084] = {.lex_state = 2, .external_lex_state = 4}, + [3085] = {.lex_state = 2, .external_lex_state = 4}, + [3086] = {.lex_state = 2, .external_lex_state = 4}, + [3087] = {.lex_state = 13, .external_lex_state = 6}, [3088] = {.lex_state = 2, .external_lex_state = 4}, [3089] = {.lex_state = 2, .external_lex_state = 4}, - [3090] = {.lex_state = 9, .external_lex_state = 6}, - [3091] = {.lex_state = 9, .external_lex_state = 6}, - [3092] = {.lex_state = 9, .external_lex_state = 6}, + [3090] = {.lex_state = 2, .external_lex_state = 4}, + [3091] = {.lex_state = 2, .external_lex_state = 4}, + [3092] = {.lex_state = 2, .external_lex_state = 4}, [3093] = {.lex_state = 2, .external_lex_state = 4}, [3094] = {.lex_state = 2, .external_lex_state = 4}, [3095] = {.lex_state = 2, .external_lex_state = 4}, - [3096] = {.lex_state = 9, .external_lex_state = 6}, - [3097] = {.lex_state = 9, .external_lex_state = 6}, - [3098] = {.lex_state = 9, .external_lex_state = 7}, + [3096] = {.lex_state = 13, .external_lex_state = 6}, + [3097] = {.lex_state = 2, .external_lex_state = 4}, + [3098] = {.lex_state = 2, .external_lex_state = 4}, [3099] = {.lex_state = 2, .external_lex_state = 4}, [3100] = {.lex_state = 2, .external_lex_state = 4}, [3101] = {.lex_state = 2, .external_lex_state = 4}, - [3102] = {.lex_state = 9, .external_lex_state = 6}, + [3102] = {.lex_state = 2, .external_lex_state = 4}, [3103] = {.lex_state = 2, .external_lex_state = 4}, - [3104] = {.lex_state = 2, .external_lex_state = 4}, - [3105] = {.lex_state = 9, .external_lex_state = 7}, - [3106] = {.lex_state = 9, .external_lex_state = 6}, - [3107] = {.lex_state = 9, .external_lex_state = 6}, - [3108] = {.lex_state = 9, .external_lex_state = 6}, - [3109] = {.lex_state = 9, .external_lex_state = 7}, + [3104] = {.lex_state = 13, .external_lex_state = 6}, + [3105] = {.lex_state = 2, .external_lex_state = 4}, + [3106] = {.lex_state = 13, .external_lex_state = 6}, + [3107] = {.lex_state = 13, .external_lex_state = 6}, + [3108] = {.lex_state = 13, .external_lex_state = 6}, + [3109] = {.lex_state = 13, .external_lex_state = 6}, [3110] = {.lex_state = 2, .external_lex_state = 4}, [3111] = {.lex_state = 2, .external_lex_state = 4}, [3112] = {.lex_state = 2, .external_lex_state = 4}, - [3113] = {.lex_state = 10, .external_lex_state = 6}, - [3114] = {.lex_state = 9, .external_lex_state = 6}, + [3113] = {.lex_state = 13, .external_lex_state = 6}, + [3114] = {.lex_state = 2, .external_lex_state = 4}, [3115] = {.lex_state = 2, .external_lex_state = 4}, [3116] = {.lex_state = 2, .external_lex_state = 4}, - [3117] = {.lex_state = 9, .external_lex_state = 6}, - [3118] = {.lex_state = 9, .external_lex_state = 6}, - [3119] = {.lex_state = 9, .external_lex_state = 6}, + [3117] = {.lex_state = 13, .external_lex_state = 6}, + [3118] = {.lex_state = 2, .external_lex_state = 4}, + [3119] = {.lex_state = 13, .external_lex_state = 6}, [3120] = {.lex_state = 2, .external_lex_state = 4}, - [3121] = {.lex_state = 10, .external_lex_state = 6}, - [3122] = {.lex_state = 2, .external_lex_state = 4}, - [3123] = {.lex_state = 9, .external_lex_state = 6}, + [3121] = {.lex_state = 2, .external_lex_state = 4}, + [3122] = {.lex_state = 318, .external_lex_state = 2}, + [3123] = {.lex_state = 2, .external_lex_state = 4}, [3124] = {.lex_state = 2, .external_lex_state = 4}, - [3125] = {.lex_state = 10, .external_lex_state = 6}, + [3125] = {.lex_state = 13, .external_lex_state = 6}, [3126] = {.lex_state = 2, .external_lex_state = 4}, [3127] = {.lex_state = 2, .external_lex_state = 4}, - [3128] = {.lex_state = 10, .external_lex_state = 6}, - [3129] = {.lex_state = 9, .external_lex_state = 6}, + [3128] = {.lex_state = 2, .external_lex_state = 4}, + [3129] = {.lex_state = 11, .external_lex_state = 5}, [3130] = {.lex_state = 2, .external_lex_state = 4}, - [3131] = {.lex_state = 307, .external_lex_state = 2}, - [3132] = {.lex_state = 9, .external_lex_state = 6}, + [3131] = {.lex_state = 2, .external_lex_state = 4}, + [3132] = {.lex_state = 2, .external_lex_state = 4}, [3133] = {.lex_state = 2, .external_lex_state = 4}, - [3134] = {.lex_state = 9, .external_lex_state = 6}, - [3135] = {.lex_state = 9, .external_lex_state = 6}, - [3136] = {.lex_state = 9, .external_lex_state = 7}, + [3134] = {.lex_state = 2, .external_lex_state = 4}, + [3135] = {.lex_state = 2, .external_lex_state = 4}, + [3136] = {.lex_state = 13, .external_lex_state = 6}, [3137] = {.lex_state = 2, .external_lex_state = 4}, - [3138] = {.lex_state = 9, .external_lex_state = 6}, - [3139] = {.lex_state = 9, .external_lex_state = 7}, - [3140] = {.lex_state = 9, .external_lex_state = 6}, - [3141] = {.lex_state = 9, .external_lex_state = 7}, - [3142] = {.lex_state = 9, .external_lex_state = 7}, - [3143] = {.lex_state = 9, .external_lex_state = 7}, - [3144] = {.lex_state = 9, .external_lex_state = 7}, - [3145] = {.lex_state = 9, .external_lex_state = 6}, + [3138] = {.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 = 13, .external_lex_state = 6}, + [3143] = {.lex_state = 2, .external_lex_state = 4}, + [3144] = {.lex_state = 2, .external_lex_state = 4}, + [3145] = {.lex_state = 2, .external_lex_state = 4}, [3146] = {.lex_state = 2, .external_lex_state = 4}, - [3147] = {.lex_state = 2, .external_lex_state = 4}, - [3148] = {.lex_state = 9, .external_lex_state = 6}, + [3147] = {.lex_state = 13, .external_lex_state = 6}, + [3148] = {.lex_state = 2, .external_lex_state = 4}, [3149] = {.lex_state = 2, .external_lex_state = 4}, [3150] = {.lex_state = 2, .external_lex_state = 4}, - [3151] = {.lex_state = 9, .external_lex_state = 6}, - [3152] = {.lex_state = 9, .external_lex_state = 6}, - [3153] = {.lex_state = 9, .external_lex_state = 6}, - [3154] = {.lex_state = 9, .external_lex_state = 6}, + [3151] = {.lex_state = 2, .external_lex_state = 4}, + [3152] = {.lex_state = 2, .external_lex_state = 4}, + [3153] = {.lex_state = 2, .external_lex_state = 4}, + [3154] = {.lex_state = 11, .external_lex_state = 5}, [3155] = {.lex_state = 2, .external_lex_state = 4}, - [3156] = {.lex_state = 9, .external_lex_state = 7}, + [3156] = {.lex_state = 2, .external_lex_state = 4}, [3157] = {.lex_state = 2, .external_lex_state = 4}, [3158] = {.lex_state = 2, .external_lex_state = 4}, - [3159] = {.lex_state = 9, .external_lex_state = 7}, + [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}, + [3163] = {.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 = 9, .external_lex_state = 6}, - [3169] = {.lex_state = 9, .external_lex_state = 6}, + [3168] = {.lex_state = 2, .external_lex_state = 4}, + [3169] = {.lex_state = 2, .external_lex_state = 4}, [3170] = {.lex_state = 2, .external_lex_state = 4}, - [3171] = {.lex_state = 9, .external_lex_state = 6}, - [3172] = {.lex_state = 9, .external_lex_state = 6}, + [3171] = {.lex_state = 2, .external_lex_state = 4}, + [3172] = {.lex_state = 13, .external_lex_state = 6}, [3173] = {.lex_state = 2, .external_lex_state = 4}, [3174] = {.lex_state = 2, .external_lex_state = 4}, - [3175] = {.lex_state = 9, .external_lex_state = 6}, - [3176] = {.lex_state = 2, .external_lex_state = 4}, - [3177] = {.lex_state = 9, .external_lex_state = 6}, + [3175] = {.lex_state = 13, .external_lex_state = 6}, + [3176] = {.lex_state = 11, .external_lex_state = 5}, + [3177] = {.lex_state = 11, .external_lex_state = 5}, [3178] = {.lex_state = 2, .external_lex_state = 4}, [3179] = {.lex_state = 2, .external_lex_state = 4}, - [3180] = {.lex_state = 2, .external_lex_state = 4}, + [3180] = {.lex_state = 13, .external_lex_state = 6}, [3181] = {.lex_state = 2, .external_lex_state = 4}, - [3182] = {.lex_state = 9, .external_lex_state = 6}, - [3183] = {.lex_state = 9, .external_lex_state = 7}, - [3184] = {.lex_state = 2, .external_lex_state = 4}, - [3185] = {.lex_state = 9, .external_lex_state = 7}, - [3186] = {.lex_state = 7, .external_lex_state = 5}, - [3187] = {.lex_state = 9, .external_lex_state = 7}, - [3188] = {.lex_state = 9, .external_lex_state = 7}, - [3189] = {.lex_state = 2, .external_lex_state = 4}, + [3182] = {.lex_state = 2, .external_lex_state = 4}, + [3183] = {.lex_state = 13, .external_lex_state = 6}, + [3184] = {.lex_state = 13, .external_lex_state = 6}, + [3185] = {.lex_state = 2, .external_lex_state = 4}, + [3186] = {.lex_state = 2, .external_lex_state = 4}, + [3187] = {.lex_state = 2, .external_lex_state = 4}, + [3188] = {.lex_state = 2, .external_lex_state = 4}, + [3189] = {.lex_state = 13, .external_lex_state = 6}, [3190] = {.lex_state = 2, .external_lex_state = 4}, - [3191] = {.lex_state = 2, .external_lex_state = 4}, - [3192] = {.lex_state = 9, .external_lex_state = 7}, - [3193] = {.lex_state = 9, .external_lex_state = 7}, + [3191] = {.lex_state = 13, .external_lex_state = 6}, + [3192] = {.lex_state = 13, .external_lex_state = 6}, + [3193] = {.lex_state = 13, .external_lex_state = 6}, [3194] = {.lex_state = 2, .external_lex_state = 4}, [3195] = {.lex_state = 2, .external_lex_state = 4}, [3196] = {.lex_state = 2, .external_lex_state = 4}, [3197] = {.lex_state = 2, .external_lex_state = 4}, - [3198] = {.lex_state = 9, .external_lex_state = 7}, - [3199] = {.lex_state = 7, .external_lex_state = 5}, + [3198] = {.lex_state = 2, .external_lex_state = 4}, + [3199] = {.lex_state = 11, .external_lex_state = 5}, [3200] = {.lex_state = 2, .external_lex_state = 4}, [3201] = {.lex_state = 2, .external_lex_state = 4}, - [3202] = {.lex_state = 2, .external_lex_state = 4}, + [3202] = {.lex_state = 13, .external_lex_state = 6}, [3203] = {.lex_state = 2, .external_lex_state = 4}, [3204] = {.lex_state = 2, .external_lex_state = 4}, - [3205] = {.lex_state = 9, .external_lex_state = 7}, + [3205] = {.lex_state = 2, .external_lex_state = 4}, [3206] = {.lex_state = 2, .external_lex_state = 4}, [3207] = {.lex_state = 2, .external_lex_state = 4}, - [3208] = {.lex_state = 2, .external_lex_state = 4}, - [3209] = {.lex_state = 2, .external_lex_state = 4}, - [3210] = {.lex_state = 9, .external_lex_state = 6}, + [3208] = {.lex_state = 13, .external_lex_state = 6}, + [3209] = {.lex_state = 13, .external_lex_state = 6}, + [3210] = {.lex_state = 2, .external_lex_state = 4}, [3211] = {.lex_state = 2, .external_lex_state = 4}, [3212] = {.lex_state = 2, .external_lex_state = 4}, [3213] = {.lex_state = 2, .external_lex_state = 4}, - [3214] = {.lex_state = 2, .external_lex_state = 4}, - [3215] = {.lex_state = 9, .external_lex_state = 6}, - [3216] = {.lex_state = 9, .external_lex_state = 7}, - [3217] = {.lex_state = 9, .external_lex_state = 7}, - [3218] = {.lex_state = 9, .external_lex_state = 7}, + [3214] = {.lex_state = 13, .external_lex_state = 6}, + [3215] = {.lex_state = 2, .external_lex_state = 4}, + [3216] = {.lex_state = 2, .external_lex_state = 4}, + [3217] = {.lex_state = 2, .external_lex_state = 4}, + [3218] = {.lex_state = 13, .external_lex_state = 6}, [3219] = {.lex_state = 2, .external_lex_state = 4}, [3220] = {.lex_state = 2, .external_lex_state = 4}, [3221] = {.lex_state = 2, .external_lex_state = 4}, - [3222] = {.lex_state = 7, .external_lex_state = 5}, - [3223] = {.lex_state = 2, .external_lex_state = 4}, + [3222] = {.lex_state = 13, .external_lex_state = 6}, + [3223] = {.lex_state = 13, .external_lex_state = 6}, [3224] = {.lex_state = 2, .external_lex_state = 4}, - [3225] = {.lex_state = 9, .external_lex_state = 6}, + [3225] = {.lex_state = 2, .external_lex_state = 4}, [3226] = {.lex_state = 2, .external_lex_state = 4}, - [3227] = {.lex_state = 9, .external_lex_state = 6}, + [3227] = {.lex_state = 2, .external_lex_state = 4}, [3228] = {.lex_state = 2, .external_lex_state = 4}, - [3229] = {.lex_state = 9, .external_lex_state = 6}, + [3229] = {.lex_state = 2, .external_lex_state = 4}, [3230] = {.lex_state = 2, .external_lex_state = 4}, - [3231] = {.lex_state = 9, .external_lex_state = 6}, - [3232] = {.lex_state = 9, .external_lex_state = 7}, - [3233] = {.lex_state = 2, .external_lex_state = 4}, + [3231] = {.lex_state = 2, .external_lex_state = 4}, + [3232] = {.lex_state = 2, .external_lex_state = 4}, + [3233] = {.lex_state = 13, .external_lex_state = 6}, [3234] = {.lex_state = 2, .external_lex_state = 4}, [3235] = {.lex_state = 2, .external_lex_state = 4}, [3236] = {.lex_state = 2, .external_lex_state = 4}, - [3237] = {.lex_state = 9, .external_lex_state = 6}, + [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 = 9, .external_lex_state = 6}, + [3240] = {.lex_state = 2, .external_lex_state = 4}, [3241] = {.lex_state = 2, .external_lex_state = 4}, [3242] = {.lex_state = 2, .external_lex_state = 4}, - [3243] = {.lex_state = 9, .external_lex_state = 6}, + [3243] = {.lex_state = 2, .external_lex_state = 4}, [3244] = {.lex_state = 2, .external_lex_state = 4}, [3245] = {.lex_state = 2, .external_lex_state = 4}, [3246] = {.lex_state = 2, .external_lex_state = 4}, [3247] = {.lex_state = 2, .external_lex_state = 4}, [3248] = {.lex_state = 2, .external_lex_state = 4}, [3249] = {.lex_state = 2, .external_lex_state = 4}, - [3250] = {.lex_state = 2, .external_lex_state = 4}, - [3251] = {.lex_state = 9, .external_lex_state = 6}, + [3250] = {.lex_state = 13, .external_lex_state = 6}, + [3251] = {.lex_state = 2, .external_lex_state = 4}, [3252] = {.lex_state = 2, .external_lex_state = 4}, - [3253] = {.lex_state = 2, .external_lex_state = 4}, + [3253] = {.lex_state = 13, .external_lex_state = 6}, [3254] = {.lex_state = 2, .external_lex_state = 4}, - [3255] = {.lex_state = 9, .external_lex_state = 6}, + [3255] = {.lex_state = 2, .external_lex_state = 4}, [3256] = {.lex_state = 2, .external_lex_state = 4}, [3257] = {.lex_state = 2, .external_lex_state = 4}, - [3258] = {.lex_state = 9, .external_lex_state = 7}, - [3259] = {.lex_state = 9, .external_lex_state = 7}, + [3258] = {.lex_state = 2, .external_lex_state = 4}, + [3259] = {.lex_state = 2, .external_lex_state = 4}, [3260] = {.lex_state = 2, .external_lex_state = 4}, - [3261] = {.lex_state = 9, .external_lex_state = 6}, + [3261] = {.lex_state = 11, .external_lex_state = 5}, [3262] = {.lex_state = 2, .external_lex_state = 4}, - [3263] = {.lex_state = 9, .external_lex_state = 6}, + [3263] = {.lex_state = 2, .external_lex_state = 4}, [3264] = {.lex_state = 2, .external_lex_state = 4}, [3265] = {.lex_state = 2, .external_lex_state = 4}, [3266] = {.lex_state = 2, .external_lex_state = 4}, - [3267] = {.lex_state = 9, .external_lex_state = 6}, + [3267] = {.lex_state = 2, .external_lex_state = 4}, [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 = 9, .external_lex_state = 6}, - [3272] = {.lex_state = 9, .external_lex_state = 6}, + [3271] = {.lex_state = 2, .external_lex_state = 4}, + [3272] = {.lex_state = 2, .external_lex_state = 4}, [3273] = {.lex_state = 2, .external_lex_state = 4}, - [3274] = {.lex_state = 9, .external_lex_state = 6}, - [3275] = {.lex_state = 2, .external_lex_state = 4}, - [3276] = {.lex_state = 2, .external_lex_state = 4}, - [3277] = {.lex_state = 2, .external_lex_state = 4}, - [3278] = {.lex_state = 9, .external_lex_state = 6}, - [3279] = {.lex_state = 2, .external_lex_state = 4}, - [3280] = {.lex_state = 9, .external_lex_state = 6}, - [3281] = {.lex_state = 9, .external_lex_state = 6}, - [3282] = {.lex_state = 9, .external_lex_state = 6}, - [3283] = {.lex_state = 2, .external_lex_state = 4}, - [3284] = {.lex_state = 2, .external_lex_state = 4}, - [3285] = {.lex_state = 2, .external_lex_state = 4}, - [3286] = {.lex_state = 9, .external_lex_state = 7}, - [3287] = {.lex_state = 2, .external_lex_state = 4}, - [3288] = {.lex_state = 2, .external_lex_state = 4}, - [3289] = {.lex_state = 2, .external_lex_state = 4}, - [3290] = {.lex_state = 9, .external_lex_state = 6}, - [3291] = {.lex_state = 9, .external_lex_state = 6}, - [3292] = {.lex_state = 2, .external_lex_state = 4}, - [3293] = {.lex_state = 2, .external_lex_state = 4}, - [3294] = {.lex_state = 2, .external_lex_state = 4}, - [3295] = {.lex_state = 9, .external_lex_state = 6}, - [3296] = {.lex_state = 2, .external_lex_state = 4}, - [3297] = {.lex_state = 2, .external_lex_state = 4}, - [3298] = {.lex_state = 2, .external_lex_state = 4}, - [3299] = {.lex_state = 9, .external_lex_state = 6}, - [3300] = {.lex_state = 9, .external_lex_state = 6}, - [3301] = {.lex_state = 9, .external_lex_state = 6}, - [3302] = {.lex_state = 7, .external_lex_state = 5}, - [3303] = {.lex_state = 9, .external_lex_state = 6}, - [3304] = {.lex_state = 9, .external_lex_state = 6}, - [3305] = {.lex_state = 9, .external_lex_state = 6}, - [3306] = {.lex_state = 9, .external_lex_state = 6}, - [3307] = {.lex_state = 9, .external_lex_state = 6}, - [3308] = {.lex_state = 9, .external_lex_state = 7}, - [3309] = {.lex_state = 9, .external_lex_state = 7}, - [3310] = {.lex_state = 9, .external_lex_state = 6}, - [3311] = {.lex_state = 9, .external_lex_state = 6}, - [3312] = {.lex_state = 9, .external_lex_state = 6}, - [3313] = {.lex_state = 9, .external_lex_state = 6}, - [3314] = {.lex_state = 9, .external_lex_state = 6}, - [3315] = {.lex_state = 9, .external_lex_state = 6}, - [3316] = {.lex_state = 9, .external_lex_state = 6}, - [3317] = {.lex_state = 9, .external_lex_state = 6}, - [3318] = {.lex_state = 9, .external_lex_state = 6}, - [3319] = {.lex_state = 9, .external_lex_state = 6}, - [3320] = {.lex_state = 9, .external_lex_state = 6}, - [3321] = {.lex_state = 9, .external_lex_state = 7}, - [3322] = {.lex_state = 7, .external_lex_state = 5}, - [3323] = {.lex_state = 7, .external_lex_state = 5}, - [3324] = {.lex_state = 9, .external_lex_state = 6}, - [3325] = {.lex_state = 9, .external_lex_state = 6}, - [3326] = {.lex_state = 9, .external_lex_state = 6}, - [3327] = {.lex_state = 9, .external_lex_state = 6}, - [3328] = {.lex_state = 9, .external_lex_state = 6}, - [3329] = {.lex_state = 2, .external_lex_state = 4}, - [3330] = {.lex_state = 2, .external_lex_state = 4}, - [3331] = {.lex_state = 9, .external_lex_state = 6}, - [3332] = {.lex_state = 2, .external_lex_state = 4}, - [3333] = {.lex_state = 9, .external_lex_state = 6}, - [3334] = {.lex_state = 2, .external_lex_state = 4}, - [3335] = {.lex_state = 2, .external_lex_state = 4}, - [3336] = {.lex_state = 2, .external_lex_state = 4}, - [3337] = {.lex_state = 2, .external_lex_state = 4}, - [3338] = {.lex_state = 2, .external_lex_state = 4}, - [3339] = {.lex_state = 2, .external_lex_state = 4}, - [3340] = {.lex_state = 2, .external_lex_state = 4}, - [3341] = {.lex_state = 9, .external_lex_state = 6}, - [3342] = {.lex_state = 9, .external_lex_state = 6}, - [3343] = {.lex_state = 2, .external_lex_state = 4}, - [3344] = {.lex_state = 9, .external_lex_state = 6}, - [3345] = {.lex_state = 9, .external_lex_state = 7}, - [3346] = {.lex_state = 9, .external_lex_state = 7}, - [3347] = {.lex_state = 2, .external_lex_state = 4}, - [3348] = {.lex_state = 9, .external_lex_state = 6}, - [3349] = {.lex_state = 2, .external_lex_state = 4}, - [3350] = {.lex_state = 2, .external_lex_state = 4}, - [3351] = {.lex_state = 2, .external_lex_state = 4}, - [3352] = {.lex_state = 2, .external_lex_state = 4}, - [3353] = {.lex_state = 2, .external_lex_state = 4}, - [3354] = {.lex_state = 2, .external_lex_state = 4}, - [3355] = {.lex_state = 9, .external_lex_state = 6}, - [3356] = {.lex_state = 9, .external_lex_state = 6}, - [3357] = {.lex_state = 9, .external_lex_state = 7}, - [3358] = {.lex_state = 2, .external_lex_state = 4}, - [3359] = {.lex_state = 2, .external_lex_state = 4}, - [3360] = {.lex_state = 9, .external_lex_state = 7}, - [3361] = {.lex_state = 9, .external_lex_state = 6}, - [3362] = {.lex_state = 2, .external_lex_state = 4}, - [3363] = {.lex_state = 7, .external_lex_state = 5}, - [3364] = {.lex_state = 2, .external_lex_state = 4}, - [3365] = {.lex_state = 9, .external_lex_state = 6}, - [3366] = {.lex_state = 2, .external_lex_state = 4}, - [3367] = {.lex_state = 2, .external_lex_state = 4}, - [3368] = {.lex_state = 2, .external_lex_state = 4}, - [3369] = {.lex_state = 2, .external_lex_state = 4}, - [3370] = {.lex_state = 9, .external_lex_state = 6}, - [3371] = {.lex_state = 2, .external_lex_state = 4}, - [3372] = {.lex_state = 2, .external_lex_state = 4}, - [3373] = {.lex_state = 2, .external_lex_state = 4}, - [3374] = {.lex_state = 9, .external_lex_state = 6}, - [3375] = {.lex_state = 2, .external_lex_state = 4}, - [3376] = {.lex_state = 9, .external_lex_state = 6}, - [3377] = {.lex_state = 2, .external_lex_state = 4}, - [3378] = {.lex_state = 9, .external_lex_state = 6}, + [3274] = {.lex_state = 2, .external_lex_state = 4}, + [3275] = {.lex_state = 13, .external_lex_state = 7}, + [3276] = {.lex_state = 13, .external_lex_state = 6}, + [3277] = {.lex_state = 14, .external_lex_state = 6}, + [3278] = {.lex_state = 14, .external_lex_state = 6}, + [3279] = {.lex_state = 13, .external_lex_state = 7}, + [3280] = {.lex_state = 13, .external_lex_state = 6}, + [3281] = {.lex_state = 13, .external_lex_state = 6}, + [3282] = {.lex_state = 13, .external_lex_state = 6}, + [3283] = {.lex_state = 13, .external_lex_state = 6}, + [3284] = {.lex_state = 13, .external_lex_state = 6}, + [3285] = {.lex_state = 13, .external_lex_state = 6}, + [3286] = {.lex_state = 14, .external_lex_state = 6}, + [3287] = {.lex_state = 2, .external_lex_state = 3}, + [3288] = {.lex_state = 14, .external_lex_state = 6}, + [3289] = {.lex_state = 14, .external_lex_state = 6}, + [3290] = {.lex_state = 2, .external_lex_state = 3}, + [3291] = {.lex_state = 13, .external_lex_state = 6}, + [3292] = {.lex_state = 13, .external_lex_state = 6}, + [3293] = {.lex_state = 13, .external_lex_state = 6}, + [3294] = {.lex_state = 13, .external_lex_state = 7}, + [3295] = {.lex_state = 13, .external_lex_state = 6}, + [3296] = {.lex_state = 14, .external_lex_state = 6}, + [3297] = {.lex_state = 13, .external_lex_state = 6}, + [3298] = {.lex_state = 13, .external_lex_state = 6}, + [3299] = {.lex_state = 14, .external_lex_state = 6}, + [3300] = {.lex_state = 13, .external_lex_state = 6}, + [3301] = {.lex_state = 13, .external_lex_state = 6}, + [3302] = {.lex_state = 13, .external_lex_state = 6}, + [3303] = {.lex_state = 13, .external_lex_state = 6}, + [3304] = {.lex_state = 13, .external_lex_state = 6}, + [3305] = {.lex_state = 2, .external_lex_state = 4}, + [3306] = {.lex_state = 13, .external_lex_state = 7}, + [3307] = {.lex_state = 13, .external_lex_state = 6}, + [3308] = {.lex_state = 13, .external_lex_state = 7}, + [3309] = {.lex_state = 13, .external_lex_state = 6}, + [3310] = {.lex_state = 14, .external_lex_state = 6}, + [3311] = {.lex_state = 13, .external_lex_state = 6}, + [3312] = {.lex_state = 13, .external_lex_state = 6}, + [3313] = {.lex_state = 13, .external_lex_state = 6}, + [3314] = {.lex_state = 13, .external_lex_state = 6}, + [3315] = {.lex_state = 13, .external_lex_state = 6}, + [3316] = {.lex_state = 13, .external_lex_state = 6}, + [3317] = {.lex_state = 13, .external_lex_state = 6}, + [3318] = {.lex_state = 13, .external_lex_state = 6}, + [3319] = {.lex_state = 13, .external_lex_state = 7}, + [3320] = {.lex_state = 13, .external_lex_state = 6}, + [3321] = {.lex_state = 13, .external_lex_state = 6}, + [3322] = {.lex_state = 2, .external_lex_state = 4}, + [3323] = {.lex_state = 2, .external_lex_state = 4}, + [3324] = {.lex_state = 13, .external_lex_state = 6}, + [3325] = {.lex_state = 13, .external_lex_state = 6}, + [3326] = {.lex_state = 13, .external_lex_state = 6}, + [3327] = {.lex_state = 13, .external_lex_state = 6}, + [3328] = {.lex_state = 14, .external_lex_state = 6}, + [3329] = {.lex_state = 13, .external_lex_state = 6}, + [3330] = {.lex_state = 14, .external_lex_state = 6}, + [3331] = {.lex_state = 15, .external_lex_state = 6}, + [3332] = {.lex_state = 13, .external_lex_state = 7}, + [3333] = {.lex_state = 14, .external_lex_state = 6}, + [3334] = {.lex_state = 13, .external_lex_state = 6}, + [3335] = {.lex_state = 14, .external_lex_state = 6}, + [3336] = {.lex_state = 14, .external_lex_state = 6}, + [3337] = {.lex_state = 14, .external_lex_state = 6}, + [3338] = {.lex_state = 14, .external_lex_state = 6}, + [3339] = {.lex_state = 14, .external_lex_state = 6}, + [3340] = {.lex_state = 14, .external_lex_state = 6}, + [3341] = {.lex_state = 13, .external_lex_state = 6}, + [3342] = {.lex_state = 13, .external_lex_state = 6}, + [3343] = {.lex_state = 13, .external_lex_state = 6}, + [3344] = {.lex_state = 14, .external_lex_state = 6}, + [3345] = {.lex_state = 13, .external_lex_state = 6}, + [3346] = {.lex_state = 13, .external_lex_state = 6}, + [3347] = {.lex_state = 13, .external_lex_state = 7}, + [3348] = {.lex_state = 13, .external_lex_state = 6}, + [3349] = {.lex_state = 13, .external_lex_state = 7}, + [3350] = {.lex_state = 13, .external_lex_state = 7}, + [3351] = {.lex_state = 13, .external_lex_state = 6}, + [3352] = {.lex_state = 13, .external_lex_state = 6}, + [3353] = {.lex_state = 13, .external_lex_state = 6}, + [3354] = {.lex_state = 13, .external_lex_state = 6}, + [3355] = {.lex_state = 13, .external_lex_state = 7}, + [3356] = {.lex_state = 13, .external_lex_state = 6}, + [3357] = {.lex_state = 13, .external_lex_state = 6}, + [3358] = {.lex_state = 13, .external_lex_state = 7}, + [3359] = {.lex_state = 13, .external_lex_state = 6}, + [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}, + [3366] = {.lex_state = 13, .external_lex_state = 6}, + [3367] = {.lex_state = 13, .external_lex_state = 6}, + [3368] = {.lex_state = 13, .external_lex_state = 6}, + [3369] = {.lex_state = 13, .external_lex_state = 6}, + [3370] = {.lex_state = 13, .external_lex_state = 6}, + [3371] = {.lex_state = 13, .external_lex_state = 7}, + [3372] = {.lex_state = 13, .external_lex_state = 7}, + [3373] = {.lex_state = 13, .external_lex_state = 7}, + [3374] = {.lex_state = 13, .external_lex_state = 7}, + [3375] = {.lex_state = 13, .external_lex_state = 7}, + [3376] = {.lex_state = 13, .external_lex_state = 7}, + [3377] = {.lex_state = 13, .external_lex_state = 7}, + [3378] = {.lex_state = 2, .external_lex_state = 4}, [3379] = {.lex_state = 2, .external_lex_state = 4}, - [3380] = {.lex_state = 9, .external_lex_state = 6}, - [3381] = {.lex_state = 9, .external_lex_state = 6}, + [3380] = {.lex_state = 2, .external_lex_state = 4}, + [3381] = {.lex_state = 13, .external_lex_state = 7}, [3382] = {.lex_state = 2, .external_lex_state = 4}, - [3383] = {.lex_state = 9, .external_lex_state = 6}, - [3384] = {.lex_state = 9, .external_lex_state = 6}, - [3385] = {.lex_state = 9, .external_lex_state = 6}, - [3386] = {.lex_state = 2, .external_lex_state = 4}, - [3387] = {.lex_state = 9, .external_lex_state = 6}, - [3388] = {.lex_state = 9, .external_lex_state = 6}, - [3389] = {.lex_state = 9, .external_lex_state = 6}, - [3390] = {.lex_state = 9, .external_lex_state = 6}, - [3391] = {.lex_state = 9, .external_lex_state = 6}, - [3392] = {.lex_state = 9, .external_lex_state = 6}, - [3393] = {.lex_state = 9, .external_lex_state = 6}, - [3394] = {.lex_state = 9, .external_lex_state = 6}, - [3395] = {.lex_state = 9, .external_lex_state = 6}, - [3396] = {.lex_state = 9, .external_lex_state = 7}, - [3397] = {.lex_state = 9, .external_lex_state = 6}, - [3398] = {.lex_state = 7, .external_lex_state = 5}, - [3399] = {.lex_state = 2, .external_lex_state = 4}, - [3400] = {.lex_state = 2, .external_lex_state = 4}, - [3401] = {.lex_state = 9, .external_lex_state = 7}, - [3402] = {.lex_state = 2, .external_lex_state = 4}, - [3403] = {.lex_state = 2, .external_lex_state = 4}, - [3404] = {.lex_state = 2, .external_lex_state = 4}, - [3405] = {.lex_state = 2, .external_lex_state = 4}, - [3406] = {.lex_state = 2, .external_lex_state = 4}, - [3407] = {.lex_state = 2, .external_lex_state = 4}, - [3408] = {.lex_state = 2, .external_lex_state = 4}, + [3383] = {.lex_state = 2, .external_lex_state = 4}, + [3384] = {.lex_state = 13, .external_lex_state = 7}, + [3385] = {.lex_state = 13, .external_lex_state = 6}, + [3386] = {.lex_state = 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 = 7}, + [3391] = {.lex_state = 2, .external_lex_state = 4}, + [3392] = {.lex_state = 13, .external_lex_state = 7}, + [3393] = {.lex_state = 13, .external_lex_state = 7}, + [3394] = {.lex_state = 13, .external_lex_state = 7}, + [3395] = {.lex_state = 13, .external_lex_state = 6}, + [3396] = {.lex_state = 13, .external_lex_state = 6}, + [3397] = {.lex_state = 13, .external_lex_state = 6}, + [3398] = {.lex_state = 13, .external_lex_state = 6}, + [3399] = {.lex_state = 11, .external_lex_state = 5}, + [3400] = {.lex_state = 13, .external_lex_state = 6}, + [3401] = {.lex_state = 13, .external_lex_state = 6}, + [3402] = {.lex_state = 13, .external_lex_state = 6}, + [3403] = {.lex_state = 13, .external_lex_state = 6}, + [3404] = {.lex_state = 13, .external_lex_state = 6}, + [3405] = {.lex_state = 318, .external_lex_state = 2}, + [3406] = {.lex_state = 13, .external_lex_state = 6}, + [3407] = {.lex_state = 11, .external_lex_state = 5}, + [3408] = {.lex_state = 11, .external_lex_state = 5}, [3409] = {.lex_state = 2, .external_lex_state = 4}, - [3410] = {.lex_state = 2, .external_lex_state = 4}, - [3411] = {.lex_state = 9, .external_lex_state = 6}, + [3410] = {.lex_state = 13, .external_lex_state = 6}, + [3411] = {.lex_state = 13, .external_lex_state = 6}, [3412] = {.lex_state = 2, .external_lex_state = 4}, - [3413] = {.lex_state = 2, .external_lex_state = 4}, - [3414] = {.lex_state = 2, .external_lex_state = 4}, - [3415] = {.lex_state = 9, .external_lex_state = 6}, - [3416] = {.lex_state = 2, .external_lex_state = 4}, - [3417] = {.lex_state = 9, .external_lex_state = 7}, - [3418] = {.lex_state = 9, .external_lex_state = 6}, - [3419] = {.lex_state = 2, .external_lex_state = 4}, - [3420] = {.lex_state = 2, .external_lex_state = 4}, - [3421] = {.lex_state = 9, .external_lex_state = 6}, - [3422] = {.lex_state = 2, .external_lex_state = 4}, - [3423] = {.lex_state = 9, .external_lex_state = 6}, - [3424] = {.lex_state = 2, .external_lex_state = 4}, - [3425] = {.lex_state = 2, .external_lex_state = 4}, - [3426] = {.lex_state = 2, .external_lex_state = 4}, - [3427] = {.lex_state = 2, .external_lex_state = 4}, - [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 = 9, .external_lex_state = 6}, - [3432] = {.lex_state = 2, .external_lex_state = 4}, - [3433] = {.lex_state = 9, .external_lex_state = 6}, - [3434] = {.lex_state = 9, .external_lex_state = 7}, - [3435] = {.lex_state = 9, .external_lex_state = 6}, - [3436] = {.lex_state = 9, .external_lex_state = 7}, - [3437] = {.lex_state = 9, .external_lex_state = 6}, - [3438] = {.lex_state = 9, .external_lex_state = 6}, - [3439] = {.lex_state = 9, .external_lex_state = 6}, - [3440] = {.lex_state = 2, .external_lex_state = 4}, - [3441] = {.lex_state = 9, .external_lex_state = 6}, - [3442] = {.lex_state = 9, .external_lex_state = 6}, - [3443] = {.lex_state = 9, .external_lex_state = 6}, - [3444] = {.lex_state = 2, .external_lex_state = 4}, - [3445] = {.lex_state = 9, .external_lex_state = 6}, - [3446] = {.lex_state = 9, .external_lex_state = 6}, - [3447] = {.lex_state = 9, .external_lex_state = 6}, - [3448] = {.lex_state = 9, .external_lex_state = 7}, - [3449] = {.lex_state = 2, .external_lex_state = 4}, - [3450] = {.lex_state = 9, .external_lex_state = 6}, - [3451] = {.lex_state = 9, .external_lex_state = 6}, - [3452] = {.lex_state = 9, .external_lex_state = 6}, - [3453] = {.lex_state = 9, .external_lex_state = 6}, - [3454] = {.lex_state = 9, .external_lex_state = 6}, - [3455] = {.lex_state = 9, .external_lex_state = 7}, - [3456] = {.lex_state = 9, .external_lex_state = 6}, - [3457] = {.lex_state = 9, .external_lex_state = 7}, - [3458] = {.lex_state = 9, .external_lex_state = 6}, - [3459] = {.lex_state = 9, .external_lex_state = 6}, - [3460] = {.lex_state = 9, .external_lex_state = 6}, - [3461] = {.lex_state = 9, .external_lex_state = 7}, - [3462] = {.lex_state = 2, .external_lex_state = 4}, - [3463] = {.lex_state = 9, .external_lex_state = 6}, - [3464] = {.lex_state = 9, .external_lex_state = 6}, - [3465] = {.lex_state = 9, .external_lex_state = 6}, - [3466] = {.lex_state = 2, .external_lex_state = 4}, - [3467] = {.lex_state = 9, .external_lex_state = 6}, - [3468] = {.lex_state = 9, .external_lex_state = 6}, - [3469] = {.lex_state = 9, .external_lex_state = 6}, - [3470] = {.lex_state = 2, .external_lex_state = 4}, - [3471] = {.lex_state = 9, .external_lex_state = 6}, - [3472] = {.lex_state = 9, .external_lex_state = 6}, - [3473] = {.lex_state = 2, .external_lex_state = 4}, - [3474] = {.lex_state = 2, .external_lex_state = 4}, - [3475] = {.lex_state = 9, .external_lex_state = 6}, - [3476] = {.lex_state = 9, .external_lex_state = 6}, - [3477] = {.lex_state = 9, .external_lex_state = 6}, - [3478] = {.lex_state = 9, .external_lex_state = 6}, - [3479] = {.lex_state = 9, .external_lex_state = 6}, - [3480] = {.lex_state = 9, .external_lex_state = 6}, - [3481] = {.lex_state = 9, .external_lex_state = 6}, - [3482] = {.lex_state = 9, .external_lex_state = 6}, - [3483] = {.lex_state = 2, .external_lex_state = 4}, - [3484] = {.lex_state = 2, .external_lex_state = 4}, - [3485] = {.lex_state = 2, .external_lex_state = 4}, - [3486] = {.lex_state = 2, .external_lex_state = 4}, - [3487] = {.lex_state = 9, .external_lex_state = 6}, - [3488] = {.lex_state = 307, .external_lex_state = 2}, - [3489] = {.lex_state = 9, .external_lex_state = 6}, - [3490] = {.lex_state = 9, .external_lex_state = 6}, - [3491] = {.lex_state = 9, .external_lex_state = 6}, - [3492] = {.lex_state = 9, .external_lex_state = 6}, - [3493] = {.lex_state = 9, .external_lex_state = 6}, - [3494] = {.lex_state = 9, .external_lex_state = 6}, - [3495] = {.lex_state = 9, .external_lex_state = 6}, - [3496] = {.lex_state = 9, .external_lex_state = 6}, - [3497] = {.lex_state = 9, .external_lex_state = 6}, - [3498] = {.lex_state = 9, .external_lex_state = 6}, - [3499] = {.lex_state = 9, .external_lex_state = 7}, - [3500] = {.lex_state = 9, .external_lex_state = 6}, - [3501] = {.lex_state = 9, .external_lex_state = 6}, - [3502] = {.lex_state = 2, .external_lex_state = 4}, - [3503] = {.lex_state = 9, .external_lex_state = 6}, - [3504] = {.lex_state = 9, .external_lex_state = 6}, - [3505] = {.lex_state = 9, .external_lex_state = 6}, - [3506] = {.lex_state = 9, .external_lex_state = 6}, - [3507] = {.lex_state = 2, .external_lex_state = 4}, + [3413] = {.lex_state = 13, .external_lex_state = 6}, + [3414] = {.lex_state = 13, .external_lex_state = 6}, + [3415] = {.lex_state = 13, .external_lex_state = 6}, + [3416] = {.lex_state = 13, .external_lex_state = 6}, + [3417] = {.lex_state = 11, .external_lex_state = 5}, + [3418] = {.lex_state = 13, .external_lex_state = 6}, + [3419] = {.lex_state = 13, .external_lex_state = 6}, + [3420] = {.lex_state = 13, .external_lex_state = 6}, + [3421] = {.lex_state = 13, .external_lex_state = 6}, + [3422] = {.lex_state = 13, .external_lex_state = 6}, + [3423] = {.lex_state = 13, .external_lex_state = 6}, + [3424] = {.lex_state = 13, .external_lex_state = 6}, + [3425] = {.lex_state = 13, .external_lex_state = 7}, + [3426] = {.lex_state = 13, .external_lex_state = 6}, + [3427] = {.lex_state = 13, .external_lex_state = 7}, + [3428] = {.lex_state = 13, .external_lex_state = 6}, + [3429] = {.lex_state = 13, .external_lex_state = 7}, + [3430] = {.lex_state = 13, .external_lex_state = 6}, + [3431] = {.lex_state = 13, .external_lex_state = 7}, + [3432] = {.lex_state = 13, .external_lex_state = 7}, + [3433] = {.lex_state = 2, .external_lex_state = 4}, + [3434] = {.lex_state = 2, .external_lex_state = 4}, + [3435] = {.lex_state = 13, .external_lex_state = 6}, + [3436] = {.lex_state = 13, .external_lex_state = 6}, + [3437] = {.lex_state = 13, .external_lex_state = 6}, + [3438] = {.lex_state = 13, .external_lex_state = 6}, + [3439] = {.lex_state = 13, .external_lex_state = 6}, + [3440] = {.lex_state = 13, .external_lex_state = 6}, + [3441] = {.lex_state = 13, .external_lex_state = 6}, + [3442] = {.lex_state = 13, .external_lex_state = 6}, + [3443] = {.lex_state = 2, .external_lex_state = 4}, + [3444] = {.lex_state = 11, .external_lex_state = 5}, + [3445] = {.lex_state = 11, .external_lex_state = 5}, + [3446] = {.lex_state = 11, .external_lex_state = 5}, + [3447] = {.lex_state = 2, .external_lex_state = 4}, + [3448] = {.lex_state = 13, .external_lex_state = 6}, + [3449] = {.lex_state = 13, .external_lex_state = 6}, + [3450] = {.lex_state = 13, .external_lex_state = 6}, + [3451] = {.lex_state = 13, .external_lex_state = 6}, + [3452] = {.lex_state = 13, .external_lex_state = 6}, + [3453] = {.lex_state = 13, .external_lex_state = 6}, + [3454] = {.lex_state = 13, .external_lex_state = 6}, + [3455] = {.lex_state = 13, .external_lex_state = 7}, + [3456] = {.lex_state = 13, .external_lex_state = 6}, + [3457] = {.lex_state = 13, .external_lex_state = 6}, + [3458] = {.lex_state = 13, .external_lex_state = 6}, + [3459] = {.lex_state = 13, .external_lex_state = 6}, + [3460] = {.lex_state = 13, .external_lex_state = 6}, + [3461] = {.lex_state = 13, .external_lex_state = 6}, + [3462] = {.lex_state = 13, .external_lex_state = 7}, + [3463] = {.lex_state = 13, .external_lex_state = 6}, + [3464] = {.lex_state = 13, .external_lex_state = 6}, + [3465] = {.lex_state = 13, .external_lex_state = 6}, + [3466] = {.lex_state = 13, .external_lex_state = 6}, + [3467] = {.lex_state = 13, .external_lex_state = 6}, + [3468] = {.lex_state = 13, .external_lex_state = 6}, + [3469] = {.lex_state = 13, .external_lex_state = 6}, + [3470] = {.lex_state = 13, .external_lex_state = 6}, + [3471] = {.lex_state = 13, .external_lex_state = 6}, + [3472] = {.lex_state = 13, .external_lex_state = 6}, + [3473] = {.lex_state = 13, .external_lex_state = 6}, + [3474] = {.lex_state = 13, .external_lex_state = 6}, + [3475] = {.lex_state = 13, .external_lex_state = 6}, + [3476] = {.lex_state = 13, .external_lex_state = 6}, + [3477] = {.lex_state = 13, .external_lex_state = 6}, + [3478] = {.lex_state = 13, .external_lex_state = 6}, + [3479] = {.lex_state = 13, .external_lex_state = 6}, + [3480] = {.lex_state = 13, .external_lex_state = 6}, + [3481] = {.lex_state = 13, .external_lex_state = 6}, + [3482] = {.lex_state = 13, .external_lex_state = 6}, + [3483] = {.lex_state = 13, .external_lex_state = 6}, + [3484] = {.lex_state = 11, .external_lex_state = 5}, + [3485] = {.lex_state = 13, .external_lex_state = 6}, + [3486] = {.lex_state = 11, .external_lex_state = 5}, + [3487] = {.lex_state = 13, .external_lex_state = 6}, + [3488] = {.lex_state = 13, .external_lex_state = 6}, + [3489] = {.lex_state = 13, .external_lex_state = 6}, + [3490] = {.lex_state = 13, .external_lex_state = 6}, + [3491] = {.lex_state = 13, .external_lex_state = 6}, + [3492] = {.lex_state = 13, .external_lex_state = 6}, + [3493] = {.lex_state = 13, .external_lex_state = 6}, + [3494] = {.lex_state = 13, .external_lex_state = 6}, + [3495] = {.lex_state = 13, .external_lex_state = 6}, + [3496] = {.lex_state = 13, .external_lex_state = 6}, + [3497] = {.lex_state = 13, .external_lex_state = 6}, + [3498] = {.lex_state = 13, .external_lex_state = 6}, + [3499] = {.lex_state = 13, .external_lex_state = 6}, + [3500] = {.lex_state = 13, .external_lex_state = 6}, + [3501] = {.lex_state = 13, .external_lex_state = 6}, + [3502] = {.lex_state = 13, .external_lex_state = 6}, + [3503] = {.lex_state = 13, .external_lex_state = 6}, + [3504] = {.lex_state = 13, .external_lex_state = 6}, + [3505] = {.lex_state = 13, .external_lex_state = 6}, + [3506] = {.lex_state = 2, .external_lex_state = 4}, + [3507] = {.lex_state = 13, .external_lex_state = 6}, [3508] = {.lex_state = 2, .external_lex_state = 4}, - [3509] = {.lex_state = 9, .external_lex_state = 6}, - [3510] = {.lex_state = 9, .external_lex_state = 6}, - [3511] = {.lex_state = 9, .external_lex_state = 6}, - [3512] = {.lex_state = 9, .external_lex_state = 6}, - [3513] = {.lex_state = 9, .external_lex_state = 6}, - [3514] = {.lex_state = 9, .external_lex_state = 6}, - [3515] = {.lex_state = 9, .external_lex_state = 6}, - [3516] = {.lex_state = 9, .external_lex_state = 6}, - [3517] = {.lex_state = 9, .external_lex_state = 6}, - [3518] = {.lex_state = 2, .external_lex_state = 4}, - [3519] = {.lex_state = 2, .external_lex_state = 4}, - [3520] = {.lex_state = 9, .external_lex_state = 6}, - [3521] = {.lex_state = 9, .external_lex_state = 6}, - [3522] = {.lex_state = 9, .external_lex_state = 6}, - [3523] = {.lex_state = 9, .external_lex_state = 6}, - [3524] = {.lex_state = 2, .external_lex_state = 4}, - [3525] = {.lex_state = 9, .external_lex_state = 6}, - [3526] = {.lex_state = 9, .external_lex_state = 6}, - [3527] = {.lex_state = 2, .external_lex_state = 4}, - [3528] = {.lex_state = 9, .external_lex_state = 7}, - [3529] = {.lex_state = 9, .external_lex_state = 7}, - [3530] = {.lex_state = 9, .external_lex_state = 6}, - [3531] = {.lex_state = 9, .external_lex_state = 7}, - [3532] = {.lex_state = 9, .external_lex_state = 7}, - [3533] = {.lex_state = 9, .external_lex_state = 7}, - [3534] = {.lex_state = 9, .external_lex_state = 7}, - [3535] = {.lex_state = 9, .external_lex_state = 7}, - [3536] = {.lex_state = 9, .external_lex_state = 7}, - [3537] = {.lex_state = 9, .external_lex_state = 7}, - [3538] = {.lex_state = 9, .external_lex_state = 7}, - [3539] = {.lex_state = 9, .external_lex_state = 7}, - [3540] = {.lex_state = 9, .external_lex_state = 7}, - [3541] = {.lex_state = 9, .external_lex_state = 7}, - [3542] = {.lex_state = 2, .external_lex_state = 3}, - [3543] = {.lex_state = 2, .external_lex_state = 3}, - [3544] = {.lex_state = 9, .external_lex_state = 7}, - [3545] = {.lex_state = 9, .external_lex_state = 6}, - [3546] = {.lex_state = 9, .external_lex_state = 6}, - [3547] = {.lex_state = 9, .external_lex_state = 7}, - [3548] = {.lex_state = 9, .external_lex_state = 7}, - [3549] = {.lex_state = 9, .external_lex_state = 7}, - [3550] = {.lex_state = 9, .external_lex_state = 7}, - [3551] = {.lex_state = 2, .external_lex_state = 4}, - [3552] = {.lex_state = 9, .external_lex_state = 7}, - [3553] = {.lex_state = 9, .external_lex_state = 7}, - [3554] = {.lex_state = 9, .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}, + [3513] = {.lex_state = 13, .external_lex_state = 6}, + [3514] = {.lex_state = 13, .external_lex_state = 6}, + [3515] = {.lex_state = 318, .external_lex_state = 2}, + [3516] = {.lex_state = 13, .external_lex_state = 6}, + [3517] = {.lex_state = 13, .external_lex_state = 6}, + [3518] = {.lex_state = 11, .external_lex_state = 5}, + [3519] = {.lex_state = 11, .external_lex_state = 5}, + [3520] = {.lex_state = 13, .external_lex_state = 6}, + [3521] = {.lex_state = 13, .external_lex_state = 6}, + [3522] = {.lex_state = 2, .external_lex_state = 4}, + [3523] = {.lex_state = 2, .external_lex_state = 4}, + [3524] = {.lex_state = 13, .external_lex_state = 6}, + [3525] = {.lex_state = 13, .external_lex_state = 6}, + [3526] = {.lex_state = 13, .external_lex_state = 6}, + [3527] = {.lex_state = 13, .external_lex_state = 6}, + [3528] = {.lex_state = 13, .external_lex_state = 6}, + [3529] = {.lex_state = 11, .external_lex_state = 5}, + [3530] = {.lex_state = 13, .external_lex_state = 6}, + [3531] = {.lex_state = 13, .external_lex_state = 6}, + [3532] = {.lex_state = 2, .external_lex_state = 4}, + [3533] = {.lex_state = 13, .external_lex_state = 6}, + [3534] = {.lex_state = 2, .external_lex_state = 4}, + [3535] = {.lex_state = 13, .external_lex_state = 6}, + [3536] = {.lex_state = 13, .external_lex_state = 6}, + [3537] = {.lex_state = 13, .external_lex_state = 6}, + [3538] = {.lex_state = 13, .external_lex_state = 7}, + [3539] = {.lex_state = 13, .external_lex_state = 6}, + [3540] = {.lex_state = 13, .external_lex_state = 6}, + [3541] = {.lex_state = 11, .external_lex_state = 5}, + [3542] = {.lex_state = 13, .external_lex_state = 6}, + [3543] = {.lex_state = 13, .external_lex_state = 6}, + [3544] = {.lex_state = 13, .external_lex_state = 6}, + [3545] = {.lex_state = 13, .external_lex_state = 7}, + [3546] = {.lex_state = 13, .external_lex_state = 6}, + [3547] = {.lex_state = 13, .external_lex_state = 6}, + [3548] = {.lex_state = 13, .external_lex_state = 7}, + [3549] = {.lex_state = 13, .external_lex_state = 6}, + [3550] = {.lex_state = 13, .external_lex_state = 7}, + [3551] = {.lex_state = 13, .external_lex_state = 6}, + [3552] = {.lex_state = 13, .external_lex_state = 6}, + [3553] = {.lex_state = 13, .external_lex_state = 6}, + [3554] = {.lex_state = 318, .external_lex_state = 2}, [3555] = {.lex_state = 2, .external_lex_state = 4}, - [3556] = {.lex_state = 2, .external_lex_state = 4}, - [3557] = {.lex_state = 9, .external_lex_state = 7}, - [3558] = {.lex_state = 2, .external_lex_state = 4}, + [3556] = {.lex_state = 13, .external_lex_state = 7}, + [3557] = {.lex_state = 13, .external_lex_state = 6}, + [3558] = {.lex_state = 13, .external_lex_state = 7}, [3559] = {.lex_state = 2, .external_lex_state = 4}, - [3560] = {.lex_state = 9, .external_lex_state = 7}, - [3561] = {.lex_state = 9, .external_lex_state = 7}, - [3562] = {.lex_state = 9, .external_lex_state = 6}, - [3563] = {.lex_state = 9, .external_lex_state = 7}, - [3564] = {.lex_state = 9, .external_lex_state = 7}, - [3565] = {.lex_state = 9, .external_lex_state = 7}, - [3566] = {.lex_state = 9, .external_lex_state = 7}, - [3567] = {.lex_state = 9, .external_lex_state = 7}, - [3568] = {.lex_state = 9, .external_lex_state = 7}, - [3569] = {.lex_state = 9, .external_lex_state = 7}, - [3570] = {.lex_state = 9, .external_lex_state = 7}, - [3571] = {.lex_state = 9, .external_lex_state = 6}, - [3572] = {.lex_state = 9, .external_lex_state = 6}, - [3573] = {.lex_state = 9, .external_lex_state = 7}, - [3574] = {.lex_state = 9, .external_lex_state = 7}, - [3575] = {.lex_state = 9, .external_lex_state = 7}, - [3576] = {.lex_state = 9, .external_lex_state = 7}, - [3577] = {.lex_state = 9, .external_lex_state = 7}, - [3578] = {.lex_state = 9, .external_lex_state = 7}, - [3579] = {.lex_state = 9, .external_lex_state = 7}, - [3580] = {.lex_state = 9, .external_lex_state = 7}, - [3581] = {.lex_state = 9, .external_lex_state = 7}, - [3582] = {.lex_state = 9, .external_lex_state = 7}, - [3583] = {.lex_state = 9, .external_lex_state = 7}, - [3584] = {.lex_state = 9, .external_lex_state = 6}, - [3585] = {.lex_state = 9, .external_lex_state = 7}, - [3586] = {.lex_state = 9, .external_lex_state = 7}, - [3587] = {.lex_state = 9, .external_lex_state = 7}, - [3588] = {.lex_state = 9, .external_lex_state = 7}, - [3589] = {.lex_state = 9, .external_lex_state = 7}, - [3590] = {.lex_state = 9, .external_lex_state = 7}, - [3591] = {.lex_state = 9, .external_lex_state = 7}, - [3592] = {.lex_state = 9, .external_lex_state = 6}, - [3593] = {.lex_state = 9, .external_lex_state = 7}, - [3594] = {.lex_state = 9, .external_lex_state = 7}, - [3595] = {.lex_state = 9, .external_lex_state = 6}, - [3596] = {.lex_state = 2, .external_lex_state = 4}, - [3597] = {.lex_state = 9, .external_lex_state = 7}, - [3598] = {.lex_state = 9, .external_lex_state = 6}, - [3599] = {.lex_state = 9, .external_lex_state = 6}, - [3600] = {.lex_state = 9, .external_lex_state = 7}, - [3601] = {.lex_state = 9, .external_lex_state = 6}, - [3602] = {.lex_state = 9, .external_lex_state = 7}, - [3603] = {.lex_state = 2, .external_lex_state = 4}, - [3604] = {.lex_state = 9, .external_lex_state = 7}, - [3605] = {.lex_state = 307, .external_lex_state = 2}, - [3606] = {.lex_state = 2, .external_lex_state = 4}, - [3607] = {.lex_state = 2, .external_lex_state = 4}, - [3608] = {.lex_state = 9, .external_lex_state = 7}, - [3609] = {.lex_state = 9, .external_lex_state = 6}, - [3610] = {.lex_state = 9, .external_lex_state = 7}, - [3611] = {.lex_state = 9, .external_lex_state = 6}, + [3560] = {.lex_state = 2, .external_lex_state = 4}, + [3561] = {.lex_state = 2, .external_lex_state = 4}, + [3562] = {.lex_state = 13, .external_lex_state = 6}, + [3563] = {.lex_state = 2, .external_lex_state = 4}, + [3564] = {.lex_state = 2, .external_lex_state = 4}, + [3565] = {.lex_state = 13, .external_lex_state = 6}, + [3566] = {.lex_state = 2, .external_lex_state = 4}, + [3567] = {.lex_state = 13, .external_lex_state = 6}, + [3568] = {.lex_state = 318, .external_lex_state = 2}, + [3569] = {.lex_state = 318, .external_lex_state = 2}, + [3570] = {.lex_state = 2, .external_lex_state = 4}, + [3571] = {.lex_state = 2, .external_lex_state = 4}, + [3572] = {.lex_state = 13, .external_lex_state = 7}, + [3573] = {.lex_state = 13, .external_lex_state = 6}, + [3574] = {.lex_state = 13, .external_lex_state = 7}, + [3575] = {.lex_state = 13, .external_lex_state = 6}, + [3576] = {.lex_state = 13, .external_lex_state = 6}, + [3577] = {.lex_state = 13, .external_lex_state = 6}, + [3578] = {.lex_state = 13, .external_lex_state = 7}, + [3579] = {.lex_state = 13, .external_lex_state = 6}, + [3580] = {.lex_state = 13, .external_lex_state = 6}, + [3581] = {.lex_state = 13, .external_lex_state = 7}, + [3582] = {.lex_state = 13, .external_lex_state = 6}, + [3583] = {.lex_state = 13, .external_lex_state = 6}, + [3584] = {.lex_state = 13, .external_lex_state = 6}, + [3585] = {.lex_state = 13, .external_lex_state = 6}, + [3586] = {.lex_state = 13, .external_lex_state = 6}, + [3587] = {.lex_state = 13, .external_lex_state = 6}, + [3588] = {.lex_state = 13, .external_lex_state = 6}, + [3589] = {.lex_state = 13, .external_lex_state = 6}, + [3590] = {.lex_state = 13, .external_lex_state = 6}, + [3591] = {.lex_state = 13, .external_lex_state = 6}, + [3592] = {.lex_state = 13, .external_lex_state = 6}, + [3593] = {.lex_state = 13, .external_lex_state = 6}, + [3594] = {.lex_state = 13, .external_lex_state = 6}, + [3595] = {.lex_state = 13, .external_lex_state = 7}, + [3596] = {.lex_state = 13, .external_lex_state = 6}, + [3597] = {.lex_state = 13, .external_lex_state = 7}, + [3598] = {.lex_state = 13, .external_lex_state = 6}, + [3599] = {.lex_state = 13, .external_lex_state = 6}, + [3600] = {.lex_state = 13, .external_lex_state = 6}, + [3601] = {.lex_state = 13, .external_lex_state = 6}, + [3602] = {.lex_state = 13, .external_lex_state = 6}, + [3603] = {.lex_state = 13, .external_lex_state = 6}, + [3604] = {.lex_state = 2, .external_lex_state = 4}, + [3605] = {.lex_state = 13, .external_lex_state = 7}, + [3606] = {.lex_state = 11, .external_lex_state = 5}, + [3607] = {.lex_state = 13, .external_lex_state = 7}, + [3608] = {.lex_state = 13, .external_lex_state = 7}, + [3609] = {.lex_state = 13, .external_lex_state = 7}, + [3610] = {.lex_state = 13, .external_lex_state = 7}, + [3611] = {.lex_state = 13, .external_lex_state = 7}, [3612] = {.lex_state = 2, .external_lex_state = 4}, - [3613] = {.lex_state = 9, .external_lex_state = 6}, - [3614] = {.lex_state = 9, .external_lex_state = 6}, - [3615] = {.lex_state = 9, .external_lex_state = 7}, - [3616] = {.lex_state = 2, .external_lex_state = 4}, - [3617] = {.lex_state = 2, .external_lex_state = 4}, - [3618] = {.lex_state = 9, .external_lex_state = 7}, - [3619] = {.lex_state = 9, .external_lex_state = 7}, - [3620] = {.lex_state = 9, .external_lex_state = 7}, - [3621] = {.lex_state = 307, .external_lex_state = 2}, - [3622] = {.lex_state = 9, .external_lex_state = 7}, - [3623] = {.lex_state = 9, .external_lex_state = 7}, - [3624] = {.lex_state = 9, .external_lex_state = 6}, - [3625] = {.lex_state = 9, .external_lex_state = 6}, - [3626] = {.lex_state = 9, .external_lex_state = 6}, - [3627] = {.lex_state = 9, .external_lex_state = 7}, - [3628] = {.lex_state = 9, .external_lex_state = 7}, - [3629] = {.lex_state = 2, .external_lex_state = 4}, - [3630] = {.lex_state = 2, .external_lex_state = 4}, - [3631] = {.lex_state = 9, .external_lex_state = 6}, - [3632] = {.lex_state = 7, .external_lex_state = 5}, - [3633] = {.lex_state = 9, .external_lex_state = 7}, - [3634] = {.lex_state = 9, .external_lex_state = 7}, - [3635] = {.lex_state = 9, .external_lex_state = 7}, - [3636] = {.lex_state = 2, .external_lex_state = 4}, - [3637] = {.lex_state = 2, .external_lex_state = 4}, - [3638] = {.lex_state = 9, .external_lex_state = 7}, - [3639] = {.lex_state = 9, .external_lex_state = 7}, - [3640] = {.lex_state = 9, .external_lex_state = 7}, - [3641] = {.lex_state = 9, .external_lex_state = 7}, - [3642] = {.lex_state = 9, .external_lex_state = 7}, - [3643] = {.lex_state = 9, .external_lex_state = 7}, - [3644] = {.lex_state = 7, .external_lex_state = 5}, - [3645] = {.lex_state = 9, .external_lex_state = 7}, - [3646] = {.lex_state = 9, .external_lex_state = 7}, - [3647] = {.lex_state = 9, .external_lex_state = 7}, - [3648] = {.lex_state = 9, .external_lex_state = 7}, - [3649] = {.lex_state = 9, .external_lex_state = 6}, - [3650] = {.lex_state = 9, .external_lex_state = 7}, - [3651] = {.lex_state = 9, .external_lex_state = 7}, - [3652] = {.lex_state = 9, .external_lex_state = 7}, - [3653] = {.lex_state = 9, .external_lex_state = 7}, - [3654] = {.lex_state = 9, .external_lex_state = 7}, - [3655] = {.lex_state = 9, .external_lex_state = 7}, - [3656] = {.lex_state = 9, .external_lex_state = 7}, - [3657] = {.lex_state = 2, .external_lex_state = 4}, - [3658] = {.lex_state = 9, .external_lex_state = 7}, - [3659] = {.lex_state = 9, .external_lex_state = 7}, - [3660] = {.lex_state = 9, .external_lex_state = 6}, - [3661] = {.lex_state = 9, .external_lex_state = 7}, - [3662] = {.lex_state = 9, .external_lex_state = 7}, - [3663] = {.lex_state = 10, .external_lex_state = 7}, - [3664] = {.lex_state = 10, .external_lex_state = 7}, - [3665] = {.lex_state = 9, .external_lex_state = 7}, - [3666] = {.lex_state = 7, .external_lex_state = 5}, - [3667] = {.lex_state = 9, .external_lex_state = 7}, - [3668] = {.lex_state = 7, .external_lex_state = 5}, - [3669] = {.lex_state = 9, .external_lex_state = 7}, - [3670] = {.lex_state = 2, .external_lex_state = 4}, - [3671] = {.lex_state = 9, .external_lex_state = 7}, - [3672] = {.lex_state = 9, .external_lex_state = 7}, - [3673] = {.lex_state = 9, .external_lex_state = 7}, - [3674] = {.lex_state = 2, .external_lex_state = 4}, - [3675] = {.lex_state = 2, .external_lex_state = 4}, - [3676] = {.lex_state = 2, .external_lex_state = 4}, + [3613] = {.lex_state = 13, .external_lex_state = 7}, + [3614] = {.lex_state = 13, .external_lex_state = 7}, + [3615] = {.lex_state = 13, .external_lex_state = 7}, + [3616] = {.lex_state = 13, .external_lex_state = 7}, + [3617] = {.lex_state = 11, .external_lex_state = 5}, + [3618] = {.lex_state = 11, .external_lex_state = 5}, + [3619] = {.lex_state = 318, .external_lex_state = 2}, + [3620] = {.lex_state = 13, .external_lex_state = 7}, + [3621] = {.lex_state = 2, .external_lex_state = 4}, + [3622] = {.lex_state = 13, .external_lex_state = 7}, + [3623] = {.lex_state = 13, .external_lex_state = 7}, + [3624] = {.lex_state = 13, .external_lex_state = 7}, + [3625] = {.lex_state = 11, .external_lex_state = 5}, + [3626] = {.lex_state = 11, .external_lex_state = 5}, + [3627] = {.lex_state = 13, .external_lex_state = 7}, + [3628] = {.lex_state = 318, .external_lex_state = 2}, + [3629] = {.lex_state = 13, .external_lex_state = 6}, + [3630] = {.lex_state = 13, .external_lex_state = 7}, + [3631] = {.lex_state = 13, .external_lex_state = 7}, + [3632] = {.lex_state = 318, .external_lex_state = 2}, + [3633] = {.lex_state = 13, .external_lex_state = 7}, + [3634] = {.lex_state = 2, .external_lex_state = 4}, + [3635] = {.lex_state = 13, .external_lex_state = 7}, + [3636] = {.lex_state = 13, .external_lex_state = 7}, + [3637] = {.lex_state = 318, .external_lex_state = 2}, + [3638] = {.lex_state = 13, .external_lex_state = 7}, + [3639] = {.lex_state = 13, .external_lex_state = 6}, + [3640] = {.lex_state = 2, .external_lex_state = 4}, + [3641] = {.lex_state = 2, .external_lex_state = 4}, + [3642] = {.lex_state = 11, .external_lex_state = 5}, + [3643] = {.lex_state = 13, .external_lex_state = 7}, + [3644] = {.lex_state = 13, .external_lex_state = 7}, + [3645] = {.lex_state = 2, .external_lex_state = 4}, + [3646] = {.lex_state = 2, .external_lex_state = 4}, + [3647] = {.lex_state = 13, .external_lex_state = 7}, + [3648] = {.lex_state = 318, .external_lex_state = 2}, + [3649] = {.lex_state = 13, .external_lex_state = 7}, + [3650] = {.lex_state = 13, .external_lex_state = 7}, + [3651] = {.lex_state = 13, .external_lex_state = 7}, + [3652] = {.lex_state = 2, .external_lex_state = 4}, + [3653] = {.lex_state = 13, .external_lex_state = 7}, + [3654] = {.lex_state = 2, .external_lex_state = 4}, + [3655] = {.lex_state = 13, .external_lex_state = 7}, + [3656] = {.lex_state = 13, .external_lex_state = 7}, + [3657] = {.lex_state = 11, .external_lex_state = 5}, + [3658] = {.lex_state = 2, .external_lex_state = 3}, + [3659] = {.lex_state = 2, .external_lex_state = 3}, + [3660] = {.lex_state = 13, .external_lex_state = 7}, + [3661] = {.lex_state = 13, .external_lex_state = 7}, + [3662] = {.lex_state = 2, .external_lex_state = 4}, + [3663] = {.lex_state = 13, .external_lex_state = 7}, + [3664] = {.lex_state = 13, .external_lex_state = 7}, + [3665] = {.lex_state = 2, .external_lex_state = 4}, + [3666] = {.lex_state = 13, .external_lex_state = 7}, + [3667] = {.lex_state = 13, .external_lex_state = 7}, + [3668] = {.lex_state = 13, .external_lex_state = 7}, + [3669] = {.lex_state = 13, .external_lex_state = 7}, + [3670] = {.lex_state = 13, .external_lex_state = 7}, + [3671] = {.lex_state = 13, .external_lex_state = 6}, + [3672] = {.lex_state = 13, .external_lex_state = 7}, + [3673] = {.lex_state = 13, .external_lex_state = 7}, + [3674] = {.lex_state = 13, .external_lex_state = 7}, + [3675] = {.lex_state = 13, .external_lex_state = 6}, + [3676] = {.lex_state = 318, .external_lex_state = 2}, [3677] = {.lex_state = 2, .external_lex_state = 4}, - [3678] = {.lex_state = 10, .external_lex_state = 7}, + [3678] = {.lex_state = 13, .external_lex_state = 6}, [3679] = {.lex_state = 2, .external_lex_state = 4}, - [3680] = {.lex_state = 9, .external_lex_state = 6}, - [3681] = {.lex_state = 2, .external_lex_state = 4}, + [3680] = {.lex_state = 11, .external_lex_state = 5}, + [3681] = {.lex_state = 13, .external_lex_state = 6}, [3682] = {.lex_state = 2, .external_lex_state = 4}, - [3683] = {.lex_state = 2, .external_lex_state = 4}, + [3683] = {.lex_state = 13, .external_lex_state = 7}, [3684] = {.lex_state = 2, .external_lex_state = 4}, - [3685] = {.lex_state = 2, .external_lex_state = 4}, - [3686] = {.lex_state = 9, .external_lex_state = 6}, - [3687] = {.lex_state = 9, .external_lex_state = 6}, - [3688] = {.lex_state = 9, .external_lex_state = 6}, - [3689] = {.lex_state = 9, .external_lex_state = 7}, - [3690] = {.lex_state = 9, .external_lex_state = 7}, - [3691] = {.lex_state = 9, .external_lex_state = 6}, - [3692] = {.lex_state = 7, .external_lex_state = 5}, - [3693] = {.lex_state = 9, .external_lex_state = 7}, - [3694] = {.lex_state = 9, .external_lex_state = 7}, - [3695] = {.lex_state = 9, .external_lex_state = 7}, - [3696] = {.lex_state = 9, .external_lex_state = 7}, - [3697] = {.lex_state = 9, .external_lex_state = 7}, - [3698] = {.lex_state = 10, .external_lex_state = 7}, - [3699] = {.lex_state = 7, .external_lex_state = 5}, - [3700] = {.lex_state = 9, .external_lex_state = 7}, - [3701] = {.lex_state = 9, .external_lex_state = 7}, - [3702] = {.lex_state = 9, .external_lex_state = 7}, - [3703] = {.lex_state = 307, .external_lex_state = 2}, - [3704] = {.lex_state = 10, .external_lex_state = 7}, - [3705] = {.lex_state = 10, .external_lex_state = 7}, - [3706] = {.lex_state = 307, .external_lex_state = 2}, - [3707] = {.lex_state = 10, .external_lex_state = 7}, - [3708] = {.lex_state = 7, .external_lex_state = 5}, - [3709] = {.lex_state = 10, .external_lex_state = 7}, - [3710] = {.lex_state = 10, .external_lex_state = 7}, - [3711] = {.lex_state = 10, .external_lex_state = 7}, - [3712] = {.lex_state = 10, .external_lex_state = 7}, - [3713] = {.lex_state = 9, .external_lex_state = 6}, - [3714] = {.lex_state = 7, .external_lex_state = 5}, - [3715] = {.lex_state = 10, .external_lex_state = 7}, - [3716] = {.lex_state = 10, .external_lex_state = 7}, - [3717] = {.lex_state = 7, .external_lex_state = 5}, - [3718] = {.lex_state = 10, .external_lex_state = 7}, - [3719] = {.lex_state = 2, .external_lex_state = 4}, + [3685] = {.lex_state = 13, .external_lex_state = 7}, + [3686] = {.lex_state = 13, .external_lex_state = 7}, + [3687] = {.lex_state = 13, .external_lex_state = 6}, + [3688] = {.lex_state = 318, .external_lex_state = 2}, + [3689] = {.lex_state = 2, .external_lex_state = 4}, + [3690] = {.lex_state = 13, .external_lex_state = 6}, + [3691] = {.lex_state = 13, .external_lex_state = 7}, + [3692] = {.lex_state = 13, .external_lex_state = 7}, + [3693] = {.lex_state = 2, .external_lex_state = 4}, + [3694] = {.lex_state = 13, .external_lex_state = 6}, + [3695] = {.lex_state = 2, .external_lex_state = 4}, + [3696] = {.lex_state = 2, .external_lex_state = 4}, + [3697] = {.lex_state = 2, .external_lex_state = 4}, + [3698] = {.lex_state = 2, .external_lex_state = 4}, + [3699] = {.lex_state = 2, .external_lex_state = 4}, + [3700] = {.lex_state = 13, .external_lex_state = 7}, + [3701] = {.lex_state = 13, .external_lex_state = 7}, + [3702] = {.lex_state = 13, .external_lex_state = 7}, + [3703] = {.lex_state = 2, .external_lex_state = 4}, + [3704] = {.lex_state = 13, .external_lex_state = 7}, + [3705] = {.lex_state = 2, .external_lex_state = 4}, + [3706] = {.lex_state = 2, .external_lex_state = 4}, + [3707] = {.lex_state = 13, .external_lex_state = 6}, + [3708] = {.lex_state = 2, .external_lex_state = 4}, + [3709] = {.lex_state = 13, .external_lex_state = 7}, + [3710] = {.lex_state = 13, .external_lex_state = 6}, + [3711] = {.lex_state = 14, .external_lex_state = 7}, + [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 = 13, .external_lex_state = 7}, + [3716] = {.lex_state = 13, .external_lex_state = 6}, + [3717] = {.lex_state = 13, .external_lex_state = 7}, + [3718] = {.lex_state = 13, .external_lex_state = 7}, + [3719] = {.lex_state = 13, .external_lex_state = 7}, [3720] = {.lex_state = 2, .external_lex_state = 4}, - [3721] = {.lex_state = 2, .external_lex_state = 4}, - [3722] = {.lex_state = 10, .external_lex_state = 7}, - [3723] = {.lex_state = 2, .external_lex_state = 4}, - [3724] = {.lex_state = 7, .external_lex_state = 5}, - [3725] = {.lex_state = 9, .external_lex_state = 7}, - [3726] = {.lex_state = 7, .external_lex_state = 5}, - [3727] = {.lex_state = 10, .external_lex_state = 7}, - [3728] = {.lex_state = 307, .external_lex_state = 2}, - [3729] = {.lex_state = 9, .external_lex_state = 6}, - [3730] = {.lex_state = 9, .external_lex_state = 7}, - [3731] = {.lex_state = 10, .external_lex_state = 7}, - [3732] = {.lex_state = 10, .external_lex_state = 7}, - [3733] = {.lex_state = 9, .external_lex_state = 7}, - [3734] = {.lex_state = 7, .external_lex_state = 5}, - [3735] = {.lex_state = 7, .external_lex_state = 5}, - [3736] = {.lex_state = 9, .external_lex_state = 7}, - [3737] = {.lex_state = 9, .external_lex_state = 7}, - [3738] = {.lex_state = 9, .external_lex_state = 7}, - [3739] = {.lex_state = 9, .external_lex_state = 7}, - [3740] = {.lex_state = 9, .external_lex_state = 7}, - [3741] = {.lex_state = 9, .external_lex_state = 7}, - [3742] = {.lex_state = 307, .external_lex_state = 2}, - [3743] = {.lex_state = 9, .external_lex_state = 7}, - [3744] = {.lex_state = 9, .external_lex_state = 7}, - [3745] = {.lex_state = 9, .external_lex_state = 7}, - [3746] = {.lex_state = 9, .external_lex_state = 7}, - [3747] = {.lex_state = 9, .external_lex_state = 7}, - [3748] = {.lex_state = 9, .external_lex_state = 7}, - [3749] = {.lex_state = 2, .external_lex_state = 4}, - [3750] = {.lex_state = 9, .external_lex_state = 7}, - [3751] = {.lex_state = 9, .external_lex_state = 7}, - [3752] = {.lex_state = 10, .external_lex_state = 6}, - [3753] = {.lex_state = 10, .external_lex_state = 6}, - [3754] = {.lex_state = 2, .external_lex_state = 3}, - [3755] = {.lex_state = 2, .external_lex_state = 4}, - [3756] = {.lex_state = 2, .external_lex_state = 3}, - [3757] = {.lex_state = 2, .external_lex_state = 4}, - [3758] = {.lex_state = 10, .external_lex_state = 6}, - [3759] = {.lex_state = 10, .external_lex_state = 6}, - [3760] = {.lex_state = 9, .external_lex_state = 7}, - [3761] = {.lex_state = 2, .external_lex_state = 4}, - [3762] = {.lex_state = 9, .external_lex_state = 7}, - [3763] = {.lex_state = 2, .external_lex_state = 4}, - [3764] = {.lex_state = 9, .external_lex_state = 7}, + [3721] = {.lex_state = 13, .external_lex_state = 7}, + [3722] = {.lex_state = 13, .external_lex_state = 7}, + [3723] = {.lex_state = 13, .external_lex_state = 7}, + [3724] = {.lex_state = 318, .external_lex_state = 2}, + [3725] = {.lex_state = 11, .external_lex_state = 5}, + [3726] = {.lex_state = 13, .external_lex_state = 6}, + [3727] = {.lex_state = 13, .external_lex_state = 6}, + [3728] = {.lex_state = 13, .external_lex_state = 6}, + [3729] = {.lex_state = 13, .external_lex_state = 6}, + [3730] = {.lex_state = 13, .external_lex_state = 7}, + [3731] = {.lex_state = 13, .external_lex_state = 7}, + [3732] = {.lex_state = 13, .external_lex_state = 6}, + [3733] = {.lex_state = 13, .external_lex_state = 7}, + [3734] = {.lex_state = 13, .external_lex_state = 6}, + [3735] = {.lex_state = 2, .external_lex_state = 4}, + [3736] = {.lex_state = 2, .external_lex_state = 4}, + [3737] = {.lex_state = 13, .external_lex_state = 7}, + [3738] = {.lex_state = 13, .external_lex_state = 6}, + [3739] = {.lex_state = 13, .external_lex_state = 7}, + [3740] = {.lex_state = 13, .external_lex_state = 7}, + [3741] = {.lex_state = 13, .external_lex_state = 7}, + [3742] = {.lex_state = 318, .external_lex_state = 2}, + [3743] = {.lex_state = 13, .external_lex_state = 6}, + [3744] = {.lex_state = 13, .external_lex_state = 6}, + [3745] = {.lex_state = 13, .external_lex_state = 7}, + [3746] = {.lex_state = 13, .external_lex_state = 7}, + [3747] = {.lex_state = 13, .external_lex_state = 7}, + [3748] = {.lex_state = 13, .external_lex_state = 6}, + [3749] = {.lex_state = 13, .external_lex_state = 6}, + [3750] = {.lex_state = 13, .external_lex_state = 6}, + [3751] = {.lex_state = 13, .external_lex_state = 6}, + [3752] = {.lex_state = 13, .external_lex_state = 6}, + [3753] = {.lex_state = 13, .external_lex_state = 7}, + [3754] = {.lex_state = 13, .external_lex_state = 7}, + [3755] = {.lex_state = 14, .external_lex_state = 7}, + [3756] = {.lex_state = 13, .external_lex_state = 7}, + [3757] = {.lex_state = 13, .external_lex_state = 7}, + [3758] = {.lex_state = 2, .external_lex_state = 4}, + [3759] = {.lex_state = 13, .external_lex_state = 6}, + [3760] = {.lex_state = 13, .external_lex_state = 7}, + [3761] = {.lex_state = 13, .external_lex_state = 7}, + [3762] = {.lex_state = 13, .external_lex_state = 6}, + [3763] = {.lex_state = 13, .external_lex_state = 7}, + [3764] = {.lex_state = 2, .external_lex_state = 4}, [3765] = {.lex_state = 2, .external_lex_state = 4}, - [3766] = {.lex_state = 9, .external_lex_state = 7}, - [3767] = {.lex_state = 9, .external_lex_state = 7}, - [3768] = {.lex_state = 9, .external_lex_state = 7}, - [3769] = {.lex_state = 9, .external_lex_state = 7}, - [3770] = {.lex_state = 9, .external_lex_state = 7}, - [3771] = {.lex_state = 2, .external_lex_state = 4}, - [3772] = {.lex_state = 9, .external_lex_state = 7}, - [3773] = {.lex_state = 9, .external_lex_state = 7}, - [3774] = {.lex_state = 9, .external_lex_state = 7}, - [3775] = {.lex_state = 9, .external_lex_state = 7}, - [3776] = {.lex_state = 9, .external_lex_state = 7}, - [3777] = {.lex_state = 9, .external_lex_state = 7}, - [3778] = {.lex_state = 9, .external_lex_state = 7}, - [3779] = {.lex_state = 9, .external_lex_state = 7}, - [3780] = {.lex_state = 9, .external_lex_state = 7}, - [3781] = {.lex_state = 9, .external_lex_state = 7}, - [3782] = {.lex_state = 9, .external_lex_state = 7}, - [3783] = {.lex_state = 9, .external_lex_state = 6}, - [3784] = {.lex_state = 9, .external_lex_state = 7}, - [3785] = {.lex_state = 9, .external_lex_state = 7}, - [3786] = {.lex_state = 9, .external_lex_state = 6}, - [3787] = {.lex_state = 9, .external_lex_state = 7}, - [3788] = {.lex_state = 9, .external_lex_state = 7}, - [3789] = {.lex_state = 9, .external_lex_state = 6}, - [3790] = {.lex_state = 9, .external_lex_state = 7}, - [3791] = {.lex_state = 9, .external_lex_state = 6}, - [3792] = {.lex_state = 9, .external_lex_state = 7}, - [3793] = {.lex_state = 2, .external_lex_state = 4}, - [3794] = {.lex_state = 9, .external_lex_state = 6}, - [3795] = {.lex_state = 9, .external_lex_state = 7}, - [3796] = {.lex_state = 9, .external_lex_state = 7}, - [3797] = {.lex_state = 9, .external_lex_state = 6}, - [3798] = {.lex_state = 9, .external_lex_state = 6}, - [3799] = {.lex_state = 9, .external_lex_state = 7}, - [3800] = {.lex_state = 9, .external_lex_state = 7}, - [3801] = {.lex_state = 9, .external_lex_state = 7}, - [3802] = {.lex_state = 9, .external_lex_state = 6}, - [3803] = {.lex_state = 9, .external_lex_state = 7}, - [3804] = {.lex_state = 9, .external_lex_state = 7}, - [3805] = {.lex_state = 9, .external_lex_state = 7}, - [3806] = {.lex_state = 9, .external_lex_state = 7}, - [3807] = {.lex_state = 9, .external_lex_state = 7}, + [3766] = {.lex_state = 13, .external_lex_state = 7}, + [3767] = {.lex_state = 2, .external_lex_state = 4}, + [3768] = {.lex_state = 14, .external_lex_state = 7}, + [3769] = {.lex_state = 13, .external_lex_state = 7}, + [3770] = {.lex_state = 13, .external_lex_state = 6}, + [3771] = {.lex_state = 14, .external_lex_state = 7}, + [3772] = {.lex_state = 13, .external_lex_state = 7}, + [3773] = {.lex_state = 14, .external_lex_state = 7}, + [3774] = {.lex_state = 14, .external_lex_state = 7}, + [3775] = {.lex_state = 13, .external_lex_state = 7}, + [3776] = {.lex_state = 14, .external_lex_state = 7}, + [3777] = {.lex_state = 14, .external_lex_state = 7}, + [3778] = {.lex_state = 318, .external_lex_state = 2}, + [3779] = {.lex_state = 14, .external_lex_state = 7}, + [3780] = {.lex_state = 14, .external_lex_state = 7}, + [3781] = {.lex_state = 13, .external_lex_state = 7}, + [3782] = {.lex_state = 13, .external_lex_state = 7}, + [3783] = {.lex_state = 2, .external_lex_state = 4}, + [3784] = {.lex_state = 14, .external_lex_state = 7}, + [3785] = {.lex_state = 14, .external_lex_state = 7}, + [3786] = {.lex_state = 13, .external_lex_state = 7}, + [3787] = {.lex_state = 14, .external_lex_state = 7}, + [3788] = {.lex_state = 14, .external_lex_state = 7}, + [3789] = {.lex_state = 14, .external_lex_state = 7}, + [3790] = {.lex_state = 318, .external_lex_state = 2}, + [3791] = {.lex_state = 13, .external_lex_state = 7}, + [3792] = {.lex_state = 14, .external_lex_state = 7}, + [3793] = {.lex_state = 13, .external_lex_state = 7}, + [3794] = {.lex_state = 13, .external_lex_state = 7}, + [3795] = {.lex_state = 13, .external_lex_state = 7}, + [3796] = {.lex_state = 2, .external_lex_state = 4}, + [3797] = {.lex_state = 2, .external_lex_state = 4}, + [3798] = {.lex_state = 2, .external_lex_state = 4}, + [3799] = {.lex_state = 13, .external_lex_state = 7}, + [3800] = {.lex_state = 13, .external_lex_state = 7}, + [3801] = {.lex_state = 13, .external_lex_state = 7}, + [3802] = {.lex_state = 13, .external_lex_state = 7}, + [3803] = {.lex_state = 13, .external_lex_state = 7}, + [3804] = {.lex_state = 11, .external_lex_state = 5}, + [3805] = {.lex_state = 13, .external_lex_state = 7}, + [3806] = {.lex_state = 318, .external_lex_state = 2}, + [3807] = {.lex_state = 13, .external_lex_state = 7}, [3808] = {.lex_state = 2, .external_lex_state = 4}, - [3809] = {.lex_state = 9, .external_lex_state = 7}, - [3810] = {.lex_state = 7, .external_lex_state = 5}, - [3811] = {.lex_state = 2, .external_lex_state = 4}, - [3812] = {.lex_state = 9, .external_lex_state = 6}, - [3813] = {.lex_state = 2, .external_lex_state = 4}, - [3814] = {.lex_state = 7, .external_lex_state = 5}, - [3815] = {.lex_state = 2, .external_lex_state = 4}, - [3816] = {.lex_state = 9, .external_lex_state = 6}, - [3817] = {.lex_state = 10, .external_lex_state = 6}, - [3818] = {.lex_state = 2, .external_lex_state = 4}, - [3819] = {.lex_state = 9, .external_lex_state = 7}, - [3820] = {.lex_state = 9, .external_lex_state = 7}, - [3821] = {.lex_state = 9, .external_lex_state = 6}, - [3822] = {.lex_state = 9, .external_lex_state = 7}, - [3823] = {.lex_state = 9, .external_lex_state = 7}, - [3824] = {.lex_state = 9, .external_lex_state = 7}, - [3825] = {.lex_state = 10, .external_lex_state = 6}, - [3826] = {.lex_state = 2, .external_lex_state = 4}, - [3827] = {.lex_state = 9, .external_lex_state = 7}, - [3828] = {.lex_state = 9, .external_lex_state = 7}, - [3829] = {.lex_state = 10, .external_lex_state = 6}, - [3830] = {.lex_state = 10, .external_lex_state = 6}, - [3831] = {.lex_state = 9, .external_lex_state = 7}, - [3832] = {.lex_state = 9, .external_lex_state = 7}, - [3833] = {.lex_state = 9, .external_lex_state = 7}, - [3834] = {.lex_state = 9, .external_lex_state = 7}, - [3835] = {.lex_state = 10, .external_lex_state = 6}, - [3836] = {.lex_state = 9, .external_lex_state = 7}, - [3837] = {.lex_state = 10, .external_lex_state = 6}, - [3838] = {.lex_state = 10, .external_lex_state = 6}, - [3839] = {.lex_state = 10, .external_lex_state = 6}, - [3840] = {.lex_state = 9, .external_lex_state = 7}, - [3841] = {.lex_state = 10, .external_lex_state = 6}, - [3842] = {.lex_state = 10, .external_lex_state = 6}, - [3843] = {.lex_state = 10, .external_lex_state = 6}, - [3844] = {.lex_state = 9, .external_lex_state = 7}, - [3845] = {.lex_state = 9, .external_lex_state = 7}, - [3846] = {.lex_state = 9, .external_lex_state = 6}, - [3847] = {.lex_state = 9, .external_lex_state = 7}, - [3848] = {.lex_state = 9, .external_lex_state = 7}, - [3849] = {.lex_state = 9, .external_lex_state = 7}, - [3850] = {.lex_state = 9, .external_lex_state = 7}, - [3851] = {.lex_state = 9, .external_lex_state = 7}, - [3852] = {.lex_state = 9, .external_lex_state = 7}, - [3853] = {.lex_state = 9, .external_lex_state = 7}, - [3854] = {.lex_state = 2, .external_lex_state = 4}, - [3855] = {.lex_state = 9, .external_lex_state = 7}, - [3856] = {.lex_state = 9, .external_lex_state = 7}, - [3857] = {.lex_state = 9, .external_lex_state = 6}, - [3858] = {.lex_state = 9, .external_lex_state = 7}, - [3859] = {.lex_state = 9, .external_lex_state = 7}, - [3860] = {.lex_state = 9, .external_lex_state = 7}, - [3861] = {.lex_state = 9, .external_lex_state = 7}, - [3862] = {.lex_state = 307, .external_lex_state = 2}, - [3863] = {.lex_state = 9, .external_lex_state = 6}, - [3864] = {.lex_state = 9, .external_lex_state = 7}, - [3865] = {.lex_state = 9, .external_lex_state = 6}, - [3866] = {.lex_state = 9, .external_lex_state = 7}, - [3867] = {.lex_state = 9, .external_lex_state = 7}, - [3868] = {.lex_state = 9, .external_lex_state = 7}, - [3869] = {.lex_state = 9, .external_lex_state = 7}, - [3870] = {.lex_state = 9, .external_lex_state = 7}, - [3871] = {.lex_state = 9, .external_lex_state = 7}, - [3872] = {.lex_state = 9, .external_lex_state = 7}, - [3873] = {.lex_state = 9, .external_lex_state = 7}, - [3874] = {.lex_state = 9, .external_lex_state = 7}, - [3875] = {.lex_state = 9, .external_lex_state = 7}, - [3876] = {.lex_state = 9, .external_lex_state = 7}, - [3877] = {.lex_state = 9, .external_lex_state = 7}, - [3878] = {.lex_state = 9, .external_lex_state = 7}, - [3879] = {.lex_state = 9, .external_lex_state = 7}, - [3880] = {.lex_state = 9, .external_lex_state = 7}, - [3881] = {.lex_state = 9, .external_lex_state = 7}, - [3882] = {.lex_state = 9, .external_lex_state = 7}, - [3883] = {.lex_state = 9, .external_lex_state = 7}, - [3884] = {.lex_state = 9, .external_lex_state = 7}, - [3885] = {.lex_state = 9, .external_lex_state = 7}, - [3886] = {.lex_state = 9, .external_lex_state = 7}, - [3887] = {.lex_state = 9, .external_lex_state = 7}, - [3888] = {.lex_state = 9, .external_lex_state = 7}, - [3889] = {.lex_state = 9, .external_lex_state = 7}, - [3890] = {.lex_state = 9, .external_lex_state = 7}, - [3891] = {.lex_state = 7, .external_lex_state = 5}, - [3892] = {.lex_state = 7, .external_lex_state = 5}, - [3893] = {.lex_state = 9, .external_lex_state = 7}, - [3894] = {.lex_state = 2, .external_lex_state = 4}, - [3895] = {.lex_state = 2, .external_lex_state = 4}, - [3896] = {.lex_state = 9, .external_lex_state = 7}, - [3897] = {.lex_state = 9, .external_lex_state = 7}, - [3898] = {.lex_state = 9, .external_lex_state = 7}, - [3899] = {.lex_state = 9, .external_lex_state = 7}, - [3900] = {.lex_state = 9, .external_lex_state = 7}, - [3901] = {.lex_state = 9, .external_lex_state = 7}, - [3902] = {.lex_state = 7, .external_lex_state = 5}, - [3903] = {.lex_state = 307, .external_lex_state = 2}, - [3904] = {.lex_state = 7, .external_lex_state = 5}, - [3905] = {.lex_state = 9, .external_lex_state = 7}, - [3906] = {.lex_state = 9, .external_lex_state = 7}, - [3907] = {.lex_state = 9, .external_lex_state = 6}, - [3908] = {.lex_state = 9, .external_lex_state = 7}, - [3909] = {.lex_state = 2, .external_lex_state = 4}, - [3910] = {.lex_state = 9, .external_lex_state = 7}, - [3911] = {.lex_state = 9, .external_lex_state = 7}, - [3912] = {.lex_state = 307, .external_lex_state = 2}, - [3913] = {.lex_state = 9, .external_lex_state = 7}, - [3914] = {.lex_state = 9, .external_lex_state = 7}, - [3915] = {.lex_state = 9, .external_lex_state = 7}, - [3916] = {.lex_state = 9, .external_lex_state = 6}, - [3917] = {.lex_state = 9, .external_lex_state = 7}, - [3918] = {.lex_state = 9, .external_lex_state = 7}, - [3919] = {.lex_state = 9, .external_lex_state = 6}, - [3920] = {.lex_state = 9, .external_lex_state = 7}, - [3921] = {.lex_state = 9, .external_lex_state = 7}, - [3922] = {.lex_state = 9, .external_lex_state = 7}, - [3923] = {.lex_state = 307, .external_lex_state = 2}, - [3924] = {.lex_state = 9, .external_lex_state = 7}, - [3925] = {.lex_state = 9, .external_lex_state = 7}, - [3926] = {.lex_state = 9, .external_lex_state = 7}, - [3927] = {.lex_state = 9, .external_lex_state = 7}, - [3928] = {.lex_state = 9, .external_lex_state = 7}, - [3929] = {.lex_state = 9, .external_lex_state = 7}, - [3930] = {.lex_state = 307, .external_lex_state = 2}, - [3931] = {.lex_state = 9, .external_lex_state = 7}, - [3932] = {.lex_state = 2, .external_lex_state = 4}, - [3933] = {.lex_state = 9, .external_lex_state = 7}, - [3934] = {.lex_state = 9, .external_lex_state = 7}, - [3935] = {.lex_state = 2, .external_lex_state = 4}, - [3936] = {.lex_state = 9, .external_lex_state = 7}, - [3937] = {.lex_state = 9, .external_lex_state = 7}, - [3938] = {.lex_state = 9, .external_lex_state = 7}, - [3939] = {.lex_state = 9, .external_lex_state = 7}, - [3940] = {.lex_state = 9, .external_lex_state = 7}, - [3941] = {.lex_state = 9, .external_lex_state = 7}, - [3942] = {.lex_state = 9, .external_lex_state = 7}, - [3943] = {.lex_state = 9, .external_lex_state = 7}, - [3944] = {.lex_state = 10, .external_lex_state = 6}, - [3945] = {.lex_state = 9, .external_lex_state = 7}, - [3946] = {.lex_state = 9, .external_lex_state = 7}, - [3947] = {.lex_state = 2, .external_lex_state = 4}, - [3948] = {.lex_state = 2, .external_lex_state = 4}, - [3949] = {.lex_state = 2, .external_lex_state = 4}, - [3950] = {.lex_state = 9, .external_lex_state = 7}, - [3951] = {.lex_state = 9, .external_lex_state = 7}, - [3952] = {.lex_state = 9, .external_lex_state = 7}, - [3953] = {.lex_state = 10, .external_lex_state = 6}, - [3954] = {.lex_state = 7, .external_lex_state = 5}, - [3955] = {.lex_state = 9, .external_lex_state = 7}, - [3956] = {.lex_state = 2, .external_lex_state = 4}, - [3957] = {.lex_state = 9, .external_lex_state = 7}, - [3958] = {.lex_state = 2, .external_lex_state = 4}, - [3959] = {.lex_state = 9, .external_lex_state = 7}, - [3960] = {.lex_state = 2, .external_lex_state = 4}, - [3961] = {.lex_state = 2, .external_lex_state = 4}, - [3962] = {.lex_state = 9, .external_lex_state = 7}, - [3963] = {.lex_state = 9, .external_lex_state = 7}, - [3964] = {.lex_state = 9, .external_lex_state = 7}, - [3965] = {.lex_state = 9, .external_lex_state = 7}, - [3966] = {.lex_state = 9, .external_lex_state = 6}, - [3967] = {.lex_state = 10, .external_lex_state = 7}, - [3968] = {.lex_state = 9, .external_lex_state = 6}, - [3969] = {.lex_state = 9, .external_lex_state = 6}, - [3970] = {.lex_state = 2, .external_lex_state = 4}, - [3971] = {.lex_state = 9, .external_lex_state = 6}, - [3972] = {.lex_state = 9, .external_lex_state = 6}, - [3973] = {.lex_state = 10, .external_lex_state = 7}, + [3809] = {.lex_state = 14, .external_lex_state = 7}, + [3810] = {.lex_state = 13, .external_lex_state = 7}, + [3811] = {.lex_state = 14, .external_lex_state = 7}, + [3812] = {.lex_state = 2, .external_lex_state = 4}, + [3813] = {.lex_state = 13, .external_lex_state = 7}, + [3814] = {.lex_state = 2, .external_lex_state = 4}, + [3815] = {.lex_state = 13, .external_lex_state = 7}, + [3816] = {.lex_state = 13, .external_lex_state = 7}, + [3817] = {.lex_state = 13, .external_lex_state = 7}, + [3818] = {.lex_state = 15, .external_lex_state = 7}, + [3819] = {.lex_state = 13, .external_lex_state = 7}, + [3820] = {.lex_state = 13, .external_lex_state = 7}, + [3821] = {.lex_state = 13, .external_lex_state = 7}, + [3822] = {.lex_state = 13, .external_lex_state = 7}, + [3823] = {.lex_state = 13, .external_lex_state = 7}, + [3824] = {.lex_state = 318, .external_lex_state = 2}, + [3825] = {.lex_state = 13, .external_lex_state = 7}, + [3826] = {.lex_state = 13, .external_lex_state = 7}, + [3827] = {.lex_state = 13, .external_lex_state = 7}, + [3828] = {.lex_state = 13, .external_lex_state = 7}, + [3829] = {.lex_state = 13, .external_lex_state = 7}, + [3830] = {.lex_state = 2, .external_lex_state = 4}, + [3831] = {.lex_state = 13, .external_lex_state = 7}, + [3832] = {.lex_state = 13, .external_lex_state = 7}, + [3833] = {.lex_state = 13, .external_lex_state = 7}, + [3834] = {.lex_state = 13, .external_lex_state = 7}, + [3835] = {.lex_state = 2, .external_lex_state = 4}, + [3836] = {.lex_state = 13, .external_lex_state = 7}, + [3837] = {.lex_state = 13, .external_lex_state = 7}, + [3838] = {.lex_state = 318, .external_lex_state = 2}, + [3839] = {.lex_state = 13, .external_lex_state = 7}, + [3840] = {.lex_state = 13, .external_lex_state = 7}, + [3841] = {.lex_state = 13, .external_lex_state = 7}, + [3842] = {.lex_state = 13, .external_lex_state = 7}, + [3843] = {.lex_state = 13, .external_lex_state = 7}, + [3844] = {.lex_state = 13, .external_lex_state = 7}, + [3845] = {.lex_state = 13, .external_lex_state = 7}, + [3846] = {.lex_state = 13, .external_lex_state = 7}, + [3847] = {.lex_state = 13, .external_lex_state = 7}, + [3848] = {.lex_state = 13, .external_lex_state = 7}, + [3849] = {.lex_state = 13, .external_lex_state = 7}, + [3850] = {.lex_state = 13, .external_lex_state = 7}, + [3851] = {.lex_state = 13, .external_lex_state = 7}, + [3852] = {.lex_state = 13, .external_lex_state = 6}, + [3853] = {.lex_state = 13, .external_lex_state = 7}, + [3854] = {.lex_state = 13, .external_lex_state = 7}, + [3855] = {.lex_state = 2, .external_lex_state = 4}, + [3856] = {.lex_state = 13, .external_lex_state = 7}, + [3857] = {.lex_state = 2, .external_lex_state = 4}, + [3858] = {.lex_state = 13, .external_lex_state = 7}, + [3859] = {.lex_state = 13, .external_lex_state = 6}, + [3860] = {.lex_state = 13, .external_lex_state = 7}, + [3861] = {.lex_state = 13, .external_lex_state = 7}, + [3862] = {.lex_state = 13, .external_lex_state = 7}, + [3863] = {.lex_state = 13, .external_lex_state = 7}, + [3864] = {.lex_state = 2, .external_lex_state = 4}, + [3865] = {.lex_state = 13, .external_lex_state = 7}, + [3866] = {.lex_state = 13, .external_lex_state = 7}, + [3867] = {.lex_state = 13, .external_lex_state = 7}, + [3868] = {.lex_state = 2, .external_lex_state = 4}, + [3869] = {.lex_state = 2, .external_lex_state = 4}, + [3870] = {.lex_state = 13, .external_lex_state = 7}, + [3871] = {.lex_state = 318, .external_lex_state = 2}, + [3872] = {.lex_state = 14, .external_lex_state = 6}, + [3873] = {.lex_state = 13, .external_lex_state = 7}, + [3874] = {.lex_state = 13, .external_lex_state = 7}, + [3875] = {.lex_state = 13, .external_lex_state = 7}, + [3876] = {.lex_state = 13, .external_lex_state = 7}, + [3877] = {.lex_state = 318, .external_lex_state = 2}, + [3878] = {.lex_state = 13, .external_lex_state = 7}, + [3879] = {.lex_state = 14, .external_lex_state = 6}, + [3880] = {.lex_state = 13, .external_lex_state = 7}, + [3881] = {.lex_state = 13, .external_lex_state = 7}, + [3882] = {.lex_state = 13, .external_lex_state = 7}, + [3883] = {.lex_state = 318, .external_lex_state = 2}, + [3884] = {.lex_state = 13, .external_lex_state = 7}, + [3885] = {.lex_state = 13, .external_lex_state = 7}, + [3886] = {.lex_state = 13, .external_lex_state = 7}, + [3887] = {.lex_state = 13, .external_lex_state = 7}, + [3888] = {.lex_state = 13, .external_lex_state = 7}, + [3889] = {.lex_state = 318, .external_lex_state = 2}, + [3890] = {.lex_state = 13, .external_lex_state = 7}, + [3891] = {.lex_state = 13, .external_lex_state = 7}, + [3892] = {.lex_state = 13, .external_lex_state = 7}, + [3893] = {.lex_state = 13, .external_lex_state = 7}, + [3894] = {.lex_state = 13, .external_lex_state = 7}, + [3895] = {.lex_state = 13, .external_lex_state = 7}, + [3896] = {.lex_state = 13, .external_lex_state = 7}, + [3897] = {.lex_state = 13, .external_lex_state = 7}, + [3898] = {.lex_state = 13, .external_lex_state = 7}, + [3899] = {.lex_state = 13, .external_lex_state = 7}, + [3900] = {.lex_state = 13, .external_lex_state = 7}, + [3901] = {.lex_state = 13, .external_lex_state = 7}, + [3902] = {.lex_state = 13, .external_lex_state = 7}, + [3903] = {.lex_state = 13, .external_lex_state = 7}, + [3904] = {.lex_state = 13, .external_lex_state = 7}, + [3905] = {.lex_state = 13, .external_lex_state = 7}, + [3906] = {.lex_state = 13, .external_lex_state = 7}, + [3907] = {.lex_state = 13, .external_lex_state = 7}, + [3908] = {.lex_state = 2, .external_lex_state = 4}, + [3909] = {.lex_state = 13, .external_lex_state = 7}, + [3910] = {.lex_state = 13, .external_lex_state = 7}, + [3911] = {.lex_state = 13, .external_lex_state = 6}, + [3912] = {.lex_state = 13, .external_lex_state = 7}, + [3913] = {.lex_state = 13, .external_lex_state = 7}, + [3914] = {.lex_state = 13, .external_lex_state = 7}, + [3915] = {.lex_state = 13, .external_lex_state = 7}, + [3916] = {.lex_state = 13, .external_lex_state = 7}, + [3917] = {.lex_state = 2, .external_lex_state = 4}, + [3918] = {.lex_state = 13, .external_lex_state = 6}, + [3919] = {.lex_state = 14, .external_lex_state = 6}, + [3920] = {.lex_state = 14, .external_lex_state = 6}, + [3921] = {.lex_state = 14, .external_lex_state = 6}, + [3922] = {.lex_state = 14, .external_lex_state = 6}, + [3923] = {.lex_state = 13, .external_lex_state = 7}, + [3924] = {.lex_state = 2, .external_lex_state = 4}, + [3925] = {.lex_state = 14, .external_lex_state = 6}, + [3926] = {.lex_state = 14, .external_lex_state = 6}, + [3927] = {.lex_state = 14, .external_lex_state = 6}, + [3928] = {.lex_state = 14, .external_lex_state = 6}, + [3929] = {.lex_state = 14, .external_lex_state = 6}, + [3930] = {.lex_state = 14, .external_lex_state = 6}, + [3931] = {.lex_state = 14, .external_lex_state = 6}, + [3932] = {.lex_state = 13, .external_lex_state = 7}, + [3933] = {.lex_state = 13, .external_lex_state = 7}, + [3934] = {.lex_state = 14, .external_lex_state = 6}, + [3935] = {.lex_state = 13, .external_lex_state = 7}, + [3936] = {.lex_state = 14, .external_lex_state = 6}, + [3937] = {.lex_state = 13, .external_lex_state = 7}, + [3938] = {.lex_state = 13, .external_lex_state = 7}, + [3939] = {.lex_state = 2, .external_lex_state = 4}, + [3940] = {.lex_state = 14, .external_lex_state = 6}, + [3941] = {.lex_state = 14, .external_lex_state = 6}, + [3942] = {.lex_state = 13, .external_lex_state = 7}, + [3943] = {.lex_state = 13, .external_lex_state = 7}, + [3944] = {.lex_state = 13, .external_lex_state = 7}, + [3945] = {.lex_state = 13, .external_lex_state = 7}, + [3946] = {.lex_state = 13, .external_lex_state = 7}, + [3947] = {.lex_state = 13, .external_lex_state = 7}, + [3948] = {.lex_state = 13, .external_lex_state = 7}, + [3949] = {.lex_state = 13, .external_lex_state = 7}, + [3950] = {.lex_state = 13, .external_lex_state = 7}, + [3951] = {.lex_state = 2, .external_lex_state = 4}, + [3952] = {.lex_state = 13, .external_lex_state = 7}, + [3953] = {.lex_state = 13, .external_lex_state = 7}, + [3954] = {.lex_state = 13, .external_lex_state = 6}, + [3955] = {.lex_state = 13, .external_lex_state = 7}, + [3956] = {.lex_state = 13, .external_lex_state = 7}, + [3957] = {.lex_state = 318, .external_lex_state = 2}, + [3958] = {.lex_state = 13, .external_lex_state = 7}, + [3959] = {.lex_state = 13, .external_lex_state = 7}, + [3960] = {.lex_state = 13, .external_lex_state = 7}, + [3961] = {.lex_state = 13, .external_lex_state = 7}, + [3962] = {.lex_state = 13, .external_lex_state = 7}, + [3963] = {.lex_state = 13, .external_lex_state = 7}, + [3964] = {.lex_state = 13, .external_lex_state = 7}, + [3965] = {.lex_state = 2, .external_lex_state = 4}, + [3966] = {.lex_state = 13, .external_lex_state = 7}, + [3967] = {.lex_state = 13, .external_lex_state = 7}, + [3968] = {.lex_state = 13, .external_lex_state = 7}, + [3969] = {.lex_state = 13, .external_lex_state = 7}, + [3970] = {.lex_state = 13, .external_lex_state = 7}, + [3971] = {.lex_state = 13, .external_lex_state = 7}, + [3972] = {.lex_state = 13, .external_lex_state = 7}, + [3973] = {.lex_state = 13, .external_lex_state = 6}, [3974] = {.lex_state = 2, .external_lex_state = 4}, - [3975] = {.lex_state = 2, .external_lex_state = 4}, - [3976] = {.lex_state = 10, .external_lex_state = 7}, - [3977] = {.lex_state = 9, .external_lex_state = 6}, - [3978] = {.lex_state = 9, .external_lex_state = 6}, - [3979] = {.lex_state = 307, .external_lex_state = 2}, - [3980] = {.lex_state = 10, .external_lex_state = 7}, - [3981] = {.lex_state = 10, .external_lex_state = 7}, - [3982] = {.lex_state = 9, .external_lex_state = 6}, - [3983] = {.lex_state = 9, .external_lex_state = 7}, - [3984] = {.lex_state = 9, .external_lex_state = 6}, - [3985] = {.lex_state = 2, .external_lex_state = 4}, - [3986] = {.lex_state = 10, .external_lex_state = 7}, - [3987] = {.lex_state = 9, .external_lex_state = 6}, - [3988] = {.lex_state = 307, .external_lex_state = 2}, - [3989] = {.lex_state = 2, .external_lex_state = 4}, - [3990] = {.lex_state = 2, .external_lex_state = 4}, - [3991] = {.lex_state = 9, .external_lex_state = 6}, - [3992] = {.lex_state = 9, .external_lex_state = 7}, - [3993] = {.lex_state = 7, .external_lex_state = 5}, - [3994] = {.lex_state = 9, .external_lex_state = 6}, - [3995] = {.lex_state = 2, .external_lex_state = 4}, - [3996] = {.lex_state = 2, .external_lex_state = 4}, - [3997] = {.lex_state = 9, .external_lex_state = 7}, - [3998] = {.lex_state = 2, .external_lex_state = 4}, - [3999] = {.lex_state = 307, .external_lex_state = 2}, - [4000] = {.lex_state = 2, .external_lex_state = 4}, - [4001] = {.lex_state = 9, .external_lex_state = 6}, - [4002] = {.lex_state = 9, .external_lex_state = 6}, - [4003] = {.lex_state = 9, .external_lex_state = 7}, - [4004] = {.lex_state = 307, .external_lex_state = 2}, - [4005] = {.lex_state = 9, .external_lex_state = 6}, - [4006] = {.lex_state = 9, .external_lex_state = 7}, - [4007] = {.lex_state = 2, .external_lex_state = 4}, - [4008] = {.lex_state = 9, .external_lex_state = 6}, - [4009] = {.lex_state = 2, .external_lex_state = 4}, - [4010] = {.lex_state = 9, .external_lex_state = 6}, - [4011] = {.lex_state = 10, .external_lex_state = 7}, - [4012] = {.lex_state = 2, .external_lex_state = 4}, - [4013] = {.lex_state = 10, .external_lex_state = 7}, - [4014] = {.lex_state = 10, .external_lex_state = 7}, - [4015] = {.lex_state = 10, .external_lex_state = 7}, - [4016] = {.lex_state = 307, .external_lex_state = 2}, - [4017] = {.lex_state = 10, .external_lex_state = 7}, - [4018] = {.lex_state = 10, .external_lex_state = 7}, - [4019] = {.lex_state = 2, .external_lex_state = 4}, - [4020] = {.lex_state = 10, .external_lex_state = 7}, - [4021] = {.lex_state = 10, .external_lex_state = 7}, - [4022] = {.lex_state = 10, .external_lex_state = 7}, - [4023] = {.lex_state = 10, .external_lex_state = 7}, - [4024] = {.lex_state = 9, .external_lex_state = 6}, - [4025] = {.lex_state = 7, .external_lex_state = 5}, - [4026] = {.lex_state = 10, .external_lex_state = 7}, - [4027] = {.lex_state = 307, .external_lex_state = 2}, - [4028] = {.lex_state = 9, .external_lex_state = 7}, - [4029] = {.lex_state = 9, .external_lex_state = 7}, - [4030] = {.lex_state = 9, .external_lex_state = 7}, - [4031] = {.lex_state = 307, .external_lex_state = 2}, - [4032] = {.lex_state = 9, .external_lex_state = 7}, - [4033] = {.lex_state = 9, .external_lex_state = 7}, - [4034] = {.lex_state = 9, .external_lex_state = 7}, - [4035] = {.lex_state = 9, .external_lex_state = 7}, - [4036] = {.lex_state = 307, .external_lex_state = 2}, - [4037] = {.lex_state = 10, .external_lex_state = 6}, - [4038] = {.lex_state = 10, .external_lex_state = 6}, - [4039] = {.lex_state = 10, .external_lex_state = 6}, - [4040] = {.lex_state = 10, .external_lex_state = 6}, - [4041] = {.lex_state = 9, .external_lex_state = 7}, - [4042] = {.lex_state = 307, .external_lex_state = 2}, - [4043] = {.lex_state = 10, .external_lex_state = 6}, - [4044] = {.lex_state = 9, .external_lex_state = 7}, - [4045] = {.lex_state = 10, .external_lex_state = 6}, - [4046] = {.lex_state = 10, .external_lex_state = 6}, - [4047] = {.lex_state = 9, .external_lex_state = 7}, - [4048] = {.lex_state = 10, .external_lex_state = 6}, - [4049] = {.lex_state = 10, .external_lex_state = 6}, - [4050] = {.lex_state = 307, .external_lex_state = 2}, - [4051] = {.lex_state = 9, .external_lex_state = 6}, - [4052] = {.lex_state = 9, .external_lex_state = 7}, - [4053] = {.lex_state = 9, .external_lex_state = 7}, - [4054] = {.lex_state = 10, .external_lex_state = 6}, - [4055] = {.lex_state = 10, .external_lex_state = 6}, - [4056] = {.lex_state = 9, .external_lex_state = 7}, - [4057] = {.lex_state = 9, .external_lex_state = 6}, - [4058] = {.lex_state = 10, .external_lex_state = 6}, - [4059] = {.lex_state = 2, .external_lex_state = 4}, - [4060] = {.lex_state = 9, .external_lex_state = 6}, - [4061] = {.lex_state = 2, .external_lex_state = 4}, - [4062] = {.lex_state = 10, .external_lex_state = 6}, - [4063] = {.lex_state = 9, .external_lex_state = 7}, - [4064] = {.lex_state = 2, .external_lex_state = 4}, - [4065] = {.lex_state = 9, .external_lex_state = 7}, - [4066] = {.lex_state = 9, .external_lex_state = 6}, - [4067] = {.lex_state = 2, .external_lex_state = 4}, + [3975] = {.lex_state = 318, .external_lex_state = 2}, + [3976] = {.lex_state = 318, .external_lex_state = 2}, + [3977] = {.lex_state = 13, .external_lex_state = 7}, + [3978] = {.lex_state = 13, .external_lex_state = 7}, + [3979] = {.lex_state = 318, .external_lex_state = 2}, + [3980] = {.lex_state = 13, .external_lex_state = 6}, + [3981] = {.lex_state = 13, .external_lex_state = 7}, + [3982] = {.lex_state = 13, .external_lex_state = 7}, + [3983] = {.lex_state = 13, .external_lex_state = 7}, + [3984] = {.lex_state = 13, .external_lex_state = 6}, + [3985] = {.lex_state = 13, .external_lex_state = 7}, + [3986] = {.lex_state = 13, .external_lex_state = 7}, + [3987] = {.lex_state = 13, .external_lex_state = 7}, + [3988] = {.lex_state = 13, .external_lex_state = 7}, + [3989] = {.lex_state = 13, .external_lex_state = 7}, + [3990] = {.lex_state = 13, .external_lex_state = 7}, + [3991] = {.lex_state = 13, .external_lex_state = 7}, + [3992] = {.lex_state = 13, .external_lex_state = 7}, + [3993] = {.lex_state = 13, .external_lex_state = 7}, + [3994] = {.lex_state = 13, .external_lex_state = 7}, + [3995] = {.lex_state = 13, .external_lex_state = 7}, + [3996] = {.lex_state = 13, .external_lex_state = 7}, + [3997] = {.lex_state = 13, .external_lex_state = 7}, + [3998] = {.lex_state = 318, .external_lex_state = 2}, + [3999] = {.lex_state = 13, .external_lex_state = 7}, + [4000] = {.lex_state = 13, .external_lex_state = 7}, + [4001] = {.lex_state = 13, .external_lex_state = 7}, + [4002] = {.lex_state = 13, .external_lex_state = 7}, + [4003] = {.lex_state = 13, .external_lex_state = 7}, + [4004] = {.lex_state = 13, .external_lex_state = 6}, + [4005] = {.lex_state = 13, .external_lex_state = 7}, + [4006] = {.lex_state = 13, .external_lex_state = 7}, + [4007] = {.lex_state = 13, .external_lex_state = 7}, + [4008] = {.lex_state = 13, .external_lex_state = 6}, + [4009] = {.lex_state = 13, .external_lex_state = 6}, + [4010] = {.lex_state = 13, .external_lex_state = 7}, + [4011] = {.lex_state = 13, .external_lex_state = 6}, + [4012] = {.lex_state = 13, .external_lex_state = 6}, + [4013] = {.lex_state = 13, .external_lex_state = 6}, + [4014] = {.lex_state = 13, .external_lex_state = 7}, + [4015] = {.lex_state = 13, .external_lex_state = 6}, + [4016] = {.lex_state = 13, .external_lex_state = 6}, + [4017] = {.lex_state = 13, .external_lex_state = 7}, + [4018] = {.lex_state = 13, .external_lex_state = 7}, + [4019] = {.lex_state = 13, .external_lex_state = 6}, + [4020] = {.lex_state = 2, .external_lex_state = 4}, + [4021] = {.lex_state = 13, .external_lex_state = 7}, + [4022] = {.lex_state = 13, .external_lex_state = 7}, + [4023] = {.lex_state = 13, .external_lex_state = 7}, + [4024] = {.lex_state = 13, .external_lex_state = 7}, + [4025] = {.lex_state = 13, .external_lex_state = 7}, + [4026] = {.lex_state = 13, .external_lex_state = 7}, + [4027] = {.lex_state = 13, .external_lex_state = 7}, + [4028] = {.lex_state = 13, .external_lex_state = 7}, + [4029] = {.lex_state = 13, .external_lex_state = 7}, + [4030] = {.lex_state = 13, .external_lex_state = 7}, + [4031] = {.lex_state = 13, .external_lex_state = 7}, + [4032] = {.lex_state = 13, .external_lex_state = 7}, + [4033] = {.lex_state = 13, .external_lex_state = 7}, + [4034] = {.lex_state = 13, .external_lex_state = 7}, + [4035] = {.lex_state = 13, .external_lex_state = 7}, + [4036] = {.lex_state = 13, .external_lex_state = 6}, + [4037] = {.lex_state = 13, .external_lex_state = 7}, + [4038] = {.lex_state = 13, .external_lex_state = 7}, + [4039] = {.lex_state = 13, .external_lex_state = 7}, + [4040] = {.lex_state = 13, .external_lex_state = 7}, + [4041] = {.lex_state = 13, .external_lex_state = 7}, + [4042] = {.lex_state = 13, .external_lex_state = 7}, + [4043] = {.lex_state = 13, .external_lex_state = 7}, + [4044] = {.lex_state = 13, .external_lex_state = 7}, + [4045] = {.lex_state = 2, .external_lex_state = 4}, + [4046] = {.lex_state = 14, .external_lex_state = 7}, + [4047] = {.lex_state = 14, .external_lex_state = 7}, + [4048] = {.lex_state = 14, .external_lex_state = 7}, + [4049] = {.lex_state = 13, .external_lex_state = 6}, + [4050] = {.lex_state = 14, .external_lex_state = 7}, + [4051] = {.lex_state = 14, .external_lex_state = 7}, + [4052] = {.lex_state = 13, .external_lex_state = 6}, + [4053] = {.lex_state = 14, .external_lex_state = 7}, + [4054] = {.lex_state = 13, .external_lex_state = 6}, + [4055] = {.lex_state = 13, .external_lex_state = 6}, + [4056] = {.lex_state = 13, .external_lex_state = 6}, + [4057] = {.lex_state = 14, .external_lex_state = 7}, + [4058] = {.lex_state = 13, .external_lex_state = 6}, + [4059] = {.lex_state = 13, .external_lex_state = 6}, + [4060] = {.lex_state = 14, .external_lex_state = 7}, + [4061] = {.lex_state = 13, .external_lex_state = 6}, + [4062] = {.lex_state = 13, .external_lex_state = 6}, + [4063] = {.lex_state = 13, .external_lex_state = 6}, + [4064] = {.lex_state = 13, .external_lex_state = 6}, + [4065] = {.lex_state = 14, .external_lex_state = 7}, + [4066] = {.lex_state = 13, .external_lex_state = 7}, + [4067] = {.lex_state = 14, .external_lex_state = 7}, [4068] = {.lex_state = 2, .external_lex_state = 4}, - [4069] = {.lex_state = 10, .external_lex_state = 6}, - [4070] = {.lex_state = 2, .external_lex_state = 4}, - [4071] = {.lex_state = 10, .external_lex_state = 6}, - [4072] = {.lex_state = 2, .external_lex_state = 4}, - [4073] = {.lex_state = 9, .external_lex_state = 6}, - [4074] = {.lex_state = 307, .external_lex_state = 2}, - [4075] = {.lex_state = 10, .external_lex_state = 6}, - [4076] = {.lex_state = 307, .external_lex_state = 2}, - [4077] = {.lex_state = 307, .external_lex_state = 2}, - [4078] = {.lex_state = 2, .external_lex_state = 4}, - [4079] = {.lex_state = 307, .external_lex_state = 2}, - [4080] = {.lex_state = 2, .external_lex_state = 4}, - [4081] = {.lex_state = 9, .external_lex_state = 7}, - [4082] = {.lex_state = 9, .external_lex_state = 7}, - [4083] = {.lex_state = 9, .external_lex_state = 7}, - [4084] = {.lex_state = 9, .external_lex_state = 7}, - [4085] = {.lex_state = 9, .external_lex_state = 7}, - [4086] = {.lex_state = 9, .external_lex_state = 7}, - [4087] = {.lex_state = 2, .external_lex_state = 4}, - [4088] = {.lex_state = 9, .external_lex_state = 6}, - [4089] = {.lex_state = 307, .external_lex_state = 2}, + [4069] = {.lex_state = 14, .external_lex_state = 7}, + [4070] = {.lex_state = 14, .external_lex_state = 7}, + [4071] = {.lex_state = 13, .external_lex_state = 6}, + [4072] = {.lex_state = 14, .external_lex_state = 7}, + [4073] = {.lex_state = 2, .external_lex_state = 4}, + [4074] = {.lex_state = 13, .external_lex_state = 7}, + [4075] = {.lex_state = 13, .external_lex_state = 6}, + [4076] = {.lex_state = 13, .external_lex_state = 7}, + [4077] = {.lex_state = 2, .external_lex_state = 4}, + [4078] = {.lex_state = 13, .external_lex_state = 7}, + [4079] = {.lex_state = 2, .external_lex_state = 4}, + [4080] = {.lex_state = 14, .external_lex_state = 7}, + [4081] = {.lex_state = 2, .external_lex_state = 4}, + [4082] = {.lex_state = 14, .external_lex_state = 7}, + [4083] = {.lex_state = 13, .external_lex_state = 6}, + [4084] = {.lex_state = 13, .external_lex_state = 7}, + [4085] = {.lex_state = 13, .external_lex_state = 6}, + [4086] = {.lex_state = 2, .external_lex_state = 4}, + [4087] = {.lex_state = 13, .external_lex_state = 6}, + [4088] = {.lex_state = 13, .external_lex_state = 6}, + [4089] = {.lex_state = 14, .external_lex_state = 7}, [4090] = {.lex_state = 2, .external_lex_state = 4}, - [4091] = {.lex_state = 9, .external_lex_state = 7}, - [4092] = {.lex_state = 2, .external_lex_state = 4}, + [4091] = {.lex_state = 2, .external_lex_state = 4}, + [4092] = {.lex_state = 14, .external_lex_state = 7}, [4093] = {.lex_state = 2, .external_lex_state = 4}, - [4094] = {.lex_state = 9, .external_lex_state = 6}, - [4095] = {.lex_state = 2, .external_lex_state = 4}, + [4094] = {.lex_state = 2, .external_lex_state = 4}, + [4095] = {.lex_state = 13, .external_lex_state = 6}, [4096] = {.lex_state = 2, .external_lex_state = 4}, - [4097] = {.lex_state = 307, .external_lex_state = 2}, - [4098] = {.lex_state = 10, .external_lex_state = 6}, - [4099] = {.lex_state = 9, .external_lex_state = 6}, - [4100] = {.lex_state = 10, .external_lex_state = 6}, - [4101] = {.lex_state = 9, .external_lex_state = 7}, - [4102] = {.lex_state = 9, .external_lex_state = 7}, - [4103] = {.lex_state = 2, .external_lex_state = 4}, - [4104] = {.lex_state = 9, .external_lex_state = 7}, - [4105] = {.lex_state = 9, .external_lex_state = 7}, - [4106] = {.lex_state = 9, .external_lex_state = 7}, - [4107] = {.lex_state = 9, .external_lex_state = 7}, - [4108] = {.lex_state = 9, .external_lex_state = 7}, - [4109] = {.lex_state = 9, .external_lex_state = 6}, - [4110] = {.lex_state = 9, .external_lex_state = 6}, - [4111] = {.lex_state = 9, .external_lex_state = 7}, - [4112] = {.lex_state = 9, .external_lex_state = 7}, - [4113] = {.lex_state = 9, .external_lex_state = 6}, - [4114] = {.lex_state = 9, .external_lex_state = 7}, - [4115] = {.lex_state = 9, .external_lex_state = 7}, - [4116] = {.lex_state = 2, .external_lex_state = 4}, - [4117] = {.lex_state = 9, .external_lex_state = 7}, - [4118] = {.lex_state = 9, .external_lex_state = 7}, - [4119] = {.lex_state = 9, .external_lex_state = 7}, - [4120] = {.lex_state = 9, .external_lex_state = 7}, - [4121] = {.lex_state = 9, .external_lex_state = 6}, - [4122] = {.lex_state = 9, .external_lex_state = 7}, - [4123] = {.lex_state = 9, .external_lex_state = 7}, - [4124] = {.lex_state = 9, .external_lex_state = 6}, - [4125] = {.lex_state = 9, .external_lex_state = 6}, - [4126] = {.lex_state = 9, .external_lex_state = 7}, - [4127] = {.lex_state = 2, .external_lex_state = 4}, - [4128] = {.lex_state = 2, .external_lex_state = 4}, - [4129] = {.lex_state = 9, .external_lex_state = 7}, - [4130] = {.lex_state = 9, .external_lex_state = 6}, - [4131] = {.lex_state = 9, .external_lex_state = 7}, - [4132] = {.lex_state = 9, .external_lex_state = 6}, - [4133] = {.lex_state = 9, .external_lex_state = 6}, - [4134] = {.lex_state = 9, .external_lex_state = 7}, - [4135] = {.lex_state = 9, .external_lex_state = 7}, - [4136] = {.lex_state = 2, .external_lex_state = 4}, - [4137] = {.lex_state = 2, .external_lex_state = 4}, - [4138] = {.lex_state = 9, .external_lex_state = 6}, - [4139] = {.lex_state = 2, .external_lex_state = 4}, - [4140] = {.lex_state = 9, .external_lex_state = 6}, - [4141] = {.lex_state = 9, .external_lex_state = 7}, - [4142] = {.lex_state = 9, .external_lex_state = 6}, - [4143] = {.lex_state = 2, .external_lex_state = 4}, - [4144] = {.lex_state = 9, .external_lex_state = 7}, - [4145] = {.lex_state = 9, .external_lex_state = 6}, - [4146] = {.lex_state = 9, .external_lex_state = 6}, - [4147] = {.lex_state = 9, .external_lex_state = 6}, - [4148] = {.lex_state = 9, .external_lex_state = 6}, - [4149] = {.lex_state = 2, .external_lex_state = 4}, + [4097] = {.lex_state = 13, .external_lex_state = 7}, + [4098] = {.lex_state = 13, .external_lex_state = 6}, + [4099] = {.lex_state = 13, .external_lex_state = 7}, + [4100] = {.lex_state = 13, .external_lex_state = 7}, + [4101] = {.lex_state = 14, .external_lex_state = 6}, + [4102] = {.lex_state = 13, .external_lex_state = 7}, + [4103] = {.lex_state = 13, .external_lex_state = 7}, + [4104] = {.lex_state = 13, .external_lex_state = 7}, + [4105] = {.lex_state = 13, .external_lex_state = 7}, + [4106] = {.lex_state = 13, .external_lex_state = 6}, + [4107] = {.lex_state = 14, .external_lex_state = 6}, + [4108] = {.lex_state = 14, .external_lex_state = 6}, + [4109] = {.lex_state = 13, .external_lex_state = 7}, + [4110] = {.lex_state = 14, .external_lex_state = 6}, + [4111] = {.lex_state = 13, .external_lex_state = 7}, + [4112] = {.lex_state = 13, .external_lex_state = 7}, + [4113] = {.lex_state = 13, .external_lex_state = 7}, + [4114] = {.lex_state = 14, .external_lex_state = 6}, + [4115] = {.lex_state = 13, .external_lex_state = 7}, + [4116] = {.lex_state = 13, .external_lex_state = 6}, + [4117] = {.lex_state = 13, .external_lex_state = 7}, + [4118] = {.lex_state = 13, .external_lex_state = 7}, + [4119] = {.lex_state = 2, .external_lex_state = 3}, + [4120] = {.lex_state = 2, .external_lex_state = 3}, + [4121] = {.lex_state = 13, .external_lex_state = 7}, + [4122] = {.lex_state = 14, .external_lex_state = 6}, + [4123] = {.lex_state = 13, .external_lex_state = 6}, + [4124] = {.lex_state = 14, .external_lex_state = 6}, + [4125] = {.lex_state = 14, .external_lex_state = 6}, + [4126] = {.lex_state = 14, .external_lex_state = 6}, + [4127] = {.lex_state = 13, .external_lex_state = 7}, + [4128] = {.lex_state = 14, .external_lex_state = 6}, + [4129] = {.lex_state = 13, .external_lex_state = 7}, + [4130] = {.lex_state = 14, .external_lex_state = 6}, + [4131] = {.lex_state = 14, .external_lex_state = 6}, + [4132] = {.lex_state = 13, .external_lex_state = 6}, + [4133] = {.lex_state = 13, .external_lex_state = 7}, + [4134] = {.lex_state = 13, .external_lex_state = 6}, + [4135] = {.lex_state = 13, .external_lex_state = 7}, + [4136] = {.lex_state = 14, .external_lex_state = 6}, + [4137] = {.lex_state = 13, .external_lex_state = 7}, + [4138] = {.lex_state = 13, .external_lex_state = 7}, + [4139] = {.lex_state = 14, .external_lex_state = 6}, + [4140] = {.lex_state = 13, .external_lex_state = 6}, + [4141] = {.lex_state = 14, .external_lex_state = 6}, + [4142] = {.lex_state = 13, .external_lex_state = 7}, + [4143] = {.lex_state = 14, .external_lex_state = 6}, + [4144] = {.lex_state = 14, .external_lex_state = 6}, + [4145] = {.lex_state = 13, .external_lex_state = 7}, + [4146] = {.lex_state = 14, .external_lex_state = 6}, + [4147] = {.lex_state = 13, .external_lex_state = 6}, + [4148] = {.lex_state = 13, .external_lex_state = 6}, + [4149] = {.lex_state = 13, .external_lex_state = 6}, [4150] = {.lex_state = 2, .external_lex_state = 4}, - [4151] = {.lex_state = 9, .external_lex_state = 6}, - [4152] = {.lex_state = 2, .external_lex_state = 4}, + [4151] = {.lex_state = 13, .external_lex_state = 7}, + [4152] = {.lex_state = 13, .external_lex_state = 7}, [4153] = {.lex_state = 2, .external_lex_state = 4}, - [4154] = {.lex_state = 9, .external_lex_state = 6}, - [4155] = {.lex_state = 9, .external_lex_state = 6}, - [4156] = {.lex_state = 9, .external_lex_state = 6}, - [4157] = {.lex_state = 9, .external_lex_state = 7}, - [4158] = {.lex_state = 9, .external_lex_state = 7}, - [4159] = {.lex_state = 9, .external_lex_state = 6}, - [4160] = {.lex_state = 9, .external_lex_state = 6}, - [4161] = {.lex_state = 9, .external_lex_state = 6}, - [4162] = {.lex_state = 2, .external_lex_state = 3}, - [4163] = {.lex_state = 2, .external_lex_state = 3}, - [4164] = {.lex_state = 9, .external_lex_state = 7}, - [4165] = {.lex_state = 9, .external_lex_state = 6}, - [4166] = {.lex_state = 9, .external_lex_state = 7}, - [4167] = {.lex_state = 9, .external_lex_state = 6}, - [4168] = {.lex_state = 9, .external_lex_state = 6}, - [4169] = {.lex_state = 9, .external_lex_state = 7}, - [4170] = {.lex_state = 9, .external_lex_state = 7}, - [4171] = {.lex_state = 9, .external_lex_state = 7}, - [4172] = {.lex_state = 9, .external_lex_state = 6}, - [4173] = {.lex_state = 9, .external_lex_state = 7}, - [4174] = {.lex_state = 9, .external_lex_state = 7}, - [4175] = {.lex_state = 9, .external_lex_state = 7}, - [4176] = {.lex_state = 9, .external_lex_state = 7}, - [4177] = {.lex_state = 9, .external_lex_state = 7}, - [4178] = {.lex_state = 9, .external_lex_state = 7}, - [4179] = {.lex_state = 9, .external_lex_state = 7}, - [4180] = {.lex_state = 9, .external_lex_state = 6}, - [4181] = {.lex_state = 9, .external_lex_state = 6}, - [4182] = {.lex_state = 9, .external_lex_state = 7}, - [4183] = {.lex_state = 2, .external_lex_state = 4}, - [4184] = {.lex_state = 9, .external_lex_state = 7}, - [4185] = {.lex_state = 10, .external_lex_state = 7}, - [4186] = {.lex_state = 2, .external_lex_state = 4}, - [4187] = {.lex_state = 10, .external_lex_state = 7}, - [4188] = {.lex_state = 10, .external_lex_state = 7}, - [4189] = {.lex_state = 9, .external_lex_state = 7}, - [4190] = {.lex_state = 10, .external_lex_state = 7}, - [4191] = {.lex_state = 10, .external_lex_state = 7}, - [4192] = {.lex_state = 10, .external_lex_state = 7}, - [4193] = {.lex_state = 9, .external_lex_state = 7}, - [4194] = {.lex_state = 10, .external_lex_state = 7}, - [4195] = {.lex_state = 9, .external_lex_state = 7}, - [4196] = {.lex_state = 9, .external_lex_state = 7}, - [4197] = {.lex_state = 9, .external_lex_state = 7}, - [4198] = {.lex_state = 9, .external_lex_state = 7}, - [4199] = {.lex_state = 2, .external_lex_state = 4}, - [4200] = {.lex_state = 10, .external_lex_state = 7}, - [4201] = {.lex_state = 2, .external_lex_state = 4}, - [4202] = {.lex_state = 10, .external_lex_state = 7}, - [4203] = {.lex_state = 2, .external_lex_state = 4}, - [4204] = {.lex_state = 10, .external_lex_state = 7}, - [4205] = {.lex_state = 10, .external_lex_state = 7}, - [4206] = {.lex_state = 9, .external_lex_state = 7}, - [4207] = {.lex_state = 9, .external_lex_state = 7}, - [4208] = {.lex_state = 10, .external_lex_state = 7}, - [4209] = {.lex_state = 9, .external_lex_state = 7}, - [4210] = {.lex_state = 6, .external_lex_state = 2}, - [4211] = {.lex_state = 9, .external_lex_state = 7}, - [4212] = {.lex_state = 9, .external_lex_state = 6}, - [4213] = {.lex_state = 2, .external_lex_state = 4}, - [4214] = {.lex_state = 9, .external_lex_state = 7}, - [4215] = {.lex_state = 9, .external_lex_state = 7}, - [4216] = {.lex_state = 10, .external_lex_state = 7}, - [4217] = {.lex_state = 10, .external_lex_state = 7}, - [4218] = {.lex_state = 10, .external_lex_state = 7}, - [4219] = {.lex_state = 10, .external_lex_state = 7}, - [4220] = {.lex_state = 2, .external_lex_state = 4}, - [4221] = {.lex_state = 10, .external_lex_state = 7}, - [4222] = {.lex_state = 2, .external_lex_state = 4}, - [4223] = {.lex_state = 2, .external_lex_state = 4}, - [4224] = {.lex_state = 10, .external_lex_state = 7}, - [4225] = {.lex_state = 9, .external_lex_state = 6}, - [4226] = {.lex_state = 2, .external_lex_state = 4}, - [4227] = {.lex_state = 9, .external_lex_state = 7}, - [4228] = {.lex_state = 9, .external_lex_state = 7}, - [4229] = {.lex_state = 10, .external_lex_state = 6}, - [4230] = {.lex_state = 10, .external_lex_state = 6}, - [4231] = {.lex_state = 10, .external_lex_state = 6}, - [4232] = {.lex_state = 10, .external_lex_state = 6}, - [4233] = {.lex_state = 10, .external_lex_state = 6}, - [4234] = {.lex_state = 10, .external_lex_state = 6}, - [4235] = {.lex_state = 10, .external_lex_state = 6}, - [4236] = {.lex_state = 10, .external_lex_state = 6}, - [4237] = {.lex_state = 10, .external_lex_state = 6}, - [4238] = {.lex_state = 9, .external_lex_state = 7}, - [4239] = {.lex_state = 9, .external_lex_state = 7}, - [4240] = {.lex_state = 10, .external_lex_state = 6}, - [4241] = {.lex_state = 10, .external_lex_state = 6}, - [4242] = {.lex_state = 10, .external_lex_state = 6}, - [4243] = {.lex_state = 10, .external_lex_state = 6}, - [4244] = {.lex_state = 9, .external_lex_state = 7}, - [4245] = {.lex_state = 9, .external_lex_state = 7}, - [4246] = {.lex_state = 10, .external_lex_state = 6}, - [4247] = {.lex_state = 9, .external_lex_state = 7}, - [4248] = {.lex_state = 10, .external_lex_state = 6}, - [4249] = {.lex_state = 9, .external_lex_state = 7}, - [4250] = {.lex_state = 10, .external_lex_state = 6}, - [4251] = {.lex_state = 10, .external_lex_state = 6}, - [4252] = {.lex_state = 9, .external_lex_state = 7}, - [4253] = {.lex_state = 10, .external_lex_state = 7}, - [4254] = {.lex_state = 9, .external_lex_state = 6}, - [4255] = {.lex_state = 10, .external_lex_state = 7}, - [4256] = {.lex_state = 9, .external_lex_state = 6}, - [4257] = {.lex_state = 9, .external_lex_state = 6}, - [4258] = {.lex_state = 10, .external_lex_state = 7}, - [4259] = {.lex_state = 10, .external_lex_state = 7}, - [4260] = {.lex_state = 9, .external_lex_state = 6}, - [4261] = {.lex_state = 9, .external_lex_state = 6}, - [4262] = {.lex_state = 10, .external_lex_state = 7}, - [4263] = {.lex_state = 10, .external_lex_state = 7}, - [4264] = {.lex_state = 10, .external_lex_state = 7}, - [4265] = {.lex_state = 9, .external_lex_state = 6}, - [4266] = {.lex_state = 10, .external_lex_state = 7}, - [4267] = {.lex_state = 10, .external_lex_state = 7}, - [4268] = {.lex_state = 10, .external_lex_state = 7}, - [4269] = {.lex_state = 10, .external_lex_state = 7}, - [4270] = {.lex_state = 10, .external_lex_state = 7}, - [4271] = {.lex_state = 10, .external_lex_state = 7}, - [4272] = {.lex_state = 10, .external_lex_state = 7}, - [4273] = {.lex_state = 10, .external_lex_state = 7}, - [4274] = {.lex_state = 10, .external_lex_state = 7}, - [4275] = {.lex_state = 10, .external_lex_state = 7}, - [4276] = {.lex_state = 10, .external_lex_state = 6}, - [4277] = {.lex_state = 10, .external_lex_state = 6}, - [4278] = {.lex_state = 10, .external_lex_state = 6}, - [4279] = {.lex_state = 10, .external_lex_state = 6}, - [4280] = {.lex_state = 9, .external_lex_state = 7}, - [4281] = {.lex_state = 10, .external_lex_state = 6}, - [4282] = {.lex_state = 10, .external_lex_state = 6}, - [4283] = {.lex_state = 10, .external_lex_state = 6}, - [4284] = {.lex_state = 9, .external_lex_state = 7}, - [4285] = {.lex_state = 9, .external_lex_state = 7}, - [4286] = {.lex_state = 10, .external_lex_state = 6}, - [4287] = {.lex_state = 9, .external_lex_state = 7}, - [4288] = {.lex_state = 10, .external_lex_state = 6}, - [4289] = {.lex_state = 9, .external_lex_state = 7}, - [4290] = {.lex_state = 10, .external_lex_state = 6}, - [4291] = {.lex_state = 9, .external_lex_state = 7}, - [4292] = {.lex_state = 10, .external_lex_state = 6}, - [4293] = {.lex_state = 10, .external_lex_state = 6}, - [4294] = {.lex_state = 12, .external_lex_state = 8}, - [4295] = {.lex_state = 10, .external_lex_state = 6}, - [4296] = {.lex_state = 10, .external_lex_state = 6}, - [4297] = {.lex_state = 10, .external_lex_state = 6}, - [4298] = {.lex_state = 12, .external_lex_state = 8}, - [4299] = {.lex_state = 12, .external_lex_state = 8}, - [4300] = {.lex_state = 10, .external_lex_state = 6}, - [4301] = {.lex_state = 12, .external_lex_state = 8}, - [4302] = {.lex_state = 12, .external_lex_state = 8}, - [4303] = {.lex_state = 10, .external_lex_state = 6}, - [4304] = {.lex_state = 12, .external_lex_state = 8}, - [4305] = {.lex_state = 12, .external_lex_state = 8}, - [4306] = {.lex_state = 12, .external_lex_state = 8}, - [4307] = {.lex_state = 10, .external_lex_state = 6}, - [4308] = {.lex_state = 12, .external_lex_state = 8}, - [4309] = {.lex_state = 12, .external_lex_state = 8}, - [4310] = {.lex_state = 12, .external_lex_state = 8}, - [4311] = {.lex_state = 12, .external_lex_state = 8}, - [4312] = {.lex_state = 12, .external_lex_state = 8}, - [4313] = {.lex_state = 12, .external_lex_state = 8}, - [4314] = {.lex_state = 12, .external_lex_state = 8}, - [4315] = {.lex_state = 10, .external_lex_state = 6}, - [4316] = {.lex_state = 12, .external_lex_state = 8}, - [4317] = {.lex_state = 12, .external_lex_state = 8}, - [4318] = {.lex_state = 12, .external_lex_state = 8}, - [4319] = {.lex_state = 10, .external_lex_state = 6}, - [4320] = {.lex_state = 12, .external_lex_state = 8}, - [4321] = {.lex_state = 12, .external_lex_state = 8}, - [4322] = {.lex_state = 12, .external_lex_state = 8}, - [4323] = {.lex_state = 12, .external_lex_state = 8}, - [4324] = {.lex_state = 12, .external_lex_state = 8}, - [4325] = {.lex_state = 12, .external_lex_state = 8}, - [4326] = {.lex_state = 12, .external_lex_state = 8}, - [4327] = {.lex_state = 10, .external_lex_state = 6}, - [4328] = {.lex_state = 12, .external_lex_state = 8}, - [4329] = {.lex_state = 12, .external_lex_state = 8}, - [4330] = {.lex_state = 10, .external_lex_state = 6}, - [4331] = {.lex_state = 12, .external_lex_state = 8}, - [4332] = {.lex_state = 12, .external_lex_state = 8}, - [4333] = {.lex_state = 12, .external_lex_state = 8}, - [4334] = {.lex_state = 12, .external_lex_state = 8}, - [4335] = {.lex_state = 12, .external_lex_state = 8}, - [4336] = {.lex_state = 12, .external_lex_state = 8}, - [4337] = {.lex_state = 12, .external_lex_state = 8}, - [4338] = {.lex_state = 12, .external_lex_state = 8}, - [4339] = {.lex_state = 12, .external_lex_state = 8}, - [4340] = {.lex_state = 12, .external_lex_state = 8}, - [4341] = {.lex_state = 10, .external_lex_state = 6}, - [4342] = {.lex_state = 12, .external_lex_state = 8}, - [4343] = {.lex_state = 10, .external_lex_state = 6}, - [4344] = {.lex_state = 12, .external_lex_state = 8}, - [4345] = {.lex_state = 12, .external_lex_state = 8}, - [4346] = {.lex_state = 10, .external_lex_state = 6}, - [4347] = {.lex_state = 12, .external_lex_state = 8}, - [4348] = {.lex_state = 10, .external_lex_state = 6}, - [4349] = {.lex_state = 10, .external_lex_state = 6}, - [4350] = {.lex_state = 10, .external_lex_state = 6}, - [4351] = {.lex_state = 12, .external_lex_state = 8}, - [4352] = {.lex_state = 12, .external_lex_state = 8}, - [4353] = {.lex_state = 12, .external_lex_state = 8}, - [4354] = {.lex_state = 12, .external_lex_state = 8}, - [4355] = {.lex_state = 12, .external_lex_state = 8}, - [4356] = {.lex_state = 12, .external_lex_state = 8}, - [4357] = {.lex_state = 12, .external_lex_state = 8}, - [4358] = {.lex_state = 12, .external_lex_state = 8}, - [4359] = {.lex_state = 12, .external_lex_state = 8}, - [4360] = {.lex_state = 12, .external_lex_state = 8}, - [4361] = {.lex_state = 12, .external_lex_state = 8}, - [4362] = {.lex_state = 12, .external_lex_state = 8}, - [4363] = {.lex_state = 12, .external_lex_state = 8}, - [4364] = {.lex_state = 12, .external_lex_state = 8}, - [4365] = {.lex_state = 10, .external_lex_state = 6}, - [4366] = {.lex_state = 10, .external_lex_state = 6}, - [4367] = {.lex_state = 10, .external_lex_state = 6}, - [4368] = {.lex_state = 10, .external_lex_state = 6}, - [4369] = {.lex_state = 10, .external_lex_state = 6}, - [4370] = {.lex_state = 10, .external_lex_state = 6}, - [4371] = {.lex_state = 10, .external_lex_state = 6}, - [4372] = {.lex_state = 10, .external_lex_state = 6}, - [4373] = {.lex_state = 10, .external_lex_state = 6}, - [4374] = {.lex_state = 10, .external_lex_state = 6}, - [4375] = {.lex_state = 10, .external_lex_state = 6}, - [4376] = {.lex_state = 10, .external_lex_state = 6}, - [4377] = {.lex_state = 10, .external_lex_state = 6}, - [4378] = {.lex_state = 10, .external_lex_state = 6}, - [4379] = {.lex_state = 10, .external_lex_state = 6}, - [4380] = {.lex_state = 10, .external_lex_state = 6}, - [4381] = {.lex_state = 10, .external_lex_state = 6}, - [4382] = {.lex_state = 10, .external_lex_state = 6}, - [4383] = {.lex_state = 10, .external_lex_state = 6}, - [4384] = {.lex_state = 10, .external_lex_state = 6}, - [4385] = {.lex_state = 10, .external_lex_state = 6}, - [4386] = {.lex_state = 10, .external_lex_state = 6}, - [4387] = {.lex_state = 10, .external_lex_state = 6}, - [4388] = {.lex_state = 10, .external_lex_state = 6}, - [4389] = {.lex_state = 10, .external_lex_state = 6}, - [4390] = {.lex_state = 10, .external_lex_state = 6}, - [4391] = {.lex_state = 10, .external_lex_state = 6}, - [4392] = {.lex_state = 10, .external_lex_state = 6}, - [4393] = {.lex_state = 10, .external_lex_state = 6}, - [4394] = {.lex_state = 10, .external_lex_state = 6}, - [4395] = {.lex_state = 10, .external_lex_state = 6}, - [4396] = {.lex_state = 10, .external_lex_state = 6}, - [4397] = {.lex_state = 10, .external_lex_state = 6}, - [4398] = {.lex_state = 10, .external_lex_state = 6}, - [4399] = {.lex_state = 10, .external_lex_state = 6}, - [4400] = {.lex_state = 10, .external_lex_state = 6}, - [4401] = {.lex_state = 10, .external_lex_state = 6}, - [4402] = {.lex_state = 10, .external_lex_state = 6}, - [4403] = {.lex_state = 10, .external_lex_state = 6}, - [4404] = {.lex_state = 10, .external_lex_state = 6}, - [4405] = {.lex_state = 10, .external_lex_state = 6}, - [4406] = {.lex_state = 10, .external_lex_state = 6}, - [4407] = {.lex_state = 10, .external_lex_state = 6}, - [4408] = {.lex_state = 10, .external_lex_state = 6}, - [4409] = {.lex_state = 10, .external_lex_state = 6}, - [4410] = {.lex_state = 10, .external_lex_state = 6}, - [4411] = {.lex_state = 10, .external_lex_state = 6}, - [4412] = {.lex_state = 10, .external_lex_state = 6}, - [4413] = {.lex_state = 10, .external_lex_state = 6}, - [4414] = {.lex_state = 10, .external_lex_state = 6}, - [4415] = {.lex_state = 10, .external_lex_state = 6}, - [4416] = {.lex_state = 10, .external_lex_state = 6}, - [4417] = {.lex_state = 10, .external_lex_state = 6}, - [4418] = {.lex_state = 10, .external_lex_state = 6}, - [4419] = {.lex_state = 10, .external_lex_state = 6}, - [4420] = {.lex_state = 10, .external_lex_state = 6}, - [4421] = {.lex_state = 10, .external_lex_state = 6}, - [4422] = {.lex_state = 10, .external_lex_state = 6}, - [4423] = {.lex_state = 10, .external_lex_state = 6}, - [4424] = {.lex_state = 10, .external_lex_state = 6}, - [4425] = {.lex_state = 10, .external_lex_state = 6}, - [4426] = {.lex_state = 10, .external_lex_state = 6}, - [4427] = {.lex_state = 10, .external_lex_state = 6}, - [4428] = {.lex_state = 10, .external_lex_state = 6}, - [4429] = {.lex_state = 10, .external_lex_state = 6}, - [4430] = {.lex_state = 10, .external_lex_state = 6}, - [4431] = {.lex_state = 10, .external_lex_state = 6}, - [4432] = {.lex_state = 10, .external_lex_state = 6}, - [4433] = {.lex_state = 10, .external_lex_state = 6}, - [4434] = {.lex_state = 10, .external_lex_state = 6}, - [4435] = {.lex_state = 10, .external_lex_state = 6}, - [4436] = {.lex_state = 10, .external_lex_state = 6}, - [4437] = {.lex_state = 10, .external_lex_state = 6}, - [4438] = {.lex_state = 10, .external_lex_state = 6}, - [4439] = {.lex_state = 10, .external_lex_state = 6}, - [4440] = {.lex_state = 10, .external_lex_state = 6}, - [4441] = {.lex_state = 10, .external_lex_state = 6}, - [4442] = {.lex_state = 10, .external_lex_state = 6}, - [4443] = {.lex_state = 10, .external_lex_state = 6}, - [4444] = {.lex_state = 10, .external_lex_state = 6}, - [4445] = {.lex_state = 10, .external_lex_state = 6}, - [4446] = {.lex_state = 10, .external_lex_state = 6}, - [4447] = {.lex_state = 10, .external_lex_state = 6}, - [4448] = {.lex_state = 10, .external_lex_state = 6}, - [4449] = {.lex_state = 10, .external_lex_state = 6}, - [4450] = {.lex_state = 10, .external_lex_state = 6}, - [4451] = {.lex_state = 10, .external_lex_state = 6}, - [4452] = {.lex_state = 10, .external_lex_state = 6}, - [4453] = {.lex_state = 10, .external_lex_state = 6}, - [4454] = {.lex_state = 10, .external_lex_state = 6}, - [4455] = {.lex_state = 10, .external_lex_state = 6}, - [4456] = {.lex_state = 10, .external_lex_state = 6}, - [4457] = {.lex_state = 10, .external_lex_state = 6}, - [4458] = {.lex_state = 10, .external_lex_state = 6}, - [4459] = {.lex_state = 10, .external_lex_state = 6}, - [4460] = {.lex_state = 10, .external_lex_state = 6}, - [4461] = {.lex_state = 10, .external_lex_state = 6}, - [4462] = {.lex_state = 10, .external_lex_state = 6}, - [4463] = {.lex_state = 10, .external_lex_state = 6}, - [4464] = {.lex_state = 10, .external_lex_state = 6}, - [4465] = {.lex_state = 10, .external_lex_state = 6}, - [4466] = {.lex_state = 10, .external_lex_state = 6}, - [4467] = {.lex_state = 10, .external_lex_state = 6}, - [4468] = {.lex_state = 10, .external_lex_state = 6}, - [4469] = {.lex_state = 10, .external_lex_state = 6}, - [4470] = {.lex_state = 10, .external_lex_state = 6}, - [4471] = {.lex_state = 10, .external_lex_state = 6}, - [4472] = {.lex_state = 10, .external_lex_state = 6}, - [4473] = {.lex_state = 10, .external_lex_state = 6}, - [4474] = {.lex_state = 10, .external_lex_state = 6}, - [4475] = {.lex_state = 10, .external_lex_state = 6}, - [4476] = {.lex_state = 10, .external_lex_state = 6}, - [4477] = {.lex_state = 10, .external_lex_state = 6}, - [4478] = {.lex_state = 10, .external_lex_state = 6}, - [4479] = {.lex_state = 10, .external_lex_state = 6}, - [4480] = {.lex_state = 10, .external_lex_state = 6}, - [4481] = {.lex_state = 10, .external_lex_state = 6}, - [4482] = {.lex_state = 10, .external_lex_state = 6}, - [4483] = {.lex_state = 10, .external_lex_state = 6}, - [4484] = {.lex_state = 10, .external_lex_state = 6}, - [4485] = {.lex_state = 10, .external_lex_state = 6}, - [4486] = {.lex_state = 10, .external_lex_state = 6}, - [4487] = {.lex_state = 10, .external_lex_state = 6}, - [4488] = {.lex_state = 10, .external_lex_state = 6}, - [4489] = {.lex_state = 10, .external_lex_state = 6}, - [4490] = {.lex_state = 10, .external_lex_state = 6}, - [4491] = {.lex_state = 10, .external_lex_state = 6}, - [4492] = {.lex_state = 10, .external_lex_state = 6}, - [4493] = {.lex_state = 10, .external_lex_state = 6}, - [4494] = {.lex_state = 307, .external_lex_state = 2}, - [4495] = {.lex_state = 307, .external_lex_state = 2}, - [4496] = {.lex_state = 10, .external_lex_state = 6}, - [4497] = {.lex_state = 10, .external_lex_state = 6}, - [4498] = {.lex_state = 10, .external_lex_state = 6}, - [4499] = {.lex_state = 10, .external_lex_state = 6}, - [4500] = {.lex_state = 10, .external_lex_state = 6}, - [4501] = {.lex_state = 10, .external_lex_state = 6}, - [4502] = {.lex_state = 10, .external_lex_state = 6}, - [4503] = {.lex_state = 10, .external_lex_state = 6}, - [4504] = {.lex_state = 10, .external_lex_state = 6}, - [4505] = {.lex_state = 10, .external_lex_state = 6}, - [4506] = {.lex_state = 10, .external_lex_state = 6}, - [4507] = {.lex_state = 10, .external_lex_state = 6}, - [4508] = {.lex_state = 10, .external_lex_state = 6}, - [4509] = {.lex_state = 10, .external_lex_state = 6}, - [4510] = {.lex_state = 10, .external_lex_state = 6}, - [4511] = {.lex_state = 10, .external_lex_state = 6}, - [4512] = {.lex_state = 10, .external_lex_state = 6}, - [4513] = {.lex_state = 10, .external_lex_state = 6}, - [4514] = {.lex_state = 10, .external_lex_state = 6}, - [4515] = {.lex_state = 10, .external_lex_state = 7}, - [4516] = {.lex_state = 10, .external_lex_state = 6}, - [4517] = {.lex_state = 10, .external_lex_state = 6}, - [4518] = {.lex_state = 10, .external_lex_state = 6}, - [4519] = {.lex_state = 10, .external_lex_state = 6}, - [4520] = {.lex_state = 10, .external_lex_state = 7}, - [4521] = {.lex_state = 10, .external_lex_state = 6}, - [4522] = {.lex_state = 10, .external_lex_state = 6}, - [4523] = {.lex_state = 10, .external_lex_state = 6}, - [4524] = {.lex_state = 10, .external_lex_state = 6}, - [4525] = {.lex_state = 10, .external_lex_state = 6}, - [4526] = {.lex_state = 10, .external_lex_state = 6}, - [4527] = {.lex_state = 10, .external_lex_state = 6}, - [4528] = {.lex_state = 10, .external_lex_state = 6}, - [4529] = {.lex_state = 10, .external_lex_state = 6}, - [4530] = {.lex_state = 10, .external_lex_state = 6}, - [4531] = {.lex_state = 10, .external_lex_state = 6}, - [4532] = {.lex_state = 10, .external_lex_state = 7}, - [4533] = {.lex_state = 10, .external_lex_state = 7}, - [4534] = {.lex_state = 10, .external_lex_state = 6}, - [4535] = {.lex_state = 10, .external_lex_state = 6}, - [4536] = {.lex_state = 10, .external_lex_state = 6}, - [4537] = {.lex_state = 10, .external_lex_state = 6}, - [4538] = {.lex_state = 10, .external_lex_state = 6}, - [4539] = {.lex_state = 10, .external_lex_state = 6}, - [4540] = {.lex_state = 10, .external_lex_state = 6}, - [4541] = {.lex_state = 10, .external_lex_state = 6}, - [4542] = {.lex_state = 10, .external_lex_state = 6}, - [4543] = {.lex_state = 10, .external_lex_state = 6}, - [4544] = {.lex_state = 10, .external_lex_state = 6}, - [4545] = {.lex_state = 10, .external_lex_state = 6}, - [4546] = {.lex_state = 10, .external_lex_state = 6}, - [4547] = {.lex_state = 10, .external_lex_state = 6}, - [4548] = {.lex_state = 10, .external_lex_state = 6}, - [4549] = {.lex_state = 10, .external_lex_state = 6}, - [4550] = {.lex_state = 10, .external_lex_state = 6}, - [4551] = {.lex_state = 10, .external_lex_state = 6}, - [4552] = {.lex_state = 10, .external_lex_state = 6}, - [4553] = {.lex_state = 10, .external_lex_state = 7}, - [4554] = {.lex_state = 10, .external_lex_state = 6}, - [4555] = {.lex_state = 10, .external_lex_state = 6}, - [4556] = {.lex_state = 10, .external_lex_state = 6}, - [4557] = {.lex_state = 10, .external_lex_state = 6}, - [4558] = {.lex_state = 10, .external_lex_state = 6}, - [4559] = {.lex_state = 10, .external_lex_state = 6}, - [4560] = {.lex_state = 8, .external_lex_state = 5}, - [4561] = {.lex_state = 10, .external_lex_state = 7}, - [4562] = {.lex_state = 10, .external_lex_state = 6}, - [4563] = {.lex_state = 10, .external_lex_state = 6}, - [4564] = {.lex_state = 10, .external_lex_state = 6}, - [4565] = {.lex_state = 10, .external_lex_state = 6}, - [4566] = {.lex_state = 10, .external_lex_state = 6}, - [4567] = {.lex_state = 10, .external_lex_state = 6}, - [4568] = {.lex_state = 8, .external_lex_state = 5}, - [4569] = {.lex_state = 10, .external_lex_state = 6}, - [4570] = {.lex_state = 10, .external_lex_state = 6}, - [4571] = {.lex_state = 10, .external_lex_state = 6}, - [4572] = {.lex_state = 10, .external_lex_state = 6}, - [4573] = {.lex_state = 10, .external_lex_state = 6}, - [4574] = {.lex_state = 10, .external_lex_state = 6}, - [4575] = {.lex_state = 10, .external_lex_state = 6}, - [4576] = {.lex_state = 10, .external_lex_state = 6}, - [4577] = {.lex_state = 10, .external_lex_state = 6}, - [4578] = {.lex_state = 10, .external_lex_state = 6}, - [4579] = {.lex_state = 10, .external_lex_state = 6}, - [4580] = {.lex_state = 10, .external_lex_state = 6}, - [4581] = {.lex_state = 8, .external_lex_state = 5}, - [4582] = {.lex_state = 10, .external_lex_state = 6}, - [4583] = {.lex_state = 10, .external_lex_state = 6}, - [4584] = {.lex_state = 8, .external_lex_state = 5}, - [4585] = {.lex_state = 10, .external_lex_state = 6}, - [4586] = {.lex_state = 10, .external_lex_state = 6}, - [4587] = {.lex_state = 10, .external_lex_state = 6}, - [4588] = {.lex_state = 10, .external_lex_state = 6}, - [4589] = {.lex_state = 10, .external_lex_state = 6}, - [4590] = {.lex_state = 10, .external_lex_state = 6}, - [4591] = {.lex_state = 10, .external_lex_state = 6}, - [4592] = {.lex_state = 10, .external_lex_state = 6}, - [4593] = {.lex_state = 10, .external_lex_state = 6}, - [4594] = {.lex_state = 10, .external_lex_state = 6}, - [4595] = {.lex_state = 10, .external_lex_state = 6}, - [4596] = {.lex_state = 10, .external_lex_state = 6}, - [4597] = {.lex_state = 10, .external_lex_state = 6}, - [4598] = {.lex_state = 10, .external_lex_state = 6}, - [4599] = {.lex_state = 10, .external_lex_state = 6}, - [4600] = {.lex_state = 10, .external_lex_state = 6}, - [4601] = {.lex_state = 10, .external_lex_state = 6}, - [4602] = {.lex_state = 10, .external_lex_state = 6}, - [4603] = {.lex_state = 10, .external_lex_state = 6}, - [4604] = {.lex_state = 10, .external_lex_state = 6}, - [4605] = {.lex_state = 10, .external_lex_state = 6}, - [4606] = {.lex_state = 10, .external_lex_state = 7}, - [4607] = {.lex_state = 10, .external_lex_state = 6}, - [4608] = {.lex_state = 10, .external_lex_state = 6}, - [4609] = {.lex_state = 10, .external_lex_state = 6}, - [4610] = {.lex_state = 10, .external_lex_state = 6}, - [4611] = {.lex_state = 10, .external_lex_state = 6}, - [4612] = {.lex_state = 10, .external_lex_state = 6}, - [4613] = {.lex_state = 10, .external_lex_state = 6}, - [4614] = {.lex_state = 10, .external_lex_state = 6}, - [4615] = {.lex_state = 10, .external_lex_state = 7}, - [4616] = {.lex_state = 10, .external_lex_state = 6}, - [4617] = {.lex_state = 10, .external_lex_state = 6}, - [4618] = {.lex_state = 10, .external_lex_state = 6}, - [4619] = {.lex_state = 10, .external_lex_state = 7}, - [4620] = {.lex_state = 8, .external_lex_state = 5}, - [4621] = {.lex_state = 10, .external_lex_state = 7}, - [4622] = {.lex_state = 10, .external_lex_state = 6}, - [4623] = {.lex_state = 10, .external_lex_state = 6}, - [4624] = {.lex_state = 10, .external_lex_state = 7}, - [4625] = {.lex_state = 10, .external_lex_state = 6}, - [4626] = {.lex_state = 10, .external_lex_state = 7}, - [4627] = {.lex_state = 10, .external_lex_state = 6}, - [4628] = {.lex_state = 10, .external_lex_state = 6}, - [4629] = {.lex_state = 10, .external_lex_state = 6}, - [4630] = {.lex_state = 10, .external_lex_state = 7}, - [4631] = {.lex_state = 10, .external_lex_state = 6}, - [4632] = {.lex_state = 10, .external_lex_state = 6}, - [4633] = {.lex_state = 10, .external_lex_state = 6}, - [4634] = {.lex_state = 10, .external_lex_state = 7}, - [4635] = {.lex_state = 10, .external_lex_state = 6}, - [4636] = {.lex_state = 10, .external_lex_state = 6}, - [4637] = {.lex_state = 10, .external_lex_state = 6}, - [4638] = {.lex_state = 10, .external_lex_state = 6}, - [4639] = {.lex_state = 10, .external_lex_state = 7}, - [4640] = {.lex_state = 10, .external_lex_state = 7}, - [4641] = {.lex_state = 10, .external_lex_state = 6}, - [4642] = {.lex_state = 10, .external_lex_state = 6}, - [4643] = {.lex_state = 10, .external_lex_state = 6}, - [4644] = {.lex_state = 10, .external_lex_state = 6}, - [4645] = {.lex_state = 10, .external_lex_state = 6}, - [4646] = {.lex_state = 10, .external_lex_state = 7}, - [4647] = {.lex_state = 10, .external_lex_state = 6}, - [4648] = {.lex_state = 10, .external_lex_state = 6}, - [4649] = {.lex_state = 10, .external_lex_state = 6}, - [4650] = {.lex_state = 10, .external_lex_state = 6}, - [4651] = {.lex_state = 10, .external_lex_state = 6}, - [4652] = {.lex_state = 10, .external_lex_state = 6}, - [4653] = {.lex_state = 10, .external_lex_state = 6}, - [4654] = {.lex_state = 10, .external_lex_state = 6}, - [4655] = {.lex_state = 10, .external_lex_state = 6}, - [4656] = {.lex_state = 10, .external_lex_state = 6}, - [4657] = {.lex_state = 10, .external_lex_state = 6}, - [4658] = {.lex_state = 10, .external_lex_state = 6}, - [4659] = {.lex_state = 10, .external_lex_state = 6}, - [4660] = {.lex_state = 10, .external_lex_state = 6}, - [4661] = {.lex_state = 10, .external_lex_state = 6}, - [4662] = {.lex_state = 10, .external_lex_state = 6}, - [4663] = {.lex_state = 10, .external_lex_state = 6}, - [4664] = {.lex_state = 10, .external_lex_state = 6}, - [4665] = {.lex_state = 10, .external_lex_state = 6}, - [4666] = {.lex_state = 10, .external_lex_state = 6}, - [4667] = {.lex_state = 10, .external_lex_state = 7}, - [4668] = {.lex_state = 10, .external_lex_state = 6}, - [4669] = {.lex_state = 10, .external_lex_state = 6}, - [4670] = {.lex_state = 10, .external_lex_state = 7}, - [4671] = {.lex_state = 10, .external_lex_state = 6}, - [4672] = {.lex_state = 10, .external_lex_state = 6}, - [4673] = {.lex_state = 10, .external_lex_state = 6}, - [4674] = {.lex_state = 10, .external_lex_state = 6}, - [4675] = {.lex_state = 10, .external_lex_state = 7}, - [4676] = {.lex_state = 10, .external_lex_state = 6}, - [4677] = {.lex_state = 10, .external_lex_state = 6}, - [4678] = {.lex_state = 10, .external_lex_state = 6}, - [4679] = {.lex_state = 10, .external_lex_state = 6}, - [4680] = {.lex_state = 10, .external_lex_state = 6}, - [4681] = {.lex_state = 10, .external_lex_state = 6}, - [4682] = {.lex_state = 10, .external_lex_state = 6}, - [4683] = {.lex_state = 10, .external_lex_state = 6}, - [4684] = {.lex_state = 10, .external_lex_state = 6}, - [4685] = {.lex_state = 10, .external_lex_state = 7}, - [4686] = {.lex_state = 10, .external_lex_state = 7}, - [4687] = {.lex_state = 10, .external_lex_state = 6}, - [4688] = {.lex_state = 10, .external_lex_state = 6}, - [4689] = {.lex_state = 10, .external_lex_state = 6}, - [4690] = {.lex_state = 10, .external_lex_state = 6}, - [4691] = {.lex_state = 10, .external_lex_state = 7}, - [4692] = {.lex_state = 10, .external_lex_state = 6}, - [4693] = {.lex_state = 10, .external_lex_state = 6}, - [4694] = {.lex_state = 10, .external_lex_state = 6}, - [4695] = {.lex_state = 10, .external_lex_state = 6}, - [4696] = {.lex_state = 10, .external_lex_state = 6}, - [4697] = {.lex_state = 10, .external_lex_state = 6}, - [4698] = {.lex_state = 10, .external_lex_state = 6}, - [4699] = {.lex_state = 10, .external_lex_state = 6}, - [4700] = {.lex_state = 10, .external_lex_state = 6}, - [4701] = {.lex_state = 10, .external_lex_state = 6}, - [4702] = {.lex_state = 10, .external_lex_state = 7}, - [4703] = {.lex_state = 10, .external_lex_state = 6}, - [4704] = {.lex_state = 10, .external_lex_state = 6}, - [4705] = {.lex_state = 10, .external_lex_state = 6}, - [4706] = {.lex_state = 10, .external_lex_state = 6}, - [4707] = {.lex_state = 10, .external_lex_state = 7}, - [4708] = {.lex_state = 10, .external_lex_state = 6}, - [4709] = {.lex_state = 10, .external_lex_state = 7}, - [4710] = {.lex_state = 10, .external_lex_state = 6}, - [4711] = {.lex_state = 10, .external_lex_state = 7}, - [4712] = {.lex_state = 10, .external_lex_state = 6}, - [4713] = {.lex_state = 10, .external_lex_state = 6}, - [4714] = {.lex_state = 10, .external_lex_state = 7}, - [4715] = {.lex_state = 10, .external_lex_state = 6}, - [4716] = {.lex_state = 10, .external_lex_state = 6}, - [4717] = {.lex_state = 10, .external_lex_state = 7}, - [4718] = {.lex_state = 10, .external_lex_state = 6}, - [4719] = {.lex_state = 10, .external_lex_state = 6}, - [4720] = {.lex_state = 10, .external_lex_state = 6}, - [4721] = {.lex_state = 10, .external_lex_state = 6}, - [4722] = {.lex_state = 10, .external_lex_state = 6}, - [4723] = {.lex_state = 10, .external_lex_state = 6}, - [4724] = {.lex_state = 10, .external_lex_state = 6}, - [4725] = {.lex_state = 10, .external_lex_state = 7}, - [4726] = {.lex_state = 10, .external_lex_state = 6}, - [4727] = {.lex_state = 10, .external_lex_state = 6}, - [4728] = {.lex_state = 10, .external_lex_state = 6}, - [4729] = {.lex_state = 10, .external_lex_state = 6}, - [4730] = {.lex_state = 10, .external_lex_state = 6}, - [4731] = {.lex_state = 10, .external_lex_state = 6}, - [4732] = {.lex_state = 10, .external_lex_state = 6}, - [4733] = {.lex_state = 10, .external_lex_state = 6}, - [4734] = {.lex_state = 10, .external_lex_state = 6}, - [4735] = {.lex_state = 10, .external_lex_state = 6}, - [4736] = {.lex_state = 10, .external_lex_state = 6}, - [4737] = {.lex_state = 10, .external_lex_state = 6}, - [4738] = {.lex_state = 10, .external_lex_state = 6}, - [4739] = {.lex_state = 10, .external_lex_state = 6}, - [4740] = {.lex_state = 10, .external_lex_state = 6}, - [4741] = {.lex_state = 10, .external_lex_state = 6}, - [4742] = {.lex_state = 10, .external_lex_state = 6}, - [4743] = {.lex_state = 10, .external_lex_state = 6}, - [4744] = {.lex_state = 10, .external_lex_state = 6}, - [4745] = {.lex_state = 10, .external_lex_state = 6}, - [4746] = {.lex_state = 10, .external_lex_state = 6}, - [4747] = {.lex_state = 10, .external_lex_state = 6}, - [4748] = {.lex_state = 10, .external_lex_state = 6}, - [4749] = {.lex_state = 10, .external_lex_state = 6}, - [4750] = {.lex_state = 10, .external_lex_state = 6}, - [4751] = {.lex_state = 10, .external_lex_state = 6}, - [4752] = {.lex_state = 10, .external_lex_state = 6}, - [4753] = {.lex_state = 10, .external_lex_state = 6}, - [4754] = {.lex_state = 10, .external_lex_state = 6}, - [4755] = {.lex_state = 10, .external_lex_state = 6}, - [4756] = {.lex_state = 10, .external_lex_state = 6}, - [4757] = {.lex_state = 10, .external_lex_state = 6}, - [4758] = {.lex_state = 10, .external_lex_state = 7}, - [4759] = {.lex_state = 10, .external_lex_state = 6}, - [4760] = {.lex_state = 10, .external_lex_state = 7}, - [4761] = {.lex_state = 10, .external_lex_state = 6}, - [4762] = {.lex_state = 10, .external_lex_state = 6}, - [4763] = {.lex_state = 10, .external_lex_state = 6}, - [4764] = {.lex_state = 10, .external_lex_state = 7}, - [4765] = {.lex_state = 10, .external_lex_state = 6}, - [4766] = {.lex_state = 10, .external_lex_state = 7}, - [4767] = {.lex_state = 10, .external_lex_state = 6}, - [4768] = {.lex_state = 10, .external_lex_state = 7}, - [4769] = {.lex_state = 10, .external_lex_state = 6}, - [4770] = {.lex_state = 10, .external_lex_state = 7}, - [4771] = {.lex_state = 10, .external_lex_state = 6}, - [4772] = {.lex_state = 10, .external_lex_state = 7}, - [4773] = {.lex_state = 10, .external_lex_state = 6}, - [4774] = {.lex_state = 10, .external_lex_state = 7}, - [4775] = {.lex_state = 10, .external_lex_state = 6}, - [4776] = {.lex_state = 10, .external_lex_state = 6}, - [4777] = {.lex_state = 10, .external_lex_state = 6}, - [4778] = {.lex_state = 10, .external_lex_state = 6}, - [4779] = {.lex_state = 10, .external_lex_state = 6}, - [4780] = {.lex_state = 8, .external_lex_state = 5}, - [4781] = {.lex_state = 10, .external_lex_state = 6}, - [4782] = {.lex_state = 8, .external_lex_state = 5}, - [4783] = {.lex_state = 10, .external_lex_state = 6}, - [4784] = {.lex_state = 10, .external_lex_state = 7}, - [4785] = {.lex_state = 10, .external_lex_state = 6}, - [4786] = {.lex_state = 10, .external_lex_state = 7}, - [4787] = {.lex_state = 8, .external_lex_state = 5}, - [4788] = {.lex_state = 10, .external_lex_state = 6}, - [4789] = {.lex_state = 10, .external_lex_state = 6}, - [4790] = {.lex_state = 10, .external_lex_state = 6}, - [4791] = {.lex_state = 10, .external_lex_state = 6}, - [4792] = {.lex_state = 10, .external_lex_state = 6}, - [4793] = {.lex_state = 10, .external_lex_state = 6}, - [4794] = {.lex_state = 8, .external_lex_state = 5}, - [4795] = {.lex_state = 10, .external_lex_state = 6}, - [4796] = {.lex_state = 10, .external_lex_state = 7}, - [4797] = {.lex_state = 10, .external_lex_state = 6}, - [4798] = {.lex_state = 10, .external_lex_state = 6}, - [4799] = {.lex_state = 10, .external_lex_state = 7}, - [4800] = {.lex_state = 10, .external_lex_state = 6}, - [4801] = {.lex_state = 10, .external_lex_state = 6}, - [4802] = {.lex_state = 10, .external_lex_state = 6}, - [4803] = {.lex_state = 10, .external_lex_state = 6}, - [4804] = {.lex_state = 10, .external_lex_state = 6}, - [4805] = {.lex_state = 10, .external_lex_state = 6}, - [4806] = {.lex_state = 10, .external_lex_state = 6}, - [4807] = {.lex_state = 10, .external_lex_state = 7}, - [4808] = {.lex_state = 10, .external_lex_state = 6}, - [4809] = {.lex_state = 10, .external_lex_state = 6}, - [4810] = {.lex_state = 10, .external_lex_state = 6}, - [4811] = {.lex_state = 10, .external_lex_state = 6}, - [4812] = {.lex_state = 10, .external_lex_state = 6}, - [4813] = {.lex_state = 10, .external_lex_state = 6}, - [4814] = {.lex_state = 10, .external_lex_state = 6}, - [4815] = {.lex_state = 10, .external_lex_state = 6}, - [4816] = {.lex_state = 10, .external_lex_state = 7}, - [4817] = {.lex_state = 10, .external_lex_state = 6}, - [4818] = {.lex_state = 10, .external_lex_state = 7}, - [4819] = {.lex_state = 10, .external_lex_state = 6}, - [4820] = {.lex_state = 10, .external_lex_state = 6}, - [4821] = {.lex_state = 10, .external_lex_state = 6}, - [4822] = {.lex_state = 10, .external_lex_state = 6}, - [4823] = {.lex_state = 10, .external_lex_state = 7}, - [4824] = {.lex_state = 10, .external_lex_state = 6}, - [4825] = {.lex_state = 10, .external_lex_state = 6}, - [4826] = {.lex_state = 10, .external_lex_state = 6}, - [4827] = {.lex_state = 10, .external_lex_state = 6}, - [4828] = {.lex_state = 10, .external_lex_state = 6}, - [4829] = {.lex_state = 10, .external_lex_state = 6}, - [4830] = {.lex_state = 10, .external_lex_state = 7}, - [4831] = {.lex_state = 10, .external_lex_state = 6}, - [4832] = {.lex_state = 10, .external_lex_state = 6}, - [4833] = {.lex_state = 10, .external_lex_state = 7}, - [4834] = {.lex_state = 10, .external_lex_state = 6}, - [4835] = {.lex_state = 10, .external_lex_state = 6}, - [4836] = {.lex_state = 10, .external_lex_state = 7}, - [4837] = {.lex_state = 8, .external_lex_state = 5}, - [4838] = {.lex_state = 10, .external_lex_state = 7}, - [4839] = {.lex_state = 10, .external_lex_state = 7}, - [4840] = {.lex_state = 10, .external_lex_state = 7}, - [4841] = {.lex_state = 10, .external_lex_state = 7}, - [4842] = {.lex_state = 10, .external_lex_state = 7}, - [4843] = {.lex_state = 10, .external_lex_state = 7}, - [4844] = {.lex_state = 10, .external_lex_state = 7}, - [4845] = {.lex_state = 10, .external_lex_state = 7}, - [4846] = {.lex_state = 10, .external_lex_state = 7}, - [4847] = {.lex_state = 10, .external_lex_state = 6}, - [4848] = {.lex_state = 10, .external_lex_state = 7}, - [4849] = {.lex_state = 10, .external_lex_state = 7}, - [4850] = {.lex_state = 10, .external_lex_state = 7}, - [4851] = {.lex_state = 10, .external_lex_state = 6}, - [4852] = {.lex_state = 10, .external_lex_state = 7}, - [4853] = {.lex_state = 10, .external_lex_state = 7}, - [4854] = {.lex_state = 8, .external_lex_state = 5}, - [4855] = {.lex_state = 10, .external_lex_state = 7}, - [4856] = {.lex_state = 10, .external_lex_state = 7}, - [4857] = {.lex_state = 10, .external_lex_state = 7}, - [4858] = {.lex_state = 10, .external_lex_state = 7}, - [4859] = {.lex_state = 8, .external_lex_state = 5}, - [4860] = {.lex_state = 10, .external_lex_state = 7}, - [4861] = {.lex_state = 10, .external_lex_state = 7}, - [4862] = {.lex_state = 10, .external_lex_state = 6}, - [4863] = {.lex_state = 10, .external_lex_state = 7}, - [4864] = {.lex_state = 8, .external_lex_state = 5}, - [4865] = {.lex_state = 10, .external_lex_state = 6}, - [4866] = {.lex_state = 10, .external_lex_state = 7}, - [4867] = {.lex_state = 10, .external_lex_state = 7}, - [4868] = {.lex_state = 8, .external_lex_state = 5}, - [4869] = {.lex_state = 8, .external_lex_state = 5}, - [4870] = {.lex_state = 10, .external_lex_state = 6}, - [4871] = {.lex_state = 10, .external_lex_state = 7}, - [4872] = {.lex_state = 10, .external_lex_state = 6}, - [4873] = {.lex_state = 10, .external_lex_state = 7}, - [4874] = {.lex_state = 10, .external_lex_state = 7}, - [4875] = {.lex_state = 10, .external_lex_state = 7}, - [4876] = {.lex_state = 10, .external_lex_state = 7}, - [4877] = {.lex_state = 10, .external_lex_state = 6}, - [4878] = {.lex_state = 10, .external_lex_state = 7}, - [4879] = {.lex_state = 10, .external_lex_state = 7}, - [4880] = {.lex_state = 10, .external_lex_state = 6}, - [4881] = {.lex_state = 10, .external_lex_state = 7}, - [4882] = {.lex_state = 8, .external_lex_state = 5}, - [4883] = {.lex_state = 8, .external_lex_state = 5}, - [4884] = {.lex_state = 8, .external_lex_state = 5}, - [4885] = {.lex_state = 10, .external_lex_state = 7}, - [4886] = {.lex_state = 10, .external_lex_state = 7}, - [4887] = {.lex_state = 10, .external_lex_state = 7}, - [4888] = {.lex_state = 10, .external_lex_state = 7}, - [4889] = {.lex_state = 10, .external_lex_state = 7}, - [4890] = {.lex_state = 10, .external_lex_state = 7}, - [4891] = {.lex_state = 8, .external_lex_state = 5}, - [4892] = {.lex_state = 10, .external_lex_state = 7}, - [4893] = {.lex_state = 8, .external_lex_state = 5}, - [4894] = {.lex_state = 10, .external_lex_state = 7}, - [4895] = {.lex_state = 10, .external_lex_state = 7}, - [4896] = {.lex_state = 10, .external_lex_state = 6}, - [4897] = {.lex_state = 10, .external_lex_state = 7}, - [4898] = {.lex_state = 10, .external_lex_state = 7}, - [4899] = {.lex_state = 10, .external_lex_state = 6}, - [4900] = {.lex_state = 8, .external_lex_state = 5}, - [4901] = {.lex_state = 8, .external_lex_state = 5}, - [4902] = {.lex_state = 10, .external_lex_state = 7}, - [4903] = {.lex_state = 10, .external_lex_state = 7}, - [4904] = {.lex_state = 10, .external_lex_state = 7}, - [4905] = {.lex_state = 10, .external_lex_state = 7}, - [4906] = {.lex_state = 10, .external_lex_state = 6}, - [4907] = {.lex_state = 10, .external_lex_state = 7}, - [4908] = {.lex_state = 10, .external_lex_state = 7}, - [4909] = {.lex_state = 10, .external_lex_state = 7}, - [4910] = {.lex_state = 10, .external_lex_state = 7}, - [4911] = {.lex_state = 10, .external_lex_state = 7}, - [4912] = {.lex_state = 8, .external_lex_state = 5}, - [4913] = {.lex_state = 10, .external_lex_state = 7}, - [4914] = {.lex_state = 10, .external_lex_state = 7}, - [4915] = {.lex_state = 10, .external_lex_state = 7}, - [4916] = {.lex_state = 10, .external_lex_state = 7}, - [4917] = {.lex_state = 10, .external_lex_state = 7}, - [4918] = {.lex_state = 10, .external_lex_state = 7}, - [4919] = {.lex_state = 10, .external_lex_state = 7}, - [4920] = {.lex_state = 10, .external_lex_state = 6}, - [4921] = {.lex_state = 10, .external_lex_state = 7}, - [4922] = {.lex_state = 10, .external_lex_state = 7}, - [4923] = {.lex_state = 10, .external_lex_state = 7}, - [4924] = {.lex_state = 10, .external_lex_state = 7}, - [4925] = {.lex_state = 10, .external_lex_state = 6}, - [4926] = {.lex_state = 10, .external_lex_state = 7}, - [4927] = {.lex_state = 8, .external_lex_state = 5}, - [4928] = {.lex_state = 8, .external_lex_state = 5}, - [4929] = {.lex_state = 10, .external_lex_state = 6}, - [4930] = {.lex_state = 10, .external_lex_state = 7}, - [4931] = {.lex_state = 10, .external_lex_state = 6}, - [4932] = {.lex_state = 10, .external_lex_state = 7}, - [4933] = {.lex_state = 10, .external_lex_state = 7}, - [4934] = {.lex_state = 10, .external_lex_state = 7}, - [4935] = {.lex_state = 10, .external_lex_state = 7}, - [4936] = {.lex_state = 10, .external_lex_state = 7}, - [4937] = {.lex_state = 10, .external_lex_state = 6}, - [4938] = {.lex_state = 10, .external_lex_state = 7}, - [4939] = {.lex_state = 10, .external_lex_state = 6}, - [4940] = {.lex_state = 10, .external_lex_state = 6}, - [4941] = {.lex_state = 10, .external_lex_state = 6}, - [4942] = {.lex_state = 10, .external_lex_state = 6}, - [4943] = {.lex_state = 10, .external_lex_state = 6}, - [4944] = {.lex_state = 10, .external_lex_state = 6}, - [4945] = {.lex_state = 10, .external_lex_state = 7}, - [4946] = {.lex_state = 10, .external_lex_state = 6}, - [4947] = {.lex_state = 10, .external_lex_state = 7}, - [4948] = {.lex_state = 10, .external_lex_state = 7}, - [4949] = {.lex_state = 10, .external_lex_state = 7}, - [4950] = {.lex_state = 10, .external_lex_state = 7}, - [4951] = {.lex_state = 10, .external_lex_state = 6}, - [4952] = {.lex_state = 10, .external_lex_state = 7}, - [4953] = {.lex_state = 10, .external_lex_state = 6}, - [4954] = {.lex_state = 10, .external_lex_state = 7}, - [4955] = {.lex_state = 10, .external_lex_state = 6}, - [4956] = {.lex_state = 10, .external_lex_state = 7}, - [4957] = {.lex_state = 10, .external_lex_state = 7}, - [4958] = {.lex_state = 10, .external_lex_state = 7}, - [4959] = {.lex_state = 10, .external_lex_state = 7}, - [4960] = {.lex_state = 10, .external_lex_state = 7}, - [4961] = {.lex_state = 10, .external_lex_state = 7}, - [4962] = {.lex_state = 10, .external_lex_state = 7}, - [4963] = {.lex_state = 10, .external_lex_state = 7}, - [4964] = {.lex_state = 10, .external_lex_state = 7}, - [4965] = {.lex_state = 10, .external_lex_state = 7}, - [4966] = {.lex_state = 10, .external_lex_state = 7}, - [4967] = {.lex_state = 10, .external_lex_state = 7}, - [4968] = {.lex_state = 10, .external_lex_state = 6}, - [4969] = {.lex_state = 10, .external_lex_state = 7}, - [4970] = {.lex_state = 10, .external_lex_state = 6}, - [4971] = {.lex_state = 10, .external_lex_state = 7}, - [4972] = {.lex_state = 10, .external_lex_state = 7}, - [4973] = {.lex_state = 10, .external_lex_state = 7}, - [4974] = {.lex_state = 10, .external_lex_state = 7}, - [4975] = {.lex_state = 10, .external_lex_state = 7}, - [4976] = {.lex_state = 8, .external_lex_state = 5}, - [4977] = {.lex_state = 10, .external_lex_state = 7}, - [4978] = {.lex_state = 10, .external_lex_state = 6}, - [4979] = {.lex_state = 10, .external_lex_state = 6}, - [4980] = {.lex_state = 10, .external_lex_state = 7}, - [4981] = {.lex_state = 8, .external_lex_state = 5}, - [4982] = {.lex_state = 10, .external_lex_state = 7}, - [4983] = {.lex_state = 10, .external_lex_state = 7}, - [4984] = {.lex_state = 10, .external_lex_state = 7}, - [4985] = {.lex_state = 10, .external_lex_state = 7}, - [4986] = {.lex_state = 10, .external_lex_state = 7}, - [4987] = {.lex_state = 10, .external_lex_state = 7}, - [4988] = {.lex_state = 10, .external_lex_state = 7}, - [4989] = {.lex_state = 10, .external_lex_state = 7}, - [4990] = {.lex_state = 10, .external_lex_state = 7}, - [4991] = {.lex_state = 10, .external_lex_state = 7}, - [4992] = {.lex_state = 10, .external_lex_state = 7}, - [4993] = {.lex_state = 10, .external_lex_state = 7}, - [4994] = {.lex_state = 10, .external_lex_state = 7}, - [4995] = {.lex_state = 10, .external_lex_state = 7}, - [4996] = {.lex_state = 10, .external_lex_state = 7}, - [4997] = {.lex_state = 10, .external_lex_state = 7}, - [4998] = {.lex_state = 10, .external_lex_state = 7}, - [4999] = {.lex_state = 10, .external_lex_state = 7}, - [5000] = {.lex_state = 10, .external_lex_state = 7}, - [5001] = {.lex_state = 10, .external_lex_state = 7}, - [5002] = {.lex_state = 10, .external_lex_state = 7}, - [5003] = {.lex_state = 8, .external_lex_state = 5}, - [5004] = {.lex_state = 8, .external_lex_state = 5}, - [5005] = {.lex_state = 10, .external_lex_state = 7}, - [5006] = {.lex_state = 10, .external_lex_state = 7}, - [5007] = {.lex_state = 10, .external_lex_state = 7}, - [5008] = {.lex_state = 10, .external_lex_state = 7}, - [5009] = {.lex_state = 8, .external_lex_state = 5}, - [5010] = {.lex_state = 8, .external_lex_state = 5}, - [5011] = {.lex_state = 10, .external_lex_state = 7}, - [5012] = {.lex_state = 10, .external_lex_state = 7}, - [5013] = {.lex_state = 10, .external_lex_state = 7}, - [5014] = {.lex_state = 8, .external_lex_state = 5}, - [5015] = {.lex_state = 10, .external_lex_state = 7}, - [5016] = {.lex_state = 8, .external_lex_state = 5}, - [5017] = {.lex_state = 10, .external_lex_state = 7}, - [5018] = {.lex_state = 10, .external_lex_state = 7}, - [5019] = {.lex_state = 8, .external_lex_state = 5}, - [5020] = {.lex_state = 10, .external_lex_state = 7}, - [5021] = {.lex_state = 10, .external_lex_state = 7}, - [5022] = {.lex_state = 10, .external_lex_state = 7}, - [5023] = {.lex_state = 8, .external_lex_state = 5}, - [5024] = {.lex_state = 10, .external_lex_state = 7}, - [5025] = {.lex_state = 10, .external_lex_state = 7}, - [5026] = {.lex_state = 10, .external_lex_state = 7}, - [5027] = {.lex_state = 10, .external_lex_state = 7}, - [5028] = {.lex_state = 10, .external_lex_state = 7}, - [5029] = {.lex_state = 10, .external_lex_state = 7}, - [5030] = {.lex_state = 8, .external_lex_state = 5}, - [5031] = {.lex_state = 8, .external_lex_state = 5}, - [5032] = {.lex_state = 8, .external_lex_state = 5}, - [5033] = {.lex_state = 8, .external_lex_state = 5}, - [5034] = {.lex_state = 8, .external_lex_state = 5}, - [5035] = {.lex_state = 8, .external_lex_state = 5}, - [5036] = {.lex_state = 10, .external_lex_state = 7}, - [5037] = {.lex_state = 8, .external_lex_state = 5}, - [5038] = {.lex_state = 10, .external_lex_state = 7}, - [5039] = {.lex_state = 10, .external_lex_state = 7}, - [5040] = {.lex_state = 10, .external_lex_state = 7}, - [5041] = {.lex_state = 10, .external_lex_state = 7}, - [5042] = {.lex_state = 10, .external_lex_state = 7}, - [5043] = {.lex_state = 10, .external_lex_state = 7}, - [5044] = {.lex_state = 10, .external_lex_state = 7}, - [5045] = {.lex_state = 10, .external_lex_state = 7}, - [5046] = {.lex_state = 10, .external_lex_state = 7}, - [5047] = {.lex_state = 10, .external_lex_state = 7}, - [5048] = {.lex_state = 10, .external_lex_state = 7}, - [5049] = {.lex_state = 10, .external_lex_state = 7}, - [5050] = {.lex_state = 8, .external_lex_state = 5}, - [5051] = {.lex_state = 10, .external_lex_state = 7}, - [5052] = {.lex_state = 10, .external_lex_state = 7}, - [5053] = {.lex_state = 10, .external_lex_state = 7}, - [5054] = {.lex_state = 10, .external_lex_state = 7}, - [5055] = {.lex_state = 8, .external_lex_state = 5}, - [5056] = {.lex_state = 10, .external_lex_state = 7}, - [5057] = {.lex_state = 10, .external_lex_state = 7}, - [5058] = {.lex_state = 10, .external_lex_state = 7}, - [5059] = {.lex_state = 10, .external_lex_state = 7}, - [5060] = {.lex_state = 10, .external_lex_state = 7}, - [5061] = {.lex_state = 10, .external_lex_state = 7}, - [5062] = {.lex_state = 10, .external_lex_state = 7}, - [5063] = {.lex_state = 10, .external_lex_state = 7}, - [5064] = {.lex_state = 10, .external_lex_state = 7}, - [5065] = {.lex_state = 10, .external_lex_state = 7}, - [5066] = {.lex_state = 10, .external_lex_state = 7}, - [5067] = {.lex_state = 10, .external_lex_state = 7}, - [5068] = {.lex_state = 10, .external_lex_state = 7}, - [5069] = {.lex_state = 10, .external_lex_state = 7}, - [5070] = {.lex_state = 10, .external_lex_state = 7}, - [5071] = {.lex_state = 10, .external_lex_state = 7}, - [5072] = {.lex_state = 10, .external_lex_state = 7}, - [5073] = {.lex_state = 10, .external_lex_state = 7}, - [5074] = {.lex_state = 10, .external_lex_state = 7}, - [5075] = {.lex_state = 10, .external_lex_state = 7}, - [5076] = {.lex_state = 10, .external_lex_state = 7}, - [5077] = {.lex_state = 10, .external_lex_state = 7}, - [5078] = {.lex_state = 10, .external_lex_state = 7}, - [5079] = {.lex_state = 10, .external_lex_state = 7}, - [5080] = {.lex_state = 10, .external_lex_state = 7}, - [5081] = {.lex_state = 10, .external_lex_state = 7}, - [5082] = {.lex_state = 10, .external_lex_state = 7}, - [5083] = {.lex_state = 8, .external_lex_state = 5}, - [5084] = {.lex_state = 10, .external_lex_state = 7}, - [5085] = {.lex_state = 10, .external_lex_state = 7}, - [5086] = {.lex_state = 10, .external_lex_state = 7}, - [5087] = {.lex_state = 10, .external_lex_state = 7}, - [5088] = {.lex_state = 10, .external_lex_state = 7}, - [5089] = {.lex_state = 10, .external_lex_state = 7}, - [5090] = {.lex_state = 10, .external_lex_state = 7}, - [5091] = {.lex_state = 10, .external_lex_state = 6}, - [5092] = {.lex_state = 10, .external_lex_state = 7}, - [5093] = {.lex_state = 10, .external_lex_state = 7}, - [5094] = {.lex_state = 10, .external_lex_state = 7}, - [5095] = {.lex_state = 10, .external_lex_state = 7}, - [5096] = {.lex_state = 10, .external_lex_state = 6}, - [5097] = {.lex_state = 10, .external_lex_state = 6}, - [5098] = {.lex_state = 10, .external_lex_state = 7}, - [5099] = {.lex_state = 10, .external_lex_state = 7}, - [5100] = {.lex_state = 10, .external_lex_state = 7}, - [5101] = {.lex_state = 10, .external_lex_state = 7}, - [5102] = {.lex_state = 10, .external_lex_state = 7}, - [5103] = {.lex_state = 10, .external_lex_state = 6}, - [5104] = {.lex_state = 10, .external_lex_state = 7}, - [5105] = {.lex_state = 10, .external_lex_state = 7}, - [5106] = {.lex_state = 10, .external_lex_state = 7}, - [5107] = {.lex_state = 10, .external_lex_state = 7}, - [5108] = {.lex_state = 10, .external_lex_state = 7}, - [5109] = {.lex_state = 10, .external_lex_state = 6}, - [5110] = {.lex_state = 10, .external_lex_state = 7}, - [5111] = {.lex_state = 10, .external_lex_state = 7}, - [5112] = {.lex_state = 10, .external_lex_state = 7}, - [5113] = {.lex_state = 10, .external_lex_state = 7}, - [5114] = {.lex_state = 10, .external_lex_state = 7}, - [5115] = {.lex_state = 10, .external_lex_state = 7}, - [5116] = {.lex_state = 10, .external_lex_state = 7}, - [5117] = {.lex_state = 10, .external_lex_state = 7}, - [5118] = {.lex_state = 10, .external_lex_state = 7}, - [5119] = {.lex_state = 10, .external_lex_state = 6}, - [5120] = {.lex_state = 10, .external_lex_state = 7}, - [5121] = {.lex_state = 10, .external_lex_state = 7}, - [5122] = {.lex_state = 10, .external_lex_state = 7}, - [5123] = {.lex_state = 10, .external_lex_state = 7}, - [5124] = {.lex_state = 10, .external_lex_state = 7}, - [5125] = {.lex_state = 10, .external_lex_state = 7}, - [5126] = {.lex_state = 10, .external_lex_state = 7}, - [5127] = {.lex_state = 10, .external_lex_state = 7}, - [5128] = {.lex_state = 10, .external_lex_state = 7}, - [5129] = {.lex_state = 10, .external_lex_state = 6}, - [5130] = {.lex_state = 10, .external_lex_state = 7}, - [5131] = {.lex_state = 10, .external_lex_state = 7}, - [5132] = {.lex_state = 10, .external_lex_state = 7}, - [5133] = {.lex_state = 10, .external_lex_state = 7}, - [5134] = {.lex_state = 10, .external_lex_state = 7}, - [5135] = {.lex_state = 10, .external_lex_state = 6}, - [5136] = {.lex_state = 10, .external_lex_state = 6}, - [5137] = {.lex_state = 10, .external_lex_state = 7}, - [5138] = {.lex_state = 10, .external_lex_state = 7}, - [5139] = {.lex_state = 10, .external_lex_state = 7}, - [5140] = {.lex_state = 10, .external_lex_state = 7}, - [5141] = {.lex_state = 10, .external_lex_state = 7}, - [5142] = {.lex_state = 10, .external_lex_state = 7}, - [5143] = {.lex_state = 10, .external_lex_state = 7}, - [5144] = {.lex_state = 10, .external_lex_state = 7}, - [5145] = {.lex_state = 10, .external_lex_state = 7}, - [5146] = {.lex_state = 10, .external_lex_state = 7}, - [5147] = {.lex_state = 10, .external_lex_state = 7}, - [5148] = {.lex_state = 10, .external_lex_state = 6}, - [5149] = {.lex_state = 10, .external_lex_state = 6}, - [5150] = {.lex_state = 10, .external_lex_state = 7}, - [5151] = {.lex_state = 10, .external_lex_state = 7}, - [5152] = {.lex_state = 10, .external_lex_state = 7}, - [5153] = {.lex_state = 10, .external_lex_state = 7}, - [5154] = {.lex_state = 10, .external_lex_state = 6}, - [5155] = {.lex_state = 10, .external_lex_state = 7}, - [5156] = {.lex_state = 10, .external_lex_state = 7}, - [5157] = {.lex_state = 10, .external_lex_state = 6}, - [5158] = {.lex_state = 10, .external_lex_state = 6}, - [5159] = {.lex_state = 10, .external_lex_state = 7}, - [5160] = {.lex_state = 10, .external_lex_state = 7}, - [5161] = {.lex_state = 10, .external_lex_state = 7}, - [5162] = {.lex_state = 10, .external_lex_state = 6}, - [5163] = {.lex_state = 10, .external_lex_state = 7}, - [5164] = {.lex_state = 10, .external_lex_state = 6}, - [5165] = {.lex_state = 10, .external_lex_state = 7}, - [5166] = {.lex_state = 10, .external_lex_state = 7}, - [5167] = {.lex_state = 10, .external_lex_state = 6}, - [5168] = {.lex_state = 10, .external_lex_state = 7}, - [5169] = {.lex_state = 10, .external_lex_state = 6}, - [5170] = {.lex_state = 10, .external_lex_state = 7}, - [5171] = {.lex_state = 10, .external_lex_state = 7}, - [5172] = {.lex_state = 8, .external_lex_state = 5}, - [5173] = {.lex_state = 8, .external_lex_state = 5}, - [5174] = {.lex_state = 10, .external_lex_state = 6}, - [5175] = {.lex_state = 8, .external_lex_state = 5}, - [5176] = {.lex_state = 10, .external_lex_state = 7}, - [5177] = {.lex_state = 10, .external_lex_state = 6}, - [5178] = {.lex_state = 10, .external_lex_state = 7}, - [5179] = {.lex_state = 8, .external_lex_state = 5}, - [5180] = {.lex_state = 8, .external_lex_state = 5}, - [5181] = {.lex_state = 8, .external_lex_state = 5}, - [5182] = {.lex_state = 8, .external_lex_state = 5}, - [5183] = {.lex_state = 8, .external_lex_state = 5}, - [5184] = {.lex_state = 10, .external_lex_state = 7}, - [5185] = {.lex_state = 8, .external_lex_state = 5}, - [5186] = {.lex_state = 10, .external_lex_state = 7}, - [5187] = {.lex_state = 8, .external_lex_state = 5}, - [5188] = {.lex_state = 8, .external_lex_state = 5}, - [5189] = {.lex_state = 8, .external_lex_state = 5}, - [5190] = {.lex_state = 8, .external_lex_state = 5}, - [5191] = {.lex_state = 8, .external_lex_state = 5}, - [5192] = {.lex_state = 8, .external_lex_state = 5}, - [5193] = {.lex_state = 10, .external_lex_state = 6}, - [5194] = {.lex_state = 10, .external_lex_state = 6}, - [5195] = {.lex_state = 8, .external_lex_state = 5}, - [5196] = {.lex_state = 10, .external_lex_state = 7}, - [5197] = {.lex_state = 8, .external_lex_state = 5}, - [5198] = {.lex_state = 10, .external_lex_state = 6}, - [5199] = {.lex_state = 8, .external_lex_state = 5}, - [5200] = {.lex_state = 8, .external_lex_state = 5}, - [5201] = {.lex_state = 8, .external_lex_state = 5}, - [5202] = {.lex_state = 8, .external_lex_state = 5}, - [5203] = {.lex_state = 10, .external_lex_state = 6}, - [5204] = {.lex_state = 10, .external_lex_state = 6}, - [5205] = {.lex_state = 10, .external_lex_state = 6}, - [5206] = {.lex_state = 10, .external_lex_state = 6}, - [5207] = {.lex_state = 10, .external_lex_state = 6}, - [5208] = {.lex_state = 10, .external_lex_state = 6}, - [5209] = {.lex_state = 10, .external_lex_state = 7}, - [5210] = {.lex_state = 8, .external_lex_state = 5}, - [5211] = {.lex_state = 10, .external_lex_state = 6}, - [5212] = {.lex_state = 10, .external_lex_state = 6}, - [5213] = {.lex_state = 10, .external_lex_state = 6}, - [5214] = {.lex_state = 8, .external_lex_state = 5}, - [5215] = {.lex_state = 8, .external_lex_state = 5}, - [5216] = {.lex_state = 10, .external_lex_state = 6}, - [5217] = {.lex_state = 8, .external_lex_state = 5}, - [5218] = {.lex_state = 10, .external_lex_state = 6}, - [5219] = {.lex_state = 8, .external_lex_state = 5}, - [5220] = {.lex_state = 8, .external_lex_state = 5}, - [5221] = {.lex_state = 10, .external_lex_state = 7}, - [5222] = {.lex_state = 10, .external_lex_state = 6}, - [5223] = {.lex_state = 8, .external_lex_state = 5}, - [5224] = {.lex_state = 8, .external_lex_state = 5}, - [5225] = {.lex_state = 10, .external_lex_state = 6}, - [5226] = {.lex_state = 8, .external_lex_state = 5}, - [5227] = {.lex_state = 10, .external_lex_state = 7}, - [5228] = {.lex_state = 8, .external_lex_state = 5}, - [5229] = {.lex_state = 10, .external_lex_state = 7}, - [5230] = {.lex_state = 10, .external_lex_state = 6}, - [5231] = {.lex_state = 10, .external_lex_state = 7}, - [5232] = {.lex_state = 15, .external_lex_state = 9}, - [5233] = {.lex_state = 8, .external_lex_state = 5}, - [5234] = {.lex_state = 8, .external_lex_state = 5}, - [5235] = {.lex_state = 8, .external_lex_state = 5}, - [5236] = {.lex_state = 15, .external_lex_state = 9}, - [5237] = {.lex_state = 8, .external_lex_state = 5}, - [5238] = {.lex_state = 8, .external_lex_state = 5}, - [5239] = {.lex_state = 15, .external_lex_state = 9}, - [5240] = {.lex_state = 10, .external_lex_state = 7}, - [5241] = {.lex_state = 10, .external_lex_state = 6}, - [5242] = {.lex_state = 8, .external_lex_state = 5}, - [5243] = {.lex_state = 10, .external_lex_state = 7}, - [5244] = {.lex_state = 10, .external_lex_state = 7}, - [5245] = {.lex_state = 15, .external_lex_state = 9}, - [5246] = {.lex_state = 8, .external_lex_state = 5}, - [5247] = {.lex_state = 10, .external_lex_state = 7}, - [5248] = {.lex_state = 10, .external_lex_state = 7}, - [5249] = {.lex_state = 8, .external_lex_state = 5}, - [5250] = {.lex_state = 8, .external_lex_state = 5}, - [5251] = {.lex_state = 8, .external_lex_state = 5}, - [5252] = {.lex_state = 10, .external_lex_state = 7}, - [5253] = {.lex_state = 10, .external_lex_state = 6}, - [5254] = {.lex_state = 10, .external_lex_state = 7}, - [5255] = {.lex_state = 10, .external_lex_state = 7}, - [5256] = {.lex_state = 8, .external_lex_state = 5}, - [5257] = {.lex_state = 8, .external_lex_state = 5}, - [5258] = {.lex_state = 10, .external_lex_state = 7}, - [5259] = {.lex_state = 8, .external_lex_state = 5}, - [5260] = {.lex_state = 8, .external_lex_state = 5}, - [5261] = {.lex_state = 8, .external_lex_state = 5}, - [5262] = {.lex_state = 10, .external_lex_state = 7}, - [5263] = {.lex_state = 10, .external_lex_state = 7}, - [5264] = {.lex_state = 10, .external_lex_state = 6}, - [5265] = {.lex_state = 10, .external_lex_state = 7}, - [5266] = {.lex_state = 10, .external_lex_state = 7}, - [5267] = {.lex_state = 8, .external_lex_state = 5}, - [5268] = {.lex_state = 8, .external_lex_state = 5}, - [5269] = {.lex_state = 8, .external_lex_state = 5}, - [5270] = {.lex_state = 10, .external_lex_state = 7}, - [5271] = {.lex_state = 10, .external_lex_state = 7}, - [5272] = {.lex_state = 10, .external_lex_state = 6}, - [5273] = {.lex_state = 10, .external_lex_state = 7}, - [5274] = {.lex_state = 10, .external_lex_state = 7}, - [5275] = {.lex_state = 10, .external_lex_state = 7}, - [5276] = {.lex_state = 10, .external_lex_state = 6}, - [5277] = {.lex_state = 10, .external_lex_state = 7}, - [5278] = {.lex_state = 10, .external_lex_state = 6}, - [5279] = {.lex_state = 10, .external_lex_state = 7}, - [5280] = {.lex_state = 10, .external_lex_state = 7}, - [5281] = {.lex_state = 10, .external_lex_state = 6}, - [5282] = {.lex_state = 10, .external_lex_state = 6}, - [5283] = {.lex_state = 10, .external_lex_state = 7}, - [5284] = {.lex_state = 10, .external_lex_state = 6}, - [5285] = {.lex_state = 10, .external_lex_state = 7}, - [5286] = {.lex_state = 10, .external_lex_state = 6}, - [5287] = {.lex_state = 10, .external_lex_state = 7}, - [5288] = {.lex_state = 8, .external_lex_state = 5}, - [5289] = {.lex_state = 10, .external_lex_state = 7}, - [5290] = {.lex_state = 8, .external_lex_state = 5}, - [5291] = {.lex_state = 12, .external_lex_state = 9}, - [5292] = {.lex_state = 10, .external_lex_state = 7}, - [5293] = {.lex_state = 8, .external_lex_state = 5}, - [5294] = {.lex_state = 8, .external_lex_state = 5}, - [5295] = {.lex_state = 10, .external_lex_state = 7}, - [5296] = {.lex_state = 8, .external_lex_state = 5}, - [5297] = {.lex_state = 10, .external_lex_state = 6}, - [5298] = {.lex_state = 8, .external_lex_state = 5}, - [5299] = {.lex_state = 8, .external_lex_state = 5}, - [5300] = {.lex_state = 10, .external_lex_state = 7}, - [5301] = {.lex_state = 10, .external_lex_state = 6}, - [5302] = {.lex_state = 10, .external_lex_state = 7}, - [5303] = {.lex_state = 8, .external_lex_state = 5}, - [5304] = {.lex_state = 8, .external_lex_state = 5}, - [5305] = {.lex_state = 8, .external_lex_state = 5}, - [5306] = {.lex_state = 8, .external_lex_state = 5}, - [5307] = {.lex_state = 10, .external_lex_state = 6}, - [5308] = {.lex_state = 8, .external_lex_state = 5}, - [5309] = {.lex_state = 8, .external_lex_state = 5}, - [5310] = {.lex_state = 10, .external_lex_state = 7}, - [5311] = {.lex_state = 10, .external_lex_state = 7}, - [5312] = {.lex_state = 8, .external_lex_state = 5}, - [5313] = {.lex_state = 8, .external_lex_state = 5}, - [5314] = {.lex_state = 10, .external_lex_state = 7}, - [5315] = {.lex_state = 8, .external_lex_state = 5}, - [5316] = {.lex_state = 8, .external_lex_state = 5}, - [5317] = {.lex_state = 10, .external_lex_state = 6}, - [5318] = {.lex_state = 10, .external_lex_state = 7}, - [5319] = {.lex_state = 15, .external_lex_state = 8}, - [5320] = {.lex_state = 8, .external_lex_state = 5}, - [5321] = {.lex_state = 10, .external_lex_state = 7}, - [5322] = {.lex_state = 10, .external_lex_state = 7}, - [5323] = {.lex_state = 10, .external_lex_state = 7}, - [5324] = {.lex_state = 10, .external_lex_state = 7}, - [5325] = {.lex_state = 10, .external_lex_state = 6}, - [5326] = {.lex_state = 10, .external_lex_state = 6}, - [5327] = {.lex_state = 10, .external_lex_state = 6}, - [5328] = {.lex_state = 10, .external_lex_state = 7}, - [5329] = {.lex_state = 10, .external_lex_state = 7}, - [5330] = {.lex_state = 10, .external_lex_state = 7}, - [5331] = {.lex_state = 10, .external_lex_state = 7}, - [5332] = {.lex_state = 10, .external_lex_state = 7}, - [5333] = {.lex_state = 10, .external_lex_state = 7}, - [5334] = {.lex_state = 10, .external_lex_state = 6}, - [5335] = {.lex_state = 12, .external_lex_state = 9}, - [5336] = {.lex_state = 15, .external_lex_state = 8}, - [5337] = {.lex_state = 8, .external_lex_state = 5}, - [5338] = {.lex_state = 12, .external_lex_state = 9}, - [5339] = {.lex_state = 8, .external_lex_state = 5}, - [5340] = {.lex_state = 10, .external_lex_state = 6}, - [5341] = {.lex_state = 12, .external_lex_state = 9}, - [5342] = {.lex_state = 8, .external_lex_state = 5}, - [5343] = {.lex_state = 8, .external_lex_state = 5}, - [5344] = {.lex_state = 12, .external_lex_state = 9}, - [5345] = {.lex_state = 10, .external_lex_state = 6}, - [5346] = {.lex_state = 10, .external_lex_state = 6}, - [5347] = {.lex_state = 10, .external_lex_state = 6}, - [5348] = {.lex_state = 15, .external_lex_state = 8}, - [5349] = {.lex_state = 10, .external_lex_state = 7}, - [5350] = {.lex_state = 15, .external_lex_state = 8}, - [5351] = {.lex_state = 8, .external_lex_state = 5}, - [5352] = {.lex_state = 10, .external_lex_state = 6}, - [5353] = {.lex_state = 10, .external_lex_state = 6}, - [5354] = {.lex_state = 8, .external_lex_state = 5}, - [5355] = {.lex_state = 10, .external_lex_state = 7}, - [5356] = {.lex_state = 8, .external_lex_state = 5}, - [5357] = {.lex_state = 8, .external_lex_state = 5}, - [5358] = {.lex_state = 8, .external_lex_state = 5}, - [5359] = {.lex_state = 8, .external_lex_state = 5}, - [5360] = {.lex_state = 8, .external_lex_state = 5}, - [5361] = {.lex_state = 12, .external_lex_state = 8}, - [5362] = {.lex_state = 8, .external_lex_state = 5}, - [5363] = {.lex_state = 8, .external_lex_state = 5}, - [5364] = {.lex_state = 8, .external_lex_state = 5}, - [5365] = {.lex_state = 12, .external_lex_state = 8}, - [5366] = {.lex_state = 8, .external_lex_state = 5}, - [5367] = {.lex_state = 8, .external_lex_state = 5}, - [5368] = {.lex_state = 8, .external_lex_state = 5}, - [5369] = {.lex_state = 10, .external_lex_state = 6}, - [5370] = {.lex_state = 10, .external_lex_state = 6}, - [5371] = {.lex_state = 8, .external_lex_state = 5}, - [5372] = {.lex_state = 8, .external_lex_state = 5}, - [5373] = {.lex_state = 10, .external_lex_state = 6}, - [5374] = {.lex_state = 10, .external_lex_state = 6}, - [5375] = {.lex_state = 8, .external_lex_state = 5}, - [5376] = {.lex_state = 10, .external_lex_state = 7}, - [5377] = {.lex_state = 10, .external_lex_state = 6}, - [5378] = {.lex_state = 12, .external_lex_state = 8}, - [5379] = {.lex_state = 10, .external_lex_state = 6}, - [5380] = {.lex_state = 10, .external_lex_state = 6}, - [5381] = {.lex_state = 10, .external_lex_state = 6}, - [5382] = {.lex_state = 10, .external_lex_state = 7}, - [5383] = {.lex_state = 10, .external_lex_state = 6}, - [5384] = {.lex_state = 8, .external_lex_state = 5}, - [5385] = {.lex_state = 10, .external_lex_state = 6}, - [5386] = {.lex_state = 10, .external_lex_state = 7}, - [5387] = {.lex_state = 12, .external_lex_state = 8}, - [5388] = {.lex_state = 10, .external_lex_state = 7}, - [5389] = {.lex_state = 10, .external_lex_state = 7}, - [5390] = {.lex_state = 8, .external_lex_state = 5}, - [5391] = {.lex_state = 15, .external_lex_state = 9}, - [5392] = {.lex_state = 12, .external_lex_state = 8}, - [5393] = {.lex_state = 8, .external_lex_state = 5}, - [5394] = {.lex_state = 12, .external_lex_state = 8}, - [5395] = {.lex_state = 8, .external_lex_state = 5}, - [5396] = {.lex_state = 8, .external_lex_state = 5}, - [5397] = {.lex_state = 12, .external_lex_state = 8}, - [5398] = {.lex_state = 5, .external_lex_state = 2}, - [5399] = {.lex_state = 12, .external_lex_state = 8}, - [5400] = {.lex_state = 8, .external_lex_state = 5}, - [5401] = {.lex_state = 8, .external_lex_state = 5}, - [5402] = {.lex_state = 8, .external_lex_state = 5}, - [5403] = {.lex_state = 5, .external_lex_state = 2}, - [5404] = {.lex_state = 8, .external_lex_state = 5}, - [5405] = {.lex_state = 8, .external_lex_state = 5}, - [5406] = {.lex_state = 8, .external_lex_state = 5}, - [5407] = {.lex_state = 8, .external_lex_state = 5}, - [5408] = {.lex_state = 8, .external_lex_state = 5}, - [5409] = {.lex_state = 8, .external_lex_state = 5}, - [5410] = {.lex_state = 8, .external_lex_state = 5}, - [5411] = {.lex_state = 8, .external_lex_state = 5}, - [5412] = {.lex_state = 8, .external_lex_state = 5}, - [5413] = {.lex_state = 8, .external_lex_state = 5}, - [5414] = {.lex_state = 10, .external_lex_state = 6}, - [5415] = {.lex_state = 8, .external_lex_state = 5}, - [5416] = {.lex_state = 10, .external_lex_state = 7}, - [5417] = {.lex_state = 10, .external_lex_state = 6}, - [5418] = {.lex_state = 8, .external_lex_state = 5}, - [5419] = {.lex_state = 8, .external_lex_state = 5}, - [5420] = {.lex_state = 8, .external_lex_state = 5}, - [5421] = {.lex_state = 5, .external_lex_state = 2}, - [5422] = {.lex_state = 8, .external_lex_state = 5}, - [5423] = {.lex_state = 8, .external_lex_state = 5}, - [5424] = {.lex_state = 8, .external_lex_state = 5}, - [5425] = {.lex_state = 15, .external_lex_state = 9}, - [5426] = {.lex_state = 8, .external_lex_state = 5}, - [5427] = {.lex_state = 12, .external_lex_state = 8}, - [5428] = {.lex_state = 8, .external_lex_state = 5}, - [5429] = {.lex_state = 10, .external_lex_state = 7}, - [5430] = {.lex_state = 8, .external_lex_state = 5}, - [5431] = {.lex_state = 8, .external_lex_state = 5}, - [5432] = {.lex_state = 8, .external_lex_state = 5}, - [5433] = {.lex_state = 12, .external_lex_state = 8}, - [5434] = {.lex_state = 8, .external_lex_state = 5}, - [5435] = {.lex_state = 8, .external_lex_state = 5}, - [5436] = {.lex_state = 8, .external_lex_state = 5}, - [5437] = {.lex_state = 8, .external_lex_state = 5}, - [5438] = {.lex_state = 8, .external_lex_state = 5}, - [5439] = {.lex_state = 12, .external_lex_state = 8}, - [5440] = {.lex_state = 8, .external_lex_state = 5}, - [5441] = {.lex_state = 15, .external_lex_state = 9}, - [5442] = {.lex_state = 10, .external_lex_state = 7}, - [5443] = {.lex_state = 8, .external_lex_state = 5}, - [5444] = {.lex_state = 8, .external_lex_state = 5}, - [5445] = {.lex_state = 8, .external_lex_state = 5}, - [5446] = {.lex_state = 8, .external_lex_state = 5}, - [5447] = {.lex_state = 12, .external_lex_state = 8}, - [5448] = {.lex_state = 8, .external_lex_state = 5}, - [5449] = {.lex_state = 12, .external_lex_state = 8}, - [5450] = {.lex_state = 8, .external_lex_state = 5}, - [5451] = {.lex_state = 8, .external_lex_state = 5}, - [5452] = {.lex_state = 12, .external_lex_state = 8}, - [5453] = {.lex_state = 10, .external_lex_state = 7}, - [5454] = {.lex_state = 8, .external_lex_state = 5}, - [5455] = {.lex_state = 8, .external_lex_state = 5}, - [5456] = {.lex_state = 8, .external_lex_state = 5}, - [5457] = {.lex_state = 8, .external_lex_state = 5}, - [5458] = {.lex_state = 10, .external_lex_state = 7}, - [5459] = {.lex_state = 8, .external_lex_state = 5}, - [5460] = {.lex_state = 10, .external_lex_state = 7}, - [5461] = {.lex_state = 8, .external_lex_state = 5}, - [5462] = {.lex_state = 15, .external_lex_state = 9}, - [5463] = {.lex_state = 8, .external_lex_state = 5}, - [5464] = {.lex_state = 8, .external_lex_state = 5}, - [5465] = {.lex_state = 10, .external_lex_state = 7}, - [5466] = {.lex_state = 10, .external_lex_state = 7}, - [5467] = {.lex_state = 8, .external_lex_state = 5}, - [5468] = {.lex_state = 8, .external_lex_state = 5}, - [5469] = {.lex_state = 8, .external_lex_state = 5}, - [5470] = {.lex_state = 12, .external_lex_state = 8}, - [5471] = {.lex_state = 8, .external_lex_state = 5}, - [5472] = {.lex_state = 8, .external_lex_state = 5}, - [5473] = {.lex_state = 12, .external_lex_state = 8}, - [5474] = {.lex_state = 8, .external_lex_state = 5}, - [5475] = {.lex_state = 8, .external_lex_state = 5}, - [5476] = {.lex_state = 10, .external_lex_state = 7}, - [5477] = {.lex_state = 10, .external_lex_state = 7}, - [5478] = {.lex_state = 12, .external_lex_state = 8}, - [5479] = {.lex_state = 10, .external_lex_state = 6}, - [5480] = {.lex_state = 12, .external_lex_state = 9}, - [5481] = {.lex_state = 12, .external_lex_state = 8}, - [5482] = {.lex_state = 10, .external_lex_state = 7}, - [5483] = {.lex_state = 15, .external_lex_state = 8}, - [5484] = {.lex_state = 12, .external_lex_state = 9}, - [5485] = {.lex_state = 12, .external_lex_state = 8}, - [5486] = {.lex_state = 10, .external_lex_state = 7}, - [5487] = {.lex_state = 12, .external_lex_state = 8}, - [5488] = {.lex_state = 12, .external_lex_state = 8}, - [5489] = {.lex_state = 12, .external_lex_state = 8}, - [5490] = {.lex_state = 12, .external_lex_state = 8}, - [5491] = {.lex_state = 15, .external_lex_state = 8}, - [5492] = {.lex_state = 12, .external_lex_state = 8}, - [5493] = {.lex_state = 5, .external_lex_state = 2}, - [5494] = {.lex_state = 12, .external_lex_state = 9}, - [5495] = {.lex_state = 10, .external_lex_state = 7}, - [5496] = {.lex_state = 10, .external_lex_state = 7}, - [5497] = {.lex_state = 8, .external_lex_state = 2}, - [5498] = {.lex_state = 10, .external_lex_state = 6}, - [5499] = {.lex_state = 12, .external_lex_state = 8}, - [5500] = {.lex_state = 10, .external_lex_state = 7}, - [5501] = {.lex_state = 12, .external_lex_state = 8}, - [5502] = {.lex_state = 10, .external_lex_state = 7}, - [5503] = {.lex_state = 12, .external_lex_state = 8}, - [5504] = {.lex_state = 5, .external_lex_state = 2}, - [5505] = {.lex_state = 10, .external_lex_state = 6}, - [5506] = {.lex_state = 12, .external_lex_state = 8}, - [5507] = {.lex_state = 10, .external_lex_state = 7}, - [5508] = {.lex_state = 12, .external_lex_state = 8}, - [5509] = {.lex_state = 10, .external_lex_state = 6}, - [5510] = {.lex_state = 15, .external_lex_state = 8}, - [5511] = {.lex_state = 10, .external_lex_state = 7}, - [5512] = {.lex_state = 12, .external_lex_state = 8}, - [5513] = {.lex_state = 12, .external_lex_state = 8}, - [5514] = {.lex_state = 12, .external_lex_state = 8}, - [5515] = {.lex_state = 5, .external_lex_state = 2}, - [5516] = {.lex_state = 12, .external_lex_state = 8}, - [5517] = {.lex_state = 10, .external_lex_state = 7}, - [5518] = {.lex_state = 8, .external_lex_state = 2}, - [5519] = {.lex_state = 15, .external_lex_state = 8}, - [5520] = {.lex_state = 5, .external_lex_state = 2}, - [5521] = {.lex_state = 12, .external_lex_state = 8}, - [5522] = {.lex_state = 10, .external_lex_state = 6}, - [5523] = {.lex_state = 12, .external_lex_state = 9}, - [5524] = {.lex_state = 10, .external_lex_state = 7}, - [5525] = {.lex_state = 12, .external_lex_state = 8}, - [5526] = {.lex_state = 10, .external_lex_state = 7}, - [5527] = {.lex_state = 12, .external_lex_state = 8}, - [5528] = {.lex_state = 10, .external_lex_state = 7}, - [5529] = {.lex_state = 10, .external_lex_state = 7}, - [5530] = {.lex_state = 12, .external_lex_state = 9}, - [5531] = {.lex_state = 12, .external_lex_state = 8}, - [5532] = {.lex_state = 12, .external_lex_state = 8}, - [5533] = {.lex_state = 10, .external_lex_state = 7}, - [5534] = {.lex_state = 12, .external_lex_state = 8}, - [5535] = {.lex_state = 10, .external_lex_state = 6}, - [5536] = {.lex_state = 10, .external_lex_state = 7}, - [5537] = {.lex_state = 12, .external_lex_state = 8}, - [5538] = {.lex_state = 12, .external_lex_state = 8}, - [5539] = {.lex_state = 12, .external_lex_state = 8}, - [5540] = {.lex_state = 12, .external_lex_state = 8}, - [5541] = {.lex_state = 5, .external_lex_state = 2}, - [5542] = {.lex_state = 5, .external_lex_state = 2}, - [5543] = {.lex_state = 5, .external_lex_state = 2}, - [5544] = {.lex_state = 10, .external_lex_state = 7}, - [5545] = {.lex_state = 12, .external_lex_state = 8}, - [5546] = {.lex_state = 10, .external_lex_state = 7}, - [5547] = {.lex_state = 5, .external_lex_state = 2}, - [5548] = {.lex_state = 12, .external_lex_state = 8}, - [5549] = {.lex_state = 12, .external_lex_state = 8}, - [5550] = {.lex_state = 12, .external_lex_state = 8}, - [5551] = {.lex_state = 10, .external_lex_state = 7}, - [5552] = {.lex_state = 12, .external_lex_state = 8}, - [5553] = {.lex_state = 12, .external_lex_state = 8}, - [5554] = {.lex_state = 12, .external_lex_state = 8}, - [5555] = {.lex_state = 10, .external_lex_state = 7}, - [5556] = {.lex_state = 12, .external_lex_state = 8}, - [5557] = {.lex_state = 10, .external_lex_state = 7}, - [5558] = {.lex_state = 10, .external_lex_state = 7}, - [5559] = {.lex_state = 10, .external_lex_state = 7}, - [5560] = {.lex_state = 12, .external_lex_state = 8}, - [5561] = {.lex_state = 10, .external_lex_state = 7}, - [5562] = {.lex_state = 12, .external_lex_state = 8}, - [5563] = {.lex_state = 12, .external_lex_state = 8}, - [5564] = {.lex_state = 5, .external_lex_state = 2}, - [5565] = {.lex_state = 12, .external_lex_state = 8}, - [5566] = {.lex_state = 10, .external_lex_state = 6}, - [5567] = {.lex_state = 5, .external_lex_state = 2}, - [5568] = {.lex_state = 5, .external_lex_state = 2}, - [5569] = {.lex_state = 5, .external_lex_state = 2}, - [5570] = {.lex_state = 5, .external_lex_state = 2}, - [5571] = {.lex_state = 5, .external_lex_state = 2}, - [5572] = {.lex_state = 5, .external_lex_state = 2}, - [5573] = {.lex_state = 5, .external_lex_state = 2}, - [5574] = {.lex_state = 5, .external_lex_state = 2}, - [5575] = {.lex_state = 10, .external_lex_state = 6}, - [5576] = {.lex_state = 10, .external_lex_state = 6}, - [5577] = {.lex_state = 12, .external_lex_state = 8}, - [5578] = {.lex_state = 10, .external_lex_state = 6}, - [5579] = {.lex_state = 12, .external_lex_state = 8}, - [5580] = {.lex_state = 10, .external_lex_state = 6}, - [5581] = {.lex_state = 5, .external_lex_state = 2}, - [5582] = {.lex_state = 5, .external_lex_state = 2}, - [5583] = {.lex_state = 10, .external_lex_state = 6}, - [5584] = {.lex_state = 12, .external_lex_state = 8}, - [5585] = {.lex_state = 10, .external_lex_state = 7}, - [5586] = {.lex_state = 10, .external_lex_state = 7}, - [5587] = {.lex_state = 21, .external_lex_state = 9}, - [5588] = {.lex_state = 21, .external_lex_state = 9}, - [5589] = {.lex_state = 10, .external_lex_state = 7}, - [5590] = {.lex_state = 10, .external_lex_state = 7}, - [5591] = {.lex_state = 10, .external_lex_state = 7}, - [5592] = {.lex_state = 12, .external_lex_state = 8}, - [5593] = {.lex_state = 21, .external_lex_state = 9}, - [5594] = {.lex_state = 12, .external_lex_state = 8}, - [5595] = {.lex_state = 21, .external_lex_state = 9}, - [5596] = {.lex_state = 12, .external_lex_state = 8}, - [5597] = {.lex_state = 10, .external_lex_state = 7}, - [5598] = {.lex_state = 12, .external_lex_state = 8}, - [5599] = {.lex_state = 21, .external_lex_state = 9}, - [5600] = {.lex_state = 21, .external_lex_state = 9}, - [5601] = {.lex_state = 21, .external_lex_state = 9}, - [5602] = {.lex_state = 10, .external_lex_state = 6}, - [5603] = {.lex_state = 21, .external_lex_state = 9}, - [5604] = {.lex_state = 21, .external_lex_state = 9}, - [5605] = {.lex_state = 12, .external_lex_state = 8}, - [5606] = {.lex_state = 10, .external_lex_state = 6}, - [5607] = {.lex_state = 5, .external_lex_state = 5}, - [5608] = {.lex_state = 10, .external_lex_state = 6}, - [5609] = {.lex_state = 12, .external_lex_state = 8}, - [5610] = {.lex_state = 5, .external_lex_state = 5}, - [5611] = {.lex_state = 12, .external_lex_state = 8}, - [5612] = {.lex_state = 12, .external_lex_state = 8}, - [5613] = {.lex_state = 12, .external_lex_state = 8}, - [5614] = {.lex_state = 12, .external_lex_state = 8}, - [5615] = {.lex_state = 21, .external_lex_state = 9}, - [5616] = {.lex_state = 21, .external_lex_state = 9}, - [5617] = {.lex_state = 12, .external_lex_state = 8}, - [5618] = {.lex_state = 21, .external_lex_state = 9}, - [5619] = {.lex_state = 21, .external_lex_state = 9}, - [5620] = {.lex_state = 21, .external_lex_state = 9}, - [5621] = {.lex_state = 12, .external_lex_state = 8}, - [5622] = {.lex_state = 12, .external_lex_state = 8}, - [5623] = {.lex_state = 5, .external_lex_state = 2}, - [5624] = {.lex_state = 12, .external_lex_state = 8}, - [5625] = {.lex_state = 12, .external_lex_state = 8}, - [5626] = {.lex_state = 12, .external_lex_state = 8}, - [5627] = {.lex_state = 12, .external_lex_state = 8}, - [5628] = {.lex_state = 12, .external_lex_state = 8}, - [5629] = {.lex_state = 12, .external_lex_state = 8}, - [5630] = {.lex_state = 5, .external_lex_state = 2}, - [5631] = {.lex_state = 12, .external_lex_state = 8}, - [5632] = {.lex_state = 12, .external_lex_state = 8}, - [5633] = {.lex_state = 12, .external_lex_state = 8}, - [5634] = {.lex_state = 12, .external_lex_state = 8}, - [5635] = {.lex_state = 12, .external_lex_state = 8}, - [5636] = {.lex_state = 12, .external_lex_state = 9}, - [5637] = {.lex_state = 15, .external_lex_state = 9}, - [5638] = {.lex_state = 12, .external_lex_state = 9}, - [5639] = {.lex_state = 12, .external_lex_state = 8}, - [5640] = {.lex_state = 12, .external_lex_state = 8}, - [5641] = {.lex_state = 12, .external_lex_state = 8}, - [5642] = {.lex_state = 12, .external_lex_state = 9}, - [5643] = {.lex_state = 12, .external_lex_state = 8}, - [5644] = {.lex_state = 12, .external_lex_state = 8}, - [5645] = {.lex_state = 12, .external_lex_state = 8}, - [5646] = {.lex_state = 17, .external_lex_state = 8}, - [5647] = {.lex_state = 17, .external_lex_state = 8}, - [5648] = {.lex_state = 13, .external_lex_state = 8}, - [5649] = {.lex_state = 12, .external_lex_state = 8}, - [5650] = {.lex_state = 12, .external_lex_state = 9}, - [5651] = {.lex_state = 17, .external_lex_state = 8}, - [5652] = {.lex_state = 12, .external_lex_state = 8}, - [5653] = {.lex_state = 12, .external_lex_state = 8}, - [5654] = {.lex_state = 12, .external_lex_state = 8}, - [5655] = {.lex_state = 13, .external_lex_state = 8}, - [5656] = {.lex_state = 12, .external_lex_state = 8}, - [5657] = {.lex_state = 17, .external_lex_state = 8}, - [5658] = {.lex_state = 17, .external_lex_state = 8}, - [5659] = {.lex_state = 12, .external_lex_state = 9}, - [5660] = {.lex_state = 12, .external_lex_state = 9}, - [5661] = {.lex_state = 12, .external_lex_state = 8}, - [5662] = {.lex_state = 17, .external_lex_state = 8}, - [5663] = {.lex_state = 12, .external_lex_state = 9}, - [5664] = {.lex_state = 12, .external_lex_state = 9}, - [5665] = {.lex_state = 12, .external_lex_state = 9}, - [5666] = {.lex_state = 12, .external_lex_state = 9}, - [5667] = {.lex_state = 12, .external_lex_state = 9}, - [5668] = {.lex_state = 12, .external_lex_state = 8}, - [5669] = {.lex_state = 12, .external_lex_state = 9}, - [5670] = {.lex_state = 16, .external_lex_state = 8}, - [5671] = {.lex_state = 12, .external_lex_state = 8}, - [5672] = {.lex_state = 16, .external_lex_state = 8}, - [5673] = {.lex_state = 12, .external_lex_state = 8}, - [5674] = {.lex_state = 12, .external_lex_state = 8}, - [5675] = {.lex_state = 12, .external_lex_state = 8}, - [5676] = {.lex_state = 16, .external_lex_state = 8}, - [5677] = {.lex_state = 12, .external_lex_state = 8}, - [5678] = {.lex_state = 12, .external_lex_state = 8}, - [5679] = {.lex_state = 12, .external_lex_state = 8}, - [5680] = {.lex_state = 16, .external_lex_state = 8}, - [5681] = {.lex_state = 12, .external_lex_state = 8}, - [5682] = {.lex_state = 16, .external_lex_state = 8}, - [5683] = {.lex_state = 12, .external_lex_state = 8}, - [5684] = {.lex_state = 16, .external_lex_state = 8}, - [5685] = {.lex_state = 12, .external_lex_state = 8}, - [5686] = {.lex_state = 12, .external_lex_state = 9}, - [5687] = {.lex_state = 12, .external_lex_state = 8}, - [5688] = {.lex_state = 12, .external_lex_state = 9}, - [5689] = {.lex_state = 12, .external_lex_state = 8}, - [5690] = {.lex_state = 12, .external_lex_state = 8}, - [5691] = {.lex_state = 12, .external_lex_state = 9}, - [5692] = {.lex_state = 16, .external_lex_state = 8}, - [5693] = {.lex_state = 12, .external_lex_state = 8}, - [5694] = {.lex_state = 12, .external_lex_state = 8}, - [5695] = {.lex_state = 12, .external_lex_state = 8}, - [5696] = {.lex_state = 12, .external_lex_state = 9}, - [5697] = {.lex_state = 16, .external_lex_state = 8}, - [5698] = {.lex_state = 12, .external_lex_state = 8}, - [5699] = {.lex_state = 16, .external_lex_state = 8}, - [5700] = {.lex_state = 16, .external_lex_state = 8}, - [5701] = {.lex_state = 16, .external_lex_state = 8}, - [5702] = {.lex_state = 16, .external_lex_state = 8}, - [5703] = {.lex_state = 12, .external_lex_state = 8}, - [5704] = {.lex_state = 16, .external_lex_state = 8}, - [5705] = {.lex_state = 16, .external_lex_state = 8}, - [5706] = {.lex_state = 16, .external_lex_state = 8}, - [5707] = {.lex_state = 16, .external_lex_state = 8}, - [5708] = {.lex_state = 16, .external_lex_state = 8}, - [5709] = {.lex_state = 16, .external_lex_state = 8}, - [5710] = {.lex_state = 12, .external_lex_state = 8}, - [5711] = {.lex_state = 16, .external_lex_state = 8}, - [5712] = {.lex_state = 12, .external_lex_state = 8}, - [5713] = {.lex_state = 16, .external_lex_state = 8}, - [5714] = {.lex_state = 16, .external_lex_state = 8}, - [5715] = {.lex_state = 12, .external_lex_state = 9}, - [5716] = {.lex_state = 12, .external_lex_state = 9}, - [5717] = {.lex_state = 12, .external_lex_state = 9}, - [5718] = {.lex_state = 12, .external_lex_state = 8}, - [5719] = {.lex_state = 12, .external_lex_state = 8}, - [5720] = {.lex_state = 12, .external_lex_state = 9}, - [5721] = {.lex_state = 12, .external_lex_state = 8}, - [5722] = {.lex_state = 12, .external_lex_state = 8}, - [5723] = {.lex_state = 12, .external_lex_state = 8}, - [5724] = {.lex_state = 12, .external_lex_state = 8}, - [5725] = {.lex_state = 12, .external_lex_state = 8}, - [5726] = {.lex_state = 12, .external_lex_state = 8}, - [5727] = {.lex_state = 12, .external_lex_state = 8}, - [5728] = {.lex_state = 12, .external_lex_state = 9}, - [5729] = {.lex_state = 12, .external_lex_state = 9}, - [5730] = {.lex_state = 12, .external_lex_state = 8}, - [5731] = {.lex_state = 12, .external_lex_state = 9}, - [5732] = {.lex_state = 12, .external_lex_state = 8}, - [5733] = {.lex_state = 12, .external_lex_state = 8}, - [5734] = {.lex_state = 12, .external_lex_state = 8}, - [5735] = {.lex_state = 12, .external_lex_state = 8}, - [5736] = {.lex_state = 12, .external_lex_state = 8}, - [5737] = {.lex_state = 12, .external_lex_state = 8}, - [5738] = {.lex_state = 12, .external_lex_state = 9}, - [5739] = {.lex_state = 12, .external_lex_state = 8}, - [5740] = {.lex_state = 12, .external_lex_state = 8}, - [5741] = {.lex_state = 12, .external_lex_state = 8}, - [5742] = {.lex_state = 12, .external_lex_state = 8}, - [5743] = {.lex_state = 12, .external_lex_state = 8}, - [5744] = {.lex_state = 12, .external_lex_state = 8}, - [5745] = {.lex_state = 12, .external_lex_state = 8}, - [5746] = {.lex_state = 12, .external_lex_state = 9}, - [5747] = {.lex_state = 12, .external_lex_state = 9}, - [5748] = {.lex_state = 12, .external_lex_state = 9}, - [5749] = {.lex_state = 12, .external_lex_state = 8}, - [5750] = {.lex_state = 12, .external_lex_state = 8}, - [5751] = {.lex_state = 12, .external_lex_state = 9}, - [5752] = {.lex_state = 12, .external_lex_state = 8}, - [5753] = {.lex_state = 12, .external_lex_state = 8}, - [5754] = {.lex_state = 12, .external_lex_state = 8}, - [5755] = {.lex_state = 12, .external_lex_state = 9}, - [5756] = {.lex_state = 12, .external_lex_state = 9}, - [5757] = {.lex_state = 12, .external_lex_state = 9}, - [5758] = {.lex_state = 12, .external_lex_state = 9}, - [5759] = {.lex_state = 12, .external_lex_state = 8}, - [5760] = {.lex_state = 12, .external_lex_state = 9}, - [5761] = {.lex_state = 12, .external_lex_state = 9}, - [5762] = {.lex_state = 12, .external_lex_state = 9}, - [5763] = {.lex_state = 12, .external_lex_state = 9}, - [5764] = {.lex_state = 12, .external_lex_state = 9}, - [5765] = {.lex_state = 12, .external_lex_state = 8}, - [5766] = {.lex_state = 12, .external_lex_state = 8}, - [5767] = {.lex_state = 19, .external_lex_state = 8}, - [5768] = {.lex_state = 12, .external_lex_state = 8}, - [5769] = {.lex_state = 12, .external_lex_state = 8}, - [5770] = {.lex_state = 12, .external_lex_state = 8}, - [5771] = {.lex_state = 12, .external_lex_state = 8}, - [5772] = {.lex_state = 12, .external_lex_state = 8}, - [5773] = {.lex_state = 12, .external_lex_state = 8}, - [5774] = {.lex_state = 12, .external_lex_state = 8}, - [5775] = {.lex_state = 12, .external_lex_state = 8}, - [5776] = {.lex_state = 19, .external_lex_state = 8}, - [5777] = {.lex_state = 12, .external_lex_state = 8}, - [5778] = {.lex_state = 12, .external_lex_state = 8}, - [5779] = {.lex_state = 12, .external_lex_state = 8}, - [5780] = {.lex_state = 12, .external_lex_state = 8}, - [5781] = {.lex_state = 12, .external_lex_state = 8}, - [5782] = {.lex_state = 12, .external_lex_state = 8}, - [5783] = {.lex_state = 12, .external_lex_state = 8}, - [5784] = {.lex_state = 12, .external_lex_state = 8}, - [5785] = {.lex_state = 12, .external_lex_state = 8}, - [5786] = {.lex_state = 12, .external_lex_state = 9}, - [5787] = {.lex_state = 12, .external_lex_state = 8}, - [5788] = {.lex_state = 12, .external_lex_state = 8}, - [5789] = {.lex_state = 12, .external_lex_state = 8}, - [5790] = {.lex_state = 19, .external_lex_state = 8}, - [5791] = {.lex_state = 19, .external_lex_state = 8}, - [5792] = {.lex_state = 15, .external_lex_state = 9}, - [5793] = {.lex_state = 12, .external_lex_state = 8}, - [5794] = {.lex_state = 19, .external_lex_state = 8}, - [5795] = {.lex_state = 15, .external_lex_state = 9}, - [5796] = {.lex_state = 19, .external_lex_state = 8}, - [5797] = {.lex_state = 12, .external_lex_state = 8}, - [5798] = {.lex_state = 16, .external_lex_state = 8}, - [5799] = {.lex_state = 12, .external_lex_state = 8}, - [5800] = {.lex_state = 16, .external_lex_state = 8}, - [5801] = {.lex_state = 16, .external_lex_state = 8}, - [5802] = {.lex_state = 12, .external_lex_state = 8}, - [5803] = {.lex_state = 16, .external_lex_state = 8}, - [5804] = {.lex_state = 12, .external_lex_state = 8}, - [5805] = {.lex_state = 16, .external_lex_state = 8}, - [5806] = {.lex_state = 12, .external_lex_state = 8}, - [5807] = {.lex_state = 16, .external_lex_state = 8}, - [5808] = {.lex_state = 12, .external_lex_state = 8}, - [5809] = {.lex_state = 16, .external_lex_state = 8}, - [5810] = {.lex_state = 12, .external_lex_state = 8}, - [5811] = {.lex_state = 12, .external_lex_state = 8}, - [5812] = {.lex_state = 16, .external_lex_state = 8}, - [5813] = {.lex_state = 12, .external_lex_state = 8}, - [5814] = {.lex_state = 12, .external_lex_state = 8}, - [5815] = {.lex_state = 12, .external_lex_state = 8}, - [5816] = {.lex_state = 15, .external_lex_state = 8}, - [5817] = {.lex_state = 19, .external_lex_state = 8}, - [5818] = {.lex_state = 12, .external_lex_state = 8}, - [5819] = {.lex_state = 16, .external_lex_state = 8}, - [5820] = {.lex_state = 12, .external_lex_state = 8}, - [5821] = {.lex_state = 19, .external_lex_state = 8}, - [5822] = {.lex_state = 15, .external_lex_state = 8}, - [5823] = {.lex_state = 12, .external_lex_state = 8}, - [5824] = {.lex_state = 16, .external_lex_state = 8}, - [5825] = {.lex_state = 16, .external_lex_state = 8}, - [5826] = {.lex_state = 12, .external_lex_state = 8}, - [5827] = {.lex_state = 19, .external_lex_state = 8}, - [5828] = {.lex_state = 16, .external_lex_state = 8}, - [5829] = {.lex_state = 12, .external_lex_state = 8}, - [5830] = {.lex_state = 12, .external_lex_state = 8}, - [5831] = {.lex_state = 12, .external_lex_state = 8}, - [5832] = {.lex_state = 16, .external_lex_state = 8}, - [5833] = {.lex_state = 16, .external_lex_state = 8}, - [5834] = {.lex_state = 16, .external_lex_state = 8}, - [5835] = {.lex_state = 16, .external_lex_state = 8}, - [5836] = {.lex_state = 16, .external_lex_state = 8}, - [5837] = {.lex_state = 16, .external_lex_state = 8}, - [5838] = {.lex_state = 16, .external_lex_state = 8}, - [5839] = {.lex_state = 16, .external_lex_state = 8}, - [5840] = {.lex_state = 16, .external_lex_state = 8}, - [5841] = {.lex_state = 16, .external_lex_state = 8}, - [5842] = {.lex_state = 16, .external_lex_state = 8}, - [5843] = {.lex_state = 16, .external_lex_state = 8}, - [5844] = {.lex_state = 16, .external_lex_state = 8}, - [5845] = {.lex_state = 16, .external_lex_state = 8}, - [5846] = {.lex_state = 16, .external_lex_state = 8}, - [5847] = {.lex_state = 16, .external_lex_state = 8}, - [5848] = {.lex_state = 16, .external_lex_state = 8}, - [5849] = {.lex_state = 16, .external_lex_state = 8}, - [5850] = {.lex_state = 16, .external_lex_state = 8}, - [5851] = {.lex_state = 16, .external_lex_state = 8}, - [5852] = {.lex_state = 16, .external_lex_state = 8}, - [5853] = {.lex_state = 16, .external_lex_state = 8}, - [5854] = {.lex_state = 16, .external_lex_state = 8}, - [5855] = {.lex_state = 16, .external_lex_state = 8}, - [5856] = {.lex_state = 16, .external_lex_state = 8}, - [5857] = {.lex_state = 16, .external_lex_state = 8}, - [5858] = {.lex_state = 16, .external_lex_state = 8}, - [5859] = {.lex_state = 16, .external_lex_state = 8}, - [5860] = {.lex_state = 16, .external_lex_state = 8}, - [5861] = {.lex_state = 16, .external_lex_state = 8}, - [5862] = {.lex_state = 16, .external_lex_state = 8}, - [5863] = {.lex_state = 16, .external_lex_state = 8}, - [5864] = {.lex_state = 16, .external_lex_state = 8}, - [5865] = {.lex_state = 16, .external_lex_state = 8}, - [5866] = {.lex_state = 16, .external_lex_state = 8}, - [5867] = {.lex_state = 19, .external_lex_state = 8}, - [5868] = {.lex_state = 16, .external_lex_state = 8}, - [5869] = {.lex_state = 16, .external_lex_state = 8}, - [5870] = {.lex_state = 16, .external_lex_state = 8}, - [5871] = {.lex_state = 16, .external_lex_state = 8}, - [5872] = {.lex_state = 16, .external_lex_state = 8}, - [5873] = {.lex_state = 16, .external_lex_state = 8}, - [5874] = {.lex_state = 16, .external_lex_state = 8}, - [5875] = {.lex_state = 16, .external_lex_state = 8}, - [5876] = {.lex_state = 16, .external_lex_state = 8}, - [5877] = {.lex_state = 16, .external_lex_state = 8}, - [5878] = {.lex_state = 16, .external_lex_state = 8}, - [5879] = {.lex_state = 16, .external_lex_state = 8}, - [5880] = {.lex_state = 16, .external_lex_state = 8}, - [5881] = {.lex_state = 16, .external_lex_state = 8}, - [5882] = {.lex_state = 16, .external_lex_state = 8}, - [5883] = {.lex_state = 16, .external_lex_state = 8}, - [5884] = {.lex_state = 16, .external_lex_state = 8}, - [5885] = {.lex_state = 16, .external_lex_state = 8}, - [5886] = {.lex_state = 16, .external_lex_state = 8}, - [5887] = {.lex_state = 16, .external_lex_state = 8}, - [5888] = {.lex_state = 16, .external_lex_state = 8}, - [5889] = {.lex_state = 16, .external_lex_state = 8}, - [5890] = {.lex_state = 16, .external_lex_state = 8}, - [5891] = {.lex_state = 16, .external_lex_state = 8}, - [5892] = {.lex_state = 16, .external_lex_state = 8}, - [5893] = {.lex_state = 16, .external_lex_state = 8}, - [5894] = {.lex_state = 19, .external_lex_state = 8}, - [5895] = {.lex_state = 19, .external_lex_state = 8}, - [5896] = {.lex_state = 16, .external_lex_state = 8}, - [5897] = {.lex_state = 16, .external_lex_state = 8}, - [5898] = {.lex_state = 16, .external_lex_state = 8}, - [5899] = {.lex_state = 16, .external_lex_state = 8}, - [5900] = {.lex_state = 16, .external_lex_state = 8}, - [5901] = {.lex_state = 19, .external_lex_state = 8}, - [5902] = {.lex_state = 16, .external_lex_state = 8}, - [5903] = {.lex_state = 16, .external_lex_state = 8}, - [5904] = {.lex_state = 16, .external_lex_state = 8}, - [5905] = {.lex_state = 16, .external_lex_state = 8}, - [5906] = {.lex_state = 16, .external_lex_state = 8}, - [5907] = {.lex_state = 16, .external_lex_state = 8}, - [5908] = {.lex_state = 16, .external_lex_state = 8}, - [5909] = {.lex_state = 16, .external_lex_state = 8}, - [5910] = {.lex_state = 16, .external_lex_state = 8}, - [5911] = {.lex_state = 16, .external_lex_state = 8}, - [5912] = {.lex_state = 16, .external_lex_state = 8}, - [5913] = {.lex_state = 16, .external_lex_state = 8}, - [5914] = {.lex_state = 16, .external_lex_state = 8}, - [5915] = {.lex_state = 16, .external_lex_state = 8}, - [5916] = {.lex_state = 16, .external_lex_state = 8}, - [5917] = {.lex_state = 16, .external_lex_state = 8}, - [5918] = {.lex_state = 16, .external_lex_state = 8}, - [5919] = {.lex_state = 16, .external_lex_state = 8}, - [5920] = {.lex_state = 16, .external_lex_state = 8}, - [5921] = {.lex_state = 16, .external_lex_state = 8}, - [5922] = {.lex_state = 16, .external_lex_state = 8}, - [5923] = {.lex_state = 16, .external_lex_state = 8}, - [5924] = {.lex_state = 16, .external_lex_state = 8}, - [5925] = {.lex_state = 16, .external_lex_state = 8}, - [5926] = {.lex_state = 16, .external_lex_state = 8}, - [5927] = {.lex_state = 16, .external_lex_state = 8}, - [5928] = {.lex_state = 16, .external_lex_state = 8}, - [5929] = {.lex_state = 16, .external_lex_state = 8}, - [5930] = {.lex_state = 16, .external_lex_state = 8}, - [5931] = {.lex_state = 16, .external_lex_state = 8}, - [5932] = {.lex_state = 16, .external_lex_state = 8}, - [5933] = {.lex_state = 16, .external_lex_state = 8}, - [5934] = {.lex_state = 16, .external_lex_state = 8}, - [5935] = {.lex_state = 16, .external_lex_state = 8}, - [5936] = {.lex_state = 16, .external_lex_state = 8}, - [5937] = {.lex_state = 16, .external_lex_state = 8}, - [5938] = {.lex_state = 16, .external_lex_state = 8}, - [5939] = {.lex_state = 19, .external_lex_state = 8}, - [5940] = {.lex_state = 19, .external_lex_state = 8}, - [5941] = {.lex_state = 16, .external_lex_state = 8}, - [5942] = {.lex_state = 16, .external_lex_state = 8}, - [5943] = {.lex_state = 16, .external_lex_state = 8}, - [5944] = {.lex_state = 16, .external_lex_state = 8}, - [5945] = {.lex_state = 19, .external_lex_state = 8}, - [5946] = {.lex_state = 16, .external_lex_state = 8}, - [5947] = {.lex_state = 16, .external_lex_state = 8}, - [5948] = {.lex_state = 16, .external_lex_state = 8}, - [5949] = {.lex_state = 16, .external_lex_state = 8}, - [5950] = {.lex_state = 16, .external_lex_state = 8}, - [5951] = {.lex_state = 16, .external_lex_state = 8}, - [5952] = {.lex_state = 16, .external_lex_state = 8}, - [5953] = {.lex_state = 16, .external_lex_state = 8}, - [5954] = {.lex_state = 16, .external_lex_state = 8}, - [5955] = {.lex_state = 16, .external_lex_state = 8}, - [5956] = {.lex_state = 16, .external_lex_state = 8}, - [5957] = {.lex_state = 16, .external_lex_state = 8}, - [5958] = {.lex_state = 16, .external_lex_state = 8}, - [5959] = {.lex_state = 16, .external_lex_state = 8}, - [5960] = {.lex_state = 16, .external_lex_state = 8}, - [5961] = {.lex_state = 19, .external_lex_state = 8}, - [5962] = {.lex_state = 16, .external_lex_state = 8}, - [5963] = {.lex_state = 16, .external_lex_state = 8}, - [5964] = {.lex_state = 16, .external_lex_state = 8}, - [5965] = {.lex_state = 16, .external_lex_state = 8}, - [5966] = {.lex_state = 16, .external_lex_state = 8}, - [5967] = {.lex_state = 16, .external_lex_state = 8}, - [5968] = {.lex_state = 16, .external_lex_state = 8}, - [5969] = {.lex_state = 16, .external_lex_state = 8}, - [5970] = {.lex_state = 16, .external_lex_state = 8}, - [5971] = {.lex_state = 16, .external_lex_state = 8}, - [5972] = {.lex_state = 16, .external_lex_state = 8}, - [5973] = {.lex_state = 16, .external_lex_state = 8}, - [5974] = {.lex_state = 16, .external_lex_state = 8}, - [5975] = {.lex_state = 16, .external_lex_state = 8}, - [5976] = {.lex_state = 16, .external_lex_state = 8}, - [5977] = {.lex_state = 19, .external_lex_state = 8}, - [5978] = {.lex_state = 16, .external_lex_state = 8}, - [5979] = {.lex_state = 16, .external_lex_state = 8}, - [5980] = {.lex_state = 16, .external_lex_state = 8}, - [5981] = {.lex_state = 16, .external_lex_state = 8}, - [5982] = {.lex_state = 16, .external_lex_state = 8}, - [5983] = {.lex_state = 16, .external_lex_state = 8}, - [5984] = {.lex_state = 16, .external_lex_state = 8}, - [5985] = {.lex_state = 16, .external_lex_state = 8}, - [5986] = {.lex_state = 16, .external_lex_state = 8}, - [5987] = {.lex_state = 16, .external_lex_state = 8}, - [5988] = {.lex_state = 16, .external_lex_state = 8}, - [5989] = {.lex_state = 16, .external_lex_state = 8}, - [5990] = {.lex_state = 16, .external_lex_state = 8}, - [5991] = {.lex_state = 16, .external_lex_state = 8}, - [5992] = {.lex_state = 16, .external_lex_state = 8}, - [5993] = {.lex_state = 16, .external_lex_state = 8}, - [5994] = {.lex_state = 16, .external_lex_state = 8}, - [5995] = {.lex_state = 16, .external_lex_state = 8}, - [5996] = {.lex_state = 16, .external_lex_state = 8}, - [5997] = {.lex_state = 16, .external_lex_state = 8}, - [5998] = {.lex_state = 16, .external_lex_state = 8}, - [5999] = {.lex_state = 16, .external_lex_state = 8}, - [6000] = {.lex_state = 16, .external_lex_state = 8}, - [6001] = {.lex_state = 16, .external_lex_state = 8}, - [6002] = {.lex_state = 16, .external_lex_state = 8}, - [6003] = {.lex_state = 16, .external_lex_state = 8}, - [6004] = {.lex_state = 16, .external_lex_state = 8}, - [6005] = {.lex_state = 16, .external_lex_state = 8}, - [6006] = {.lex_state = 16, .external_lex_state = 8}, - [6007] = {.lex_state = 16, .external_lex_state = 8}, - [6008] = {.lex_state = 16, .external_lex_state = 8}, - [6009] = {.lex_state = 16, .external_lex_state = 8}, - [6010] = {.lex_state = 16, .external_lex_state = 8}, - [6011] = {.lex_state = 16, .external_lex_state = 8}, - [6012] = {.lex_state = 16, .external_lex_state = 8}, - [6013] = {.lex_state = 16, .external_lex_state = 8}, - [6014] = {.lex_state = 16, .external_lex_state = 8}, - [6015] = {.lex_state = 16, .external_lex_state = 8}, - [6016] = {.lex_state = 16, .external_lex_state = 8}, - [6017] = {.lex_state = 16, .external_lex_state = 8}, - [6018] = {.lex_state = 16, .external_lex_state = 8}, - [6019] = {.lex_state = 16, .external_lex_state = 8}, - [6020] = {.lex_state = 16, .external_lex_state = 8}, - [6021] = {.lex_state = 16, .external_lex_state = 8}, - [6022] = {.lex_state = 16, .external_lex_state = 8}, - [6023] = {.lex_state = 16, .external_lex_state = 8}, - [6024] = {.lex_state = 16, .external_lex_state = 8}, - [6025] = {.lex_state = 16, .external_lex_state = 8}, - [6026] = {.lex_state = 16, .external_lex_state = 8}, - [6027] = {.lex_state = 16, .external_lex_state = 8}, - [6028] = {.lex_state = 16, .external_lex_state = 8}, - [6029] = {.lex_state = 16, .external_lex_state = 8}, - [6030] = {.lex_state = 16, .external_lex_state = 8}, - [6031] = {.lex_state = 16, .external_lex_state = 8}, - [6032] = {.lex_state = 16, .external_lex_state = 8}, - [6033] = {.lex_state = 16, .external_lex_state = 8}, - [6034] = {.lex_state = 16, .external_lex_state = 8}, - [6035] = {.lex_state = 16, .external_lex_state = 8}, - [6036] = {.lex_state = 16, .external_lex_state = 8}, - [6037] = {.lex_state = 16, .external_lex_state = 8}, - [6038] = {.lex_state = 16, .external_lex_state = 8}, - [6039] = {.lex_state = 16, .external_lex_state = 8}, - [6040] = {.lex_state = 16, .external_lex_state = 8}, - [6041] = {.lex_state = 16, .external_lex_state = 8}, - [6042] = {.lex_state = 16, .external_lex_state = 8}, - [6043] = {.lex_state = 16, .external_lex_state = 8}, - [6044] = {.lex_state = 16, .external_lex_state = 8}, - [6045] = {.lex_state = 16, .external_lex_state = 8}, - [6046] = {.lex_state = 16, .external_lex_state = 8}, - [6047] = {.lex_state = 16, .external_lex_state = 8}, - [6048] = {.lex_state = 16, .external_lex_state = 8}, - [6049] = {.lex_state = 16, .external_lex_state = 8}, - [6050] = {.lex_state = 16, .external_lex_state = 8}, - [6051] = {.lex_state = 16, .external_lex_state = 8}, - [6052] = {.lex_state = 16, .external_lex_state = 8}, - [6053] = {.lex_state = 16, .external_lex_state = 8}, - [6054] = {.lex_state = 16, .external_lex_state = 8}, - [6055] = {.lex_state = 16, .external_lex_state = 8}, - [6056] = {.lex_state = 16, .external_lex_state = 8}, - [6057] = {.lex_state = 16, .external_lex_state = 8}, - [6058] = {.lex_state = 16, .external_lex_state = 8}, - [6059] = {.lex_state = 16, .external_lex_state = 8}, - [6060] = {.lex_state = 16, .external_lex_state = 8}, - [6061] = {.lex_state = 16, .external_lex_state = 8}, - [6062] = {.lex_state = 16, .external_lex_state = 8}, - [6063] = {.lex_state = 16, .external_lex_state = 8}, - [6064] = {.lex_state = 16, .external_lex_state = 8}, - [6065] = {.lex_state = 16, .external_lex_state = 8}, - [6066] = {.lex_state = 16, .external_lex_state = 8}, - [6067] = {.lex_state = 16, .external_lex_state = 8}, - [6068] = {.lex_state = 16, .external_lex_state = 8}, - [6069] = {.lex_state = 16, .external_lex_state = 8}, - [6070] = {.lex_state = 16, .external_lex_state = 8}, - [6071] = {.lex_state = 16, .external_lex_state = 8}, - [6072] = {.lex_state = 16, .external_lex_state = 8}, - [6073] = {.lex_state = 16, .external_lex_state = 8}, - [6074] = {.lex_state = 16, .external_lex_state = 8}, - [6075] = {.lex_state = 16, .external_lex_state = 8}, - [6076] = {.lex_state = 16, .external_lex_state = 8}, - [6077] = {.lex_state = 16, .external_lex_state = 8}, - [6078] = {.lex_state = 16, .external_lex_state = 8}, - [6079] = {.lex_state = 16, .external_lex_state = 8}, - [6080] = {.lex_state = 16, .external_lex_state = 8}, - [6081] = {.lex_state = 16, .external_lex_state = 8}, - [6082] = {.lex_state = 16, .external_lex_state = 8}, - [6083] = {.lex_state = 16, .external_lex_state = 8}, - [6084] = {.lex_state = 16, .external_lex_state = 8}, - [6085] = {.lex_state = 16, .external_lex_state = 8}, - [6086] = {.lex_state = 16, .external_lex_state = 8}, - [6087] = {.lex_state = 16, .external_lex_state = 8}, - [6088] = {.lex_state = 16, .external_lex_state = 8}, - [6089] = {.lex_state = 16, .external_lex_state = 8}, - [6090] = {.lex_state = 16, .external_lex_state = 8}, - [6091] = {.lex_state = 16, .external_lex_state = 8}, - [6092] = {.lex_state = 16, .external_lex_state = 8}, - [6093] = {.lex_state = 16, .external_lex_state = 8}, - [6094] = {.lex_state = 16, .external_lex_state = 8}, - [6095] = {.lex_state = 16, .external_lex_state = 8}, - [6096] = {.lex_state = 16, .external_lex_state = 8}, - [6097] = {.lex_state = 16, .external_lex_state = 8}, - [6098] = {.lex_state = 16, .external_lex_state = 8}, - [6099] = {.lex_state = 16, .external_lex_state = 8}, - [6100] = {.lex_state = 16, .external_lex_state = 8}, - [6101] = {.lex_state = 16, .external_lex_state = 8}, - [6102] = {.lex_state = 16, .external_lex_state = 8}, - [6103] = {.lex_state = 16, .external_lex_state = 8}, - [6104] = {.lex_state = 16, .external_lex_state = 8}, - [6105] = {.lex_state = 16, .external_lex_state = 8}, - [6106] = {.lex_state = 16, .external_lex_state = 8}, - [6107] = {.lex_state = 19, .external_lex_state = 8}, - [6108] = {.lex_state = 16, .external_lex_state = 8}, - [6109] = {.lex_state = 16, .external_lex_state = 8}, - [6110] = {.lex_state = 16, .external_lex_state = 8}, - [6111] = {.lex_state = 16, .external_lex_state = 8}, - [6112] = {.lex_state = 16, .external_lex_state = 8}, - [6113] = {.lex_state = 16, .external_lex_state = 8}, - [6114] = {.lex_state = 16, .external_lex_state = 8}, - [6115] = {.lex_state = 16, .external_lex_state = 8}, - [6116] = {.lex_state = 16, .external_lex_state = 8}, - [6117] = {.lex_state = 16, .external_lex_state = 8}, - [6118] = {.lex_state = 16, .external_lex_state = 8}, - [6119] = {.lex_state = 16, .external_lex_state = 8}, - [6120] = {.lex_state = 16, .external_lex_state = 8}, - [6121] = {.lex_state = 16, .external_lex_state = 8}, - [6122] = {.lex_state = 16, .external_lex_state = 8}, - [6123] = {.lex_state = 11, .external_lex_state = 8}, - [6124] = {.lex_state = 16, .external_lex_state = 8}, - [6125] = {.lex_state = 16, .external_lex_state = 8}, - [6126] = {.lex_state = 16, .external_lex_state = 8}, - [6127] = {.lex_state = 16, .external_lex_state = 8}, - [6128] = {.lex_state = 16, .external_lex_state = 8}, - [6129] = {.lex_state = 16, .external_lex_state = 8}, - [6130] = {.lex_state = 16, .external_lex_state = 8}, - [6131] = {.lex_state = 16, .external_lex_state = 8}, - [6132] = {.lex_state = 16, .external_lex_state = 8}, - [6133] = {.lex_state = 16, .external_lex_state = 8}, - [6134] = {.lex_state = 16, .external_lex_state = 8}, - [6135] = {.lex_state = 16, .external_lex_state = 8}, - [6136] = {.lex_state = 16, .external_lex_state = 8}, - [6137] = {.lex_state = 16, .external_lex_state = 8}, - [6138] = {.lex_state = 16, .external_lex_state = 8}, - [6139] = {.lex_state = 16, .external_lex_state = 8}, - [6140] = {.lex_state = 16, .external_lex_state = 8}, - [6141] = {.lex_state = 16, .external_lex_state = 8}, - [6142] = {.lex_state = 16, .external_lex_state = 8}, - [6143] = {.lex_state = 16, .external_lex_state = 8}, - [6144] = {.lex_state = 16, .external_lex_state = 8}, - [6145] = {.lex_state = 16, .external_lex_state = 8}, - [6146] = {.lex_state = 16, .external_lex_state = 8}, - [6147] = {.lex_state = 16, .external_lex_state = 8}, - [6148] = {.lex_state = 16, .external_lex_state = 8}, - [6149] = {.lex_state = 16, .external_lex_state = 8}, - [6150] = {.lex_state = 16, .external_lex_state = 8}, - [6151] = {.lex_state = 16, .external_lex_state = 8}, - [6152] = {.lex_state = 16, .external_lex_state = 8}, - [6153] = {.lex_state = 16, .external_lex_state = 8}, - [6154] = {.lex_state = 16, .external_lex_state = 8}, - [6155] = {.lex_state = 16, .external_lex_state = 8}, - [6156] = {.lex_state = 16, .external_lex_state = 8}, - [6157] = {.lex_state = 16, .external_lex_state = 8}, - [6158] = {.lex_state = 16, .external_lex_state = 8}, - [6159] = {.lex_state = 16, .external_lex_state = 8}, - [6160] = {.lex_state = 16, .external_lex_state = 8}, - [6161] = {.lex_state = 16, .external_lex_state = 8}, - [6162] = {.lex_state = 16, .external_lex_state = 8}, - [6163] = {.lex_state = 16, .external_lex_state = 8}, - [6164] = {.lex_state = 16, .external_lex_state = 8}, - [6165] = {.lex_state = 16, .external_lex_state = 8}, - [6166] = {.lex_state = 16, .external_lex_state = 8}, - [6167] = {.lex_state = 16, .external_lex_state = 8}, - [6168] = {.lex_state = 16, .external_lex_state = 8}, - [6169] = {.lex_state = 16, .external_lex_state = 8}, - [6170] = {.lex_state = 16, .external_lex_state = 8}, - [6171] = {.lex_state = 16, .external_lex_state = 8}, - [6172] = {.lex_state = 16, .external_lex_state = 8}, - [6173] = {.lex_state = 16, .external_lex_state = 8}, - [6174] = {.lex_state = 16, .external_lex_state = 8}, - [6175] = {.lex_state = 16, .external_lex_state = 8}, - [6176] = {.lex_state = 16, .external_lex_state = 8}, - [6177] = {.lex_state = 16, .external_lex_state = 8}, - [6178] = {.lex_state = 16, .external_lex_state = 8}, - [6179] = {.lex_state = 16, .external_lex_state = 8}, - [6180] = {.lex_state = 16, .external_lex_state = 8}, - [6181] = {.lex_state = 16, .external_lex_state = 8}, - [6182] = {.lex_state = 16, .external_lex_state = 8}, - [6183] = {.lex_state = 16, .external_lex_state = 8}, - [6184] = {.lex_state = 16, .external_lex_state = 8}, - [6185] = {.lex_state = 16, .external_lex_state = 8}, - [6186] = {.lex_state = 16, .external_lex_state = 8}, - [6187] = {.lex_state = 16, .external_lex_state = 8}, - [6188] = {.lex_state = 16, .external_lex_state = 8}, - [6189] = {.lex_state = 16, .external_lex_state = 8}, - [6190] = {.lex_state = 16, .external_lex_state = 8}, - [6191] = {.lex_state = 19, .external_lex_state = 8}, - [6192] = {.lex_state = 16, .external_lex_state = 8}, - [6193] = {.lex_state = 16, .external_lex_state = 8}, - [6194] = {.lex_state = 16, .external_lex_state = 8}, - [6195] = {.lex_state = 16, .external_lex_state = 8}, - [6196] = {.lex_state = 16, .external_lex_state = 8}, - [6197] = {.lex_state = 16, .external_lex_state = 8}, - [6198] = {.lex_state = 16, .external_lex_state = 8}, - [6199] = {.lex_state = 16, .external_lex_state = 8}, - [6200] = {.lex_state = 16, .external_lex_state = 8}, - [6201] = {.lex_state = 16, .external_lex_state = 8}, - [6202] = {.lex_state = 16, .external_lex_state = 8}, - [6203] = {.lex_state = 16, .external_lex_state = 8}, - [6204] = {.lex_state = 16, .external_lex_state = 8}, - [6205] = {.lex_state = 16, .external_lex_state = 8}, - [6206] = {.lex_state = 16, .external_lex_state = 8}, - [6207] = {.lex_state = 16, .external_lex_state = 8}, - [6208] = {.lex_state = 16, .external_lex_state = 8}, - [6209] = {.lex_state = 16, .external_lex_state = 8}, - [6210] = {.lex_state = 16, .external_lex_state = 8}, - [6211] = {.lex_state = 16, .external_lex_state = 8}, - [6212] = {.lex_state = 16, .external_lex_state = 8}, - [6213] = {.lex_state = 16, .external_lex_state = 8}, - [6214] = {.lex_state = 16, .external_lex_state = 8}, - [6215] = {.lex_state = 16, .external_lex_state = 8}, - [6216] = {.lex_state = 16, .external_lex_state = 8}, - [6217] = {.lex_state = 16, .external_lex_state = 8}, - [6218] = {.lex_state = 16, .external_lex_state = 8}, - [6219] = {.lex_state = 16, .external_lex_state = 8}, - [6220] = {.lex_state = 16, .external_lex_state = 8}, - [6221] = {.lex_state = 16, .external_lex_state = 8}, - [6222] = {.lex_state = 16, .external_lex_state = 8}, - [6223] = {.lex_state = 16, .external_lex_state = 8}, - [6224] = {.lex_state = 16, .external_lex_state = 8}, - [6225] = {.lex_state = 16, .external_lex_state = 8}, - [6226] = {.lex_state = 16, .external_lex_state = 8}, - [6227] = {.lex_state = 16, .external_lex_state = 8}, - [6228] = {.lex_state = 16, .external_lex_state = 8}, - [6229] = {.lex_state = 16, .external_lex_state = 8}, - [6230] = {.lex_state = 16, .external_lex_state = 8}, - [6231] = {.lex_state = 16, .external_lex_state = 8}, - [6232] = {.lex_state = 16, .external_lex_state = 8}, - [6233] = {.lex_state = 16, .external_lex_state = 8}, - [6234] = {.lex_state = 16, .external_lex_state = 8}, - [6235] = {.lex_state = 16, .external_lex_state = 8}, - [6236] = {.lex_state = 16, .external_lex_state = 8}, - [6237] = {.lex_state = 16, .external_lex_state = 8}, - [6238] = {.lex_state = 16, .external_lex_state = 8}, - [6239] = {.lex_state = 16, .external_lex_state = 8}, - [6240] = {.lex_state = 16, .external_lex_state = 8}, - [6241] = {.lex_state = 16, .external_lex_state = 8}, - [6242] = {.lex_state = 16, .external_lex_state = 8}, - [6243] = {.lex_state = 16, .external_lex_state = 8}, - [6244] = {.lex_state = 16, .external_lex_state = 8}, - [6245] = {.lex_state = 16, .external_lex_state = 8}, - [6246] = {.lex_state = 16, .external_lex_state = 8}, - [6247] = {.lex_state = 16, .external_lex_state = 8}, - [6248] = {.lex_state = 16, .external_lex_state = 8}, - [6249] = {.lex_state = 16, .external_lex_state = 8}, - [6250] = {.lex_state = 16, .external_lex_state = 8}, - [6251] = {.lex_state = 16, .external_lex_state = 8}, - [6252] = {.lex_state = 16, .external_lex_state = 8}, - [6253] = {.lex_state = 16, .external_lex_state = 8}, - [6254] = {.lex_state = 16, .external_lex_state = 8}, - [6255] = {.lex_state = 16, .external_lex_state = 8}, - [6256] = {.lex_state = 16, .external_lex_state = 8}, - [6257] = {.lex_state = 16, .external_lex_state = 8}, - [6258] = {.lex_state = 16, .external_lex_state = 8}, - [6259] = {.lex_state = 16, .external_lex_state = 8}, - [6260] = {.lex_state = 16, .external_lex_state = 8}, - [6261] = {.lex_state = 16, .external_lex_state = 8}, - [6262] = {.lex_state = 16, .external_lex_state = 8}, - [6263] = {.lex_state = 16, .external_lex_state = 8}, - [6264] = {.lex_state = 16, .external_lex_state = 8}, - [6265] = {.lex_state = 16, .external_lex_state = 8}, - [6266] = {.lex_state = 16, .external_lex_state = 8}, - [6267] = {.lex_state = 16, .external_lex_state = 8}, - [6268] = {.lex_state = 16, .external_lex_state = 8}, - [6269] = {.lex_state = 16, .external_lex_state = 8}, - [6270] = {.lex_state = 16, .external_lex_state = 8}, - [6271] = {.lex_state = 16, .external_lex_state = 8}, - [6272] = {.lex_state = 16, .external_lex_state = 8}, - [6273] = {.lex_state = 16, .external_lex_state = 8}, - [6274] = {.lex_state = 16, .external_lex_state = 8}, - [6275] = {.lex_state = 16, .external_lex_state = 8}, - [6276] = {.lex_state = 16, .external_lex_state = 8}, - [6277] = {.lex_state = 16, .external_lex_state = 8}, - [6278] = {.lex_state = 16, .external_lex_state = 8}, - [6279] = {.lex_state = 16, .external_lex_state = 8}, - [6280] = {.lex_state = 16, .external_lex_state = 8}, - [6281] = {.lex_state = 16, .external_lex_state = 8}, - [6282] = {.lex_state = 16, .external_lex_state = 8}, - [6283] = {.lex_state = 16, .external_lex_state = 8}, - [6284] = {.lex_state = 16, .external_lex_state = 8}, - [6285] = {.lex_state = 16, .external_lex_state = 8}, - [6286] = {.lex_state = 16, .external_lex_state = 8}, - [6287] = {.lex_state = 16, .external_lex_state = 8}, - [6288] = {.lex_state = 16, .external_lex_state = 8}, - [6289] = {.lex_state = 16, .external_lex_state = 8}, - [6290] = {.lex_state = 16, .external_lex_state = 8}, - [6291] = {.lex_state = 16, .external_lex_state = 8}, - [6292] = {.lex_state = 16, .external_lex_state = 8}, - [6293] = {.lex_state = 16, .external_lex_state = 8}, - [6294] = {.lex_state = 16, .external_lex_state = 8}, - [6295] = {.lex_state = 16, .external_lex_state = 8}, - [6296] = {.lex_state = 16, .external_lex_state = 8}, - [6297] = {.lex_state = 16, .external_lex_state = 8}, - [6298] = {.lex_state = 16, .external_lex_state = 8}, - [6299] = {.lex_state = 16, .external_lex_state = 8}, - [6300] = {.lex_state = 16, .external_lex_state = 8}, - [6301] = {.lex_state = 16, .external_lex_state = 8}, - [6302] = {.lex_state = 16, .external_lex_state = 8}, - [6303] = {.lex_state = 16, .external_lex_state = 8}, - [6304] = {.lex_state = 16, .external_lex_state = 8}, - [6305] = {.lex_state = 16, .external_lex_state = 8}, - [6306] = {.lex_state = 16, .external_lex_state = 8}, - [6307] = {.lex_state = 16, .external_lex_state = 8}, - [6308] = {.lex_state = 16, .external_lex_state = 8}, - [6309] = {.lex_state = 16, .external_lex_state = 8}, - [6310] = {.lex_state = 16, .external_lex_state = 8}, - [6311] = {.lex_state = 16, .external_lex_state = 8}, - [6312] = {.lex_state = 16, .external_lex_state = 8}, - [6313] = {.lex_state = 16, .external_lex_state = 8}, - [6314] = {.lex_state = 16, .external_lex_state = 8}, - [6315] = {.lex_state = 16, .external_lex_state = 8}, - [6316] = {.lex_state = 16, .external_lex_state = 8}, - [6317] = {.lex_state = 16, .external_lex_state = 8}, - [6318] = {.lex_state = 16, .external_lex_state = 8}, - [6319] = {.lex_state = 16, .external_lex_state = 8}, - [6320] = {.lex_state = 16, .external_lex_state = 8}, - [6321] = {.lex_state = 16, .external_lex_state = 8}, - [6322] = {.lex_state = 16, .external_lex_state = 8}, - [6323] = {.lex_state = 16, .external_lex_state = 8}, - [6324] = {.lex_state = 16, .external_lex_state = 8}, - [6325] = {.lex_state = 16, .external_lex_state = 8}, - [6326] = {.lex_state = 16, .external_lex_state = 8}, - [6327] = {.lex_state = 16, .external_lex_state = 8}, - [6328] = {.lex_state = 16, .external_lex_state = 8}, - [6329] = {.lex_state = 16, .external_lex_state = 8}, - [6330] = {.lex_state = 16, .external_lex_state = 8}, - [6331] = {.lex_state = 16, .external_lex_state = 8}, - [6332] = {.lex_state = 16, .external_lex_state = 8}, - [6333] = {.lex_state = 16, .external_lex_state = 8}, - [6334] = {.lex_state = 16, .external_lex_state = 8}, - [6335] = {.lex_state = 16, .external_lex_state = 8}, - [6336] = {.lex_state = 16, .external_lex_state = 8}, - [6337] = {.lex_state = 16, .external_lex_state = 8}, - [6338] = {.lex_state = 16, .external_lex_state = 8}, - [6339] = {.lex_state = 16, .external_lex_state = 8}, - [6340] = {.lex_state = 16, .external_lex_state = 8}, - [6341] = {.lex_state = 16, .external_lex_state = 8}, - [6342] = {.lex_state = 16, .external_lex_state = 8}, - [6343] = {.lex_state = 16, .external_lex_state = 8}, - [6344] = {.lex_state = 16, .external_lex_state = 8}, - [6345] = {.lex_state = 16, .external_lex_state = 8}, - [6346] = {.lex_state = 16, .external_lex_state = 8}, - [6347] = {.lex_state = 16, .external_lex_state = 8}, - [6348] = {.lex_state = 16, .external_lex_state = 8}, - [6349] = {.lex_state = 16, .external_lex_state = 8}, - [6350] = {.lex_state = 16, .external_lex_state = 8}, - [6351] = {.lex_state = 16, .external_lex_state = 8}, - [6352] = {.lex_state = 16, .external_lex_state = 8}, - [6353] = {.lex_state = 16, .external_lex_state = 8}, - [6354] = {.lex_state = 16, .external_lex_state = 8}, - [6355] = {.lex_state = 16, .external_lex_state = 8}, - [6356] = {.lex_state = 16, .external_lex_state = 8}, - [6357] = {.lex_state = 16, .external_lex_state = 8}, - [6358] = {.lex_state = 16, .external_lex_state = 8}, - [6359] = {.lex_state = 16, .external_lex_state = 8}, - [6360] = {.lex_state = 16, .external_lex_state = 8}, - [6361] = {.lex_state = 16, .external_lex_state = 8}, - [6362] = {.lex_state = 16, .external_lex_state = 8}, - [6363] = {.lex_state = 16, .external_lex_state = 8}, - [6364] = {.lex_state = 16, .external_lex_state = 8}, - [6365] = {.lex_state = 16, .external_lex_state = 8}, - [6366] = {.lex_state = 16, .external_lex_state = 8}, - [6367] = {.lex_state = 16, .external_lex_state = 8}, - [6368] = {.lex_state = 16, .external_lex_state = 8}, - [6369] = {.lex_state = 16, .external_lex_state = 8}, - [6370] = {.lex_state = 16, .external_lex_state = 8}, - [6371] = {.lex_state = 16, .external_lex_state = 8}, - [6372] = {.lex_state = 16, .external_lex_state = 8}, - [6373] = {.lex_state = 16, .external_lex_state = 8}, - [6374] = {.lex_state = 16, .external_lex_state = 8}, - [6375] = {.lex_state = 16, .external_lex_state = 8}, - [6376] = {.lex_state = 16, .external_lex_state = 8}, - [6377] = {.lex_state = 16, .external_lex_state = 8}, - [6378] = {.lex_state = 16, .external_lex_state = 8}, - [6379] = {.lex_state = 16, .external_lex_state = 8}, - [6380] = {.lex_state = 16, .external_lex_state = 8}, - [6381] = {.lex_state = 16, .external_lex_state = 8}, - [6382] = {.lex_state = 16, .external_lex_state = 8}, - [6383] = {.lex_state = 16, .external_lex_state = 8}, - [6384] = {.lex_state = 16, .external_lex_state = 8}, - [6385] = {.lex_state = 16, .external_lex_state = 8}, - [6386] = {.lex_state = 16, .external_lex_state = 8}, - [6387] = {.lex_state = 16, .external_lex_state = 8}, - [6388] = {.lex_state = 16, .external_lex_state = 8}, - [6389] = {.lex_state = 16, .external_lex_state = 8}, - [6390] = {.lex_state = 16, .external_lex_state = 8}, - [6391] = {.lex_state = 16, .external_lex_state = 8}, - [6392] = {.lex_state = 16, .external_lex_state = 8}, - [6393] = {.lex_state = 16, .external_lex_state = 8}, - [6394] = {.lex_state = 16, .external_lex_state = 8}, - [6395] = {.lex_state = 16, .external_lex_state = 8}, - [6396] = {.lex_state = 16, .external_lex_state = 8}, - [6397] = {.lex_state = 16, .external_lex_state = 8}, - [6398] = {.lex_state = 16, .external_lex_state = 8}, - [6399] = {.lex_state = 16, .external_lex_state = 8}, - [6400] = {.lex_state = 16, .external_lex_state = 8}, - [6401] = {.lex_state = 16, .external_lex_state = 8}, - [6402] = {.lex_state = 16, .external_lex_state = 8}, - [6403] = {.lex_state = 16, .external_lex_state = 8}, - [6404] = {.lex_state = 16, .external_lex_state = 8}, - [6405] = {.lex_state = 16, .external_lex_state = 8}, - [6406] = {.lex_state = 16, .external_lex_state = 8}, - [6407] = {.lex_state = 16, .external_lex_state = 8}, - [6408] = {.lex_state = 16, .external_lex_state = 8}, - [6409] = {.lex_state = 16, .external_lex_state = 8}, - [6410] = {.lex_state = 16, .external_lex_state = 8}, - [6411] = {.lex_state = 16, .external_lex_state = 8}, - [6412] = {.lex_state = 16, .external_lex_state = 8}, - [6413] = {.lex_state = 16, .external_lex_state = 8}, - [6414] = {.lex_state = 16, .external_lex_state = 8}, - [6415] = {.lex_state = 16, .external_lex_state = 8}, - [6416] = {.lex_state = 16, .external_lex_state = 8}, - [6417] = {.lex_state = 16, .external_lex_state = 8}, - [6418] = {.lex_state = 16, .external_lex_state = 8}, - [6419] = {.lex_state = 16, .external_lex_state = 8}, - [6420] = {.lex_state = 16, .external_lex_state = 8}, - [6421] = {.lex_state = 16, .external_lex_state = 8}, - [6422] = {.lex_state = 16, .external_lex_state = 8}, - [6423] = {.lex_state = 16, .external_lex_state = 8}, - [6424] = {.lex_state = 16, .external_lex_state = 8}, - [6425] = {.lex_state = 16, .external_lex_state = 8}, - [6426] = {.lex_state = 16, .external_lex_state = 8}, - [6427] = {.lex_state = 16, .external_lex_state = 8}, - [6428] = {.lex_state = 16, .external_lex_state = 8}, - [6429] = {.lex_state = 16, .external_lex_state = 8}, - [6430] = {.lex_state = 16, .external_lex_state = 8}, - [6431] = {.lex_state = 16, .external_lex_state = 8}, - [6432] = {.lex_state = 16, .external_lex_state = 8}, - [6433] = {.lex_state = 16, .external_lex_state = 8}, - [6434] = {.lex_state = 16, .external_lex_state = 8}, - [6435] = {.lex_state = 16, .external_lex_state = 8}, - [6436] = {.lex_state = 16, .external_lex_state = 8}, - [6437] = {.lex_state = 16, .external_lex_state = 8}, - [6438] = {.lex_state = 16, .external_lex_state = 8}, - [6439] = {.lex_state = 16, .external_lex_state = 8}, - [6440] = {.lex_state = 16, .external_lex_state = 8}, - [6441] = {.lex_state = 16, .external_lex_state = 8}, - [6442] = {.lex_state = 16, .external_lex_state = 8}, - [6443] = {.lex_state = 16, .external_lex_state = 8}, - [6444] = {.lex_state = 16, .external_lex_state = 8}, - [6445] = {.lex_state = 16, .external_lex_state = 8}, - [6446] = {.lex_state = 16, .external_lex_state = 8}, - [6447] = {.lex_state = 16, .external_lex_state = 8}, - [6448] = {.lex_state = 16, .external_lex_state = 8}, - [6449] = {.lex_state = 16, .external_lex_state = 8}, - [6450] = {.lex_state = 16, .external_lex_state = 8}, - [6451] = {.lex_state = 16, .external_lex_state = 8}, - [6452] = {.lex_state = 16, .external_lex_state = 8}, - [6453] = {.lex_state = 16, .external_lex_state = 8}, - [6454] = {.lex_state = 16, .external_lex_state = 8}, - [6455] = {.lex_state = 16, .external_lex_state = 8}, - [6456] = {.lex_state = 16, .external_lex_state = 8}, - [6457] = {.lex_state = 16, .external_lex_state = 8}, - [6458] = {.lex_state = 16, .external_lex_state = 8}, - [6459] = {.lex_state = 16, .external_lex_state = 8}, - [6460] = {.lex_state = 16, .external_lex_state = 8}, - [6461] = {.lex_state = 16, .external_lex_state = 8}, - [6462] = {.lex_state = 16, .external_lex_state = 8}, - [6463] = {.lex_state = 16, .external_lex_state = 8}, - [6464] = {.lex_state = 16, .external_lex_state = 8}, - [6465] = {.lex_state = 16, .external_lex_state = 8}, - [6466] = {.lex_state = 16, .external_lex_state = 8}, - [6467] = {.lex_state = 16, .external_lex_state = 8}, - [6468] = {.lex_state = 16, .external_lex_state = 8}, - [6469] = {.lex_state = 16, .external_lex_state = 8}, - [6470] = {.lex_state = 16, .external_lex_state = 8}, - [6471] = {.lex_state = 16, .external_lex_state = 8}, - [6472] = {.lex_state = 16, .external_lex_state = 8}, - [6473] = {.lex_state = 16, .external_lex_state = 8}, - [6474] = {.lex_state = 16, .external_lex_state = 8}, - [6475] = {.lex_state = 16, .external_lex_state = 8}, - [6476] = {.lex_state = 16, .external_lex_state = 8}, - [6477] = {.lex_state = 16, .external_lex_state = 8}, - [6478] = {.lex_state = 16, .external_lex_state = 8}, - [6479] = {.lex_state = 16, .external_lex_state = 8}, - [6480] = {.lex_state = 16, .external_lex_state = 8}, - [6481] = {.lex_state = 16, .external_lex_state = 8}, - [6482] = {.lex_state = 16, .external_lex_state = 8}, - [6483] = {.lex_state = 11, .external_lex_state = 8}, - [6484] = {.lex_state = 16, .external_lex_state = 8}, - [6485] = {.lex_state = 16, .external_lex_state = 8}, - [6486] = {.lex_state = 16, .external_lex_state = 8}, - [6487] = {.lex_state = 16, .external_lex_state = 8}, - [6488] = {.lex_state = 16, .external_lex_state = 8}, - [6489] = {.lex_state = 16, .external_lex_state = 8}, - [6490] = {.lex_state = 16, .external_lex_state = 8}, - [6491] = {.lex_state = 16, .external_lex_state = 8}, - [6492] = {.lex_state = 16, .external_lex_state = 8}, - [6493] = {.lex_state = 16, .external_lex_state = 8}, - [6494] = {.lex_state = 16, .external_lex_state = 8}, - [6495] = {.lex_state = 16, .external_lex_state = 8}, - [6496] = {.lex_state = 16, .external_lex_state = 8}, - [6497] = {.lex_state = 16, .external_lex_state = 8}, - [6498] = {.lex_state = 16, .external_lex_state = 8}, - [6499] = {.lex_state = 16, .external_lex_state = 8}, - [6500] = {.lex_state = 16, .external_lex_state = 8}, - [6501] = {.lex_state = 16, .external_lex_state = 8}, - [6502] = {.lex_state = 16, .external_lex_state = 8}, - [6503] = {.lex_state = 16, .external_lex_state = 8}, - [6504] = {.lex_state = 16, .external_lex_state = 8}, - [6505] = {.lex_state = 16, .external_lex_state = 8}, - [6506] = {.lex_state = 16, .external_lex_state = 8}, - [6507] = {.lex_state = 16, .external_lex_state = 8}, - [6508] = {.lex_state = 16, .external_lex_state = 8}, - [6509] = {.lex_state = 11, .external_lex_state = 8}, - [6510] = {.lex_state = 16, .external_lex_state = 8}, - [6511] = {.lex_state = 16, .external_lex_state = 8}, - [6512] = {.lex_state = 16, .external_lex_state = 8}, - [6513] = {.lex_state = 16, .external_lex_state = 8}, - [6514] = {.lex_state = 16, .external_lex_state = 8}, - [6515] = {.lex_state = 16, .external_lex_state = 8}, - [6516] = {.lex_state = 16, .external_lex_state = 8}, - [6517] = {.lex_state = 16, .external_lex_state = 8}, - [6518] = {.lex_state = 16, .external_lex_state = 8}, - [6519] = {.lex_state = 16, .external_lex_state = 8}, - [6520] = {.lex_state = 16, .external_lex_state = 8}, - [6521] = {.lex_state = 16, .external_lex_state = 8}, - [6522] = {.lex_state = 16, .external_lex_state = 8}, - [6523] = {.lex_state = 16, .external_lex_state = 8}, - [6524] = {.lex_state = 16, .external_lex_state = 8}, - [6525] = {.lex_state = 16, .external_lex_state = 8}, - [6526] = {.lex_state = 16, .external_lex_state = 8}, - [6527] = {.lex_state = 16, .external_lex_state = 8}, - [6528] = {.lex_state = 16, .external_lex_state = 8}, - [6529] = {.lex_state = 16, .external_lex_state = 8}, - [6530] = {.lex_state = 11, .external_lex_state = 8}, - [6531] = {.lex_state = 11, .external_lex_state = 8}, - [6532] = {.lex_state = 18, .external_lex_state = 8}, - [6533] = {.lex_state = 18, .external_lex_state = 8}, - [6534] = {.lex_state = 18, .external_lex_state = 8}, - [6535] = {.lex_state = 18, .external_lex_state = 8}, - [6536] = {.lex_state = 18, .external_lex_state = 8}, - [6537] = {.lex_state = 18, .external_lex_state = 8}, - [6538] = {.lex_state = 18, .external_lex_state = 8}, - [6539] = {.lex_state = 11, .external_lex_state = 8}, - [6540] = {.lex_state = 18, .external_lex_state = 8}, - [6541] = {.lex_state = 18, .external_lex_state = 8}, - [6542] = {.lex_state = 18, .external_lex_state = 8}, - [6543] = {.lex_state = 11, .external_lex_state = 8}, - [6544] = {.lex_state = 18, .external_lex_state = 8}, - [6545] = {.lex_state = 18, .external_lex_state = 8}, - [6546] = {.lex_state = 18, .external_lex_state = 8}, - [6547] = {.lex_state = 18, .external_lex_state = 8}, - [6548] = {.lex_state = 18, .external_lex_state = 8}, - [6549] = {.lex_state = 18, .external_lex_state = 8}, - [6550] = {.lex_state = 18, .external_lex_state = 8}, - [6551] = {.lex_state = 18, .external_lex_state = 8}, - [6552] = {.lex_state = 18, .external_lex_state = 8}, - [6553] = {.lex_state = 18, .external_lex_state = 8}, - [6554] = {.lex_state = 18, .external_lex_state = 8}, - [6555] = {.lex_state = 11, .external_lex_state = 8}, - [6556] = {.lex_state = 18, .external_lex_state = 8}, - [6557] = {.lex_state = 18, .external_lex_state = 8}, - [6558] = {.lex_state = 18, .external_lex_state = 8}, - [6559] = {.lex_state = 18, .external_lex_state = 8}, - [6560] = {.lex_state = 11, .external_lex_state = 8}, - [6561] = {.lex_state = 18, .external_lex_state = 8}, - [6562] = {.lex_state = 18, .external_lex_state = 8}, - [6563] = {.lex_state = 11, .external_lex_state = 8}, - [6564] = {.lex_state = 16, .external_lex_state = 8}, - [6565] = {.lex_state = 11, .external_lex_state = 8}, - [6566] = {.lex_state = 16, .external_lex_state = 8}, - [6567] = {.lex_state = 16, .external_lex_state = 8}, - [6568] = {.lex_state = 11, .external_lex_state = 8}, - [6569] = {.lex_state = 16, .external_lex_state = 8}, - [6570] = {.lex_state = 16, .external_lex_state = 8}, - [6571] = {.lex_state = 16, .external_lex_state = 8}, - [6572] = {.lex_state = 16, .external_lex_state = 8}, - [6573] = {.lex_state = 11, .external_lex_state = 8}, - [6574] = {.lex_state = 16, .external_lex_state = 8}, - [6575] = {.lex_state = 11, .external_lex_state = 8}, - [6576] = {.lex_state = 16, .external_lex_state = 8}, - [6577] = {.lex_state = 16, .external_lex_state = 8}, - [6578] = {.lex_state = 16, .external_lex_state = 8}, - [6579] = {.lex_state = 16, .external_lex_state = 8}, - [6580] = {.lex_state = 16, .external_lex_state = 8}, - [6581] = {.lex_state = 11, .external_lex_state = 8}, - [6582] = {.lex_state = 11, .external_lex_state = 8}, - [6583] = {.lex_state = 11, .external_lex_state = 8}, - [6584] = {.lex_state = 16, .external_lex_state = 8}, - [6585] = {.lex_state = 11, .external_lex_state = 8}, - [6586] = {.lex_state = 16, .external_lex_state = 8}, - [6587] = {.lex_state = 11, .external_lex_state = 8}, - [6588] = {.lex_state = 16, .external_lex_state = 8}, - [6589] = {.lex_state = 16, .external_lex_state = 8}, - [6590] = {.lex_state = 11, .external_lex_state = 8}, - [6591] = {.lex_state = 16, .external_lex_state = 8}, - [6592] = {.lex_state = 16, .external_lex_state = 8}, - [6593] = {.lex_state = 16, .external_lex_state = 8}, - [6594] = {.lex_state = 16, .external_lex_state = 8}, - [6595] = {.lex_state = 16, .external_lex_state = 8}, - [6596] = {.lex_state = 16, .external_lex_state = 8}, - [6597] = {.lex_state = 11, .external_lex_state = 8}, - [6598] = {.lex_state = 11, .external_lex_state = 8}, - [6599] = {.lex_state = 16, .external_lex_state = 8}, - [6600] = {.lex_state = 16, .external_lex_state = 8}, - [6601] = {.lex_state = 11, .external_lex_state = 8}, - [6602] = {.lex_state = 16, .external_lex_state = 8}, - [6603] = {.lex_state = 16, .external_lex_state = 8}, - [6604] = {.lex_state = 18, .external_lex_state = 8}, - [6605] = {.lex_state = 16, .external_lex_state = 8}, - [6606] = {.lex_state = 16, .external_lex_state = 8}, - [6607] = {.lex_state = 16, .external_lex_state = 8}, - [6608] = {.lex_state = 16, .external_lex_state = 8}, - [6609] = {.lex_state = 16, .external_lex_state = 8}, - [6610] = {.lex_state = 16, .external_lex_state = 8}, - [6611] = {.lex_state = 16, .external_lex_state = 8}, - [6612] = {.lex_state = 16, .external_lex_state = 8}, - [6613] = {.lex_state = 11, .external_lex_state = 8}, - [6614] = {.lex_state = 16, .external_lex_state = 8}, - [6615] = {.lex_state = 11, .external_lex_state = 8}, - [6616] = {.lex_state = 11, .external_lex_state = 8}, - [6617] = {.lex_state = 11, .external_lex_state = 8}, - [6618] = {.lex_state = 16, .external_lex_state = 8}, - [6619] = {.lex_state = 11, .external_lex_state = 8}, - [6620] = {.lex_state = 16, .external_lex_state = 8}, - [6621] = {.lex_state = 16, .external_lex_state = 8}, - [6622] = {.lex_state = 11, .external_lex_state = 8}, - [6623] = {.lex_state = 16, .external_lex_state = 8}, - [6624] = {.lex_state = 16, .external_lex_state = 8}, - [6625] = {.lex_state = 16, .external_lex_state = 8}, - [6626] = {.lex_state = 11, .external_lex_state = 8}, - [6627] = {.lex_state = 18, .external_lex_state = 8}, - [6628] = {.lex_state = 18, .external_lex_state = 8}, - [6629] = {.lex_state = 18, .external_lex_state = 8}, - [6630] = {.lex_state = 18, .external_lex_state = 8}, - [6631] = {.lex_state = 18, .external_lex_state = 8}, - [6632] = {.lex_state = 18, .external_lex_state = 8}, - [6633] = {.lex_state = 18, .external_lex_state = 8}, - [6634] = {.lex_state = 18, .external_lex_state = 8}, - [6635] = {.lex_state = 18, .external_lex_state = 8}, - [6636] = {.lex_state = 18, .external_lex_state = 8}, - [6637] = {.lex_state = 18, .external_lex_state = 8}, - [6638] = {.lex_state = 18, .external_lex_state = 8}, - [6639] = {.lex_state = 18, .external_lex_state = 8}, - [6640] = {.lex_state = 18, .external_lex_state = 8}, - [6641] = {.lex_state = 18, .external_lex_state = 8}, - [6642] = {.lex_state = 18, .external_lex_state = 8}, - [6643] = {.lex_state = 18, .external_lex_state = 8}, - [6644] = {.lex_state = 18, .external_lex_state = 8}, - [6645] = {.lex_state = 18, .external_lex_state = 8}, - [6646] = {.lex_state = 18, .external_lex_state = 8}, - [6647] = {.lex_state = 18, .external_lex_state = 8}, - [6648] = {.lex_state = 18, .external_lex_state = 8}, - [6649] = {.lex_state = 18, .external_lex_state = 8}, - [6650] = {.lex_state = 18, .external_lex_state = 8}, - [6651] = {.lex_state = 18, .external_lex_state = 8}, - [6652] = {.lex_state = 18, .external_lex_state = 8}, - [6653] = {.lex_state = 18, .external_lex_state = 8}, - [6654] = {.lex_state = 18, .external_lex_state = 8}, - [6655] = {.lex_state = 18, .external_lex_state = 8}, - [6656] = {.lex_state = 18, .external_lex_state = 8}, - [6657] = {.lex_state = 18, .external_lex_state = 8}, - [6658] = {.lex_state = 18, .external_lex_state = 8}, - [6659] = {.lex_state = 11, .external_lex_state = 8}, - [6660] = {.lex_state = 11, .external_lex_state = 8}, - [6661] = {.lex_state = 18, .external_lex_state = 8}, - [6662] = {.lex_state = 18, .external_lex_state = 8}, - [6663] = {.lex_state = 18, .external_lex_state = 8}, - [6664] = {.lex_state = 18, .external_lex_state = 8}, - [6665] = {.lex_state = 18, .external_lex_state = 8}, - [6666] = {.lex_state = 18, .external_lex_state = 8}, - [6667] = {.lex_state = 18, .external_lex_state = 8}, - [6668] = {.lex_state = 18, .external_lex_state = 8}, - [6669] = {.lex_state = 18, .external_lex_state = 8}, - [6670] = {.lex_state = 18, .external_lex_state = 8}, - [6671] = {.lex_state = 18, .external_lex_state = 8}, - [6672] = {.lex_state = 18, .external_lex_state = 8}, - [6673] = {.lex_state = 18, .external_lex_state = 8}, - [6674] = {.lex_state = 18, .external_lex_state = 8}, - [6675] = {.lex_state = 18, .external_lex_state = 8}, - [6676] = {.lex_state = 18, .external_lex_state = 8}, - [6677] = {.lex_state = 18, .external_lex_state = 8}, - [6678] = {.lex_state = 18, .external_lex_state = 8}, - [6679] = {.lex_state = 18, .external_lex_state = 8}, - [6680] = {.lex_state = 18, .external_lex_state = 8}, - [6681] = {.lex_state = 18, .external_lex_state = 8}, - [6682] = {.lex_state = 18, .external_lex_state = 8}, - [6683] = {.lex_state = 11, .external_lex_state = 8}, - [6684] = {.lex_state = 11, .external_lex_state = 8}, - [6685] = {.lex_state = 11, .external_lex_state = 8}, - [6686] = {.lex_state = 11, .external_lex_state = 8}, - [6687] = {.lex_state = 11, .external_lex_state = 8}, - [6688] = {.lex_state = 11, .external_lex_state = 8}, - [6689] = {.lex_state = 11, .external_lex_state = 8}, - [6690] = {.lex_state = 11, .external_lex_state = 8}, - [6691] = {.lex_state = 11, .external_lex_state = 8}, - [6692] = {.lex_state = 11, .external_lex_state = 8}, - [6693] = {.lex_state = 11, .external_lex_state = 8}, - [6694] = {.lex_state = 11, .external_lex_state = 8}, - [6695] = {.lex_state = 11, .external_lex_state = 8}, - [6696] = {.lex_state = 11, .external_lex_state = 8}, - [6697] = {.lex_state = 11, .external_lex_state = 8}, - [6698] = {.lex_state = 11, .external_lex_state = 8}, - [6699] = {.lex_state = 11, .external_lex_state = 8}, - [6700] = {.lex_state = 11, .external_lex_state = 8}, - [6701] = {.lex_state = 11, .external_lex_state = 8}, - [6702] = {.lex_state = 11, .external_lex_state = 8}, - [6703] = {.lex_state = 11, .external_lex_state = 8}, - [6704] = {.lex_state = 11, .external_lex_state = 8}, - [6705] = {.lex_state = 11, .external_lex_state = 8}, - [6706] = {.lex_state = 11, .external_lex_state = 8}, - [6707] = {.lex_state = 11, .external_lex_state = 8}, - [6708] = {.lex_state = 11, .external_lex_state = 8}, - [6709] = {.lex_state = 11, .external_lex_state = 8}, - [6710] = {.lex_state = 11, .external_lex_state = 8}, - [6711] = {.lex_state = 11, .external_lex_state = 8}, - [6712] = {.lex_state = 11, .external_lex_state = 8}, - [6713] = {.lex_state = 11, .external_lex_state = 8}, - [6714] = {.lex_state = 11, .external_lex_state = 8}, - [6715] = {.lex_state = 11, .external_lex_state = 8}, - [6716] = {.lex_state = 11, .external_lex_state = 8}, - [6717] = {.lex_state = 11, .external_lex_state = 8}, - [6718] = {.lex_state = 11, .external_lex_state = 8}, - [6719] = {.lex_state = 11, .external_lex_state = 8}, - [6720] = {.lex_state = 11, .external_lex_state = 8}, - [6721] = {.lex_state = 11, .external_lex_state = 8}, - [6722] = {.lex_state = 11, .external_lex_state = 8}, - [6723] = {.lex_state = 11, .external_lex_state = 8}, - [6724] = {.lex_state = 11, .external_lex_state = 8}, - [6725] = {.lex_state = 11, .external_lex_state = 8}, - [6726] = {.lex_state = 11, .external_lex_state = 8}, - [6727] = {.lex_state = 11, .external_lex_state = 8}, - [6728] = {.lex_state = 11, .external_lex_state = 8}, - [6729] = {.lex_state = 11, .external_lex_state = 8}, - [6730] = {.lex_state = 11, .external_lex_state = 8}, - [6731] = {.lex_state = 11, .external_lex_state = 8}, - [6732] = {.lex_state = 11, .external_lex_state = 8}, - [6733] = {.lex_state = 11, .external_lex_state = 8}, - [6734] = {.lex_state = 11, .external_lex_state = 8}, - [6735] = {.lex_state = 11, .external_lex_state = 8}, - [6736] = {.lex_state = 11, .external_lex_state = 8}, - [6737] = {.lex_state = 11, .external_lex_state = 8}, - [6738] = {.lex_state = 11, .external_lex_state = 8}, - [6739] = {.lex_state = 11, .external_lex_state = 8}, - [6740] = {.lex_state = 11, .external_lex_state = 8}, - [6741] = {.lex_state = 11, .external_lex_state = 8}, - [6742] = {.lex_state = 11, .external_lex_state = 8}, - [6743] = {.lex_state = 11, .external_lex_state = 8}, - [6744] = {.lex_state = 11, .external_lex_state = 8}, - [6745] = {.lex_state = 11, .external_lex_state = 8}, - [6746] = {.lex_state = 11, .external_lex_state = 8}, - [6747] = {.lex_state = 11, .external_lex_state = 8}, - [6748] = {.lex_state = 11, .external_lex_state = 8}, - [6749] = {.lex_state = 11, .external_lex_state = 8}, - [6750] = {.lex_state = 11, .external_lex_state = 8}, - [6751] = {.lex_state = 11, .external_lex_state = 8}, - [6752] = {.lex_state = 11, .external_lex_state = 8}, - [6753] = {.lex_state = 11, .external_lex_state = 8}, - [6754] = {.lex_state = 11, .external_lex_state = 8}, - [6755] = {.lex_state = 11, .external_lex_state = 8}, - [6756] = {.lex_state = 11, .external_lex_state = 8}, - [6757] = {.lex_state = 11, .external_lex_state = 8}, - [6758] = {.lex_state = 11, .external_lex_state = 8}, - [6759] = {.lex_state = 11, .external_lex_state = 8}, - [6760] = {.lex_state = 11, .external_lex_state = 8}, - [6761] = {.lex_state = 11, .external_lex_state = 8}, - [6762] = {.lex_state = 11, .external_lex_state = 8}, - [6763] = {.lex_state = 11, .external_lex_state = 8}, - [6764] = {.lex_state = 11, .external_lex_state = 8}, - [6765] = {.lex_state = 11, .external_lex_state = 8}, - [6766] = {.lex_state = 11, .external_lex_state = 8}, - [6767] = {.lex_state = 11, .external_lex_state = 8}, - [6768] = {.lex_state = 11, .external_lex_state = 8}, - [6769] = {.lex_state = 11, .external_lex_state = 8}, - [6770] = {.lex_state = 11, .external_lex_state = 8}, - [6771] = {.lex_state = 11, .external_lex_state = 8}, - [6772] = {.lex_state = 11, .external_lex_state = 8}, - [6773] = {.lex_state = 11, .external_lex_state = 8}, - [6774] = {.lex_state = 11, .external_lex_state = 8}, - [6775] = {.lex_state = 11, .external_lex_state = 8}, - [6776] = {.lex_state = 11, .external_lex_state = 8}, - [6777] = {.lex_state = 11, .external_lex_state = 8}, - [6778] = {.lex_state = 11, .external_lex_state = 8}, - [6779] = {.lex_state = 11, .external_lex_state = 8}, - [6780] = {.lex_state = 11, .external_lex_state = 8}, - [6781] = {.lex_state = 11, .external_lex_state = 8}, - [6782] = {.lex_state = 11, .external_lex_state = 8}, - [6783] = {.lex_state = 11, .external_lex_state = 8}, - [6784] = {.lex_state = 11, .external_lex_state = 8}, - [6785] = {.lex_state = 11, .external_lex_state = 8}, - [6786] = {.lex_state = 11, .external_lex_state = 8}, - [6787] = {.lex_state = 11, .external_lex_state = 8}, - [6788] = {.lex_state = 11, .external_lex_state = 8}, - [6789] = {.lex_state = 11, .external_lex_state = 8}, - [6790] = {.lex_state = 11, .external_lex_state = 8}, - [6791] = {.lex_state = 11, .external_lex_state = 8}, - [6792] = {.lex_state = 11, .external_lex_state = 8}, - [6793] = {.lex_state = 11, .external_lex_state = 8}, - [6794] = {.lex_state = 11, .external_lex_state = 8}, - [6795] = {.lex_state = 11, .external_lex_state = 8}, - [6796] = {.lex_state = 11, .external_lex_state = 8}, - [6797] = {.lex_state = 11, .external_lex_state = 8}, - [6798] = {.lex_state = 11, .external_lex_state = 8}, - [6799] = {.lex_state = 11, .external_lex_state = 8}, - [6800] = {.lex_state = 11, .external_lex_state = 8}, - [6801] = {.lex_state = 11, .external_lex_state = 8}, - [6802] = {.lex_state = 11, .external_lex_state = 8}, - [6803] = {.lex_state = 11, .external_lex_state = 8}, - [6804] = {.lex_state = 11, .external_lex_state = 8}, - [6805] = {.lex_state = 11, .external_lex_state = 8}, - [6806] = {.lex_state = 11, .external_lex_state = 8}, - [6807] = {.lex_state = 11, .external_lex_state = 8}, - [6808] = {.lex_state = 11, .external_lex_state = 8}, - [6809] = {.lex_state = 11, .external_lex_state = 8}, - [6810] = {.lex_state = 11, .external_lex_state = 8}, - [6811] = {.lex_state = 11, .external_lex_state = 8}, - [6812] = {.lex_state = 11, .external_lex_state = 8}, - [6813] = {.lex_state = 11, .external_lex_state = 8}, - [6814] = {.lex_state = 11, .external_lex_state = 8}, - [6815] = {.lex_state = 11, .external_lex_state = 8}, - [6816] = {.lex_state = 11, .external_lex_state = 8}, - [6817] = {.lex_state = 11, .external_lex_state = 8}, - [6818] = {.lex_state = 11, .external_lex_state = 8}, - [6819] = {.lex_state = 11, .external_lex_state = 8}, - [6820] = {.lex_state = 11, .external_lex_state = 8}, - [6821] = {.lex_state = 11, .external_lex_state = 8}, - [6822] = {.lex_state = 11, .external_lex_state = 8}, - [6823] = {.lex_state = 11, .external_lex_state = 8}, - [6824] = {.lex_state = 11, .external_lex_state = 8}, - [6825] = {.lex_state = 11, .external_lex_state = 8}, - [6826] = {.lex_state = 11, .external_lex_state = 8}, - [6827] = {.lex_state = 11, .external_lex_state = 8}, - [6828] = {.lex_state = 11, .external_lex_state = 8}, - [6829] = {.lex_state = 11, .external_lex_state = 8}, - [6830] = {.lex_state = 11, .external_lex_state = 8}, - [6831] = {.lex_state = 11, .external_lex_state = 8}, - [6832] = {.lex_state = 11, .external_lex_state = 8}, - [6833] = {.lex_state = 11, .external_lex_state = 8}, - [6834] = {.lex_state = 11, .external_lex_state = 8}, - [6835] = {.lex_state = 11, .external_lex_state = 8}, - [6836] = {.lex_state = 11, .external_lex_state = 8}, - [6837] = {.lex_state = 11, .external_lex_state = 8}, - [6838] = {.lex_state = 11, .external_lex_state = 8}, - [6839] = {.lex_state = 11, .external_lex_state = 8}, - [6840] = {.lex_state = 11, .external_lex_state = 8}, - [6841] = {.lex_state = 11, .external_lex_state = 8}, - [6842] = {.lex_state = 11, .external_lex_state = 8}, - [6843] = {.lex_state = 11, .external_lex_state = 8}, - [6844] = {.lex_state = 11, .external_lex_state = 8}, - [6845] = {.lex_state = 11, .external_lex_state = 8}, - [6846] = {.lex_state = 11, .external_lex_state = 8}, - [6847] = {.lex_state = 11, .external_lex_state = 8}, - [6848] = {.lex_state = 11, .external_lex_state = 8}, - [6849] = {.lex_state = 11, .external_lex_state = 8}, - [6850] = {.lex_state = 11, .external_lex_state = 8}, - [6851] = {.lex_state = 11, .external_lex_state = 8}, - [6852] = {.lex_state = 11, .external_lex_state = 8}, - [6853] = {.lex_state = 11, .external_lex_state = 8}, - [6854] = {.lex_state = 11, .external_lex_state = 8}, - [6855] = {.lex_state = 11, .external_lex_state = 8}, - [6856] = {.lex_state = 11, .external_lex_state = 8}, - [6857] = {.lex_state = 11, .external_lex_state = 8}, - [6858] = {.lex_state = 11, .external_lex_state = 8}, - [6859] = {.lex_state = 11, .external_lex_state = 8}, - [6860] = {.lex_state = 11, .external_lex_state = 8}, - [6861] = {.lex_state = 11, .external_lex_state = 8}, - [6862] = {.lex_state = 11, .external_lex_state = 8}, - [6863] = {.lex_state = 11, .external_lex_state = 8}, - [6864] = {.lex_state = 11, .external_lex_state = 8}, - [6865] = {.lex_state = 11, .external_lex_state = 8}, - [6866] = {.lex_state = 11, .external_lex_state = 8}, - [6867] = {.lex_state = 11, .external_lex_state = 8}, - [6868] = {.lex_state = 11, .external_lex_state = 8}, - [6869] = {.lex_state = 11, .external_lex_state = 8}, - [6870] = {.lex_state = 11, .external_lex_state = 8}, - [6871] = {.lex_state = 11, .external_lex_state = 8}, - [6872] = {.lex_state = 11, .external_lex_state = 8}, - [6873] = {.lex_state = 11, .external_lex_state = 8}, - [6874] = {.lex_state = 11, .external_lex_state = 8}, - [6875] = {.lex_state = 11, .external_lex_state = 8}, - [6876] = {.lex_state = 11, .external_lex_state = 8}, - [6877] = {.lex_state = 11, .external_lex_state = 8}, - [6878] = {.lex_state = 11, .external_lex_state = 8}, - [6879] = {.lex_state = 11, .external_lex_state = 8}, - [6880] = {.lex_state = 11, .external_lex_state = 8}, - [6881] = {.lex_state = 11, .external_lex_state = 8}, - [6882] = {.lex_state = 11, .external_lex_state = 8}, - [6883] = {.lex_state = 11, .external_lex_state = 8}, - [6884] = {.lex_state = 11, .external_lex_state = 8}, - [6885] = {.lex_state = 11, .external_lex_state = 8}, - [6886] = {.lex_state = 11, .external_lex_state = 8}, - [6887] = {.lex_state = 11, .external_lex_state = 8}, - [6888] = {.lex_state = 11, .external_lex_state = 8}, - [6889] = {.lex_state = 11, .external_lex_state = 8}, - [6890] = {.lex_state = 11, .external_lex_state = 8}, - [6891] = {.lex_state = 11, .external_lex_state = 8}, - [6892] = {.lex_state = 11, .external_lex_state = 8}, - [6893] = {.lex_state = 11, .external_lex_state = 8}, - [6894] = {.lex_state = 11, .external_lex_state = 8}, - [6895] = {.lex_state = 11, .external_lex_state = 8}, - [6896] = {.lex_state = 11, .external_lex_state = 8}, - [6897] = {.lex_state = 11, .external_lex_state = 8}, - [6898] = {.lex_state = 11, .external_lex_state = 8}, - [6899] = {.lex_state = 11, .external_lex_state = 8}, - [6900] = {.lex_state = 11, .external_lex_state = 8}, - [6901] = {.lex_state = 11, .external_lex_state = 8}, - [6902] = {.lex_state = 11, .external_lex_state = 8}, - [6903] = {.lex_state = 11, .external_lex_state = 8}, - [6904] = {.lex_state = 11, .external_lex_state = 8}, - [6905] = {.lex_state = 11, .external_lex_state = 8}, - [6906] = {.lex_state = 11, .external_lex_state = 8}, - [6907] = {.lex_state = 11, .external_lex_state = 8}, - [6908] = {.lex_state = 11, .external_lex_state = 8}, - [6909] = {.lex_state = 11, .external_lex_state = 8}, - [6910] = {.lex_state = 11, .external_lex_state = 8}, - [6911] = {.lex_state = 11, .external_lex_state = 8}, - [6912] = {.lex_state = 11, .external_lex_state = 8}, - [6913] = {.lex_state = 11, .external_lex_state = 8}, - [6914] = {.lex_state = 11, .external_lex_state = 8}, - [6915] = {.lex_state = 11, .external_lex_state = 8}, - [6916] = {.lex_state = 11, .external_lex_state = 8}, - [6917] = {.lex_state = 11, .external_lex_state = 8}, - [6918] = {.lex_state = 11, .external_lex_state = 8}, - [6919] = {.lex_state = 11, .external_lex_state = 8}, - [6920] = {.lex_state = 11, .external_lex_state = 8}, - [6921] = {.lex_state = 11, .external_lex_state = 8}, - [6922] = {.lex_state = 11, .external_lex_state = 8}, - [6923] = {.lex_state = 11, .external_lex_state = 8}, - [6924] = {.lex_state = 11, .external_lex_state = 8}, - [6925] = {.lex_state = 11, .external_lex_state = 8}, - [6926] = {.lex_state = 11, .external_lex_state = 8}, - [6927] = {.lex_state = 11, .external_lex_state = 8}, - [6928] = {.lex_state = 11, .external_lex_state = 8}, - [6929] = {.lex_state = 11, .external_lex_state = 8}, - [6930] = {.lex_state = 11, .external_lex_state = 8}, - [6931] = {.lex_state = 11, .external_lex_state = 8}, - [6932] = {.lex_state = 11, .external_lex_state = 8}, - [6933] = {.lex_state = 11, .external_lex_state = 8}, - [6934] = {.lex_state = 11, .external_lex_state = 8}, - [6935] = {.lex_state = 11, .external_lex_state = 8}, - [6936] = {.lex_state = 11, .external_lex_state = 8}, - [6937] = {.lex_state = 11, .external_lex_state = 8}, - [6938] = {.lex_state = 11, .external_lex_state = 8}, - [6939] = {.lex_state = 11, .external_lex_state = 8}, - [6940] = {.lex_state = 11, .external_lex_state = 8}, - [6941] = {.lex_state = 11, .external_lex_state = 8}, - [6942] = {.lex_state = 11, .external_lex_state = 8}, - [6943] = {.lex_state = 11, .external_lex_state = 8}, - [6944] = {.lex_state = 11, .external_lex_state = 8}, - [6945] = {.lex_state = 11, .external_lex_state = 8}, - [6946] = {.lex_state = 11, .external_lex_state = 8}, - [6947] = {.lex_state = 11, .external_lex_state = 8}, - [6948] = {.lex_state = 11, .external_lex_state = 8}, - [6949] = {.lex_state = 11, .external_lex_state = 8}, - [6950] = {.lex_state = 11, .external_lex_state = 8}, - [6951] = {.lex_state = 11, .external_lex_state = 8}, - [6952] = {.lex_state = 11, .external_lex_state = 8}, - [6953] = {.lex_state = 11, .external_lex_state = 8}, - [6954] = {.lex_state = 11, .external_lex_state = 8}, - [6955] = {.lex_state = 11, .external_lex_state = 8}, - [6956] = {.lex_state = 11, .external_lex_state = 8}, - [6957] = {.lex_state = 11, .external_lex_state = 8}, - [6958] = {.lex_state = 11, .external_lex_state = 8}, - [6959] = {.lex_state = 11, .external_lex_state = 8}, - [6960] = {.lex_state = 11, .external_lex_state = 8}, - [6961] = {.lex_state = 11, .external_lex_state = 8}, - [6962] = {.lex_state = 11, .external_lex_state = 8}, - [6963] = {.lex_state = 11, .external_lex_state = 8}, - [6964] = {.lex_state = 11, .external_lex_state = 8}, - [6965] = {.lex_state = 11, .external_lex_state = 8}, - [6966] = {.lex_state = 11, .external_lex_state = 8}, - [6967] = {.lex_state = 11, .external_lex_state = 8}, - [6968] = {.lex_state = 11, .external_lex_state = 8}, - [6969] = {.lex_state = 11, .external_lex_state = 8}, - [6970] = {.lex_state = 11, .external_lex_state = 8}, - [6971] = {.lex_state = 11, .external_lex_state = 8}, - [6972] = {.lex_state = 11, .external_lex_state = 8}, - [6973] = {.lex_state = 11, .external_lex_state = 8}, - [6974] = {.lex_state = 11, .external_lex_state = 8}, - [6975] = {.lex_state = 11, .external_lex_state = 8}, - [6976] = {.lex_state = 11, .external_lex_state = 8}, - [6977] = {.lex_state = 11, .external_lex_state = 8}, - [6978] = {.lex_state = 11, .external_lex_state = 8}, - [6979] = {.lex_state = 11, .external_lex_state = 8}, - [6980] = {.lex_state = 11, .external_lex_state = 8}, - [6981] = {.lex_state = 11, .external_lex_state = 8}, - [6982] = {.lex_state = 11, .external_lex_state = 8}, - [6983] = {.lex_state = 11, .external_lex_state = 8}, - [6984] = {.lex_state = 11, .external_lex_state = 8}, - [6985] = {.lex_state = 11, .external_lex_state = 8}, - [6986] = {.lex_state = 11, .external_lex_state = 8}, - [6987] = {.lex_state = 11, .external_lex_state = 8}, - [6988] = {.lex_state = 11, .external_lex_state = 8}, - [6989] = {.lex_state = 11, .external_lex_state = 8}, - [6990] = {.lex_state = 11, .external_lex_state = 8}, - [6991] = {.lex_state = 11, .external_lex_state = 8}, - [6992] = {.lex_state = 11, .external_lex_state = 8}, - [6993] = {.lex_state = 11, .external_lex_state = 8}, - [6994] = {.lex_state = 11, .external_lex_state = 8}, - [6995] = {.lex_state = 11, .external_lex_state = 8}, - [6996] = {.lex_state = 11, .external_lex_state = 8}, - [6997] = {.lex_state = 11, .external_lex_state = 8}, - [6998] = {.lex_state = 11, .external_lex_state = 8}, - [6999] = {.lex_state = 11, .external_lex_state = 8}, - [7000] = {.lex_state = 11, .external_lex_state = 8}, - [7001] = {.lex_state = 11, .external_lex_state = 8}, - [7002] = {.lex_state = 11, .external_lex_state = 8}, - [7003] = {.lex_state = 11, .external_lex_state = 8}, - [7004] = {.lex_state = 11, .external_lex_state = 8}, - [7005] = {.lex_state = 11, .external_lex_state = 8}, - [7006] = {.lex_state = 11, .external_lex_state = 8}, - [7007] = {.lex_state = 11, .external_lex_state = 8}, - [7008] = {.lex_state = 11, .external_lex_state = 8}, - [7009] = {.lex_state = 11, .external_lex_state = 8}, - [7010] = {.lex_state = 11, .external_lex_state = 8}, - [7011] = {.lex_state = 11, .external_lex_state = 8}, - [7012] = {.lex_state = 11, .external_lex_state = 8}, - [7013] = {.lex_state = 11, .external_lex_state = 8}, - [7014] = {.lex_state = 11, .external_lex_state = 8}, - [7015] = {.lex_state = 11, .external_lex_state = 8}, - [7016] = {.lex_state = 11, .external_lex_state = 8}, - [7017] = {.lex_state = 11, .external_lex_state = 8}, - [7018] = {.lex_state = 11, .external_lex_state = 8}, - [7019] = {.lex_state = 11, .external_lex_state = 8}, - [7020] = {.lex_state = 11, .external_lex_state = 8}, - [7021] = {.lex_state = 11, .external_lex_state = 8}, - [7022] = {.lex_state = 11, .external_lex_state = 8}, - [7023] = {.lex_state = 11, .external_lex_state = 8}, - [7024] = {.lex_state = 11, .external_lex_state = 8}, - [7025] = {.lex_state = 11, .external_lex_state = 8}, - [7026] = {.lex_state = 11, .external_lex_state = 8}, - [7027] = {.lex_state = 11, .external_lex_state = 8}, - [7028] = {.lex_state = 11, .external_lex_state = 8}, - [7029] = {.lex_state = 11, .external_lex_state = 8}, - [7030] = {.lex_state = 11, .external_lex_state = 8}, - [7031] = {.lex_state = 11, .external_lex_state = 8}, - [7032] = {.lex_state = 11, .external_lex_state = 8}, - [7033] = {.lex_state = 11, .external_lex_state = 8}, - [7034] = {.lex_state = 11, .external_lex_state = 8}, - [7035] = {.lex_state = 11, .external_lex_state = 8}, - [7036] = {.lex_state = 11, .external_lex_state = 8}, - [7037] = {.lex_state = 11, .external_lex_state = 8}, - [7038] = {.lex_state = 11, .external_lex_state = 8}, - [7039] = {.lex_state = 11, .external_lex_state = 8}, - [7040] = {.lex_state = 11, .external_lex_state = 8}, - [7041] = {.lex_state = 11, .external_lex_state = 8}, - [7042] = {.lex_state = 11, .external_lex_state = 8}, - [7043] = {.lex_state = 11, .external_lex_state = 8}, - [7044] = {.lex_state = 11, .external_lex_state = 8}, - [7045] = {.lex_state = 11, .external_lex_state = 8}, - [7046] = {.lex_state = 11, .external_lex_state = 8}, - [7047] = {.lex_state = 11, .external_lex_state = 8}, - [7048] = {.lex_state = 11, .external_lex_state = 8}, - [7049] = {.lex_state = 11, .external_lex_state = 8}, - [7050] = {.lex_state = 11, .external_lex_state = 8}, - [7051] = {.lex_state = 11, .external_lex_state = 8}, - [7052] = {.lex_state = 11, .external_lex_state = 8}, - [7053] = {.lex_state = 11, .external_lex_state = 8}, - [7054] = {.lex_state = 11, .external_lex_state = 8}, - [7055] = {.lex_state = 11, .external_lex_state = 8}, - [7056] = {.lex_state = 11, .external_lex_state = 8}, - [7057] = {.lex_state = 11, .external_lex_state = 8}, - [7058] = {.lex_state = 11, .external_lex_state = 8}, - [7059] = {.lex_state = 11, .external_lex_state = 8}, - [7060] = {.lex_state = 11, .external_lex_state = 8}, - [7061] = {.lex_state = 11, .external_lex_state = 8}, - [7062] = {.lex_state = 11, .external_lex_state = 8}, - [7063] = {.lex_state = 11, .external_lex_state = 8}, - [7064] = {.lex_state = 11, .external_lex_state = 8}, - [7065] = {.lex_state = 11, .external_lex_state = 8}, - [7066] = {.lex_state = 11, .external_lex_state = 8}, - [7067] = {.lex_state = 11, .external_lex_state = 8}, - [7068] = {.lex_state = 11, .external_lex_state = 8}, - [7069] = {.lex_state = 11, .external_lex_state = 8}, - [7070] = {.lex_state = 11, .external_lex_state = 8}, - [7071] = {.lex_state = 11, .external_lex_state = 8}, - [7072] = {.lex_state = 11, .external_lex_state = 8}, - [7073] = {.lex_state = 11, .external_lex_state = 8}, - [7074] = {.lex_state = 11, .external_lex_state = 8}, - [7075] = {.lex_state = 11, .external_lex_state = 8}, - [7076] = {.lex_state = 11, .external_lex_state = 8}, - [7077] = {.lex_state = 11, .external_lex_state = 8}, - [7078] = {.lex_state = 11, .external_lex_state = 8}, - [7079] = {.lex_state = 17, .external_lex_state = 8}, - [7080] = {.lex_state = 11, .external_lex_state = 8}, - [7081] = {.lex_state = 11, .external_lex_state = 8}, - [7082] = {.lex_state = 11, .external_lex_state = 8}, - [7083] = {.lex_state = 11, .external_lex_state = 8}, - [7084] = {.lex_state = 11, .external_lex_state = 8}, - [7085] = {.lex_state = 11, .external_lex_state = 8}, - [7086] = {.lex_state = 11, .external_lex_state = 8}, - [7087] = {.lex_state = 11, .external_lex_state = 8}, - [7088] = {.lex_state = 11, .external_lex_state = 8}, - [7089] = {.lex_state = 11, .external_lex_state = 8}, - [7090] = {.lex_state = 11, .external_lex_state = 8}, - [7091] = {.lex_state = 11, .external_lex_state = 8}, - [7092] = {.lex_state = 11, .external_lex_state = 8}, - [7093] = {.lex_state = 11, .external_lex_state = 8}, - [7094] = {.lex_state = 11, .external_lex_state = 8}, - [7095] = {.lex_state = 11, .external_lex_state = 8}, - [7096] = {.lex_state = 11, .external_lex_state = 8}, - [7097] = {.lex_state = 11, .external_lex_state = 8}, - [7098] = {.lex_state = 11, .external_lex_state = 8}, - [7099] = {.lex_state = 11, .external_lex_state = 8}, - [7100] = {.lex_state = 11, .external_lex_state = 8}, - [7101] = {.lex_state = 11, .external_lex_state = 8}, - [7102] = {.lex_state = 11, .external_lex_state = 8}, - [7103] = {.lex_state = 11, .external_lex_state = 8}, - [7104] = {.lex_state = 0, .external_lex_state = 6}, - [7105] = {.lex_state = 11, .external_lex_state = 8}, - [7106] = {.lex_state = 11, .external_lex_state = 8}, - [7107] = {.lex_state = 11, .external_lex_state = 8}, - [7108] = {.lex_state = 11, .external_lex_state = 8}, - [7109] = {.lex_state = 11, .external_lex_state = 8}, - [7110] = {.lex_state = 11, .external_lex_state = 8}, - [7111] = {.lex_state = 11, .external_lex_state = 8}, - [7112] = {.lex_state = 11, .external_lex_state = 8}, - [7113] = {.lex_state = 11, .external_lex_state = 8}, - [7114] = {.lex_state = 11, .external_lex_state = 8}, - [7115] = {.lex_state = 11, .external_lex_state = 8}, - [7116] = {.lex_state = 11, .external_lex_state = 8}, - [7117] = {.lex_state = 11, .external_lex_state = 8}, - [7118] = {.lex_state = 11, .external_lex_state = 8}, - [7119] = {.lex_state = 11, .external_lex_state = 8}, - [7120] = {.lex_state = 11, .external_lex_state = 8}, - [7121] = {.lex_state = 11, .external_lex_state = 8}, - [7122] = {.lex_state = 11, .external_lex_state = 8}, - [7123] = {.lex_state = 11, .external_lex_state = 8}, - [7124] = {.lex_state = 11, .external_lex_state = 8}, - [7125] = {.lex_state = 11, .external_lex_state = 8}, - [7126] = {.lex_state = 11, .external_lex_state = 8}, - [7127] = {.lex_state = 17, .external_lex_state = 8}, - [7128] = {.lex_state = 11, .external_lex_state = 8}, - [7129] = {.lex_state = 11, .external_lex_state = 8}, - [7130] = {.lex_state = 11, .external_lex_state = 8}, - [7131] = {.lex_state = 11, .external_lex_state = 8}, - [7132] = {.lex_state = 11, .external_lex_state = 8}, - [7133] = {.lex_state = 11, .external_lex_state = 8}, - [7134] = {.lex_state = 11, .external_lex_state = 8}, - [7135] = {.lex_state = 11, .external_lex_state = 8}, - [7136] = {.lex_state = 11, .external_lex_state = 8}, - [7137] = {.lex_state = 11, .external_lex_state = 8}, - [7138] = {.lex_state = 11, .external_lex_state = 8}, - [7139] = {.lex_state = 11, .external_lex_state = 8}, - [7140] = {.lex_state = 11, .external_lex_state = 8}, - [7141] = {.lex_state = 11, .external_lex_state = 8}, - [7142] = {.lex_state = 11, .external_lex_state = 8}, - [7143] = {.lex_state = 11, .external_lex_state = 8}, - [7144] = {.lex_state = 11, .external_lex_state = 8}, - [7145] = {.lex_state = 11, .external_lex_state = 8}, - [7146] = {.lex_state = 11, .external_lex_state = 8}, - [7147] = {.lex_state = 0, .external_lex_state = 6}, - [7148] = {.lex_state = 11, .external_lex_state = 8}, - [7149] = {.lex_state = 11, .external_lex_state = 8}, - [7150] = {.lex_state = 11, .external_lex_state = 8}, - [7151] = {.lex_state = 18, .external_lex_state = 8}, - [7152] = {.lex_state = 16, .external_lex_state = 8}, - [7153] = {.lex_state = 17, .external_lex_state = 8}, - [7154] = {.lex_state = 17, .external_lex_state = 8}, - [7155] = {.lex_state = 16, .external_lex_state = 8}, - [7156] = {.lex_state = 18, .external_lex_state = 8}, - [7157] = {.lex_state = 16, .external_lex_state = 8}, - [7158] = {.lex_state = 11, .external_lex_state = 8}, - [7159] = {.lex_state = 17, .external_lex_state = 8}, - [7160] = {.lex_state = 17, .external_lex_state = 8}, - [7161] = {.lex_state = 16, .external_lex_state = 8}, - [7162] = {.lex_state = 16, .external_lex_state = 8}, - [7163] = {.lex_state = 11, .external_lex_state = 8}, - [7164] = {.lex_state = 11, .external_lex_state = 8}, - [7165] = {.lex_state = 11, .external_lex_state = 8}, - [7166] = {.lex_state = 11, .external_lex_state = 8}, - [7167] = {.lex_state = 18, .external_lex_state = 8}, - [7168] = {.lex_state = 11, .external_lex_state = 8}, - [7169] = {.lex_state = 11, .external_lex_state = 8}, - [7170] = {.lex_state = 17, .external_lex_state = 8}, - [7171] = {.lex_state = 18, .external_lex_state = 8}, - [7172] = {.lex_state = 11, .external_lex_state = 8}, - [7173] = {.lex_state = 11, .external_lex_state = 8}, - [7174] = {.lex_state = 11, .external_lex_state = 8}, - [7175] = {.lex_state = 11, .external_lex_state = 8}, - [7176] = {.lex_state = 11, .external_lex_state = 8}, - [7177] = {.lex_state = 11, .external_lex_state = 8}, - [7178] = {.lex_state = 11, .external_lex_state = 8}, - [7179] = {.lex_state = 11, .external_lex_state = 8}, - [7180] = {.lex_state = 11, .external_lex_state = 8}, - [7181] = {.lex_state = 11, .external_lex_state = 8}, - [7182] = {.lex_state = 11, .external_lex_state = 8}, - [7183] = {.lex_state = 11, .external_lex_state = 8}, - [7184] = {.lex_state = 11, .external_lex_state = 8}, - [7185] = {.lex_state = 11, .external_lex_state = 8}, - [7186] = {.lex_state = 11, .external_lex_state = 8}, - [7187] = {.lex_state = 11, .external_lex_state = 8}, - [7188] = {.lex_state = 11, .external_lex_state = 8}, - [7189] = {.lex_state = 11, .external_lex_state = 8}, - [7190] = {.lex_state = 11, .external_lex_state = 8}, - [7191] = {.lex_state = 11, .external_lex_state = 8}, - [7192] = {.lex_state = 11, .external_lex_state = 8}, - [7193] = {.lex_state = 11, .external_lex_state = 8}, - [7194] = {.lex_state = 11, .external_lex_state = 8}, - [7195] = {.lex_state = 17, .external_lex_state = 8}, - [7196] = {.lex_state = 17, .external_lex_state = 8}, - [7197] = {.lex_state = 17, .external_lex_state = 8}, - [7198] = {.lex_state = 11, .external_lex_state = 8}, - [7199] = {.lex_state = 11, .external_lex_state = 8}, - [7200] = {.lex_state = 17, .external_lex_state = 8}, - [7201] = {.lex_state = 11, .external_lex_state = 8}, - [7202] = {.lex_state = 11, .external_lex_state = 8}, - [7203] = {.lex_state = 11, .external_lex_state = 8}, - [7204] = {.lex_state = 11, .external_lex_state = 8}, - [7205] = {.lex_state = 11, .external_lex_state = 8}, - [7206] = {.lex_state = 11, .external_lex_state = 8}, - [7207] = {.lex_state = 11, .external_lex_state = 8}, - [7208] = {.lex_state = 11, .external_lex_state = 8}, - [7209] = {.lex_state = 11, .external_lex_state = 8}, - [7210] = {.lex_state = 11, .external_lex_state = 8}, - [7211] = {.lex_state = 11, .external_lex_state = 8}, - [7212] = {.lex_state = 11, .external_lex_state = 8}, - [7213] = {.lex_state = 11, .external_lex_state = 8}, - [7214] = {.lex_state = 11, .external_lex_state = 8}, - [7215] = {.lex_state = 11, .external_lex_state = 8}, - [7216] = {.lex_state = 11, .external_lex_state = 8}, - [7217] = {.lex_state = 11, .external_lex_state = 8}, - [7218] = {.lex_state = 11, .external_lex_state = 8}, - [7219] = {.lex_state = 11, .external_lex_state = 8}, - [7220] = {.lex_state = 17, .external_lex_state = 8}, - [7221] = {.lex_state = 11, .external_lex_state = 8}, - [7222] = {.lex_state = 11, .external_lex_state = 8}, - [7223] = {.lex_state = 11, .external_lex_state = 8}, - [7224] = {.lex_state = 11, .external_lex_state = 8}, - [7225] = {.lex_state = 11, .external_lex_state = 8}, - [7226] = {.lex_state = 11, .external_lex_state = 8}, - [7227] = {.lex_state = 11, .external_lex_state = 8}, - [7228] = {.lex_state = 11, .external_lex_state = 8}, - [7229] = {.lex_state = 11, .external_lex_state = 8}, - [7230] = {.lex_state = 11, .external_lex_state = 8}, - [7231] = {.lex_state = 11, .external_lex_state = 8}, - [7232] = {.lex_state = 11, .external_lex_state = 8}, - [7233] = {.lex_state = 11, .external_lex_state = 8}, - [7234] = {.lex_state = 17, .external_lex_state = 8}, - [7235] = {.lex_state = 11, .external_lex_state = 8}, - [7236] = {.lex_state = 11, .external_lex_state = 8}, - [7237] = {.lex_state = 11, .external_lex_state = 8}, - [7238] = {.lex_state = 11, .external_lex_state = 8}, - [7239] = {.lex_state = 16, .external_lex_state = 8}, - [7240] = {.lex_state = 11, .external_lex_state = 8}, - [7241] = {.lex_state = 11, .external_lex_state = 8}, - [7242] = {.lex_state = 11, .external_lex_state = 8}, - [7243] = {.lex_state = 17, .external_lex_state = 8}, - [7244] = {.lex_state = 17, .external_lex_state = 8}, - [7245] = {.lex_state = 17, .external_lex_state = 8}, - [7246] = {.lex_state = 17, .external_lex_state = 8}, - [7247] = {.lex_state = 11, .external_lex_state = 8}, - [7248] = {.lex_state = 11, .external_lex_state = 8}, - [7249] = {.lex_state = 17, .external_lex_state = 8}, - [7250] = {.lex_state = 11, .external_lex_state = 8}, - [7251] = {.lex_state = 11, .external_lex_state = 8}, - [7252] = {.lex_state = 16, .external_lex_state = 8}, - [7253] = {.lex_state = 18, .external_lex_state = 8}, - [7254] = {.lex_state = 11, .external_lex_state = 8}, - [7255] = {.lex_state = 17, .external_lex_state = 8}, - [7256] = {.lex_state = 18, .external_lex_state = 8}, - [7257] = {.lex_state = 11, .external_lex_state = 8}, - [7258] = {.lex_state = 11, .external_lex_state = 8}, - [7259] = {.lex_state = 17, .external_lex_state = 8}, - [7260] = {.lex_state = 18, .external_lex_state = 8}, - [7261] = {.lex_state = 11, .external_lex_state = 8}, - [7262] = {.lex_state = 17, .external_lex_state = 8}, - [7263] = {.lex_state = 11, .external_lex_state = 8}, - [7264] = {.lex_state = 11, .external_lex_state = 8}, - [7265] = {.lex_state = 11, .external_lex_state = 8}, - [7266] = {.lex_state = 11, .external_lex_state = 8}, - [7267] = {.lex_state = 11, .external_lex_state = 8}, - [7268] = {.lex_state = 11, .external_lex_state = 8}, - [7269] = {.lex_state = 11, .external_lex_state = 8}, - [7270] = {.lex_state = 11, .external_lex_state = 8}, - [7271] = {.lex_state = 11, .external_lex_state = 8}, - [7272] = {.lex_state = 11, .external_lex_state = 8}, - [7273] = {.lex_state = 11, .external_lex_state = 8}, - [7274] = {.lex_state = 17, .external_lex_state = 8}, - [7275] = {.lex_state = 11, .external_lex_state = 8}, - [7276] = {.lex_state = 11, .external_lex_state = 8}, - [7277] = {.lex_state = 11, .external_lex_state = 8}, - [7278] = {.lex_state = 11, .external_lex_state = 8}, - [7279] = {.lex_state = 11, .external_lex_state = 8}, - [7280] = {.lex_state = 11, .external_lex_state = 8}, - [7281] = {.lex_state = 11, .external_lex_state = 8}, - [7282] = {.lex_state = 11, .external_lex_state = 8}, - [7283] = {.lex_state = 11, .external_lex_state = 8}, - [7284] = {.lex_state = 11, .external_lex_state = 8}, - [7285] = {.lex_state = 11, .external_lex_state = 8}, - [7286] = {.lex_state = 11, .external_lex_state = 8}, - [7287] = {.lex_state = 11, .external_lex_state = 8}, - [7288] = {.lex_state = 11, .external_lex_state = 8}, - [7289] = {.lex_state = 18, .external_lex_state = 8}, - [7290] = {.lex_state = 11, .external_lex_state = 8}, - [7291] = {.lex_state = 11, .external_lex_state = 8}, - [7292] = {.lex_state = 11, .external_lex_state = 8}, - [7293] = {.lex_state = 11, .external_lex_state = 8}, - [7294] = {.lex_state = 11, .external_lex_state = 8}, - [7295] = {.lex_state = 11, .external_lex_state = 8}, - [7296] = {.lex_state = 11, .external_lex_state = 8}, - [7297] = {.lex_state = 11, .external_lex_state = 8}, - [7298] = {.lex_state = 11, .external_lex_state = 8}, - [7299] = {.lex_state = 11, .external_lex_state = 8}, - [7300] = {.lex_state = 11, .external_lex_state = 8}, - [7301] = {.lex_state = 11, .external_lex_state = 8}, - [7302] = {.lex_state = 11, .external_lex_state = 8}, - [7303] = {.lex_state = 11, .external_lex_state = 8}, - [7304] = {.lex_state = 11, .external_lex_state = 8}, - [7305] = {.lex_state = 11, .external_lex_state = 8}, - [7306] = {.lex_state = 11, .external_lex_state = 8}, - [7307] = {.lex_state = 11, .external_lex_state = 8}, - [7308] = {.lex_state = 11, .external_lex_state = 8}, - [7309] = {.lex_state = 11, .external_lex_state = 8}, - [7310] = {.lex_state = 11, .external_lex_state = 8}, - [7311] = {.lex_state = 11, .external_lex_state = 8}, - [7312] = {.lex_state = 11, .external_lex_state = 8}, - [7313] = {.lex_state = 11, .external_lex_state = 8}, - [7314] = {.lex_state = 11, .external_lex_state = 8}, - [7315] = {.lex_state = 11, .external_lex_state = 8}, - [7316] = {.lex_state = 11, .external_lex_state = 8}, - [7317] = {.lex_state = 11, .external_lex_state = 8}, - [7318] = {.lex_state = 11, .external_lex_state = 8}, - [7319] = {.lex_state = 11, .external_lex_state = 8}, - [7320] = {.lex_state = 11, .external_lex_state = 8}, - [7321] = {.lex_state = 11, .external_lex_state = 8}, - [7322] = {.lex_state = 11, .external_lex_state = 8}, - [7323] = {.lex_state = 11, .external_lex_state = 8}, - [7324] = {.lex_state = 11, .external_lex_state = 8}, - [7325] = {.lex_state = 11, .external_lex_state = 8}, - [7326] = {.lex_state = 11, .external_lex_state = 8}, - [7327] = {.lex_state = 11, .external_lex_state = 8}, - [7328] = {.lex_state = 11, .external_lex_state = 8}, - [7329] = {.lex_state = 11, .external_lex_state = 8}, - [7330] = {.lex_state = 11, .external_lex_state = 8}, - [7331] = {.lex_state = 11, .external_lex_state = 8}, - [7332] = {.lex_state = 11, .external_lex_state = 8}, - [7333] = {.lex_state = 11, .external_lex_state = 8}, - [7334] = {.lex_state = 11, .external_lex_state = 8}, - [7335] = {.lex_state = 11, .external_lex_state = 8}, - [7336] = {.lex_state = 11, .external_lex_state = 8}, - [7337] = {.lex_state = 11, .external_lex_state = 8}, - [7338] = {.lex_state = 11, .external_lex_state = 9}, - [7339] = {.lex_state = 11, .external_lex_state = 8}, - [7340] = {.lex_state = 11, .external_lex_state = 8}, - [7341] = {.lex_state = 11, .external_lex_state = 8}, - [7342] = {.lex_state = 11, .external_lex_state = 8}, - [7343] = {.lex_state = 11, .external_lex_state = 8}, - [7344] = {.lex_state = 11, .external_lex_state = 8}, - [7345] = {.lex_state = 11, .external_lex_state = 8}, - [7346] = {.lex_state = 11, .external_lex_state = 8}, - [7347] = {.lex_state = 11, .external_lex_state = 8}, - [7348] = {.lex_state = 11, .external_lex_state = 8}, - [7349] = {.lex_state = 16, .external_lex_state = 8}, - [7350] = {.lex_state = 11, .external_lex_state = 8}, - [7351] = {.lex_state = 11, .external_lex_state = 8}, - [7352] = {.lex_state = 11, .external_lex_state = 8}, - [7353] = {.lex_state = 11, .external_lex_state = 8}, - [7354] = {.lex_state = 11, .external_lex_state = 8}, - [7355] = {.lex_state = 11, .external_lex_state = 8}, - [7356] = {.lex_state = 11, .external_lex_state = 8}, - [7357] = {.lex_state = 11, .external_lex_state = 8}, - [7358] = {.lex_state = 11, .external_lex_state = 8}, - [7359] = {.lex_state = 11, .external_lex_state = 8}, - [7360] = {.lex_state = 11, .external_lex_state = 8}, - [7361] = {.lex_state = 11, .external_lex_state = 8}, - [7362] = {.lex_state = 11, .external_lex_state = 8}, - [7363] = {.lex_state = 11, .external_lex_state = 8}, - [7364] = {.lex_state = 11, .external_lex_state = 8}, - [7365] = {.lex_state = 11, .external_lex_state = 8}, - [7366] = {.lex_state = 11, .external_lex_state = 8}, - [7367] = {.lex_state = 11, .external_lex_state = 8}, - [7368] = {.lex_state = 11, .external_lex_state = 8}, - [7369] = {.lex_state = 11, .external_lex_state = 8}, - [7370] = {.lex_state = 16, .external_lex_state = 8}, - [7371] = {.lex_state = 11, .external_lex_state = 8}, - [7372] = {.lex_state = 11, .external_lex_state = 8}, - [7373] = {.lex_state = 11, .external_lex_state = 8}, - [7374] = {.lex_state = 11, .external_lex_state = 8}, - [7375] = {.lex_state = 18, .external_lex_state = 8}, - [7376] = {.lex_state = 11, .external_lex_state = 8}, - [7377] = {.lex_state = 11, .external_lex_state = 8}, - [7378] = {.lex_state = 11, .external_lex_state = 8}, - [7379] = {.lex_state = 11, .external_lex_state = 8}, - [7380] = {.lex_state = 11, .external_lex_state = 8}, - [7381] = {.lex_state = 11, .external_lex_state = 8}, - [7382] = {.lex_state = 11, .external_lex_state = 8}, - [7383] = {.lex_state = 11, .external_lex_state = 8}, - [7384] = {.lex_state = 11, .external_lex_state = 8}, - [7385] = {.lex_state = 11, .external_lex_state = 8}, - [7386] = {.lex_state = 11, .external_lex_state = 8}, - [7387] = {.lex_state = 11, .external_lex_state = 8}, - [7388] = {.lex_state = 11, .external_lex_state = 8}, - [7389] = {.lex_state = 11, .external_lex_state = 8}, - [7390] = {.lex_state = 11, .external_lex_state = 8}, - [7391] = {.lex_state = 11, .external_lex_state = 8}, - [7392] = {.lex_state = 11, .external_lex_state = 8}, - [7393] = {.lex_state = 11, .external_lex_state = 8}, - [7394] = {.lex_state = 11, .external_lex_state = 8}, - [7395] = {.lex_state = 11, .external_lex_state = 8}, - [7396] = {.lex_state = 11, .external_lex_state = 8}, - [7397] = {.lex_state = 11, .external_lex_state = 8}, - [7398] = {.lex_state = 11, .external_lex_state = 8}, - [7399] = {.lex_state = 11, .external_lex_state = 8}, - [7400] = {.lex_state = 11, .external_lex_state = 8}, - [7401] = {.lex_state = 11, .external_lex_state = 8}, - [7402] = {.lex_state = 18, .external_lex_state = 8}, - [7403] = {.lex_state = 11, .external_lex_state = 8}, - [7404] = {.lex_state = 11, .external_lex_state = 8}, - [7405] = {.lex_state = 11, .external_lex_state = 8}, - [7406] = {.lex_state = 11, .external_lex_state = 8}, - [7407] = {.lex_state = 11, .external_lex_state = 8}, - [7408] = {.lex_state = 11, .external_lex_state = 8}, - [7409] = {.lex_state = 18, .external_lex_state = 8}, - [7410] = {.lex_state = 11, .external_lex_state = 8}, - [7411] = {.lex_state = 11, .external_lex_state = 8}, - [7412] = {.lex_state = 11, .external_lex_state = 8}, - [7413] = {.lex_state = 11, .external_lex_state = 8}, - [7414] = {.lex_state = 18, .external_lex_state = 8}, - [7415] = {.lex_state = 11, .external_lex_state = 8}, - [7416] = {.lex_state = 11, .external_lex_state = 8}, - [7417] = {.lex_state = 11, .external_lex_state = 8}, - [7418] = {.lex_state = 11, .external_lex_state = 8}, - [7419] = {.lex_state = 11, .external_lex_state = 8}, - [7420] = {.lex_state = 11, .external_lex_state = 8}, - [7421] = {.lex_state = 11, .external_lex_state = 8}, - [7422] = {.lex_state = 11, .external_lex_state = 8}, - [7423] = {.lex_state = 11, .external_lex_state = 8}, - [7424] = {.lex_state = 11, .external_lex_state = 8}, - [7425] = {.lex_state = 11, .external_lex_state = 8}, - [7426] = {.lex_state = 11, .external_lex_state = 8}, - [7427] = {.lex_state = 16, .external_lex_state = 8}, - [7428] = {.lex_state = 16, .external_lex_state = 8}, - [7429] = {.lex_state = 11, .external_lex_state = 8}, - [7430] = {.lex_state = 11, .external_lex_state = 8}, - [7431] = {.lex_state = 11, .external_lex_state = 8}, - [7432] = {.lex_state = 11, .external_lex_state = 8}, - [7433] = {.lex_state = 11, .external_lex_state = 8}, - [7434] = {.lex_state = 11, .external_lex_state = 8}, - [7435] = {.lex_state = 11, .external_lex_state = 8}, - [7436] = {.lex_state = 11, .external_lex_state = 8}, - [7437] = {.lex_state = 11, .external_lex_state = 8}, - [7438] = {.lex_state = 11, .external_lex_state = 8}, - [7439] = {.lex_state = 11, .external_lex_state = 8}, - [7440] = {.lex_state = 11, .external_lex_state = 8}, - [7441] = {.lex_state = 11, .external_lex_state = 8}, - [7442] = {.lex_state = 11, .external_lex_state = 8}, - [7443] = {.lex_state = 11, .external_lex_state = 8}, - [7444] = {.lex_state = 11, .external_lex_state = 8}, - [7445] = {.lex_state = 11, .external_lex_state = 8}, - [7446] = {.lex_state = 11, .external_lex_state = 8}, - [7447] = {.lex_state = 11, .external_lex_state = 8}, - [7448] = {.lex_state = 11, .external_lex_state = 8}, - [7449] = {.lex_state = 11, .external_lex_state = 8}, - [7450] = {.lex_state = 11, .external_lex_state = 8}, - [7451] = {.lex_state = 11, .external_lex_state = 8}, - [7452] = {.lex_state = 11, .external_lex_state = 8}, - [7453] = {.lex_state = 11, .external_lex_state = 8}, - [7454] = {.lex_state = 11, .external_lex_state = 8}, - [7455] = {.lex_state = 11, .external_lex_state = 8}, - [7456] = {.lex_state = 11, .external_lex_state = 8}, - [7457] = {.lex_state = 11, .external_lex_state = 8}, - [7458] = {.lex_state = 11, .external_lex_state = 8}, - [7459] = {.lex_state = 11, .external_lex_state = 8}, - [7460] = {.lex_state = 11, .external_lex_state = 8}, - [7461] = {.lex_state = 11, .external_lex_state = 8}, - [7462] = {.lex_state = 11, .external_lex_state = 8}, - [7463] = {.lex_state = 11, .external_lex_state = 8}, - [7464] = {.lex_state = 11, .external_lex_state = 8}, - [7465] = {.lex_state = 11, .external_lex_state = 8}, - [7466] = {.lex_state = 11, .external_lex_state = 8}, - [7467] = {.lex_state = 11, .external_lex_state = 8}, - [7468] = {.lex_state = 11, .external_lex_state = 8}, - [7469] = {.lex_state = 11, .external_lex_state = 8}, - [7470] = {.lex_state = 11, .external_lex_state = 8}, - [7471] = {.lex_state = 11, .external_lex_state = 8}, - [7472] = {.lex_state = 11, .external_lex_state = 9}, - [7473] = {.lex_state = 11, .external_lex_state = 8}, - [7474] = {.lex_state = 11, .external_lex_state = 8}, - [7475] = {.lex_state = 11, .external_lex_state = 8}, - [7476] = {.lex_state = 11, .external_lex_state = 8}, - [7477] = {.lex_state = 11, .external_lex_state = 8}, - [7478] = {.lex_state = 11, .external_lex_state = 8}, - [7479] = {.lex_state = 11, .external_lex_state = 8}, - [7480] = {.lex_state = 11, .external_lex_state = 8}, - [7481] = {.lex_state = 11, .external_lex_state = 8}, - [7482] = {.lex_state = 11, .external_lex_state = 8}, - [7483] = {.lex_state = 11, .external_lex_state = 8}, - [7484] = {.lex_state = 11, .external_lex_state = 8}, - [7485] = {.lex_state = 11, .external_lex_state = 8}, - [7486] = {.lex_state = 11, .external_lex_state = 8}, - [7487] = {.lex_state = 11, .external_lex_state = 8}, - [7488] = {.lex_state = 11, .external_lex_state = 8}, - [7489] = {.lex_state = 11, .external_lex_state = 8}, - [7490] = {.lex_state = 11, .external_lex_state = 8}, - [7491] = {.lex_state = 11, .external_lex_state = 8}, - [7492] = {.lex_state = 16, .external_lex_state = 8}, - [7493] = {.lex_state = 11, .external_lex_state = 8}, - [7494] = {.lex_state = 11, .external_lex_state = 8}, - [7495] = {.lex_state = 11, .external_lex_state = 8}, - [7496] = {.lex_state = 11, .external_lex_state = 8}, - [7497] = {.lex_state = 11, .external_lex_state = 8}, - [7498] = {.lex_state = 11, .external_lex_state = 8}, - [7499] = {.lex_state = 11, .external_lex_state = 8}, - [7500] = {.lex_state = 11, .external_lex_state = 8}, - [7501] = {.lex_state = 11, .external_lex_state = 8}, - [7502] = {.lex_state = 11, .external_lex_state = 8}, - [7503] = {.lex_state = 11, .external_lex_state = 8}, - [7504] = {.lex_state = 11, .external_lex_state = 8}, - [7505] = {.lex_state = 11, .external_lex_state = 8}, - [7506] = {.lex_state = 11, .external_lex_state = 8}, - [7507] = {.lex_state = 18, .external_lex_state = 8}, - [7508] = {.lex_state = 11, .external_lex_state = 8}, - [7509] = {.lex_state = 11, .external_lex_state = 8}, - [7510] = {.lex_state = 11, .external_lex_state = 8}, - [7511] = {.lex_state = 11, .external_lex_state = 8}, - [7512] = {.lex_state = 11, .external_lex_state = 8}, - [7513] = {.lex_state = 11, .external_lex_state = 8}, - [7514] = {.lex_state = 11, .external_lex_state = 8}, - [7515] = {.lex_state = 11, .external_lex_state = 8}, - [7516] = {.lex_state = 11, .external_lex_state = 8}, - [7517] = {.lex_state = 11, .external_lex_state = 8}, - [7518] = {.lex_state = 11, .external_lex_state = 8}, - [7519] = {.lex_state = 11, .external_lex_state = 8}, - [7520] = {.lex_state = 11, .external_lex_state = 8}, - [7521] = {.lex_state = 11, .external_lex_state = 8}, - [7522] = {.lex_state = 11, .external_lex_state = 8}, - [7523] = {.lex_state = 11, .external_lex_state = 8}, - [7524] = {.lex_state = 11, .external_lex_state = 8}, - [7525] = {.lex_state = 11, .external_lex_state = 8}, - [7526] = {.lex_state = 11, .external_lex_state = 8}, - [7527] = {.lex_state = 11, .external_lex_state = 8}, - [7528] = {.lex_state = 11, .external_lex_state = 8}, - [7529] = {.lex_state = 11, .external_lex_state = 8}, - [7530] = {.lex_state = 11, .external_lex_state = 8}, - [7531] = {.lex_state = 11, .external_lex_state = 8}, - [7532] = {.lex_state = 11, .external_lex_state = 8}, - [7533] = {.lex_state = 11, .external_lex_state = 8}, - [7534] = {.lex_state = 11, .external_lex_state = 8}, - [7535] = {.lex_state = 11, .external_lex_state = 8}, - [7536] = {.lex_state = 11, .external_lex_state = 8}, - [7537] = {.lex_state = 11, .external_lex_state = 8}, - [7538] = {.lex_state = 11, .external_lex_state = 8}, - [7539] = {.lex_state = 11, .external_lex_state = 8}, - [7540] = {.lex_state = 11, .external_lex_state = 8}, - [7541] = {.lex_state = 11, .external_lex_state = 8}, - [7542] = {.lex_state = 11, .external_lex_state = 8}, - [7543] = {.lex_state = 16, .external_lex_state = 8}, - [7544] = {.lex_state = 11, .external_lex_state = 8}, - [7545] = {.lex_state = 11, .external_lex_state = 8}, - [7546] = {.lex_state = 11, .external_lex_state = 8}, - [7547] = {.lex_state = 11, .external_lex_state = 8}, - [7548] = {.lex_state = 11, .external_lex_state = 8}, - [7549] = {.lex_state = 11, .external_lex_state = 8}, - [7550] = {.lex_state = 11, .external_lex_state = 8}, - [7551] = {.lex_state = 11, .external_lex_state = 8}, - [7552] = {.lex_state = 11, .external_lex_state = 8}, - [7553] = {.lex_state = 11, .external_lex_state = 8}, - [7554] = {.lex_state = 11, .external_lex_state = 8}, - [7555] = {.lex_state = 16, .external_lex_state = 8}, - [7556] = {.lex_state = 11, .external_lex_state = 8}, - [7557] = {.lex_state = 11, .external_lex_state = 8}, - [7558] = {.lex_state = 11, .external_lex_state = 8}, - [7559] = {.lex_state = 11, .external_lex_state = 8}, - [7560] = {.lex_state = 11, .external_lex_state = 8}, - [7561] = {.lex_state = 16, .external_lex_state = 8}, - [7562] = {.lex_state = 11, .external_lex_state = 8}, - [7563] = {.lex_state = 11, .external_lex_state = 8}, - [7564] = {.lex_state = 11, .external_lex_state = 8}, - [7565] = {.lex_state = 11, .external_lex_state = 8}, - [7566] = {.lex_state = 11, .external_lex_state = 8}, - [7567] = {.lex_state = 11, .external_lex_state = 8}, - [7568] = {.lex_state = 11, .external_lex_state = 8}, - [7569] = {.lex_state = 11, .external_lex_state = 8}, - [7570] = {.lex_state = 11, .external_lex_state = 8}, - [7571] = {.lex_state = 11, .external_lex_state = 8}, - [7572] = {.lex_state = 11, .external_lex_state = 8}, - [7573] = {.lex_state = 11, .external_lex_state = 8}, - [7574] = {.lex_state = 11, .external_lex_state = 8}, - [7575] = {.lex_state = 11, .external_lex_state = 8}, - [7576] = {.lex_state = 11, .external_lex_state = 8}, - [7577] = {.lex_state = 16, .external_lex_state = 8}, - [7578] = {.lex_state = 11, .external_lex_state = 8}, - [7579] = {.lex_state = 11, .external_lex_state = 8}, - [7580] = {.lex_state = 11, .external_lex_state = 8}, - [7581] = {.lex_state = 11, .external_lex_state = 8}, - [7582] = {.lex_state = 11, .external_lex_state = 8}, - [7583] = {.lex_state = 11, .external_lex_state = 8}, - [7584] = {.lex_state = 11, .external_lex_state = 8}, - [7585] = {.lex_state = 11, .external_lex_state = 8}, - [7586] = {.lex_state = 11, .external_lex_state = 8}, - [7587] = {.lex_state = 11, .external_lex_state = 8}, - [7588] = {.lex_state = 11, .external_lex_state = 8}, - [7589] = {.lex_state = 11, .external_lex_state = 8}, - [7590] = {.lex_state = 11, .external_lex_state = 8}, - [7591] = {.lex_state = 11, .external_lex_state = 8}, - [7592] = {.lex_state = 11, .external_lex_state = 8}, - [7593] = {.lex_state = 11, .external_lex_state = 8}, - [7594] = {.lex_state = 11, .external_lex_state = 8}, - [7595] = {.lex_state = 11, .external_lex_state = 8}, - [7596] = {.lex_state = 11, .external_lex_state = 8}, - [7597] = {.lex_state = 11, .external_lex_state = 8}, - [7598] = {.lex_state = 11, .external_lex_state = 8}, - [7599] = {.lex_state = 11, .external_lex_state = 8}, - [7600] = {.lex_state = 11, .external_lex_state = 8}, - [7601] = {.lex_state = 11, .external_lex_state = 8}, - [7602] = {.lex_state = 11, .external_lex_state = 8}, - [7603] = {.lex_state = 11, .external_lex_state = 8}, - [7604] = {.lex_state = 11, .external_lex_state = 8}, - [7605] = {.lex_state = 11, .external_lex_state = 8}, - [7606] = {.lex_state = 11, .external_lex_state = 8}, - [7607] = {.lex_state = 16, .external_lex_state = 8}, - [7608] = {.lex_state = 11, .external_lex_state = 8}, - [7609] = {.lex_state = 11, .external_lex_state = 8}, - [7610] = {.lex_state = 11, .external_lex_state = 8}, - [7611] = {.lex_state = 11, .external_lex_state = 8}, - [7612] = {.lex_state = 11, .external_lex_state = 8}, - [7613] = {.lex_state = 11, .external_lex_state = 8}, - [7614] = {.lex_state = 11, .external_lex_state = 8}, - [7615] = {.lex_state = 11, .external_lex_state = 8}, - [7616] = {.lex_state = 11, .external_lex_state = 8}, - [7617] = {.lex_state = 11, .external_lex_state = 8}, - [7618] = {.lex_state = 11, .external_lex_state = 8}, - [7619] = {.lex_state = 11, .external_lex_state = 8}, - [7620] = {.lex_state = 11, .external_lex_state = 8}, - [7621] = {.lex_state = 11, .external_lex_state = 8}, - [7622] = {.lex_state = 11, .external_lex_state = 8}, - [7623] = {.lex_state = 11, .external_lex_state = 8}, - [7624] = {.lex_state = 11, .external_lex_state = 8}, - [7625] = {.lex_state = 11, .external_lex_state = 8}, - [7626] = {.lex_state = 11, .external_lex_state = 8}, - [7627] = {.lex_state = 11, .external_lex_state = 8}, - [7628] = {.lex_state = 11, .external_lex_state = 8}, - [7629] = {.lex_state = 11, .external_lex_state = 8}, - [7630] = {.lex_state = 11, .external_lex_state = 8}, - [7631] = {.lex_state = 11, .external_lex_state = 8}, - [7632] = {.lex_state = 11, .external_lex_state = 8}, - [7633] = {.lex_state = 16, .external_lex_state = 8}, - [7634] = {.lex_state = 11, .external_lex_state = 8}, - [7635] = {.lex_state = 11, .external_lex_state = 8}, - [7636] = {.lex_state = 11, .external_lex_state = 8}, - [7637] = {.lex_state = 11, .external_lex_state = 8}, - [7638] = {.lex_state = 11, .external_lex_state = 8}, - [7639] = {.lex_state = 11, .external_lex_state = 8}, - [7640] = {.lex_state = 11, .external_lex_state = 8}, - [7641] = {.lex_state = 11, .external_lex_state = 8}, - [7642] = {.lex_state = 11, .external_lex_state = 8}, - [7643] = {.lex_state = 11, .external_lex_state = 8}, - [7644] = {.lex_state = 11, .external_lex_state = 8}, - [7645] = {.lex_state = 11, .external_lex_state = 8}, - [7646] = {.lex_state = 11, .external_lex_state = 8}, - [7647] = {.lex_state = 11, .external_lex_state = 8}, - [7648] = {.lex_state = 11, .external_lex_state = 8}, - [7649] = {.lex_state = 11, .external_lex_state = 8}, - [7650] = {.lex_state = 11, .external_lex_state = 8}, - [7651] = {.lex_state = 11, .external_lex_state = 8}, - [7652] = {.lex_state = 11, .external_lex_state = 8}, - [7653] = {.lex_state = 11, .external_lex_state = 8}, - [7654] = {.lex_state = 11, .external_lex_state = 8}, - [7655] = {.lex_state = 11, .external_lex_state = 8}, - [7656] = {.lex_state = 11, .external_lex_state = 8}, - [7657] = {.lex_state = 11, .external_lex_state = 8}, - [7658] = {.lex_state = 11, .external_lex_state = 8}, - [7659] = {.lex_state = 11, .external_lex_state = 8}, - [7660] = {.lex_state = 11, .external_lex_state = 8}, - [7661] = {.lex_state = 11, .external_lex_state = 8}, - [7662] = {.lex_state = 11, .external_lex_state = 8}, - [7663] = {.lex_state = 11, .external_lex_state = 8}, - [7664] = {.lex_state = 11, .external_lex_state = 8}, - [7665] = {.lex_state = 11, .external_lex_state = 8}, - [7666] = {.lex_state = 11, .external_lex_state = 8}, - [7667] = {.lex_state = 11, .external_lex_state = 8}, - [7668] = {.lex_state = 11, .external_lex_state = 8}, - [7669] = {.lex_state = 11, .external_lex_state = 8}, - [7670] = {.lex_state = 11, .external_lex_state = 8}, - [7671] = {.lex_state = 11, .external_lex_state = 8}, - [7672] = {.lex_state = 11, .external_lex_state = 8}, - [7673] = {.lex_state = 11, .external_lex_state = 8}, - [7674] = {.lex_state = 11, .external_lex_state = 8}, - [7675] = {.lex_state = 11, .external_lex_state = 8}, - [7676] = {.lex_state = 11, .external_lex_state = 8}, - [7677] = {.lex_state = 11, .external_lex_state = 8}, - [7678] = {.lex_state = 11, .external_lex_state = 8}, - [7679] = {.lex_state = 11, .external_lex_state = 8}, - [7680] = {.lex_state = 11, .external_lex_state = 8}, - [7681] = {.lex_state = 11, .external_lex_state = 8}, - [7682] = {.lex_state = 11, .external_lex_state = 8}, - [7683] = {.lex_state = 11, .external_lex_state = 8}, - [7684] = {.lex_state = 11, .external_lex_state = 8}, - [7685] = {.lex_state = 11, .external_lex_state = 8}, - [7686] = {.lex_state = 11, .external_lex_state = 8}, - [7687] = {.lex_state = 11, .external_lex_state = 8}, - [7688] = {.lex_state = 11, .external_lex_state = 8}, - [7689] = {.lex_state = 11, .external_lex_state = 8}, - [7690] = {.lex_state = 11, .external_lex_state = 8}, - [7691] = {.lex_state = 11, .external_lex_state = 8}, - [7692] = {.lex_state = 11, .external_lex_state = 8}, - [7693] = {.lex_state = 11, .external_lex_state = 8}, - [7694] = {.lex_state = 11, .external_lex_state = 8}, - [7695] = {.lex_state = 11, .external_lex_state = 8}, - [7696] = {.lex_state = 11, .external_lex_state = 8}, - [7697] = {.lex_state = 11, .external_lex_state = 8}, - [7698] = {.lex_state = 11, .external_lex_state = 8}, - [7699] = {.lex_state = 11, .external_lex_state = 8}, - [7700] = {.lex_state = 11, .external_lex_state = 8}, - [7701] = {.lex_state = 11, .external_lex_state = 8}, - [7702] = {.lex_state = 11, .external_lex_state = 8}, - [7703] = {.lex_state = 11, .external_lex_state = 8}, - [7704] = {.lex_state = 11, .external_lex_state = 8}, - [7705] = {.lex_state = 11, .external_lex_state = 8}, - [7706] = {.lex_state = 11, .external_lex_state = 8}, - [7707] = {.lex_state = 11, .external_lex_state = 8}, - [7708] = {.lex_state = 11, .external_lex_state = 8}, - [7709] = {.lex_state = 11, .external_lex_state = 8}, - [7710] = {.lex_state = 11, .external_lex_state = 8}, - [7711] = {.lex_state = 11, .external_lex_state = 8}, - [7712] = {.lex_state = 11, .external_lex_state = 8}, - [7713] = {.lex_state = 11, .external_lex_state = 8}, - [7714] = {.lex_state = 11, .external_lex_state = 8}, - [7715] = {.lex_state = 11, .external_lex_state = 8}, - [7716] = {.lex_state = 11, .external_lex_state = 8}, - [7717] = {.lex_state = 11, .external_lex_state = 8}, - [7718] = {.lex_state = 11, .external_lex_state = 8}, - [7719] = {.lex_state = 11, .external_lex_state = 8}, - [7720] = {.lex_state = 11, .external_lex_state = 8}, - [7721] = {.lex_state = 11, .external_lex_state = 8}, - [7722] = {.lex_state = 11, .external_lex_state = 8}, - [7723] = {.lex_state = 11, .external_lex_state = 8}, - [7724] = {.lex_state = 11, .external_lex_state = 8}, - [7725] = {.lex_state = 11, .external_lex_state = 8}, - [7726] = {.lex_state = 11, .external_lex_state = 8}, - [7727] = {.lex_state = 11, .external_lex_state = 8}, - [7728] = {.lex_state = 11, .external_lex_state = 8}, - [7729] = {.lex_state = 11, .external_lex_state = 8}, - [7730] = {.lex_state = 11, .external_lex_state = 8}, - [7731] = {.lex_state = 11, .external_lex_state = 8}, - [7732] = {.lex_state = 11, .external_lex_state = 8}, - [7733] = {.lex_state = 11, .external_lex_state = 8}, - [7734] = {.lex_state = 11, .external_lex_state = 8}, - [7735] = {.lex_state = 11, .external_lex_state = 8}, - [7736] = {.lex_state = 11, .external_lex_state = 8}, - [7737] = {.lex_state = 11, .external_lex_state = 8}, - [7738] = {.lex_state = 11, .external_lex_state = 8}, - [7739] = {.lex_state = 11, .external_lex_state = 8}, - [7740] = {.lex_state = 11, .external_lex_state = 8}, - [7741] = {.lex_state = 11, .external_lex_state = 8}, - [7742] = {.lex_state = 11, .external_lex_state = 8}, - [7743] = {.lex_state = 11, .external_lex_state = 8}, - [7744] = {.lex_state = 11, .external_lex_state = 8}, - [7745] = {.lex_state = 11, .external_lex_state = 8}, - [7746] = {.lex_state = 11, .external_lex_state = 8}, - [7747] = {.lex_state = 11, .external_lex_state = 8}, - [7748] = {.lex_state = 11, .external_lex_state = 8}, - [7749] = {.lex_state = 11, .external_lex_state = 8}, - [7750] = {.lex_state = 11, .external_lex_state = 8}, - [7751] = {.lex_state = 11, .external_lex_state = 8}, - [7752] = {.lex_state = 11, .external_lex_state = 8}, - [7753] = {.lex_state = 11, .external_lex_state = 8}, - [7754] = {.lex_state = 11, .external_lex_state = 8}, - [7755] = {.lex_state = 11, .external_lex_state = 8}, - [7756] = {.lex_state = 11, .external_lex_state = 8}, - [7757] = {.lex_state = 11, .external_lex_state = 8}, - [7758] = {.lex_state = 11, .external_lex_state = 8}, - [7759] = {.lex_state = 11, .external_lex_state = 8}, - [7760] = {.lex_state = 11, .external_lex_state = 8}, - [7761] = {.lex_state = 11, .external_lex_state = 8}, - [7762] = {.lex_state = 11, .external_lex_state = 8}, - [7763] = {.lex_state = 11, .external_lex_state = 8}, - [7764] = {.lex_state = 11, .external_lex_state = 8}, - [7765] = {.lex_state = 16, .external_lex_state = 8}, - [7766] = {.lex_state = 11, .external_lex_state = 8}, - [7767] = {.lex_state = 11, .external_lex_state = 8}, - [7768] = {.lex_state = 11, .external_lex_state = 8}, - [7769] = {.lex_state = 11, .external_lex_state = 8}, - [7770] = {.lex_state = 11, .external_lex_state = 8}, - [7771] = {.lex_state = 11, .external_lex_state = 8}, - [7772] = {.lex_state = 11, .external_lex_state = 8}, - [7773] = {.lex_state = 11, .external_lex_state = 8}, - [7774] = {.lex_state = 11, .external_lex_state = 8}, - [7775] = {.lex_state = 11, .external_lex_state = 8}, - [7776] = {.lex_state = 11, .external_lex_state = 8}, - [7777] = {.lex_state = 18, .external_lex_state = 8}, - [7778] = {.lex_state = 16, .external_lex_state = 8}, - [7779] = {.lex_state = 18, .external_lex_state = 8}, - [7780] = {.lex_state = 16, .external_lex_state = 8}, - [7781] = {.lex_state = 18, .external_lex_state = 8}, - [7782] = {.lex_state = 18, .external_lex_state = 8}, - [7783] = {.lex_state = 16, .external_lex_state = 8}, - [7784] = {.lex_state = 16, .external_lex_state = 8}, - [7785] = {.lex_state = 18, .external_lex_state = 8}, - [7786] = {.lex_state = 18, .external_lex_state = 8}, - [7787] = {.lex_state = 11, .external_lex_state = 8}, - [7788] = {.lex_state = 11, .external_lex_state = 8}, - [7789] = {.lex_state = 16, .external_lex_state = 8}, - [7790] = {.lex_state = 18, .external_lex_state = 8}, - [7791] = {.lex_state = 16, .external_lex_state = 8}, - [7792] = {.lex_state = 18, .external_lex_state = 8}, - [7793] = {.lex_state = 11, .external_lex_state = 8}, - [7794] = {.lex_state = 18, .external_lex_state = 8}, - [7795] = {.lex_state = 16, .external_lex_state = 8}, - [7796] = {.lex_state = 16, .external_lex_state = 8}, - [7797] = {.lex_state = 18, .external_lex_state = 8}, - [7798] = {.lex_state = 18, .external_lex_state = 8}, - [7799] = {.lex_state = 11, .external_lex_state = 8}, - [7800] = {.lex_state = 16, .external_lex_state = 8}, - [7801] = {.lex_state = 16, .external_lex_state = 8}, - [7802] = {.lex_state = 11, .external_lex_state = 8}, - [7803] = {.lex_state = 11, .external_lex_state = 8}, - [7804] = {.lex_state = 11, .external_lex_state = 8}, - [7805] = {.lex_state = 11, .external_lex_state = 8}, - [7806] = {.lex_state = 11, .external_lex_state = 8}, - [7807] = {.lex_state = 11, .external_lex_state = 8}, - [7808] = {.lex_state = 11, .external_lex_state = 8}, - [7809] = {.lex_state = 11, .external_lex_state = 8}, - [7810] = {.lex_state = 11, .external_lex_state = 8}, - [7811] = {.lex_state = 11, .external_lex_state = 8}, - [7812] = {.lex_state = 11, .external_lex_state = 8}, - [7813] = {.lex_state = 11, .external_lex_state = 8}, - [7814] = {.lex_state = 11, .external_lex_state = 8}, - [7815] = {.lex_state = 11, .external_lex_state = 8}, - [7816] = {.lex_state = 11, .external_lex_state = 8}, - [7817] = {.lex_state = 11, .external_lex_state = 8}, - [7818] = {.lex_state = 11, .external_lex_state = 8}, - [7819] = {.lex_state = 11, .external_lex_state = 8}, - [7820] = {.lex_state = 11, .external_lex_state = 8}, - [7821] = {.lex_state = 11, .external_lex_state = 8}, - [7822] = {.lex_state = 11, .external_lex_state = 8}, - [7823] = {.lex_state = 11, .external_lex_state = 8}, - [7824] = {.lex_state = 11, .external_lex_state = 8}, - [7825] = {.lex_state = 11, .external_lex_state = 8}, - [7826] = {.lex_state = 11, .external_lex_state = 8}, - [7827] = {.lex_state = 11, .external_lex_state = 8}, - [7828] = {.lex_state = 11, .external_lex_state = 8}, - [7829] = {.lex_state = 11, .external_lex_state = 8}, - [7830] = {.lex_state = 11, .external_lex_state = 8}, - [7831] = {.lex_state = 11, .external_lex_state = 8}, - [7832] = {.lex_state = 11, .external_lex_state = 8}, - [7833] = {.lex_state = 11, .external_lex_state = 8}, - [7834] = {.lex_state = 11, .external_lex_state = 8}, - [7835] = {.lex_state = 11, .external_lex_state = 8}, - [7836] = {.lex_state = 11, .external_lex_state = 8}, - [7837] = {.lex_state = 11, .external_lex_state = 8}, - [7838] = {.lex_state = 11, .external_lex_state = 8}, - [7839] = {.lex_state = 11, .external_lex_state = 8}, - [7840] = {.lex_state = 11, .external_lex_state = 8}, - [7841] = {.lex_state = 11, .external_lex_state = 8}, - [7842] = {.lex_state = 11, .external_lex_state = 8}, - [7843] = {.lex_state = 11, .external_lex_state = 8}, - [7844] = {.lex_state = 11, .external_lex_state = 8}, - [7845] = {.lex_state = 11, .external_lex_state = 8}, - [7846] = {.lex_state = 11, .external_lex_state = 8}, - [7847] = {.lex_state = 11, .external_lex_state = 8}, - [7848] = {.lex_state = 11, .external_lex_state = 8}, - [7849] = {.lex_state = 11, .external_lex_state = 8}, - [7850] = {.lex_state = 11, .external_lex_state = 8}, - [7851] = {.lex_state = 11, .external_lex_state = 8}, - [7852] = {.lex_state = 11, .external_lex_state = 8}, - [7853] = {.lex_state = 11, .external_lex_state = 8}, - [7854] = {.lex_state = 11, .external_lex_state = 8}, - [7855] = {.lex_state = 11, .external_lex_state = 8}, - [7856] = {.lex_state = 11, .external_lex_state = 8}, - [7857] = {.lex_state = 11, .external_lex_state = 8}, - [7858] = {.lex_state = 11, .external_lex_state = 8}, - [7859] = {.lex_state = 11, .external_lex_state = 8}, - [7860] = {.lex_state = 11, .external_lex_state = 8}, - [7861] = {.lex_state = 11, .external_lex_state = 8}, - [7862] = {.lex_state = 11, .external_lex_state = 8}, - [7863] = {.lex_state = 14, .external_lex_state = 9}, - [7864] = {.lex_state = 11, .external_lex_state = 8}, - [7865] = {.lex_state = 11, .external_lex_state = 8}, - [7866] = {.lex_state = 11, .external_lex_state = 8}, - [7867] = {.lex_state = 11, .external_lex_state = 8}, - [7868] = {.lex_state = 11, .external_lex_state = 8}, - [7869] = {.lex_state = 11, .external_lex_state = 8}, - [7870] = {.lex_state = 11, .external_lex_state = 8}, - [7871] = {.lex_state = 11, .external_lex_state = 8}, - [7872] = {.lex_state = 11, .external_lex_state = 8}, - [7873] = {.lex_state = 11, .external_lex_state = 8}, - [7874] = {.lex_state = 11, .external_lex_state = 8}, - [7875] = {.lex_state = 11, .external_lex_state = 8}, - [7876] = {.lex_state = 11, .external_lex_state = 8}, - [7877] = {.lex_state = 11, .external_lex_state = 8}, - [7878] = {.lex_state = 11, .external_lex_state = 8}, - [7879] = {.lex_state = 11, .external_lex_state = 8}, - [7880] = {.lex_state = 11, .external_lex_state = 8}, - [7881] = {.lex_state = 11, .external_lex_state = 8}, - [7882] = {.lex_state = 14, .external_lex_state = 9}, - [7883] = {.lex_state = 11, .external_lex_state = 8}, - [7884] = {.lex_state = 11, .external_lex_state = 8}, - [7885] = {.lex_state = 22, .external_lex_state = 8}, - [7886] = {.lex_state = 11, .external_lex_state = 8}, - [7887] = {.lex_state = 11, .external_lex_state = 8}, - [7888] = {.lex_state = 11, .external_lex_state = 8}, - [7889] = {.lex_state = 11, .external_lex_state = 8}, - [7890] = {.lex_state = 11, .external_lex_state = 8}, - [7891] = {.lex_state = 11, .external_lex_state = 8}, - [7892] = {.lex_state = 11, .external_lex_state = 8}, - [7893] = {.lex_state = 11, .external_lex_state = 8}, - [7894] = {.lex_state = 11, .external_lex_state = 8}, - [7895] = {.lex_state = 11, .external_lex_state = 8}, - [7896] = {.lex_state = 11, .external_lex_state = 8}, - [7897] = {.lex_state = 11, .external_lex_state = 8}, - [7898] = {.lex_state = 11, .external_lex_state = 8}, - [7899] = {.lex_state = 11, .external_lex_state = 8}, - [7900] = {.lex_state = 11, .external_lex_state = 8}, - [7901] = {.lex_state = 11, .external_lex_state = 8}, - [7902] = {.lex_state = 11, .external_lex_state = 8}, - [7903] = {.lex_state = 11, .external_lex_state = 8}, - [7904] = {.lex_state = 11, .external_lex_state = 8}, - [7905] = {.lex_state = 11, .external_lex_state = 8}, - [7906] = {.lex_state = 11, .external_lex_state = 8}, - [7907] = {.lex_state = 11, .external_lex_state = 8}, - [7908] = {.lex_state = 11, .external_lex_state = 8}, - [7909] = {.lex_state = 11, .external_lex_state = 8}, - [7910] = {.lex_state = 11, .external_lex_state = 8}, - [7911] = {.lex_state = 11, .external_lex_state = 8}, - [7912] = {.lex_state = 11, .external_lex_state = 8}, - [7913] = {.lex_state = 11, .external_lex_state = 8}, - [7914] = {.lex_state = 11, .external_lex_state = 8}, - [7915] = {.lex_state = 11, .external_lex_state = 8}, - [7916] = {.lex_state = 11, .external_lex_state = 8}, - [7917] = {.lex_state = 11, .external_lex_state = 8}, - [7918] = {.lex_state = 11, .external_lex_state = 8}, - [7919] = {.lex_state = 11, .external_lex_state = 8}, - [7920] = {.lex_state = 11, .external_lex_state = 8}, - [7921] = {.lex_state = 11, .external_lex_state = 8}, - [7922] = {.lex_state = 11, .external_lex_state = 8}, - [7923] = {.lex_state = 11, .external_lex_state = 8}, - [7924] = {.lex_state = 11, .external_lex_state = 8}, - [7925] = {.lex_state = 11, .external_lex_state = 8}, - [7926] = {.lex_state = 11, .external_lex_state = 8}, - [7927] = {.lex_state = 11, .external_lex_state = 8}, - [7928] = {.lex_state = 11, .external_lex_state = 8}, - [7929] = {.lex_state = 11, .external_lex_state = 8}, - [7930] = {.lex_state = 11, .external_lex_state = 8}, - [7931] = {.lex_state = 11, .external_lex_state = 8}, - [7932] = {.lex_state = 11, .external_lex_state = 8}, - [7933] = {.lex_state = 11, .external_lex_state = 8}, - [7934] = {.lex_state = 11, .external_lex_state = 8}, - [7935] = {.lex_state = 11, .external_lex_state = 8}, - [7936] = {.lex_state = 11, .external_lex_state = 8}, - [7937] = {.lex_state = 11, .external_lex_state = 8}, - [7938] = {.lex_state = 11, .external_lex_state = 8}, - [7939] = {.lex_state = 11, .external_lex_state = 8}, - [7940] = {.lex_state = 11, .external_lex_state = 8}, - [7941] = {.lex_state = 11, .external_lex_state = 8}, - [7942] = {.lex_state = 11, .external_lex_state = 8}, - [7943] = {.lex_state = 11, .external_lex_state = 8}, - [7944] = {.lex_state = 11, .external_lex_state = 8}, - [7945] = {.lex_state = 11, .external_lex_state = 8}, - [7946] = {.lex_state = 11, .external_lex_state = 8}, - [7947] = {.lex_state = 11, .external_lex_state = 8}, - [7948] = {.lex_state = 11, .external_lex_state = 8}, - [7949] = {.lex_state = 11, .external_lex_state = 8}, - [7950] = {.lex_state = 11, .external_lex_state = 8}, - [7951] = {.lex_state = 11, .external_lex_state = 8}, - [7952] = {.lex_state = 14, .external_lex_state = 8}, - [7953] = {.lex_state = 11, .external_lex_state = 8}, - [7954] = {.lex_state = 11, .external_lex_state = 8}, - [7955] = {.lex_state = 11, .external_lex_state = 8}, - [7956] = {.lex_state = 11, .external_lex_state = 8}, - [7957] = {.lex_state = 11, .external_lex_state = 8}, - [7958] = {.lex_state = 11, .external_lex_state = 8}, - [7959] = {.lex_state = 11, .external_lex_state = 8}, - [7960] = {.lex_state = 11, .external_lex_state = 8}, - [7961] = {.lex_state = 11, .external_lex_state = 8}, - [7962] = {.lex_state = 14, .external_lex_state = 9}, - [7963] = {.lex_state = 11, .external_lex_state = 8}, - [7964] = {.lex_state = 11, .external_lex_state = 8}, - [7965] = {.lex_state = 9, .external_lex_state = 8}, - [7966] = {.lex_state = 11, .external_lex_state = 8}, - [7967] = {.lex_state = 11, .external_lex_state = 8}, - [7968] = {.lex_state = 11, .external_lex_state = 8}, - [7969] = {.lex_state = 11, .external_lex_state = 8}, - [7970] = {.lex_state = 11, .external_lex_state = 8}, - [7971] = {.lex_state = 11, .external_lex_state = 8}, - [7972] = {.lex_state = 11, .external_lex_state = 8}, - [7973] = {.lex_state = 11, .external_lex_state = 8}, - [7974] = {.lex_state = 11, .external_lex_state = 8}, - [7975] = {.lex_state = 11, .external_lex_state = 8}, - [7976] = {.lex_state = 11, .external_lex_state = 8}, - [7977] = {.lex_state = 11, .external_lex_state = 8}, - [7978] = {.lex_state = 11, .external_lex_state = 8}, - [7979] = {.lex_state = 11, .external_lex_state = 8}, - [7980] = {.lex_state = 11, .external_lex_state = 8}, - [7981] = {.lex_state = 11, .external_lex_state = 8}, - [7982] = {.lex_state = 11, .external_lex_state = 8}, - [7983] = {.lex_state = 11, .external_lex_state = 8}, - [7984] = {.lex_state = 11, .external_lex_state = 8}, - [7985] = {.lex_state = 11, .external_lex_state = 8}, - [7986] = {.lex_state = 11, .external_lex_state = 8}, - [7987] = {.lex_state = 11, .external_lex_state = 8}, - [7988] = {.lex_state = 14, .external_lex_state = 8}, - [7989] = {.lex_state = 11, .external_lex_state = 8}, - [7990] = {.lex_state = 11, .external_lex_state = 8}, - [7991] = {.lex_state = 11, .external_lex_state = 8}, - [7992] = {.lex_state = 11, .external_lex_state = 8}, - [7993] = {.lex_state = 11, .external_lex_state = 8}, - [7994] = {.lex_state = 11, .external_lex_state = 8}, - [7995] = {.lex_state = 11, .external_lex_state = 8}, - [7996] = {.lex_state = 11, .external_lex_state = 8}, - [7997] = {.lex_state = 11, .external_lex_state = 8}, - [7998] = {.lex_state = 11, .external_lex_state = 8}, - [7999] = {.lex_state = 11, .external_lex_state = 8}, - [8000] = {.lex_state = 11, .external_lex_state = 8}, - [8001] = {.lex_state = 11, .external_lex_state = 8}, - [8002] = {.lex_state = 11, .external_lex_state = 8}, - [8003] = {.lex_state = 11, .external_lex_state = 8}, - [8004] = {.lex_state = 11, .external_lex_state = 8}, - [8005] = {.lex_state = 9, .external_lex_state = 8}, - [8006] = {.lex_state = 11, .external_lex_state = 8}, - [8007] = {.lex_state = 11, .external_lex_state = 8}, - [8008] = {.lex_state = 11, .external_lex_state = 8}, - [8009] = {.lex_state = 11, .external_lex_state = 8}, - [8010] = {.lex_state = 11, .external_lex_state = 8}, - [8011] = {.lex_state = 11, .external_lex_state = 8}, - [8012] = {.lex_state = 11, .external_lex_state = 8}, - [8013] = {.lex_state = 11, .external_lex_state = 8}, - [8014] = {.lex_state = 9, .external_lex_state = 8}, - [8015] = {.lex_state = 11, .external_lex_state = 8}, - [8016] = {.lex_state = 11, .external_lex_state = 8}, - [8017] = {.lex_state = 11, .external_lex_state = 8}, - [8018] = {.lex_state = 11, .external_lex_state = 8}, - [8019] = {.lex_state = 14, .external_lex_state = 8}, - [8020] = {.lex_state = 11, .external_lex_state = 8}, - [8021] = {.lex_state = 11, .external_lex_state = 8}, - [8022] = {.lex_state = 14, .external_lex_state = 8}, - [8023] = {.lex_state = 11, .external_lex_state = 8}, - [8024] = {.lex_state = 11, .external_lex_state = 8}, - [8025] = {.lex_state = 11, .external_lex_state = 8}, - [8026] = {.lex_state = 11, .external_lex_state = 8}, - [8027] = {.lex_state = 11, .external_lex_state = 8}, - [8028] = {.lex_state = 11, .external_lex_state = 8}, - [8029] = {.lex_state = 11, .external_lex_state = 8}, - [8030] = {.lex_state = 11, .external_lex_state = 8}, - [8031] = {.lex_state = 11, .external_lex_state = 8}, - [8032] = {.lex_state = 11, .external_lex_state = 8}, - [8033] = {.lex_state = 11, .external_lex_state = 8}, - [8034] = {.lex_state = 11, .external_lex_state = 8}, - [8035] = {.lex_state = 11, .external_lex_state = 8}, - [8036] = {.lex_state = 11, .external_lex_state = 8}, - [8037] = {.lex_state = 11, .external_lex_state = 8}, - [8038] = {.lex_state = 11, .external_lex_state = 8}, - [8039] = {.lex_state = 11, .external_lex_state = 8}, - [8040] = {.lex_state = 11, .external_lex_state = 8}, - [8041] = {.lex_state = 11, .external_lex_state = 8}, - [8042] = {.lex_state = 11, .external_lex_state = 8}, - [8043] = {.lex_state = 11, .external_lex_state = 8}, - [8044] = {.lex_state = 11, .external_lex_state = 8}, - [8045] = {.lex_state = 11, .external_lex_state = 8}, - [8046] = {.lex_state = 11, .external_lex_state = 8}, - [8047] = {.lex_state = 11, .external_lex_state = 8}, - [8048] = {.lex_state = 11, .external_lex_state = 8}, - [8049] = {.lex_state = 11, .external_lex_state = 8}, - [8050] = {.lex_state = 11, .external_lex_state = 8}, - [8051] = {.lex_state = 11, .external_lex_state = 8}, - [8052] = {.lex_state = 11, .external_lex_state = 8}, - [8053] = {.lex_state = 11, .external_lex_state = 8}, - [8054] = {.lex_state = 11, .external_lex_state = 8}, - [8055] = {.lex_state = 11, .external_lex_state = 8}, - [8056] = {.lex_state = 11, .external_lex_state = 8}, - [8057] = {.lex_state = 11, .external_lex_state = 8}, - [8058] = {.lex_state = 11, .external_lex_state = 8}, - [8059] = {.lex_state = 11, .external_lex_state = 8}, - [8060] = {.lex_state = 11, .external_lex_state = 8}, - [8061] = {.lex_state = 14, .external_lex_state = 8}, - [8062] = {.lex_state = 11, .external_lex_state = 8}, - [8063] = {.lex_state = 11, .external_lex_state = 8}, - [8064] = {.lex_state = 11, .external_lex_state = 8}, - [8065] = {.lex_state = 11, .external_lex_state = 8}, - [8066] = {.lex_state = 11, .external_lex_state = 8}, - [8067] = {.lex_state = 11, .external_lex_state = 8}, - [8068] = {.lex_state = 11, .external_lex_state = 8}, - [8069] = {.lex_state = 11, .external_lex_state = 8}, - [8070] = {.lex_state = 11, .external_lex_state = 8}, - [8071] = {.lex_state = 14, .external_lex_state = 8}, - [8072] = {.lex_state = 11, .external_lex_state = 8}, - [8073] = {.lex_state = 11, .external_lex_state = 8}, - [8074] = {.lex_state = 11, .external_lex_state = 8}, - [8075] = {.lex_state = 11, .external_lex_state = 8}, - [8076] = {.lex_state = 11, .external_lex_state = 8}, - [8077] = {.lex_state = 11, .external_lex_state = 8}, - [8078] = {.lex_state = 11, .external_lex_state = 8}, - [8079] = {.lex_state = 11, .external_lex_state = 8}, - [8080] = {.lex_state = 11, .external_lex_state = 8}, - [8081] = {.lex_state = 11, .external_lex_state = 8}, - [8082] = {.lex_state = 11, .external_lex_state = 8}, - [8083] = {.lex_state = 11, .external_lex_state = 8}, - [8084] = {.lex_state = 11, .external_lex_state = 8}, - [8085] = {.lex_state = 11, .external_lex_state = 8}, - [8086] = {.lex_state = 11, .external_lex_state = 8}, - [8087] = {.lex_state = 11, .external_lex_state = 8}, - [8088] = {.lex_state = 11, .external_lex_state = 8}, - [8089] = {.lex_state = 11, .external_lex_state = 8}, - [8090] = {.lex_state = 11, .external_lex_state = 8}, - [8091] = {.lex_state = 11, .external_lex_state = 8}, - [8092] = {.lex_state = 11, .external_lex_state = 8}, - [8093] = {.lex_state = 11, .external_lex_state = 8}, - [8094] = {.lex_state = 11, .external_lex_state = 8}, - [8095] = {.lex_state = 11, .external_lex_state = 8}, - [8096] = {.lex_state = 11, .external_lex_state = 8}, - [8097] = {.lex_state = 11, .external_lex_state = 8}, - [8098] = {.lex_state = 11, .external_lex_state = 8}, - [8099] = {.lex_state = 11, .external_lex_state = 8}, - [8100] = {.lex_state = 11, .external_lex_state = 8}, - [8101] = {.lex_state = 11, .external_lex_state = 8}, - [8102] = {.lex_state = 11, .external_lex_state = 8}, - [8103] = {.lex_state = 11, .external_lex_state = 8}, - [8104] = {.lex_state = 11, .external_lex_state = 8}, - [8105] = {.lex_state = 11, .external_lex_state = 8}, - [8106] = {.lex_state = 11, .external_lex_state = 8}, - [8107] = {.lex_state = 11, .external_lex_state = 8}, - [8108] = {.lex_state = 11, .external_lex_state = 8}, - [8109] = {.lex_state = 11, .external_lex_state = 8}, - [8110] = {.lex_state = 11, .external_lex_state = 8}, - [8111] = {.lex_state = 11, .external_lex_state = 8}, - [8112] = {.lex_state = 11, .external_lex_state = 8}, - [8113] = {.lex_state = 11, .external_lex_state = 8}, - [8114] = {.lex_state = 11, .external_lex_state = 8}, - [8115] = {.lex_state = 11, .external_lex_state = 8}, - [8116] = {.lex_state = 11, .external_lex_state = 8}, - [8117] = {.lex_state = 11, .external_lex_state = 8}, - [8118] = {.lex_state = 11, .external_lex_state = 8}, - [8119] = {.lex_state = 11, .external_lex_state = 8}, - [8120] = {.lex_state = 11, .external_lex_state = 8}, - [8121] = {.lex_state = 11, .external_lex_state = 8}, - [8122] = {.lex_state = 11, .external_lex_state = 8}, - [8123] = {.lex_state = 11, .external_lex_state = 8}, - [8124] = {.lex_state = 11, .external_lex_state = 8}, - [8125] = {.lex_state = 11, .external_lex_state = 8}, - [8126] = {.lex_state = 11, .external_lex_state = 8}, - [8127] = {.lex_state = 11, .external_lex_state = 8}, - [8128] = {.lex_state = 11, .external_lex_state = 8}, - [8129] = {.lex_state = 11, .external_lex_state = 8}, - [8130] = {.lex_state = 11, .external_lex_state = 8}, - [8131] = {.lex_state = 11, .external_lex_state = 8}, - [8132] = {.lex_state = 11, .external_lex_state = 8}, - [8133] = {.lex_state = 11, .external_lex_state = 8}, - [8134] = {.lex_state = 11, .external_lex_state = 8}, - [8135] = {.lex_state = 11, .external_lex_state = 8}, - [8136] = {.lex_state = 11, .external_lex_state = 8}, - [8137] = {.lex_state = 9, .external_lex_state = 8}, - [8138] = {.lex_state = 11, .external_lex_state = 8}, - [8139] = {.lex_state = 11, .external_lex_state = 8}, - [8140] = {.lex_state = 11, .external_lex_state = 8}, - [8141] = {.lex_state = 11, .external_lex_state = 8}, - [8142] = {.lex_state = 11, .external_lex_state = 8}, - [8143] = {.lex_state = 11, .external_lex_state = 8}, - [8144] = {.lex_state = 11, .external_lex_state = 8}, - [8145] = {.lex_state = 11, .external_lex_state = 8}, - [8146] = {.lex_state = 11, .external_lex_state = 8}, - [8147] = {.lex_state = 11, .external_lex_state = 8}, - [8148] = {.lex_state = 11, .external_lex_state = 8}, - [8149] = {.lex_state = 11, .external_lex_state = 8}, - [8150] = {.lex_state = 11, .external_lex_state = 8}, - [8151] = {.lex_state = 11, .external_lex_state = 8}, - [8152] = {.lex_state = 11, .external_lex_state = 8}, - [8153] = {.lex_state = 11, .external_lex_state = 8}, - [8154] = {.lex_state = 11, .external_lex_state = 8}, - [8155] = {.lex_state = 11, .external_lex_state = 8}, - [8156] = {.lex_state = 11, .external_lex_state = 8}, - [8157] = {.lex_state = 11, .external_lex_state = 8}, - [8158] = {.lex_state = 11, .external_lex_state = 8}, - [8159] = {.lex_state = 11, .external_lex_state = 8}, - [8160] = {.lex_state = 11, .external_lex_state = 8}, - [8161] = {.lex_state = 11, .external_lex_state = 8}, - [8162] = {.lex_state = 11, .external_lex_state = 8}, - [8163] = {.lex_state = 11, .external_lex_state = 8}, - [8164] = {.lex_state = 11, .external_lex_state = 8}, - [8165] = {.lex_state = 11, .external_lex_state = 8}, - [8166] = {.lex_state = 11, .external_lex_state = 8}, - [8167] = {.lex_state = 11, .external_lex_state = 8}, - [8168] = {.lex_state = 11, .external_lex_state = 8}, - [8169] = {.lex_state = 11, .external_lex_state = 8}, - [8170] = {.lex_state = 11, .external_lex_state = 8}, - [8171] = {.lex_state = 11, .external_lex_state = 8}, - [8172] = {.lex_state = 11, .external_lex_state = 8}, - [8173] = {.lex_state = 11, .external_lex_state = 8}, - [8174] = {.lex_state = 11, .external_lex_state = 8}, - [8175] = {.lex_state = 11, .external_lex_state = 8}, - [8176] = {.lex_state = 11, .external_lex_state = 8}, - [8177] = {.lex_state = 11, .external_lex_state = 8}, - [8178] = {.lex_state = 11, .external_lex_state = 8}, - [8179] = {.lex_state = 11, .external_lex_state = 8}, - [8180] = {.lex_state = 11, .external_lex_state = 8}, - [8181] = {.lex_state = 11, .external_lex_state = 8}, - [8182] = {.lex_state = 11, .external_lex_state = 8}, - [8183] = {.lex_state = 14, .external_lex_state = 8}, - [8184] = {.lex_state = 11, .external_lex_state = 8}, - [8185] = {.lex_state = 11, .external_lex_state = 8}, - [8186] = {.lex_state = 11, .external_lex_state = 8}, - [8187] = {.lex_state = 11, .external_lex_state = 8}, - [8188] = {.lex_state = 11, .external_lex_state = 8}, - [8189] = {.lex_state = 11, .external_lex_state = 8}, - [8190] = {.lex_state = 11, .external_lex_state = 8}, - [8191] = {.lex_state = 11, .external_lex_state = 8}, - [8192] = {.lex_state = 11, .external_lex_state = 8}, - [8193] = {.lex_state = 11, .external_lex_state = 8}, - [8194] = {.lex_state = 11, .external_lex_state = 8}, - [8195] = {.lex_state = 14, .external_lex_state = 8}, - [8196] = {.lex_state = 11, .external_lex_state = 8}, - [8197] = {.lex_state = 11, .external_lex_state = 8}, - [8198] = {.lex_state = 11, .external_lex_state = 8}, - [8199] = {.lex_state = 11, .external_lex_state = 8}, - [8200] = {.lex_state = 11, .external_lex_state = 8}, - [8201] = {.lex_state = 14, .external_lex_state = 8}, - [8202] = {.lex_state = 11, .external_lex_state = 8}, - [8203] = {.lex_state = 11, .external_lex_state = 8}, - [8204] = {.lex_state = 11, .external_lex_state = 8}, - [8205] = {.lex_state = 11, .external_lex_state = 8}, - [8206] = {.lex_state = 11, .external_lex_state = 8}, - [8207] = {.lex_state = 11, .external_lex_state = 8}, - [8208] = {.lex_state = 11, .external_lex_state = 8}, - [8209] = {.lex_state = 9, .external_lex_state = 8}, - [8210] = {.lex_state = 11, .external_lex_state = 8}, - [8211] = {.lex_state = 11, .external_lex_state = 8}, - [8212] = {.lex_state = 9, .external_lex_state = 8}, - [8213] = {.lex_state = 11, .external_lex_state = 8}, - [8214] = {.lex_state = 11, .external_lex_state = 8}, - [8215] = {.lex_state = 11, .external_lex_state = 8}, - [8216] = {.lex_state = 11, .external_lex_state = 8}, - [8217] = {.lex_state = 11, .external_lex_state = 8}, - [8218] = {.lex_state = 11, .external_lex_state = 8}, - [8219] = {.lex_state = 11, .external_lex_state = 8}, - [8220] = {.lex_state = 11, .external_lex_state = 8}, - [8221] = {.lex_state = 14, .external_lex_state = 8}, - [8222] = {.lex_state = 14, .external_lex_state = 8}, - [8223] = {.lex_state = 22, .external_lex_state = 8}, - [8224] = {.lex_state = 22, .external_lex_state = 8}, - [8225] = {.lex_state = 22, .external_lex_state = 8}, - [8226] = {.lex_state = 11, .external_lex_state = 8}, - [8227] = {.lex_state = 22, .external_lex_state = 8}, - [8228] = {.lex_state = 22, .external_lex_state = 8}, - [8229] = {.lex_state = 22, .external_lex_state = 8}, - [8230] = {.lex_state = 14, .external_lex_state = 8}, - [8231] = {.lex_state = 14, .external_lex_state = 9}, - [8232] = {.lex_state = 22, .external_lex_state = 8}, - [8233] = {.lex_state = 22, .external_lex_state = 8}, - [8234] = {.lex_state = 22, .external_lex_state = 8}, - [8235] = {.lex_state = 14, .external_lex_state = 8}, - [8236] = {.lex_state = 22, .external_lex_state = 8}, - [8237] = {.lex_state = 14, .external_lex_state = 8}, - [8238] = {.lex_state = 22, .external_lex_state = 8}, - [8239] = {.lex_state = 22, .external_lex_state = 8}, - [8240] = {.lex_state = 22, .external_lex_state = 8}, - [8241] = {.lex_state = 22, .external_lex_state = 8}, - [8242] = {.lex_state = 14, .external_lex_state = 8}, - [8243] = {.lex_state = 22, .external_lex_state = 8}, - [8244] = {.lex_state = 22, .external_lex_state = 8}, - [8245] = {.lex_state = 22, .external_lex_state = 8}, - [8246] = {.lex_state = 14, .external_lex_state = 8}, - [8247] = {.lex_state = 14, .external_lex_state = 8}, - [8248] = {.lex_state = 22, .external_lex_state = 8}, - [8249] = {.lex_state = 22, .external_lex_state = 8}, - [8250] = {.lex_state = 22, .external_lex_state = 8}, - [8251] = {.lex_state = 14, .external_lex_state = 8}, - [8252] = {.lex_state = 22, .external_lex_state = 8}, - [8253] = {.lex_state = 22, .external_lex_state = 8}, - [8254] = {.lex_state = 22, .external_lex_state = 8}, - [8255] = {.lex_state = 22, .external_lex_state = 8}, - [8256] = {.lex_state = 22, .external_lex_state = 8}, - [8257] = {.lex_state = 22, .external_lex_state = 8}, - [8258] = {.lex_state = 22, .external_lex_state = 8}, - [8259] = {.lex_state = 14, .external_lex_state = 8}, - [8260] = {.lex_state = 14, .external_lex_state = 9}, - [8261] = {.lex_state = 14, .external_lex_state = 8}, - [8262] = {.lex_state = 14, .external_lex_state = 9}, - [8263] = {.lex_state = 14, .external_lex_state = 9}, - [8264] = {.lex_state = 14, .external_lex_state = 9}, - [8265] = {.lex_state = 14, .external_lex_state = 9}, - [8266] = {.lex_state = 14, .external_lex_state = 9}, - [8267] = {.lex_state = 14, .external_lex_state = 9}, - [8268] = {.lex_state = 14, .external_lex_state = 8}, - [8269] = {.lex_state = 14, .external_lex_state = 8}, - [8270] = {.lex_state = 9, .external_lex_state = 8}, - [8271] = {.lex_state = 9, .external_lex_state = 8}, - [8272] = {.lex_state = 14, .external_lex_state = 8}, - [8273] = {.lex_state = 14, .external_lex_state = 8}, - [8274] = {.lex_state = 9, .external_lex_state = 8}, - [8275] = {.lex_state = 307, .external_lex_state = 8}, - [8276] = {.lex_state = 14, .external_lex_state = 9}, - [8277] = {.lex_state = 14, .external_lex_state = 9}, - [8278] = {.lex_state = 14, .external_lex_state = 8}, - [8279] = {.lex_state = 14, .external_lex_state = 8}, - [8280] = {.lex_state = 14, .external_lex_state = 9}, - [8281] = {.lex_state = 14, .external_lex_state = 8}, - [8282] = {.lex_state = 14, .external_lex_state = 8}, - [8283] = {.lex_state = 14, .external_lex_state = 9}, - [8284] = {.lex_state = 14, .external_lex_state = 9}, - [8285] = {.lex_state = 307, .external_lex_state = 8}, - [8286] = {.lex_state = 14, .external_lex_state = 8}, - [8287] = {.lex_state = 14, .external_lex_state = 8}, - [8288] = {.lex_state = 14, .external_lex_state = 9}, - [8289] = {.lex_state = 9, .external_lex_state = 8}, - [8290] = {.lex_state = 9, .external_lex_state = 8}, - [8291] = {.lex_state = 9, .external_lex_state = 8}, - [8292] = {.lex_state = 14, .external_lex_state = 8}, - [8293] = {.lex_state = 0, .external_lex_state = 8}, - [8294] = {.lex_state = 14, .external_lex_state = 9}, - [8295] = {.lex_state = 0, .external_lex_state = 8}, - [8296] = {.lex_state = 0, .external_lex_state = 8}, - [8297] = {.lex_state = 14, .external_lex_state = 8}, - [8298] = {.lex_state = 0, .external_lex_state = 8}, - [8299] = {.lex_state = 0, .external_lex_state = 8}, - [8300] = {.lex_state = 0, .external_lex_state = 8}, - [8301] = {.lex_state = 14, .external_lex_state = 8}, - [8302] = {.lex_state = 0, .external_lex_state = 8}, - [8303] = {.lex_state = 0, .external_lex_state = 8}, - [8304] = {.lex_state = 0, .external_lex_state = 8}, - [8305] = {.lex_state = 14, .external_lex_state = 9}, - [8306] = {.lex_state = 9, .external_lex_state = 8}, - [8307] = {.lex_state = 14, .external_lex_state = 9}, - [8308] = {.lex_state = 0, .external_lex_state = 8}, - [8309] = {.lex_state = 0, .external_lex_state = 8}, - [8310] = {.lex_state = 14, .external_lex_state = 9}, - [8311] = {.lex_state = 14, .external_lex_state = 8}, - [8312] = {.lex_state = 14, .external_lex_state = 8}, - [8313] = {.lex_state = 0, .external_lex_state = 8}, - [8314] = {.lex_state = 0, .external_lex_state = 8}, - [8315] = {.lex_state = 0, .external_lex_state = 8}, - [8316] = {.lex_state = 14, .external_lex_state = 8}, - [8317] = {.lex_state = 14, .external_lex_state = 9}, - [8318] = {.lex_state = 0, .external_lex_state = 8}, - [8319] = {.lex_state = 0, .external_lex_state = 8}, - [8320] = {.lex_state = 14, .external_lex_state = 8}, - [8321] = {.lex_state = 14, .external_lex_state = 9}, - [8322] = {.lex_state = 0, .external_lex_state = 8}, - [8323] = {.lex_state = 14, .external_lex_state = 9}, - [8324] = {.lex_state = 0, .external_lex_state = 8}, - [8325] = {.lex_state = 0, .external_lex_state = 8}, - [8326] = {.lex_state = 14, .external_lex_state = 8}, - [8327] = {.lex_state = 0, .external_lex_state = 8}, - [8328] = {.lex_state = 14, .external_lex_state = 8}, - [8329] = {.lex_state = 14, .external_lex_state = 9}, - [8330] = {.lex_state = 0, .external_lex_state = 8}, - [8331] = {.lex_state = 14, .external_lex_state = 8}, - [8332] = {.lex_state = 0, .external_lex_state = 8}, - [8333] = {.lex_state = 0, .external_lex_state = 8}, - [8334] = {.lex_state = 14, .external_lex_state = 8}, - [8335] = {.lex_state = 0, .external_lex_state = 8}, - [8336] = {.lex_state = 0, .external_lex_state = 8}, - [8337] = {.lex_state = 0, .external_lex_state = 8}, - [8338] = {.lex_state = 0, .external_lex_state = 9}, - [8339] = {.lex_state = 14, .external_lex_state = 9}, - [8340] = {.lex_state = 0, .external_lex_state = 9}, - [8341] = {.lex_state = 0, .external_lex_state = 9}, - [8342] = {.lex_state = 14, .external_lex_state = 8}, - [8343] = {.lex_state = 14, .external_lex_state = 8}, - [8344] = {.lex_state = 14, .external_lex_state = 8}, - [8345] = {.lex_state = 0, .external_lex_state = 10}, - [8346] = {.lex_state = 14, .external_lex_state = 8}, - [8347] = {.lex_state = 14, .external_lex_state = 9}, - [8348] = {.lex_state = 0, .external_lex_state = 10}, - [8349] = {.lex_state = 0, .external_lex_state = 9}, - [8350] = {.lex_state = 14, .external_lex_state = 9}, - [8351] = {.lex_state = 14, .external_lex_state = 8}, - [8352] = {.lex_state = 0, .external_lex_state = 10}, - [8353] = {.lex_state = 0, .external_lex_state = 10}, - [8354] = {.lex_state = 0, .external_lex_state = 10}, - [8355] = {.lex_state = 0, .external_lex_state = 9}, - [8356] = {.lex_state = 14, .external_lex_state = 9}, - [8357] = {.lex_state = 0, .external_lex_state = 10}, - [8358] = {.lex_state = 14, .external_lex_state = 9}, - [8359] = {.lex_state = 14, .external_lex_state = 8}, - [8360] = {.lex_state = 0, .external_lex_state = 10}, - [8361] = {.lex_state = 14, .external_lex_state = 9}, - [8362] = {.lex_state = 0, .external_lex_state = 10}, - [8363] = {.lex_state = 14, .external_lex_state = 9}, - [8364] = {.lex_state = 14, .external_lex_state = 9}, - [8365] = {.lex_state = 0, .external_lex_state = 10}, - [8366] = {.lex_state = 0, .external_lex_state = 10}, - [8367] = {.lex_state = 14, .external_lex_state = 9}, - [8368] = {.lex_state = 14, .external_lex_state = 9}, - [8369] = {.lex_state = 14, .external_lex_state = 9}, - [8370] = {.lex_state = 0, .external_lex_state = 9}, + [4154] = {.lex_state = 13, .external_lex_state = 7}, + [4155] = {.lex_state = 13, .external_lex_state = 6}, + [4156] = {.lex_state = 13, .external_lex_state = 7}, + [4157] = {.lex_state = 13, .external_lex_state = 7}, + [4158] = {.lex_state = 13, .external_lex_state = 6}, + [4159] = {.lex_state = 10, .external_lex_state = 2}, + [4160] = {.lex_state = 13, .external_lex_state = 6}, + [4161] = {.lex_state = 13, .external_lex_state = 6}, + [4162] = {.lex_state = 13, .external_lex_state = 7}, + [4163] = {.lex_state = 13, .external_lex_state = 7}, + [4164] = {.lex_state = 13, .external_lex_state = 7}, + [4165] = {.lex_state = 13, .external_lex_state = 7}, + [4166] = {.lex_state = 13, .external_lex_state = 7}, + [4167] = {.lex_state = 13, .external_lex_state = 7}, + [4168] = {.lex_state = 13, .external_lex_state = 7}, + [4169] = {.lex_state = 13, .external_lex_state = 7}, + [4170] = {.lex_state = 2, .external_lex_state = 4}, + [4171] = {.lex_state = 13, .external_lex_state = 6}, + [4172] = {.lex_state = 13, .external_lex_state = 7}, + [4173] = {.lex_state = 13, .external_lex_state = 7}, + [4174] = {.lex_state = 13, .external_lex_state = 7}, + [4175] = {.lex_state = 2, .external_lex_state = 4}, + [4176] = {.lex_state = 13, .external_lex_state = 7}, + [4177] = {.lex_state = 2, .external_lex_state = 4}, + [4178] = {.lex_state = 2, .external_lex_state = 4}, + [4179] = {.lex_state = 13, .external_lex_state = 6}, + [4180] = {.lex_state = 2, .external_lex_state = 4}, + [4181] = {.lex_state = 13, .external_lex_state = 7}, + [4182] = {.lex_state = 13, .external_lex_state = 7}, + [4183] = {.lex_state = 13, .external_lex_state = 7}, + [4184] = {.lex_state = 2, .external_lex_state = 4}, + [4185] = {.lex_state = 2, .external_lex_state = 4}, + [4186] = {.lex_state = 13, .external_lex_state = 6}, + [4187] = {.lex_state = 13, .external_lex_state = 6}, + [4188] = {.lex_state = 13, .external_lex_state = 6}, + [4189] = {.lex_state = 13, .external_lex_state = 7}, + [4190] = {.lex_state = 13, .external_lex_state = 6}, + [4191] = {.lex_state = 13, .external_lex_state = 6}, + [4192] = {.lex_state = 2, .external_lex_state = 4}, + [4193] = {.lex_state = 13, .external_lex_state = 6}, + [4194] = {.lex_state = 13, .external_lex_state = 6}, + [4195] = {.lex_state = 13, .external_lex_state = 7}, + [4196] = {.lex_state = 13, .external_lex_state = 7}, + [4197] = {.lex_state = 13, .external_lex_state = 6}, + [4198] = {.lex_state = 13, .external_lex_state = 6}, + [4199] = {.lex_state = 13, .external_lex_state = 7}, + [4200] = {.lex_state = 13, .external_lex_state = 6}, + [4201] = {.lex_state = 13, .external_lex_state = 6}, + [4202] = {.lex_state = 13, .external_lex_state = 6}, + [4203] = {.lex_state = 13, .external_lex_state = 7}, + [4204] = {.lex_state = 13, .external_lex_state = 7}, + [4205] = {.lex_state = 13, .external_lex_state = 7}, + [4206] = {.lex_state = 13, .external_lex_state = 6}, + [4207] = {.lex_state = 13, .external_lex_state = 7}, + [4208] = {.lex_state = 13, .external_lex_state = 6}, + [4209] = {.lex_state = 13, .external_lex_state = 7}, + [4210] = {.lex_state = 13, .external_lex_state = 7}, + [4211] = {.lex_state = 13, .external_lex_state = 7}, + [4212] = {.lex_state = 13, .external_lex_state = 7}, + [4213] = {.lex_state = 13, .external_lex_state = 6}, + [4214] = {.lex_state = 13, .external_lex_state = 7}, + [4215] = {.lex_state = 13, .external_lex_state = 7}, + [4216] = {.lex_state = 13, .external_lex_state = 7}, + [4217] = {.lex_state = 13, .external_lex_state = 6}, + [4218] = {.lex_state = 13, .external_lex_state = 7}, + [4219] = {.lex_state = 13, .external_lex_state = 6}, + [4220] = {.lex_state = 13, .external_lex_state = 6}, + [4221] = {.lex_state = 13, .external_lex_state = 7}, + [4222] = {.lex_state = 13, .external_lex_state = 6}, + [4223] = {.lex_state = 13, .external_lex_state = 6}, + [4224] = {.lex_state = 13, .external_lex_state = 6}, + [4225] = {.lex_state = 14, .external_lex_state = 7}, + [4226] = {.lex_state = 13, .external_lex_state = 7}, + [4227] = {.lex_state = 14, .external_lex_state = 7}, + [4228] = {.lex_state = 13, .external_lex_state = 6}, + [4229] = {.lex_state = 13, .external_lex_state = 7}, + [4230] = {.lex_state = 14, .external_lex_state = 7}, + [4231] = {.lex_state = 13, .external_lex_state = 7}, + [4232] = {.lex_state = 13, .external_lex_state = 7}, + [4233] = {.lex_state = 13, .external_lex_state = 7}, + [4234] = {.lex_state = 13, .external_lex_state = 7}, + [4235] = {.lex_state = 14, .external_lex_state = 7}, + [4236] = {.lex_state = 13, .external_lex_state = 7}, + [4237] = {.lex_state = 14, .external_lex_state = 7}, + [4238] = {.lex_state = 14, .external_lex_state = 7}, + [4239] = {.lex_state = 14, .external_lex_state = 7}, + [4240] = {.lex_state = 14, .external_lex_state = 7}, + [4241] = {.lex_state = 13, .external_lex_state = 7}, + [4242] = {.lex_state = 14, .external_lex_state = 7}, + [4243] = {.lex_state = 13, .external_lex_state = 7}, + [4244] = {.lex_state = 14, .external_lex_state = 7}, + [4245] = {.lex_state = 13, .external_lex_state = 7}, + [4246] = {.lex_state = 14, .external_lex_state = 7}, + [4247] = {.lex_state = 14, .external_lex_state = 7}, + [4248] = {.lex_state = 13, .external_lex_state = 6}, + [4249] = {.lex_state = 14, .external_lex_state = 7}, + [4250] = {.lex_state = 14, .external_lex_state = 7}, + [4251] = {.lex_state = 14, .external_lex_state = 7}, + [4252] = {.lex_state = 13, .external_lex_state = 7}, + [4253] = {.lex_state = 14, .external_lex_state = 7}, + [4254] = {.lex_state = 14, .external_lex_state = 7}, + [4255] = {.lex_state = 14, .external_lex_state = 7}, + [4256] = {.lex_state = 13, .external_lex_state = 7}, + [4257] = {.lex_state = 13, .external_lex_state = 7}, + [4258] = {.lex_state = 13, .external_lex_state = 7}, + [4259] = {.lex_state = 13, .external_lex_state = 7}, + [4260] = {.lex_state = 14, .external_lex_state = 6}, + [4261] = {.lex_state = 14, .external_lex_state = 6}, + [4262] = {.lex_state = 13, .external_lex_state = 7}, + [4263] = {.lex_state = 13, .external_lex_state = 7}, + [4264] = {.lex_state = 13, .external_lex_state = 7}, + [4265] = {.lex_state = 14, .external_lex_state = 6}, + [4266] = {.lex_state = 14, .external_lex_state = 6}, + [4267] = {.lex_state = 14, .external_lex_state = 6}, + [4268] = {.lex_state = 13, .external_lex_state = 7}, + [4269] = {.lex_state = 14, .external_lex_state = 6}, + [4270] = {.lex_state = 13, .external_lex_state = 7}, + [4271] = {.lex_state = 14, .external_lex_state = 6}, + [4272] = {.lex_state = 13, .external_lex_state = 7}, + [4273] = {.lex_state = 14, .external_lex_state = 6}, + [4274] = {.lex_state = 14, .external_lex_state = 6}, + [4275] = {.lex_state = 14, .external_lex_state = 6}, + [4276] = {.lex_state = 14, .external_lex_state = 6}, + [4277] = {.lex_state = 13, .external_lex_state = 7}, + [4278] = {.lex_state = 14, .external_lex_state = 6}, + [4279] = {.lex_state = 14, .external_lex_state = 6}, + [4280] = {.lex_state = 13, .external_lex_state = 7}, + [4281] = {.lex_state = 14, .external_lex_state = 6}, + [4282] = {.lex_state = 14, .external_lex_state = 6}, + [4283] = {.lex_state = 14, .external_lex_state = 6}, + [4284] = {.lex_state = 14, .external_lex_state = 6}, + [4285] = {.lex_state = 14, .external_lex_state = 7}, + [4286] = {.lex_state = 13, .external_lex_state = 6}, + [4287] = {.lex_state = 13, .external_lex_state = 6}, + [4288] = {.lex_state = 14, .external_lex_state = 7}, + [4289] = {.lex_state = 13, .external_lex_state = 6}, + [4290] = {.lex_state = 14, .external_lex_state = 7}, + [4291] = {.lex_state = 13, .external_lex_state = 6}, + [4292] = {.lex_state = 14, .external_lex_state = 7}, + [4293] = {.lex_state = 14, .external_lex_state = 7}, + [4294] = {.lex_state = 13, .external_lex_state = 6}, + [4295] = {.lex_state = 14, .external_lex_state = 7}, + [4296] = {.lex_state = 13, .external_lex_state = 6}, + [4297] = {.lex_state = 14, .external_lex_state = 7}, + [4298] = {.lex_state = 14, .external_lex_state = 7}, + [4299] = {.lex_state = 14, .external_lex_state = 7}, + [4300] = {.lex_state = 14, .external_lex_state = 7}, + [4301] = {.lex_state = 14, .external_lex_state = 7}, + [4302] = {.lex_state = 14, .external_lex_state = 7}, + [4303] = {.lex_state = 14, .external_lex_state = 7}, + [4304] = {.lex_state = 14, .external_lex_state = 7}, + [4305] = {.lex_state = 14, .external_lex_state = 7}, + [4306] = {.lex_state = 14, .external_lex_state = 7}, + [4307] = {.lex_state = 14, .external_lex_state = 7}, + [4308] = {.lex_state = 14, .external_lex_state = 6}, + [4309] = {.lex_state = 14, .external_lex_state = 6}, + [4310] = {.lex_state = 14, .external_lex_state = 6}, + [4311] = {.lex_state = 13, .external_lex_state = 7}, + [4312] = {.lex_state = 14, .external_lex_state = 6}, + [4313] = {.lex_state = 14, .external_lex_state = 6}, + [4314] = {.lex_state = 14, .external_lex_state = 6}, + [4315] = {.lex_state = 13, .external_lex_state = 7}, + [4316] = {.lex_state = 14, .external_lex_state = 6}, + [4317] = {.lex_state = 13, .external_lex_state = 7}, + [4318] = {.lex_state = 13, .external_lex_state = 7}, + [4319] = {.lex_state = 13, .external_lex_state = 7}, + [4320] = {.lex_state = 14, .external_lex_state = 6}, + [4321] = {.lex_state = 14, .external_lex_state = 6}, + [4322] = {.lex_state = 13, .external_lex_state = 7}, + [4323] = {.lex_state = 14, .external_lex_state = 6}, + [4324] = {.lex_state = 14, .external_lex_state = 6}, + [4325] = {.lex_state = 14, .external_lex_state = 6}, + [4326] = {.lex_state = 21, .external_lex_state = 8}, + [4327] = {.lex_state = 21, .external_lex_state = 8}, + [4328] = {.lex_state = 21, .external_lex_state = 8}, + [4329] = {.lex_state = 21, .external_lex_state = 8}, + [4330] = {.lex_state = 21, .external_lex_state = 8}, + [4331] = {.lex_state = 21, .external_lex_state = 8}, + [4332] = {.lex_state = 21, .external_lex_state = 8}, + [4333] = {.lex_state = 14, .external_lex_state = 6}, + [4334] = {.lex_state = 14, .external_lex_state = 6}, + [4335] = {.lex_state = 21, .external_lex_state = 8}, + [4336] = {.lex_state = 21, .external_lex_state = 8}, + [4337] = {.lex_state = 14, .external_lex_state = 6}, + [4338] = {.lex_state = 21, .external_lex_state = 8}, + [4339] = {.lex_state = 21, .external_lex_state = 8}, + [4340] = {.lex_state = 21, .external_lex_state = 8}, + [4341] = {.lex_state = 21, .external_lex_state = 8}, + [4342] = {.lex_state = 21, .external_lex_state = 8}, + [4343] = {.lex_state = 21, .external_lex_state = 8}, + [4344] = {.lex_state = 21, .external_lex_state = 8}, + [4345] = {.lex_state = 21, .external_lex_state = 8}, + [4346] = {.lex_state = 21, .external_lex_state = 8}, + [4347] = {.lex_state = 21, .external_lex_state = 8}, + [4348] = {.lex_state = 21, .external_lex_state = 8}, + [4349] = {.lex_state = 21, .external_lex_state = 8}, + [4350] = {.lex_state = 21, .external_lex_state = 8}, + [4351] = {.lex_state = 21, .external_lex_state = 8}, + [4352] = {.lex_state = 21, .external_lex_state = 8}, + [4353] = {.lex_state = 21, .external_lex_state = 8}, + [4354] = {.lex_state = 21, .external_lex_state = 8}, + [4355] = {.lex_state = 14, .external_lex_state = 6}, + [4356] = {.lex_state = 21, .external_lex_state = 8}, + [4357] = {.lex_state = 21, .external_lex_state = 8}, + [4358] = {.lex_state = 21, .external_lex_state = 8}, + [4359] = {.lex_state = 21, .external_lex_state = 8}, + [4360] = {.lex_state = 21, .external_lex_state = 8}, + [4361] = {.lex_state = 14, .external_lex_state = 6}, + [4362] = {.lex_state = 21, .external_lex_state = 8}, + [4363] = {.lex_state = 21, .external_lex_state = 8}, + [4364] = {.lex_state = 14, .external_lex_state = 6}, + [4365] = {.lex_state = 21, .external_lex_state = 8}, + [4366] = {.lex_state = 318, .external_lex_state = 2}, + [4367] = {.lex_state = 21, .external_lex_state = 8}, + [4368] = {.lex_state = 21, .external_lex_state = 8}, + [4369] = {.lex_state = 21, .external_lex_state = 8}, + [4370] = {.lex_state = 21, .external_lex_state = 8}, + [4371] = {.lex_state = 21, .external_lex_state = 8}, + [4372] = {.lex_state = 14, .external_lex_state = 6}, + [4373] = {.lex_state = 318, .external_lex_state = 2}, + [4374] = {.lex_state = 14, .external_lex_state = 6}, + [4375] = {.lex_state = 21, .external_lex_state = 8}, + [4376] = {.lex_state = 14, .external_lex_state = 6}, + [4377] = {.lex_state = 21, .external_lex_state = 8}, + [4378] = {.lex_state = 21, .external_lex_state = 8}, + [4379] = {.lex_state = 21, .external_lex_state = 8}, + [4380] = {.lex_state = 14, .external_lex_state = 6}, + [4381] = {.lex_state = 14, .external_lex_state = 6}, + [4382] = {.lex_state = 21, .external_lex_state = 8}, + [4383] = {.lex_state = 14, .external_lex_state = 6}, + [4384] = {.lex_state = 21, .external_lex_state = 8}, + [4385] = {.lex_state = 14, .external_lex_state = 6}, + [4386] = {.lex_state = 21, .external_lex_state = 8}, + [4387] = {.lex_state = 14, .external_lex_state = 6}, + [4388] = {.lex_state = 21, .external_lex_state = 8}, + [4389] = {.lex_state = 21, .external_lex_state = 8}, + [4390] = {.lex_state = 21, .external_lex_state = 8}, + [4391] = {.lex_state = 14, .external_lex_state = 6}, + [4392] = {.lex_state = 21, .external_lex_state = 8}, + [4393] = {.lex_state = 21, .external_lex_state = 8}, + [4394] = {.lex_state = 21, .external_lex_state = 8}, + [4395] = {.lex_state = 21, .external_lex_state = 8}, + [4396] = {.lex_state = 21, .external_lex_state = 8}, + [4397] = {.lex_state = 21, .external_lex_state = 8}, + [4398] = {.lex_state = 14, .external_lex_state = 6}, + [4399] = {.lex_state = 14, .external_lex_state = 6}, + [4400] = {.lex_state = 14, .external_lex_state = 6}, + [4401] = {.lex_state = 14, .external_lex_state = 6}, + [4402] = {.lex_state = 14, .external_lex_state = 6}, + [4403] = {.lex_state = 14, .external_lex_state = 6}, + [4404] = {.lex_state = 14, .external_lex_state = 6}, + [4405] = {.lex_state = 14, .external_lex_state = 6}, + [4406] = {.lex_state = 14, .external_lex_state = 6}, + [4407] = {.lex_state = 14, .external_lex_state = 6}, + [4408] = {.lex_state = 14, .external_lex_state = 6}, + [4409] = {.lex_state = 14, .external_lex_state = 6}, + [4410] = {.lex_state = 14, .external_lex_state = 6}, + [4411] = {.lex_state = 14, .external_lex_state = 6}, + [4412] = {.lex_state = 14, .external_lex_state = 6}, + [4413] = {.lex_state = 14, .external_lex_state = 6}, + [4414] = {.lex_state = 14, .external_lex_state = 6}, + [4415] = {.lex_state = 14, .external_lex_state = 6}, + [4416] = {.lex_state = 14, .external_lex_state = 6}, + [4417] = {.lex_state = 14, .external_lex_state = 6}, + [4418] = {.lex_state = 14, .external_lex_state = 6}, + [4419] = {.lex_state = 14, .external_lex_state = 6}, + [4420] = {.lex_state = 14, .external_lex_state = 6}, + [4421] = {.lex_state = 14, .external_lex_state = 6}, + [4422] = {.lex_state = 14, .external_lex_state = 6}, + [4423] = {.lex_state = 14, .external_lex_state = 6}, + [4424] = {.lex_state = 14, .external_lex_state = 6}, + [4425] = {.lex_state = 14, .external_lex_state = 6}, + [4426] = {.lex_state = 14, .external_lex_state = 6}, + [4427] = {.lex_state = 14, .external_lex_state = 6}, + [4428] = {.lex_state = 14, .external_lex_state = 6}, + [4429] = {.lex_state = 14, .external_lex_state = 6}, + [4430] = {.lex_state = 14, .external_lex_state = 6}, + [4431] = {.lex_state = 14, .external_lex_state = 6}, + [4432] = {.lex_state = 14, .external_lex_state = 6}, + [4433] = {.lex_state = 14, .external_lex_state = 6}, + [4434] = {.lex_state = 14, .external_lex_state = 6}, + [4435] = {.lex_state = 14, .external_lex_state = 6}, + [4436] = {.lex_state = 14, .external_lex_state = 6}, + [4437] = {.lex_state = 14, .external_lex_state = 6}, + [4438] = {.lex_state = 14, .external_lex_state = 6}, + [4439] = {.lex_state = 14, .external_lex_state = 6}, + [4440] = {.lex_state = 14, .external_lex_state = 6}, + [4441] = {.lex_state = 14, .external_lex_state = 6}, + [4442] = {.lex_state = 14, .external_lex_state = 6}, + [4443] = {.lex_state = 14, .external_lex_state = 6}, + [4444] = {.lex_state = 14, .external_lex_state = 6}, + [4445] = {.lex_state = 14, .external_lex_state = 6}, + [4446] = {.lex_state = 14, .external_lex_state = 6}, + [4447] = {.lex_state = 14, .external_lex_state = 6}, + [4448] = {.lex_state = 14, .external_lex_state = 6}, + [4449] = {.lex_state = 14, .external_lex_state = 6}, + [4450] = {.lex_state = 14, .external_lex_state = 6}, + [4451] = {.lex_state = 14, .external_lex_state = 6}, + [4452] = {.lex_state = 14, .external_lex_state = 6}, + [4453] = {.lex_state = 14, .external_lex_state = 6}, + [4454] = {.lex_state = 14, .external_lex_state = 6}, + [4455] = {.lex_state = 14, .external_lex_state = 6}, + [4456] = {.lex_state = 14, .external_lex_state = 6}, + [4457] = {.lex_state = 14, .external_lex_state = 6}, + [4458] = {.lex_state = 14, .external_lex_state = 6}, + [4459] = {.lex_state = 14, .external_lex_state = 6}, + [4460] = {.lex_state = 14, .external_lex_state = 6}, + [4461] = {.lex_state = 14, .external_lex_state = 6}, + [4462] = {.lex_state = 14, .external_lex_state = 6}, + [4463] = {.lex_state = 14, .external_lex_state = 6}, + [4464] = {.lex_state = 14, .external_lex_state = 6}, + [4465] = {.lex_state = 14, .external_lex_state = 6}, + [4466] = {.lex_state = 14, .external_lex_state = 6}, + [4467] = {.lex_state = 14, .external_lex_state = 6}, + [4468] = {.lex_state = 14, .external_lex_state = 6}, + [4469] = {.lex_state = 14, .external_lex_state = 6}, + [4470] = {.lex_state = 14, .external_lex_state = 6}, + [4471] = {.lex_state = 14, .external_lex_state = 6}, + [4472] = {.lex_state = 14, .external_lex_state = 6}, + [4473] = {.lex_state = 14, .external_lex_state = 6}, + [4474] = {.lex_state = 14, .external_lex_state = 6}, + [4475] = {.lex_state = 14, .external_lex_state = 6}, + [4476] = {.lex_state = 14, .external_lex_state = 6}, + [4477] = {.lex_state = 14, .external_lex_state = 6}, + [4478] = {.lex_state = 14, .external_lex_state = 6}, + [4479] = {.lex_state = 14, .external_lex_state = 6}, + [4480] = {.lex_state = 14, .external_lex_state = 6}, + [4481] = {.lex_state = 14, .external_lex_state = 6}, + [4482] = {.lex_state = 14, .external_lex_state = 6}, + [4483] = {.lex_state = 14, .external_lex_state = 6}, + [4484] = {.lex_state = 14, .external_lex_state = 6}, + [4485] = {.lex_state = 14, .external_lex_state = 6}, + [4486] = {.lex_state = 14, .external_lex_state = 6}, + [4487] = {.lex_state = 14, .external_lex_state = 6}, + [4488] = {.lex_state = 14, .external_lex_state = 6}, + [4489] = {.lex_state = 14, .external_lex_state = 6}, + [4490] = {.lex_state = 14, .external_lex_state = 6}, + [4491] = {.lex_state = 14, .external_lex_state = 6}, + [4492] = {.lex_state = 14, .external_lex_state = 6}, + [4493] = {.lex_state = 14, .external_lex_state = 6}, + [4494] = {.lex_state = 14, .external_lex_state = 6}, + [4495] = {.lex_state = 14, .external_lex_state = 6}, + [4496] = {.lex_state = 14, .external_lex_state = 6}, + [4497] = {.lex_state = 14, .external_lex_state = 6}, + [4498] = {.lex_state = 14, .external_lex_state = 6}, + [4499] = {.lex_state = 14, .external_lex_state = 6}, + [4500] = {.lex_state = 14, .external_lex_state = 6}, + [4501] = {.lex_state = 14, .external_lex_state = 6}, + [4502] = {.lex_state = 14, .external_lex_state = 6}, + [4503] = {.lex_state = 14, .external_lex_state = 6}, + [4504] = {.lex_state = 14, .external_lex_state = 6}, + [4505] = {.lex_state = 14, .external_lex_state = 6}, + [4506] = {.lex_state = 14, .external_lex_state = 6}, + [4507] = {.lex_state = 14, .external_lex_state = 6}, + [4508] = {.lex_state = 14, .external_lex_state = 6}, + [4509] = {.lex_state = 14, .external_lex_state = 6}, + [4510] = {.lex_state = 14, .external_lex_state = 6}, + [4511] = {.lex_state = 14, .external_lex_state = 6}, + [4512] = {.lex_state = 14, .external_lex_state = 6}, + [4513] = {.lex_state = 14, .external_lex_state = 6}, + [4514] = {.lex_state = 14, .external_lex_state = 6}, + [4515] = {.lex_state = 14, .external_lex_state = 6}, + [4516] = {.lex_state = 14, .external_lex_state = 6}, + [4517] = {.lex_state = 14, .external_lex_state = 6}, + [4518] = {.lex_state = 14, .external_lex_state = 6}, + [4519] = {.lex_state = 14, .external_lex_state = 6}, + [4520] = {.lex_state = 14, .external_lex_state = 6}, + [4521] = {.lex_state = 14, .external_lex_state = 6}, + [4522] = {.lex_state = 14, .external_lex_state = 6}, + [4523] = {.lex_state = 14, .external_lex_state = 6}, + [4524] = {.lex_state = 14, .external_lex_state = 6}, + [4525] = {.lex_state = 14, .external_lex_state = 6}, + [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 = 14, .external_lex_state = 6}, + [4530] = {.lex_state = 14, .external_lex_state = 6}, + [4531] = {.lex_state = 14, .external_lex_state = 6}, + [4532] = {.lex_state = 14, .external_lex_state = 6}, + [4533] = {.lex_state = 14, .external_lex_state = 6}, + [4534] = {.lex_state = 14, .external_lex_state = 6}, + [4535] = {.lex_state = 14, .external_lex_state = 6}, + [4536] = {.lex_state = 14, .external_lex_state = 6}, + [4537] = {.lex_state = 12, .external_lex_state = 5}, + [4538] = {.lex_state = 14, .external_lex_state = 6}, + [4539] = {.lex_state = 14, .external_lex_state = 6}, + [4540] = {.lex_state = 14, .external_lex_state = 6}, + [4541] = {.lex_state = 14, .external_lex_state = 6}, + [4542] = {.lex_state = 14, .external_lex_state = 6}, + [4543] = {.lex_state = 14, .external_lex_state = 6}, + [4544] = {.lex_state = 12, .external_lex_state = 5}, + [4545] = {.lex_state = 12, .external_lex_state = 5}, + [4546] = {.lex_state = 14, .external_lex_state = 6}, + [4547] = {.lex_state = 14, .external_lex_state = 6}, + [4548] = {.lex_state = 12, .external_lex_state = 5}, + [4549] = {.lex_state = 14, .external_lex_state = 7}, + [4550] = {.lex_state = 14, .external_lex_state = 6}, + [4551] = {.lex_state = 14, .external_lex_state = 7}, + [4552] = {.lex_state = 14, .external_lex_state = 6}, + [4553] = {.lex_state = 14, .external_lex_state = 6}, + [4554] = {.lex_state = 14, .external_lex_state = 6}, + [4555] = {.lex_state = 14, .external_lex_state = 7}, + [4556] = {.lex_state = 14, .external_lex_state = 6}, + [4557] = {.lex_state = 14, .external_lex_state = 6}, + [4558] = {.lex_state = 14, .external_lex_state = 6}, + [4559] = {.lex_state = 14, .external_lex_state = 6}, + [4560] = {.lex_state = 14, .external_lex_state = 6}, + [4561] = {.lex_state = 14, .external_lex_state = 6}, + [4562] = {.lex_state = 14, .external_lex_state = 6}, + [4563] = {.lex_state = 14, .external_lex_state = 6}, + [4564] = {.lex_state = 14, .external_lex_state = 6}, + [4565] = {.lex_state = 14, .external_lex_state = 6}, + [4566] = {.lex_state = 14, .external_lex_state = 7}, + [4567] = {.lex_state = 12, .external_lex_state = 5}, + [4568] = {.lex_state = 12, .external_lex_state = 5}, + [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}, + [4575] = {.lex_state = 14, .external_lex_state = 6}, + [4576] = {.lex_state = 14, .external_lex_state = 6}, + [4577] = {.lex_state = 14, .external_lex_state = 6}, + [4578] = {.lex_state = 14, .external_lex_state = 6}, + [4579] = {.lex_state = 14, .external_lex_state = 6}, + [4580] = {.lex_state = 14, .external_lex_state = 6}, + [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 = 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}, + [4592] = {.lex_state = 14, .external_lex_state = 6}, + [4593] = {.lex_state = 14, .external_lex_state = 6}, + [4594] = {.lex_state = 14, .external_lex_state = 7}, + [4595] = {.lex_state = 14, .external_lex_state = 6}, + [4596] = {.lex_state = 14, .external_lex_state = 6}, + [4597] = {.lex_state = 14, .external_lex_state = 6}, + [4598] = {.lex_state = 14, .external_lex_state = 6}, + [4599] = {.lex_state = 14, .external_lex_state = 7}, + [4600] = {.lex_state = 14, .external_lex_state = 6}, + [4601] = {.lex_state = 14, .external_lex_state = 6}, + [4602] = {.lex_state = 14, .external_lex_state = 6}, + [4603] = {.lex_state = 14, .external_lex_state = 6}, + [4604] = {.lex_state = 12, .external_lex_state = 5}, + [4605] = {.lex_state = 12, .external_lex_state = 5}, + [4606] = {.lex_state = 14, .external_lex_state = 6}, + [4607] = {.lex_state = 14, .external_lex_state = 6}, + [4608] = {.lex_state = 12, .external_lex_state = 5}, + [4609] = {.lex_state = 14, .external_lex_state = 6}, + [4610] = {.lex_state = 12, .external_lex_state = 5}, + [4611] = {.lex_state = 14, .external_lex_state = 6}, + [4612] = {.lex_state = 14, .external_lex_state = 7}, + [4613] = {.lex_state = 14, .external_lex_state = 6}, + [4614] = {.lex_state = 14, .external_lex_state = 6}, + [4615] = {.lex_state = 14, .external_lex_state = 6}, + [4616] = {.lex_state = 14, .external_lex_state = 6}, + [4617] = {.lex_state = 14, .external_lex_state = 6}, + [4618] = {.lex_state = 14, .external_lex_state = 6}, + [4619] = {.lex_state = 14, .external_lex_state = 6}, + [4620] = {.lex_state = 14, .external_lex_state = 6}, + [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 = 7}, + [4629] = {.lex_state = 14, .external_lex_state = 6}, + [4630] = {.lex_state = 12, .external_lex_state = 5}, + [4631] = {.lex_state = 14, .external_lex_state = 6}, + [4632] = {.lex_state = 14, .external_lex_state = 6}, + [4633] = {.lex_state = 12, .external_lex_state = 5}, + [4634] = {.lex_state = 14, .external_lex_state = 6}, + [4635] = {.lex_state = 14, .external_lex_state = 6}, + [4636] = {.lex_state = 14, .external_lex_state = 6}, + [4637] = {.lex_state = 14, .external_lex_state = 6}, + [4638] = {.lex_state = 14, .external_lex_state = 6}, + [4639] = {.lex_state = 14, .external_lex_state = 6}, + [4640] = {.lex_state = 12, .external_lex_state = 5}, + [4641] = {.lex_state = 14, .external_lex_state = 7}, + [4642] = {.lex_state = 14, .external_lex_state = 6}, + [4643] = {.lex_state = 12, .external_lex_state = 5}, + [4644] = {.lex_state = 14, .external_lex_state = 7}, + [4645] = {.lex_state = 12, .external_lex_state = 5}, + [4646] = {.lex_state = 12, .external_lex_state = 5}, + [4647] = {.lex_state = 14, .external_lex_state = 6}, + [4648] = {.lex_state = 14, .external_lex_state = 6}, + [4649] = {.lex_state = 14, .external_lex_state = 6}, + [4650] = {.lex_state = 14, .external_lex_state = 6}, + [4651] = {.lex_state = 14, .external_lex_state = 7}, + [4652] = {.lex_state = 14, .external_lex_state = 6}, + [4653] = {.lex_state = 14, .external_lex_state = 6}, + [4654] = {.lex_state = 14, .external_lex_state = 6}, + [4655] = {.lex_state = 14, .external_lex_state = 6}, + [4656] = {.lex_state = 14, .external_lex_state = 6}, + [4657] = {.lex_state = 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 = 12, .external_lex_state = 5}, + [4662] = {.lex_state = 14, .external_lex_state = 6}, + [4663] = {.lex_state = 12, .external_lex_state = 5}, + [4664] = {.lex_state = 14, .external_lex_state = 6}, + [4665] = {.lex_state = 12, .external_lex_state = 5}, + [4666] = {.lex_state = 14, .external_lex_state = 6}, + [4667] = {.lex_state = 14, .external_lex_state = 6}, + [4668] = {.lex_state = 12, .external_lex_state = 5}, + [4669] = {.lex_state = 14, .external_lex_state = 6}, + [4670] = {.lex_state = 12, .external_lex_state = 5}, + [4671] = {.lex_state = 14, .external_lex_state = 6}, + [4672] = {.lex_state = 14, .external_lex_state = 6}, + [4673] = {.lex_state = 12, .external_lex_state = 5}, + [4674] = {.lex_state = 14, .external_lex_state = 6}, + [4675] = {.lex_state = 14, .external_lex_state = 6}, + [4676] = {.lex_state = 14, .external_lex_state = 6}, + [4677] = {.lex_state = 14, .external_lex_state = 6}, + [4678] = {.lex_state = 14, .external_lex_state = 7}, + [4679] = {.lex_state = 14, .external_lex_state = 6}, + [4680] = {.lex_state = 14, .external_lex_state = 6}, + [4681] = {.lex_state = 14, .external_lex_state = 6}, + [4682] = {.lex_state = 14, .external_lex_state = 6}, + [4683] = {.lex_state = 14, .external_lex_state = 7}, + [4684] = {.lex_state = 16, .external_lex_state = 6}, + [4685] = {.lex_state = 14, .external_lex_state = 6}, + [4686] = {.lex_state = 14, .external_lex_state = 7}, + [4687] = {.lex_state = 14, .external_lex_state = 7}, + [4688] = {.lex_state = 14, .external_lex_state = 6}, + [4689] = {.lex_state = 14, .external_lex_state = 6}, + [4690] = {.lex_state = 14, .external_lex_state = 6}, + [4691] = {.lex_state = 14, .external_lex_state = 6}, + [4692] = {.lex_state = 14, .external_lex_state = 6}, + [4693] = {.lex_state = 14, .external_lex_state = 6}, + [4694] = {.lex_state = 14, .external_lex_state = 6}, + [4695] = {.lex_state = 12, .external_lex_state = 5}, + [4696] = {.lex_state = 14, .external_lex_state = 7}, + [4697] = {.lex_state = 14, .external_lex_state = 7}, + [4698] = {.lex_state = 14, .external_lex_state = 6}, + [4699] = {.lex_state = 14, .external_lex_state = 6}, + [4700] = {.lex_state = 14, .external_lex_state = 6}, + [4701] = {.lex_state = 14, .external_lex_state = 6}, + [4702] = {.lex_state = 14, .external_lex_state = 6}, + [4703] = {.lex_state = 14, .external_lex_state = 6}, + [4704] = {.lex_state = 14, .external_lex_state = 7}, + [4705] = {.lex_state = 14, .external_lex_state = 7}, + [4706] = {.lex_state = 14, .external_lex_state = 6}, + [4707] = {.lex_state = 14, .external_lex_state = 7}, + [4708] = {.lex_state = 14, .external_lex_state = 7}, + [4709] = {.lex_state = 14, .external_lex_state = 6}, + [4710] = {.lex_state = 14, .external_lex_state = 6}, + [4711] = {.lex_state = 14, .external_lex_state = 6}, + [4712] = {.lex_state = 14, .external_lex_state = 7}, + [4713] = {.lex_state = 14, .external_lex_state = 6}, + [4714] = {.lex_state = 14, .external_lex_state = 6}, + [4715] = {.lex_state = 14, .external_lex_state = 6}, + [4716] = {.lex_state = 14, .external_lex_state = 6}, + [4717] = {.lex_state = 14, .external_lex_state = 6}, + [4718] = {.lex_state = 14, .external_lex_state = 6}, + [4719] = {.lex_state = 14, .external_lex_state = 6}, + [4720] = {.lex_state = 12, .external_lex_state = 5}, + [4721] = {.lex_state = 14, .external_lex_state = 6}, + [4722] = {.lex_state = 14, .external_lex_state = 7}, + [4723] = {.lex_state = 14, .external_lex_state = 7}, + [4724] = {.lex_state = 14, .external_lex_state = 6}, + [4725] = {.lex_state = 14, .external_lex_state = 7}, + [4726] = {.lex_state = 14, .external_lex_state = 6}, + [4727] = {.lex_state = 14, .external_lex_state = 6}, + [4728] = {.lex_state = 14, .external_lex_state = 6}, + [4729] = {.lex_state = 14, .external_lex_state = 6}, + [4730] = {.lex_state = 14, .external_lex_state = 6}, + [4731] = {.lex_state = 14, .external_lex_state = 6}, + [4732] = {.lex_state = 14, .external_lex_state = 6}, + [4733] = {.lex_state = 14, .external_lex_state = 6}, + [4734] = {.lex_state = 14, .external_lex_state = 6}, + [4735] = {.lex_state = 14, .external_lex_state = 6}, + [4736] = {.lex_state = 14, .external_lex_state = 6}, + [4737] = {.lex_state = 14, .external_lex_state = 6}, + [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}, + [4742] = {.lex_state = 14, .external_lex_state = 6}, + [4743] = {.lex_state = 14, .external_lex_state = 7}, + [4744] = {.lex_state = 14, .external_lex_state = 6}, + [4745] = {.lex_state = 14, .external_lex_state = 6}, + [4746] = {.lex_state = 14, .external_lex_state = 6}, + [4747] = {.lex_state = 14, .external_lex_state = 7}, + [4748] = {.lex_state = 14, .external_lex_state = 6}, + [4749] = {.lex_state = 14, .external_lex_state = 6}, + [4750] = {.lex_state = 14, .external_lex_state = 6}, + [4751] = {.lex_state = 14, .external_lex_state = 7}, + [4752] = {.lex_state = 14, .external_lex_state = 6}, + [4753] = {.lex_state = 14, .external_lex_state = 6}, + [4754] = {.lex_state = 14, .external_lex_state = 6}, + [4755] = {.lex_state = 14, .external_lex_state = 6}, + [4756] = {.lex_state = 14, .external_lex_state = 6}, + [4757] = {.lex_state = 14, .external_lex_state = 6}, + [4758] = {.lex_state = 14, .external_lex_state = 6}, + [4759] = {.lex_state = 14, .external_lex_state = 6}, + [4760] = {.lex_state = 14, .external_lex_state = 6}, + [4761] = {.lex_state = 14, .external_lex_state = 6}, + [4762] = {.lex_state = 14, .external_lex_state = 6}, + [4763] = {.lex_state = 14, .external_lex_state = 6}, + [4764] = {.lex_state = 14, .external_lex_state = 6}, + [4765] = {.lex_state = 14, .external_lex_state = 7}, + [4766] = {.lex_state = 14, .external_lex_state = 6}, + [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}, + [4771] = {.lex_state = 14, .external_lex_state = 6}, + [4772] = {.lex_state = 14, .external_lex_state = 6}, + [4773] = {.lex_state = 14, .external_lex_state = 6}, + [4774] = {.lex_state = 14, .external_lex_state = 6}, + [4775] = {.lex_state = 14, .external_lex_state = 6}, + [4776] = {.lex_state = 14, .external_lex_state = 7}, + [4777] = {.lex_state = 14, .external_lex_state = 6}, + [4778] = {.lex_state = 14, .external_lex_state = 7}, + [4779] = {.lex_state = 14, .external_lex_state = 6}, + [4780] = {.lex_state = 14, .external_lex_state = 6}, + [4781] = {.lex_state = 14, .external_lex_state = 7}, + [4782] = {.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}, + [4787] = {.lex_state = 14, .external_lex_state = 6}, + [4788] = {.lex_state = 14, .external_lex_state = 7}, + [4789] = {.lex_state = 14, .external_lex_state = 6}, + [4790] = {.lex_state = 14, .external_lex_state = 6}, + [4791] = {.lex_state = 14, .external_lex_state = 7}, + [4792] = {.lex_state = 14, .external_lex_state = 6}, + [4793] = {.lex_state = 14, .external_lex_state = 6}, + [4794] = {.lex_state = 14, .external_lex_state = 6}, + [4795] = {.lex_state = 14, .external_lex_state = 6}, + [4796] = {.lex_state = 14, .external_lex_state = 6}, + [4797] = {.lex_state = 14, .external_lex_state = 6}, + [4798] = {.lex_state = 14, .external_lex_state = 7}, + [4799] = {.lex_state = 14, .external_lex_state = 7}, + [4800] = {.lex_state = 14, .external_lex_state = 6}, + [4801] = {.lex_state = 14, .external_lex_state = 6}, + [4802] = {.lex_state = 14, .external_lex_state = 6}, + [4803] = {.lex_state = 14, .external_lex_state = 6}, + [4804] = {.lex_state = 14, .external_lex_state = 6}, + [4805] = {.lex_state = 14, .external_lex_state = 7}, + [4806] = {.lex_state = 14, .external_lex_state = 7}, + [4807] = {.lex_state = 14, .external_lex_state = 7}, + [4808] = {.lex_state = 14, .external_lex_state = 7}, + [4809] = {.lex_state = 14, .external_lex_state = 6}, + [4810] = {.lex_state = 14, .external_lex_state = 6}, + [4811] = {.lex_state = 14, .external_lex_state = 6}, + [4812] = {.lex_state = 14, .external_lex_state = 6}, + [4813] = {.lex_state = 14, .external_lex_state = 6}, + [4814] = {.lex_state = 14, .external_lex_state = 7}, + [4815] = {.lex_state = 14, .external_lex_state = 7}, + [4816] = {.lex_state = 14, .external_lex_state = 7}, + [4817] = {.lex_state = 14, .external_lex_state = 6}, + [4818] = {.lex_state = 14, .external_lex_state = 6}, + [4819] = {.lex_state = 14, .external_lex_state = 6}, + [4820] = {.lex_state = 14, .external_lex_state = 6}, + [4821] = {.lex_state = 12, .external_lex_state = 5}, + [4822] = {.lex_state = 14, .external_lex_state = 6}, + [4823] = {.lex_state = 14, .external_lex_state = 6}, + [4824] = {.lex_state = 14, .external_lex_state = 6}, + [4825] = {.lex_state = 14, .external_lex_state = 6}, + [4826] = {.lex_state = 14, .external_lex_state = 6}, + [4827] = {.lex_state = 14, .external_lex_state = 6}, + [4828] = {.lex_state = 14, .external_lex_state = 6}, + [4829] = {.lex_state = 14, .external_lex_state = 6}, + [4830] = {.lex_state = 14, .external_lex_state = 6}, + [4831] = {.lex_state = 14, .external_lex_state = 6}, + [4832] = {.lex_state = 14, .external_lex_state = 6}, + [4833] = {.lex_state = 14, .external_lex_state = 6}, + [4834] = {.lex_state = 14, .external_lex_state = 6}, + [4835] = {.lex_state = 12, .external_lex_state = 5}, + [4836] = {.lex_state = 14, .external_lex_state = 6}, + [4837] = {.lex_state = 14, .external_lex_state = 6}, + [4838] = {.lex_state = 14, .external_lex_state = 6}, + [4839] = {.lex_state = 14, .external_lex_state = 6}, + [4840] = {.lex_state = 14, .external_lex_state = 6}, + [4841] = {.lex_state = 14, .external_lex_state = 6}, + [4842] = {.lex_state = 14, .external_lex_state = 6}, + [4843] = {.lex_state = 14, .external_lex_state = 6}, + [4844] = {.lex_state = 14, .external_lex_state = 6}, + [4845] = {.lex_state = 14, .external_lex_state = 6}, + [4846] = {.lex_state = 14, .external_lex_state = 6}, + [4847] = {.lex_state = 12, .external_lex_state = 5}, + [4848] = {.lex_state = 14, .external_lex_state = 7}, + [4849] = {.lex_state = 14, .external_lex_state = 6}, + [4850] = {.lex_state = 14, .external_lex_state = 6}, + [4851] = {.lex_state = 14, .external_lex_state = 6}, + [4852] = {.lex_state = 14, .external_lex_state = 6}, + [4853] = {.lex_state = 14, .external_lex_state = 6}, + [4854] = {.lex_state = 14, .external_lex_state = 6}, + [4855] = {.lex_state = 14, .external_lex_state = 6}, + [4856] = {.lex_state = 14, .external_lex_state = 6}, + [4857] = {.lex_state = 14, .external_lex_state = 7}, + [4858] = {.lex_state = 14, .external_lex_state = 6}, + [4859] = {.lex_state = 14, .external_lex_state = 6}, + [4860] = {.lex_state = 14, .external_lex_state = 6}, + [4861] = {.lex_state = 14, .external_lex_state = 6}, + [4862] = {.lex_state = 14, .external_lex_state = 6}, + [4863] = {.lex_state = 14, .external_lex_state = 6}, + [4864] = {.lex_state = 14, .external_lex_state = 6}, + [4865] = {.lex_state = 14, .external_lex_state = 6}, + [4866] = {.lex_state = 14, .external_lex_state = 6}, + [4867] = {.lex_state = 14, .external_lex_state = 6}, + [4868] = {.lex_state = 14, .external_lex_state = 6}, + [4869] = {.lex_state = 14, .external_lex_state = 7}, + [4870] = {.lex_state = 14, .external_lex_state = 6}, + [4871] = {.lex_state = 14, .external_lex_state = 6}, + [4872] = {.lex_state = 14, .external_lex_state = 6}, + [4873] = {.lex_state = 14, .external_lex_state = 6}, + [4874] = {.lex_state = 14, .external_lex_state = 6}, + [4875] = {.lex_state = 14, .external_lex_state = 6}, + [4876] = {.lex_state = 14, .external_lex_state = 6}, + [4877] = {.lex_state = 14, .external_lex_state = 6}, + [4878] = {.lex_state = 14, .external_lex_state = 6}, + [4879] = {.lex_state = 14, .external_lex_state = 6}, + [4880] = {.lex_state = 14, .external_lex_state = 6}, + [4881] = {.lex_state = 14, .external_lex_state = 6}, + [4882] = {.lex_state = 14, .external_lex_state = 6}, + [4883] = {.lex_state = 14, .external_lex_state = 6}, + [4884] = {.lex_state = 14, .external_lex_state = 6}, + [4885] = {.lex_state = 12, .external_lex_state = 5}, + [4886] = {.lex_state = 14, .external_lex_state = 6}, + [4887] = {.lex_state = 14, .external_lex_state = 6}, + [4888] = {.lex_state = 14, .external_lex_state = 6}, + [4889] = {.lex_state = 14, .external_lex_state = 6}, + [4890] = {.lex_state = 14, .external_lex_state = 6}, + [4891] = {.lex_state = 14, .external_lex_state = 6}, + [4892] = {.lex_state = 14, .external_lex_state = 7}, + [4893] = {.lex_state = 14, .external_lex_state = 6}, + [4894] = {.lex_state = 14, .external_lex_state = 7}, + [4895] = {.lex_state = 12, .external_lex_state = 5}, + [4896] = {.lex_state = 14, .external_lex_state = 7}, + [4897] = {.lex_state = 14, .external_lex_state = 7}, + [4898] = {.lex_state = 14, .external_lex_state = 7}, + [4899] = {.lex_state = 14, .external_lex_state = 7}, + [4900] = {.lex_state = 14, .external_lex_state = 7}, + [4901] = {.lex_state = 14, .external_lex_state = 7}, + [4902] = {.lex_state = 14, .external_lex_state = 6}, + [4903] = {.lex_state = 14, .external_lex_state = 7}, + [4904] = {.lex_state = 14, .external_lex_state = 6}, + [4905] = {.lex_state = 14, .external_lex_state = 6}, + [4906] = {.lex_state = 14, .external_lex_state = 7}, + [4907] = {.lex_state = 14, .external_lex_state = 7}, + [4908] = {.lex_state = 14, .external_lex_state = 6}, + [4909] = {.lex_state = 14, .external_lex_state = 6}, + [4910] = {.lex_state = 14, .external_lex_state = 7}, + [4911] = {.lex_state = 14, .external_lex_state = 7}, + [4912] = {.lex_state = 14, .external_lex_state = 7}, + [4913] = {.lex_state = 14, .external_lex_state = 7}, + [4914] = {.lex_state = 14, .external_lex_state = 7}, + [4915] = {.lex_state = 14, .external_lex_state = 7}, + [4916] = {.lex_state = 14, .external_lex_state = 7}, + [4917] = {.lex_state = 14, .external_lex_state = 7}, + [4918] = {.lex_state = 12, .external_lex_state = 5}, + [4919] = {.lex_state = 14, .external_lex_state = 6}, + [4920] = {.lex_state = 14, .external_lex_state = 7}, + [4921] = {.lex_state = 12, .external_lex_state = 5}, + [4922] = {.lex_state = 14, .external_lex_state = 7}, + [4923] = {.lex_state = 14, .external_lex_state = 7}, + [4924] = {.lex_state = 12, .external_lex_state = 5}, + [4925] = {.lex_state = 12, .external_lex_state = 5}, + [4926] = {.lex_state = 14, .external_lex_state = 7}, + [4927] = {.lex_state = 14, .external_lex_state = 6}, + [4928] = {.lex_state = 14, .external_lex_state = 7}, + [4929] = {.lex_state = 14, .external_lex_state = 7}, + [4930] = {.lex_state = 14, .external_lex_state = 7}, + [4931] = {.lex_state = 12, .external_lex_state = 5}, + [4932] = {.lex_state = 14, .external_lex_state = 7}, + [4933] = {.lex_state = 14, .external_lex_state = 7}, + [4934] = {.lex_state = 14, .external_lex_state = 7}, + [4935] = {.lex_state = 12, .external_lex_state = 5}, + [4936] = {.lex_state = 12, .external_lex_state = 5}, + [4937] = {.lex_state = 12, .external_lex_state = 5}, + [4938] = {.lex_state = 14, .external_lex_state = 7}, + [4939] = {.lex_state = 12, .external_lex_state = 5}, + [4940] = {.lex_state = 12, .external_lex_state = 5}, + [4941] = {.lex_state = 14, .external_lex_state = 7}, + [4942] = {.lex_state = 14, .external_lex_state = 7}, + [4943] = {.lex_state = 12, .external_lex_state = 5}, + [4944] = {.lex_state = 14, .external_lex_state = 7}, + [4945] = {.lex_state = 12, .external_lex_state = 5}, + [4946] = {.lex_state = 12, .external_lex_state = 5}, + [4947] = {.lex_state = 14, .external_lex_state = 7}, + [4948] = {.lex_state = 14, .external_lex_state = 7}, + [4949] = {.lex_state = 14, .external_lex_state = 7}, + [4950] = {.lex_state = 14, .external_lex_state = 7}, + [4951] = {.lex_state = 14, .external_lex_state = 7}, + [4952] = {.lex_state = 14, .external_lex_state = 7}, + [4953] = {.lex_state = 14, .external_lex_state = 7}, + [4954] = {.lex_state = 14, .external_lex_state = 6}, + [4955] = {.lex_state = 14, .external_lex_state = 7}, + [4956] = {.lex_state = 14, .external_lex_state = 7}, + [4957] = {.lex_state = 14, .external_lex_state = 6}, + [4958] = {.lex_state = 14, .external_lex_state = 7}, + [4959] = {.lex_state = 14, .external_lex_state = 7}, + [4960] = {.lex_state = 12, .external_lex_state = 5}, + [4961] = {.lex_state = 12, .external_lex_state = 5}, + [4962] = {.lex_state = 14, .external_lex_state = 7}, + [4963] = {.lex_state = 14, .external_lex_state = 6}, + [4964] = {.lex_state = 12, .external_lex_state = 5}, + [4965] = {.lex_state = 12, .external_lex_state = 5}, + [4966] = {.lex_state = 12, .external_lex_state = 5}, + [4967] = {.lex_state = 12, .external_lex_state = 5}, + [4968] = {.lex_state = 14, .external_lex_state = 7}, + [4969] = {.lex_state = 14, .external_lex_state = 7}, + [4970] = {.lex_state = 14, .external_lex_state = 6}, + [4971] = {.lex_state = 14, .external_lex_state = 7}, + [4972] = {.lex_state = 14, .external_lex_state = 7}, + [4973] = {.lex_state = 12, .external_lex_state = 5}, + [4974] = {.lex_state = 14, .external_lex_state = 7}, + [4975] = {.lex_state = 14, .external_lex_state = 7}, + [4976] = {.lex_state = 14, .external_lex_state = 6}, + [4977] = {.lex_state = 12, .external_lex_state = 5}, + [4978] = {.lex_state = 16, .external_lex_state = 7}, + [4979] = {.lex_state = 14, .external_lex_state = 7}, + [4980] = {.lex_state = 12, .external_lex_state = 5}, + [4981] = {.lex_state = 14, .external_lex_state = 7}, + [4982] = {.lex_state = 14, .external_lex_state = 7}, + [4983] = {.lex_state = 14, .external_lex_state = 7}, + [4984] = {.lex_state = 14, .external_lex_state = 7}, + [4985] = {.lex_state = 14, .external_lex_state = 7}, + [4986] = {.lex_state = 12, .external_lex_state = 5}, + [4987] = {.lex_state = 14, .external_lex_state = 7}, + [4988] = {.lex_state = 12, .external_lex_state = 5}, + [4989] = {.lex_state = 14, .external_lex_state = 7}, + [4990] = {.lex_state = 12, .external_lex_state = 5}, + [4991] = {.lex_state = 14, .external_lex_state = 7}, + [4992] = {.lex_state = 14, .external_lex_state = 6}, + [4993] = {.lex_state = 14, .external_lex_state = 7}, + [4994] = {.lex_state = 14, .external_lex_state = 7}, + [4995] = {.lex_state = 14, .external_lex_state = 7}, + [4996] = {.lex_state = 14, .external_lex_state = 6}, + [4997] = {.lex_state = 12, .external_lex_state = 5}, + [4998] = {.lex_state = 14, .external_lex_state = 7}, + [4999] = {.lex_state = 14, .external_lex_state = 7}, + [5000] = {.lex_state = 12, .external_lex_state = 5}, + [5001] = {.lex_state = 14, .external_lex_state = 7}, + [5002] = {.lex_state = 12, .external_lex_state = 5}, + [5003] = {.lex_state = 14, .external_lex_state = 7}, + [5004] = {.lex_state = 12, .external_lex_state = 5}, + [5005] = {.lex_state = 14, .external_lex_state = 7}, + [5006] = {.lex_state = 14, .external_lex_state = 7}, + [5007] = {.lex_state = 14, .external_lex_state = 7}, + [5008] = {.lex_state = 14, .external_lex_state = 7}, + [5009] = {.lex_state = 14, .external_lex_state = 7}, + [5010] = {.lex_state = 14, .external_lex_state = 6}, + [5011] = {.lex_state = 14, .external_lex_state = 7}, + [5012] = {.lex_state = 12, .external_lex_state = 5}, + [5013] = {.lex_state = 14, .external_lex_state = 7}, + [5014] = {.lex_state = 12, .external_lex_state = 5}, + [5015] = {.lex_state = 12, .external_lex_state = 5}, + [5016] = {.lex_state = 14, .external_lex_state = 7}, + [5017] = {.lex_state = 12, .external_lex_state = 5}, + [5018] = {.lex_state = 12, .external_lex_state = 5}, + [5019] = {.lex_state = 12, .external_lex_state = 5}, + [5020] = {.lex_state = 14, .external_lex_state = 7}, + [5021] = {.lex_state = 12, .external_lex_state = 5}, + [5022] = {.lex_state = 12, .external_lex_state = 5}, + [5023] = {.lex_state = 14, .external_lex_state = 6}, + [5024] = {.lex_state = 14, .external_lex_state = 7}, + [5025] = {.lex_state = 14, .external_lex_state = 7}, + [5026] = {.lex_state = 12, .external_lex_state = 5}, + [5027] = {.lex_state = 14, .external_lex_state = 6}, + [5028] = {.lex_state = 14, .external_lex_state = 6}, + [5029] = {.lex_state = 14, .external_lex_state = 7}, + [5030] = {.lex_state = 14, .external_lex_state = 7}, + [5031] = {.lex_state = 14, .external_lex_state = 6}, + [5032] = {.lex_state = 12, .external_lex_state = 5}, + [5033] = {.lex_state = 14, .external_lex_state = 6}, + [5034] = {.lex_state = 14, .external_lex_state = 6}, + [5035] = {.lex_state = 14, .external_lex_state = 7}, + [5036] = {.lex_state = 14, .external_lex_state = 6}, + [5037] = {.lex_state = 14, .external_lex_state = 6}, + [5038] = {.lex_state = 14, .external_lex_state = 7}, + [5039] = {.lex_state = 14, .external_lex_state = 7}, + [5040] = {.lex_state = 12, .external_lex_state = 5}, + [5041] = {.lex_state = 14, .external_lex_state = 7}, + [5042] = {.lex_state = 14, .external_lex_state = 7}, + [5043] = {.lex_state = 14, .external_lex_state = 7}, + [5044] = {.lex_state = 12, .external_lex_state = 5}, + [5045] = {.lex_state = 14, .external_lex_state = 7}, + [5046] = {.lex_state = 14, .external_lex_state = 6}, + [5047] = {.lex_state = 14, .external_lex_state = 6}, + [5048] = {.lex_state = 12, .external_lex_state = 5}, + [5049] = {.lex_state = 14, .external_lex_state = 7}, + [5050] = {.lex_state = 14, .external_lex_state = 7}, + [5051] = {.lex_state = 14, .external_lex_state = 7}, + [5052] = {.lex_state = 14, .external_lex_state = 7}, + [5053] = {.lex_state = 14, .external_lex_state = 6}, + [5054] = {.lex_state = 12, .external_lex_state = 5}, + [5055] = {.lex_state = 14, .external_lex_state = 7}, + [5056] = {.lex_state = 14, .external_lex_state = 7}, + [5057] = {.lex_state = 14, .external_lex_state = 7}, + [5058] = {.lex_state = 12, .external_lex_state = 5}, + [5059] = {.lex_state = 14, .external_lex_state = 6}, + [5060] = {.lex_state = 12, .external_lex_state = 5}, + [5061] = {.lex_state = 12, .external_lex_state = 5}, + [5062] = {.lex_state = 14, .external_lex_state = 7}, + [5063] = {.lex_state = 14, .external_lex_state = 7}, + [5064] = {.lex_state = 14, .external_lex_state = 6}, + [5065] = {.lex_state = 12, .external_lex_state = 5}, + [5066] = {.lex_state = 14, .external_lex_state = 7}, + [5067] = {.lex_state = 14, .external_lex_state = 6}, + [5068] = {.lex_state = 14, .external_lex_state = 7}, + [5069] = {.lex_state = 14, .external_lex_state = 7}, + [5070] = {.lex_state = 14, .external_lex_state = 6}, + [5071] = {.lex_state = 14, .external_lex_state = 7}, + [5072] = {.lex_state = 14, .external_lex_state = 7}, + [5073] = {.lex_state = 14, .external_lex_state = 7}, + [5074] = {.lex_state = 14, .external_lex_state = 7}, + [5075] = {.lex_state = 14, .external_lex_state = 7}, + [5076] = {.lex_state = 14, .external_lex_state = 7}, + [5077] = {.lex_state = 14, .external_lex_state = 7}, + [5078] = {.lex_state = 14, .external_lex_state = 7}, + [5079] = {.lex_state = 14, .external_lex_state = 7}, + [5080] = {.lex_state = 14, .external_lex_state = 6}, + [5081] = {.lex_state = 14, .external_lex_state = 7}, + [5082] = {.lex_state = 14, .external_lex_state = 7}, + [5083] = {.lex_state = 12, .external_lex_state = 5}, + [5084] = {.lex_state = 14, .external_lex_state = 7}, + [5085] = {.lex_state = 12, .external_lex_state = 5}, + [5086] = {.lex_state = 12, .external_lex_state = 5}, + [5087] = {.lex_state = 12, .external_lex_state = 5}, + [5088] = {.lex_state = 14, .external_lex_state = 7}, + [5089] = {.lex_state = 14, .external_lex_state = 6}, + [5090] = {.lex_state = 14, .external_lex_state = 7}, + [5091] = {.lex_state = 14, .external_lex_state = 7}, + [5092] = {.lex_state = 12, .external_lex_state = 5}, + [5093] = {.lex_state = 14, .external_lex_state = 7}, + [5094] = {.lex_state = 14, .external_lex_state = 7}, + [5095] = {.lex_state = 14, .external_lex_state = 7}, + [5096] = {.lex_state = 14, .external_lex_state = 7}, + [5097] = {.lex_state = 14, .external_lex_state = 7}, + [5098] = {.lex_state = 14, .external_lex_state = 6}, + [5099] = {.lex_state = 14, .external_lex_state = 7}, + [5100] = {.lex_state = 14, .external_lex_state = 7}, + [5101] = {.lex_state = 14, .external_lex_state = 7}, + [5102] = {.lex_state = 14, .external_lex_state = 7}, + [5103] = {.lex_state = 14, .external_lex_state = 7}, + [5104] = {.lex_state = 14, .external_lex_state = 7}, + [5105] = {.lex_state = 14, .external_lex_state = 7}, + [5106] = {.lex_state = 14, .external_lex_state = 7}, + [5107] = {.lex_state = 14, .external_lex_state = 7}, + [5108] = {.lex_state = 14, .external_lex_state = 7}, + [5109] = {.lex_state = 14, .external_lex_state = 7}, + [5110] = {.lex_state = 14, .external_lex_state = 7}, + [5111] = {.lex_state = 12, .external_lex_state = 5}, + [5112] = {.lex_state = 14, .external_lex_state = 7}, + [5113] = {.lex_state = 14, .external_lex_state = 7}, + [5114] = {.lex_state = 14, .external_lex_state = 7}, + [5115] = {.lex_state = 14, .external_lex_state = 7}, + [5116] = {.lex_state = 14, .external_lex_state = 7}, + [5117] = {.lex_state = 14, .external_lex_state = 6}, + [5118] = {.lex_state = 14, .external_lex_state = 7}, + [5119] = {.lex_state = 12, .external_lex_state = 5}, + [5120] = {.lex_state = 14, .external_lex_state = 7}, + [5121] = {.lex_state = 14, .external_lex_state = 7}, + [5122] = {.lex_state = 14, .external_lex_state = 7}, + [5123] = {.lex_state = 14, .external_lex_state = 7}, + [5124] = {.lex_state = 14, .external_lex_state = 7}, + [5125] = {.lex_state = 14, .external_lex_state = 7}, + [5126] = {.lex_state = 14, .external_lex_state = 7}, + [5127] = {.lex_state = 14, .external_lex_state = 7}, + [5128] = {.lex_state = 14, .external_lex_state = 7}, + [5129] = {.lex_state = 14, .external_lex_state = 7}, + [5130] = {.lex_state = 14, .external_lex_state = 7}, + [5131] = {.lex_state = 14, .external_lex_state = 7}, + [5132] = {.lex_state = 14, .external_lex_state = 7}, + [5133] = {.lex_state = 12, .external_lex_state = 5}, + [5134] = {.lex_state = 14, .external_lex_state = 7}, + [5135] = {.lex_state = 14, .external_lex_state = 7}, + [5136] = {.lex_state = 14, .external_lex_state = 7}, + [5137] = {.lex_state = 12, .external_lex_state = 5}, + [5138] = {.lex_state = 14, .external_lex_state = 7}, + [5139] = {.lex_state = 14, .external_lex_state = 7}, + [5140] = {.lex_state = 14, .external_lex_state = 7}, + [5141] = {.lex_state = 14, .external_lex_state = 7}, + [5142] = {.lex_state = 14, .external_lex_state = 7}, + [5143] = {.lex_state = 14, .external_lex_state = 7}, + [5144] = {.lex_state = 14, .external_lex_state = 7}, + [5145] = {.lex_state = 14, .external_lex_state = 7}, + [5146] = {.lex_state = 14, .external_lex_state = 7}, + [5147] = {.lex_state = 14, .external_lex_state = 7}, + [5148] = {.lex_state = 12, .external_lex_state = 5}, + [5149] = {.lex_state = 14, .external_lex_state = 7}, + [5150] = {.lex_state = 14, .external_lex_state = 7}, + [5151] = {.lex_state = 12, .external_lex_state = 5}, + [5152] = {.lex_state = 14, .external_lex_state = 7}, + [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}, + [5157] = {.lex_state = 14, .external_lex_state = 7}, + [5158] = {.lex_state = 14, .external_lex_state = 7}, + [5159] = {.lex_state = 14, .external_lex_state = 7}, + [5160] = {.lex_state = 14, .external_lex_state = 7}, + [5161] = {.lex_state = 14, .external_lex_state = 7}, + [5162] = {.lex_state = 14, .external_lex_state = 7}, + [5163] = {.lex_state = 14, .external_lex_state = 7}, + [5164] = {.lex_state = 14, .external_lex_state = 7}, + [5165] = {.lex_state = 14, .external_lex_state = 7}, + [5166] = {.lex_state = 14, .external_lex_state = 7}, + [5167] = {.lex_state = 14, .external_lex_state = 7}, + [5168] = {.lex_state = 14, .external_lex_state = 7}, + [5169] = {.lex_state = 14, .external_lex_state = 7}, + [5170] = {.lex_state = 14, .external_lex_state = 7}, + [5171] = {.lex_state = 14, .external_lex_state = 7}, + [5172] = {.lex_state = 14, .external_lex_state = 7}, + [5173] = {.lex_state = 14, .external_lex_state = 6}, + [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}, + [5179] = {.lex_state = 14, .external_lex_state = 7}, + [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}, + [5187] = {.lex_state = 14, .external_lex_state = 7}, + [5188] = {.lex_state = 14, .external_lex_state = 6}, + [5189] = {.lex_state = 14, .external_lex_state = 7}, + [5190] = {.lex_state = 14, .external_lex_state = 6}, + [5191] = {.lex_state = 14, .external_lex_state = 7}, + [5192] = {.lex_state = 14, .external_lex_state = 7}, + [5193] = {.lex_state = 14, .external_lex_state = 7}, + [5194] = {.lex_state = 14, .external_lex_state = 7}, + [5195] = {.lex_state = 12, .external_lex_state = 5}, + [5196] = {.lex_state = 14, .external_lex_state = 7}, + [5197] = {.lex_state = 14, .external_lex_state = 7}, + [5198] = {.lex_state = 14, .external_lex_state = 7}, + [5199] = {.lex_state = 14, .external_lex_state = 7}, + [5200] = {.lex_state = 12, .external_lex_state = 5}, + [5201] = {.lex_state = 14, .external_lex_state = 7}, + [5202] = {.lex_state = 14, .external_lex_state = 7}, + [5203] = {.lex_state = 14, .external_lex_state = 7}, + [5204] = {.lex_state = 14, .external_lex_state = 7}, + [5205] = {.lex_state = 14, .external_lex_state = 7}, + [5206] = {.lex_state = 14, .external_lex_state = 6}, + [5207] = {.lex_state = 14, .external_lex_state = 6}, + [5208] = {.lex_state = 14, .external_lex_state = 7}, + [5209] = {.lex_state = 14, .external_lex_state = 7}, + [5210] = {.lex_state = 14, .external_lex_state = 7}, + [5211] = {.lex_state = 14, .external_lex_state = 7}, + [5212] = {.lex_state = 14, .external_lex_state = 6}, + [5213] = {.lex_state = 14, .external_lex_state = 7}, + [5214] = {.lex_state = 14, .external_lex_state = 7}, + [5215] = {.lex_state = 14, .external_lex_state = 7}, + [5216] = {.lex_state = 14, .external_lex_state = 7}, + [5217] = {.lex_state = 14, .external_lex_state = 7}, + [5218] = {.lex_state = 14, .external_lex_state = 7}, + [5219] = {.lex_state = 14, .external_lex_state = 7}, + [5220] = {.lex_state = 14, .external_lex_state = 7}, + [5221] = {.lex_state = 14, .external_lex_state = 7}, + [5222] = {.lex_state = 14, .external_lex_state = 7}, + [5223] = {.lex_state = 14, .external_lex_state = 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 = 6}, + [5230] = {.lex_state = 14, .external_lex_state = 7}, + [5231] = {.lex_state = 14, .external_lex_state = 7}, + [5232] = {.lex_state = 12, .external_lex_state = 5}, + [5233] = {.lex_state = 14, .external_lex_state = 6}, + [5234] = {.lex_state = 14, .external_lex_state = 6}, + [5235] = {.lex_state = 12, .external_lex_state = 5}, + [5236] = {.lex_state = 14, .external_lex_state = 7}, + [5237] = {.lex_state = 14, .external_lex_state = 6}, + [5238] = {.lex_state = 14, .external_lex_state = 7}, + [5239] = {.lex_state = 14, .external_lex_state = 6}, + [5240] = {.lex_state = 14, .external_lex_state = 7}, + [5241] = {.lex_state = 14, .external_lex_state = 7}, + [5242] = {.lex_state = 12, .external_lex_state = 5}, + [5243] = {.lex_state = 14, .external_lex_state = 7}, + [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}, + [5248] = {.lex_state = 14, .external_lex_state = 7}, + [5249] = {.lex_state = 14, .external_lex_state = 7}, + [5250] = {.lex_state = 14, .external_lex_state = 6}, + [5251] = {.lex_state = 14, .external_lex_state = 7}, + [5252] = {.lex_state = 14, .external_lex_state = 7}, + [5253] = {.lex_state = 14, .external_lex_state = 7}, + [5254] = {.lex_state = 14, .external_lex_state = 7}, + [5255] = {.lex_state = 12, .external_lex_state = 5}, + [5256] = {.lex_state = 14, .external_lex_state = 7}, + [5257] = {.lex_state = 14, .external_lex_state = 7}, + [5258] = {.lex_state = 12, .external_lex_state = 5}, + [5259] = {.lex_state = 14, .external_lex_state = 7}, + [5260] = {.lex_state = 14, .external_lex_state = 7}, + [5261] = {.lex_state = 14, .external_lex_state = 7}, + [5262] = {.lex_state = 14, .external_lex_state = 7}, + [5263] = {.lex_state = 14, .external_lex_state = 6}, + [5264] = {.lex_state = 14, .external_lex_state = 7}, + [5265] = {.lex_state = 14, .external_lex_state = 7}, + [5266] = {.lex_state = 12, .external_lex_state = 5}, + [5267] = {.lex_state = 14, .external_lex_state = 6}, + [5268] = {.lex_state = 12, .external_lex_state = 5}, + [5269] = {.lex_state = 12, .external_lex_state = 5}, + [5270] = {.lex_state = 12, .external_lex_state = 5}, + [5271] = {.lex_state = 12, .external_lex_state = 5}, + [5272] = {.lex_state = 12, .external_lex_state = 5}, + [5273] = {.lex_state = 14, .external_lex_state = 6}, + [5274] = {.lex_state = 14, .external_lex_state = 6}, + [5275] = {.lex_state = 12, .external_lex_state = 5}, + [5276] = {.lex_state = 14, .external_lex_state = 6}, + [5277] = {.lex_state = 14, .external_lex_state = 6}, + [5278] = {.lex_state = 14, .external_lex_state = 6}, + [5279] = {.lex_state = 14, .external_lex_state = 6}, + [5280] = {.lex_state = 14, .external_lex_state = 6}, + [5281] = {.lex_state = 14, .external_lex_state = 6}, + [5282] = {.lex_state = 14, .external_lex_state = 6}, + [5283] = {.lex_state = 14, .external_lex_state = 6}, + [5284] = {.lex_state = 14, .external_lex_state = 6}, + [5285] = {.lex_state = 14, .external_lex_state = 6}, + [5286] = {.lex_state = 14, .external_lex_state = 6}, + [5287] = {.lex_state = 12, .external_lex_state = 5}, + [5288] = {.lex_state = 12, .external_lex_state = 5}, + [5289] = {.lex_state = 12, .external_lex_state = 5}, + [5290] = {.lex_state = 14, .external_lex_state = 6}, + [5291] = {.lex_state = 12, .external_lex_state = 5}, + [5292] = {.lex_state = 14, .external_lex_state = 6}, + [5293] = {.lex_state = 12, .external_lex_state = 5}, + [5294] = {.lex_state = 12, .external_lex_state = 5}, + [5295] = {.lex_state = 12, .external_lex_state = 5}, + [5296] = {.lex_state = 12, .external_lex_state = 5}, + [5297] = {.lex_state = 12, .external_lex_state = 5}, + [5298] = {.lex_state = 12, .external_lex_state = 5}, + [5299] = {.lex_state = 12, .external_lex_state = 5}, + [5300] = {.lex_state = 12, .external_lex_state = 5}, + [5301] = {.lex_state = 12, .external_lex_state = 5}, + [5302] = {.lex_state = 14, .external_lex_state = 7}, + [5303] = {.lex_state = 14, .external_lex_state = 7}, + [5304] = {.lex_state = 14, .external_lex_state = 6}, + [5305] = {.lex_state = 14, .external_lex_state = 7}, + [5306] = {.lex_state = 14, .external_lex_state = 7}, + [5307] = {.lex_state = 14, .external_lex_state = 7}, + [5308] = {.lex_state = 14, .external_lex_state = 7}, + [5309] = {.lex_state = 12, .external_lex_state = 5}, + [5310] = {.lex_state = 14, .external_lex_state = 7}, + [5311] = {.lex_state = 14, .external_lex_state = 6}, + [5312] = {.lex_state = 12, .external_lex_state = 5}, + [5313] = {.lex_state = 14, .external_lex_state = 7}, + [5314] = {.lex_state = 12, .external_lex_state = 5}, + [5315] = {.lex_state = 12, .external_lex_state = 5}, + [5316] = {.lex_state = 12, .external_lex_state = 5}, + [5317] = {.lex_state = 12, .external_lex_state = 5}, + [5318] = {.lex_state = 12, .external_lex_state = 5}, + [5319] = {.lex_state = 14, .external_lex_state = 6}, + [5320] = {.lex_state = 14, .external_lex_state = 6}, + [5321] = {.lex_state = 14, .external_lex_state = 6}, + [5322] = {.lex_state = 14, .external_lex_state = 6}, + [5323] = {.lex_state = 12, .external_lex_state = 5}, + [5324] = {.lex_state = 14, .external_lex_state = 6}, + [5325] = {.lex_state = 14, .external_lex_state = 6}, + [5326] = {.lex_state = 14, .external_lex_state = 7}, + [5327] = {.lex_state = 14, .external_lex_state = 7}, + [5328] = {.lex_state = 24, .external_lex_state = 9}, + [5329] = {.lex_state = 14, .external_lex_state = 7}, + [5330] = {.lex_state = 12, .external_lex_state = 5}, + [5331] = {.lex_state = 24, .external_lex_state = 9}, + [5332] = {.lex_state = 12, .external_lex_state = 5}, + [5333] = {.lex_state = 12, .external_lex_state = 5}, + [5334] = {.lex_state = 14, .external_lex_state = 7}, + [5335] = {.lex_state = 12, .external_lex_state = 5}, + [5336] = {.lex_state = 12, .external_lex_state = 5}, + [5337] = {.lex_state = 12, .external_lex_state = 5}, + [5338] = {.lex_state = 14, .external_lex_state = 7}, + [5339] = {.lex_state = 14, .external_lex_state = 7}, + [5340] = {.lex_state = 9, .external_lex_state = 2}, + [5341] = {.lex_state = 12, .external_lex_state = 5}, + [5342] = {.lex_state = 12, .external_lex_state = 5}, + [5343] = {.lex_state = 14, .external_lex_state = 7}, + [5344] = {.lex_state = 12, .external_lex_state = 5}, + [5345] = {.lex_state = 9, .external_lex_state = 2}, + [5346] = {.lex_state = 12, .external_lex_state = 5}, + [5347] = {.lex_state = 12, .external_lex_state = 5}, + [5348] = {.lex_state = 14, .external_lex_state = 7}, + [5349] = {.lex_state = 12, .external_lex_state = 5}, + [5350] = {.lex_state = 14, .external_lex_state = 6}, + [5351] = {.lex_state = 12, .external_lex_state = 5}, + [5352] = {.lex_state = 14, .external_lex_state = 7}, + [5353] = {.lex_state = 12, .external_lex_state = 5}, + [5354] = {.lex_state = 12, .external_lex_state = 5}, + [5355] = {.lex_state = 12, .external_lex_state = 5}, + [5356] = {.lex_state = 12, .external_lex_state = 5}, + [5357] = {.lex_state = 12, .external_lex_state = 5}, + [5358] = {.lex_state = 12, .external_lex_state = 5}, + [5359] = {.lex_state = 12, .external_lex_state = 5}, + [5360] = {.lex_state = 12, .external_lex_state = 5}, + [5361] = {.lex_state = 12, .external_lex_state = 5}, + [5362] = {.lex_state = 24, .external_lex_state = 9}, + [5363] = {.lex_state = 12, .external_lex_state = 5}, + [5364] = {.lex_state = 12, .external_lex_state = 5}, + [5365] = {.lex_state = 12, .external_lex_state = 5}, + [5366] = {.lex_state = 12, .external_lex_state = 5}, + [5367] = {.lex_state = 9, .external_lex_state = 2}, + [5368] = {.lex_state = 12, .external_lex_state = 5}, + [5369] = {.lex_state = 12, .external_lex_state = 5}, + [5370] = {.lex_state = 12, .external_lex_state = 5}, + [5371] = {.lex_state = 14, .external_lex_state = 7}, + [5372] = {.lex_state = 14, .external_lex_state = 7}, + [5373] = {.lex_state = 12, .external_lex_state = 5}, + [5374] = {.lex_state = 14, .external_lex_state = 6}, + [5375] = {.lex_state = 12, .external_lex_state = 5}, + [5376] = {.lex_state = 24, .external_lex_state = 9}, + [5377] = {.lex_state = 12, .external_lex_state = 5}, + [5378] = {.lex_state = 12, .external_lex_state = 5}, + [5379] = {.lex_state = 14, .external_lex_state = 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 = 14, .external_lex_state = 7}, + [5384] = {.lex_state = 12, .external_lex_state = 5}, + [5385] = {.lex_state = 12, .external_lex_state = 5}, + [5386] = {.lex_state = 12, .external_lex_state = 5}, + [5387] = {.lex_state = 14, .external_lex_state = 7}, + [5388] = {.lex_state = 12, .external_lex_state = 5}, + [5389] = {.lex_state = 14, .external_lex_state = 7}, + [5390] = {.lex_state = 12, .external_lex_state = 5}, + [5391] = {.lex_state = 12, .external_lex_state = 5}, + [5392] = {.lex_state = 14, .external_lex_state = 7}, + [5393] = {.lex_state = 12, .external_lex_state = 5}, + [5394] = {.lex_state = 12, .external_lex_state = 5}, + [5395] = {.lex_state = 14, .external_lex_state = 7}, + [5396] = {.lex_state = 14, .external_lex_state = 7}, + [5397] = {.lex_state = 12, .external_lex_state = 5}, + [5398] = {.lex_state = 12, .external_lex_state = 5}, + [5399] = {.lex_state = 12, .external_lex_state = 5}, + [5400] = {.lex_state = 12, .external_lex_state = 5}, + [5401] = {.lex_state = 14, .external_lex_state = 7}, + [5402] = {.lex_state = 14, .external_lex_state = 7}, + [5403] = {.lex_state = 12, .external_lex_state = 5}, + [5404] = {.lex_state = 12, .external_lex_state = 5}, + [5405] = {.lex_state = 12, .external_lex_state = 5}, + [5406] = {.lex_state = 12, .external_lex_state = 5}, + [5407] = {.lex_state = 12, .external_lex_state = 5}, + [5408] = {.lex_state = 14, .external_lex_state = 7}, + [5409] = {.lex_state = 14, .external_lex_state = 7}, + [5410] = {.lex_state = 12, .external_lex_state = 5}, + [5411] = {.lex_state = 12, .external_lex_state = 5}, + [5412] = {.lex_state = 12, .external_lex_state = 5}, + [5413] = {.lex_state = 12, .external_lex_state = 5}, + [5414] = {.lex_state = 12, .external_lex_state = 5}, + [5415] = {.lex_state = 12, .external_lex_state = 5}, + [5416] = {.lex_state = 12, .external_lex_state = 5}, + [5417] = {.lex_state = 12, .external_lex_state = 5}, + [5418] = {.lex_state = 12, .external_lex_state = 5}, + [5419] = {.lex_state = 12, .external_lex_state = 5}, + [5420] = {.lex_state = 12, .external_lex_state = 5}, + [5421] = {.lex_state = 12, .external_lex_state = 5}, + [5422] = {.lex_state = 12, .external_lex_state = 5}, + [5423] = {.lex_state = 12, .external_lex_state = 5}, + [5424] = {.lex_state = 12, .external_lex_state = 5}, + [5425] = {.lex_state = 12, .external_lex_state = 5}, + [5426] = {.lex_state = 14, .external_lex_state = 7}, + [5427] = {.lex_state = 14, .external_lex_state = 7}, + [5428] = {.lex_state = 14, .external_lex_state = 7}, + [5429] = {.lex_state = 14, .external_lex_state = 7}, + [5430] = {.lex_state = 14, .external_lex_state = 7}, + [5431] = {.lex_state = 21, .external_lex_state = 9}, + [5432] = {.lex_state = 14, .external_lex_state = 6}, + [5433] = {.lex_state = 14, .external_lex_state = 7}, + [5434] = {.lex_state = 14, .external_lex_state = 6}, + [5435] = {.lex_state = 9, .external_lex_state = 2}, + [5436] = {.lex_state = 21, .external_lex_state = 9}, + [5437] = {.lex_state = 14, .external_lex_state = 6}, + [5438] = {.lex_state = 14, .external_lex_state = 6}, + [5439] = {.lex_state = 21, .external_lex_state = 9}, + [5440] = {.lex_state = 9, .external_lex_state = 2}, + [5441] = {.lex_state = 14, .external_lex_state = 6}, + [5442] = {.lex_state = 9, .external_lex_state = 2}, + [5443] = {.lex_state = 9, .external_lex_state = 2}, + [5444] = {.lex_state = 14, .external_lex_state = 6}, + [5445] = {.lex_state = 14, .external_lex_state = 7}, + [5446] = {.lex_state = 14, .external_lex_state = 7}, + [5447] = {.lex_state = 14, .external_lex_state = 7}, + [5448] = {.lex_state = 14, .external_lex_state = 6}, + [5449] = {.lex_state = 14, .external_lex_state = 6}, + [5450] = {.lex_state = 14, .external_lex_state = 6}, + [5451] = {.lex_state = 14, .external_lex_state = 7}, + [5452] = {.lex_state = 21, .external_lex_state = 9}, + [5453] = {.lex_state = 24, .external_lex_state = 8}, + [5454] = {.lex_state = 24, .external_lex_state = 8}, + [5455] = {.lex_state = 14, .external_lex_state = 6}, + [5456] = {.lex_state = 14, .external_lex_state = 7}, + [5457] = {.lex_state = 14, .external_lex_state = 7}, + [5458] = {.lex_state = 9, .external_lex_state = 2}, + [5459] = {.lex_state = 14, .external_lex_state = 6}, + [5460] = {.lex_state = 14, .external_lex_state = 6}, + [5461] = {.lex_state = 14, .external_lex_state = 7}, + [5462] = {.lex_state = 14, .external_lex_state = 7}, + [5463] = {.lex_state = 14, .external_lex_state = 7}, + [5464] = {.lex_state = 14, .external_lex_state = 7}, + [5465] = {.lex_state = 14, .external_lex_state = 6}, + [5466] = {.lex_state = 12, .external_lex_state = 2}, + [5467] = {.lex_state = 14, .external_lex_state = 7}, + [5468] = {.lex_state = 14, .external_lex_state = 6}, + [5469] = {.lex_state = 12, .external_lex_state = 2}, + [5470] = {.lex_state = 14, .external_lex_state = 7}, + [5471] = {.lex_state = 14, .external_lex_state = 6}, + [5472] = {.lex_state = 14, .external_lex_state = 7}, + [5473] = {.lex_state = 14, .external_lex_state = 7}, + [5474] = {.lex_state = 21, .external_lex_state = 9}, + [5475] = {.lex_state = 14, .external_lex_state = 6}, + [5476] = {.lex_state = 14, .external_lex_state = 6}, + [5477] = {.lex_state = 24, .external_lex_state = 8}, + [5478] = {.lex_state = 14, .external_lex_state = 7}, + [5479] = {.lex_state = 14, .external_lex_state = 7}, + [5480] = {.lex_state = 14, .external_lex_state = 7}, + [5481] = {.lex_state = 24, .external_lex_state = 8}, + [5482] = {.lex_state = 14, .external_lex_state = 6}, + [5483] = {.lex_state = 14, .external_lex_state = 6}, + [5484] = {.lex_state = 9, .external_lex_state = 2}, + [5485] = {.lex_state = 14, .external_lex_state = 7}, + [5486] = {.lex_state = 21, .external_lex_state = 8}, + [5487] = {.lex_state = 9, .external_lex_state = 2}, + [5488] = {.lex_state = 14, .external_lex_state = 6}, + [5489] = {.lex_state = 9, .external_lex_state = 2}, + [5490] = {.lex_state = 21, .external_lex_state = 8}, + [5491] = {.lex_state = 21, .external_lex_state = 8}, + [5492] = {.lex_state = 24, .external_lex_state = 9}, + [5493] = {.lex_state = 21, .external_lex_state = 8}, + [5494] = {.lex_state = 21, .external_lex_state = 8}, + [5495] = {.lex_state = 21, .external_lex_state = 8}, + [5496] = {.lex_state = 24, .external_lex_state = 9}, + [5497] = {.lex_state = 14, .external_lex_state = 7}, + [5498] = {.lex_state = 21, .external_lex_state = 8}, + [5499] = {.lex_state = 21, .external_lex_state = 8}, + [5500] = {.lex_state = 14, .external_lex_state = 7}, + [5501] = {.lex_state = 9, .external_lex_state = 2}, + [5502] = {.lex_state = 24, .external_lex_state = 9}, + [5503] = {.lex_state = 9, .external_lex_state = 2}, + [5504] = {.lex_state = 14, .external_lex_state = 7}, + [5505] = {.lex_state = 14, .external_lex_state = 7}, + [5506] = {.lex_state = 14, .external_lex_state = 7}, + [5507] = {.lex_state = 21, .external_lex_state = 8}, + [5508] = {.lex_state = 14, .external_lex_state = 6}, + [5509] = {.lex_state = 14, .external_lex_state = 6}, + [5510] = {.lex_state = 14, .external_lex_state = 7}, + [5511] = {.lex_state = 14, .external_lex_state = 6}, + [5512] = {.lex_state = 21, .external_lex_state = 8}, + [5513] = {.lex_state = 21, .external_lex_state = 8}, + [5514] = {.lex_state = 21, .external_lex_state = 8}, + [5515] = {.lex_state = 14, .external_lex_state = 7}, + [5516] = {.lex_state = 14, .external_lex_state = 7}, + [5517] = {.lex_state = 21, .external_lex_state = 8}, + [5518] = {.lex_state = 14, .external_lex_state = 7}, + [5519] = {.lex_state = 21, .external_lex_state = 8}, + [5520] = {.lex_state = 24, .external_lex_state = 9}, + [5521] = {.lex_state = 21, .external_lex_state = 8}, + [5522] = {.lex_state = 14, .external_lex_state = 7}, + [5523] = {.lex_state = 21, .external_lex_state = 8}, + [5524] = {.lex_state = 14, .external_lex_state = 6}, + [5525] = {.lex_state = 14, .external_lex_state = 6}, + [5526] = {.lex_state = 14, .external_lex_state = 7}, + [5527] = {.lex_state = 14, .external_lex_state = 6}, + [5528] = {.lex_state = 14, .external_lex_state = 7}, + [5529] = {.lex_state = 14, .external_lex_state = 7}, + [5530] = {.lex_state = 14, .external_lex_state = 7}, + [5531] = {.lex_state = 14, .external_lex_state = 7}, + [5532] = {.lex_state = 14, .external_lex_state = 6}, + [5533] = {.lex_state = 14, .external_lex_state = 6}, + [5534] = {.lex_state = 14, .external_lex_state = 6}, + [5535] = {.lex_state = 9, .external_lex_state = 2}, + [5536] = {.lex_state = 14, .external_lex_state = 6}, + [5537] = {.lex_state = 14, .external_lex_state = 6}, + [5538] = {.lex_state = 21, .external_lex_state = 8}, + [5539] = {.lex_state = 14, .external_lex_state = 7}, + [5540] = {.lex_state = 21, .external_lex_state = 8}, + [5541] = {.lex_state = 21, .external_lex_state = 9}, + [5542] = {.lex_state = 14, .external_lex_state = 6}, + [5543] = {.lex_state = 14, .external_lex_state = 7}, + [5544] = {.lex_state = 21, .external_lex_state = 8}, + [5545] = {.lex_state = 21, .external_lex_state = 8}, + [5546] = {.lex_state = 14, .external_lex_state = 7}, + [5547] = {.lex_state = 9, .external_lex_state = 2}, + [5548] = {.lex_state = 14, .external_lex_state = 7}, + [5549] = {.lex_state = 21, .external_lex_state = 9}, + [5550] = {.lex_state = 21, .external_lex_state = 8}, + [5551] = {.lex_state = 14, .external_lex_state = 7}, + [5552] = {.lex_state = 14, .external_lex_state = 7}, + [5553] = {.lex_state = 21, .external_lex_state = 8}, + [5554] = {.lex_state = 14, .external_lex_state = 6}, + [5555] = {.lex_state = 21, .external_lex_state = 8}, + [5556] = {.lex_state = 21, .external_lex_state = 8}, + [5557] = {.lex_state = 14, .external_lex_state = 7}, + [5558] = {.lex_state = 21, .external_lex_state = 8}, + [5559] = {.lex_state = 21, .external_lex_state = 8}, + [5560] = {.lex_state = 21, .external_lex_state = 8}, + [5561] = {.lex_state = 9, .external_lex_state = 2}, + [5562] = {.lex_state = 21, .external_lex_state = 8}, + [5563] = {.lex_state = 14, .external_lex_state = 7}, + [5564] = {.lex_state = 24, .external_lex_state = 8}, + [5565] = {.lex_state = 21, .external_lex_state = 8}, + [5566] = {.lex_state = 21, .external_lex_state = 8}, + [5567] = {.lex_state = 14, .external_lex_state = 7}, + [5568] = {.lex_state = 9, .external_lex_state = 2}, + [5569] = {.lex_state = 24, .external_lex_state = 8}, + [5570] = {.lex_state = 14, .external_lex_state = 7}, + [5571] = {.lex_state = 9, .external_lex_state = 2}, + [5572] = {.lex_state = 21, .external_lex_state = 8}, + [5573] = {.lex_state = 9, .external_lex_state = 2}, + [5574] = {.lex_state = 21, .external_lex_state = 8}, + [5575] = {.lex_state = 21, .external_lex_state = 9}, + [5576] = {.lex_state = 9, .external_lex_state = 2}, + [5577] = {.lex_state = 14, .external_lex_state = 7}, + [5578] = {.lex_state = 21, .external_lex_state = 8}, + [5579] = {.lex_state = 14, .external_lex_state = 6}, + [5580] = {.lex_state = 14, .external_lex_state = 7}, + [5581] = {.lex_state = 21, .external_lex_state = 8}, + [5582] = {.lex_state = 21, .external_lex_state = 8}, + [5583] = {.lex_state = 14, .external_lex_state = 7}, + [5584] = {.lex_state = 21, .external_lex_state = 9}, + [5585] = {.lex_state = 9, .external_lex_state = 2}, + [5586] = {.lex_state = 24, .external_lex_state = 8}, + [5587] = {.lex_state = 14, .external_lex_state = 7}, + [5588] = {.lex_state = 21, .external_lex_state = 8}, + [5589] = {.lex_state = 21, .external_lex_state = 8}, + [5590] = {.lex_state = 14, .external_lex_state = 6}, + [5591] = {.lex_state = 21, .external_lex_state = 8}, + [5592] = {.lex_state = 14, .external_lex_state = 7}, + [5593] = {.lex_state = 9, .external_lex_state = 2}, + [5594] = {.lex_state = 21, .external_lex_state = 9}, + [5595] = {.lex_state = 21, .external_lex_state = 8}, + [5596] = {.lex_state = 21, .external_lex_state = 8}, + [5597] = {.lex_state = 24, .external_lex_state = 8}, + [5598] = {.lex_state = 21, .external_lex_state = 8}, + [5599] = {.lex_state = 9, .external_lex_state = 2}, + [5600] = {.lex_state = 21, .external_lex_state = 8}, + [5601] = {.lex_state = 21, .external_lex_state = 8}, + [5602] = {.lex_state = 21, .external_lex_state = 8}, + [5603] = {.lex_state = 21, .external_lex_state = 8}, + [5604] = {.lex_state = 14, .external_lex_state = 7}, + [5605] = {.lex_state = 21, .external_lex_state = 8}, + [5606] = {.lex_state = 21, .external_lex_state = 8}, + [5607] = {.lex_state = 21, .external_lex_state = 8}, + [5608] = {.lex_state = 21, .external_lex_state = 8}, + [5609] = {.lex_state = 21, .external_lex_state = 8}, + [5610] = {.lex_state = 14, .external_lex_state = 7}, + [5611] = {.lex_state = 14, .external_lex_state = 7}, + [5612] = {.lex_state = 21, .external_lex_state = 8}, + [5613] = {.lex_state = 14, .external_lex_state = 7}, + [5614] = {.lex_state = 14, .external_lex_state = 7}, + [5615] = {.lex_state = 14, .external_lex_state = 7}, + [5616] = {.lex_state = 21, .external_lex_state = 8}, + [5617] = {.lex_state = 21, .external_lex_state = 8}, + [5618] = {.lex_state = 21, .external_lex_state = 8}, + [5619] = {.lex_state = 14, .external_lex_state = 7}, + [5620] = {.lex_state = 21, .external_lex_state = 8}, + [5621] = {.lex_state = 21, .external_lex_state = 8}, + [5622] = {.lex_state = 14, .external_lex_state = 7}, + [5623] = {.lex_state = 14, .external_lex_state = 6}, + [5624] = {.lex_state = 14, .external_lex_state = 6}, + [5625] = {.lex_state = 14, .external_lex_state = 6}, + [5626] = {.lex_state = 14, .external_lex_state = 6}, + [5627] = {.lex_state = 14, .external_lex_state = 6}, + [5628] = {.lex_state = 14, .external_lex_state = 6}, + [5629] = {.lex_state = 21, .external_lex_state = 8}, + [5630] = {.lex_state = 21, .external_lex_state = 8}, + [5631] = {.lex_state = 9, .external_lex_state = 5}, + [5632] = {.lex_state = 9, .external_lex_state = 5}, + [5633] = {.lex_state = 30, .external_lex_state = 9}, + [5634] = {.lex_state = 30, .external_lex_state = 9}, + [5635] = {.lex_state = 30, .external_lex_state = 9}, + [5636] = {.lex_state = 30, .external_lex_state = 9}, + [5637] = {.lex_state = 9, .external_lex_state = 2}, + [5638] = {.lex_state = 21, .external_lex_state = 8}, + [5639] = {.lex_state = 9, .external_lex_state = 2}, + [5640] = {.lex_state = 30, .external_lex_state = 9}, + [5641] = {.lex_state = 14, .external_lex_state = 7}, + [5642] = {.lex_state = 21, .external_lex_state = 8}, + [5643] = {.lex_state = 14, .external_lex_state = 7}, + [5644] = {.lex_state = 14, .external_lex_state = 7}, + [5645] = {.lex_state = 14, .external_lex_state = 7}, + [5646] = {.lex_state = 14, .external_lex_state = 7}, + [5647] = {.lex_state = 21, .external_lex_state = 8}, + [5648] = {.lex_state = 30, .external_lex_state = 9}, + [5649] = {.lex_state = 21, .external_lex_state = 8}, + [5650] = {.lex_state = 21, .external_lex_state = 8}, + [5651] = {.lex_state = 14, .external_lex_state = 7}, + [5652] = {.lex_state = 30, .external_lex_state = 9}, + [5653] = {.lex_state = 21, .external_lex_state = 8}, + [5654] = {.lex_state = 21, .external_lex_state = 8}, + [5655] = {.lex_state = 21, .external_lex_state = 8}, + [5656] = {.lex_state = 21, .external_lex_state = 8}, + [5657] = {.lex_state = 30, .external_lex_state = 9}, + [5658] = {.lex_state = 30, .external_lex_state = 9}, + [5659] = {.lex_state = 30, .external_lex_state = 9}, + [5660] = {.lex_state = 21, .external_lex_state = 8}, + [5661] = {.lex_state = 30, .external_lex_state = 9}, + [5662] = {.lex_state = 30, .external_lex_state = 9}, + [5663] = {.lex_state = 21, .external_lex_state = 8}, + [5664] = {.lex_state = 21, .external_lex_state = 8}, + [5665] = {.lex_state = 30, .external_lex_state = 9}, + [5666] = {.lex_state = 30, .external_lex_state = 9}, + [5667] = {.lex_state = 14, .external_lex_state = 6}, + [5668] = {.lex_state = 21, .external_lex_state = 8}, + [5669] = {.lex_state = 21, .external_lex_state = 8}, + [5670] = {.lex_state = 14, .external_lex_state = 6}, + [5671] = {.lex_state = 14, .external_lex_state = 6}, + [5672] = {.lex_state = 21, .external_lex_state = 8}, + [5673] = {.lex_state = 21, .external_lex_state = 8}, + [5674] = {.lex_state = 21, .external_lex_state = 8}, + [5675] = {.lex_state = 21, .external_lex_state = 8}, + [5676] = {.lex_state = 21, .external_lex_state = 8}, + [5677] = {.lex_state = 21, .external_lex_state = 8}, + [5678] = {.lex_state = 21, .external_lex_state = 8}, + [5679] = {.lex_state = 21, .external_lex_state = 8}, + [5680] = {.lex_state = 21, .external_lex_state = 8}, + [5681] = {.lex_state = 21, .external_lex_state = 8}, + [5682] = {.lex_state = 21, .external_lex_state = 8}, + [5683] = {.lex_state = 24, .external_lex_state = 9}, + [5684] = {.lex_state = 21, .external_lex_state = 8}, + [5685] = {.lex_state = 24, .external_lex_state = 9}, + [5686] = {.lex_state = 21, .external_lex_state = 9}, + [5687] = {.lex_state = 21, .external_lex_state = 9}, + [5688] = {.lex_state = 21, .external_lex_state = 8}, + [5689] = {.lex_state = 21, .external_lex_state = 8}, + [5690] = {.lex_state = 21, .external_lex_state = 8}, + [5691] = {.lex_state = 21, .external_lex_state = 8}, + [5692] = {.lex_state = 21, .external_lex_state = 8}, + [5693] = {.lex_state = 21, .external_lex_state = 9}, + [5694] = {.lex_state = 21, .external_lex_state = 9}, + [5695] = {.lex_state = 21, .external_lex_state = 8}, + [5696] = {.lex_state = 21, .external_lex_state = 8}, + [5697] = {.lex_state = 26, .external_lex_state = 8}, + [5698] = {.lex_state = 21, .external_lex_state = 8}, + [5699] = {.lex_state = 21, .external_lex_state = 9}, + [5700] = {.lex_state = 22, .external_lex_state = 8}, + [5701] = {.lex_state = 21, .external_lex_state = 9}, + [5702] = {.lex_state = 26, .external_lex_state = 8}, + [5703] = {.lex_state = 21, .external_lex_state = 8}, + [5704] = {.lex_state = 21, .external_lex_state = 9}, + [5705] = {.lex_state = 21, .external_lex_state = 8}, + [5706] = {.lex_state = 21, .external_lex_state = 8}, + [5707] = {.lex_state = 21, .external_lex_state = 8}, + [5708] = {.lex_state = 21, .external_lex_state = 9}, + [5709] = {.lex_state = 21, .external_lex_state = 8}, + [5710] = {.lex_state = 26, .external_lex_state = 8}, + [5711] = {.lex_state = 26, .external_lex_state = 8}, + [5712] = {.lex_state = 22, .external_lex_state = 8}, + [5713] = {.lex_state = 21, .external_lex_state = 9}, + [5714] = {.lex_state = 26, .external_lex_state = 8}, + [5715] = {.lex_state = 26, .external_lex_state = 8}, + [5716] = {.lex_state = 21, .external_lex_state = 9}, + [5717] = {.lex_state = 21, .external_lex_state = 9}, + [5718] = {.lex_state = 21, .external_lex_state = 9}, + [5719] = {.lex_state = 21, .external_lex_state = 9}, + [5720] = {.lex_state = 21, .external_lex_state = 8}, + [5721] = {.lex_state = 21, .external_lex_state = 8}, + [5722] = {.lex_state = 21, .external_lex_state = 8}, + [5723] = {.lex_state = 21, .external_lex_state = 9}, + [5724] = {.lex_state = 21, .external_lex_state = 8}, + [5725] = {.lex_state = 25, .external_lex_state = 8}, + [5726] = {.lex_state = 25, .external_lex_state = 8}, + [5727] = {.lex_state = 25, .external_lex_state = 8}, + [5728] = {.lex_state = 21, .external_lex_state = 8}, + [5729] = {.lex_state = 21, .external_lex_state = 8}, + [5730] = {.lex_state = 25, .external_lex_state = 8}, + [5731] = {.lex_state = 25, .external_lex_state = 8}, + [5732] = {.lex_state = 21, .external_lex_state = 8}, + [5733] = {.lex_state = 25, .external_lex_state = 8}, + [5734] = {.lex_state = 25, .external_lex_state = 8}, + [5735] = {.lex_state = 25, .external_lex_state = 8}, + [5736] = {.lex_state = 21, .external_lex_state = 8}, + [5737] = {.lex_state = 21, .external_lex_state = 9}, + [5738] = {.lex_state = 21, .external_lex_state = 8}, + [5739] = {.lex_state = 25, .external_lex_state = 8}, + [5740] = {.lex_state = 25, .external_lex_state = 8}, + [5741] = {.lex_state = 25, .external_lex_state = 8}, + [5742] = {.lex_state = 25, .external_lex_state = 8}, + [5743] = {.lex_state = 21, .external_lex_state = 8}, + [5744] = {.lex_state = 21, .external_lex_state = 8}, + [5745] = {.lex_state = 21, .external_lex_state = 9}, + [5746] = {.lex_state = 25, .external_lex_state = 8}, + [5747] = {.lex_state = 25, .external_lex_state = 8}, + [5748] = {.lex_state = 21, .external_lex_state = 8}, + [5749] = {.lex_state = 21, .external_lex_state = 8}, + [5750] = {.lex_state = 21, .external_lex_state = 8}, + [5751] = {.lex_state = 21, .external_lex_state = 8}, + [5752] = {.lex_state = 21, .external_lex_state = 8}, + [5753] = {.lex_state = 25, .external_lex_state = 8}, + [5754] = {.lex_state = 21, .external_lex_state = 8}, + [5755] = {.lex_state = 21, .external_lex_state = 8}, + [5756] = {.lex_state = 25, .external_lex_state = 8}, + [5757] = {.lex_state = 21, .external_lex_state = 8}, + [5758] = {.lex_state = 21, .external_lex_state = 8}, + [5759] = {.lex_state = 25, .external_lex_state = 8}, + [5760] = {.lex_state = 21, .external_lex_state = 9}, + [5761] = {.lex_state = 21, .external_lex_state = 8}, + [5762] = {.lex_state = 21, .external_lex_state = 9}, + [5763] = {.lex_state = 25, .external_lex_state = 8}, + [5764] = {.lex_state = 25, .external_lex_state = 8}, + [5765] = {.lex_state = 25, .external_lex_state = 8}, + [5766] = {.lex_state = 25, .external_lex_state = 8}, + [5767] = {.lex_state = 21, .external_lex_state = 9}, + [5768] = {.lex_state = 21, .external_lex_state = 9}, + [5769] = {.lex_state = 21, .external_lex_state = 9}, + [5770] = {.lex_state = 21, .external_lex_state = 8}, + [5771] = {.lex_state = 21, .external_lex_state = 8}, + [5772] = {.lex_state = 21, .external_lex_state = 8}, + [5773] = {.lex_state = 21, .external_lex_state = 8}, + [5774] = {.lex_state = 21, .external_lex_state = 8}, + [5775] = {.lex_state = 21, .external_lex_state = 8}, + [5776] = {.lex_state = 21, .external_lex_state = 8}, + [5777] = {.lex_state = 21, .external_lex_state = 8}, + [5778] = {.lex_state = 21, .external_lex_state = 8}, + [5779] = {.lex_state = 21, .external_lex_state = 8}, + [5780] = {.lex_state = 21, .external_lex_state = 8}, + [5781] = {.lex_state = 21, .external_lex_state = 8}, + [5782] = {.lex_state = 21, .external_lex_state = 8}, + [5783] = {.lex_state = 21, .external_lex_state = 8}, + [5784] = {.lex_state = 21, .external_lex_state = 8}, + [5785] = {.lex_state = 21, .external_lex_state = 8}, + [5786] = {.lex_state = 21, .external_lex_state = 9}, + [5787] = {.lex_state = 21, .external_lex_state = 8}, + [5788] = {.lex_state = 21, .external_lex_state = 8}, + [5789] = {.lex_state = 21, .external_lex_state = 8}, + [5790] = {.lex_state = 21, .external_lex_state = 9}, + [5791] = {.lex_state = 21, .external_lex_state = 8}, + [5792] = {.lex_state = 21, .external_lex_state = 8}, + [5793] = {.lex_state = 21, .external_lex_state = 8}, + [5794] = {.lex_state = 21, .external_lex_state = 9}, + [5795] = {.lex_state = 21, .external_lex_state = 9}, + [5796] = {.lex_state = 21, .external_lex_state = 8}, + [5797] = {.lex_state = 21, .external_lex_state = 9}, + [5798] = {.lex_state = 21, .external_lex_state = 9}, + [5799] = {.lex_state = 21, .external_lex_state = 8}, + [5800] = {.lex_state = 21, .external_lex_state = 9}, + [5801] = {.lex_state = 21, .external_lex_state = 9}, + [5802] = {.lex_state = 21, .external_lex_state = 8}, + [5803] = {.lex_state = 21, .external_lex_state = 9}, + [5804] = {.lex_state = 21, .external_lex_state = 8}, + [5805] = {.lex_state = 21, .external_lex_state = 9}, + [5806] = {.lex_state = 21, .external_lex_state = 8}, + [5807] = {.lex_state = 21, .external_lex_state = 9}, + [5808] = {.lex_state = 21, .external_lex_state = 9}, + [5809] = {.lex_state = 21, .external_lex_state = 8}, + [5810] = {.lex_state = 21, .external_lex_state = 9}, + [5811] = {.lex_state = 21, .external_lex_state = 9}, + [5812] = {.lex_state = 21, .external_lex_state = 9}, + [5813] = {.lex_state = 21, .external_lex_state = 8}, + [5814] = {.lex_state = 21, .external_lex_state = 9}, + [5815] = {.lex_state = 21, .external_lex_state = 8}, + [5816] = {.lex_state = 21, .external_lex_state = 8}, + [5817] = {.lex_state = 21, .external_lex_state = 8}, + [5818] = {.lex_state = 21, .external_lex_state = 8}, + [5819] = {.lex_state = 21, .external_lex_state = 9}, + [5820] = {.lex_state = 21, .external_lex_state = 8}, + [5821] = {.lex_state = 21, .external_lex_state = 8}, + [5822] = {.lex_state = 28, .external_lex_state = 8}, + [5823] = {.lex_state = 21, .external_lex_state = 8}, + [5824] = {.lex_state = 21, .external_lex_state = 8}, + [5825] = {.lex_state = 21, .external_lex_state = 8}, + [5826] = {.lex_state = 28, .external_lex_state = 8}, + [5827] = {.lex_state = 21, .external_lex_state = 8}, + [5828] = {.lex_state = 21, .external_lex_state = 8}, + [5829] = {.lex_state = 21, .external_lex_state = 8}, + [5830] = {.lex_state = 21, .external_lex_state = 9}, + [5831] = {.lex_state = 21, .external_lex_state = 8}, + [5832] = {.lex_state = 21, .external_lex_state = 9}, + [5833] = {.lex_state = 21, .external_lex_state = 8}, + [5834] = {.lex_state = 21, .external_lex_state = 8}, + [5835] = {.lex_state = 21, .external_lex_state = 8}, + [5836] = {.lex_state = 21, .external_lex_state = 8}, + [5837] = {.lex_state = 21, .external_lex_state = 8}, + [5838] = {.lex_state = 21, .external_lex_state = 8}, + [5839] = {.lex_state = 21, .external_lex_state = 8}, + [5840] = {.lex_state = 21, .external_lex_state = 8}, + [5841] = {.lex_state = 28, .external_lex_state = 8}, + [5842] = {.lex_state = 28, .external_lex_state = 8}, + [5843] = {.lex_state = 28, .external_lex_state = 8}, + [5844] = {.lex_state = 21, .external_lex_state = 8}, + [5845] = {.lex_state = 21, .external_lex_state = 8}, + [5846] = {.lex_state = 28, .external_lex_state = 8}, + [5847] = {.lex_state = 24, .external_lex_state = 9}, + [5848] = {.lex_state = 24, .external_lex_state = 9}, + [5849] = {.lex_state = 21, .external_lex_state = 8}, + [5850] = {.lex_state = 28, .external_lex_state = 8}, + [5851] = {.lex_state = 21, .external_lex_state = 8}, + [5852] = {.lex_state = 25, .external_lex_state = 8}, + [5853] = {.lex_state = 25, .external_lex_state = 8}, + [5854] = {.lex_state = 21, .external_lex_state = 8}, + [5855] = {.lex_state = 21, .external_lex_state = 8}, + [5856] = {.lex_state = 25, .external_lex_state = 8}, + [5857] = {.lex_state = 28, .external_lex_state = 8}, + [5858] = {.lex_state = 25, .external_lex_state = 8}, + [5859] = {.lex_state = 21, .external_lex_state = 8}, + [5860] = {.lex_state = 24, .external_lex_state = 8}, + [5861] = {.lex_state = 24, .external_lex_state = 8}, + [5862] = {.lex_state = 25, .external_lex_state = 8}, + [5863] = {.lex_state = 28, .external_lex_state = 8}, + [5864] = {.lex_state = 21, .external_lex_state = 8}, + [5865] = {.lex_state = 21, .external_lex_state = 8}, + [5866] = {.lex_state = 21, .external_lex_state = 8}, + [5867] = {.lex_state = 28, .external_lex_state = 8}, + [5868] = {.lex_state = 25, .external_lex_state = 8}, + [5869] = {.lex_state = 25, .external_lex_state = 8}, + [5870] = {.lex_state = 21, .external_lex_state = 8}, + [5871] = {.lex_state = 21, .external_lex_state = 8}, + [5872] = {.lex_state = 21, .external_lex_state = 8}, + [5873] = {.lex_state = 21, .external_lex_state = 8}, + [5874] = {.lex_state = 21, .external_lex_state = 8}, + [5875] = {.lex_state = 21, .external_lex_state = 8}, + [5876] = {.lex_state = 21, .external_lex_state = 8}, + [5877] = {.lex_state = 25, .external_lex_state = 8}, + [5878] = {.lex_state = 21, .external_lex_state = 8}, + [5879] = {.lex_state = 25, .external_lex_state = 8}, + [5880] = {.lex_state = 21, .external_lex_state = 8}, + [5881] = {.lex_state = 25, .external_lex_state = 8}, + [5882] = {.lex_state = 25, .external_lex_state = 8}, + [5883] = {.lex_state = 21, .external_lex_state = 8}, + [5884] = {.lex_state = 25, .external_lex_state = 8}, + [5885] = {.lex_state = 25, .external_lex_state = 8}, + [5886] = {.lex_state = 25, .external_lex_state = 8}, + [5887] = {.lex_state = 25, .external_lex_state = 8}, + [5888] = {.lex_state = 25, .external_lex_state = 8}, + [5889] = {.lex_state = 25, .external_lex_state = 8}, + [5890] = {.lex_state = 25, .external_lex_state = 8}, + [5891] = {.lex_state = 25, .external_lex_state = 8}, + [5892] = {.lex_state = 25, .external_lex_state = 8}, + [5893] = {.lex_state = 25, .external_lex_state = 8}, + [5894] = {.lex_state = 25, .external_lex_state = 8}, + [5895] = {.lex_state = 25, .external_lex_state = 8}, + [5896] = {.lex_state = 25, .external_lex_state = 8}, + [5897] = {.lex_state = 25, .external_lex_state = 8}, + [5898] = {.lex_state = 25, .external_lex_state = 8}, + [5899] = {.lex_state = 25, .external_lex_state = 8}, + [5900] = {.lex_state = 25, .external_lex_state = 8}, + [5901] = {.lex_state = 25, .external_lex_state = 8}, + [5902] = {.lex_state = 25, .external_lex_state = 8}, + [5903] = {.lex_state = 25, .external_lex_state = 8}, + [5904] = {.lex_state = 25, .external_lex_state = 8}, + [5905] = {.lex_state = 25, .external_lex_state = 8}, + [5906] = {.lex_state = 25, .external_lex_state = 8}, + [5907] = {.lex_state = 25, .external_lex_state = 8}, + [5908] = {.lex_state = 25, .external_lex_state = 8}, + [5909] = {.lex_state = 25, .external_lex_state = 8}, + [5910] = {.lex_state = 25, .external_lex_state = 8}, + [5911] = {.lex_state = 25, .external_lex_state = 8}, + [5912] = {.lex_state = 25, .external_lex_state = 8}, + [5913] = {.lex_state = 25, .external_lex_state = 8}, + [5914] = {.lex_state = 25, .external_lex_state = 8}, + [5915] = {.lex_state = 25, .external_lex_state = 8}, + [5916] = {.lex_state = 25, .external_lex_state = 8}, + [5917] = {.lex_state = 25, .external_lex_state = 8}, + [5918] = {.lex_state = 25, .external_lex_state = 8}, + [5919] = {.lex_state = 25, .external_lex_state = 8}, + [5920] = {.lex_state = 25, .external_lex_state = 8}, + [5921] = {.lex_state = 25, .external_lex_state = 8}, + [5922] = {.lex_state = 25, .external_lex_state = 8}, + [5923] = {.lex_state = 25, .external_lex_state = 8}, + [5924] = {.lex_state = 25, .external_lex_state = 8}, + [5925] = {.lex_state = 25, .external_lex_state = 8}, + [5926] = {.lex_state = 25, .external_lex_state = 8}, + [5927] = {.lex_state = 25, .external_lex_state = 8}, + [5928] = {.lex_state = 25, .external_lex_state = 8}, + [5929] = {.lex_state = 25, .external_lex_state = 8}, + [5930] = {.lex_state = 25, .external_lex_state = 8}, + [5931] = {.lex_state = 25, .external_lex_state = 8}, + [5932] = {.lex_state = 25, .external_lex_state = 8}, + [5933] = {.lex_state = 25, .external_lex_state = 8}, + [5934] = {.lex_state = 25, .external_lex_state = 8}, + [5935] = {.lex_state = 25, .external_lex_state = 8}, + [5936] = {.lex_state = 25, .external_lex_state = 8}, + [5937] = {.lex_state = 25, .external_lex_state = 8}, + [5938] = {.lex_state = 25, .external_lex_state = 8}, + [5939] = {.lex_state = 25, .external_lex_state = 8}, + [5940] = {.lex_state = 25, .external_lex_state = 8}, + [5941] = {.lex_state = 25, .external_lex_state = 8}, + [5942] = {.lex_state = 25, .external_lex_state = 8}, + [5943] = {.lex_state = 25, .external_lex_state = 8}, + [5944] = {.lex_state = 25, .external_lex_state = 8}, + [5945] = {.lex_state = 25, .external_lex_state = 8}, + [5946] = {.lex_state = 25, .external_lex_state = 8}, + [5947] = {.lex_state = 25, .external_lex_state = 8}, + [5948] = {.lex_state = 25, .external_lex_state = 8}, + [5949] = {.lex_state = 25, .external_lex_state = 8}, + [5950] = {.lex_state = 25, .external_lex_state = 8}, + [5951] = {.lex_state = 25, .external_lex_state = 8}, + [5952] = {.lex_state = 25, .external_lex_state = 8}, + [5953] = {.lex_state = 25, .external_lex_state = 8}, + [5954] = {.lex_state = 25, .external_lex_state = 8}, + [5955] = {.lex_state = 25, .external_lex_state = 8}, + [5956] = {.lex_state = 25, .external_lex_state = 8}, + [5957] = {.lex_state = 25, .external_lex_state = 8}, + [5958] = {.lex_state = 25, .external_lex_state = 8}, + [5959] = {.lex_state = 25, .external_lex_state = 8}, + [5960] = {.lex_state = 25, .external_lex_state = 8}, + [5961] = {.lex_state = 25, .external_lex_state = 8}, + [5962] = {.lex_state = 25, .external_lex_state = 8}, + [5963] = {.lex_state = 25, .external_lex_state = 8}, + [5964] = {.lex_state = 25, .external_lex_state = 8}, + [5965] = {.lex_state = 25, .external_lex_state = 8}, + [5966] = {.lex_state = 25, .external_lex_state = 8}, + [5967] = {.lex_state = 25, .external_lex_state = 8}, + [5968] = {.lex_state = 25, .external_lex_state = 8}, + [5969] = {.lex_state = 25, .external_lex_state = 8}, + [5970] = {.lex_state = 25, .external_lex_state = 8}, + [5971] = {.lex_state = 25, .external_lex_state = 8}, + [5972] = {.lex_state = 25, .external_lex_state = 8}, + [5973] = {.lex_state = 25, .external_lex_state = 8}, + [5974] = {.lex_state = 25, .external_lex_state = 8}, + [5975] = {.lex_state = 25, .external_lex_state = 8}, + [5976] = {.lex_state = 25, .external_lex_state = 8}, + [5977] = {.lex_state = 25, .external_lex_state = 8}, + [5978] = {.lex_state = 25, .external_lex_state = 8}, + [5979] = {.lex_state = 25, .external_lex_state = 8}, + [5980] = {.lex_state = 25, .external_lex_state = 8}, + [5981] = {.lex_state = 25, .external_lex_state = 8}, + [5982] = {.lex_state = 25, .external_lex_state = 8}, + [5983] = {.lex_state = 25, .external_lex_state = 8}, + [5984] = {.lex_state = 25, .external_lex_state = 8}, + [5985] = {.lex_state = 25, .external_lex_state = 8}, + [5986] = {.lex_state = 25, .external_lex_state = 8}, + [5987] = {.lex_state = 25, .external_lex_state = 8}, + [5988] = {.lex_state = 25, .external_lex_state = 8}, + [5989] = {.lex_state = 25, .external_lex_state = 8}, + [5990] = {.lex_state = 25, .external_lex_state = 8}, + [5991] = {.lex_state = 25, .external_lex_state = 8}, + [5992] = {.lex_state = 25, .external_lex_state = 8}, + [5993] = {.lex_state = 25, .external_lex_state = 8}, + [5994] = {.lex_state = 25, .external_lex_state = 8}, + [5995] = {.lex_state = 25, .external_lex_state = 8}, + [5996] = {.lex_state = 25, .external_lex_state = 8}, + [5997] = {.lex_state = 28, .external_lex_state = 8}, + [5998] = {.lex_state = 25, .external_lex_state = 8}, + [5999] = {.lex_state = 25, .external_lex_state = 8}, + [6000] = {.lex_state = 25, .external_lex_state = 8}, + [6001] = {.lex_state = 25, .external_lex_state = 8}, + [6002] = {.lex_state = 25, .external_lex_state = 8}, + [6003] = {.lex_state = 25, .external_lex_state = 8}, + [6004] = {.lex_state = 25, .external_lex_state = 8}, + [6005] = {.lex_state = 25, .external_lex_state = 8}, + [6006] = {.lex_state = 25, .external_lex_state = 8}, + [6007] = {.lex_state = 25, .external_lex_state = 8}, + [6008] = {.lex_state = 25, .external_lex_state = 8}, + [6009] = {.lex_state = 25, .external_lex_state = 8}, + [6010] = {.lex_state = 25, .external_lex_state = 8}, + [6011] = {.lex_state = 25, .external_lex_state = 8}, + [6012] = {.lex_state = 25, .external_lex_state = 8}, + [6013] = {.lex_state = 25, .external_lex_state = 8}, + [6014] = {.lex_state = 25, .external_lex_state = 8}, + [6015] = {.lex_state = 25, .external_lex_state = 8}, + [6016] = {.lex_state = 25, .external_lex_state = 8}, + [6017] = {.lex_state = 25, .external_lex_state = 8}, + [6018] = {.lex_state = 25, .external_lex_state = 8}, + [6019] = {.lex_state = 25, .external_lex_state = 8}, + [6020] = {.lex_state = 25, .external_lex_state = 8}, + [6021] = {.lex_state = 25, .external_lex_state = 8}, + [6022] = {.lex_state = 25, .external_lex_state = 8}, + [6023] = {.lex_state = 25, .external_lex_state = 8}, + [6024] = {.lex_state = 25, .external_lex_state = 8}, + [6025] = {.lex_state = 25, .external_lex_state = 8}, + [6026] = {.lex_state = 25, .external_lex_state = 8}, + [6027] = {.lex_state = 25, .external_lex_state = 8}, + [6028] = {.lex_state = 25, .external_lex_state = 8}, + [6029] = {.lex_state = 25, .external_lex_state = 8}, + [6030] = {.lex_state = 25, .external_lex_state = 8}, + [6031] = {.lex_state = 25, .external_lex_state = 8}, + [6032] = {.lex_state = 25, .external_lex_state = 8}, + [6033] = {.lex_state = 25, .external_lex_state = 8}, + [6034] = {.lex_state = 25, .external_lex_state = 8}, + [6035] = {.lex_state = 25, .external_lex_state = 8}, + [6036] = {.lex_state = 25, .external_lex_state = 8}, + [6037] = {.lex_state = 25, .external_lex_state = 8}, + [6038] = {.lex_state = 25, .external_lex_state = 8}, + [6039] = {.lex_state = 25, .external_lex_state = 8}, + [6040] = {.lex_state = 25, .external_lex_state = 8}, + [6041] = {.lex_state = 25, .external_lex_state = 8}, + [6042] = {.lex_state = 25, .external_lex_state = 8}, + [6043] = {.lex_state = 25, .external_lex_state = 8}, + [6044] = {.lex_state = 25, .external_lex_state = 8}, + [6045] = {.lex_state = 25, .external_lex_state = 8}, + [6046] = {.lex_state = 25, .external_lex_state = 8}, + [6047] = {.lex_state = 25, .external_lex_state = 8}, + [6048] = {.lex_state = 25, .external_lex_state = 8}, + [6049] = {.lex_state = 25, .external_lex_state = 8}, + [6050] = {.lex_state = 25, .external_lex_state = 8}, + [6051] = {.lex_state = 25, .external_lex_state = 8}, + [6052] = {.lex_state = 25, .external_lex_state = 8}, + [6053] = {.lex_state = 25, .external_lex_state = 8}, + [6054] = {.lex_state = 25, .external_lex_state = 8}, + [6055] = {.lex_state = 25, .external_lex_state = 8}, + [6056] = {.lex_state = 25, .external_lex_state = 8}, + [6057] = {.lex_state = 25, .external_lex_state = 8}, + [6058] = {.lex_state = 25, .external_lex_state = 8}, + [6059] = {.lex_state = 25, .external_lex_state = 8}, + [6060] = {.lex_state = 25, .external_lex_state = 8}, + [6061] = {.lex_state = 25, .external_lex_state = 8}, + [6062] = {.lex_state = 25, .external_lex_state = 8}, + [6063] = {.lex_state = 25, .external_lex_state = 8}, + [6064] = {.lex_state = 25, .external_lex_state = 8}, + [6065] = {.lex_state = 25, .external_lex_state = 8}, + [6066] = {.lex_state = 25, .external_lex_state = 8}, + [6067] = {.lex_state = 25, .external_lex_state = 8}, + [6068] = {.lex_state = 25, .external_lex_state = 8}, + [6069] = {.lex_state = 25, .external_lex_state = 8}, + [6070] = {.lex_state = 25, .external_lex_state = 8}, + [6071] = {.lex_state = 25, .external_lex_state = 8}, + [6072] = {.lex_state = 25, .external_lex_state = 8}, + [6073] = {.lex_state = 25, .external_lex_state = 8}, + [6074] = {.lex_state = 25, .external_lex_state = 8}, + [6075] = {.lex_state = 25, .external_lex_state = 8}, + [6076] = {.lex_state = 25, .external_lex_state = 8}, + [6077] = {.lex_state = 25, .external_lex_state = 8}, + [6078] = {.lex_state = 25, .external_lex_state = 8}, + [6079] = {.lex_state = 25, .external_lex_state = 8}, + [6080] = {.lex_state = 25, .external_lex_state = 8}, + [6081] = {.lex_state = 25, .external_lex_state = 8}, + [6082] = {.lex_state = 25, .external_lex_state = 8}, + [6083] = {.lex_state = 25, .external_lex_state = 8}, + [6084] = {.lex_state = 25, .external_lex_state = 8}, + [6085] = {.lex_state = 25, .external_lex_state = 8}, + [6086] = {.lex_state = 25, .external_lex_state = 8}, + [6087] = {.lex_state = 25, .external_lex_state = 8}, + [6088] = {.lex_state = 25, .external_lex_state = 8}, + [6089] = {.lex_state = 25, .external_lex_state = 8}, + [6090] = {.lex_state = 25, .external_lex_state = 8}, + [6091] = {.lex_state = 25, .external_lex_state = 8}, + [6092] = {.lex_state = 25, .external_lex_state = 8}, + [6093] = {.lex_state = 25, .external_lex_state = 8}, + [6094] = {.lex_state = 25, .external_lex_state = 8}, + [6095] = {.lex_state = 25, .external_lex_state = 8}, + [6096] = {.lex_state = 25, .external_lex_state = 8}, + [6097] = {.lex_state = 25, .external_lex_state = 8}, + [6098] = {.lex_state = 25, .external_lex_state = 8}, + [6099] = {.lex_state = 25, .external_lex_state = 8}, + [6100] = {.lex_state = 25, .external_lex_state = 8}, + [6101] = {.lex_state = 25, .external_lex_state = 8}, + [6102] = {.lex_state = 25, .external_lex_state = 8}, + [6103] = {.lex_state = 25, .external_lex_state = 8}, + [6104] = {.lex_state = 25, .external_lex_state = 8}, + [6105] = {.lex_state = 25, .external_lex_state = 8}, + [6106] = {.lex_state = 25, .external_lex_state = 8}, + [6107] = {.lex_state = 25, .external_lex_state = 8}, + [6108] = {.lex_state = 25, .external_lex_state = 8}, + [6109] = {.lex_state = 25, .external_lex_state = 8}, + [6110] = {.lex_state = 25, .external_lex_state = 8}, + [6111] = {.lex_state = 25, .external_lex_state = 8}, + [6112] = {.lex_state = 25, .external_lex_state = 8}, + [6113] = {.lex_state = 25, .external_lex_state = 8}, + [6114] = {.lex_state = 25, .external_lex_state = 8}, + [6115] = {.lex_state = 25, .external_lex_state = 8}, + [6116] = {.lex_state = 25, .external_lex_state = 8}, + [6117] = {.lex_state = 25, .external_lex_state = 8}, + [6118] = {.lex_state = 25, .external_lex_state = 8}, + [6119] = {.lex_state = 25, .external_lex_state = 8}, + [6120] = {.lex_state = 25, .external_lex_state = 8}, + [6121] = {.lex_state = 25, .external_lex_state = 8}, + [6122] = {.lex_state = 25, .external_lex_state = 8}, + [6123] = {.lex_state = 25, .external_lex_state = 8}, + [6124] = {.lex_state = 25, .external_lex_state = 8}, + [6125] = {.lex_state = 25, .external_lex_state = 8}, + [6126] = {.lex_state = 25, .external_lex_state = 8}, + [6127] = {.lex_state = 25, .external_lex_state = 8}, + [6128] = {.lex_state = 25, .external_lex_state = 8}, + [6129] = {.lex_state = 25, .external_lex_state = 8}, + [6130] = {.lex_state = 25, .external_lex_state = 8}, + [6131] = {.lex_state = 25, .external_lex_state = 8}, + [6132] = {.lex_state = 25, .external_lex_state = 8}, + [6133] = {.lex_state = 25, .external_lex_state = 8}, + [6134] = {.lex_state = 25, .external_lex_state = 8}, + [6135] = {.lex_state = 25, .external_lex_state = 8}, + [6136] = {.lex_state = 25, .external_lex_state = 8}, + [6137] = {.lex_state = 25, .external_lex_state = 8}, + [6138] = {.lex_state = 25, .external_lex_state = 8}, + [6139] = {.lex_state = 25, .external_lex_state = 8}, + [6140] = {.lex_state = 25, .external_lex_state = 8}, + [6141] = {.lex_state = 25, .external_lex_state = 8}, + [6142] = {.lex_state = 25, .external_lex_state = 8}, + [6143] = {.lex_state = 28, .external_lex_state = 8}, + [6144] = {.lex_state = 25, .external_lex_state = 8}, + [6145] = {.lex_state = 28, .external_lex_state = 8}, + [6146] = {.lex_state = 25, .external_lex_state = 8}, + [6147] = {.lex_state = 25, .external_lex_state = 8}, + [6148] = {.lex_state = 25, .external_lex_state = 8}, + [6149] = {.lex_state = 25, .external_lex_state = 8}, + [6150] = {.lex_state = 25, .external_lex_state = 8}, + [6151] = {.lex_state = 25, .external_lex_state = 8}, + [6152] = {.lex_state = 25, .external_lex_state = 8}, + [6153] = {.lex_state = 25, .external_lex_state = 8}, + [6154] = {.lex_state = 25, .external_lex_state = 8}, + [6155] = {.lex_state = 25, .external_lex_state = 8}, + [6156] = {.lex_state = 25, .external_lex_state = 8}, + [6157] = {.lex_state = 25, .external_lex_state = 8}, + [6158] = {.lex_state = 25, .external_lex_state = 8}, + [6159] = {.lex_state = 25, .external_lex_state = 8}, + [6160] = {.lex_state = 25, .external_lex_state = 8}, + [6161] = {.lex_state = 25, .external_lex_state = 8}, + [6162] = {.lex_state = 25, .external_lex_state = 8}, + [6163] = {.lex_state = 25, .external_lex_state = 8}, + [6164] = {.lex_state = 25, .external_lex_state = 8}, + [6165] = {.lex_state = 25, .external_lex_state = 8}, + [6166] = {.lex_state = 25, .external_lex_state = 8}, + [6167] = {.lex_state = 25, .external_lex_state = 8}, + [6168] = {.lex_state = 25, .external_lex_state = 8}, + [6169] = {.lex_state = 25, .external_lex_state = 8}, + [6170] = {.lex_state = 25, .external_lex_state = 8}, + [6171] = {.lex_state = 25, .external_lex_state = 8}, + [6172] = {.lex_state = 25, .external_lex_state = 8}, + [6173] = {.lex_state = 25, .external_lex_state = 8}, + [6174] = {.lex_state = 25, .external_lex_state = 8}, + [6175] = {.lex_state = 25, .external_lex_state = 8}, + [6176] = {.lex_state = 25, .external_lex_state = 8}, + [6177] = {.lex_state = 25, .external_lex_state = 8}, + [6178] = {.lex_state = 28, .external_lex_state = 8}, + [6179] = {.lex_state = 25, .external_lex_state = 8}, + [6180] = {.lex_state = 25, .external_lex_state = 8}, + [6181] = {.lex_state = 25, .external_lex_state = 8}, + [6182] = {.lex_state = 25, .external_lex_state = 8}, + [6183] = {.lex_state = 25, .external_lex_state = 8}, + [6184] = {.lex_state = 25, .external_lex_state = 8}, + [6185] = {.lex_state = 25, .external_lex_state = 8}, + [6186] = {.lex_state = 25, .external_lex_state = 8}, + [6187] = {.lex_state = 25, .external_lex_state = 8}, + [6188] = {.lex_state = 25, .external_lex_state = 8}, + [6189] = {.lex_state = 28, .external_lex_state = 8}, + [6190] = {.lex_state = 25, .external_lex_state = 8}, + [6191] = {.lex_state = 25, .external_lex_state = 8}, + [6192] = {.lex_state = 25, .external_lex_state = 8}, + [6193] = {.lex_state = 25, .external_lex_state = 8}, + [6194] = {.lex_state = 25, .external_lex_state = 8}, + [6195] = {.lex_state = 25, .external_lex_state = 8}, + [6196] = {.lex_state = 25, .external_lex_state = 8}, + [6197] = {.lex_state = 25, .external_lex_state = 8}, + [6198] = {.lex_state = 25, .external_lex_state = 8}, + [6199] = {.lex_state = 25, .external_lex_state = 8}, + [6200] = {.lex_state = 25, .external_lex_state = 8}, + [6201] = {.lex_state = 25, .external_lex_state = 8}, + [6202] = {.lex_state = 25, .external_lex_state = 8}, + [6203] = {.lex_state = 25, .external_lex_state = 8}, + [6204] = {.lex_state = 25, .external_lex_state = 8}, + [6205] = {.lex_state = 25, .external_lex_state = 8}, + [6206] = {.lex_state = 28, .external_lex_state = 8}, + [6207] = {.lex_state = 25, .external_lex_state = 8}, + [6208] = {.lex_state = 25, .external_lex_state = 8}, + [6209] = {.lex_state = 25, .external_lex_state = 8}, + [6210] = {.lex_state = 25, .external_lex_state = 8}, + [6211] = {.lex_state = 20, .external_lex_state = 8}, + [6212] = {.lex_state = 25, .external_lex_state = 8}, + [6213] = {.lex_state = 25, .external_lex_state = 8}, + [6214] = {.lex_state = 25, .external_lex_state = 8}, + [6215] = {.lex_state = 25, .external_lex_state = 8}, + [6216] = {.lex_state = 25, .external_lex_state = 8}, + [6217] = {.lex_state = 25, .external_lex_state = 8}, + [6218] = {.lex_state = 25, .external_lex_state = 8}, + [6219] = {.lex_state = 25, .external_lex_state = 8}, + [6220] = {.lex_state = 25, .external_lex_state = 8}, + [6221] = {.lex_state = 25, .external_lex_state = 8}, + [6222] = {.lex_state = 25, .external_lex_state = 8}, + [6223] = {.lex_state = 25, .external_lex_state = 8}, + [6224] = {.lex_state = 20, .external_lex_state = 8}, + [6225] = {.lex_state = 25, .external_lex_state = 8}, + [6226] = {.lex_state = 25, .external_lex_state = 8}, + [6227] = {.lex_state = 25, .external_lex_state = 8}, + [6228] = {.lex_state = 28, .external_lex_state = 8}, + [6229] = {.lex_state = 25, .external_lex_state = 8}, + [6230] = {.lex_state = 25, .external_lex_state = 8}, + [6231] = {.lex_state = 25, .external_lex_state = 8}, + [6232] = {.lex_state = 25, .external_lex_state = 8}, + [6233] = {.lex_state = 25, .external_lex_state = 8}, + [6234] = {.lex_state = 25, .external_lex_state = 8}, + [6235] = {.lex_state = 25, .external_lex_state = 8}, + [6236] = {.lex_state = 25, .external_lex_state = 8}, + [6237] = {.lex_state = 25, .external_lex_state = 8}, + [6238] = {.lex_state = 25, .external_lex_state = 8}, + [6239] = {.lex_state = 25, .external_lex_state = 8}, + [6240] = {.lex_state = 25, .external_lex_state = 8}, + [6241] = {.lex_state = 25, .external_lex_state = 8}, + [6242] = {.lex_state = 25, .external_lex_state = 8}, + [6243] = {.lex_state = 25, .external_lex_state = 8}, + [6244] = {.lex_state = 25, .external_lex_state = 8}, + [6245] = {.lex_state = 25, .external_lex_state = 8}, + [6246] = {.lex_state = 25, .external_lex_state = 8}, + [6247] = {.lex_state = 25, .external_lex_state = 8}, + [6248] = {.lex_state = 25, .external_lex_state = 8}, + [6249] = {.lex_state = 28, .external_lex_state = 8}, + [6250] = {.lex_state = 25, .external_lex_state = 8}, + [6251] = {.lex_state = 25, .external_lex_state = 8}, + [6252] = {.lex_state = 28, .external_lex_state = 8}, + [6253] = {.lex_state = 25, .external_lex_state = 8}, + [6254] = {.lex_state = 25, .external_lex_state = 8}, + [6255] = {.lex_state = 25, .external_lex_state = 8}, + [6256] = {.lex_state = 25, .external_lex_state = 8}, + [6257] = {.lex_state = 25, .external_lex_state = 8}, + [6258] = {.lex_state = 25, .external_lex_state = 8}, + [6259] = {.lex_state = 25, .external_lex_state = 8}, + [6260] = {.lex_state = 25, .external_lex_state = 8}, + [6261] = {.lex_state = 25, .external_lex_state = 8}, + [6262] = {.lex_state = 25, .external_lex_state = 8}, + [6263] = {.lex_state = 25, .external_lex_state = 8}, + [6264] = {.lex_state = 25, .external_lex_state = 8}, + [6265] = {.lex_state = 25, .external_lex_state = 8}, + [6266] = {.lex_state = 25, .external_lex_state = 8}, + [6267] = {.lex_state = 25, .external_lex_state = 8}, + [6268] = {.lex_state = 28, .external_lex_state = 8}, + [6269] = {.lex_state = 25, .external_lex_state = 8}, + [6270] = {.lex_state = 25, .external_lex_state = 8}, + [6271] = {.lex_state = 25, .external_lex_state = 8}, + [6272] = {.lex_state = 25, .external_lex_state = 8}, + [6273] = {.lex_state = 25, .external_lex_state = 8}, + [6274] = {.lex_state = 25, .external_lex_state = 8}, + [6275] = {.lex_state = 25, .external_lex_state = 8}, + [6276] = {.lex_state = 25, .external_lex_state = 8}, + [6277] = {.lex_state = 25, .external_lex_state = 8}, + [6278] = {.lex_state = 25, .external_lex_state = 8}, + [6279] = {.lex_state = 25, .external_lex_state = 8}, + [6280] = {.lex_state = 25, .external_lex_state = 8}, + [6281] = {.lex_state = 25, .external_lex_state = 8}, + [6282] = {.lex_state = 25, .external_lex_state = 8}, + [6283] = {.lex_state = 25, .external_lex_state = 8}, + [6284] = {.lex_state = 25, .external_lex_state = 8}, + [6285] = {.lex_state = 25, .external_lex_state = 8}, + [6286] = {.lex_state = 25, .external_lex_state = 8}, + [6287] = {.lex_state = 25, .external_lex_state = 8}, + [6288] = {.lex_state = 25, .external_lex_state = 8}, + [6289] = {.lex_state = 25, .external_lex_state = 8}, + [6290] = {.lex_state = 25, .external_lex_state = 8}, + [6291] = {.lex_state = 25, .external_lex_state = 8}, + [6292] = {.lex_state = 25, .external_lex_state = 8}, + [6293] = {.lex_state = 25, .external_lex_state = 8}, + [6294] = {.lex_state = 25, .external_lex_state = 8}, + [6295] = {.lex_state = 25, .external_lex_state = 8}, + [6296] = {.lex_state = 25, .external_lex_state = 8}, + [6297] = {.lex_state = 25, .external_lex_state = 8}, + [6298] = {.lex_state = 25, .external_lex_state = 8}, + [6299] = {.lex_state = 25, .external_lex_state = 8}, + [6300] = {.lex_state = 25, .external_lex_state = 8}, + [6301] = {.lex_state = 25, .external_lex_state = 8}, + [6302] = {.lex_state = 25, .external_lex_state = 8}, + [6303] = {.lex_state = 25, .external_lex_state = 8}, + [6304] = {.lex_state = 25, .external_lex_state = 8}, + [6305] = {.lex_state = 25, .external_lex_state = 8}, + [6306] = {.lex_state = 25, .external_lex_state = 8}, + [6307] = {.lex_state = 25, .external_lex_state = 8}, + [6308] = {.lex_state = 25, .external_lex_state = 8}, + [6309] = {.lex_state = 25, .external_lex_state = 8}, + [6310] = {.lex_state = 25, .external_lex_state = 8}, + [6311] = {.lex_state = 25, .external_lex_state = 8}, + [6312] = {.lex_state = 25, .external_lex_state = 8}, + [6313] = {.lex_state = 25, .external_lex_state = 8}, + [6314] = {.lex_state = 25, .external_lex_state = 8}, + [6315] = {.lex_state = 25, .external_lex_state = 8}, + [6316] = {.lex_state = 25, .external_lex_state = 8}, + [6317] = {.lex_state = 25, .external_lex_state = 8}, + [6318] = {.lex_state = 25, .external_lex_state = 8}, + [6319] = {.lex_state = 25, .external_lex_state = 8}, + [6320] = {.lex_state = 25, .external_lex_state = 8}, + [6321] = {.lex_state = 25, .external_lex_state = 8}, + [6322] = {.lex_state = 25, .external_lex_state = 8}, + [6323] = {.lex_state = 25, .external_lex_state = 8}, + [6324] = {.lex_state = 25, .external_lex_state = 8}, + [6325] = {.lex_state = 25, .external_lex_state = 8}, + [6326] = {.lex_state = 25, .external_lex_state = 8}, + [6327] = {.lex_state = 25, .external_lex_state = 8}, + [6328] = {.lex_state = 25, .external_lex_state = 8}, + [6329] = {.lex_state = 25, .external_lex_state = 8}, + [6330] = {.lex_state = 25, .external_lex_state = 8}, + [6331] = {.lex_state = 25, .external_lex_state = 8}, + [6332] = {.lex_state = 25, .external_lex_state = 8}, + [6333] = {.lex_state = 25, .external_lex_state = 8}, + [6334] = {.lex_state = 25, .external_lex_state = 8}, + [6335] = {.lex_state = 25, .external_lex_state = 8}, + [6336] = {.lex_state = 25, .external_lex_state = 8}, + [6337] = {.lex_state = 25, .external_lex_state = 8}, + [6338] = {.lex_state = 25, .external_lex_state = 8}, + [6339] = {.lex_state = 25, .external_lex_state = 8}, + [6340] = {.lex_state = 25, .external_lex_state = 8}, + [6341] = {.lex_state = 25, .external_lex_state = 8}, + [6342] = {.lex_state = 25, .external_lex_state = 8}, + [6343] = {.lex_state = 25, .external_lex_state = 8}, + [6344] = {.lex_state = 25, .external_lex_state = 8}, + [6345] = {.lex_state = 25, .external_lex_state = 8}, + [6346] = {.lex_state = 25, .external_lex_state = 8}, + [6347] = {.lex_state = 25, .external_lex_state = 8}, + [6348] = {.lex_state = 25, .external_lex_state = 8}, + [6349] = {.lex_state = 25, .external_lex_state = 8}, + [6350] = {.lex_state = 25, .external_lex_state = 8}, + [6351] = {.lex_state = 28, .external_lex_state = 8}, + [6352] = {.lex_state = 25, .external_lex_state = 8}, + [6353] = {.lex_state = 25, .external_lex_state = 8}, + [6354] = {.lex_state = 25, .external_lex_state = 8}, + [6355] = {.lex_state = 25, .external_lex_state = 8}, + [6356] = {.lex_state = 25, .external_lex_state = 8}, + [6357] = {.lex_state = 25, .external_lex_state = 8}, + [6358] = {.lex_state = 25, .external_lex_state = 8}, + [6359] = {.lex_state = 25, .external_lex_state = 8}, + [6360] = {.lex_state = 25, .external_lex_state = 8}, + [6361] = {.lex_state = 25, .external_lex_state = 8}, + [6362] = {.lex_state = 25, .external_lex_state = 8}, + [6363] = {.lex_state = 25, .external_lex_state = 8}, + [6364] = {.lex_state = 25, .external_lex_state = 8}, + [6365] = {.lex_state = 25, .external_lex_state = 8}, + [6366] = {.lex_state = 25, .external_lex_state = 8}, + [6367] = {.lex_state = 25, .external_lex_state = 8}, + [6368] = {.lex_state = 25, .external_lex_state = 8}, + [6369] = {.lex_state = 25, .external_lex_state = 8}, + [6370] = {.lex_state = 25, .external_lex_state = 8}, + [6371] = {.lex_state = 25, .external_lex_state = 8}, + [6372] = {.lex_state = 25, .external_lex_state = 8}, + [6373] = {.lex_state = 25, .external_lex_state = 8}, + [6374] = {.lex_state = 25, .external_lex_state = 8}, + [6375] = {.lex_state = 25, .external_lex_state = 8}, + [6376] = {.lex_state = 25, .external_lex_state = 8}, + [6377] = {.lex_state = 25, .external_lex_state = 8}, + [6378] = {.lex_state = 25, .external_lex_state = 8}, + [6379] = {.lex_state = 25, .external_lex_state = 8}, + [6380] = {.lex_state = 25, .external_lex_state = 8}, + [6381] = {.lex_state = 25, .external_lex_state = 8}, + [6382] = {.lex_state = 25, .external_lex_state = 8}, + [6383] = {.lex_state = 25, .external_lex_state = 8}, + [6384] = {.lex_state = 25, .external_lex_state = 8}, + [6385] = {.lex_state = 25, .external_lex_state = 8}, + [6386] = {.lex_state = 25, .external_lex_state = 8}, + [6387] = {.lex_state = 25, .external_lex_state = 8}, + [6388] = {.lex_state = 25, .external_lex_state = 8}, + [6389] = {.lex_state = 25, .external_lex_state = 8}, + [6390] = {.lex_state = 25, .external_lex_state = 8}, + [6391] = {.lex_state = 25, .external_lex_state = 8}, + [6392] = {.lex_state = 25, .external_lex_state = 8}, + [6393] = {.lex_state = 25, .external_lex_state = 8}, + [6394] = {.lex_state = 25, .external_lex_state = 8}, + [6395] = {.lex_state = 25, .external_lex_state = 8}, + [6396] = {.lex_state = 25, .external_lex_state = 8}, + [6397] = {.lex_state = 25, .external_lex_state = 8}, + [6398] = {.lex_state = 25, .external_lex_state = 8}, + [6399] = {.lex_state = 25, .external_lex_state = 8}, + [6400] = {.lex_state = 25, .external_lex_state = 8}, + [6401] = {.lex_state = 25, .external_lex_state = 8}, + [6402] = {.lex_state = 25, .external_lex_state = 8}, + [6403] = {.lex_state = 25, .external_lex_state = 8}, + [6404] = {.lex_state = 25, .external_lex_state = 8}, + [6405] = {.lex_state = 25, .external_lex_state = 8}, + [6406] = {.lex_state = 25, .external_lex_state = 8}, + [6407] = {.lex_state = 25, .external_lex_state = 8}, + [6408] = {.lex_state = 25, .external_lex_state = 8}, + [6409] = {.lex_state = 25, .external_lex_state = 8}, + [6410] = {.lex_state = 25, .external_lex_state = 8}, + [6411] = {.lex_state = 25, .external_lex_state = 8}, + [6412] = {.lex_state = 25, .external_lex_state = 8}, + [6413] = {.lex_state = 25, .external_lex_state = 8}, + [6414] = {.lex_state = 25, .external_lex_state = 8}, + [6415] = {.lex_state = 25, .external_lex_state = 8}, + [6416] = {.lex_state = 25, .external_lex_state = 8}, + [6417] = {.lex_state = 25, .external_lex_state = 8}, + [6418] = {.lex_state = 25, .external_lex_state = 8}, + [6419] = {.lex_state = 25, .external_lex_state = 8}, + [6420] = {.lex_state = 25, .external_lex_state = 8}, + [6421] = {.lex_state = 25, .external_lex_state = 8}, + [6422] = {.lex_state = 25, .external_lex_state = 8}, + [6423] = {.lex_state = 25, .external_lex_state = 8}, + [6424] = {.lex_state = 25, .external_lex_state = 8}, + [6425] = {.lex_state = 25, .external_lex_state = 8}, + [6426] = {.lex_state = 25, .external_lex_state = 8}, + [6427] = {.lex_state = 25, .external_lex_state = 8}, + [6428] = {.lex_state = 25, .external_lex_state = 8}, + [6429] = {.lex_state = 25, .external_lex_state = 8}, + [6430] = {.lex_state = 25, .external_lex_state = 8}, + [6431] = {.lex_state = 25, .external_lex_state = 8}, + [6432] = {.lex_state = 25, .external_lex_state = 8}, + [6433] = {.lex_state = 25, .external_lex_state = 8}, + [6434] = {.lex_state = 25, .external_lex_state = 8}, + [6435] = {.lex_state = 25, .external_lex_state = 8}, + [6436] = {.lex_state = 25, .external_lex_state = 8}, + [6437] = {.lex_state = 25, .external_lex_state = 8}, + [6438] = {.lex_state = 25, .external_lex_state = 8}, + [6439] = {.lex_state = 25, .external_lex_state = 8}, + [6440] = {.lex_state = 25, .external_lex_state = 8}, + [6441] = {.lex_state = 25, .external_lex_state = 8}, + [6442] = {.lex_state = 25, .external_lex_state = 8}, + [6443] = {.lex_state = 25, .external_lex_state = 8}, + [6444] = {.lex_state = 25, .external_lex_state = 8}, + [6445] = {.lex_state = 25, .external_lex_state = 8}, + [6446] = {.lex_state = 25, .external_lex_state = 8}, + [6447] = {.lex_state = 25, .external_lex_state = 8}, + [6448] = {.lex_state = 25, .external_lex_state = 8}, + [6449] = {.lex_state = 25, .external_lex_state = 8}, + [6450] = {.lex_state = 25, .external_lex_state = 8}, + [6451] = {.lex_state = 25, .external_lex_state = 8}, + [6452] = {.lex_state = 25, .external_lex_state = 8}, + [6453] = {.lex_state = 25, .external_lex_state = 8}, + [6454] = {.lex_state = 25, .external_lex_state = 8}, + [6455] = {.lex_state = 25, .external_lex_state = 8}, + [6456] = {.lex_state = 25, .external_lex_state = 8}, + [6457] = {.lex_state = 25, .external_lex_state = 8}, + [6458] = {.lex_state = 25, .external_lex_state = 8}, + [6459] = {.lex_state = 25, .external_lex_state = 8}, + [6460] = {.lex_state = 25, .external_lex_state = 8}, + [6461] = {.lex_state = 25, .external_lex_state = 8}, + [6462] = {.lex_state = 25, .external_lex_state = 8}, + [6463] = {.lex_state = 25, .external_lex_state = 8}, + [6464] = {.lex_state = 25, .external_lex_state = 8}, + [6465] = {.lex_state = 25, .external_lex_state = 8}, + [6466] = {.lex_state = 25, .external_lex_state = 8}, + [6467] = {.lex_state = 25, .external_lex_state = 8}, + [6468] = {.lex_state = 25, .external_lex_state = 8}, + [6469] = {.lex_state = 25, .external_lex_state = 8}, + [6470] = {.lex_state = 25, .external_lex_state = 8}, + [6471] = {.lex_state = 25, .external_lex_state = 8}, + [6472] = {.lex_state = 25, .external_lex_state = 8}, + [6473] = {.lex_state = 25, .external_lex_state = 8}, + [6474] = {.lex_state = 25, .external_lex_state = 8}, + [6475] = {.lex_state = 25, .external_lex_state = 8}, + [6476] = {.lex_state = 25, .external_lex_state = 8}, + [6477] = {.lex_state = 25, .external_lex_state = 8}, + [6478] = {.lex_state = 25, .external_lex_state = 8}, + [6479] = {.lex_state = 25, .external_lex_state = 8}, + [6480] = {.lex_state = 25, .external_lex_state = 8}, + [6481] = {.lex_state = 25, .external_lex_state = 8}, + [6482] = {.lex_state = 25, .external_lex_state = 8}, + [6483] = {.lex_state = 25, .external_lex_state = 8}, + [6484] = {.lex_state = 25, .external_lex_state = 8}, + [6485] = {.lex_state = 25, .external_lex_state = 8}, + [6486] = {.lex_state = 25, .external_lex_state = 8}, + [6487] = {.lex_state = 25, .external_lex_state = 8}, + [6488] = {.lex_state = 25, .external_lex_state = 8}, + [6489] = {.lex_state = 25, .external_lex_state = 8}, + [6490] = {.lex_state = 25, .external_lex_state = 8}, + [6491] = {.lex_state = 25, .external_lex_state = 8}, + [6492] = {.lex_state = 25, .external_lex_state = 8}, + [6493] = {.lex_state = 25, .external_lex_state = 8}, + [6494] = {.lex_state = 25, .external_lex_state = 8}, + [6495] = {.lex_state = 25, .external_lex_state = 8}, + [6496] = {.lex_state = 25, .external_lex_state = 8}, + [6497] = {.lex_state = 25, .external_lex_state = 8}, + [6498] = {.lex_state = 25, .external_lex_state = 8}, + [6499] = {.lex_state = 25, .external_lex_state = 8}, + [6500] = {.lex_state = 25, .external_lex_state = 8}, + [6501] = {.lex_state = 25, .external_lex_state = 8}, + [6502] = {.lex_state = 25, .external_lex_state = 8}, + [6503] = {.lex_state = 25, .external_lex_state = 8}, + [6504] = {.lex_state = 25, .external_lex_state = 8}, + [6505] = {.lex_state = 25, .external_lex_state = 8}, + [6506] = {.lex_state = 25, .external_lex_state = 8}, + [6507] = {.lex_state = 25, .external_lex_state = 8}, + [6508] = {.lex_state = 25, .external_lex_state = 8}, + [6509] = {.lex_state = 25, .external_lex_state = 8}, + [6510] = {.lex_state = 25, .external_lex_state = 8}, + [6511] = {.lex_state = 25, .external_lex_state = 8}, + [6512] = {.lex_state = 25, .external_lex_state = 8}, + [6513] = {.lex_state = 25, .external_lex_state = 8}, + [6514] = {.lex_state = 25, .external_lex_state = 8}, + [6515] = {.lex_state = 25, .external_lex_state = 8}, + [6516] = {.lex_state = 25, .external_lex_state = 8}, + [6517] = {.lex_state = 25, .external_lex_state = 8}, + [6518] = {.lex_state = 25, .external_lex_state = 8}, + [6519] = {.lex_state = 25, .external_lex_state = 8}, + [6520] = {.lex_state = 25, .external_lex_state = 8}, + [6521] = {.lex_state = 25, .external_lex_state = 8}, + [6522] = {.lex_state = 25, .external_lex_state = 8}, + [6523] = {.lex_state = 25, .external_lex_state = 8}, + [6524] = {.lex_state = 25, .external_lex_state = 8}, + [6525] = {.lex_state = 25, .external_lex_state = 8}, + [6526] = {.lex_state = 25, .external_lex_state = 8}, + [6527] = {.lex_state = 25, .external_lex_state = 8}, + [6528] = {.lex_state = 25, .external_lex_state = 8}, + [6529] = {.lex_state = 25, .external_lex_state = 8}, + [6530] = {.lex_state = 25, .external_lex_state = 8}, + [6531] = {.lex_state = 25, .external_lex_state = 8}, + [6532] = {.lex_state = 25, .external_lex_state = 8}, + [6533] = {.lex_state = 25, .external_lex_state = 8}, + [6534] = {.lex_state = 25, .external_lex_state = 8}, + [6535] = {.lex_state = 25, .external_lex_state = 8}, + [6536] = {.lex_state = 25, .external_lex_state = 8}, + [6537] = {.lex_state = 25, .external_lex_state = 8}, + [6538] = {.lex_state = 20, .external_lex_state = 8}, + [6539] = {.lex_state = 25, .external_lex_state = 8}, + [6540] = {.lex_state = 25, .external_lex_state = 8}, + [6541] = {.lex_state = 25, .external_lex_state = 8}, + [6542] = {.lex_state = 25, .external_lex_state = 8}, + [6543] = {.lex_state = 25, .external_lex_state = 8}, + [6544] = {.lex_state = 25, .external_lex_state = 8}, + [6545] = {.lex_state = 25, .external_lex_state = 8}, + [6546] = {.lex_state = 25, .external_lex_state = 8}, + [6547] = {.lex_state = 25, .external_lex_state = 8}, + [6548] = {.lex_state = 25, .external_lex_state = 8}, + [6549] = {.lex_state = 20, .external_lex_state = 8}, + [6550] = {.lex_state = 25, .external_lex_state = 8}, + [6551] = {.lex_state = 25, .external_lex_state = 8}, + [6552] = {.lex_state = 25, .external_lex_state = 8}, + [6553] = {.lex_state = 25, .external_lex_state = 8}, + [6554] = {.lex_state = 25, .external_lex_state = 8}, + [6555] = {.lex_state = 25, .external_lex_state = 8}, + [6556] = {.lex_state = 25, .external_lex_state = 8}, + [6557] = {.lex_state = 25, .external_lex_state = 8}, + [6558] = {.lex_state = 25, .external_lex_state = 8}, + [6559] = {.lex_state = 25, .external_lex_state = 8}, + [6560] = {.lex_state = 25, .external_lex_state = 8}, + [6561] = {.lex_state = 25, .external_lex_state = 8}, + [6562] = {.lex_state = 25, .external_lex_state = 8}, + [6563] = {.lex_state = 25, .external_lex_state = 8}, + [6564] = {.lex_state = 25, .external_lex_state = 8}, + [6565] = {.lex_state = 25, .external_lex_state = 8}, + [6566] = {.lex_state = 25, .external_lex_state = 8}, + [6567] = {.lex_state = 25, .external_lex_state = 8}, + [6568] = {.lex_state = 25, .external_lex_state = 8}, + [6569] = {.lex_state = 25, .external_lex_state = 8}, + [6570] = {.lex_state = 25, .external_lex_state = 8}, + [6571] = {.lex_state = 25, .external_lex_state = 8}, + [6572] = {.lex_state = 25, .external_lex_state = 8}, + [6573] = {.lex_state = 25, .external_lex_state = 8}, + [6574] = {.lex_state = 25, .external_lex_state = 8}, + [6575] = {.lex_state = 25, .external_lex_state = 8}, + [6576] = {.lex_state = 25, .external_lex_state = 8}, + [6577] = {.lex_state = 25, .external_lex_state = 8}, + [6578] = {.lex_state = 25, .external_lex_state = 8}, + [6579] = {.lex_state = 25, .external_lex_state = 8}, + [6580] = {.lex_state = 25, .external_lex_state = 8}, + [6581] = {.lex_state = 25, .external_lex_state = 8}, + [6582] = {.lex_state = 25, .external_lex_state = 8}, + [6583] = {.lex_state = 25, .external_lex_state = 8}, + [6584] = {.lex_state = 25, .external_lex_state = 8}, + [6585] = {.lex_state = 25, .external_lex_state = 8}, + [6586] = {.lex_state = 25, .external_lex_state = 8}, + [6587] = {.lex_state = 25, .external_lex_state = 8}, + [6588] = {.lex_state = 25, .external_lex_state = 8}, + [6589] = {.lex_state = 25, .external_lex_state = 8}, + [6590] = {.lex_state = 20, .external_lex_state = 8}, + [6591] = {.lex_state = 20, .external_lex_state = 8}, + [6592] = {.lex_state = 20, .external_lex_state = 8}, + [6593] = {.lex_state = 27, .external_lex_state = 8}, + [6594] = {.lex_state = 27, .external_lex_state = 8}, + [6595] = {.lex_state = 27, .external_lex_state = 8}, + [6596] = {.lex_state = 27, .external_lex_state = 8}, + [6597] = {.lex_state = 27, .external_lex_state = 8}, + [6598] = {.lex_state = 27, .external_lex_state = 8}, + [6599] = {.lex_state = 27, .external_lex_state = 8}, + [6600] = {.lex_state = 27, .external_lex_state = 8}, + [6601] = {.lex_state = 27, .external_lex_state = 8}, + [6602] = {.lex_state = 27, .external_lex_state = 8}, + [6603] = {.lex_state = 27, .external_lex_state = 8}, + [6604] = {.lex_state = 27, .external_lex_state = 8}, + [6605] = {.lex_state = 20, .external_lex_state = 8}, + [6606] = {.lex_state = 27, .external_lex_state = 8}, + [6607] = {.lex_state = 27, .external_lex_state = 8}, + [6608] = {.lex_state = 27, .external_lex_state = 8}, + [6609] = {.lex_state = 27, .external_lex_state = 8}, + [6610] = {.lex_state = 27, .external_lex_state = 8}, + [6611] = {.lex_state = 27, .external_lex_state = 8}, + [6612] = {.lex_state = 27, .external_lex_state = 8}, + [6613] = {.lex_state = 27, .external_lex_state = 8}, + [6614] = {.lex_state = 27, .external_lex_state = 8}, + [6615] = {.lex_state = 27, .external_lex_state = 8}, + [6616] = {.lex_state = 27, .external_lex_state = 8}, + [6617] = {.lex_state = 27, .external_lex_state = 8}, + [6618] = {.lex_state = 27, .external_lex_state = 8}, + [6619] = {.lex_state = 27, .external_lex_state = 8}, + [6620] = {.lex_state = 27, .external_lex_state = 8}, + [6621] = {.lex_state = 20, .external_lex_state = 8}, + [6622] = {.lex_state = 20, .external_lex_state = 8}, + [6623] = {.lex_state = 25, .external_lex_state = 8}, + [6624] = {.lex_state = 20, .external_lex_state = 8}, + [6625] = {.lex_state = 27, .external_lex_state = 8}, + [6626] = {.lex_state = 25, .external_lex_state = 8}, + [6627] = {.lex_state = 20, .external_lex_state = 8}, + [6628] = {.lex_state = 25, .external_lex_state = 8}, + [6629] = {.lex_state = 20, .external_lex_state = 8}, + [6630] = {.lex_state = 25, .external_lex_state = 8}, + [6631] = {.lex_state = 25, .external_lex_state = 8}, + [6632] = {.lex_state = 25, .external_lex_state = 8}, + [6633] = {.lex_state = 25, .external_lex_state = 8}, + [6634] = {.lex_state = 25, .external_lex_state = 8}, + [6635] = {.lex_state = 25, .external_lex_state = 8}, + [6636] = {.lex_state = 25, .external_lex_state = 8}, + [6637] = {.lex_state = 20, .external_lex_state = 8}, + [6638] = {.lex_state = 25, .external_lex_state = 8}, + [6639] = {.lex_state = 25, .external_lex_state = 8}, + [6640] = {.lex_state = 25, .external_lex_state = 8}, + [6641] = {.lex_state = 25, .external_lex_state = 8}, + [6642] = {.lex_state = 20, .external_lex_state = 8}, + [6643] = {.lex_state = 25, .external_lex_state = 8}, + [6644] = {.lex_state = 20, .external_lex_state = 8}, + [6645] = {.lex_state = 25, .external_lex_state = 8}, + [6646] = {.lex_state = 20, .external_lex_state = 8}, + [6647] = {.lex_state = 25, .external_lex_state = 8}, + [6648] = {.lex_state = 25, .external_lex_state = 8}, + [6649] = {.lex_state = 20, .external_lex_state = 8}, + [6650] = {.lex_state = 20, .external_lex_state = 8}, + [6651] = {.lex_state = 25, .external_lex_state = 8}, + [6652] = {.lex_state = 25, .external_lex_state = 8}, + [6653] = {.lex_state = 25, .external_lex_state = 8}, + [6654] = {.lex_state = 20, .external_lex_state = 8}, + [6655] = {.lex_state = 25, .external_lex_state = 8}, + [6656] = {.lex_state = 25, .external_lex_state = 8}, + [6657] = {.lex_state = 25, .external_lex_state = 8}, + [6658] = {.lex_state = 20, .external_lex_state = 8}, + [6659] = {.lex_state = 25, .external_lex_state = 8}, + [6660] = {.lex_state = 20, .external_lex_state = 8}, + [6661] = {.lex_state = 25, .external_lex_state = 8}, + [6662] = {.lex_state = 20, .external_lex_state = 8}, + [6663] = {.lex_state = 20, .external_lex_state = 8}, + [6664] = {.lex_state = 20, .external_lex_state = 8}, + [6665] = {.lex_state = 20, .external_lex_state = 8}, + [6666] = {.lex_state = 25, .external_lex_state = 8}, + [6667] = {.lex_state = 25, .external_lex_state = 8}, + [6668] = {.lex_state = 20, .external_lex_state = 8}, + [6669] = {.lex_state = 25, .external_lex_state = 8}, + [6670] = {.lex_state = 20, .external_lex_state = 8}, + [6671] = {.lex_state = 25, .external_lex_state = 8}, + [6672] = {.lex_state = 20, .external_lex_state = 8}, + [6673] = {.lex_state = 25, .external_lex_state = 8}, + [6674] = {.lex_state = 25, .external_lex_state = 8}, + [6675] = {.lex_state = 25, .external_lex_state = 8}, + [6676] = {.lex_state = 25, .external_lex_state = 8}, + [6677] = {.lex_state = 25, .external_lex_state = 8}, + [6678] = {.lex_state = 25, .external_lex_state = 8}, + [6679] = {.lex_state = 25, .external_lex_state = 8}, + [6680] = {.lex_state = 25, .external_lex_state = 8}, + [6681] = {.lex_state = 25, .external_lex_state = 8}, + [6682] = {.lex_state = 25, .external_lex_state = 8}, + [6683] = {.lex_state = 25, .external_lex_state = 8}, + [6684] = {.lex_state = 25, .external_lex_state = 8}, + [6685] = {.lex_state = 20, .external_lex_state = 8}, + [6686] = {.lex_state = 20, .external_lex_state = 8}, + [6687] = {.lex_state = 27, .external_lex_state = 8}, + [6688] = {.lex_state = 20, .external_lex_state = 8}, + [6689] = {.lex_state = 27, .external_lex_state = 8}, + [6690] = {.lex_state = 27, .external_lex_state = 8}, + [6691] = {.lex_state = 27, .external_lex_state = 8}, + [6692] = {.lex_state = 27, .external_lex_state = 8}, + [6693] = {.lex_state = 27, .external_lex_state = 8}, + [6694] = {.lex_state = 27, .external_lex_state = 8}, + [6695] = {.lex_state = 27, .external_lex_state = 8}, + [6696] = {.lex_state = 27, .external_lex_state = 8}, + [6697] = {.lex_state = 27, .external_lex_state = 8}, + [6698] = {.lex_state = 27, .external_lex_state = 8}, + [6699] = {.lex_state = 27, .external_lex_state = 8}, + [6700] = {.lex_state = 27, .external_lex_state = 8}, + [6701] = {.lex_state = 27, .external_lex_state = 8}, + [6702] = {.lex_state = 27, .external_lex_state = 8}, + [6703] = {.lex_state = 27, .external_lex_state = 8}, + [6704] = {.lex_state = 27, .external_lex_state = 8}, + [6705] = {.lex_state = 27, .external_lex_state = 8}, + [6706] = {.lex_state = 27, .external_lex_state = 8}, + [6707] = {.lex_state = 27, .external_lex_state = 8}, + [6708] = {.lex_state = 27, .external_lex_state = 8}, + [6709] = {.lex_state = 27, .external_lex_state = 8}, + [6710] = {.lex_state = 27, .external_lex_state = 8}, + [6711] = {.lex_state = 27, .external_lex_state = 8}, + [6712] = {.lex_state = 27, .external_lex_state = 8}, + [6713] = {.lex_state = 27, .external_lex_state = 8}, + [6714] = {.lex_state = 27, .external_lex_state = 8}, + [6715] = {.lex_state = 27, .external_lex_state = 8}, + [6716] = {.lex_state = 27, .external_lex_state = 8}, + [6717] = {.lex_state = 27, .external_lex_state = 8}, + [6718] = {.lex_state = 27, .external_lex_state = 8}, + [6719] = {.lex_state = 27, .external_lex_state = 8}, + [6720] = {.lex_state = 27, .external_lex_state = 8}, + [6721] = {.lex_state = 27, .external_lex_state = 8}, + [6722] = {.lex_state = 27, .external_lex_state = 8}, + [6723] = {.lex_state = 27, .external_lex_state = 8}, + [6724] = {.lex_state = 27, .external_lex_state = 8}, + [6725] = {.lex_state = 27, .external_lex_state = 8}, + [6726] = {.lex_state = 27, .external_lex_state = 8}, + [6727] = {.lex_state = 27, .external_lex_state = 8}, + [6728] = {.lex_state = 27, .external_lex_state = 8}, + [6729] = {.lex_state = 27, .external_lex_state = 8}, + [6730] = {.lex_state = 27, .external_lex_state = 8}, + [6731] = {.lex_state = 27, .external_lex_state = 8}, + [6732] = {.lex_state = 27, .external_lex_state = 8}, + [6733] = {.lex_state = 27, .external_lex_state = 8}, + [6734] = {.lex_state = 27, .external_lex_state = 8}, + [6735] = {.lex_state = 27, .external_lex_state = 8}, + [6736] = {.lex_state = 27, .external_lex_state = 8}, + [6737] = {.lex_state = 27, .external_lex_state = 8}, + [6738] = {.lex_state = 20, .external_lex_state = 8}, + [6739] = {.lex_state = 27, .external_lex_state = 8}, + [6740] = {.lex_state = 27, .external_lex_state = 8}, + [6741] = {.lex_state = 27, .external_lex_state = 8}, + [6742] = {.lex_state = 27, .external_lex_state = 8}, + [6743] = {.lex_state = 20, .external_lex_state = 8}, + [6744] = {.lex_state = 20, .external_lex_state = 8}, + [6745] = {.lex_state = 20, .external_lex_state = 8}, + [6746] = {.lex_state = 20, .external_lex_state = 8}, + [6747] = {.lex_state = 20, .external_lex_state = 8}, + [6748] = {.lex_state = 20, .external_lex_state = 8}, + [6749] = {.lex_state = 20, .external_lex_state = 8}, + [6750] = {.lex_state = 20, .external_lex_state = 8}, + [6751] = {.lex_state = 20, .external_lex_state = 8}, + [6752] = {.lex_state = 20, .external_lex_state = 8}, + [6753] = {.lex_state = 20, .external_lex_state = 8}, + [6754] = {.lex_state = 20, .external_lex_state = 8}, + [6755] = {.lex_state = 20, .external_lex_state = 8}, + [6756] = {.lex_state = 20, .external_lex_state = 8}, + [6757] = {.lex_state = 20, .external_lex_state = 8}, + [6758] = {.lex_state = 20, .external_lex_state = 8}, + [6759] = {.lex_state = 20, .external_lex_state = 8}, + [6760] = {.lex_state = 20, .external_lex_state = 8}, + [6761] = {.lex_state = 20, .external_lex_state = 8}, + [6762] = {.lex_state = 20, .external_lex_state = 8}, + [6763] = {.lex_state = 20, .external_lex_state = 8}, + [6764] = {.lex_state = 20, .external_lex_state = 8}, + [6765] = {.lex_state = 20, .external_lex_state = 8}, + [6766] = {.lex_state = 20, .external_lex_state = 8}, + [6767] = {.lex_state = 20, .external_lex_state = 8}, + [6768] = {.lex_state = 20, .external_lex_state = 8}, + [6769] = {.lex_state = 20, .external_lex_state = 8}, + [6770] = {.lex_state = 20, .external_lex_state = 8}, + [6771] = {.lex_state = 20, .external_lex_state = 8}, + [6772] = {.lex_state = 20, .external_lex_state = 8}, + [6773] = {.lex_state = 20, .external_lex_state = 8}, + [6774] = {.lex_state = 20, .external_lex_state = 8}, + [6775] = {.lex_state = 20, .external_lex_state = 8}, + [6776] = {.lex_state = 20, .external_lex_state = 8}, + [6777] = {.lex_state = 20, .external_lex_state = 8}, + [6778] = {.lex_state = 20, .external_lex_state = 8}, + [6779] = {.lex_state = 20, .external_lex_state = 8}, + [6780] = {.lex_state = 20, .external_lex_state = 8}, + [6781] = {.lex_state = 20, .external_lex_state = 8}, + [6782] = {.lex_state = 20, .external_lex_state = 8}, + [6783] = {.lex_state = 20, .external_lex_state = 8}, + [6784] = {.lex_state = 20, .external_lex_state = 8}, + [6785] = {.lex_state = 20, .external_lex_state = 8}, + [6786] = {.lex_state = 20, .external_lex_state = 8}, + [6787] = {.lex_state = 20, .external_lex_state = 8}, + [6788] = {.lex_state = 20, .external_lex_state = 8}, + [6789] = {.lex_state = 20, .external_lex_state = 8}, + [6790] = {.lex_state = 20, .external_lex_state = 8}, + [6791] = {.lex_state = 20, .external_lex_state = 8}, + [6792] = {.lex_state = 20, .external_lex_state = 8}, + [6793] = {.lex_state = 20, .external_lex_state = 8}, + [6794] = {.lex_state = 20, .external_lex_state = 8}, + [6795] = {.lex_state = 20, .external_lex_state = 8}, + [6796] = {.lex_state = 20, .external_lex_state = 8}, + [6797] = {.lex_state = 20, .external_lex_state = 8}, + [6798] = {.lex_state = 20, .external_lex_state = 8}, + [6799] = {.lex_state = 20, .external_lex_state = 8}, + [6800] = {.lex_state = 20, .external_lex_state = 8}, + [6801] = {.lex_state = 20, .external_lex_state = 8}, + [6802] = {.lex_state = 20, .external_lex_state = 8}, + [6803] = {.lex_state = 20, .external_lex_state = 8}, + [6804] = {.lex_state = 20, .external_lex_state = 8}, + [6805] = {.lex_state = 20, .external_lex_state = 8}, + [6806] = {.lex_state = 20, .external_lex_state = 8}, + [6807] = {.lex_state = 20, .external_lex_state = 8}, + [6808] = {.lex_state = 20, .external_lex_state = 8}, + [6809] = {.lex_state = 20, .external_lex_state = 8}, + [6810] = {.lex_state = 20, .external_lex_state = 8}, + [6811] = {.lex_state = 20, .external_lex_state = 8}, + [6812] = {.lex_state = 20, .external_lex_state = 8}, + [6813] = {.lex_state = 20, .external_lex_state = 8}, + [6814] = {.lex_state = 20, .external_lex_state = 8}, + [6815] = {.lex_state = 20, .external_lex_state = 8}, + [6816] = {.lex_state = 20, .external_lex_state = 8}, + [6817] = {.lex_state = 20, .external_lex_state = 8}, + [6818] = {.lex_state = 20, .external_lex_state = 8}, + [6819] = {.lex_state = 20, .external_lex_state = 8}, + [6820] = {.lex_state = 20, .external_lex_state = 8}, + [6821] = {.lex_state = 20, .external_lex_state = 8}, + [6822] = {.lex_state = 20, .external_lex_state = 8}, + [6823] = {.lex_state = 20, .external_lex_state = 8}, + [6824] = {.lex_state = 20, .external_lex_state = 8}, + [6825] = {.lex_state = 20, .external_lex_state = 8}, + [6826] = {.lex_state = 20, .external_lex_state = 8}, + [6827] = {.lex_state = 20, .external_lex_state = 8}, + [6828] = {.lex_state = 20, .external_lex_state = 8}, + [6829] = {.lex_state = 20, .external_lex_state = 8}, + [6830] = {.lex_state = 20, .external_lex_state = 8}, + [6831] = {.lex_state = 20, .external_lex_state = 8}, + [6832] = {.lex_state = 20, .external_lex_state = 8}, + [6833] = {.lex_state = 20, .external_lex_state = 8}, + [6834] = {.lex_state = 20, .external_lex_state = 8}, + [6835] = {.lex_state = 20, .external_lex_state = 8}, + [6836] = {.lex_state = 20, .external_lex_state = 8}, + [6837] = {.lex_state = 20, .external_lex_state = 8}, + [6838] = {.lex_state = 20, .external_lex_state = 8}, + [6839] = {.lex_state = 20, .external_lex_state = 8}, + [6840] = {.lex_state = 20, .external_lex_state = 8}, + [6841] = {.lex_state = 20, .external_lex_state = 8}, + [6842] = {.lex_state = 20, .external_lex_state = 8}, + [6843] = {.lex_state = 20, .external_lex_state = 8}, + [6844] = {.lex_state = 20, .external_lex_state = 8}, + [6845] = {.lex_state = 20, .external_lex_state = 8}, + [6846] = {.lex_state = 20, .external_lex_state = 8}, + [6847] = {.lex_state = 20, .external_lex_state = 8}, + [6848] = {.lex_state = 20, .external_lex_state = 8}, + [6849] = {.lex_state = 20, .external_lex_state = 8}, + [6850] = {.lex_state = 20, .external_lex_state = 8}, + [6851] = {.lex_state = 20, .external_lex_state = 8}, + [6852] = {.lex_state = 20, .external_lex_state = 8}, + [6853] = {.lex_state = 20, .external_lex_state = 8}, + [6854] = {.lex_state = 20, .external_lex_state = 8}, + [6855] = {.lex_state = 20, .external_lex_state = 8}, + [6856] = {.lex_state = 20, .external_lex_state = 8}, + [6857] = {.lex_state = 20, .external_lex_state = 8}, + [6858] = {.lex_state = 20, .external_lex_state = 8}, + [6859] = {.lex_state = 20, .external_lex_state = 8}, + [6860] = {.lex_state = 20, .external_lex_state = 8}, + [6861] = {.lex_state = 20, .external_lex_state = 8}, + [6862] = {.lex_state = 20, .external_lex_state = 8}, + [6863] = {.lex_state = 20, .external_lex_state = 8}, + [6864] = {.lex_state = 20, .external_lex_state = 8}, + [6865] = {.lex_state = 20, .external_lex_state = 8}, + [6866] = {.lex_state = 20, .external_lex_state = 8}, + [6867] = {.lex_state = 20, .external_lex_state = 8}, + [6868] = {.lex_state = 20, .external_lex_state = 8}, + [6869] = {.lex_state = 20, .external_lex_state = 8}, + [6870] = {.lex_state = 20, .external_lex_state = 8}, + [6871] = {.lex_state = 20, .external_lex_state = 8}, + [6872] = {.lex_state = 20, .external_lex_state = 8}, + [6873] = {.lex_state = 20, .external_lex_state = 8}, + [6874] = {.lex_state = 20, .external_lex_state = 8}, + [6875] = {.lex_state = 20, .external_lex_state = 8}, + [6876] = {.lex_state = 20, .external_lex_state = 8}, + [6877] = {.lex_state = 20, .external_lex_state = 8}, + [6878] = {.lex_state = 20, .external_lex_state = 8}, + [6879] = {.lex_state = 20, .external_lex_state = 8}, + [6880] = {.lex_state = 20, .external_lex_state = 8}, + [6881] = {.lex_state = 20, .external_lex_state = 8}, + [6882] = {.lex_state = 20, .external_lex_state = 8}, + [6883] = {.lex_state = 20, .external_lex_state = 8}, + [6884] = {.lex_state = 20, .external_lex_state = 8}, + [6885] = {.lex_state = 20, .external_lex_state = 8}, + [6886] = {.lex_state = 20, .external_lex_state = 8}, + [6887] = {.lex_state = 20, .external_lex_state = 8}, + [6888] = {.lex_state = 20, .external_lex_state = 8}, + [6889] = {.lex_state = 20, .external_lex_state = 8}, + [6890] = {.lex_state = 20, .external_lex_state = 8}, + [6891] = {.lex_state = 20, .external_lex_state = 8}, + [6892] = {.lex_state = 20, .external_lex_state = 8}, + [6893] = {.lex_state = 20, .external_lex_state = 8}, + [6894] = {.lex_state = 20, .external_lex_state = 8}, + [6895] = {.lex_state = 20, .external_lex_state = 8}, + [6896] = {.lex_state = 20, .external_lex_state = 8}, + [6897] = {.lex_state = 20, .external_lex_state = 8}, + [6898] = {.lex_state = 20, .external_lex_state = 8}, + [6899] = {.lex_state = 20, .external_lex_state = 8}, + [6900] = {.lex_state = 20, .external_lex_state = 8}, + [6901] = {.lex_state = 20, .external_lex_state = 8}, + [6902] = {.lex_state = 20, .external_lex_state = 8}, + [6903] = {.lex_state = 20, .external_lex_state = 8}, + [6904] = {.lex_state = 20, .external_lex_state = 8}, + [6905] = {.lex_state = 20, .external_lex_state = 8}, + [6906] = {.lex_state = 20, .external_lex_state = 8}, + [6907] = {.lex_state = 20, .external_lex_state = 8}, + [6908] = {.lex_state = 20, .external_lex_state = 8}, + [6909] = {.lex_state = 20, .external_lex_state = 8}, + [6910] = {.lex_state = 20, .external_lex_state = 8}, + [6911] = {.lex_state = 20, .external_lex_state = 8}, + [6912] = {.lex_state = 20, .external_lex_state = 8}, + [6913] = {.lex_state = 20, .external_lex_state = 8}, + [6914] = {.lex_state = 20, .external_lex_state = 8}, + [6915] = {.lex_state = 20, .external_lex_state = 8}, + [6916] = {.lex_state = 20, .external_lex_state = 8}, + [6917] = {.lex_state = 20, .external_lex_state = 8}, + [6918] = {.lex_state = 20, .external_lex_state = 8}, + [6919] = {.lex_state = 20, .external_lex_state = 8}, + [6920] = {.lex_state = 20, .external_lex_state = 8}, + [6921] = {.lex_state = 20, .external_lex_state = 8}, + [6922] = {.lex_state = 20, .external_lex_state = 8}, + [6923] = {.lex_state = 20, .external_lex_state = 8}, + [6924] = {.lex_state = 20, .external_lex_state = 8}, + [6925] = {.lex_state = 20, .external_lex_state = 8}, + [6926] = {.lex_state = 20, .external_lex_state = 8}, + [6927] = {.lex_state = 20, .external_lex_state = 8}, + [6928] = {.lex_state = 20, .external_lex_state = 8}, + [6929] = {.lex_state = 20, .external_lex_state = 8}, + [6930] = {.lex_state = 20, .external_lex_state = 8}, + [6931] = {.lex_state = 20, .external_lex_state = 8}, + [6932] = {.lex_state = 20, .external_lex_state = 8}, + [6933] = {.lex_state = 20, .external_lex_state = 8}, + [6934] = {.lex_state = 20, .external_lex_state = 8}, + [6935] = {.lex_state = 20, .external_lex_state = 8}, + [6936] = {.lex_state = 20, .external_lex_state = 8}, + [6937] = {.lex_state = 20, .external_lex_state = 8}, + [6938] = {.lex_state = 20, .external_lex_state = 8}, + [6939] = {.lex_state = 20, .external_lex_state = 8}, + [6940] = {.lex_state = 20, .external_lex_state = 8}, + [6941] = {.lex_state = 20, .external_lex_state = 8}, + [6942] = {.lex_state = 20, .external_lex_state = 8}, + [6943] = {.lex_state = 20, .external_lex_state = 8}, + [6944] = {.lex_state = 20, .external_lex_state = 8}, + [6945] = {.lex_state = 20, .external_lex_state = 8}, + [6946] = {.lex_state = 20, .external_lex_state = 8}, + [6947] = {.lex_state = 20, .external_lex_state = 8}, + [6948] = {.lex_state = 20, .external_lex_state = 8}, + [6949] = {.lex_state = 20, .external_lex_state = 8}, + [6950] = {.lex_state = 20, .external_lex_state = 8}, + [6951] = {.lex_state = 20, .external_lex_state = 8}, + [6952] = {.lex_state = 20, .external_lex_state = 8}, + [6953] = {.lex_state = 20, .external_lex_state = 8}, + [6954] = {.lex_state = 20, .external_lex_state = 8}, + [6955] = {.lex_state = 20, .external_lex_state = 8}, + [6956] = {.lex_state = 20, .external_lex_state = 8}, + [6957] = {.lex_state = 20, .external_lex_state = 8}, + [6958] = {.lex_state = 20, .external_lex_state = 8}, + [6959] = {.lex_state = 20, .external_lex_state = 8}, + [6960] = {.lex_state = 20, .external_lex_state = 8}, + [6961] = {.lex_state = 20, .external_lex_state = 8}, + [6962] = {.lex_state = 20, .external_lex_state = 8}, + [6963] = {.lex_state = 20, .external_lex_state = 8}, + [6964] = {.lex_state = 20, .external_lex_state = 8}, + [6965] = {.lex_state = 20, .external_lex_state = 8}, + [6966] = {.lex_state = 20, .external_lex_state = 8}, + [6967] = {.lex_state = 20, .external_lex_state = 8}, + [6968] = {.lex_state = 20, .external_lex_state = 8}, + [6969] = {.lex_state = 20, .external_lex_state = 8}, + [6970] = {.lex_state = 20, .external_lex_state = 8}, + [6971] = {.lex_state = 20, .external_lex_state = 8}, + [6972] = {.lex_state = 20, .external_lex_state = 8}, + [6973] = {.lex_state = 20, .external_lex_state = 8}, + [6974] = {.lex_state = 20, .external_lex_state = 8}, + [6975] = {.lex_state = 20, .external_lex_state = 8}, + [6976] = {.lex_state = 20, .external_lex_state = 8}, + [6977] = {.lex_state = 20, .external_lex_state = 8}, + [6978] = {.lex_state = 20, .external_lex_state = 8}, + [6979] = {.lex_state = 20, .external_lex_state = 8}, + [6980] = {.lex_state = 20, .external_lex_state = 8}, + [6981] = {.lex_state = 20, .external_lex_state = 8}, + [6982] = {.lex_state = 20, .external_lex_state = 8}, + [6983] = {.lex_state = 20, .external_lex_state = 8}, + [6984] = {.lex_state = 20, .external_lex_state = 8}, + [6985] = {.lex_state = 20, .external_lex_state = 8}, + [6986] = {.lex_state = 20, .external_lex_state = 8}, + [6987] = {.lex_state = 20, .external_lex_state = 8}, + [6988] = {.lex_state = 20, .external_lex_state = 8}, + [6989] = {.lex_state = 20, .external_lex_state = 8}, + [6990] = {.lex_state = 20, .external_lex_state = 8}, + [6991] = {.lex_state = 20, .external_lex_state = 8}, + [6992] = {.lex_state = 20, .external_lex_state = 8}, + [6993] = {.lex_state = 20, .external_lex_state = 8}, + [6994] = {.lex_state = 20, .external_lex_state = 8}, + [6995] = {.lex_state = 20, .external_lex_state = 8}, + [6996] = {.lex_state = 20, .external_lex_state = 8}, + [6997] = {.lex_state = 20, .external_lex_state = 8}, + [6998] = {.lex_state = 20, .external_lex_state = 8}, + [6999] = {.lex_state = 20, .external_lex_state = 8}, + [7000] = {.lex_state = 20, .external_lex_state = 8}, + [7001] = {.lex_state = 20, .external_lex_state = 8}, + [7002] = {.lex_state = 20, .external_lex_state = 8}, + [7003] = {.lex_state = 20, .external_lex_state = 8}, + [7004] = {.lex_state = 20, .external_lex_state = 8}, + [7005] = {.lex_state = 20, .external_lex_state = 8}, + [7006] = {.lex_state = 20, .external_lex_state = 8}, + [7007] = {.lex_state = 20, .external_lex_state = 8}, + [7008] = {.lex_state = 20, .external_lex_state = 8}, + [7009] = {.lex_state = 20, .external_lex_state = 8}, + [7010] = {.lex_state = 20, .external_lex_state = 8}, + [7011] = {.lex_state = 20, .external_lex_state = 8}, + [7012] = {.lex_state = 20, .external_lex_state = 8}, + [7013] = {.lex_state = 20, .external_lex_state = 8}, + [7014] = {.lex_state = 20, .external_lex_state = 8}, + [7015] = {.lex_state = 20, .external_lex_state = 8}, + [7016] = {.lex_state = 20, .external_lex_state = 8}, + [7017] = {.lex_state = 20, .external_lex_state = 8}, + [7018] = {.lex_state = 20, .external_lex_state = 8}, + [7019] = {.lex_state = 20, .external_lex_state = 8}, + [7020] = {.lex_state = 20, .external_lex_state = 8}, + [7021] = {.lex_state = 20, .external_lex_state = 8}, + [7022] = {.lex_state = 20, .external_lex_state = 8}, + [7023] = {.lex_state = 20, .external_lex_state = 8}, + [7024] = {.lex_state = 20, .external_lex_state = 8}, + [7025] = {.lex_state = 20, .external_lex_state = 8}, + [7026] = {.lex_state = 20, .external_lex_state = 8}, + [7027] = {.lex_state = 20, .external_lex_state = 8}, + [7028] = {.lex_state = 20, .external_lex_state = 8}, + [7029] = {.lex_state = 20, .external_lex_state = 8}, + [7030] = {.lex_state = 20, .external_lex_state = 8}, + [7031] = {.lex_state = 20, .external_lex_state = 8}, + [7032] = {.lex_state = 20, .external_lex_state = 8}, + [7033] = {.lex_state = 20, .external_lex_state = 8}, + [7034] = {.lex_state = 20, .external_lex_state = 8}, + [7035] = {.lex_state = 20, .external_lex_state = 8}, + [7036] = {.lex_state = 20, .external_lex_state = 8}, + [7037] = {.lex_state = 20, .external_lex_state = 8}, + [7038] = {.lex_state = 20, .external_lex_state = 8}, + [7039] = {.lex_state = 20, .external_lex_state = 8}, + [7040] = {.lex_state = 20, .external_lex_state = 8}, + [7041] = {.lex_state = 20, .external_lex_state = 8}, + [7042] = {.lex_state = 20, .external_lex_state = 8}, + [7043] = {.lex_state = 20, .external_lex_state = 8}, + [7044] = {.lex_state = 20, .external_lex_state = 8}, + [7045] = {.lex_state = 20, .external_lex_state = 8}, + [7046] = {.lex_state = 20, .external_lex_state = 8}, + [7047] = {.lex_state = 20, .external_lex_state = 8}, + [7048] = {.lex_state = 20, .external_lex_state = 8}, + [7049] = {.lex_state = 20, .external_lex_state = 8}, + [7050] = {.lex_state = 20, .external_lex_state = 8}, + [7051] = {.lex_state = 20, .external_lex_state = 8}, + [7052] = {.lex_state = 20, .external_lex_state = 8}, + [7053] = {.lex_state = 20, .external_lex_state = 8}, + [7054] = {.lex_state = 20, .external_lex_state = 8}, + [7055] = {.lex_state = 20, .external_lex_state = 8}, + [7056] = {.lex_state = 20, .external_lex_state = 8}, + [7057] = {.lex_state = 20, .external_lex_state = 8}, + [7058] = {.lex_state = 20, .external_lex_state = 8}, + [7059] = {.lex_state = 20, .external_lex_state = 8}, + [7060] = {.lex_state = 20, .external_lex_state = 8}, + [7061] = {.lex_state = 20, .external_lex_state = 8}, + [7062] = {.lex_state = 20, .external_lex_state = 8}, + [7063] = {.lex_state = 20, .external_lex_state = 8}, + [7064] = {.lex_state = 20, .external_lex_state = 8}, + [7065] = {.lex_state = 20, .external_lex_state = 8}, + [7066] = {.lex_state = 20, .external_lex_state = 8}, + [7067] = {.lex_state = 20, .external_lex_state = 8}, + [7068] = {.lex_state = 20, .external_lex_state = 8}, + [7069] = {.lex_state = 20, .external_lex_state = 8}, + [7070] = {.lex_state = 20, .external_lex_state = 8}, + [7071] = {.lex_state = 20, .external_lex_state = 8}, + [7072] = {.lex_state = 20, .external_lex_state = 8}, + [7073] = {.lex_state = 20, .external_lex_state = 8}, + [7074] = {.lex_state = 20, .external_lex_state = 8}, + [7075] = {.lex_state = 20, .external_lex_state = 8}, + [7076] = {.lex_state = 20, .external_lex_state = 8}, + [7077] = {.lex_state = 20, .external_lex_state = 8}, + [7078] = {.lex_state = 20, .external_lex_state = 8}, + [7079] = {.lex_state = 20, .external_lex_state = 8}, + [7080] = {.lex_state = 20, .external_lex_state = 8}, + [7081] = {.lex_state = 20, .external_lex_state = 8}, + [7082] = {.lex_state = 20, .external_lex_state = 8}, + [7083] = {.lex_state = 20, .external_lex_state = 8}, + [7084] = {.lex_state = 20, .external_lex_state = 8}, + [7085] = {.lex_state = 20, .external_lex_state = 8}, + [7086] = {.lex_state = 20, .external_lex_state = 8}, + [7087] = {.lex_state = 20, .external_lex_state = 8}, + [7088] = {.lex_state = 20, .external_lex_state = 8}, + [7089] = {.lex_state = 20, .external_lex_state = 8}, + [7090] = {.lex_state = 20, .external_lex_state = 8}, + [7091] = {.lex_state = 20, .external_lex_state = 8}, + [7092] = {.lex_state = 20, .external_lex_state = 8}, + [7093] = {.lex_state = 20, .external_lex_state = 8}, + [7094] = {.lex_state = 20, .external_lex_state = 8}, + [7095] = {.lex_state = 20, .external_lex_state = 8}, + [7096] = {.lex_state = 20, .external_lex_state = 8}, + [7097] = {.lex_state = 20, .external_lex_state = 8}, + [7098] = {.lex_state = 20, .external_lex_state = 8}, + [7099] = {.lex_state = 20, .external_lex_state = 8}, + [7100] = {.lex_state = 20, .external_lex_state = 8}, + [7101] = {.lex_state = 20, .external_lex_state = 8}, + [7102] = {.lex_state = 20, .external_lex_state = 8}, + [7103] = {.lex_state = 20, .external_lex_state = 8}, + [7104] = {.lex_state = 20, .external_lex_state = 8}, + [7105] = {.lex_state = 20, .external_lex_state = 8}, + [7106] = {.lex_state = 20, .external_lex_state = 8}, + [7107] = {.lex_state = 20, .external_lex_state = 8}, + [7108] = {.lex_state = 20, .external_lex_state = 8}, + [7109] = {.lex_state = 20, .external_lex_state = 8}, + [7110] = {.lex_state = 20, .external_lex_state = 8}, + [7111] = {.lex_state = 20, .external_lex_state = 8}, + [7112] = {.lex_state = 20, .external_lex_state = 8}, + [7113] = {.lex_state = 20, .external_lex_state = 8}, + [7114] = {.lex_state = 20, .external_lex_state = 8}, + [7115] = {.lex_state = 20, .external_lex_state = 8}, + [7116] = {.lex_state = 20, .external_lex_state = 8}, + [7117] = {.lex_state = 20, .external_lex_state = 8}, + [7118] = {.lex_state = 20, .external_lex_state = 8}, + [7119] = {.lex_state = 20, .external_lex_state = 8}, + [7120] = {.lex_state = 20, .external_lex_state = 8}, + [7121] = {.lex_state = 20, .external_lex_state = 8}, + [7122] = {.lex_state = 20, .external_lex_state = 8}, + [7123] = {.lex_state = 20, .external_lex_state = 8}, + [7124] = {.lex_state = 20, .external_lex_state = 8}, + [7125] = {.lex_state = 20, .external_lex_state = 8}, + [7126] = {.lex_state = 20, .external_lex_state = 8}, + [7127] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [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}, + [7137] = {.lex_state = 20, .external_lex_state = 8}, + [7138] = {.lex_state = 20, .external_lex_state = 8}, + [7139] = {.lex_state = 0, .external_lex_state = 6}, + [7140] = {.lex_state = 20, .external_lex_state = 8}, + [7141] = {.lex_state = 20, .external_lex_state = 8}, + [7142] = {.lex_state = 20, .external_lex_state = 8}, + [7143] = {.lex_state = 20, .external_lex_state = 8}, + [7144] = {.lex_state = 20, .external_lex_state = 8}, + [7145] = {.lex_state = 20, .external_lex_state = 8}, + [7146] = {.lex_state = 20, .external_lex_state = 8}, + [7147] = {.lex_state = 20, .external_lex_state = 8}, + [7148] = {.lex_state = 20, .external_lex_state = 8}, + [7149] = {.lex_state = 20, .external_lex_state = 8}, + [7150] = {.lex_state = 26, .external_lex_state = 8}, + [7151] = {.lex_state = 20, .external_lex_state = 8}, + [7152] = {.lex_state = 20, .external_lex_state = 8}, + [7153] = {.lex_state = 20, .external_lex_state = 8}, + [7154] = {.lex_state = 20, .external_lex_state = 8}, + [7155] = {.lex_state = 20, .external_lex_state = 8}, + [7156] = {.lex_state = 20, .external_lex_state = 8}, + [7157] = {.lex_state = 20, .external_lex_state = 8}, + [7158] = {.lex_state = 20, .external_lex_state = 8}, + [7159] = {.lex_state = 20, .external_lex_state = 8}, + [7160] = {.lex_state = 20, .external_lex_state = 8}, + [7161] = {.lex_state = 20, .external_lex_state = 8}, + [7162] = {.lex_state = 20, .external_lex_state = 8}, + [7163] = {.lex_state = 20, .external_lex_state = 8}, + [7164] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 20, .external_lex_state = 8}, + [7169] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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}, + [7178] = {.lex_state = 20, .external_lex_state = 8}, + [7179] = {.lex_state = 20, .external_lex_state = 8}, + [7180] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 20, .external_lex_state = 8}, + [7185] = {.lex_state = 20, .external_lex_state = 8}, + [7186] = {.lex_state = 26, .external_lex_state = 8}, + [7187] = {.lex_state = 20, .external_lex_state = 8}, + [7188] = {.lex_state = 20, .external_lex_state = 8}, + [7189] = {.lex_state = 20, .external_lex_state = 8}, + [7190] = {.lex_state = 20, .external_lex_state = 8}, + [7191] = {.lex_state = 20, .external_lex_state = 8}, + [7192] = {.lex_state = 20, .external_lex_state = 8}, + [7193] = {.lex_state = 20, .external_lex_state = 8}, + [7194] = {.lex_state = 20, .external_lex_state = 8}, + [7195] = {.lex_state = 20, .external_lex_state = 8}, + [7196] = {.lex_state = 20, .external_lex_state = 8}, + [7197] = {.lex_state = 20, .external_lex_state = 8}, + [7198] = {.lex_state = 20, .external_lex_state = 8}, + [7199] = {.lex_state = 20, .external_lex_state = 8}, + [7200] = {.lex_state = 20, .external_lex_state = 8}, + [7201] = {.lex_state = 20, .external_lex_state = 8}, + [7202] = {.lex_state = 20, .external_lex_state = 8}, + [7203] = {.lex_state = 20, .external_lex_state = 8}, + [7204] = {.lex_state = 20, .external_lex_state = 8}, + [7205] = {.lex_state = 20, .external_lex_state = 8}, + [7206] = {.lex_state = 20, .external_lex_state = 8}, + [7207] = {.lex_state = 20, .external_lex_state = 8}, + [7208] = {.lex_state = 20, .external_lex_state = 8}, + [7209] = {.lex_state = 0, .external_lex_state = 6}, + [7210] = {.lex_state = 20, .external_lex_state = 8}, + [7211] = {.lex_state = 25, .external_lex_state = 8}, + [7212] = {.lex_state = 27, .external_lex_state = 8}, + [7213] = {.lex_state = 25, .external_lex_state = 8}, + [7214] = {.lex_state = 25, .external_lex_state = 8}, + [7215] = {.lex_state = 26, .external_lex_state = 8}, + [7216] = {.lex_state = 20, .external_lex_state = 8}, + [7217] = {.lex_state = 25, .external_lex_state = 8}, + [7218] = {.lex_state = 26, .external_lex_state = 8}, + [7219] = {.lex_state = 25, .external_lex_state = 8}, + [7220] = {.lex_state = 26, .external_lex_state = 8}, + [7221] = {.lex_state = 26, .external_lex_state = 8}, + [7222] = {.lex_state = 26, .external_lex_state = 8}, + [7223] = {.lex_state = 27, .external_lex_state = 8}, + [7224] = {.lex_state = 20, .external_lex_state = 8}, + [7225] = {.lex_state = 20, .external_lex_state = 8}, + [7226] = {.lex_state = 20, .external_lex_state = 8}, + [7227] = {.lex_state = 20, .external_lex_state = 8}, + [7228] = {.lex_state = 27, .external_lex_state = 8}, + [7229] = {.lex_state = 26, .external_lex_state = 8}, + [7230] = {.lex_state = 20, .external_lex_state = 8}, + [7231] = {.lex_state = 20, .external_lex_state = 8}, + [7232] = {.lex_state = 20, .external_lex_state = 8}, + [7233] = {.lex_state = 20, .external_lex_state = 8}, + [7234] = {.lex_state = 20, .external_lex_state = 8}, + [7235] = {.lex_state = 20, .external_lex_state = 8}, + [7236] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7241] = {.lex_state = 20, .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 = 26, .external_lex_state = 8}, + [7247] = {.lex_state = 26, .external_lex_state = 8}, + [7248] = {.lex_state = 20, .external_lex_state = 8}, + [7249] = {.lex_state = 20, .external_lex_state = 8}, + [7250] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7255] = {.lex_state = 20, .external_lex_state = 8}, + [7256] = {.lex_state = 20, .external_lex_state = 8}, + [7257] = {.lex_state = 20, .external_lex_state = 8}, + [7258] = {.lex_state = 20, .external_lex_state = 8}, + [7259] = {.lex_state = 20, .external_lex_state = 8}, + [7260] = {.lex_state = 20, .external_lex_state = 8}, + [7261] = {.lex_state = 20, .external_lex_state = 8}, + [7262] = {.lex_state = 20, .external_lex_state = 8}, + [7263] = {.lex_state = 26, .external_lex_state = 8}, + [7264] = {.lex_state = 20, .external_lex_state = 8}, + [7265] = {.lex_state = 20, .external_lex_state = 8}, + [7266] = {.lex_state = 27, .external_lex_state = 8}, + [7267] = {.lex_state = 20, .external_lex_state = 8}, + [7268] = {.lex_state = 20, .external_lex_state = 8}, + [7269] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 20, .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 = 20, .external_lex_state = 8}, + [7279] = {.lex_state = 26, .external_lex_state = 8}, + [7280] = {.lex_state = 20, .external_lex_state = 8}, + [7281] = {.lex_state = 20, .external_lex_state = 8}, + [7282] = {.lex_state = 20, .external_lex_state = 8}, + [7283] = {.lex_state = 20, .external_lex_state = 8}, + [7284] = {.lex_state = 26, .external_lex_state = 8}, + [7285] = {.lex_state = 20, .external_lex_state = 8}, + [7286] = {.lex_state = 20, .external_lex_state = 8}, + [7287] = {.lex_state = 20, .external_lex_state = 8}, + [7288] = {.lex_state = 20, .external_lex_state = 8}, + [7289] = {.lex_state = 20, .external_lex_state = 8}, + [7290] = {.lex_state = 26, .external_lex_state = 8}, + [7291] = {.lex_state = 20, .external_lex_state = 8}, + [7292] = {.lex_state = 20, .external_lex_state = 8}, + [7293] = {.lex_state = 20, .external_lex_state = 8}, + [7294] = {.lex_state = 20, .external_lex_state = 8}, + [7295] = {.lex_state = 20, .external_lex_state = 8}, + [7296] = {.lex_state = 20, .external_lex_state = 8}, + [7297] = {.lex_state = 27, .external_lex_state = 8}, + [7298] = {.lex_state = 20, .external_lex_state = 8}, + [7299] = {.lex_state = 20, .external_lex_state = 8}, + [7300] = {.lex_state = 20, .external_lex_state = 8}, + [7301] = {.lex_state = 20, .external_lex_state = 8}, + [7302] = {.lex_state = 20, .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 = 20, .external_lex_state = 8}, + [7309] = {.lex_state = 20, .external_lex_state = 8}, + [7310] = {.lex_state = 20, .external_lex_state = 8}, + [7311] = {.lex_state = 26, .external_lex_state = 8}, + [7312] = {.lex_state = 20, .external_lex_state = 8}, + [7313] = {.lex_state = 20, .external_lex_state = 8}, + [7314] = {.lex_state = 27, .external_lex_state = 8}, + [7315] = {.lex_state = 26, .external_lex_state = 8}, + [7316] = {.lex_state = 20, .external_lex_state = 8}, + [7317] = {.lex_state = 20, .external_lex_state = 8}, + [7318] = {.lex_state = 20, .external_lex_state = 8}, + [7319] = {.lex_state = 20, .external_lex_state = 8}, + [7320] = {.lex_state = 20, .external_lex_state = 8}, + [7321] = {.lex_state = 26, .external_lex_state = 8}, + [7322] = {.lex_state = 26, .external_lex_state = 8}, + [7323] = {.lex_state = 20, .external_lex_state = 8}, + [7324] = {.lex_state = 20, .external_lex_state = 8}, + [7325] = {.lex_state = 20, .external_lex_state = 8}, + [7326] = {.lex_state = 26, .external_lex_state = 8}, + [7327] = {.lex_state = 26, .external_lex_state = 8}, + [7328] = {.lex_state = 20, .external_lex_state = 8}, + [7329] = {.lex_state = 20, .external_lex_state = 8}, + [7330] = {.lex_state = 20, .external_lex_state = 8}, + [7331] = {.lex_state = 20, .external_lex_state = 8}, + [7332] = {.lex_state = 20, .external_lex_state = 8}, + [7333] = {.lex_state = 27, .external_lex_state = 8}, + [7334] = {.lex_state = 20, .external_lex_state = 8}, + [7335] = {.lex_state = 20, .external_lex_state = 8}, + [7336] = {.lex_state = 26, .external_lex_state = 8}, + [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 = 25, .external_lex_state = 8}, + [7341] = {.lex_state = 26, .external_lex_state = 8}, + [7342] = {.lex_state = 20, .external_lex_state = 8}, + [7343] = {.lex_state = 20, .external_lex_state = 8}, + [7344] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7349] = {.lex_state = 20, .external_lex_state = 8}, + [7350] = {.lex_state = 26, .external_lex_state = 8}, + [7351] = {.lex_state = 20, .external_lex_state = 8}, + [7352] = {.lex_state = 20, .external_lex_state = 8}, + [7353] = {.lex_state = 27, .external_lex_state = 8}, + [7354] = {.lex_state = 20, .external_lex_state = 8}, + [7355] = {.lex_state = 20, .external_lex_state = 8}, + [7356] = {.lex_state = 20, .external_lex_state = 8}, + [7357] = {.lex_state = 25, .external_lex_state = 8}, + [7358] = {.lex_state = 20, .external_lex_state = 8}, + [7359] = {.lex_state = 20, .external_lex_state = 8}, + [7360] = {.lex_state = 27, .external_lex_state = 8}, + [7361] = {.lex_state = 20, .external_lex_state = 8}, + [7362] = {.lex_state = 20, .external_lex_state = 8}, + [7363] = {.lex_state = 20, .external_lex_state = 8}, + [7364] = {.lex_state = 20, .external_lex_state = 8}, + [7365] = {.lex_state = 20, .external_lex_state = 8}, + [7366] = {.lex_state = 20, .external_lex_state = 8}, + [7367] = {.lex_state = 20, .external_lex_state = 8}, + [7368] = {.lex_state = 20, .external_lex_state = 8}, + [7369] = {.lex_state = 20, .external_lex_state = 8}, + [7370] = {.lex_state = 20, .external_lex_state = 8}, + [7371] = {.lex_state = 20, .external_lex_state = 8}, + [7372] = {.lex_state = 20, .external_lex_state = 8}, + [7373] = {.lex_state = 20, .external_lex_state = 8}, + [7374] = {.lex_state = 20, .external_lex_state = 8}, + [7375] = {.lex_state = 25, .external_lex_state = 8}, + [7376] = {.lex_state = 20, .external_lex_state = 8}, + [7377] = {.lex_state = 20, .external_lex_state = 8}, + [7378] = {.lex_state = 20, .external_lex_state = 8}, + [7379] = {.lex_state = 20, .external_lex_state = 8}, + [7380] = {.lex_state = 20, .external_lex_state = 8}, + [7381] = {.lex_state = 20, .external_lex_state = 8}, + [7382] = {.lex_state = 20, .external_lex_state = 8}, + [7383] = {.lex_state = 20, .external_lex_state = 8}, + [7384] = {.lex_state = 20, .external_lex_state = 8}, + [7385] = {.lex_state = 20, .external_lex_state = 8}, + [7386] = {.lex_state = 20, .external_lex_state = 8}, + [7387] = {.lex_state = 20, .external_lex_state = 8}, + [7388] = {.lex_state = 25, .external_lex_state = 8}, + [7389] = {.lex_state = 20, .external_lex_state = 8}, + [7390] = {.lex_state = 20, .external_lex_state = 8}, + [7391] = {.lex_state = 20, .external_lex_state = 8}, + [7392] = {.lex_state = 20, .external_lex_state = 8}, + [7393] = {.lex_state = 20, .external_lex_state = 8}, + [7394] = {.lex_state = 20, .external_lex_state = 8}, + [7395] = {.lex_state = 20, .external_lex_state = 8}, + [7396] = {.lex_state = 20, .external_lex_state = 8}, + [7397] = {.lex_state = 20, .external_lex_state = 8}, + [7398] = {.lex_state = 20, .external_lex_state = 8}, + [7399] = {.lex_state = 20, .external_lex_state = 8}, + [7400] = {.lex_state = 20, .external_lex_state = 8}, + [7401] = {.lex_state = 20, .external_lex_state = 8}, + [7402] = {.lex_state = 20, .external_lex_state = 8}, + [7403] = {.lex_state = 25, .external_lex_state = 8}, + [7404] = {.lex_state = 20, .external_lex_state = 8}, + [7405] = {.lex_state = 20, .external_lex_state = 8}, + [7406] = {.lex_state = 20, .external_lex_state = 8}, + [7407] = {.lex_state = 20, .external_lex_state = 8}, + [7408] = {.lex_state = 20, .external_lex_state = 8}, + [7409] = {.lex_state = 20, .external_lex_state = 8}, + [7410] = {.lex_state = 20, .external_lex_state = 8}, + [7411] = {.lex_state = 20, .external_lex_state = 8}, + [7412] = {.lex_state = 20, .external_lex_state = 8}, + [7413] = {.lex_state = 20, .external_lex_state = 8}, + [7414] = {.lex_state = 20, .external_lex_state = 8}, + [7415] = {.lex_state = 20, .external_lex_state = 8}, + [7416] = {.lex_state = 20, .external_lex_state = 8}, + [7417] = {.lex_state = 20, .external_lex_state = 8}, + [7418] = {.lex_state = 20, .external_lex_state = 8}, + [7419] = {.lex_state = 20, .external_lex_state = 8}, + [7420] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7425] = {.lex_state = 20, .external_lex_state = 8}, + [7426] = {.lex_state = 20, .external_lex_state = 8}, + [7427] = {.lex_state = 20, .external_lex_state = 8}, + [7428] = {.lex_state = 20, .external_lex_state = 8}, + [7429] = {.lex_state = 20, .external_lex_state = 8}, + [7430] = {.lex_state = 20, .external_lex_state = 8}, + [7431] = {.lex_state = 20, .external_lex_state = 8}, + [7432] = {.lex_state = 20, .external_lex_state = 8}, + [7433] = {.lex_state = 20, .external_lex_state = 8}, + [7434] = {.lex_state = 20, .external_lex_state = 8}, + [7435] = {.lex_state = 20, .external_lex_state = 8}, + [7436] = {.lex_state = 20, .external_lex_state = 8}, + [7437] = {.lex_state = 20, .external_lex_state = 8}, + [7438] = {.lex_state = 20, .external_lex_state = 8}, + [7439] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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}, + [7448] = {.lex_state = 20, .external_lex_state = 8}, + [7449] = {.lex_state = 20, .external_lex_state = 8}, + [7450] = {.lex_state = 20, .external_lex_state = 8}, + [7451] = {.lex_state = 20, .external_lex_state = 8}, + [7452] = {.lex_state = 20, .external_lex_state = 8}, + [7453] = {.lex_state = 20, .external_lex_state = 8}, + [7454] = {.lex_state = 20, .external_lex_state = 8}, + [7455] = {.lex_state = 20, .external_lex_state = 8}, + [7456] = {.lex_state = 20, .external_lex_state = 8}, + [7457] = {.lex_state = 20, .external_lex_state = 8}, + [7458] = {.lex_state = 20, .external_lex_state = 8}, + [7459] = {.lex_state = 20, .external_lex_state = 8}, + [7460] = {.lex_state = 20, .external_lex_state = 9}, + [7461] = {.lex_state = 20, .external_lex_state = 8}, + [7462] = {.lex_state = 20, .external_lex_state = 8}, + [7463] = {.lex_state = 20, .external_lex_state = 8}, + [7464] = {.lex_state = 20, .external_lex_state = 8}, + [7465] = {.lex_state = 20, .external_lex_state = 8}, + [7466] = {.lex_state = 20, .external_lex_state = 8}, + [7467] = {.lex_state = 20, .external_lex_state = 8}, + [7468] = {.lex_state = 20, .external_lex_state = 8}, + [7469] = {.lex_state = 20, .external_lex_state = 8}, + [7470] = {.lex_state = 20, .external_lex_state = 8}, + [7471] = {.lex_state = 27, .external_lex_state = 8}, + [7472] = {.lex_state = 20, .external_lex_state = 8}, + [7473] = {.lex_state = 20, .external_lex_state = 8}, + [7474] = {.lex_state = 20, .external_lex_state = 8}, + [7475] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 20, .external_lex_state = 8}, + [7480] = {.lex_state = 20, .external_lex_state = 8}, + [7481] = {.lex_state = 20, .external_lex_state = 8}, + [7482] = {.lex_state = 25, .external_lex_state = 8}, + [7483] = {.lex_state = 20, .external_lex_state = 8}, + [7484] = {.lex_state = 20, .external_lex_state = 8}, + [7485] = {.lex_state = 20, .external_lex_state = 8}, + [7486] = {.lex_state = 20, .external_lex_state = 8}, + [7487] = {.lex_state = 20, .external_lex_state = 8}, + [7488] = {.lex_state = 20, .external_lex_state = 8}, + [7489] = {.lex_state = 20, .external_lex_state = 8}, + [7490] = {.lex_state = 20, .external_lex_state = 8}, + [7491] = {.lex_state = 20, .external_lex_state = 8}, + [7492] = {.lex_state = 20, .external_lex_state = 8}, + [7493] = {.lex_state = 20, .external_lex_state = 8}, + [7494] = {.lex_state = 20, .external_lex_state = 8}, + [7495] = {.lex_state = 20, .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 = 8}, + [7501] = {.lex_state = 27, .external_lex_state = 8}, + [7502] = {.lex_state = 20, .external_lex_state = 8}, + [7503] = {.lex_state = 20, .external_lex_state = 8}, + [7504] = {.lex_state = 20, .external_lex_state = 8}, + [7505] = {.lex_state = 20, .external_lex_state = 8}, + [7506] = {.lex_state = 27, .external_lex_state = 8}, + [7507] = {.lex_state = 20, .external_lex_state = 8}, + [7508] = {.lex_state = 20, .external_lex_state = 8}, + [7509] = {.lex_state = 20, .external_lex_state = 8}, + [7510] = {.lex_state = 20, .external_lex_state = 8}, + [7511] = {.lex_state = 20, .external_lex_state = 8}, + [7512] = {.lex_state = 20, .external_lex_state = 8}, + [7513] = {.lex_state = 20, .external_lex_state = 8}, + [7514] = {.lex_state = 20, .external_lex_state = 8}, + [7515] = {.lex_state = 20, .external_lex_state = 8}, + [7516] = {.lex_state = 20, .external_lex_state = 8}, + [7517] = {.lex_state = 20, .external_lex_state = 8}, + [7518] = {.lex_state = 20, .external_lex_state = 8}, + [7519] = {.lex_state = 20, .external_lex_state = 8}, + [7520] = {.lex_state = 20, .external_lex_state = 8}, + [7521] = {.lex_state = 20, .external_lex_state = 8}, + [7522] = {.lex_state = 20, .external_lex_state = 8}, + [7523] = {.lex_state = 20, .external_lex_state = 8}, + [7524] = {.lex_state = 20, .external_lex_state = 8}, + [7525] = {.lex_state = 20, .external_lex_state = 8}, + [7526] = {.lex_state = 20, .external_lex_state = 8}, + [7527] = {.lex_state = 20, .external_lex_state = 8}, + [7528] = {.lex_state = 20, .external_lex_state = 8}, + [7529] = {.lex_state = 20, .external_lex_state = 8}, + [7530] = {.lex_state = 20, .external_lex_state = 8}, + [7531] = {.lex_state = 20, .external_lex_state = 8}, + [7532] = {.lex_state = 20, .external_lex_state = 8}, + [7533] = {.lex_state = 20, .external_lex_state = 8}, + [7534] = {.lex_state = 27, .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}, + [7539] = {.lex_state = 20, .external_lex_state = 8}, + [7540] = {.lex_state = 20, .external_lex_state = 8}, + [7541] = {.lex_state = 20, .external_lex_state = 8}, + [7542] = {.lex_state = 20, .external_lex_state = 8}, + [7543] = {.lex_state = 20, .external_lex_state = 8}, + [7544] = {.lex_state = 20, .external_lex_state = 8}, + [7545] = {.lex_state = 20, .external_lex_state = 8}, + [7546] = {.lex_state = 20, .external_lex_state = 8}, + [7547] = {.lex_state = 20, .external_lex_state = 8}, + [7548] = {.lex_state = 20, .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}, + [7553] = {.lex_state = 20, .external_lex_state = 8}, + [7554] = {.lex_state = 20, .external_lex_state = 8}, + [7555] = {.lex_state = 20, .external_lex_state = 8}, + [7556] = {.lex_state = 20, .external_lex_state = 8}, + [7557] = {.lex_state = 20, .external_lex_state = 8}, + [7558] = {.lex_state = 20, .external_lex_state = 9}, + [7559] = {.lex_state = 20, .external_lex_state = 8}, + [7560] = {.lex_state = 20, .external_lex_state = 8}, + [7561] = {.lex_state = 20, .external_lex_state = 8}, + [7562] = {.lex_state = 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 = 25, .external_lex_state = 8}, + [7567] = {.lex_state = 25, .external_lex_state = 8}, + [7568] = {.lex_state = 20, .external_lex_state = 8}, + [7569] = {.lex_state = 20, .external_lex_state = 8}, + [7570] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [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 = 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 = 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}, + [7591] = {.lex_state = 20, .external_lex_state = 8}, + [7592] = {.lex_state = 20, .external_lex_state = 8}, + [7593] = {.lex_state = 20, .external_lex_state = 8}, + [7594] = {.lex_state = 20, .external_lex_state = 8}, + [7595] = {.lex_state = 20, .external_lex_state = 8}, + [7596] = {.lex_state = 20, .external_lex_state = 8}, + [7597] = {.lex_state = 20, .external_lex_state = 8}, + [7598] = {.lex_state = 20, .external_lex_state = 8}, + [7599] = {.lex_state = 20, .external_lex_state = 8}, + [7600] = {.lex_state = 20, .external_lex_state = 8}, + [7601] = {.lex_state = 20, .external_lex_state = 8}, + [7602] = {.lex_state = 20, .external_lex_state = 8}, + [7603] = {.lex_state = 20, .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}, + [7608] = {.lex_state = 20, .external_lex_state = 8}, + [7609] = {.lex_state = 20, .external_lex_state = 8}, + [7610] = {.lex_state = 20, .external_lex_state = 8}, + [7611] = {.lex_state = 20, .external_lex_state = 8}, + [7612] = {.lex_state = 20, .external_lex_state = 8}, + [7613] = {.lex_state = 20, .external_lex_state = 8}, + [7614] = {.lex_state = 20, .external_lex_state = 8}, + [7615] = {.lex_state = 20, .external_lex_state = 8}, + [7616] = {.lex_state = 20, .external_lex_state = 8}, + [7617] = {.lex_state = 20, .external_lex_state = 8}, + [7618] = {.lex_state = 20, .external_lex_state = 8}, + [7619] = {.lex_state = 20, .external_lex_state = 8}, + [7620] = {.lex_state = 20, .external_lex_state = 8}, + [7621] = {.lex_state = 20, .external_lex_state = 8}, + [7622] = {.lex_state = 20, .external_lex_state = 8}, + [7623] = {.lex_state = 20, .external_lex_state = 8}, + [7624] = {.lex_state = 20, .external_lex_state = 8}, + [7625] = {.lex_state = 20, .external_lex_state = 8}, + [7626] = {.lex_state = 20, .external_lex_state = 8}, + [7627] = {.lex_state = 20, .external_lex_state = 8}, + [7628] = {.lex_state = 20, .external_lex_state = 8}, + [7629] = {.lex_state = 20, .external_lex_state = 8}, + [7630] = {.lex_state = 20, .external_lex_state = 8}, + [7631] = {.lex_state = 20, .external_lex_state = 8}, + [7632] = {.lex_state = 20, .external_lex_state = 8}, + [7633] = {.lex_state = 20, .external_lex_state = 8}, + [7634] = {.lex_state = 20, .external_lex_state = 8}, + [7635] = {.lex_state = 20, .external_lex_state = 8}, + [7636] = {.lex_state = 20, .external_lex_state = 8}, + [7637] = {.lex_state = 20, .external_lex_state = 8}, + [7638] = {.lex_state = 20, .external_lex_state = 8}, + [7639] = {.lex_state = 20, .external_lex_state = 8}, + [7640] = {.lex_state = 20, .external_lex_state = 8}, + [7641] = {.lex_state = 25, .external_lex_state = 8}, + [7642] = {.lex_state = 20, .external_lex_state = 8}, + [7643] = {.lex_state = 20, .external_lex_state = 8}, + [7644] = {.lex_state = 20, .external_lex_state = 8}, + [7645] = {.lex_state = 20, .external_lex_state = 8}, + [7646] = {.lex_state = 20, .external_lex_state = 8}, + [7647] = {.lex_state = 25, .external_lex_state = 8}, + [7648] = {.lex_state = 20, .external_lex_state = 8}, + [7649] = {.lex_state = 20, .external_lex_state = 8}, + [7650] = {.lex_state = 20, .external_lex_state = 8}, + [7651] = {.lex_state = 20, .external_lex_state = 8}, + [7652] = {.lex_state = 20, .external_lex_state = 8}, + [7653] = {.lex_state = 25, .external_lex_state = 8}, + [7654] = {.lex_state = 20, .external_lex_state = 8}, + [7655] = {.lex_state = 20, .external_lex_state = 8}, + [7656] = {.lex_state = 20, .external_lex_state = 8}, + [7657] = {.lex_state = 20, .external_lex_state = 8}, + [7658] = {.lex_state = 20, .external_lex_state = 8}, + [7659] = {.lex_state = 20, .external_lex_state = 8}, + [7660] = {.lex_state = 20, .external_lex_state = 8}, + [7661] = {.lex_state = 20, .external_lex_state = 8}, + [7662] = {.lex_state = 20, .external_lex_state = 8}, + [7663] = {.lex_state = 20, .external_lex_state = 8}, + [7664] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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 = 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}, + [7677] = {.lex_state = 20, .external_lex_state = 8}, + [7678] = {.lex_state = 20, .external_lex_state = 8}, + [7679] = {.lex_state = 20, .external_lex_state = 8}, + [7680] = {.lex_state = 20, .external_lex_state = 8}, + [7681] = {.lex_state = 20, .external_lex_state = 8}, + [7682] = {.lex_state = 20, .external_lex_state = 8}, + [7683] = {.lex_state = 20, .external_lex_state = 8}, + [7684] = {.lex_state = 20, .external_lex_state = 8}, + [7685] = {.lex_state = 20, .external_lex_state = 8}, + [7686] = {.lex_state = 20, .external_lex_state = 8}, + [7687] = {.lex_state = 20, .external_lex_state = 8}, + [7688] = {.lex_state = 20, .external_lex_state = 8}, + [7689] = {.lex_state = 20, .external_lex_state = 8}, + [7690] = {.lex_state = 20, .external_lex_state = 8}, + [7691] = {.lex_state = 20, .external_lex_state = 8}, + [7692] = {.lex_state = 20, .external_lex_state = 8}, + [7693] = {.lex_state = 25, .external_lex_state = 8}, + [7694] = {.lex_state = 20, .external_lex_state = 8}, + [7695] = {.lex_state = 20, .external_lex_state = 8}, + [7696] = {.lex_state = 20, .external_lex_state = 8}, + [7697] = {.lex_state = 20, .external_lex_state = 8}, + [7698] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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 = 25, .external_lex_state = 8}, + [7710] = {.lex_state = 20, .external_lex_state = 8}, + [7711] = {.lex_state = 20, .external_lex_state = 8}, + [7712] = {.lex_state = 20, .external_lex_state = 8}, + [7713] = {.lex_state = 20, .external_lex_state = 8}, + [7714] = {.lex_state = 20, .external_lex_state = 8}, + [7715] = {.lex_state = 20, .external_lex_state = 8}, + [7716] = {.lex_state = 20, .external_lex_state = 8}, + [7717] = {.lex_state = 20, .external_lex_state = 8}, + [7718] = {.lex_state = 20, .external_lex_state = 8}, + [7719] = {.lex_state = 20, .external_lex_state = 8}, + [7720] = {.lex_state = 20, .external_lex_state = 8}, + [7721] = {.lex_state = 20, .external_lex_state = 8}, + [7722] = {.lex_state = 20, .external_lex_state = 8}, + [7723] = {.lex_state = 20, .external_lex_state = 8}, + [7724] = {.lex_state = 20, .external_lex_state = 8}, + [7725] = {.lex_state = 20, .external_lex_state = 8}, + [7726] = {.lex_state = 20, .external_lex_state = 8}, + [7727] = {.lex_state = 25, .external_lex_state = 8}, + [7728] = {.lex_state = 20, .external_lex_state = 8}, + [7729] = {.lex_state = 20, .external_lex_state = 8}, + [7730] = {.lex_state = 20, .external_lex_state = 8}, + [7731] = {.lex_state = 20, .external_lex_state = 8}, + [7732] = {.lex_state = 20, .external_lex_state = 8}, + [7733] = {.lex_state = 20, .external_lex_state = 8}, + [7734] = {.lex_state = 20, .external_lex_state = 8}, + [7735] = {.lex_state = 20, .external_lex_state = 8}, + [7736] = {.lex_state = 20, .external_lex_state = 8}, + [7737] = {.lex_state = 20, .external_lex_state = 8}, + [7738] = {.lex_state = 20, .external_lex_state = 8}, + [7739] = {.lex_state = 20, .external_lex_state = 8}, + [7740] = {.lex_state = 20, .external_lex_state = 8}, + [7741] = {.lex_state = 20, .external_lex_state = 8}, + [7742] = {.lex_state = 20, .external_lex_state = 8}, + [7743] = {.lex_state = 20, .external_lex_state = 8}, + [7744] = {.lex_state = 20, .external_lex_state = 8}, + [7745] = {.lex_state = 20, .external_lex_state = 8}, + [7746] = {.lex_state = 20, .external_lex_state = 8}, + [7747] = {.lex_state = 20, .external_lex_state = 8}, + [7748] = {.lex_state = 20, .external_lex_state = 8}, + [7749] = {.lex_state = 20, .external_lex_state = 8}, + [7750] = {.lex_state = 20, .external_lex_state = 8}, + [7751] = {.lex_state = 20, .external_lex_state = 8}, + [7752] = {.lex_state = 20, .external_lex_state = 8}, + [7753] = {.lex_state = 20, .external_lex_state = 8}, + [7754] = {.lex_state = 20, .external_lex_state = 8}, + [7755] = {.lex_state = 20, .external_lex_state = 8}, + [7756] = {.lex_state = 20, .external_lex_state = 8}, + [7757] = {.lex_state = 20, .external_lex_state = 8}, + [7758] = {.lex_state = 20, .external_lex_state = 8}, + [7759] = {.lex_state = 20, .external_lex_state = 8}, + [7760] = {.lex_state = 20, .external_lex_state = 8}, + [7761] = {.lex_state = 20, .external_lex_state = 8}, + [7762] = {.lex_state = 20, .external_lex_state = 8}, + [7763] = {.lex_state = 20, .external_lex_state = 8}, + [7764] = {.lex_state = 20, .external_lex_state = 8}, + [7765] = {.lex_state = 20, .external_lex_state = 8}, + [7766] = {.lex_state = 20, .external_lex_state = 8}, + [7767] = {.lex_state = 20, .external_lex_state = 8}, + [7768] = {.lex_state = 20, .external_lex_state = 8}, + [7769] = {.lex_state = 20, .external_lex_state = 8}, + [7770] = {.lex_state = 20, .external_lex_state = 8}, + [7771] = {.lex_state = 20, .external_lex_state = 8}, + [7772] = {.lex_state = 20, .external_lex_state = 8}, + [7773] = {.lex_state = 20, .external_lex_state = 8}, + [7774] = {.lex_state = 20, .external_lex_state = 8}, + [7775] = {.lex_state = 20, .external_lex_state = 8}, + [7776] = {.lex_state = 20, .external_lex_state = 8}, + [7777] = {.lex_state = 20, .external_lex_state = 8}, + [7778] = {.lex_state = 20, .external_lex_state = 8}, + [7779] = {.lex_state = 20, .external_lex_state = 8}, + [7780] = {.lex_state = 20, .external_lex_state = 8}, + [7781] = {.lex_state = 20, .external_lex_state = 8}, + [7782] = {.lex_state = 20, .external_lex_state = 8}, + [7783] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7788] = {.lex_state = 20, .external_lex_state = 8}, + [7789] = {.lex_state = 20, .external_lex_state = 8}, + [7790] = {.lex_state = 20, .external_lex_state = 8}, + [7791] = {.lex_state = 20, .external_lex_state = 8}, + [7792] = {.lex_state = 20, .external_lex_state = 8}, + [7793] = {.lex_state = 20, .external_lex_state = 8}, + [7794] = {.lex_state = 20, .external_lex_state = 8}, + [7795] = {.lex_state = 20, .external_lex_state = 8}, + [7796] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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}, + [7804] = {.lex_state = 20, .external_lex_state = 8}, + [7805] = {.lex_state = 20, .external_lex_state = 8}, + [7806] = {.lex_state = 20, .external_lex_state = 8}, + [7807] = {.lex_state = 20, .external_lex_state = 8}, + [7808] = {.lex_state = 20, .external_lex_state = 8}, + [7809] = {.lex_state = 20, .external_lex_state = 8}, + [7810] = {.lex_state = 20, .external_lex_state = 8}, + [7811] = {.lex_state = 20, .external_lex_state = 8}, + [7812] = {.lex_state = 20, .external_lex_state = 8}, + [7813] = {.lex_state = 20, .external_lex_state = 8}, + [7814] = {.lex_state = 20, .external_lex_state = 8}, + [7815] = {.lex_state = 20, .external_lex_state = 8}, + [7816] = {.lex_state = 20, .external_lex_state = 8}, + [7817] = {.lex_state = 20, .external_lex_state = 8}, + [7818] = {.lex_state = 20, .external_lex_state = 8}, + [7819] = {.lex_state = 20, .external_lex_state = 8}, + [7820] = {.lex_state = 20, .external_lex_state = 8}, + [7821] = {.lex_state = 20, .external_lex_state = 8}, + [7822] = {.lex_state = 20, .external_lex_state = 8}, + [7823] = {.lex_state = 20, .external_lex_state = 8}, + [7824] = {.lex_state = 20, .external_lex_state = 8}, + [7825] = {.lex_state = 20, .external_lex_state = 8}, + [7826] = {.lex_state = 20, .external_lex_state = 8}, + [7827] = {.lex_state = 20, .external_lex_state = 8}, + [7828] = {.lex_state = 25, .external_lex_state = 8}, + [7829] = {.lex_state = 20, .external_lex_state = 8}, + [7830] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 20, .external_lex_state = 8}, + [7835] = {.lex_state = 20, .external_lex_state = 8}, + [7836] = {.lex_state = 20, .external_lex_state = 8}, + [7837] = {.lex_state = 20, .external_lex_state = 8}, + [7838] = {.lex_state = 20, .external_lex_state = 8}, + [7839] = {.lex_state = 20, .external_lex_state = 8}, + [7840] = {.lex_state = 25, .external_lex_state = 8}, + [7841] = {.lex_state = 25, .external_lex_state = 8}, + [7842] = {.lex_state = 20, .external_lex_state = 8}, + [7843] = {.lex_state = 20, .external_lex_state = 8}, + [7844] = {.lex_state = 27, .external_lex_state = 8}, + [7845] = {.lex_state = 27, .external_lex_state = 8}, + [7846] = {.lex_state = 25, .external_lex_state = 8}, + [7847] = {.lex_state = 25, .external_lex_state = 8}, + [7848] = {.lex_state = 25, .external_lex_state = 8}, + [7849] = {.lex_state = 27, .external_lex_state = 8}, + [7850] = {.lex_state = 25, .external_lex_state = 8}, + [7851] = {.lex_state = 27, .external_lex_state = 8}, + [7852] = {.lex_state = 20, .external_lex_state = 8}, + [7853] = {.lex_state = 27, .external_lex_state = 8}, + [7854] = {.lex_state = 25, .external_lex_state = 8}, + [7855] = {.lex_state = 27, .external_lex_state = 8}, + [7856] = {.lex_state = 20, .external_lex_state = 8}, + [7857] = {.lex_state = 20, .external_lex_state = 8}, + [7858] = {.lex_state = 27, .external_lex_state = 8}, + [7859] = {.lex_state = 27, .external_lex_state = 8}, + [7860] = {.lex_state = 27, .external_lex_state = 8}, + [7861] = {.lex_state = 27, .external_lex_state = 8}, + [7862] = {.lex_state = 20, .external_lex_state = 8}, + [7863] = {.lex_state = 27, .external_lex_state = 8}, + [7864] = {.lex_state = 25, .external_lex_state = 8}, + [7865] = {.lex_state = 25, .external_lex_state = 8}, + [7866] = {.lex_state = 25, .external_lex_state = 8}, + [7867] = {.lex_state = 20, .external_lex_state = 8}, + [7868] = {.lex_state = 20, .external_lex_state = 8}, + [7869] = {.lex_state = 20, .external_lex_state = 8}, + [7870] = {.lex_state = 20, .external_lex_state = 8}, + [7871] = {.lex_state = 20, .external_lex_state = 8}, + [7872] = {.lex_state = 20, .external_lex_state = 8}, + [7873] = {.lex_state = 23, .external_lex_state = 9}, + [7874] = {.lex_state = 20, .external_lex_state = 8}, + [7875] = {.lex_state = 20, .external_lex_state = 8}, + [7876] = {.lex_state = 20, .external_lex_state = 8}, + [7877] = {.lex_state = 20, .external_lex_state = 8}, + [7878] = {.lex_state = 20, .external_lex_state = 8}, + [7879] = {.lex_state = 20, .external_lex_state = 8}, + [7880] = {.lex_state = 20, .external_lex_state = 8}, + [7881] = {.lex_state = 20, .external_lex_state = 8}, + [7882] = {.lex_state = 20, .external_lex_state = 8}, + [7883] = {.lex_state = 20, .external_lex_state = 8}, + [7884] = {.lex_state = 20, .external_lex_state = 8}, + [7885] = {.lex_state = 20, .external_lex_state = 8}, + [7886] = {.lex_state = 20, .external_lex_state = 8}, + [7887] = {.lex_state = 23, .external_lex_state = 9}, + [7888] = {.lex_state = 20, .external_lex_state = 8}, + [7889] = {.lex_state = 20, .external_lex_state = 8}, + [7890] = {.lex_state = 20, .external_lex_state = 8}, + [7891] = {.lex_state = 23, .external_lex_state = 9}, + [7892] = {.lex_state = 20, .external_lex_state = 8}, + [7893] = {.lex_state = 23, .external_lex_state = 8}, + [7894] = {.lex_state = 20, .external_lex_state = 8}, + [7895] = {.lex_state = 20, .external_lex_state = 8}, + [7896] = {.lex_state = 20, .external_lex_state = 8}, + [7897] = {.lex_state = 20, .external_lex_state = 8}, + [7898] = {.lex_state = 20, .external_lex_state = 8}, + [7899] = {.lex_state = 20, .external_lex_state = 8}, + [7900] = {.lex_state = 20, .external_lex_state = 8}, + [7901] = {.lex_state = 20, .external_lex_state = 8}, + [7902] = {.lex_state = 20, .external_lex_state = 8}, + [7903] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 20, .external_lex_state = 8}, + [7908] = {.lex_state = 20, .external_lex_state = 8}, + [7909] = {.lex_state = 20, .external_lex_state = 8}, + [7910] = {.lex_state = 20, .external_lex_state = 8}, + [7911] = {.lex_state = 20, .external_lex_state = 8}, + [7912] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7917] = {.lex_state = 20, .external_lex_state = 8}, + [7918] = {.lex_state = 20, .external_lex_state = 8}, + [7919] = {.lex_state = 20, .external_lex_state = 8}, + [7920] = {.lex_state = 20, .external_lex_state = 8}, + [7921] = {.lex_state = 20, .external_lex_state = 8}, + [7922] = {.lex_state = 20, .external_lex_state = 8}, + [7923] = {.lex_state = 20, .external_lex_state = 8}, + [7924] = {.lex_state = 20, .external_lex_state = 8}, + [7925] = {.lex_state = 20, .external_lex_state = 8}, + [7926] = {.lex_state = 20, .external_lex_state = 8}, + [7927] = {.lex_state = 20, .external_lex_state = 8}, + [7928] = {.lex_state = 20, .external_lex_state = 8}, + [7929] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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}, + [7937] = {.lex_state = 20, .external_lex_state = 8}, + [7938] = {.lex_state = 20, .external_lex_state = 8}, + [7939] = {.lex_state = 20, .external_lex_state = 8}, + [7940] = {.lex_state = 20, .external_lex_state = 8}, + [7941] = {.lex_state = 20, .external_lex_state = 8}, + [7942] = {.lex_state = 20, .external_lex_state = 8}, + [7943] = {.lex_state = 20, .external_lex_state = 8}, + [7944] = {.lex_state = 20, .external_lex_state = 8}, + [7945] = {.lex_state = 20, .external_lex_state = 8}, + [7946] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7951] = {.lex_state = 20, .external_lex_state = 8}, + [7952] = {.lex_state = 20, .external_lex_state = 8}, + [7953] = {.lex_state = 20, .external_lex_state = 8}, + [7954] = {.lex_state = 20, .external_lex_state = 8}, + [7955] = {.lex_state = 20, .external_lex_state = 8}, + [7956] = {.lex_state = 20, .external_lex_state = 8}, + [7957] = {.lex_state = 20, .external_lex_state = 8}, + [7958] = {.lex_state = 20, .external_lex_state = 8}, + [7959] = {.lex_state = 20, .external_lex_state = 8}, + [7960] = {.lex_state = 20, .external_lex_state = 8}, + [7961] = {.lex_state = 20, .external_lex_state = 8}, + [7962] = {.lex_state = 20, .external_lex_state = 8}, + [7963] = {.lex_state = 20, .external_lex_state = 8}, + [7964] = {.lex_state = 20, .external_lex_state = 8}, + [7965] = {.lex_state = 20, .external_lex_state = 8}, + [7966] = {.lex_state = 20, .external_lex_state = 8}, + [7967] = {.lex_state = 20, .external_lex_state = 8}, + [7968] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [7973] = {.lex_state = 20, .external_lex_state = 8}, + [7974] = {.lex_state = 20, .external_lex_state = 8}, + [7975] = {.lex_state = 20, .external_lex_state = 8}, + [7976] = {.lex_state = 20, .external_lex_state = 8}, + [7977] = {.lex_state = 20, .external_lex_state = 8}, + [7978] = {.lex_state = 20, .external_lex_state = 8}, + [7979] = {.lex_state = 20, .external_lex_state = 8}, + [7980] = {.lex_state = 20, .external_lex_state = 8}, + [7981] = {.lex_state = 20, .external_lex_state = 8}, + [7982] = {.lex_state = 20, .external_lex_state = 8}, + [7983] = {.lex_state = 20, .external_lex_state = 8}, + [7984] = {.lex_state = 20, .external_lex_state = 8}, + [7985] = {.lex_state = 20, .external_lex_state = 8}, + [7986] = {.lex_state = 20, .external_lex_state = 8}, + [7987] = {.lex_state = 20, .external_lex_state = 8}, + [7988] = {.lex_state = 20, .external_lex_state = 8}, + [7989] = {.lex_state = 20, .external_lex_state = 8}, + [7990] = {.lex_state = 20, .external_lex_state = 8}, + [7991] = {.lex_state = 20, .external_lex_state = 8}, + [7992] = {.lex_state = 20, .external_lex_state = 8}, + [7993] = {.lex_state = 20, .external_lex_state = 8}, + [7994] = {.lex_state = 20, .external_lex_state = 8}, + [7995] = {.lex_state = 20, .external_lex_state = 8}, + [7996] = {.lex_state = 20, .external_lex_state = 8}, + [7997] = {.lex_state = 20, .external_lex_state = 8}, + [7998] = {.lex_state = 20, .external_lex_state = 8}, + [7999] = {.lex_state = 20, .external_lex_state = 8}, + [8000] = {.lex_state = 20, .external_lex_state = 8}, + [8001] = {.lex_state = 20, .external_lex_state = 8}, + [8002] = {.lex_state = 20, .external_lex_state = 8}, + [8003] = {.lex_state = 31, .external_lex_state = 8}, + [8004] = {.lex_state = 20, .external_lex_state = 8}, + [8005] = {.lex_state = 20, .external_lex_state = 8}, + [8006] = {.lex_state = 20, .external_lex_state = 8}, + [8007] = {.lex_state = 20, .external_lex_state = 8}, + [8008] = {.lex_state = 20, .external_lex_state = 8}, + [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 = 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}, + [8016] = {.lex_state = 20, .external_lex_state = 8}, + [8017] = {.lex_state = 20, .external_lex_state = 8}, + [8018] = {.lex_state = 20, .external_lex_state = 8}, + [8019] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [8025] = {.lex_state = 20, .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}, + [8031] = {.lex_state = 20, .external_lex_state = 8}, + [8032] = {.lex_state = 20, .external_lex_state = 8}, + [8033] = {.lex_state = 13, .external_lex_state = 8}, + [8034] = {.lex_state = 20, .external_lex_state = 8}, + [8035] = {.lex_state = 20, .external_lex_state = 8}, + [8036] = {.lex_state = 20, .external_lex_state = 8}, + [8037] = {.lex_state = 20, .external_lex_state = 8}, + [8038] = {.lex_state = 23, .external_lex_state = 8}, + [8039] = {.lex_state = 20, .external_lex_state = 8}, + [8040] = {.lex_state = 23, .external_lex_state = 8}, + [8041] = {.lex_state = 20, .external_lex_state = 8}, + [8042] = {.lex_state = 20, .external_lex_state = 8}, + [8043] = {.lex_state = 20, .external_lex_state = 8}, + [8044] = {.lex_state = 13, .external_lex_state = 8}, + [8045] = {.lex_state = 20, .external_lex_state = 8}, + [8046] = {.lex_state = 20, .external_lex_state = 8}, + [8047] = {.lex_state = 20, .external_lex_state = 8}, + [8048] = {.lex_state = 20, .external_lex_state = 8}, + [8049] = {.lex_state = 20, .external_lex_state = 8}, + [8050] = {.lex_state = 20, .external_lex_state = 8}, + [8051] = {.lex_state = 20, .external_lex_state = 8}, + [8052] = {.lex_state = 20, .external_lex_state = 8}, + [8053] = {.lex_state = 20, .external_lex_state = 8}, + [8054] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [8059] = {.lex_state = 20, .external_lex_state = 8}, + [8060] = {.lex_state = 20, .external_lex_state = 8}, + [8061] = {.lex_state = 20, .external_lex_state = 8}, + [8062] = {.lex_state = 20, .external_lex_state = 8}, + [8063] = {.lex_state = 20, .external_lex_state = 8}, + [8064] = {.lex_state = 20, .external_lex_state = 8}, + [8065] = {.lex_state = 20, .external_lex_state = 8}, + [8066] = {.lex_state = 20, .external_lex_state = 8}, + [8067] = {.lex_state = 20, .external_lex_state = 8}, + [8068] = {.lex_state = 20, .external_lex_state = 8}, + [8069] = {.lex_state = 20, .external_lex_state = 8}, + [8070] = {.lex_state = 20, .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}, + [8074] = {.lex_state = 20, .external_lex_state = 8}, + [8075] = {.lex_state = 20, .external_lex_state = 8}, + [8076] = {.lex_state = 20, .external_lex_state = 8}, + [8077] = {.lex_state = 20, .external_lex_state = 8}, + [8078] = {.lex_state = 20, .external_lex_state = 8}, + [8079] = {.lex_state = 20, .external_lex_state = 8}, + [8080] = {.lex_state = 20, .external_lex_state = 8}, + [8081] = {.lex_state = 20, .external_lex_state = 8}, + [8082] = {.lex_state = 20, .external_lex_state = 8}, + [8083] = {.lex_state = 20, .external_lex_state = 8}, + [8084] = {.lex_state = 20, .external_lex_state = 8}, + [8085] = {.lex_state = 20, .external_lex_state = 8}, + [8086] = {.lex_state = 20, .external_lex_state = 8}, + [8087] = {.lex_state = 20, .external_lex_state = 8}, + [8088] = {.lex_state = 20, .external_lex_state = 8}, + [8089] = {.lex_state = 20, .external_lex_state = 8}, + [8090] = {.lex_state = 20, .external_lex_state = 8}, + [8091] = {.lex_state = 20, .external_lex_state = 8}, + [8092] = {.lex_state = 20, .external_lex_state = 8}, + [8093] = {.lex_state = 20, .external_lex_state = 8}, + [8094] = {.lex_state = 20, .external_lex_state = 8}, + [8095] = {.lex_state = 20, .external_lex_state = 8}, + [8096] = {.lex_state = 20, .external_lex_state = 8}, + [8097] = {.lex_state = 20, .external_lex_state = 8}, + [8098] = {.lex_state = 20, .external_lex_state = 8}, + [8099] = {.lex_state = 20, .external_lex_state = 8}, + [8100] = {.lex_state = 20, .external_lex_state = 8}, + [8101] = {.lex_state = 20, .external_lex_state = 8}, + [8102] = {.lex_state = 20, .external_lex_state = 8}, + [8103] = {.lex_state = 20, .external_lex_state = 8}, + [8104] = {.lex_state = 20, .external_lex_state = 8}, + [8105] = {.lex_state = 20, .external_lex_state = 8}, + [8106] = {.lex_state = 20, .external_lex_state = 8}, + [8107] = {.lex_state = 20, .external_lex_state = 8}, + [8108] = {.lex_state = 20, .external_lex_state = 8}, + [8109] = {.lex_state = 13, .external_lex_state = 8}, + [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}, + [8116] = {.lex_state = 20, .external_lex_state = 8}, + [8117] = {.lex_state = 20, .external_lex_state = 8}, + [8118] = {.lex_state = 20, .external_lex_state = 8}, + [8119] = {.lex_state = 20, .external_lex_state = 8}, + [8120] = {.lex_state = 20, .external_lex_state = 8}, + [8121] = {.lex_state = 20, .external_lex_state = 8}, + [8122] = {.lex_state = 20, .external_lex_state = 8}, + [8123] = {.lex_state = 20, .external_lex_state = 8}, + [8124] = {.lex_state = 20, .external_lex_state = 8}, + [8125] = {.lex_state = 23, .external_lex_state = 8}, + [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 = 20, .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 = 23, .external_lex_state = 8}, + [8139] = {.lex_state = 13, .external_lex_state = 8}, + [8140] = {.lex_state = 20, .external_lex_state = 8}, + [8141] = {.lex_state = 20, .external_lex_state = 8}, + [8142] = {.lex_state = 20, .external_lex_state = 8}, + [8143] = {.lex_state = 20, .external_lex_state = 8}, + [8144] = {.lex_state = 20, .external_lex_state = 8}, + [8145] = {.lex_state = 20, .external_lex_state = 8}, + [8146] = {.lex_state = 20, .external_lex_state = 8}, + [8147] = {.lex_state = 20, .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}, + [8151] = {.lex_state = 20, .external_lex_state = 8}, + [8152] = {.lex_state = 20, .external_lex_state = 8}, + [8153] = {.lex_state = 20, .external_lex_state = 8}, + [8154] = {.lex_state = 20, .external_lex_state = 8}, + [8155] = {.lex_state = 20, .external_lex_state = 8}, + [8156] = {.lex_state = 20, .external_lex_state = 8}, + [8157] = {.lex_state = 20, .external_lex_state = 8}, + [8158] = {.lex_state = 20, .external_lex_state = 8}, + [8159] = {.lex_state = 20, .external_lex_state = 8}, + [8160] = {.lex_state = 20, .external_lex_state = 8}, + [8161] = {.lex_state = 20, .external_lex_state = 8}, + [8162] = {.lex_state = 20, .external_lex_state = 8}, + [8163] = {.lex_state = 20, .external_lex_state = 8}, + [8164] = {.lex_state = 20, .external_lex_state = 8}, + [8165] = {.lex_state = 20, .external_lex_state = 8}, + [8166] = {.lex_state = 20, .external_lex_state = 8}, + [8167] = {.lex_state = 20, .external_lex_state = 8}, + [8168] = {.lex_state = 20, .external_lex_state = 8}, + [8169] = {.lex_state = 20, .external_lex_state = 8}, + [8170] = {.lex_state = 20, .external_lex_state = 8}, + [8171] = {.lex_state = 20, .external_lex_state = 8}, + [8172] = {.lex_state = 20, .external_lex_state = 8}, + [8173] = {.lex_state = 20, .external_lex_state = 8}, + [8174] = {.lex_state = 20, .external_lex_state = 8}, + [8175] = {.lex_state = 20, .external_lex_state = 8}, + [8176] = {.lex_state = 20, .external_lex_state = 8}, + [8177] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [8182] = {.lex_state = 20, .external_lex_state = 8}, + [8183] = {.lex_state = 20, .external_lex_state = 8}, + [8184] = {.lex_state = 20, .external_lex_state = 8}, + [8185] = {.lex_state = 23, .external_lex_state = 8}, + [8186] = {.lex_state = 20, .external_lex_state = 8}, + [8187] = {.lex_state = 20, .external_lex_state = 8}, + [8188] = {.lex_state = 20, .external_lex_state = 8}, + [8189] = {.lex_state = 20, .external_lex_state = 8}, + [8190] = {.lex_state = 20, .external_lex_state = 8}, + [8191] = {.lex_state = 20, .external_lex_state = 8}, + [8192] = {.lex_state = 20, .external_lex_state = 8}, + [8193] = {.lex_state = 20, .external_lex_state = 8}, + [8194] = {.lex_state = 20, .external_lex_state = 8}, + [8195] = {.lex_state = 20, .external_lex_state = 8}, + [8196] = {.lex_state = 20, .external_lex_state = 8}, + [8197] = {.lex_state = 20, .external_lex_state = 8}, + [8198] = {.lex_state = 20, .external_lex_state = 8}, + [8199] = {.lex_state = 20, .external_lex_state = 8}, + [8200] = {.lex_state = 20, .external_lex_state = 8}, + [8201] = {.lex_state = 20, .external_lex_state = 8}, + [8202] = {.lex_state = 20, .external_lex_state = 8}, + [8203] = {.lex_state = 20, .external_lex_state = 8}, + [8204] = {.lex_state = 20, .external_lex_state = 8}, + [8205] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [8211] = {.lex_state = 20, .external_lex_state = 8}, + [8212] = {.lex_state = 20, .external_lex_state = 8}, + [8213] = {.lex_state = 20, .external_lex_state = 8}, + [8214] = {.lex_state = 20, .external_lex_state = 8}, + [8215] = {.lex_state = 20, .external_lex_state = 8}, + [8216] = {.lex_state = 23, .external_lex_state = 8}, + [8217] = {.lex_state = 20, .external_lex_state = 8}, + [8218] = {.lex_state = 20, .external_lex_state = 8}, + [8219] = {.lex_state = 20, .external_lex_state = 8}, + [8220] = {.lex_state = 20, .external_lex_state = 8}, + [8221] = {.lex_state = 20, .external_lex_state = 8}, + [8222] = {.lex_state = 20, .external_lex_state = 8}, + [8223] = {.lex_state = 20, .external_lex_state = 8}, + [8224] = {.lex_state = 20, .external_lex_state = 8}, + [8225] = {.lex_state = 20, .external_lex_state = 8}, + [8226] = {.lex_state = 20, .external_lex_state = 8}, + [8227] = {.lex_state = 20, .external_lex_state = 8}, + [8228] = {.lex_state = 20, .external_lex_state = 8}, + [8229] = {.lex_state = 20, .external_lex_state = 8}, + [8230] = {.lex_state = 20, .external_lex_state = 8}, + [8231] = {.lex_state = 20, .external_lex_state = 8}, + [8232] = {.lex_state = 20, .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 = 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}, + [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 = 20, .external_lex_state = 8}, + [8246] = {.lex_state = 20, .external_lex_state = 8}, + [8247] = {.lex_state = 20, .external_lex_state = 8}, + [8248] = {.lex_state = 20, .external_lex_state = 8}, + [8249] = {.lex_state = 13, .external_lex_state = 8}, + [8250] = {.lex_state = 20, .external_lex_state = 8}, + [8251] = {.lex_state = 20, .external_lex_state = 8}, + [8252] = {.lex_state = 20, .external_lex_state = 8}, + [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}, + [8257] = {.lex_state = 20, .external_lex_state = 8}, + [8258] = {.lex_state = 20, .external_lex_state = 8}, + [8259] = {.lex_state = 20, .external_lex_state = 8}, + [8260] = {.lex_state = 23, .external_lex_state = 8}, + [8261] = {.lex_state = 20, .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 = 20, .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 = 20, .external_lex_state = 8}, + [8274] = {.lex_state = 20, .external_lex_state = 8}, + [8275] = {.lex_state = 20, .external_lex_state = 8}, + [8276] = {.lex_state = 20, .external_lex_state = 8}, + [8277] = {.lex_state = 20, .external_lex_state = 8}, + [8278] = {.lex_state = 23, .external_lex_state = 8}, + [8279] = {.lex_state = 20, .external_lex_state = 8}, + [8280] = {.lex_state = 20, .external_lex_state = 8}, + [8281] = {.lex_state = 13, .external_lex_state = 8}, + [8282] = {.lex_state = 20, .external_lex_state = 8}, + [8283] = {.lex_state = 20, .external_lex_state = 8}, + [8284] = {.lex_state = 31, .external_lex_state = 8}, + [8285] = {.lex_state = 31, .external_lex_state = 8}, + [8286] = {.lex_state = 23, .external_lex_state = 8}, + [8287] = {.lex_state = 23, .external_lex_state = 8}, + [8288] = {.lex_state = 31, .external_lex_state = 8}, + [8289] = {.lex_state = 31, .external_lex_state = 8}, + [8290] = {.lex_state = 23, .external_lex_state = 8}, + [8291] = {.lex_state = 23, .external_lex_state = 8}, + [8292] = {.lex_state = 23, .external_lex_state = 8}, + [8293] = {.lex_state = 23, .external_lex_state = 8}, + [8294] = {.lex_state = 31, .external_lex_state = 8}, + [8295] = {.lex_state = 31, .external_lex_state = 8}, + [8296] = {.lex_state = 23, .external_lex_state = 8}, + [8297] = {.lex_state = 31, .external_lex_state = 8}, + [8298] = {.lex_state = 31, .external_lex_state = 8}, + [8299] = {.lex_state = 31, .external_lex_state = 8}, + [8300] = {.lex_state = 31, .external_lex_state = 8}, + [8301] = {.lex_state = 20, .external_lex_state = 8}, + [8302] = {.lex_state = 31, .external_lex_state = 8}, + [8303] = {.lex_state = 31, .external_lex_state = 8}, + [8304] = {.lex_state = 31, .external_lex_state = 8}, + [8305] = {.lex_state = 31, .external_lex_state = 8}, + [8306] = {.lex_state = 23, .external_lex_state = 8}, + [8307] = {.lex_state = 31, .external_lex_state = 8}, + [8308] = {.lex_state = 31, .external_lex_state = 8}, + [8309] = {.lex_state = 31, .external_lex_state = 8}, + [8310] = {.lex_state = 31, .external_lex_state = 8}, + [8311] = {.lex_state = 31, .external_lex_state = 8}, + [8312] = {.lex_state = 31, .external_lex_state = 8}, + [8313] = {.lex_state = 31, .external_lex_state = 8}, + [8314] = {.lex_state = 23, .external_lex_state = 9}, + [8315] = {.lex_state = 31, .external_lex_state = 8}, + [8316] = {.lex_state = 31, .external_lex_state = 8}, + [8317] = {.lex_state = 31, .external_lex_state = 8}, + [8318] = {.lex_state = 23, .external_lex_state = 8}, + [8319] = {.lex_state = 31, .external_lex_state = 8}, + [8320] = {.lex_state = 31, .external_lex_state = 8}, + [8321] = {.lex_state = 31, .external_lex_state = 8}, + [8322] = {.lex_state = 23, .external_lex_state = 9}, + [8323] = {.lex_state = 23, .external_lex_state = 8}, + [8324] = {.lex_state = 23, .external_lex_state = 9}, + [8325] = {.lex_state = 23, .external_lex_state = 8}, + [8326] = {.lex_state = 23, .external_lex_state = 9}, + [8327] = {.lex_state = 23, .external_lex_state = 9}, + [8328] = {.lex_state = 23, .external_lex_state = 9}, + [8329] = {.lex_state = 23, .external_lex_state = 9}, + [8330] = {.lex_state = 23, .external_lex_state = 9}, + [8331] = {.lex_state = 23, .external_lex_state = 8}, + [8332] = {.lex_state = 23, .external_lex_state = 8}, + [8333] = {.lex_state = 23, .external_lex_state = 8}, + [8334] = {.lex_state = 23, .external_lex_state = 9}, + [8335] = {.lex_state = 23, .external_lex_state = 9}, + [8336] = {.lex_state = 13, .external_lex_state = 8}, + [8337] = {.lex_state = 23, .external_lex_state = 9}, + [8338] = {.lex_state = 23, .external_lex_state = 8}, + [8339] = {.lex_state = 23, .external_lex_state = 8}, + [8340] = {.lex_state = 13, .external_lex_state = 8}, + [8341] = {.lex_state = 23, .external_lex_state = 8}, + [8342] = {.lex_state = 13, .external_lex_state = 8}, + [8343] = {.lex_state = 318, .external_lex_state = 8}, + [8344] = {.lex_state = 23, .external_lex_state = 8}, + [8345] = {.lex_state = 23, .external_lex_state = 9}, + [8346] = {.lex_state = 23, .external_lex_state = 8}, + [8347] = {.lex_state = 23, .external_lex_state = 8}, + [8348] = {.lex_state = 318, .external_lex_state = 8}, + [8349] = {.lex_state = 23, .external_lex_state = 8}, + [8350] = {.lex_state = 13, .external_lex_state = 8}, + [8351] = {.lex_state = 13, .external_lex_state = 8}, + [8352] = {.lex_state = 13, .external_lex_state = 8}, + [8353] = {.lex_state = 23, .external_lex_state = 8}, + [8354] = {.lex_state = 23, .external_lex_state = 8}, + [8355] = {.lex_state = 23, .external_lex_state = 9}, + [8356] = {.lex_state = 23, .external_lex_state = 9}, + [8357] = {.lex_state = 23, .external_lex_state = 9}, + [8358] = {.lex_state = 0, .external_lex_state = 8}, + [8359] = {.lex_state = 0, .external_lex_state = 8}, + [8360] = {.lex_state = 13, .external_lex_state = 8}, + [8361] = {.lex_state = 0, .external_lex_state = 8}, + [8362] = {.lex_state = 0, .external_lex_state = 8}, + [8363] = {.lex_state = 0, .external_lex_state = 8}, + [8364] = {.lex_state = 0, .external_lex_state = 8}, + [8365] = {.lex_state = 0, .external_lex_state = 8}, + [8366] = {.lex_state = 0, .external_lex_state = 8}, + [8367] = {.lex_state = 23, .external_lex_state = 9}, + [8368] = {.lex_state = 23, .external_lex_state = 8}, + [8369] = {.lex_state = 23, .external_lex_state = 8}, + [8370] = {.lex_state = 0, .external_lex_state = 8}, [8371] = {.lex_state = 0, .external_lex_state = 8}, - [8372] = {.lex_state = 14, .external_lex_state = 9}, - [8373] = {.lex_state = 14, .external_lex_state = 9}, - [8374] = {.lex_state = 14, .external_lex_state = 9}, - [8375] = {.lex_state = 14, .external_lex_state = 9}, - [8376] = {.lex_state = 0, .external_lex_state = 10}, - [8377] = {.lex_state = 0, .external_lex_state = 9}, - [8378] = {.lex_state = 14, .external_lex_state = 9}, - [8379] = {.lex_state = 14, .external_lex_state = 8}, - [8380] = {.lex_state = 14, .external_lex_state = 8}, - [8381] = {.lex_state = 14, .external_lex_state = 9}, - [8382] = {.lex_state = 0, .external_lex_state = 10}, - [8383] = {.lex_state = 0, .external_lex_state = 9}, - [8384] = {.lex_state = 14, .external_lex_state = 8}, - [8385] = {.lex_state = 14, .external_lex_state = 8}, - [8386] = {.lex_state = 14, .external_lex_state = 9}, - [8387] = {.lex_state = 0, .external_lex_state = 10}, - [8388] = {.lex_state = 14, .external_lex_state = 8}, - [8389] = {.lex_state = 14, .external_lex_state = 8}, - [8390] = {.lex_state = 14, .external_lex_state = 9}, - [8391] = {.lex_state = 0, .external_lex_state = 9}, - [8392] = {.lex_state = 14, .external_lex_state = 9}, - [8393] = {.lex_state = 0, .external_lex_state = 9}, - [8394] = {.lex_state = 14, .external_lex_state = 8}, - [8395] = {.lex_state = 14, .external_lex_state = 9}, + [8372] = {.lex_state = 0, .external_lex_state = 8}, + [8373] = {.lex_state = 23, .external_lex_state = 8}, + [8374] = {.lex_state = 0, .external_lex_state = 8}, + [8375] = {.lex_state = 23, .external_lex_state = 8}, + [8376] = {.lex_state = 23, .external_lex_state = 9}, + [8377] = {.lex_state = 0, .external_lex_state = 8}, + [8378] = {.lex_state = 0, .external_lex_state = 8}, + [8379] = {.lex_state = 0, .external_lex_state = 8}, + [8380] = {.lex_state = 23, .external_lex_state = 8}, + [8381] = {.lex_state = 23, .external_lex_state = 8}, + [8382] = {.lex_state = 23, .external_lex_state = 9}, + [8383] = {.lex_state = 23, .external_lex_state = 9}, + [8384] = {.lex_state = 0, .external_lex_state = 8}, + [8385] = {.lex_state = 23, .external_lex_state = 8}, + [8386] = {.lex_state = 0, .external_lex_state = 8}, + [8387] = {.lex_state = 0, .external_lex_state = 8}, + [8388] = {.lex_state = 0, .external_lex_state = 8}, + [8389] = {.lex_state = 23, .external_lex_state = 9}, + [8390] = {.lex_state = 0, .external_lex_state = 8}, + [8391] = {.lex_state = 0, .external_lex_state = 8}, + [8392] = {.lex_state = 0, .external_lex_state = 8}, + [8393] = {.lex_state = 23, .external_lex_state = 9}, + [8394] = {.lex_state = 23, .external_lex_state = 8}, + [8395] = {.lex_state = 0, .external_lex_state = 8}, [8396] = {.lex_state = 23, .external_lex_state = 8}, - [8397] = {.lex_state = 14, .external_lex_state = 8}, + [8397] = {.lex_state = 23, .external_lex_state = 8}, [8398] = {.lex_state = 0, .external_lex_state = 8}, - [8399] = {.lex_state = 0, .external_lex_state = 8}, - [8400] = {.lex_state = 14, .external_lex_state = 8}, + [8399] = {.lex_state = 23, .external_lex_state = 9}, + [8400] = {.lex_state = 0, .external_lex_state = 8}, [8401] = {.lex_state = 0, .external_lex_state = 8}, - [8402] = {.lex_state = 0, .external_lex_state = 8}, - [8403] = {.lex_state = 14, .external_lex_state = 8}, - [8404] = {.lex_state = 0, .external_lex_state = 8}, - [8405] = {.lex_state = 0, .external_lex_state = 8}, - [8406] = {.lex_state = 14, .external_lex_state = 8}, - [8407] = {.lex_state = 0, .external_lex_state = 8}, - [8408] = {.lex_state = 14, .external_lex_state = 8}, - [8409] = {.lex_state = 0, .external_lex_state = 8}, - [8410] = {.lex_state = 0, .external_lex_state = 8}, + [8402] = {.lex_state = 23, .external_lex_state = 8}, + [8403] = {.lex_state = 23, .external_lex_state = 8}, + [8404] = {.lex_state = 0, .external_lex_state = 10}, + [8405] = {.lex_state = 0, .external_lex_state = 9}, + [8406] = {.lex_state = 23, .external_lex_state = 8}, + [8407] = {.lex_state = 23, .external_lex_state = 8}, + [8408] = {.lex_state = 23, .external_lex_state = 9}, + [8409] = {.lex_state = 23, .external_lex_state = 9}, + [8410] = {.lex_state = 0, .external_lex_state = 10}, [8411] = {.lex_state = 0, .external_lex_state = 8}, - [8412] = {.lex_state = 14, .external_lex_state = 8}, - [8413] = {.lex_state = 14, .external_lex_state = 8}, - [8414] = {.lex_state = 14, .external_lex_state = 8}, - [8415] = {.lex_state = 0, .external_lex_state = 8}, - [8416] = {.lex_state = 0, .external_lex_state = 8}, - [8417] = {.lex_state = 14, .external_lex_state = 8}, - [8418] = {.lex_state = 0, .external_lex_state = 8}, - [8419] = {.lex_state = 0, .external_lex_state = 8}, - [8420] = {.lex_state = 14, .external_lex_state = 9}, - [8421] = {.lex_state = 0, .external_lex_state = 8}, - [8422] = {.lex_state = 14, .external_lex_state = 8}, - [8423] = {.lex_state = 14, .external_lex_state = 8}, - [8424] = {.lex_state = 0, .external_lex_state = 8}, - [8425] = {.lex_state = 0, .external_lex_state = 8}, - [8426] = {.lex_state = 0, .external_lex_state = 8}, - [8427] = {.lex_state = 0, .external_lex_state = 8}, - [8428] = {.lex_state = 14, .external_lex_state = 8}, - [8429] = {.lex_state = 14, .external_lex_state = 8}, - [8430] = {.lex_state = 14, .external_lex_state = 9}, - [8431] = {.lex_state = 0, .external_lex_state = 8}, - [8432] = {.lex_state = 0, .external_lex_state = 8}, - [8433] = {.lex_state = 14, .external_lex_state = 8}, - [8434] = {.lex_state = 0, .external_lex_state = 8}, - [8435] = {.lex_state = 0, .external_lex_state = 8}, - [8436] = {.lex_state = 14, .external_lex_state = 8}, - [8437] = {.lex_state = 14, .external_lex_state = 9}, - [8438] = {.lex_state = 0, .external_lex_state = 8}, - [8439] = {.lex_state = 0, .external_lex_state = 8}, - [8440] = {.lex_state = 0, .external_lex_state = 8}, - [8441] = {.lex_state = 0, .external_lex_state = 8}, - [8442] = {.lex_state = 14, .external_lex_state = 8}, - [8443] = {.lex_state = 0, .external_lex_state = 8}, - [8444] = {.lex_state = 0, .external_lex_state = 8}, - [8445] = {.lex_state = 14, .external_lex_state = 8}, - [8446] = {.lex_state = 0, .external_lex_state = 8}, - [8447] = {.lex_state = 0, .external_lex_state = 8}, - [8448] = {.lex_state = 0, .external_lex_state = 8}, - [8449] = {.lex_state = 0, .external_lex_state = 8}, - [8450] = {.lex_state = 0, .external_lex_state = 8}, - [8451] = {.lex_state = 0, .external_lex_state = 8}, - [8452] = {.lex_state = 14, .external_lex_state = 8}, - [8453] = {.lex_state = 0, .external_lex_state = 8}, - [8454] = {.lex_state = 0, .external_lex_state = 8}, - [8455] = {.lex_state = 0, .external_lex_state = 8}, - [8456] = {.lex_state = 0, .external_lex_state = 8}, - [8457] = {.lex_state = 0, .external_lex_state = 8}, - [8458] = {.lex_state = 14, .external_lex_state = 8}, + [8412] = {.lex_state = 23, .external_lex_state = 9}, + [8413] = {.lex_state = 0, .external_lex_state = 9}, + [8414] = {.lex_state = 0, .external_lex_state = 10}, + [8415] = {.lex_state = 23, .external_lex_state = 8}, + [8416] = {.lex_state = 23, .external_lex_state = 9}, + [8417] = {.lex_state = 23, .external_lex_state = 9}, + [8418] = {.lex_state = 23, .external_lex_state = 9}, + [8419] = {.lex_state = 0, .external_lex_state = 10}, + [8420] = {.lex_state = 23, .external_lex_state = 8}, + [8421] = {.lex_state = 23, .external_lex_state = 9}, + [8422] = {.lex_state = 23, .external_lex_state = 9}, + [8423] = {.lex_state = 0, .external_lex_state = 10}, + [8424] = {.lex_state = 0, .external_lex_state = 10}, + [8425] = {.lex_state = 23, .external_lex_state = 9}, + [8426] = {.lex_state = 0, .external_lex_state = 9}, + [8427] = {.lex_state = 0, .external_lex_state = 9}, + [8428] = {.lex_state = 23, .external_lex_state = 9}, + [8429] = {.lex_state = 23, .external_lex_state = 8}, + [8430] = {.lex_state = 0, .external_lex_state = 10}, + [8431] = {.lex_state = 0, .external_lex_state = 9}, + [8432] = {.lex_state = 23, .external_lex_state = 9}, + [8433] = {.lex_state = 23, .external_lex_state = 8}, + [8434] = {.lex_state = 0, .external_lex_state = 10}, + [8435] = {.lex_state = 23, .external_lex_state = 9}, + [8436] = {.lex_state = 0, .external_lex_state = 9}, + [8437] = {.lex_state = 23, .external_lex_state = 8}, + [8438] = {.lex_state = 0, .external_lex_state = 9}, + [8439] = {.lex_state = 23, .external_lex_state = 9}, + [8440] = {.lex_state = 23, .external_lex_state = 9}, + [8441] = {.lex_state = 0, .external_lex_state = 10}, + [8442] = {.lex_state = 0, .external_lex_state = 10}, + [8443] = {.lex_state = 23, .external_lex_state = 9}, + [8444] = {.lex_state = 0, .external_lex_state = 10}, + [8445] = {.lex_state = 23, .external_lex_state = 9}, + [8446] = {.lex_state = 0, .external_lex_state = 10}, + [8447] = {.lex_state = 0, .external_lex_state = 9}, + [8448] = {.lex_state = 23, .external_lex_state = 8}, + [8449] = {.lex_state = 23, .external_lex_state = 8}, + [8450] = {.lex_state = 0, .external_lex_state = 9}, + [8451] = {.lex_state = 23, .external_lex_state = 9}, + [8452] = {.lex_state = 23, .external_lex_state = 8}, + [8453] = {.lex_state = 0, .external_lex_state = 9}, + [8454] = {.lex_state = 0, .external_lex_state = 10}, + [8455] = {.lex_state = 23, .external_lex_state = 9}, + [8456] = {.lex_state = 23, .external_lex_state = 9}, + [8457] = {.lex_state = 23, .external_lex_state = 9}, + [8458] = {.lex_state = 0, .external_lex_state = 8}, [8459] = {.lex_state = 0, .external_lex_state = 8}, - [8460] = {.lex_state = 0, .external_lex_state = 9}, + [8460] = {.lex_state = 0, .external_lex_state = 8}, [8461] = {.lex_state = 0, .external_lex_state = 8}, [8462] = {.lex_state = 0, .external_lex_state = 8}, - [8463] = {.lex_state = 14, .external_lex_state = 8}, - [8464] = {.lex_state = 14, .external_lex_state = 8}, - [8465] = {.lex_state = 14, .external_lex_state = 9}, + [8463] = {.lex_state = 0, .external_lex_state = 8}, + [8464] = {.lex_state = 0, .external_lex_state = 8}, + [8465] = {.lex_state = 0, .external_lex_state = 8}, [8466] = {.lex_state = 0, .external_lex_state = 8}, - [8467] = {.lex_state = 14, .external_lex_state = 9}, - [8468] = {.lex_state = 14, .external_lex_state = 9}, - [8469] = {.lex_state = 0, .external_lex_state = 8}, - [8470] = {.lex_state = 23, .external_lex_state = 8}, - [8471] = {.lex_state = 0, .external_lex_state = 8}, + [8467] = {.lex_state = 0, .external_lex_state = 8}, + [8468] = {.lex_state = 0, .external_lex_state = 8}, + [8469] = {.lex_state = 23, .external_lex_state = 9}, + [8470] = {.lex_state = 23, .external_lex_state = 9}, + [8471] = {.lex_state = 32, .external_lex_state = 8}, [8472] = {.lex_state = 0, .external_lex_state = 8}, - [8473] = {.lex_state = 0, .external_lex_state = 8}, - [8474] = {.lex_state = 14, .external_lex_state = 9}, + [8473] = {.lex_state = 23, .external_lex_state = 9}, + [8474] = {.lex_state = 0, .external_lex_state = 8}, [8475] = {.lex_state = 0, .external_lex_state = 8}, [8476] = {.lex_state = 0, .external_lex_state = 8}, [8477] = {.lex_state = 0, .external_lex_state = 8}, - [8478] = {.lex_state = 0, .external_lex_state = 8}, - [8479] = {.lex_state = 0, .external_lex_state = 8}, + [8478] = {.lex_state = 23, .external_lex_state = 9}, + [8479] = {.lex_state = 23, .external_lex_state = 9}, [8480] = {.lex_state = 0, .external_lex_state = 8}, [8481] = {.lex_state = 0, .external_lex_state = 8}, - [8482] = {.lex_state = 14, .external_lex_state = 8}, - [8483] = {.lex_state = 14, .external_lex_state = 8}, - [8484] = {.lex_state = 0, .external_lex_state = 8}, + [8482] = {.lex_state = 0, .external_lex_state = 8}, + [8483] = {.lex_state = 0, .external_lex_state = 8}, + [8484] = {.lex_state = 23, .external_lex_state = 8}, [8485] = {.lex_state = 0, .external_lex_state = 8}, - [8486] = {.lex_state = 14, .external_lex_state = 9}, + [8486] = {.lex_state = 23, .external_lex_state = 9}, [8487] = {.lex_state = 0, .external_lex_state = 8}, [8488] = {.lex_state = 0, .external_lex_state = 8}, [8489] = {.lex_state = 0, .external_lex_state = 8}, [8490] = {.lex_state = 0, .external_lex_state = 8}, - [8491] = {.lex_state = 14, .external_lex_state = 8}, - [8492] = {.lex_state = 14, .external_lex_state = 8}, - [8493] = {.lex_state = 14, .external_lex_state = 9}, - [8494] = {.lex_state = 14, .external_lex_state = 8}, + [8491] = {.lex_state = 0, .external_lex_state = 8}, + [8492] = {.lex_state = 0, .external_lex_state = 8}, + [8493] = {.lex_state = 0, .external_lex_state = 8}, + [8494] = {.lex_state = 0, .external_lex_state = 8}, [8495] = {.lex_state = 0, .external_lex_state = 8}, - [8496] = {.lex_state = 14, .external_lex_state = 9}, - [8497] = {.lex_state = 14, .external_lex_state = 9}, - [8498] = {.lex_state = 0, .external_lex_state = 8}, - [8499] = {.lex_state = 14, .external_lex_state = 9}, - [8500] = {.lex_state = 14, .external_lex_state = 8}, - [8501] = {.lex_state = 23, .external_lex_state = 8}, - [8502] = {.lex_state = 14, .external_lex_state = 9}, + [8496] = {.lex_state = 0, .external_lex_state = 8}, + [8497] = {.lex_state = 23, .external_lex_state = 9}, + [8498] = {.lex_state = 23, .external_lex_state = 9}, + [8499] = {.lex_state = 0, .external_lex_state = 8}, + [8500] = {.lex_state = 0, .external_lex_state = 8}, + [8501] = {.lex_state = 0, .external_lex_state = 8}, + [8502] = {.lex_state = 0, .external_lex_state = 8}, [8503] = {.lex_state = 0, .external_lex_state = 8}, - [8504] = {.lex_state = 14, .external_lex_state = 8}, - [8505] = {.lex_state = 14, .external_lex_state = 9}, - [8506] = {.lex_state = 14, .external_lex_state = 8}, - [8507] = {.lex_state = 0, .external_lex_state = 8}, - [8508] = {.lex_state = 14, .external_lex_state = 9}, + [8504] = {.lex_state = 0, .external_lex_state = 8}, + [8505] = {.lex_state = 0, .external_lex_state = 8}, + [8506] = {.lex_state = 0, .external_lex_state = 8}, + [8507] = {.lex_state = 23, .external_lex_state = 8}, + [8508] = {.lex_state = 0, .external_lex_state = 8}, [8509] = {.lex_state = 0, .external_lex_state = 8}, - [8510] = {.lex_state = 0, .external_lex_state = 8}, + [8510] = {.lex_state = 23, .external_lex_state = 8}, [8511] = {.lex_state = 0, .external_lex_state = 8}, [8512] = {.lex_state = 0, .external_lex_state = 8}, [8513] = {.lex_state = 0, .external_lex_state = 8}, [8514] = {.lex_state = 0, .external_lex_state = 8}, - [8515] = {.lex_state = 0, .external_lex_state = 9}, - [8516] = {.lex_state = 14, .external_lex_state = 8}, - [8517] = {.lex_state = 14, .external_lex_state = 8}, + [8515] = {.lex_state = 0, .external_lex_state = 8}, + [8516] = {.lex_state = 23, .external_lex_state = 9}, + [8517] = {.lex_state = 23, .external_lex_state = 9}, [8518] = {.lex_state = 0, .external_lex_state = 8}, - [8519] = {.lex_state = 14, .external_lex_state = 8}, + [8519] = {.lex_state = 23, .external_lex_state = 8}, [8520] = {.lex_state = 0, .external_lex_state = 8}, [8521] = {.lex_state = 0, .external_lex_state = 8}, [8522] = {.lex_state = 0, .external_lex_state = 8}, [8523] = {.lex_state = 0, .external_lex_state = 8}, - [8524] = {.lex_state = 14, .external_lex_state = 8}, - [8525] = {.lex_state = 0, .external_lex_state = 8}, - [8526] = {.lex_state = 23, .external_lex_state = 8}, + [8524] = {.lex_state = 0, .external_lex_state = 8}, + [8525] = {.lex_state = 23, .external_lex_state = 9}, + [8526] = {.lex_state = 0, .external_lex_state = 8}, [8527] = {.lex_state = 0, .external_lex_state = 8}, [8528] = {.lex_state = 0, .external_lex_state = 8}, - [8529] = {.lex_state = 14, .external_lex_state = 8}, - [8530] = {.lex_state = 14, .external_lex_state = 8}, + [8529] = {.lex_state = 23, .external_lex_state = 8}, + [8530] = {.lex_state = 0, .external_lex_state = 8}, [8531] = {.lex_state = 0, .external_lex_state = 8}, [8532] = {.lex_state = 0, .external_lex_state = 8}, - [8533] = {.lex_state = 0, .external_lex_state = 8}, - [8534] = {.lex_state = 0, .external_lex_state = 8}, + [8533] = {.lex_state = 23, .external_lex_state = 8}, + [8534] = {.lex_state = 23, .external_lex_state = 8}, [8535] = {.lex_state = 0, .external_lex_state = 8}, [8536] = {.lex_state = 23, .external_lex_state = 8}, [8537] = {.lex_state = 0, .external_lex_state = 8}, @@ -31335,660 +32081,660 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8539] = {.lex_state = 0, .external_lex_state = 8}, [8540] = {.lex_state = 0, .external_lex_state = 8}, [8541] = {.lex_state = 0, .external_lex_state = 8}, - [8542] = {.lex_state = 0, .external_lex_state = 8}, + [8542] = {.lex_state = 23, .external_lex_state = 8}, [8543] = {.lex_state = 0, .external_lex_state = 8}, [8544] = {.lex_state = 0, .external_lex_state = 8}, [8545] = {.lex_state = 0, .external_lex_state = 8}, [8546] = {.lex_state = 0, .external_lex_state = 8}, [8547] = {.lex_state = 0, .external_lex_state = 8}, - [8548] = {.lex_state = 0, .external_lex_state = 8}, - [8549] = {.lex_state = 0, .external_lex_state = 8}, - [8550] = {.lex_state = 14, .external_lex_state = 9}, - [8551] = {.lex_state = 14, .external_lex_state = 9}, - [8552] = {.lex_state = 0, .external_lex_state = 8}, - [8553] = {.lex_state = 0, .external_lex_state = 8}, + [8548] = {.lex_state = 0, .external_lex_state = 9}, + [8549] = {.lex_state = 23, .external_lex_state = 8}, + [8550] = {.lex_state = 23, .external_lex_state = 8}, + [8551] = {.lex_state = 23, .external_lex_state = 8}, + [8552] = {.lex_state = 23, .external_lex_state = 8}, + [8553] = {.lex_state = 23, .external_lex_state = 8}, [8554] = {.lex_state = 0, .external_lex_state = 8}, - [8555] = {.lex_state = 0, .external_lex_state = 8}, + [8555] = {.lex_state = 23, .external_lex_state = 9}, [8556] = {.lex_state = 0, .external_lex_state = 8}, [8557] = {.lex_state = 0, .external_lex_state = 8}, [8558] = {.lex_state = 0, .external_lex_state = 8}, - [8559] = {.lex_state = 0, .external_lex_state = 8}, + [8559] = {.lex_state = 23, .external_lex_state = 8}, [8560] = {.lex_state = 0, .external_lex_state = 8}, [8561] = {.lex_state = 0, .external_lex_state = 8}, - [8562] = {.lex_state = 14, .external_lex_state = 8}, - [8563] = {.lex_state = 0, .external_lex_state = 8}, + [8562] = {.lex_state = 23, .external_lex_state = 8}, + [8563] = {.lex_state = 23, .external_lex_state = 9}, [8564] = {.lex_state = 0, .external_lex_state = 8}, - [8565] = {.lex_state = 23, .external_lex_state = 8}, + [8565] = {.lex_state = 0, .external_lex_state = 8}, [8566] = {.lex_state = 0, .external_lex_state = 8}, - [8567] = {.lex_state = 0, .external_lex_state = 8}, - [8568] = {.lex_state = 14, .external_lex_state = 8}, + [8567] = {.lex_state = 23, .external_lex_state = 8}, + [8568] = {.lex_state = 0, .external_lex_state = 8}, [8569] = {.lex_state = 0, .external_lex_state = 8}, [8570] = {.lex_state = 0, .external_lex_state = 8}, - [8571] = {.lex_state = 0, .external_lex_state = 8}, - [8572] = {.lex_state = 0, .external_lex_state = 8}, + [8571] = {.lex_state = 23, .external_lex_state = 9}, + [8572] = {.lex_state = 23, .external_lex_state = 8}, [8573] = {.lex_state = 0, .external_lex_state = 8}, - [8574] = {.lex_state = 0, .external_lex_state = 8}, + [8574] = {.lex_state = 32, .external_lex_state = 8}, [8575] = {.lex_state = 0, .external_lex_state = 8}, [8576] = {.lex_state = 0, .external_lex_state = 8}, [8577] = {.lex_state = 0, .external_lex_state = 8}, - [8578] = {.lex_state = 0, .external_lex_state = 9}, - [8579] = {.lex_state = 0, .external_lex_state = 9}, - [8580] = {.lex_state = 0, .external_lex_state = 9}, + [8578] = {.lex_state = 0, .external_lex_state = 8}, + [8579] = {.lex_state = 0, .external_lex_state = 8}, + [8580] = {.lex_state = 23, .external_lex_state = 8}, [8581] = {.lex_state = 0, .external_lex_state = 8}, - [8582] = {.lex_state = 0, .external_lex_state = 10}, - [8583] = {.lex_state = 0, .external_lex_state = 8}, - [8584] = {.lex_state = 0, .external_lex_state = 8}, - [8585] = {.lex_state = 0, .external_lex_state = 8}, + [8582] = {.lex_state = 0, .external_lex_state = 8}, + [8583] = {.lex_state = 32, .external_lex_state = 8}, + [8584] = {.lex_state = 32, .external_lex_state = 8}, + [8585] = {.lex_state = 23, .external_lex_state = 8}, [8586] = {.lex_state = 0, .external_lex_state = 8}, - [8587] = {.lex_state = 0, .external_lex_state = 8}, - [8588] = {.lex_state = 0, .external_lex_state = 8}, + [8587] = {.lex_state = 23, .external_lex_state = 8}, + [8588] = {.lex_state = 23, .external_lex_state = 8}, [8589] = {.lex_state = 0, .external_lex_state = 8}, - [8590] = {.lex_state = 0, .external_lex_state = 8}, - [8591] = {.lex_state = 0, .external_lex_state = 8}, + [8590] = {.lex_state = 23, .external_lex_state = 8}, + [8591] = {.lex_state = 23, .external_lex_state = 8}, [8592] = {.lex_state = 0, .external_lex_state = 8}, - [8593] = {.lex_state = 0, .external_lex_state = 9}, + [8593] = {.lex_state = 0, .external_lex_state = 8}, [8594] = {.lex_state = 0, .external_lex_state = 8}, [8595] = {.lex_state = 0, .external_lex_state = 8}, - [8596] = {.lex_state = 0, .external_lex_state = 8}, - [8597] = {.lex_state = 0, .external_lex_state = 8}, - [8598] = {.lex_state = 14, .external_lex_state = 8}, + [8596] = {.lex_state = 23, .external_lex_state = 8}, + [8597] = {.lex_state = 32, .external_lex_state = 8}, + [8598] = {.lex_state = 0, .external_lex_state = 8}, [8599] = {.lex_state = 0, .external_lex_state = 8}, [8600] = {.lex_state = 0, .external_lex_state = 8}, - [8601] = {.lex_state = 14, .external_lex_state = 11}, + [8601] = {.lex_state = 0, .external_lex_state = 8}, [8602] = {.lex_state = 0, .external_lex_state = 8}, [8603] = {.lex_state = 0, .external_lex_state = 8}, - [8604] = {.lex_state = 0, .external_lex_state = 8}, - [8605] = {.lex_state = 0, .external_lex_state = 8}, - [8606] = {.lex_state = 0, .external_lex_state = 9}, - [8607] = {.lex_state = 0, .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 = 14, .external_lex_state = 8}, + [8604] = {.lex_state = 23, .external_lex_state = 8}, + [8605] = {.lex_state = 23, .external_lex_state = 8}, + [8606] = {.lex_state = 0, .external_lex_state = 8}, + [8607] = {.lex_state = 23, .external_lex_state = 9}, + [8608] = {.lex_state = 23, .external_lex_state = 9}, + [8609] = {.lex_state = 23, .external_lex_state = 9}, + [8610] = {.lex_state = 23, .external_lex_state = 8}, + [8611] = {.lex_state = 32, .external_lex_state = 8}, + [8612] = {.lex_state = 0, .external_lex_state = 8}, [8613] = {.lex_state = 0, .external_lex_state = 8}, [8614] = {.lex_state = 0, .external_lex_state = 8}, - [8615] = {.lex_state = 0, .external_lex_state = 8}, + [8615] = {.lex_state = 23, .external_lex_state = 8}, [8616] = {.lex_state = 0, .external_lex_state = 8}, - [8617] = {.lex_state = 0, .external_lex_state = 8}, - [8618] = {.lex_state = 0, .external_lex_state = 8}, - [8619] = {.lex_state = 0, .external_lex_state = 8}, - [8620] = {.lex_state = 0, .external_lex_state = 8}, - [8621] = {.lex_state = 0, .external_lex_state = 10}, - [8622] = {.lex_state = 0, .external_lex_state = 8}, - [8623] = {.lex_state = 14, .external_lex_state = 8}, - [8624] = {.lex_state = 0, .external_lex_state = 9}, - [8625] = {.lex_state = 14, .external_lex_state = 8}, - [8626] = {.lex_state = 0, .external_lex_state = 8}, - [8627] = {.lex_state = 0, .external_lex_state = 9}, + [8617] = {.lex_state = 0, .external_lex_state = 9}, + [8618] = {.lex_state = 23, .external_lex_state = 8}, + [8619] = {.lex_state = 23, .external_lex_state = 8}, + [8620] = {.lex_state = 23, .external_lex_state = 8}, + [8621] = {.lex_state = 0, .external_lex_state = 8}, + [8622] = {.lex_state = 23, .external_lex_state = 8}, + [8623] = {.lex_state = 23, .external_lex_state = 8}, + [8624] = {.lex_state = 23, .external_lex_state = 8}, + [8625] = {.lex_state = 23, .external_lex_state = 8}, + [8626] = {.lex_state = 23, .external_lex_state = 9}, + [8627] = {.lex_state = 0, .external_lex_state = 8}, [8628] = {.lex_state = 0, .external_lex_state = 8}, - [8629] = {.lex_state = 0, .external_lex_state = 8}, + [8629] = {.lex_state = 23, .external_lex_state = 8}, [8630] = {.lex_state = 0, .external_lex_state = 8}, [8631] = {.lex_state = 0, .external_lex_state = 8}, - [8632] = {.lex_state = 0, .external_lex_state = 10}, + [8632] = {.lex_state = 23, .external_lex_state = 8}, [8633] = {.lex_state = 0, .external_lex_state = 8}, - [8634] = {.lex_state = 0, .external_lex_state = 9}, + [8634] = {.lex_state = 0, .external_lex_state = 8}, [8635] = {.lex_state = 0, .external_lex_state = 8}, - [8636] = {.lex_state = 0, .external_lex_state = 9}, - [8637] = {.lex_state = 14, .external_lex_state = 8}, + [8636] = {.lex_state = 0, .external_lex_state = 8}, + [8637] = {.lex_state = 23, .external_lex_state = 8}, [8638] = {.lex_state = 0, .external_lex_state = 8}, [8639] = {.lex_state = 0, .external_lex_state = 8}, - [8640] = {.lex_state = 0, .external_lex_state = 9}, + [8640] = {.lex_state = 0, .external_lex_state = 8}, [8641] = {.lex_state = 0, .external_lex_state = 8}, [8642] = {.lex_state = 0, .external_lex_state = 8}, - [8643] = {.lex_state = 0, .external_lex_state = 8}, - [8644] = {.lex_state = 0, .external_lex_state = 9}, - [8645] = {.lex_state = 0, .external_lex_state = 9}, + [8643] = {.lex_state = 23, .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 = 8}, [8649] = {.lex_state = 0, .external_lex_state = 8}, - [8650] = {.lex_state = 0, .external_lex_state = 8}, + [8650] = {.lex_state = 0, .external_lex_state = 10}, [8651] = {.lex_state = 0, .external_lex_state = 8}, - [8652] = {.lex_state = 0, .external_lex_state = 8}, - [8653] = {.lex_state = 0, .external_lex_state = 8}, - [8654] = {.lex_state = 0, .external_lex_state = 8}, - [8655] = {.lex_state = 0, .external_lex_state = 8}, - [8656] = {.lex_state = 14, .external_lex_state = 9}, + [8652] = {.lex_state = 23, .external_lex_state = 8}, + [8653] = {.lex_state = 0, .external_lex_state = 9}, + [8654] = {.lex_state = 23, .external_lex_state = 9}, + [8655] = {.lex_state = 0, .external_lex_state = 9}, + [8656] = {.lex_state = 0, .external_lex_state = 9}, [8657] = {.lex_state = 0, .external_lex_state = 8}, [8658] = {.lex_state = 0, .external_lex_state = 8}, [8659] = {.lex_state = 0, .external_lex_state = 8}, [8660] = {.lex_state = 0, .external_lex_state = 8}, - [8661] = {.lex_state = 0, .external_lex_state = 9}, + [8661] = {.lex_state = 0, .external_lex_state = 8}, [8662] = {.lex_state = 0, .external_lex_state = 8}, - [8663] = {.lex_state = 0, .external_lex_state = 8}, + [8663] = {.lex_state = 0, .external_lex_state = 9}, [8664] = {.lex_state = 0, .external_lex_state = 9}, [8665] = {.lex_state = 0, .external_lex_state = 8}, - [8666] = {.lex_state = 14, .external_lex_state = 8}, - [8667] = {.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 = 14, .external_lex_state = 8}, + [8669] = {.lex_state = 0, .external_lex_state = 8}, [8670] = {.lex_state = 0, .external_lex_state = 8}, - [8671] = {.lex_state = 14, .external_lex_state = 8}, - [8672] = {.lex_state = 14, .external_lex_state = 8}, - [8673] = {.lex_state = 0, .external_lex_state = 8}, + [8671] = {.lex_state = 0, .external_lex_state = 8}, + [8672] = {.lex_state = 0, .external_lex_state = 8}, + [8673] = {.lex_state = 318, .external_lex_state = 8}, [8674] = {.lex_state = 0, .external_lex_state = 9}, [8675] = {.lex_state = 0, .external_lex_state = 8}, [8676] = {.lex_state = 0, .external_lex_state = 8}, - [8677] = {.lex_state = 0, .external_lex_state = 9}, - [8678] = {.lex_state = 0, .external_lex_state = 8}, - [8679] = {.lex_state = 0, .external_lex_state = 9}, + [8677] = {.lex_state = 0, .external_lex_state = 8}, + [8678] = {.lex_state = 23, .external_lex_state = 8}, + [8679] = {.lex_state = 0, .external_lex_state = 8}, [8680] = {.lex_state = 0, .external_lex_state = 8}, - [8681] = {.lex_state = 0, .external_lex_state = 9}, + [8681] = {.lex_state = 0, .external_lex_state = 8}, [8682] = {.lex_state = 0, .external_lex_state = 8}, [8683] = {.lex_state = 0, .external_lex_state = 8}, [8684] = {.lex_state = 0, .external_lex_state = 8}, [8685] = {.lex_state = 0, .external_lex_state = 8}, [8686] = {.lex_state = 0, .external_lex_state = 8}, - [8687] = {.lex_state = 0, .external_lex_state = 8}, + [8687] = {.lex_state = 0, .external_lex_state = 9}, [8688] = {.lex_state = 0, .external_lex_state = 8}, [8689] = {.lex_state = 0, .external_lex_state = 8}, [8690] = {.lex_state = 0, .external_lex_state = 8}, [8691] = {.lex_state = 0, .external_lex_state = 8}, [8692] = {.lex_state = 0, .external_lex_state = 8}, [8693] = {.lex_state = 0, .external_lex_state = 8}, - [8694] = {.lex_state = 0, .external_lex_state = 9}, - [8695] = {.lex_state = 0, .external_lex_state = 8}, - [8696] = {.lex_state = 0, .external_lex_state = 9}, + [8694] = {.lex_state = 0, .external_lex_state = 8}, + [8695] = {.lex_state = 0, .external_lex_state = 10}, + [8696] = {.lex_state = 23, .external_lex_state = 11}, [8697] = {.lex_state = 0, .external_lex_state = 8}, - [8698] = {.lex_state = 0, .external_lex_state = 8}, + [8698] = {.lex_state = 23, .external_lex_state = 8}, [8699] = {.lex_state = 0, .external_lex_state = 9}, - [8700] = {.lex_state = 0, .external_lex_state = 8}, - [8701] = {.lex_state = 14, .external_lex_state = 11}, - [8702] = {.lex_state = 0, .external_lex_state = 8}, - [8703] = {.lex_state = 14, .external_lex_state = 8}, - [8704] = {.lex_state = 307, .external_lex_state = 8}, - [8705] = {.lex_state = 0, .external_lex_state = 9}, + [8700] = {.lex_state = 0, .external_lex_state = 9}, + [8701] = {.lex_state = 23, .external_lex_state = 8}, + [8702] = {.lex_state = 0, .external_lex_state = 9}, + [8703] = {.lex_state = 0, .external_lex_state = 8}, + [8704] = {.lex_state = 0, .external_lex_state = 8}, + [8705] = {.lex_state = 23, .external_lex_state = 8}, [8706] = {.lex_state = 0, .external_lex_state = 8}, - [8707] = {.lex_state = 14, .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 = 9}, + [8709] = {.lex_state = 0, .external_lex_state = 8}, [8710] = {.lex_state = 0, .external_lex_state = 8}, [8711] = {.lex_state = 0, .external_lex_state = 8}, [8712] = {.lex_state = 0, .external_lex_state = 8}, [8713] = {.lex_state = 0, .external_lex_state = 9}, [8714] = {.lex_state = 0, .external_lex_state = 8}, - [8715] = {.lex_state = 0, .external_lex_state = 8}, + [8715] = {.lex_state = 0, .external_lex_state = 9}, [8716] = {.lex_state = 0, .external_lex_state = 8}, - [8717] = {.lex_state = 0, .external_lex_state = 8}, + [8717] = {.lex_state = 23, .external_lex_state = 8}, [8718] = {.lex_state = 0, .external_lex_state = 8}, [8719] = {.lex_state = 0, .external_lex_state = 9}, - [8720] = {.lex_state = 0, .external_lex_state = 9}, - [8721] = {.lex_state = 0, .external_lex_state = 9}, + [8720] = {.lex_state = 0, .external_lex_state = 8}, + [8721] = {.lex_state = 0, .external_lex_state = 8}, [8722] = {.lex_state = 0, .external_lex_state = 9}, - [8723] = {.lex_state = 0, .external_lex_state = 8}, - [8724] = {.lex_state = 14, .external_lex_state = 8}, - [8725] = {.lex_state = 14, .external_lex_state = 8}, + [8723] = {.lex_state = 23, .external_lex_state = 8}, + [8724] = {.lex_state = 0, .external_lex_state = 8}, + [8725] = {.lex_state = 23, .external_lex_state = 8}, [8726] = {.lex_state = 0, .external_lex_state = 8}, - [8727] = {.lex_state = 0, .external_lex_state = 8}, + [8727] = {.lex_state = 0, .external_lex_state = 9}, [8728] = {.lex_state = 0, .external_lex_state = 8}, - [8729] = {.lex_state = 14, .external_lex_state = 8}, + [8729] = {.lex_state = 0, .external_lex_state = 8}, [8730] = {.lex_state = 0, .external_lex_state = 8}, [8731] = {.lex_state = 0, .external_lex_state = 8}, - [8732] = {.lex_state = 0, .external_lex_state = 8}, - [8733] = {.lex_state = 0, .external_lex_state = 8}, - [8734] = {.lex_state = 307, .external_lex_state = 8}, - [8735] = {.lex_state = 14, .external_lex_state = 8}, - [8736] = {.lex_state = 0, .external_lex_state = 8}, - [8737] = {.lex_state = 0, .external_lex_state = 8}, - [8738] = {.lex_state = 307, .external_lex_state = 8}, + [8732] = {.lex_state = 0, .external_lex_state = 9}, + [8733] = {.lex_state = 23, .external_lex_state = 8}, + [8734] = {.lex_state = 0, .external_lex_state = 8}, + [8735] = {.lex_state = 0, .external_lex_state = 8}, + [8736] = {.lex_state = 0, .external_lex_state = 9}, + [8737] = {.lex_state = 23, .external_lex_state = 8}, + [8738] = {.lex_state = 0, .external_lex_state = 9}, [8739] = {.lex_state = 0, .external_lex_state = 8}, [8740] = {.lex_state = 0, .external_lex_state = 8}, [8741] = {.lex_state = 0, .external_lex_state = 8}, - [8742] = {.lex_state = 307, .external_lex_state = 8}, - [8743] = {.lex_state = 0, .external_lex_state = 8}, + [8742] = {.lex_state = 0, .external_lex_state = 8}, + [8743] = {.lex_state = 23, .external_lex_state = 8}, [8744] = {.lex_state = 0, .external_lex_state = 8}, [8745] = {.lex_state = 0, .external_lex_state = 8}, [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 = 307, .external_lex_state = 8}, - [8750] = {.lex_state = 0, .external_lex_state = 8}, - [8751] = {.lex_state = 0, .external_lex_state = 9}, - [8752] = {.lex_state = 0, .external_lex_state = 9}, - [8753] = {.lex_state = 14, .external_lex_state = 8}, - [8754] = {.lex_state = 0, .external_lex_state = 9}, - [8755] = {.lex_state = 14, .external_lex_state = 8}, + [8747] = {.lex_state = 0, .external_lex_state = 9}, + [8748] = {.lex_state = 0, .external_lex_state = 9}, + [8749] = {.lex_state = 0, .external_lex_state = 9}, + [8750] = {.lex_state = 0, .external_lex_state = 9}, + [8751] = {.lex_state = 23, .external_lex_state = 11}, + [8752] = {.lex_state = 0, .external_lex_state = 8}, + [8753] = {.lex_state = 0, .external_lex_state = 8}, + [8754] = {.lex_state = 0, .external_lex_state = 8}, + [8755] = {.lex_state = 0, .external_lex_state = 8}, [8756] = {.lex_state = 0, .external_lex_state = 8}, - [8757] = {.lex_state = 14, .external_lex_state = 8}, - [8758] = {.lex_state = 0, .external_lex_state = 8}, + [8757] = {.lex_state = 0, .external_lex_state = 8}, + [8758] = {.lex_state = 23, .external_lex_state = 8}, [8759] = {.lex_state = 0, .external_lex_state = 8}, [8760] = {.lex_state = 0, .external_lex_state = 8}, - [8761] = {.lex_state = 0, .external_lex_state = 8}, - [8762] = {.lex_state = 14, .external_lex_state = 8}, - [8763] = {.lex_state = 14, .external_lex_state = 8}, - [8764] = {.lex_state = 14, .external_lex_state = 8}, + [8761] = {.lex_state = 0, .external_lex_state = 10}, + [8762] = {.lex_state = 0, .external_lex_state = 8}, + [8763] = {.lex_state = 0, .external_lex_state = 9}, + [8764] = {.lex_state = 0, .external_lex_state = 8}, [8765] = {.lex_state = 0, .external_lex_state = 8}, - [8766] = {.lex_state = 0, .external_lex_state = 8}, - [8767] = {.lex_state = 0, .external_lex_state = 8}, - [8768] = {.lex_state = 307, .external_lex_state = 8}, - [8769] = {.lex_state = 14, .external_lex_state = 8}, - [8770] = {.lex_state = 0, .external_lex_state = 8}, + [8766] = {.lex_state = 0, .external_lex_state = 9}, + [8767] = {.lex_state = 0, .external_lex_state = 9}, + [8768] = {.lex_state = 0, .external_lex_state = 8}, + [8769] = {.lex_state = 0, .external_lex_state = 8}, + [8770] = {.lex_state = 0, .external_lex_state = 9}, [8771] = {.lex_state = 0, .external_lex_state = 8}, - [8772] = {.lex_state = 307, .external_lex_state = 8}, + [8772] = {.lex_state = 0, .external_lex_state = 8}, [8773] = {.lex_state = 0, .external_lex_state = 8}, - [8774] = {.lex_state = 0, .external_lex_state = 9}, - [8775] = {.lex_state = 307, .external_lex_state = 8}, - [8776] = {.lex_state = 0, .external_lex_state = 8}, - [8777] = {.lex_state = 0, .external_lex_state = 9}, - [8778] = {.lex_state = 0, .external_lex_state = 8}, + [8774] = {.lex_state = 0, .external_lex_state = 8}, + [8775] = {.lex_state = 0, .external_lex_state = 8}, + [8776] = {.lex_state = 0, .external_lex_state = 9}, + [8777] = {.lex_state = 0, .external_lex_state = 8}, + [8778] = {.lex_state = 0, .external_lex_state = 9}, [8779] = {.lex_state = 0, .external_lex_state = 8}, - [8780] = {.lex_state = 0, .external_lex_state = 8}, + [8780] = {.lex_state = 0, .external_lex_state = 10}, [8781] = {.lex_state = 0, .external_lex_state = 8}, - [8782] = {.lex_state = 0, .external_lex_state = 9}, - [8783] = {.lex_state = 307, .external_lex_state = 8}, + [8782] = {.lex_state = 0, .external_lex_state = 8}, + [8783] = {.lex_state = 0, .external_lex_state = 9}, [8784] = {.lex_state = 0, .external_lex_state = 8}, [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 = 307, .external_lex_state = 8}, + [8788] = {.lex_state = 0, .external_lex_state = 8}, [8789] = {.lex_state = 0, .external_lex_state = 8}, [8790] = {.lex_state = 0, .external_lex_state = 8}, - [8791] = {.lex_state = 14, .external_lex_state = 8}, + [8791] = {.lex_state = 0, .external_lex_state = 8}, [8792] = {.lex_state = 0, .external_lex_state = 8}, [8793] = {.lex_state = 0, .external_lex_state = 8}, [8794] = {.lex_state = 0, .external_lex_state = 8}, - [8795] = {.lex_state = 0, .external_lex_state = 8}, - [8796] = {.lex_state = 0, .external_lex_state = 8}, - [8797] = {.lex_state = 307, .external_lex_state = 8}, - [8798] = {.lex_state = 0, .external_lex_state = 8}, - [8799] = {.lex_state = 0, .external_lex_state = 8}, - [8800] = {.lex_state = 307, .external_lex_state = 8}, - [8801] = {.lex_state = 307, .external_lex_state = 8}, - [8802] = {.lex_state = 0, .external_lex_state = 8}, - [8803] = {.lex_state = 0, .external_lex_state = 8}, - [8804] = {.lex_state = 0, .external_lex_state = 8}, + [8795] = {.lex_state = 23, .external_lex_state = 8}, + [8796] = {.lex_state = 318, .external_lex_state = 8}, + [8797] = {.lex_state = 0, .external_lex_state = 8}, + [8798] = {.lex_state = 23, .external_lex_state = 8}, + [8799] = {.lex_state = 23, .external_lex_state = 8}, + [8800] = {.lex_state = 23, .external_lex_state = 8}, + [8801] = {.lex_state = 318, .external_lex_state = 8}, + [8802] = {.lex_state = 23, .external_lex_state = 8}, + [8803] = {.lex_state = 23, .external_lex_state = 8}, + [8804] = {.lex_state = 0, .external_lex_state = 9}, [8805] = {.lex_state = 0, .external_lex_state = 8}, - [8806] = {.lex_state = 307, .external_lex_state = 8}, - [8807] = {.lex_state = 0, .external_lex_state = 8}, + [8806] = {.lex_state = 0, .external_lex_state = 8}, + [8807] = {.lex_state = 0, .external_lex_state = 9}, [8808] = {.lex_state = 0, .external_lex_state = 8}, [8809] = {.lex_state = 0, .external_lex_state = 8}, - [8810] = {.lex_state = 0, .external_lex_state = 8}, - [8811] = {.lex_state = 307, .external_lex_state = 8}, + [8810] = {.lex_state = 0, .external_lex_state = 9}, + [8811] = {.lex_state = 23, .external_lex_state = 8}, [8812] = {.lex_state = 0, .external_lex_state = 8}, [8813] = {.lex_state = 0, .external_lex_state = 8}, - [8814] = {.lex_state = 307, .external_lex_state = 8}, - [8815] = {.lex_state = 0, .external_lex_state = 8}, - [8816] = {.lex_state = 14, .external_lex_state = 8}, + [8814] = {.lex_state = 23, .external_lex_state = 8}, + [8815] = {.lex_state = 23, .external_lex_state = 8}, + [8816] = {.lex_state = 23, .external_lex_state = 8}, [8817] = {.lex_state = 0, .external_lex_state = 8}, [8818] = {.lex_state = 0, .external_lex_state = 8}, - [8819] = {.lex_state = 0, .external_lex_state = 8}, + [8819] = {.lex_state = 23, .external_lex_state = 8}, [8820] = {.lex_state = 0, .external_lex_state = 8}, [8821] = {.lex_state = 0, .external_lex_state = 8}, [8822] = {.lex_state = 0, .external_lex_state = 8}, - [8823] = {.lex_state = 307, .external_lex_state = 8}, + [8823] = {.lex_state = 23, .external_lex_state = 8}, [8824] = {.lex_state = 0, .external_lex_state = 8}, - [8825] = {.lex_state = 0, .external_lex_state = 8}, + [8825] = {.lex_state = 23, .external_lex_state = 8}, [8826] = {.lex_state = 0, .external_lex_state = 8}, - [8827] = {.lex_state = 307, .external_lex_state = 8}, - [8828] = {.lex_state = 0, .external_lex_state = 8}, + [8827] = {.lex_state = 318, .external_lex_state = 8}, + [8828] = {.lex_state = 318, .external_lex_state = 8}, [8829] = {.lex_state = 0, .external_lex_state = 8}, [8830] = {.lex_state = 0, .external_lex_state = 8}, - [8831] = {.lex_state = 0, .external_lex_state = 8}, - [8832] = {.lex_state = 307, .external_lex_state = 8}, + [8831] = {.lex_state = 0, .external_lex_state = 9}, + [8832] = {.lex_state = 0, .external_lex_state = 9}, [8833] = {.lex_state = 0, .external_lex_state = 8}, [8834] = {.lex_state = 0, .external_lex_state = 8}, - [8835] = {.lex_state = 307, .external_lex_state = 8}, - [8836] = {.lex_state = 14, .external_lex_state = 8}, - [8837] = {.lex_state = 14, .external_lex_state = 8}, - [8838] = {.lex_state = 307, .external_lex_state = 8}, - [8839] = {.lex_state = 307, .external_lex_state = 8}, + [8835] = {.lex_state = 0, .external_lex_state = 8}, + [8836] = {.lex_state = 0, .external_lex_state = 8}, + [8837] = {.lex_state = 0, .external_lex_state = 8}, + [8838] = {.lex_state = 0, .external_lex_state = 8}, + [8839] = {.lex_state = 0, .external_lex_state = 8}, [8840] = {.lex_state = 0, .external_lex_state = 8}, - [8841] = {.lex_state = 0, .external_lex_state = 8}, + [8841] = {.lex_state = 318, .external_lex_state = 8}, [8842] = {.lex_state = 0, .external_lex_state = 8}, [8843] = {.lex_state = 0, .external_lex_state = 8}, - [8844] = {.lex_state = 307, .external_lex_state = 8}, - [8845] = {.lex_state = 14, .external_lex_state = 8}, + [8844] = {.lex_state = 318, .external_lex_state = 8}, + [8845] = {.lex_state = 0, .external_lex_state = 8}, [8846] = {.lex_state = 0, .external_lex_state = 8}, [8847] = {.lex_state = 0, .external_lex_state = 8}, [8848] = {.lex_state = 0, .external_lex_state = 8}, [8849] = {.lex_state = 0, .external_lex_state = 8}, [8850] = {.lex_state = 0, .external_lex_state = 8}, - [8851] = {.lex_state = 307, .external_lex_state = 8}, + [8851] = {.lex_state = 0, .external_lex_state = 8}, [8852] = {.lex_state = 0, .external_lex_state = 8}, - [8853] = {.lex_state = 14, .external_lex_state = 8}, - [8854] = {.lex_state = 14, .external_lex_state = 8}, - [8855] = {.lex_state = 0, .external_lex_state = 8}, - [8856] = {.lex_state = 14, .external_lex_state = 8}, - [8857] = {.lex_state = 307, .external_lex_state = 8}, + [8853] = {.lex_state = 0, .external_lex_state = 8}, + [8854] = {.lex_state = 0, .external_lex_state = 8}, + [8855] = {.lex_state = 318, .external_lex_state = 8}, + [8856] = {.lex_state = 318, .external_lex_state = 8}, + [8857] = {.lex_state = 0, .external_lex_state = 8}, [8858] = {.lex_state = 0, .external_lex_state = 8}, [8859] = {.lex_state = 0, .external_lex_state = 8}, - [8860] = {.lex_state = 307, .external_lex_state = 8}, - [8861] = {.lex_state = 0, .external_lex_state = 8}, - [8862] = {.lex_state = 0, .external_lex_state = 8}, - [8863] = {.lex_state = 0, .external_lex_state = 8}, - [8864] = {.lex_state = 14, .external_lex_state = 8}, - [8865] = {.lex_state = 0, .external_lex_state = 8}, + [8860] = {.lex_state = 318, .external_lex_state = 8}, + [8861] = {.lex_state = 23, .external_lex_state = 8}, + [8862] = {.lex_state = 23, .external_lex_state = 8}, + [8863] = {.lex_state = 318, .external_lex_state = 8}, + [8864] = {.lex_state = 23, .external_lex_state = 8}, + [8865] = {.lex_state = 23, .external_lex_state = 8}, [8866] = {.lex_state = 0, .external_lex_state = 8}, - [8867] = {.lex_state = 307, .external_lex_state = 8}, - [8868] = {.lex_state = 0, .external_lex_state = 8}, + [8867] = {.lex_state = 0, .external_lex_state = 9}, + [8868] = {.lex_state = 0, .external_lex_state = 9}, [8869] = {.lex_state = 0, .external_lex_state = 8}, - [8870] = {.lex_state = 307, .external_lex_state = 8}, + [8870] = {.lex_state = 0, .external_lex_state = 8}, [8871] = {.lex_state = 0, .external_lex_state = 8}, [8872] = {.lex_state = 0, .external_lex_state = 8}, [8873] = {.lex_state = 0, .external_lex_state = 8}, - [8874] = {.lex_state = 14, .external_lex_state = 8}, + [8874] = {.lex_state = 0, .external_lex_state = 8}, [8875] = {.lex_state = 0, .external_lex_state = 8}, - [8876] = {.lex_state = 307, .external_lex_state = 8}, - [8877] = {.lex_state = 307, .external_lex_state = 8}, - [8878] = {.lex_state = 14, .external_lex_state = 8}, + [8876] = {.lex_state = 0, .external_lex_state = 8}, + [8877] = {.lex_state = 23, .external_lex_state = 8}, + [8878] = {.lex_state = 0, .external_lex_state = 8}, [8879] = {.lex_state = 0, .external_lex_state = 8}, - [8880] = {.lex_state = 0, .external_lex_state = 8}, - [8881] = {.lex_state = 14, .external_lex_state = 8}, - [8882] = {.lex_state = 0, .external_lex_state = 8}, + [8880] = {.lex_state = 23, .external_lex_state = 8}, + [8881] = {.lex_state = 0, .external_lex_state = 8}, + [8882] = {.lex_state = 318, .external_lex_state = 8}, [8883] = {.lex_state = 0, .external_lex_state = 8}, - [8884] = {.lex_state = 0, .external_lex_state = 8}, + [8884] = {.lex_state = 23, .external_lex_state = 8}, [8885] = {.lex_state = 0, .external_lex_state = 8}, - [8886] = {.lex_state = 0, .external_lex_state = 8}, - [8887] = {.lex_state = 14, .external_lex_state = 8}, - [8888] = {.lex_state = 14, .external_lex_state = 8}, - [8889] = {.lex_state = 0, .external_lex_state = 8}, - [8890] = {.lex_state = 307, .external_lex_state = 8}, - [8891] = {.lex_state = 14, .external_lex_state = 8}, + [8886] = {.lex_state = 23, .external_lex_state = 8}, + [8887] = {.lex_state = 23, .external_lex_state = 8}, + [8888] = {.lex_state = 23, .external_lex_state = 8}, + [8889] = {.lex_state = 23, .external_lex_state = 8}, + [8890] = {.lex_state = 23, .external_lex_state = 8}, + [8891] = {.lex_state = 23, .external_lex_state = 8}, [8892] = {.lex_state = 0, .external_lex_state = 8}, - [8893] = {.lex_state = 14, .external_lex_state = 8}, - [8894] = {.lex_state = 0, .external_lex_state = 9}, - [8895] = {.lex_state = 14, .external_lex_state = 8}, - [8896] = {.lex_state = 14, .external_lex_state = 8}, - [8897] = {.lex_state = 307, .external_lex_state = 8}, - [8898] = {.lex_state = 0, .external_lex_state = 8}, - [8899] = {.lex_state = 0, .external_lex_state = 8}, - [8900] = {.lex_state = 307, .external_lex_state = 8}, - [8901] = {.lex_state = 0, .external_lex_state = 8}, - [8902] = {.lex_state = 307, .external_lex_state = 8}, - [8903] = {.lex_state = 307, .external_lex_state = 8}, - [8904] = {.lex_state = 0, .external_lex_state = 8}, + [8893] = {.lex_state = 23, .external_lex_state = 8}, + [8894] = {.lex_state = 0, .external_lex_state = 8}, + [8895] = {.lex_state = 23, .external_lex_state = 8}, + [8896] = {.lex_state = 23, .external_lex_state = 8}, + [8897] = {.lex_state = 23, .external_lex_state = 8}, + [8898] = {.lex_state = 23, .external_lex_state = 8}, + [8899] = {.lex_state = 23, .external_lex_state = 8}, + [8900] = {.lex_state = 0, .external_lex_state = 8}, + [8901] = {.lex_state = 23, .external_lex_state = 8}, + [8902] = {.lex_state = 0, .external_lex_state = 8}, + [8903] = {.lex_state = 23, .external_lex_state = 8}, + [8904] = {.lex_state = 23, .external_lex_state = 8}, [8905] = {.lex_state = 0, .external_lex_state = 8}, [8906] = {.lex_state = 0, .external_lex_state = 8}, - [8907] = {.lex_state = 307, .external_lex_state = 8}, - [8908] = {.lex_state = 14, .external_lex_state = 8}, - [8909] = {.lex_state = 0, .external_lex_state = 8}, - [8910] = {.lex_state = 307, .external_lex_state = 8}, - [8911] = {.lex_state = 0, .external_lex_state = 8}, - [8912] = {.lex_state = 14, .external_lex_state = 8}, - [8913] = {.lex_state = 0, .external_lex_state = 8}, - [8914] = {.lex_state = 307, .external_lex_state = 8}, - [8915] = {.lex_state = 307, .external_lex_state = 8}, - [8916] = {.lex_state = 14, .external_lex_state = 8}, - [8917] = {.lex_state = 307, .external_lex_state = 8}, + [8907] = {.lex_state = 0, .external_lex_state = 8}, + [8908] = {.lex_state = 318, .external_lex_state = 8}, + [8909] = {.lex_state = 23, .external_lex_state = 8}, + [8910] = {.lex_state = 23, .external_lex_state = 8}, + [8911] = {.lex_state = 23, .external_lex_state = 8}, + [8912] = {.lex_state = 23, .external_lex_state = 8}, + [8913] = {.lex_state = 23, .external_lex_state = 8}, + [8914] = {.lex_state = 23, .external_lex_state = 8}, + [8915] = {.lex_state = 23, .external_lex_state = 8}, + [8916] = {.lex_state = 0, .external_lex_state = 8}, + [8917] = {.lex_state = 0, .external_lex_state = 8}, [8918] = {.lex_state = 0, .external_lex_state = 8}, - [8919] = {.lex_state = 307, .external_lex_state = 8}, - [8920] = {.lex_state = 0, .external_lex_state = 8}, - [8921] = {.lex_state = 14, .external_lex_state = 8}, - [8922] = {.lex_state = 14, .external_lex_state = 8}, - [8923] = {.lex_state = 307, .external_lex_state = 8}, + [8919] = {.lex_state = 0, .external_lex_state = 8}, + [8920] = {.lex_state = 23, .external_lex_state = 8}, + [8921] = {.lex_state = 23, .external_lex_state = 8}, + [8922] = {.lex_state = 23, .external_lex_state = 8}, + [8923] = {.lex_state = 0, .external_lex_state = 8}, [8924] = {.lex_state = 0, .external_lex_state = 8}, - [8925] = {.lex_state = 307, .external_lex_state = 8}, - [8926] = {.lex_state = 14, .external_lex_state = 8}, + [8925] = {.lex_state = 23, .external_lex_state = 8}, + [8926] = {.lex_state = 0, .external_lex_state = 8}, [8927] = {.lex_state = 0, .external_lex_state = 8}, - [8928] = {.lex_state = 307, .external_lex_state = 8}, + [8928] = {.lex_state = 0, .external_lex_state = 8}, [8929] = {.lex_state = 0, .external_lex_state = 8}, - [8930] = {.lex_state = 307, .external_lex_state = 8}, - [8931] = {.lex_state = 0, .external_lex_state = 8}, + [8930] = {.lex_state = 0, .external_lex_state = 8}, + [8931] = {.lex_state = 318, .external_lex_state = 8}, [8932] = {.lex_state = 0, .external_lex_state = 8}, - [8933] = {.lex_state = 307, .external_lex_state = 8}, - [8934] = {.lex_state = 14, .external_lex_state = 8}, - [8935] = {.lex_state = 307, .external_lex_state = 8}, - [8936] = {.lex_state = 0, .external_lex_state = 8}, - [8937] = {.lex_state = 307, .external_lex_state = 8}, - [8938] = {.lex_state = 307, .external_lex_state = 8}, - [8939] = {.lex_state = 0, .external_lex_state = 8}, - [8940] = {.lex_state = 307, .external_lex_state = 8}, - [8941] = {.lex_state = 14, .external_lex_state = 8}, - [8942] = {.lex_state = 0, .external_lex_state = 8}, - [8943] = {.lex_state = 14, .external_lex_state = 8}, - [8944] = {.lex_state = 307, .external_lex_state = 8}, - [8945] = {.lex_state = 307, .external_lex_state = 8}, - [8946] = {.lex_state = 307, .external_lex_state = 8}, - [8947] = {.lex_state = 307, .external_lex_state = 8}, + [8933] = {.lex_state = 318, .external_lex_state = 8}, + [8934] = {.lex_state = 0, .external_lex_state = 8}, + [8935] = {.lex_state = 0, .external_lex_state = 8}, + [8936] = {.lex_state = 318, .external_lex_state = 8}, + [8937] = {.lex_state = 0, .external_lex_state = 8}, + [8938] = {.lex_state = 0, .external_lex_state = 8}, + [8939] = {.lex_state = 23, .external_lex_state = 8}, + [8940] = {.lex_state = 318, .external_lex_state = 8}, + [8941] = {.lex_state = 23, .external_lex_state = 8}, + [8942] = {.lex_state = 318, .external_lex_state = 8}, + [8943] = {.lex_state = 0, .external_lex_state = 8}, + [8944] = {.lex_state = 318, .external_lex_state = 8}, + [8945] = {.lex_state = 0, .external_lex_state = 8}, + [8946] = {.lex_state = 318, .external_lex_state = 8}, + [8947] = {.lex_state = 23, .external_lex_state = 8}, [8948] = {.lex_state = 0, .external_lex_state = 8}, [8949] = {.lex_state = 0, .external_lex_state = 8}, - [8950] = {.lex_state = 14, .external_lex_state = 8}, - [8951] = {.lex_state = 0, .external_lex_state = 8}, - [8952] = {.lex_state = 14, .external_lex_state = 8}, - [8953] = {.lex_state = 14, .external_lex_state = 8}, - [8954] = {.lex_state = 14, .external_lex_state = 8}, + [8950] = {.lex_state = 23, .external_lex_state = 8}, + [8951] = {.lex_state = 23, .external_lex_state = 8}, + [8952] = {.lex_state = 318, .external_lex_state = 8}, + [8953] = {.lex_state = 0, .external_lex_state = 8}, + [8954] = {.lex_state = 318, .external_lex_state = 8}, [8955] = {.lex_state = 0, .external_lex_state = 8}, - [8956] = {.lex_state = 14, .external_lex_state = 8}, + [8956] = {.lex_state = 0, .external_lex_state = 8}, [8957] = {.lex_state = 0, .external_lex_state = 8}, - [8958] = {.lex_state = 0, .external_lex_state = 8}, + [8958] = {.lex_state = 318, .external_lex_state = 8}, [8959] = {.lex_state = 0, .external_lex_state = 8}, - [8960] = {.lex_state = 0, .external_lex_state = 8}, + [8960] = {.lex_state = 318, .external_lex_state = 8}, [8961] = {.lex_state = 0, .external_lex_state = 8}, [8962] = {.lex_state = 0, .external_lex_state = 8}, [8963] = {.lex_state = 0, .external_lex_state = 8}, [8964] = {.lex_state = 0, .external_lex_state = 8}, - [8965] = {.lex_state = 0, .external_lex_state = 8}, + [8965] = {.lex_state = 318, .external_lex_state = 8}, [8966] = {.lex_state = 0, .external_lex_state = 8}, [8967] = {.lex_state = 0, .external_lex_state = 8}, - [8968] = {.lex_state = 0, .external_lex_state = 9}, - [8969] = {.lex_state = 0, .external_lex_state = 8}, - [8970] = {.lex_state = 0, .external_lex_state = 9}, - [8971] = {.lex_state = 0, .external_lex_state = 8}, + [8968] = {.lex_state = 0, .external_lex_state = 8}, + [8969] = {.lex_state = 318, .external_lex_state = 8}, + [8970] = {.lex_state = 318, .external_lex_state = 8}, + [8971] = {.lex_state = 318, .external_lex_state = 8}, [8972] = {.lex_state = 0, .external_lex_state = 8}, - [8973] = {.lex_state = 307, .external_lex_state = 8}, - [8974] = {.lex_state = 0, .external_lex_state = 9}, - [8975] = {.lex_state = 0, .external_lex_state = 8}, - [8976] = {.lex_state = 0, .external_lex_state = 8}, - [8977] = {.lex_state = 0, .external_lex_state = 8}, - [8978] = {.lex_state = 307, .external_lex_state = 8}, + [8973] = {.lex_state = 0, .external_lex_state = 8}, + [8974] = {.lex_state = 0, .external_lex_state = 8}, + [8975] = {.lex_state = 318, .external_lex_state = 8}, + [8976] = {.lex_state = 318, .external_lex_state = 8}, + [8977] = {.lex_state = 318, .external_lex_state = 8}, + [8978] = {.lex_state = 318, .external_lex_state = 8}, [8979] = {.lex_state = 0, .external_lex_state = 8}, - [8980] = {.lex_state = 0, .external_lex_state = 8}, + [8980] = {.lex_state = 318, .external_lex_state = 8}, [8981] = {.lex_state = 0, .external_lex_state = 8}, [8982] = {.lex_state = 0, .external_lex_state = 8}, - [8983] = {.lex_state = 0, .external_lex_state = 8}, + [8983] = {.lex_state = 318, .external_lex_state = 8}, [8984] = {.lex_state = 0, .external_lex_state = 8}, - [8985] = {.lex_state = 307, .external_lex_state = 8}, - [8986] = {.lex_state = 0, .external_lex_state = 8}, + [8985] = {.lex_state = 0, .external_lex_state = 8}, + [8986] = {.lex_state = 23, .external_lex_state = 8}, [8987] = {.lex_state = 0, .external_lex_state = 8}, [8988] = {.lex_state = 0, .external_lex_state = 8}, - [8989] = {.lex_state = 0, .external_lex_state = 8}, - [8990] = {.lex_state = 0, .external_lex_state = 8}, - [8991] = {.lex_state = 0, .external_lex_state = 9}, - [8992] = {.lex_state = 14, .external_lex_state = 8}, + [8989] = {.lex_state = 318, .external_lex_state = 8}, + [8990] = {.lex_state = 318, .external_lex_state = 8}, + [8991] = {.lex_state = 0, .external_lex_state = 8}, + [8992] = {.lex_state = 318, .external_lex_state = 8}, [8993] = {.lex_state = 0, .external_lex_state = 8}, - [8994] = {.lex_state = 307, .external_lex_state = 8}, + [8994] = {.lex_state = 0, .external_lex_state = 8}, [8995] = {.lex_state = 0, .external_lex_state = 8}, [8996] = {.lex_state = 0, .external_lex_state = 8}, - [8997] = {.lex_state = 307, .external_lex_state = 8}, - [8998] = {.lex_state = 14, .external_lex_state = 8}, - [8999] = {.lex_state = 0, .external_lex_state = 8}, - [9000] = {.lex_state = 14, .external_lex_state = 8}, - [9001] = {.lex_state = 0, .external_lex_state = 8}, - [9002] = {.lex_state = 14, .external_lex_state = 8}, + [8997] = {.lex_state = 318, .external_lex_state = 8}, + [8998] = {.lex_state = 0, .external_lex_state = 8}, + [8999] = {.lex_state = 318, .external_lex_state = 8}, + [9000] = {.lex_state = 23, .external_lex_state = 8}, + [9001] = {.lex_state = 318, .external_lex_state = 8}, + [9002] = {.lex_state = 0, .external_lex_state = 8}, [9003] = {.lex_state = 0, .external_lex_state = 8}, - [9004] = {.lex_state = 0, .external_lex_state = 8}, - [9005] = {.lex_state = 14, .external_lex_state = 8}, - [9006] = {.lex_state = 14, .external_lex_state = 8}, - [9007] = {.lex_state = 14, .external_lex_state = 8}, + [9004] = {.lex_state = 318, .external_lex_state = 8}, + [9005] = {.lex_state = 0, .external_lex_state = 8}, + [9006] = {.lex_state = 0, .external_lex_state = 8}, + [9007] = {.lex_state = 23, .external_lex_state = 8}, [9008] = {.lex_state = 0, .external_lex_state = 8}, [9009] = {.lex_state = 0, .external_lex_state = 8}, - [9010] = {.lex_state = 0, .external_lex_state = 8}, - [9011] = {.lex_state = 14, .external_lex_state = 8}, - [9012] = {.lex_state = 14, .external_lex_state = 8}, - [9013] = {.lex_state = 14, .external_lex_state = 8}, + [9010] = {.lex_state = 318, .external_lex_state = 8}, + [9011] = {.lex_state = 0, .external_lex_state = 8}, + [9012] = {.lex_state = 0, .external_lex_state = 8}, + [9013] = {.lex_state = 318, .external_lex_state = 8}, [9014] = {.lex_state = 0, .external_lex_state = 8}, - [9015] = {.lex_state = 0, .external_lex_state = 8}, - [9016] = {.lex_state = 0, .external_lex_state = 8}, - [9017] = {.lex_state = 0, .external_lex_state = 8}, + [9015] = {.lex_state = 318, .external_lex_state = 8}, + [9016] = {.lex_state = 23, .external_lex_state = 8}, + [9017] = {.lex_state = 23, .external_lex_state = 8}, [9018] = {.lex_state = 0, .external_lex_state = 8}, - [9019] = {.lex_state = 0, .external_lex_state = 8}, + [9019] = {.lex_state = 23, .external_lex_state = 8}, [9020] = {.lex_state = 0, .external_lex_state = 8}, - [9021] = {.lex_state = 0, .external_lex_state = 9}, - [9022] = {.lex_state = 0, .external_lex_state = 9}, + [9021] = {.lex_state = 0, .external_lex_state = 8}, + [9022] = {.lex_state = 0, .external_lex_state = 8}, [9023] = {.lex_state = 0, .external_lex_state = 8}, - [9024] = {.lex_state = 0, .external_lex_state = 8}, - [9025] = {.lex_state = 307, .external_lex_state = 8}, - [9026] = {.lex_state = 307, .external_lex_state = 8}, - [9027] = {.lex_state = 0, .external_lex_state = 8}, + [9024] = {.lex_state = 318, .external_lex_state = 8}, + [9025] = {.lex_state = 0, .external_lex_state = 8}, + [9026] = {.lex_state = 0, .external_lex_state = 8}, + [9027] = {.lex_state = 318, .external_lex_state = 8}, [9028] = {.lex_state = 0, .external_lex_state = 8}, - [9029] = {.lex_state = 0, .external_lex_state = 9}, + [9029] = {.lex_state = 23, .external_lex_state = 8}, [9030] = {.lex_state = 0, .external_lex_state = 8}, - [9031] = {.lex_state = 0, .external_lex_state = 8}, + [9031] = {.lex_state = 23, .external_lex_state = 8}, [9032] = {.lex_state = 0, .external_lex_state = 8}, - [9033] = {.lex_state = 0, .external_lex_state = 9}, + [9033] = {.lex_state = 0, .external_lex_state = 8}, [9034] = {.lex_state = 0, .external_lex_state = 8}, - [9035] = {.lex_state = 0, .external_lex_state = 8}, - [9036] = {.lex_state = 14, .external_lex_state = 8}, - [9037] = {.lex_state = 0, .external_lex_state = 8}, - [9038] = {.lex_state = 14, .external_lex_state = 8}, - [9039] = {.lex_state = 0, .external_lex_state = 8}, - [9040] = {.lex_state = 0, .external_lex_state = 8}, - [9041] = {.lex_state = 0, .external_lex_state = 9}, + [9035] = {.lex_state = 318, .external_lex_state = 8}, + [9036] = {.lex_state = 0, .external_lex_state = 8}, + [9037] = {.lex_state = 23, .external_lex_state = 8}, + [9038] = {.lex_state = 23, .external_lex_state = 8}, + [9039] = {.lex_state = 23, .external_lex_state = 8}, + [9040] = {.lex_state = 318, .external_lex_state = 8}, + [9041] = {.lex_state = 318, .external_lex_state = 8}, [9042] = {.lex_state = 0, .external_lex_state = 8}, - [9043] = {.lex_state = 0, .external_lex_state = 8}, - [9044] = {.lex_state = 14, .external_lex_state = 8}, + [9043] = {.lex_state = 23, .external_lex_state = 8}, + [9044] = {.lex_state = 23, .external_lex_state = 8}, [9045] = {.lex_state = 0, .external_lex_state = 8}, - [9046] = {.lex_state = 14, .external_lex_state = 8}, - [9047] = {.lex_state = 0, .external_lex_state = 9}, - [9048] = {.lex_state = 0, .external_lex_state = 9}, - [9049] = {.lex_state = 0, .external_lex_state = 9}, - [9050] = {.lex_state = 14, .external_lex_state = 8}, - [9051] = {.lex_state = 21, .external_lex_state = 8}, - [9052] = {.lex_state = 0, .external_lex_state = 8}, - [9053] = {.lex_state = 14, .external_lex_state = 8}, + [9046] = {.lex_state = 0, .external_lex_state = 8}, + [9047] = {.lex_state = 0, .external_lex_state = 8}, + [9048] = {.lex_state = 0, .external_lex_state = 8}, + [9049] = {.lex_state = 318, .external_lex_state = 8}, + [9050] = {.lex_state = 23, .external_lex_state = 8}, + [9051] = {.lex_state = 23, .external_lex_state = 8}, + [9052] = {.lex_state = 23, .external_lex_state = 8}, + [9053] = {.lex_state = 0, .external_lex_state = 8}, [9054] = {.lex_state = 0, .external_lex_state = 8}, - [9055] = {.lex_state = 21, .external_lex_state = 8}, - [9056] = {.lex_state = 307, .external_lex_state = 8}, - [9057] = {.lex_state = 0, .external_lex_state = 9}, + [9055] = {.lex_state = 318, .external_lex_state = 8}, + [9056] = {.lex_state = 0, .external_lex_state = 8}, + [9057] = {.lex_state = 0, .external_lex_state = 8}, [9058] = {.lex_state = 0, .external_lex_state = 8}, - [9059] = {.lex_state = 21, .external_lex_state = 8}, - [9060] = {.lex_state = 0, .external_lex_state = 9}, - [9061] = {.lex_state = 0, .external_lex_state = 9}, - [9062] = {.lex_state = 0, .external_lex_state = 9}, - [9063] = {.lex_state = 0, .external_lex_state = 9}, - [9064] = {.lex_state = 0, .external_lex_state = 8}, - [9065] = {.lex_state = 21, .external_lex_state = 8}, - [9066] = {.lex_state = 0, .external_lex_state = 8}, + [9059] = {.lex_state = 0, .external_lex_state = 8}, + [9060] = {.lex_state = 0, .external_lex_state = 8}, + [9061] = {.lex_state = 318, .external_lex_state = 8}, + [9062] = {.lex_state = 0, .external_lex_state = 8}, + [9063] = {.lex_state = 0, .external_lex_state = 8}, + [9064] = {.lex_state = 23, .external_lex_state = 8}, + [9065] = {.lex_state = 0, .external_lex_state = 8}, + [9066] = {.lex_state = 318, .external_lex_state = 8}, [9067] = {.lex_state = 0, .external_lex_state = 8}, [9068] = {.lex_state = 0, .external_lex_state = 8}, - [9069] = {.lex_state = 14, .external_lex_state = 8}, - [9070] = {.lex_state = 0, .external_lex_state = 8}, - [9071] = {.lex_state = 0, .external_lex_state = 9}, - [9072] = {.lex_state = 0, .external_lex_state = 9}, - [9073] = {.lex_state = 14, .external_lex_state = 8}, - [9074] = {.lex_state = 21, .external_lex_state = 8}, + [9069] = {.lex_state = 0, .external_lex_state = 9}, + [9070] = {.lex_state = 0, .external_lex_state = 9}, + [9071] = {.lex_state = 0, .external_lex_state = 8}, + [9072] = {.lex_state = 0, .external_lex_state = 8}, + [9073] = {.lex_state = 0, .external_lex_state = 9}, + [9074] = {.lex_state = 318, .external_lex_state = 8}, [9075] = {.lex_state = 0, .external_lex_state = 8}, [9076] = {.lex_state = 0, .external_lex_state = 8}, - [9077] = {.lex_state = 14, .external_lex_state = 8}, + [9077] = {.lex_state = 0, .external_lex_state = 8}, [9078] = {.lex_state = 0, .external_lex_state = 8}, - [9079] = {.lex_state = 0, .external_lex_state = 9}, - [9080] = {.lex_state = 0, .external_lex_state = 8}, + [9079] = {.lex_state = 318, .external_lex_state = 8}, + [9080] = {.lex_state = 318, .external_lex_state = 8}, [9081] = {.lex_state = 0, .external_lex_state = 8}, - [9082] = {.lex_state = 307, .external_lex_state = 8}, - [9083] = {.lex_state = 0, .external_lex_state = 9}, + [9082] = {.lex_state = 0, .external_lex_state = 8}, + [9083] = {.lex_state = 318, .external_lex_state = 8}, [9084] = {.lex_state = 0, .external_lex_state = 8}, - [9085] = {.lex_state = 21, .external_lex_state = 8}, + [9085] = {.lex_state = 0, .external_lex_state = 8}, [9086] = {.lex_state = 0, .external_lex_state = 8}, [9087] = {.lex_state = 0, .external_lex_state = 8}, - [9088] = {.lex_state = 21, .external_lex_state = 8}, - [9089] = {.lex_state = 0, .external_lex_state = 8}, - [9090] = {.lex_state = 0, .external_lex_state = 9}, - [9091] = {.lex_state = 0, .external_lex_state = 9}, - [9092] = {.lex_state = 0, .external_lex_state = 9}, - [9093] = {.lex_state = 0, .external_lex_state = 9}, + [9088] = {.lex_state = 0, .external_lex_state = 9}, + [9089] = {.lex_state = 318, .external_lex_state = 8}, + [9090] = {.lex_state = 0, .external_lex_state = 8}, + [9091] = {.lex_state = 0, .external_lex_state = 8}, + [9092] = {.lex_state = 0, .external_lex_state = 8}, + [9093] = {.lex_state = 0, .external_lex_state = 8}, [9094] = {.lex_state = 0, .external_lex_state = 8}, - [9095] = {.lex_state = 21, .external_lex_state = 8}, + [9095] = {.lex_state = 318, .external_lex_state = 8}, [9096] = {.lex_state = 0, .external_lex_state = 8}, [9097] = {.lex_state = 0, .external_lex_state = 8}, - [9098] = {.lex_state = 0, .external_lex_state = 8}, + [9098] = {.lex_state = 0, .external_lex_state = 9}, [9099] = {.lex_state = 0, .external_lex_state = 8}, - [9100] = {.lex_state = 21, .external_lex_state = 8}, + [9100] = {.lex_state = 0, .external_lex_state = 8}, [9101] = {.lex_state = 0, .external_lex_state = 9}, [9102] = {.lex_state = 0, .external_lex_state = 8}, [9103] = {.lex_state = 0, .external_lex_state = 8}, [9104] = {.lex_state = 0, .external_lex_state = 8}, - [9105] = {.lex_state = 0, .external_lex_state = 9}, - [9106] = {.lex_state = 0, .external_lex_state = 9}, - [9107] = {.lex_state = 0, .external_lex_state = 8}, + [9105] = {.lex_state = 0, .external_lex_state = 8}, + [9106] = {.lex_state = 0, .external_lex_state = 8}, + [9107] = {.lex_state = 30, .external_lex_state = 8}, [9108] = {.lex_state = 0, .external_lex_state = 8}, - [9109] = {.lex_state = 14, .external_lex_state = 8}, + [9109] = {.lex_state = 30, .external_lex_state = 8}, [9110] = {.lex_state = 0, .external_lex_state = 9}, [9111] = {.lex_state = 0, .external_lex_state = 8}, - [9112] = {.lex_state = 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}, + [9112] = {.lex_state = 318, .external_lex_state = 8}, + [9113] = {.lex_state = 0, .external_lex_state = 9}, + [9114] = {.lex_state = 0, .external_lex_state = 9}, + [9115] = {.lex_state = 0, .external_lex_state = 9}, [9116] = {.lex_state = 0, .external_lex_state = 8}, - [9117] = {.lex_state = 0, .external_lex_state = 8}, + [9117] = {.lex_state = 30, .external_lex_state = 8}, [9118] = {.lex_state = 0, .external_lex_state = 8}, [9119] = {.lex_state = 0, .external_lex_state = 9}, - [9120] = {.lex_state = 0, .external_lex_state = 9}, - [9121] = {.lex_state = 0, .external_lex_state = 9}, + [9120] = {.lex_state = 23, .external_lex_state = 8}, + [9121] = {.lex_state = 23, .external_lex_state = 8}, [9122] = {.lex_state = 0, .external_lex_state = 8}, - [9123] = {.lex_state = 0, .external_lex_state = 8}, - [9124] = {.lex_state = 0, .external_lex_state = 8}, - [9125] = {.lex_state = 0, .external_lex_state = 9}, - [9126] = {.lex_state = 0, .external_lex_state = 9}, + [9123] = {.lex_state = 0, .external_lex_state = 9}, + [9124] = {.lex_state = 23, .external_lex_state = 8}, + [9125] = {.lex_state = 0, .external_lex_state = 8}, + [9126] = {.lex_state = 23, .external_lex_state = 8}, [9127] = {.lex_state = 0, .external_lex_state = 8}, - [9128] = {.lex_state = 21, .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 = 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}, + [9130] = {.lex_state = 23, .external_lex_state = 8}, + [9131] = {.lex_state = 0, .external_lex_state = 9}, + [9132] = {.lex_state = 23, .external_lex_state = 8}, + [9133] = {.lex_state = 0, .external_lex_state = 9}, + [9134] = {.lex_state = 0, .external_lex_state = 9}, + [9135] = {.lex_state = 0, .external_lex_state = 9}, + [9136] = {.lex_state = 0, .external_lex_state = 9}, + [9137] = {.lex_state = 30, .external_lex_state = 8}, [9138] = {.lex_state = 0, .external_lex_state = 8}, [9139] = {.lex_state = 0, .external_lex_state = 8}, [9140] = {.lex_state = 0, .external_lex_state = 8}, [9141] = {.lex_state = 0, .external_lex_state = 8}, [9142] = {.lex_state = 0, .external_lex_state = 8}, [9143] = {.lex_state = 0, .external_lex_state = 8}, - [9144] = {.lex_state = 0, .external_lex_state = 8}, - [9145] = {.lex_state = 21, .external_lex_state = 8}, - [9146] = {.lex_state = 0, .external_lex_state = 8}, - [9147] = {.lex_state = 0, .external_lex_state = 8}, - [9148] = {.lex_state = 0, .external_lex_state = 9}, + [9144] = {.lex_state = 0, .external_lex_state = 9}, + [9145] = {.lex_state = 0, .external_lex_state = 8}, + [9146] = {.lex_state = 0, .external_lex_state = 9}, + [9147] = {.lex_state = 0, .external_lex_state = 9}, + [9148] = {.lex_state = 0, .external_lex_state = 8}, [9149] = {.lex_state = 0, .external_lex_state = 9}, [9150] = {.lex_state = 0, .external_lex_state = 9}, - [9151] = {.lex_state = 0, .external_lex_state = 9}, - [9152] = {.lex_state = 0, .external_lex_state = 8}, + [9151] = {.lex_state = 23, .external_lex_state = 8}, + [9152] = {.lex_state = 0, .external_lex_state = 9}, [9153] = {.lex_state = 0, .external_lex_state = 8}, - [9154] = {.lex_state = 0, .external_lex_state = 8}, - [9155] = {.lex_state = 0, .external_lex_state = 8}, - [9156] = {.lex_state = 21, .external_lex_state = 8}, - [9157] = {.lex_state = 0, .external_lex_state = 8}, + [9154] = {.lex_state = 0, .external_lex_state = 9}, + [9155] = {.lex_state = 23, .external_lex_state = 8}, + [9156] = {.lex_state = 0, .external_lex_state = 9}, + [9157] = {.lex_state = 0, .external_lex_state = 9}, [9158] = {.lex_state = 0, .external_lex_state = 8}, - [9159] = {.lex_state = 0, .external_lex_state = 8}, - [9160] = {.lex_state = 0, .external_lex_state = 8}, - [9161] = {.lex_state = 0, .external_lex_state = 8}, - [9162] = {.lex_state = 0, .external_lex_state = 9}, - [9163] = {.lex_state = 0, .external_lex_state = 8}, - [9164] = {.lex_state = 0, .external_lex_state = 8}, - [9165] = {.lex_state = 0, .external_lex_state = 9}, + [9159] = {.lex_state = 0, .external_lex_state = 9}, + [9160] = {.lex_state = 0, .external_lex_state = 9}, + [9161] = {.lex_state = 0, .external_lex_state = 9}, + [9162] = {.lex_state = 23, .external_lex_state = 8}, + [9163] = {.lex_state = 0, .external_lex_state = 9}, + [9164] = {.lex_state = 23, .external_lex_state = 8}, + [9165] = {.lex_state = 0, .external_lex_state = 8}, [9166] = {.lex_state = 0, .external_lex_state = 8}, - [9167] = {.lex_state = 0, .external_lex_state = 9}, - [9168] = {.lex_state = 0, .external_lex_state = 8}, + [9167] = {.lex_state = 0, .external_lex_state = 8}, + [9168] = {.lex_state = 0, .external_lex_state = 9}, [9169] = {.lex_state = 0, .external_lex_state = 8}, - [9170] = {.lex_state = 0, .external_lex_state = 9}, - [9171] = {.lex_state = 0, .external_lex_state = 9}, - [9172] = {.lex_state = 14, .external_lex_state = 11}, + [9170] = {.lex_state = 30, .external_lex_state = 8}, + [9171] = {.lex_state = 0, .external_lex_state = 8}, + [9172] = {.lex_state = 0, .external_lex_state = 8}, [9173] = {.lex_state = 0, .external_lex_state = 8}, - [9174] = {.lex_state = 0, .external_lex_state = 8}, - [9175] = {.lex_state = 21, .external_lex_state = 8}, + [9174] = {.lex_state = 0, .external_lex_state = 9}, + [9175] = {.lex_state = 0, .external_lex_state = 9}, [9176] = {.lex_state = 0, .external_lex_state = 9}, - [9177] = {.lex_state = 0, .external_lex_state = 8}, + [9177] = {.lex_state = 0, .external_lex_state = 9}, [9178] = {.lex_state = 0, .external_lex_state = 8}, - [9179] = {.lex_state = 21, .external_lex_state = 8}, + [9179] = {.lex_state = 0, .external_lex_state = 8}, [9180] = {.lex_state = 0, .external_lex_state = 8}, [9181] = {.lex_state = 0, .external_lex_state = 8}, [9182] = {.lex_state = 0, .external_lex_state = 8}, [9183] = {.lex_state = 0, .external_lex_state = 8}, [9184] = {.lex_state = 0, .external_lex_state = 8}, - [9185] = {.lex_state = 0, .external_lex_state = 9}, - [9186] = {.lex_state = 0, .external_lex_state = 9}, - [9187] = {.lex_state = 0, .external_lex_state = 9}, + [9185] = {.lex_state = 30, .external_lex_state = 8}, + [9186] = {.lex_state = 0, .external_lex_state = 8}, + [9187] = {.lex_state = 0, .external_lex_state = 8}, [9188] = {.lex_state = 0, .external_lex_state = 8}, - [9189] = {.lex_state = 21, .external_lex_state = 8}, - [9190] = {.lex_state = 0, .external_lex_state = 8}, - [9191] = {.lex_state = 21, .external_lex_state = 8}, + [9189] = {.lex_state = 23, .external_lex_state = 8}, + [9190] = {.lex_state = 23, .external_lex_state = 8}, + [9191] = {.lex_state = 0, .external_lex_state = 8}, [9192] = {.lex_state = 0, .external_lex_state = 8}, [9193] = {.lex_state = 0, .external_lex_state = 8}, - [9194] = {.lex_state = 0, .external_lex_state = 9}, - [9195] = {.lex_state = 0, .external_lex_state = 9}, + [9194] = {.lex_state = 30, .external_lex_state = 8}, + [9195] = {.lex_state = 0, .external_lex_state = 8}, [9196] = {.lex_state = 0, .external_lex_state = 8}, [9197] = {.lex_state = 0, .external_lex_state = 8}, [9198] = {.lex_state = 0, .external_lex_state = 8}, @@ -31996,19 +32742,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9200] = {.lex_state = 0, .external_lex_state = 8}, [9201] = {.lex_state = 0, .external_lex_state = 8}, [9202] = {.lex_state = 0, .external_lex_state = 8}, - [9203] = {.lex_state = 21, .external_lex_state = 8}, + [9203] = {.lex_state = 0, .external_lex_state = 8}, [9204] = {.lex_state = 0, .external_lex_state = 8}, - [9205] = {.lex_state = 0, .external_lex_state = 9}, - [9206] = {.lex_state = 0, .external_lex_state = 9}, - [9207] = {.lex_state = 0, .external_lex_state = 9}, - [9208] = {.lex_state = 307, .external_lex_state = 8}, + [9205] = {.lex_state = 23, .external_lex_state = 8}, + [9206] = {.lex_state = 23, .external_lex_state = 8}, + [9207] = {.lex_state = 23, .external_lex_state = 8}, + [9208] = {.lex_state = 0, .external_lex_state = 8}, [9209] = {.lex_state = 0, .external_lex_state = 8}, [9210] = {.lex_state = 0, .external_lex_state = 8}, [9211] = {.lex_state = 0, .external_lex_state = 8}, - [9212] = {.lex_state = 0, .external_lex_state = 9}, + [9212] = {.lex_state = 0, .external_lex_state = 8}, [9213] = {.lex_state = 0, .external_lex_state = 8}, - [9214] = {.lex_state = 0, .external_lex_state = 9}, - [9215] = {.lex_state = 0, .external_lex_state = 8}, + [9214] = {.lex_state = 0, .external_lex_state = 8}, + [9215] = {.lex_state = 30, .external_lex_state = 8}, [9216] = {.lex_state = 0, .external_lex_state = 8}, [9217] = {.lex_state = 0, .external_lex_state = 8}, [9218] = {.lex_state = 0, .external_lex_state = 8}, @@ -32018,105 +32764,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9222] = {.lex_state = 0, .external_lex_state = 8}, [9223] = {.lex_state = 0, .external_lex_state = 8}, [9224] = {.lex_state = 0, .external_lex_state = 8}, - [9225] = {.lex_state = 0, .external_lex_state = 9}, + [9225] = {.lex_state = 0, .external_lex_state = 8}, [9226] = {.lex_state = 0, .external_lex_state = 8}, [9227] = {.lex_state = 0, .external_lex_state = 8}, [9228] = {.lex_state = 0, .external_lex_state = 8}, [9229] = {.lex_state = 0, .external_lex_state = 8}, - [9230] = {.lex_state = 0, .external_lex_state = 8}, + [9230] = {.lex_state = 30, .external_lex_state = 8}, [9231] = {.lex_state = 0, .external_lex_state = 8}, - [9232] = {.lex_state = 0, .external_lex_state = 9}, + [9232] = {.lex_state = 0, .external_lex_state = 8}, [9233] = {.lex_state = 0, .external_lex_state = 8}, [9234] = {.lex_state = 0, .external_lex_state = 8}, [9235] = {.lex_state = 0, .external_lex_state = 8}, [9236] = {.lex_state = 0, .external_lex_state = 8}, [9237] = {.lex_state = 0, .external_lex_state = 8}, [9238] = {.lex_state = 0, .external_lex_state = 8}, - [9239] = {.lex_state = 0, .external_lex_state = 9}, + [9239] = {.lex_state = 0, .external_lex_state = 8}, [9240] = {.lex_state = 0, .external_lex_state = 8}, - [9241] = {.lex_state = 0, .external_lex_state = 8}, + [9241] = {.lex_state = 0, .external_lex_state = 9}, [9242] = {.lex_state = 0, .external_lex_state = 8}, - [9243] = {.lex_state = 0, .external_lex_state = 8}, - [9244] = {.lex_state = 0, .external_lex_state = 8}, + [9243] = {.lex_state = 0, .external_lex_state = 9}, + [9244] = {.lex_state = 0, .external_lex_state = 9}, [9245] = {.lex_state = 0, .external_lex_state = 8}, - [9246] = {.lex_state = 0, .external_lex_state = 8}, - [9247] = {.lex_state = 0, .external_lex_state = 9}, - [9248] = {.lex_state = 21, .external_lex_state = 8}, - [9249] = {.lex_state = 0, .external_lex_state = 8}, + [9246] = {.lex_state = 0, .external_lex_state = 9}, + [9247] = {.lex_state = 0, .external_lex_state = 8}, + [9248] = {.lex_state = 0, .external_lex_state = 9}, + [9249] = {.lex_state = 30, .external_lex_state = 8}, [9250] = {.lex_state = 0, .external_lex_state = 8}, [9251] = {.lex_state = 0, .external_lex_state = 8}, [9252] = {.lex_state = 0, .external_lex_state = 8}, [9253] = {.lex_state = 0, .external_lex_state = 8}, [9254] = {.lex_state = 0, .external_lex_state = 8}, [9255] = {.lex_state = 0, .external_lex_state = 8}, - [9256] = {.lex_state = 0, .external_lex_state = 8}, - [9257] = {.lex_state = 0, .external_lex_state = 9}, - [9258] = {.lex_state = 0, .external_lex_state = 8}, + [9256] = {.lex_state = 0, .external_lex_state = 9}, + [9257] = {.lex_state = 30, .external_lex_state = 8}, + [9258] = {.lex_state = 0, .external_lex_state = 9}, [9259] = {.lex_state = 0, .external_lex_state = 8}, - [9260] = {.lex_state = 0, .external_lex_state = 8}, + [9260] = {.lex_state = 0, .external_lex_state = 9}, [9261] = {.lex_state = 0, .external_lex_state = 8}, [9262] = {.lex_state = 0, .external_lex_state = 8}, - [9263] = {.lex_state = 0, .external_lex_state = 8}, - [9264] = {.lex_state = 0, .external_lex_state = 8}, - [9265] = {.lex_state = 0, .external_lex_state = 8}, + [9263] = {.lex_state = 23, .external_lex_state = 11}, + [9264] = {.lex_state = 318, .external_lex_state = 8}, + [9265] = {.lex_state = 0, .external_lex_state = 9}, [9266] = {.lex_state = 0, .external_lex_state = 8}, [9267] = {.lex_state = 0, .external_lex_state = 8}, [9268] = {.lex_state = 0, .external_lex_state = 8}, [9269] = {.lex_state = 0, .external_lex_state = 8}, [9270] = {.lex_state = 0, .external_lex_state = 8}, - [9271] = {.lex_state = 0, .external_lex_state = 8}, - [9272] = {.lex_state = 21, .external_lex_state = 8}, + [9271] = {.lex_state = 30, .external_lex_state = 8}, + [9272] = {.lex_state = 0, .external_lex_state = 9}, [9273] = {.lex_state = 0, .external_lex_state = 8}, - [9274] = {.lex_state = 0, .external_lex_state = 8}, + [9274] = {.lex_state = 0, .external_lex_state = 9}, [9275] = {.lex_state = 0, .external_lex_state = 8}, - [9276] = {.lex_state = 0, .external_lex_state = 8}, - [9277] = {.lex_state = 307, .external_lex_state = 8}, - [9278] = {.lex_state = 0, .external_lex_state = 8}, - [9279] = {.lex_state = 0, .external_lex_state = 8}, + [9276] = {.lex_state = 0, .external_lex_state = 9}, + [9277] = {.lex_state = 0, .external_lex_state = 8}, + [9278] = {.lex_state = 0, .external_lex_state = 9}, + [9279] = {.lex_state = 0, .external_lex_state = 9}, [9280] = {.lex_state = 0, .external_lex_state = 8}, - [9281] = {.lex_state = 0, .external_lex_state = 9}, - [9282] = {.lex_state = 21, .external_lex_state = 8}, + [9281] = {.lex_state = 0, .external_lex_state = 8}, + [9282] = {.lex_state = 30, .external_lex_state = 8}, [9283] = {.lex_state = 0, .external_lex_state = 8}, - [9284] = {.lex_state = 21, .external_lex_state = 8}, + [9284] = {.lex_state = 0, .external_lex_state = 8}, [9285] = {.lex_state = 0, .external_lex_state = 8}, [9286] = {.lex_state = 0, .external_lex_state = 8}, - [9287] = {.lex_state = 0, .external_lex_state = 9}, + [9287] = {.lex_state = 0, .external_lex_state = 8}, [9288] = {.lex_state = 0, .external_lex_state = 8}, [9289] = {.lex_state = 0, .external_lex_state = 8}, [9290] = {.lex_state = 0, .external_lex_state = 8}, - [9291] = {.lex_state = 0, .external_lex_state = 8}, + [9291] = {.lex_state = 0, .external_lex_state = 9}, [9292] = {.lex_state = 0, .external_lex_state = 8}, [9293] = {.lex_state = 0, .external_lex_state = 8}, - [9294] = {.lex_state = 0, .external_lex_state = 8}, + [9294] = {.lex_state = 0, .external_lex_state = 9}, [9295] = {.lex_state = 0, .external_lex_state = 8}, - [9296] = {.lex_state = 0, .external_lex_state = 8}, + [9296] = {.lex_state = 0, .external_lex_state = 9}, [9297] = {.lex_state = 0, .external_lex_state = 9}, [9298] = {.lex_state = 0, .external_lex_state = 8}, [9299] = {.lex_state = 0, .external_lex_state = 8}, - [9300] = {.lex_state = 21, .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}, + [9300] = {.lex_state = 0, .external_lex_state = 8}, + [9301] = {.lex_state = 0, .external_lex_state = 8}, + [9302] = {.lex_state = 30, .external_lex_state = 8}, + [9303] = {.lex_state = 0, .external_lex_state = 9}, [9304] = {.lex_state = 0, .external_lex_state = 8}, - [9305] = {.lex_state = 0, .external_lex_state = 9}, + [9305] = {.lex_state = 0, .external_lex_state = 8}, [9306] = {.lex_state = 0, .external_lex_state = 8}, [9307] = {.lex_state = 0, .external_lex_state = 8}, - [9308] = {.lex_state = 0, .external_lex_state = 9}, - [9309] = {.lex_state = 0, .external_lex_state = 9}, - [9310] = {.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 = 30, .external_lex_state = 8}, [9311] = {.lex_state = 0, .external_lex_state = 9}, [9312] = {.lex_state = 0, .external_lex_state = 8}, - [9313] = {.lex_state = 0, .external_lex_state = 9}, + [9313] = {.lex_state = 0, .external_lex_state = 8}, [9314] = {.lex_state = 0, .external_lex_state = 8}, [9315] = {.lex_state = 0, .external_lex_state = 8}, [9316] = {.lex_state = 0, .external_lex_state = 8}, - [9317] = {.lex_state = 0, .external_lex_state = 9}, + [9317] = {.lex_state = 0, .external_lex_state = 8}, [9318] = {.lex_state = 0, .external_lex_state = 8}, [9319] = {.lex_state = 0, .external_lex_state = 8}, [9320] = {.lex_state = 0, .external_lex_state = 8}, - [9321] = {.lex_state = 14, .external_lex_state = 11}, - [9322] = {.lex_state = 0, .external_lex_state = 9}, - [9323] = {.lex_state = 21, .external_lex_state = 8}, + [9321] = {.lex_state = 0, .external_lex_state = 8}, + [9322] = {.lex_state = 30, .external_lex_state = 8}, + [9323] = {.lex_state = 0, .external_lex_state = 8}, [9324] = {.lex_state = 0, .external_lex_state = 8}, [9325] = {.lex_state = 0, .external_lex_state = 8}, [9326] = {.lex_state = 0, .external_lex_state = 8}, @@ -32127,390 +32873,390 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9331] = {.lex_state = 0, .external_lex_state = 8}, [9332] = {.lex_state = 0, .external_lex_state = 8}, [9333] = {.lex_state = 0, .external_lex_state = 8}, - [9334] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 9}, - [9338] = {.lex_state = 0, .external_lex_state = 9}, + [9337] = {.lex_state = 0, .external_lex_state = 8}, + [9338] = {.lex_state = 0, .external_lex_state = 8}, [9339] = {.lex_state = 0, .external_lex_state = 8}, - [9340] = {.lex_state = 14, .external_lex_state = 8}, - [9341] = {.lex_state = 14, .external_lex_state = 8}, - [9342] = {.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 = 21, .external_lex_state = 8}, + [9344] = {.lex_state = 0, .external_lex_state = 8}, [9345] = {.lex_state = 0, .external_lex_state = 8}, [9346] = {.lex_state = 0, .external_lex_state = 8}, [9347] = {.lex_state = 0, .external_lex_state = 8}, [9348] = {.lex_state = 0, .external_lex_state = 8}, - [9349] = {.lex_state = 0, .external_lex_state = 9}, + [9349] = {.lex_state = 0, .external_lex_state = 8}, [9350] = {.lex_state = 0, .external_lex_state = 8}, - [9351] = {.lex_state = 0, .external_lex_state = 9}, + [9351] = {.lex_state = 0, .external_lex_state = 8}, [9352] = {.lex_state = 0, .external_lex_state = 8}, - [9353] = {.lex_state = 14, .external_lex_state = 8}, - [9354] = {.lex_state = 0, .external_lex_state = 8}, - [9355] = {.lex_state = 14, .external_lex_state = 8}, - [9356] = {.lex_state = 14, .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 = 8}, + [9356] = {.lex_state = 0, .external_lex_state = 9}, [9357] = {.lex_state = 0, .external_lex_state = 8}, - [9358] = {.lex_state = 21, .external_lex_state = 8}, - [9359] = {.lex_state = 0, .external_lex_state = 8}, + [9358] = {.lex_state = 0, .external_lex_state = 9}, + [9359] = {.lex_state = 0, .external_lex_state = 9}, [9360] = {.lex_state = 0, .external_lex_state = 8}, [9361] = {.lex_state = 0, .external_lex_state = 8}, - [9362] = {.lex_state = 21, .external_lex_state = 8}, + [9362] = {.lex_state = 318, .external_lex_state = 8}, [9363] = {.lex_state = 0, .external_lex_state = 8}, [9364] = {.lex_state = 0, .external_lex_state = 8}, [9365] = {.lex_state = 0, .external_lex_state = 8}, [9366] = {.lex_state = 0, .external_lex_state = 8}, - [9367] = {.lex_state = 0, .external_lex_state = 9}, - [9368] = {.lex_state = 0, .external_lex_state = 8}, + [9367] = {.lex_state = 0, .external_lex_state = 8}, + [9368] = {.lex_state = 30, .external_lex_state = 8}, [9369] = {.lex_state = 0, .external_lex_state = 8}, - [9370] = {.lex_state = 0, .external_lex_state = 8}, - [9371] = {.lex_state = 21, .external_lex_state = 8}, + [9370] = {.lex_state = 0, .external_lex_state = 9}, + [9371] = {.lex_state = 0, .external_lex_state = 8}, [9372] = {.lex_state = 0, .external_lex_state = 8}, [9373] = {.lex_state = 0, .external_lex_state = 8}, [9374] = {.lex_state = 0, .external_lex_state = 8}, [9375] = {.lex_state = 0, .external_lex_state = 8}, - [9376] = {.lex_state = 0, .external_lex_state = 8}, + [9376] = {.lex_state = 30, .external_lex_state = 8}, [9377] = {.lex_state = 0, .external_lex_state = 8}, [9378] = {.lex_state = 0, .external_lex_state = 8}, [9379] = {.lex_state = 0, .external_lex_state = 8}, [9380] = {.lex_state = 0, .external_lex_state = 8}, [9381] = {.lex_state = 0, .external_lex_state = 8}, [9382] = {.lex_state = 0, .external_lex_state = 8}, - [9383] = {.lex_state = 14, .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 = 0, .external_lex_state = 8}, - [9388] = {.lex_state = 0, .external_lex_state = 8}, - [9389] = {.lex_state = 0, .external_lex_state = 8}, - [9390] = {.lex_state = 14, .external_lex_state = 8}, - [9391] = {.lex_state = 14, .external_lex_state = 8}, - [9392] = {.lex_state = 14, .external_lex_state = 8}, - [9393] = {.lex_state = 0, .external_lex_state = 8}, + [9385] = {.lex_state = 0, .external_lex_state = 8}, + [9386] = {.lex_state = 318, .external_lex_state = 8}, + [9387] = {.lex_state = 0, .external_lex_state = 9}, + [9388] = {.lex_state = 0, .external_lex_state = 9}, + [9389] = {.lex_state = 30, .external_lex_state = 8}, + [9390] = {.lex_state = 0, .external_lex_state = 8}, + [9391] = {.lex_state = 0, .external_lex_state = 8}, + [9392] = {.lex_state = 30, .external_lex_state = 8}, + [9393] = {.lex_state = 0, .external_lex_state = 9}, [9394] = {.lex_state = 0, .external_lex_state = 8}, - [9395] = {.lex_state = 14, .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 = 0, .external_lex_state = 8}, - [9399] = {.lex_state = 14, .external_lex_state = 8}, + [9399] = {.lex_state = 0, .external_lex_state = 8}, [9400] = {.lex_state = 0, .external_lex_state = 8}, - [9401] = {.lex_state = 0, .external_lex_state = 8}, - [9402] = {.lex_state = 0, .external_lex_state = 8}, - [9403] = {.lex_state = 14, .external_lex_state = 8}, - [9404] = {.lex_state = 14, .external_lex_state = 8}, - [9405] = {.lex_state = 14, .external_lex_state = 8}, - [9406] = {.lex_state = 0, .external_lex_state = 8}, - [9407] = {.lex_state = 14, .external_lex_state = 8}, - [9408] = {.lex_state = 14, .external_lex_state = 8}, - [9409] = {.lex_state = 14, .external_lex_state = 8}, - [9410] = {.lex_state = 14, .external_lex_state = 8}, - [9411] = {.lex_state = 14, .external_lex_state = 8}, - [9412] = {.lex_state = 0, .external_lex_state = 8}, - [9413] = {.lex_state = 14, .external_lex_state = 8}, + [9401] = {.lex_state = 30, .external_lex_state = 8}, + [9402] = {.lex_state = 0, .external_lex_state = 9}, + [9403] = {.lex_state = 30, .external_lex_state = 8}, + [9404] = {.lex_state = 0, .external_lex_state = 9}, + [9405] = {.lex_state = 0, .external_lex_state = 9}, + [9406] = {.lex_state = 30, .external_lex_state = 8}, + [9407] = {.lex_state = 0, .external_lex_state = 8}, + [9408] = {.lex_state = 0, .external_lex_state = 8}, + [9409] = {.lex_state = 0, .external_lex_state = 8}, + [9410] = {.lex_state = 0, .external_lex_state = 8}, + [9411] = {.lex_state = 0, .external_lex_state = 8}, + [9412] = {.lex_state = 0, .external_lex_state = 9}, + [9413] = {.lex_state = 0, .external_lex_state = 8}, [9414] = {.lex_state = 0, .external_lex_state = 8}, - [9415] = {.lex_state = 14, .external_lex_state = 8}, + [9415] = {.lex_state = 30, .external_lex_state = 8}, [9416] = {.lex_state = 0, .external_lex_state = 8}, [9417] = {.lex_state = 0, .external_lex_state = 8}, - [9418] = {.lex_state = 0, .external_lex_state = 8}, - [9419] = {.lex_state = 14, .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 = 14, .external_lex_state = 8}, - [9422] = {.lex_state = 14, .external_lex_state = 8}, - [9423] = {.lex_state = 0, .external_lex_state = 9}, - [9424] = {.lex_state = 0, .external_lex_state = 8}, + [9421] = {.lex_state = 0, .external_lex_state = 8}, + [9422] = {.lex_state = 0, .external_lex_state = 8}, + [9423] = {.lex_state = 0, .external_lex_state = 8}, + [9424] = {.lex_state = 0, .external_lex_state = 9}, [9425] = {.lex_state = 0, .external_lex_state = 8}, - [9426] = {.lex_state = 14, .external_lex_state = 8}, - [9427] = {.lex_state = 14, .external_lex_state = 8}, + [9426] = {.lex_state = 0, .external_lex_state = 8}, + [9427] = {.lex_state = 0, .external_lex_state = 8}, [9428] = {.lex_state = 0, .external_lex_state = 8}, - [9429] = {.lex_state = 0, .external_lex_state = 8}, - [9430] = {.lex_state = 0, .external_lex_state = 8}, + [9429] = {.lex_state = 0, .external_lex_state = 9}, + [9430] = {.lex_state = 23, .external_lex_state = 11}, [9431] = {.lex_state = 0, .external_lex_state = 8}, - [9432] = {.lex_state = 0, .external_lex_state = 8}, + [9432] = {.lex_state = 0, .external_lex_state = 9}, [9433] = {.lex_state = 0, .external_lex_state = 8}, - [9434] = {.lex_state = 14, .external_lex_state = 8}, + [9434] = {.lex_state = 0, .external_lex_state = 8}, [9435] = {.lex_state = 0, .external_lex_state = 8}, [9436] = {.lex_state = 0, .external_lex_state = 8}, [9437] = {.lex_state = 0, .external_lex_state = 8}, - [9438] = {.lex_state = 14, .external_lex_state = 8}, + [9438] = {.lex_state = 0, .external_lex_state = 8}, [9439] = {.lex_state = 0, .external_lex_state = 8}, - [9440] = {.lex_state = 0, .external_lex_state = 8}, - [9441] = {.lex_state = 14, .external_lex_state = 8}, + [9440] = {.lex_state = 0, .external_lex_state = 9}, + [9441] = {.lex_state = 0, .external_lex_state = 8}, [9442] = {.lex_state = 0, .external_lex_state = 8}, - [9443] = {.lex_state = 0, .external_lex_state = 8}, - [9444] = {.lex_state = 0, .external_lex_state = 8}, - [9445] = {.lex_state = 0, .external_lex_state = 8}, - [9446] = {.lex_state = 14, .external_lex_state = 8}, - [9447] = {.lex_state = 14, .external_lex_state = 8}, - [9448] = {.lex_state = 0, .external_lex_state = 8}, + [9443] = {.lex_state = 0, .external_lex_state = 9}, + [9444] = {.lex_state = 30, .external_lex_state = 8}, + [9445] = {.lex_state = 0, .external_lex_state = 9}, + [9446] = {.lex_state = 0, .external_lex_state = 8}, + [9447] = {.lex_state = 30, .external_lex_state = 8}, + [9448] = {.lex_state = 30, .external_lex_state = 8}, [9449] = {.lex_state = 0, .external_lex_state = 8}, [9450] = {.lex_state = 0, .external_lex_state = 8}, [9451] = {.lex_state = 0, .external_lex_state = 8}, [9452] = {.lex_state = 0, .external_lex_state = 8}, - [9453] = {.lex_state = 0, .external_lex_state = 8}, - [9454] = {.lex_state = 0, .external_lex_state = 8}, + [9453] = {.lex_state = 0, .external_lex_state = 9}, + [9454] = {.lex_state = 318, .external_lex_state = 8}, [9455] = {.lex_state = 0, .external_lex_state = 8}, [9456] = {.lex_state = 0, .external_lex_state = 8}, - [9457] = {.lex_state = 0, .external_lex_state = 9}, - [9458] = {.lex_state = 0, .external_lex_state = 8}, + [9457] = {.lex_state = 318, .external_lex_state = 8}, + [9458] = {.lex_state = 0, .external_lex_state = 9}, [9459] = {.lex_state = 0, .external_lex_state = 8}, - [9460] = {.lex_state = 0, .external_lex_state = 8}, - [9461] = {.lex_state = 14, .external_lex_state = 8}, - [9462] = {.lex_state = 0, .external_lex_state = 8}, + [9460] = {.lex_state = 0, .external_lex_state = 9}, + [9461] = {.lex_state = 0, .external_lex_state = 9}, + [9462] = {.lex_state = 23, .external_lex_state = 8}, [9463] = {.lex_state = 0, .external_lex_state = 8}, - [9464] = {.lex_state = 0, .external_lex_state = 8}, + [9464] = {.lex_state = 23, .external_lex_state = 8}, [9465] = {.lex_state = 0, .external_lex_state = 8}, [9466] = {.lex_state = 0, .external_lex_state = 8}, [9467] = {.lex_state = 0, .external_lex_state = 8}, - [9468] = {.lex_state = 0, .external_lex_state = 8}, - [9469] = {.lex_state = 0, .external_lex_state = 8}, + [9468] = {.lex_state = 23, .external_lex_state = 8}, + [9469] = {.lex_state = 318, .external_lex_state = 8}, [9470] = {.lex_state = 0, .external_lex_state = 8}, - [9471] = {.lex_state = 0, .external_lex_state = 8}, + [9471] = {.lex_state = 23, .external_lex_state = 8}, [9472] = {.lex_state = 0, .external_lex_state = 8}, [9473] = {.lex_state = 0, .external_lex_state = 8}, [9474] = {.lex_state = 0, .external_lex_state = 8}, [9475] = {.lex_state = 0, .external_lex_state = 8}, - [9476] = {.lex_state = 0, .external_lex_state = 8}, + [9476] = {.lex_state = 23, .external_lex_state = 8}, [9477] = {.lex_state = 0, .external_lex_state = 8}, - [9478] = {.lex_state = 14, .external_lex_state = 8}, + [9478] = {.lex_state = 23, .external_lex_state = 8}, [9479] = {.lex_state = 0, .external_lex_state = 8}, [9480] = {.lex_state = 0, .external_lex_state = 8}, - [9481] = {.lex_state = 0, .external_lex_state = 8}, - [9482] = {.lex_state = 0, .external_lex_state = 8}, - [9483] = {.lex_state = 14, .external_lex_state = 8}, - [9484] = {.lex_state = 0, .external_lex_state = 8}, - [9485] = {.lex_state = 14, .external_lex_state = 8}, - [9486] = {.lex_state = 14, .external_lex_state = 8}, + [9481] = {.lex_state = 0, .external_lex_state = 9}, + [9482] = {.lex_state = 23, .external_lex_state = 8}, + [9483] = {.lex_state = 23, .external_lex_state = 8}, + [9484] = {.lex_state = 23, .external_lex_state = 8}, + [9485] = {.lex_state = 23, .external_lex_state = 8}, + [9486] = {.lex_state = 0, .external_lex_state = 9}, [9487] = {.lex_state = 0, .external_lex_state = 8}, [9488] = {.lex_state = 0, .external_lex_state = 8}, [9489] = {.lex_state = 0, .external_lex_state = 8}, [9490] = {.lex_state = 0, .external_lex_state = 8}, [9491] = {.lex_state = 0, .external_lex_state = 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}, - [9495] = {.lex_state = 14, .external_lex_state = 8}, - [9496] = {.lex_state = 14, .external_lex_state = 8}, + [9495] = {.lex_state = 0, .external_lex_state = 8}, + [9496] = {.lex_state = 0, .external_lex_state = 8}, [9497] = {.lex_state = 0, .external_lex_state = 8}, [9498] = {.lex_state = 0, .external_lex_state = 8}, [9499] = {.lex_state = 0, .external_lex_state = 8}, [9500] = {.lex_state = 0, .external_lex_state = 8}, - [9501] = {.lex_state = 0, .external_lex_state = 8}, - [9502] = {.lex_state = 0, .external_lex_state = 8}, + [9501] = {.lex_state = 23, .external_lex_state = 8}, + [9502] = {.lex_state = 23, .external_lex_state = 8}, [9503] = {.lex_state = 0, .external_lex_state = 8}, - [9504] = {.lex_state = 14, .external_lex_state = 8}, - [9505] = {.lex_state = 0, .external_lex_state = 8}, - [9506] = {.lex_state = 0, .external_lex_state = 8}, - [9507] = {.lex_state = 0, .external_lex_state = 8}, + [9504] = {.lex_state = 0, .external_lex_state = 8}, + [9505] = {.lex_state = 0, .external_lex_state = 9}, + [9506] = {.lex_state = 23, .external_lex_state = 8}, + [9507] = {.lex_state = 23, .external_lex_state = 8}, [9508] = {.lex_state = 0, .external_lex_state = 8}, - [9509] = {.lex_state = 14, .external_lex_state = 8}, - [9510] = {.lex_state = 14, .external_lex_state = 8}, - [9511] = {.lex_state = 14, .external_lex_state = 8}, + [9509] = {.lex_state = 0, .external_lex_state = 8}, + [9510] = {.lex_state = 0, .external_lex_state = 8}, + [9511] = {.lex_state = 23, .external_lex_state = 8}, [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}, - [9516] = {.lex_state = 14, .external_lex_state = 8}, - [9517] = {.lex_state = 0, .external_lex_state = 8}, - [9518] = {.lex_state = 0, .external_lex_state = 8}, + [9515] = {.lex_state = 23, .external_lex_state = 8}, + [9516] = {.lex_state = 0, .external_lex_state = 8}, + [9517] = {.lex_state = 318, .external_lex_state = 8}, + [9518] = {.lex_state = 23, .external_lex_state = 8}, [9519] = {.lex_state = 0, .external_lex_state = 8}, - [9520] = {.lex_state = 14, .external_lex_state = 8}, + [9520] = {.lex_state = 0, .external_lex_state = 8}, [9521] = {.lex_state = 0, .external_lex_state = 8}, - [9522] = {.lex_state = 0, .external_lex_state = 8}, - [9523] = {.lex_state = 14, .external_lex_state = 8}, - [9524] = {.lex_state = 14, .external_lex_state = 8}, - [9525] = {.lex_state = 0, .external_lex_state = 8}, + [9522] = {.lex_state = 23, .external_lex_state = 8}, + [9523] = {.lex_state = 0, .external_lex_state = 8}, + [9524] = {.lex_state = 0, .external_lex_state = 8}, + [9525] = {.lex_state = 23, .external_lex_state = 8}, [9526] = {.lex_state = 0, .external_lex_state = 8}, - [9527] = {.lex_state = 0, .external_lex_state = 8}, + [9527] = {.lex_state = 23, .external_lex_state = 8}, [9528] = {.lex_state = 0, .external_lex_state = 8}, - [9529] = {.lex_state = 0, .external_lex_state = 8}, + [9529] = {.lex_state = 23, .external_lex_state = 8}, [9530] = {.lex_state = 0, .external_lex_state = 8}, [9531] = {.lex_state = 0, .external_lex_state = 8}, [9532] = {.lex_state = 0, .external_lex_state = 8}, [9533] = {.lex_state = 0, .external_lex_state = 8}, - [9534] = {.lex_state = 14, .external_lex_state = 8}, - [9535] = {.lex_state = 14, .external_lex_state = 8}, - [9536] = {.lex_state = 14, .external_lex_state = 8}, + [9534] = {.lex_state = 0, .external_lex_state = 8}, + [9535] = {.lex_state = 0, .external_lex_state = 8}, + [9536] = {.lex_state = 0, .external_lex_state = 8}, [9537] = {.lex_state = 0, .external_lex_state = 8}, - [9538] = {.lex_state = 14, .external_lex_state = 8}, - [9539] = {.lex_state = 14, .external_lex_state = 8}, - [9540] = {.lex_state = 14, .external_lex_state = 8}, - [9541] = {.lex_state = 14, .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}, - [9543] = {.lex_state = 0, .external_lex_state = 8}, + [9543] = {.lex_state = 23, .external_lex_state = 8}, [9544] = {.lex_state = 0, .external_lex_state = 8}, - [9545] = {.lex_state = 14, .external_lex_state = 8}, - [9546] = {.lex_state = 14, .external_lex_state = 8}, - [9547] = {.lex_state = 14, .external_lex_state = 8}, - [9548] = {.lex_state = 14, .external_lex_state = 8}, - [9549] = {.lex_state = 14, .external_lex_state = 8}, + [9545] = {.lex_state = 23, .external_lex_state = 8}, + [9546] = {.lex_state = 0, .external_lex_state = 8}, + [9547] = {.lex_state = 0, .external_lex_state = 8}, + [9548] = {.lex_state = 0, .external_lex_state = 8}, + [9549] = {.lex_state = 0, .external_lex_state = 8}, [9550] = {.lex_state = 0, .external_lex_state = 8}, - [9551] = {.lex_state = 14, .external_lex_state = 8}, - [9552] = {.lex_state = 14, .external_lex_state = 8}, + [9551] = {.lex_state = 0, .external_lex_state = 8}, + [9552] = {.lex_state = 0, .external_lex_state = 8}, [9553] = {.lex_state = 0, .external_lex_state = 8}, [9554] = {.lex_state = 0, .external_lex_state = 8}, [9555] = {.lex_state = 0, .external_lex_state = 8}, - [9556] = {.lex_state = 14, .external_lex_state = 8}, - [9557] = {.lex_state = 14, .external_lex_state = 8}, - [9558] = {.lex_state = 14, .external_lex_state = 8}, - [9559] = {.lex_state = 14, .external_lex_state = 8}, - [9560] = {.lex_state = 14, .external_lex_state = 8}, - [9561] = {.lex_state = 14, .external_lex_state = 8}, - [9562] = {.lex_state = 14, .external_lex_state = 8}, - [9563] = {.lex_state = 14, .external_lex_state = 8}, - [9564] = {.lex_state = 14, .external_lex_state = 8}, - [9565] = {.lex_state = 14, .external_lex_state = 8}, - [9566] = {.lex_state = 14, .external_lex_state = 8}, - [9567] = {.lex_state = 14, .external_lex_state = 8}, - [9568] = {.lex_state = 0, .external_lex_state = 8}, + [9556] = {.lex_state = 23, .external_lex_state = 8}, + [9557] = {.lex_state = 0, .external_lex_state = 8}, + [9558] = {.lex_state = 0, .external_lex_state = 8}, + [9559] = {.lex_state = 0, .external_lex_state = 8}, + [9560] = {.lex_state = 0, .external_lex_state = 8}, + [9561] = {.lex_state = 0, .external_lex_state = 8}, + [9562] = {.lex_state = 23, .external_lex_state = 8}, + [9563] = {.lex_state = 0, .external_lex_state = 8}, + [9564] = {.lex_state = 0, .external_lex_state = 8}, + [9565] = {.lex_state = 23, .external_lex_state = 8}, + [9566] = {.lex_state = 0, .external_lex_state = 8}, + [9567] = {.lex_state = 0, .external_lex_state = 8}, + [9568] = {.lex_state = 23, .external_lex_state = 8}, [9569] = {.lex_state = 0, .external_lex_state = 8}, - [9570] = {.lex_state = 14, .external_lex_state = 8}, - [9571] = {.lex_state = 0, .external_lex_state = 8}, - [9572] = {.lex_state = 14, .external_lex_state = 8}, - [9573] = {.lex_state = 0, .external_lex_state = 8}, - [9574] = {.lex_state = 14, .external_lex_state = 8}, - [9575] = {.lex_state = 14, .external_lex_state = 8}, + [9570] = {.lex_state = 0, .external_lex_state = 8}, + [9571] = {.lex_state = 23, .external_lex_state = 8}, + [9572] = {.lex_state = 0, .external_lex_state = 8}, + [9573] = {.lex_state = 23, .external_lex_state = 8}, + [9574] = {.lex_state = 0, .external_lex_state = 8}, + [9575] = {.lex_state = 23, .external_lex_state = 8}, [9576] = {.lex_state = 0, .external_lex_state = 8}, - [9577] = {.lex_state = 14, .external_lex_state = 8}, - [9578] = {.lex_state = 14, .external_lex_state = 8}, - [9579] = {.lex_state = 14, .external_lex_state = 8}, + [9577] = {.lex_state = 23, .external_lex_state = 8}, + [9578] = {.lex_state = 23, .external_lex_state = 8}, + [9579] = {.lex_state = 0, .external_lex_state = 8}, [9580] = {.lex_state = 0, .external_lex_state = 8}, - [9581] = {.lex_state = 14, .external_lex_state = 8}, - [9582] = {.lex_state = 14, .external_lex_state = 8}, - [9583] = {.lex_state = 14, .external_lex_state = 8}, + [9581] = {.lex_state = 0, .external_lex_state = 8}, + [9582] = {.lex_state = 0, .external_lex_state = 8}, + [9583] = {.lex_state = 0, .external_lex_state = 8}, [9584] = {.lex_state = 0, .external_lex_state = 8}, - [9585] = {.lex_state = 14, .external_lex_state = 8}, - [9586] = {.lex_state = 14, .external_lex_state = 8}, - [9587] = {.lex_state = 0, .external_lex_state = 8}, - [9588] = {.lex_state = 14, .external_lex_state = 8}, - [9589] = {.lex_state = 14, .external_lex_state = 8}, - [9590] = {.lex_state = 14, .external_lex_state = 8}, - [9591] = {.lex_state = 14, .external_lex_state = 8}, + [9585] = {.lex_state = 23, .external_lex_state = 8}, + [9586] = {.lex_state = 23, .external_lex_state = 8}, + [9587] = {.lex_state = 23, .external_lex_state = 8}, + [9588] = {.lex_state = 23, .external_lex_state = 8}, + [9589] = {.lex_state = 0, .external_lex_state = 8}, + [9590] = {.lex_state = 0, .external_lex_state = 9}, + [9591] = {.lex_state = 0, .external_lex_state = 8}, [9592] = {.lex_state = 0, .external_lex_state = 8}, - [9593] = {.lex_state = 14, .external_lex_state = 8}, + [9593] = {.lex_state = 0, .external_lex_state = 8}, [9594] = {.lex_state = 0, .external_lex_state = 8}, - [9595] = {.lex_state = 14, .external_lex_state = 8}, - [9596] = {.lex_state = 14, .external_lex_state = 8}, - [9597] = {.lex_state = 14, .external_lex_state = 8}, - [9598] = {.lex_state = 0, .external_lex_state = 8}, - [9599] = {.lex_state = 0, .external_lex_state = 8}, - [9600] = {.lex_state = 0, .external_lex_state = 8}, - [9601] = {.lex_state = 0, .external_lex_state = 8}, - [9602] = {.lex_state = 0, .external_lex_state = 8}, + [9595] = {.lex_state = 23, .external_lex_state = 8}, + [9596] = {.lex_state = 0, .external_lex_state = 8}, + [9597] = {.lex_state = 0, .external_lex_state = 8}, + [9598] = {.lex_state = 23, .external_lex_state = 8}, + [9599] = {.lex_state = 23, .external_lex_state = 8}, + [9600] = {.lex_state = 23, .external_lex_state = 8}, + [9601] = {.lex_state = 23, .external_lex_state = 8}, + [9602] = {.lex_state = 318, .external_lex_state = 8}, [9603] = {.lex_state = 0, .external_lex_state = 8}, - [9604] = {.lex_state = 0, .external_lex_state = 8}, + [9604] = {.lex_state = 23, .external_lex_state = 8}, [9605] = {.lex_state = 0, .external_lex_state = 8}, - [9606] = {.lex_state = 0, .external_lex_state = 8}, + [9606] = {.lex_state = 23, .external_lex_state = 8}, [9607] = {.lex_state = 0, .external_lex_state = 8}, [9608] = {.lex_state = 0, .external_lex_state = 8}, - [9609] = {.lex_state = 14, .external_lex_state = 8}, - [9610] = {.lex_state = 14, .external_lex_state = 8}, - [9611] = {.lex_state = 0, .external_lex_state = 8}, + [9609] = {.lex_state = 23, .external_lex_state = 8}, + [9610] = {.lex_state = 0, .external_lex_state = 8}, + [9611] = {.lex_state = 23, .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}, + [9613] = {.lex_state = 23, .external_lex_state = 8}, + [9614] = {.lex_state = 23, .external_lex_state = 8}, [9615] = {.lex_state = 0, .external_lex_state = 8}, - [9616] = {.lex_state = 14, .external_lex_state = 8}, - [9617] = {.lex_state = 0, .external_lex_state = 8}, + [9616] = {.lex_state = 23, .external_lex_state = 8}, + [9617] = {.lex_state = 23, .external_lex_state = 8}, [9618] = {.lex_state = 0, .external_lex_state = 8}, [9619] = {.lex_state = 0, .external_lex_state = 8}, - [9620] = {.lex_state = 0, .external_lex_state = 8}, - [9621] = {.lex_state = 0, .external_lex_state = 8}, - [9622] = {.lex_state = 14, .external_lex_state = 8}, - [9623] = {.lex_state = 0, .external_lex_state = 8}, + [9620] = {.lex_state = 23, .external_lex_state = 8}, + [9621] = {.lex_state = 23, .external_lex_state = 8}, + [9622] = {.lex_state = 23, .external_lex_state = 8}, + [9623] = {.lex_state = 23, .external_lex_state = 8}, [9624] = {.lex_state = 0, .external_lex_state = 8}, - [9625] = {.lex_state = 0, .external_lex_state = 8}, - [9626] = {.lex_state = 14, .external_lex_state = 8}, - [9627] = {.lex_state = 0, .external_lex_state = 8}, + [9625] = {.lex_state = 23, .external_lex_state = 8}, + [9626] = {.lex_state = 23, .external_lex_state = 8}, + [9627] = {.lex_state = 23, .external_lex_state = 8}, [9628] = {.lex_state = 0, .external_lex_state = 8}, - [9629] = {.lex_state = 0, .external_lex_state = 8}, - [9630] = {.lex_state = 0, .external_lex_state = 8}, - [9631] = {.lex_state = 14, .external_lex_state = 8}, - [9632] = {.lex_state = 0, .external_lex_state = 8}, - [9633] = {.lex_state = 0, .external_lex_state = 8}, - [9634] = {.lex_state = 0, .external_lex_state = 8}, + [9629] = {.lex_state = 23, .external_lex_state = 8}, + [9630] = {.lex_state = 23, .external_lex_state = 8}, + [9631] = {.lex_state = 23, .external_lex_state = 8}, + [9632] = {.lex_state = 23, .external_lex_state = 8}, + [9633] = {.lex_state = 23, .external_lex_state = 8}, + [9634] = {.lex_state = 23, .external_lex_state = 8}, [9635] = {.lex_state = 0, .external_lex_state = 8}, - [9636] = {.lex_state = 14, .external_lex_state = 8}, - [9637] = {.lex_state = 0, .external_lex_state = 8}, + [9636] = {.lex_state = 23, .external_lex_state = 8}, + [9637] = {.lex_state = 23, .external_lex_state = 8}, [9638] = {.lex_state = 0, .external_lex_state = 8}, - [9639] = {.lex_state = 0, .external_lex_state = 8}, - [9640] = {.lex_state = 0, .external_lex_state = 8}, - [9641] = {.lex_state = 0, .external_lex_state = 9}, - [9642] = {.lex_state = 14, .external_lex_state = 8}, - [9643] = {.lex_state = 0, .external_lex_state = 9}, - [9644] = {.lex_state = 0, .external_lex_state = 8}, + [9639] = {.lex_state = 23, .external_lex_state = 8}, + [9640] = {.lex_state = 23, .external_lex_state = 8}, + [9641] = {.lex_state = 23, .external_lex_state = 8}, + [9642] = {.lex_state = 0, .external_lex_state = 8}, + [9643] = {.lex_state = 0, .external_lex_state = 8}, + [9644] = {.lex_state = 23, .external_lex_state = 8}, [9645] = {.lex_state = 0, .external_lex_state = 8}, - [9646] = {.lex_state = 14, .external_lex_state = 8}, - [9647] = {.lex_state = 0, .external_lex_state = 8}, + [9646] = {.lex_state = 23, .external_lex_state = 8}, + [9647] = {.lex_state = 23, .external_lex_state = 8}, [9648] = {.lex_state = 0, .external_lex_state = 8}, [9649] = {.lex_state = 0, .external_lex_state = 8}, - [9650] = {.lex_state = 0, .external_lex_state = 8}, + [9650] = {.lex_state = 23, .external_lex_state = 8}, [9651] = {.lex_state = 0, .external_lex_state = 8}, [9652] = {.lex_state = 0, .external_lex_state = 8}, - [9653] = {.lex_state = 0, .external_lex_state = 8}, + [9653] = {.lex_state = 23, .external_lex_state = 8}, [9654] = {.lex_state = 0, .external_lex_state = 8}, - [9655] = {.lex_state = 0, .external_lex_state = 8}, - [9656] = {.lex_state = 0, .external_lex_state = 8}, + [9655] = {.lex_state = 23, .external_lex_state = 8}, + [9656] = {.lex_state = 23, .external_lex_state = 8}, [9657] = {.lex_state = 0, .external_lex_state = 8}, - [9658] = {.lex_state = 0, .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}, + [9658] = {.lex_state = 23, .external_lex_state = 8}, + [9659] = {.lex_state = 23, .external_lex_state = 8}, + [9660] = {.lex_state = 23, .external_lex_state = 8}, + [9661] = {.lex_state = 23, .external_lex_state = 8}, [9662] = {.lex_state = 0, .external_lex_state = 8}, [9663] = {.lex_state = 0, .external_lex_state = 8}, - [9664] = {.lex_state = 0, .external_lex_state = 8}, + [9664] = {.lex_state = 23, .external_lex_state = 8}, [9665] = {.lex_state = 0, .external_lex_state = 8}, - [9666] = {.lex_state = 0, .external_lex_state = 8}, - [9667] = {.lex_state = 14, .external_lex_state = 8}, - [9668] = {.lex_state = 0, .external_lex_state = 8}, + [9666] = {.lex_state = 23, .external_lex_state = 8}, + [9667] = {.lex_state = 23, .external_lex_state = 8}, + [9668] = {.lex_state = 23, .external_lex_state = 8}, [9669] = {.lex_state = 0, .external_lex_state = 8}, [9670] = {.lex_state = 0, .external_lex_state = 8}, [9671] = {.lex_state = 0, .external_lex_state = 8}, - [9672] = {.lex_state = 14, .external_lex_state = 8}, + [9672] = {.lex_state = 23, .external_lex_state = 8}, [9673] = {.lex_state = 0, .external_lex_state = 8}, [9674] = {.lex_state = 0, .external_lex_state = 8}, - [9675] = {.lex_state = 0, .external_lex_state = 8}, - [9676] = {.lex_state = 14, .external_lex_state = 8}, + [9675] = {.lex_state = 23, .external_lex_state = 8}, + [9676] = {.lex_state = 0, .external_lex_state = 8}, [9677] = {.lex_state = 0, .external_lex_state = 8}, - [9678] = {.lex_state = 14, .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 = 0, .external_lex_state = 8}, - [9682] = {.lex_state = 14, .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 = 8}, [9686] = {.lex_state = 0, .external_lex_state = 8}, - [9687] = {.lex_state = 0, .external_lex_state = 8}, - [9688] = {.lex_state = 0, .external_lex_state = 8}, + [9687] = {.lex_state = 23, .external_lex_state = 8}, + [9688] = {.lex_state = 23, .external_lex_state = 8}, [9689] = {.lex_state = 0, .external_lex_state = 8}, [9690] = {.lex_state = 0, .external_lex_state = 8}, - [9691] = {.lex_state = 14, .external_lex_state = 8}, + [9691] = {.lex_state = 23, .external_lex_state = 8}, [9692] = {.lex_state = 0, .external_lex_state = 8}, [9693] = {.lex_state = 0, .external_lex_state = 8}, [9694] = {.lex_state = 0, .external_lex_state = 8}, [9695] = {.lex_state = 0, .external_lex_state = 8}, - [9696] = {.lex_state = 0, .external_lex_state = 8}, + [9696] = {.lex_state = 23, .external_lex_state = 8}, [9697] = {.lex_state = 0, .external_lex_state = 8}, [9698] = {.lex_state = 0, .external_lex_state = 8}, - [9699] = {.lex_state = 14, .external_lex_state = 8}, - [9700] = {.lex_state = 14, .external_lex_state = 8}, - [9701] = {.lex_state = 14, .external_lex_state = 8}, - [9702] = {.lex_state = 14, .external_lex_state = 8}, + [9699] = {.lex_state = 23, .external_lex_state = 8}, + [9700] = {.lex_state = 23, .external_lex_state = 8}, + [9701] = {.lex_state = 23, .external_lex_state = 8}, + [9702] = {.lex_state = 0, .external_lex_state = 8}, [9703] = {.lex_state = 0, .external_lex_state = 8}, [9704] = {.lex_state = 0, .external_lex_state = 8}, - [9705] = {.lex_state = 14, .external_lex_state = 8}, - [9706] = {.lex_state = 0, .external_lex_state = 8}, + [9705] = {.lex_state = 23, .external_lex_state = 8}, + [9706] = {.lex_state = 23, .external_lex_state = 8}, [9707] = {.lex_state = 0, .external_lex_state = 8}, - [9708] = {.lex_state = 14, .external_lex_state = 8}, + [9708] = {.lex_state = 0, .external_lex_state = 8}, [9709] = {.lex_state = 0, .external_lex_state = 8}, - [9710] = {.lex_state = 14, .external_lex_state = 8}, + [9710] = {.lex_state = 0, .external_lex_state = 8}, [9711] = {.lex_state = 0, .external_lex_state = 8}, - [9712] = {.lex_state = 14, .external_lex_state = 8}, + [9712] = {.lex_state = 0, .external_lex_state = 8}, [9713] = {.lex_state = 0, .external_lex_state = 8}, - [9714] = {.lex_state = 14, .external_lex_state = 8}, - [9715] = {.lex_state = 14, .external_lex_state = 8}, + [9714] = {.lex_state = 0, .external_lex_state = 8}, + [9715] = {.lex_state = 23, .external_lex_state = 8}, [9716] = {.lex_state = 0, .external_lex_state = 8}, - [9717] = {.lex_state = 14, .external_lex_state = 8}, + [9717] = {.lex_state = 0, .external_lex_state = 8}, [9718] = {.lex_state = 0, .external_lex_state = 8}, [9719] = {.lex_state = 0, .external_lex_state = 8}, [9720] = {.lex_state = 0, .external_lex_state = 8}, @@ -32520,45 +33266,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9724] = {.lex_state = 0, .external_lex_state = 8}, [9725] = {.lex_state = 0, .external_lex_state = 8}, [9726] = {.lex_state = 0, .external_lex_state = 8}, - [9727] = {.lex_state = 0, .external_lex_state = 8}, - [9728] = {.lex_state = 14, .external_lex_state = 8}, - [9729] = {.lex_state = 14, .external_lex_state = 8}, + [9727] = {.lex_state = 23, .external_lex_state = 8}, + [9728] = {.lex_state = 0, .external_lex_state = 8}, + [9729] = {.lex_state = 0, .external_lex_state = 8}, [9730] = {.lex_state = 0, .external_lex_state = 8}, - [9731] = {.lex_state = 14, .external_lex_state = 8}, + [9731] = {.lex_state = 0, .external_lex_state = 8}, [9732] = {.lex_state = 0, .external_lex_state = 8}, - [9733] = {.lex_state = 14, .external_lex_state = 8}, + [9733] = {.lex_state = 23, .external_lex_state = 8}, [9734] = {.lex_state = 0, .external_lex_state = 8}, [9735] = {.lex_state = 0, .external_lex_state = 8}, [9736] = {.lex_state = 0, .external_lex_state = 8}, - [9737] = {.lex_state = 0, .external_lex_state = 8}, + [9737] = {.lex_state = 23, .external_lex_state = 8}, [9738] = {.lex_state = 0, .external_lex_state = 8}, - [9739] = {.lex_state = 0, .external_lex_state = 8}, + [9739] = {.lex_state = 23, .external_lex_state = 8}, [9740] = {.lex_state = 0, .external_lex_state = 8}, [9741] = {.lex_state = 0, .external_lex_state = 8}, [9742] = {.lex_state = 0, .external_lex_state = 8}, [9743] = {.lex_state = 0, .external_lex_state = 8}, [9744] = {.lex_state = 0, .external_lex_state = 8}, [9745] = {.lex_state = 0, .external_lex_state = 8}, - [9746] = {.lex_state = 0, .external_lex_state = 8}, - [9747] = {.lex_state = 0, .external_lex_state = 8}, + [9746] = {.lex_state = 23, .external_lex_state = 8}, + [9747] = {.lex_state = 23, .external_lex_state = 8}, [9748] = {.lex_state = 0, .external_lex_state = 8}, [9749] = {.lex_state = 0, .external_lex_state = 8}, [9750] = {.lex_state = 0, .external_lex_state = 8}, - [9751] = {.lex_state = 14, .external_lex_state = 8}, - [9752] = {.lex_state = 14, .external_lex_state = 8}, - [9753] = {.lex_state = 14, .external_lex_state = 8}, - [9754] = {.lex_state = 14, .external_lex_state = 8}, - [9755] = {.lex_state = 0, .external_lex_state = 8}, + [9751] = {.lex_state = 23, .external_lex_state = 8}, + [9752] = {.lex_state = 0, .external_lex_state = 8}, + [9753] = {.lex_state = 0, .external_lex_state = 8}, + [9754] = {.lex_state = 0, .external_lex_state = 8}, + [9755] = {.lex_state = 318, .external_lex_state = 8}, [9756] = {.lex_state = 0, .external_lex_state = 8}, - [9757] = {.lex_state = 0, .external_lex_state = 8}, + [9757] = {.lex_state = 23, .external_lex_state = 8}, [9758] = {.lex_state = 0, .external_lex_state = 8}, [9759] = {.lex_state = 0, .external_lex_state = 8}, [9760] = {.lex_state = 0, .external_lex_state = 8}, [9761] = {.lex_state = 0, .external_lex_state = 8}, - [9762] = {.lex_state = 14, .external_lex_state = 8}, + [9762] = {.lex_state = 0, .external_lex_state = 8}, [9763] = {.lex_state = 0, .external_lex_state = 8}, - [9764] = {.lex_state = 14, .external_lex_state = 8}, - [9765] = {.lex_state = 14, .external_lex_state = 8}, + [9764] = {.lex_state = 23, .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}, @@ -32567,27 +33313,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9771] = {.lex_state = 0, .external_lex_state = 8}, [9772] = {.lex_state = 0, .external_lex_state = 8}, [9773] = {.lex_state = 0, .external_lex_state = 8}, - [9774] = {.lex_state = 21, .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 = 0, .external_lex_state = 8}, [9778] = {.lex_state = 0, .external_lex_state = 8}, [9779] = {.lex_state = 0, .external_lex_state = 8}, [9780] = {.lex_state = 0, .external_lex_state = 8}, - [9781] = {.lex_state = 0, .external_lex_state = 8}, - [9782] = {.lex_state = 0, .external_lex_state = 8}, - [9783] = {.lex_state = 14, .external_lex_state = 8}, - [9784] = {.lex_state = 14, .external_lex_state = 8}, - [9785] = {.lex_state = 14, .external_lex_state = 8}, + [9781] = {.lex_state = 23, .external_lex_state = 8}, + [9782] = {.lex_state = 23, .external_lex_state = 8}, + [9783] = {.lex_state = 0, .external_lex_state = 8}, + [9784] = {.lex_state = 0, .external_lex_state = 8}, + [9785] = {.lex_state = 0, .external_lex_state = 8}, [9786] = {.lex_state = 0, .external_lex_state = 8}, [9787] = {.lex_state = 0, .external_lex_state = 8}, [9788] = {.lex_state = 0, .external_lex_state = 8}, - [9789] = {.lex_state = 0, .external_lex_state = 9}, + [9789] = {.lex_state = 23, .external_lex_state = 8}, [9790] = {.lex_state = 0, .external_lex_state = 8}, [9791] = {.lex_state = 0, .external_lex_state = 8}, - [9792] = {.lex_state = 0, .external_lex_state = 9}, + [9792] = {.lex_state = 23, .external_lex_state = 8}, [9793] = {.lex_state = 0, .external_lex_state = 8}, - [9794] = {.lex_state = 0, .external_lex_state = 9}, + [9794] = {.lex_state = 0, .external_lex_state = 8}, [9795] = {.lex_state = 0, .external_lex_state = 8}, [9796] = {.lex_state = 0, .external_lex_state = 8}, [9797] = {.lex_state = 0, .external_lex_state = 8}, @@ -32599,56 +33345,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9803] = {.lex_state = 0, .external_lex_state = 8}, [9804] = {.lex_state = 0, .external_lex_state = 8}, [9805] = {.lex_state = 0, .external_lex_state = 8}, - [9806] = {.lex_state = 14, .external_lex_state = 8}, - [9807] = {.lex_state = 14, .external_lex_state = 8}, + [9806] = {.lex_state = 23, .external_lex_state = 8}, + [9807] = {.lex_state = 0, .external_lex_state = 8}, [9808] = {.lex_state = 0, .external_lex_state = 8}, - [9809] = {.lex_state = 0, .external_lex_state = 8}, + [9809] = {.lex_state = 23, .external_lex_state = 8}, [9810] = {.lex_state = 0, .external_lex_state = 8}, - [9811] = {.lex_state = 0, .external_lex_state = 8}, - [9812] = {.lex_state = 0, .external_lex_state = 8}, + [9811] = {.lex_state = 23, .external_lex_state = 8}, + [9812] = {.lex_state = 0, .external_lex_state = 9}, [9813] = {.lex_state = 0, .external_lex_state = 8}, - [9814] = {.lex_state = 0, .external_lex_state = 8}, + [9814] = {.lex_state = 23, .external_lex_state = 8}, [9815] = {.lex_state = 0, .external_lex_state = 8}, - [9816] = {.lex_state = 14, .external_lex_state = 8}, + [9816] = {.lex_state = 23, .external_lex_state = 8}, [9817] = {.lex_state = 0, .external_lex_state = 8}, - [9818] = {.lex_state = 14, .external_lex_state = 8}, - [9819] = {.lex_state = 0, .external_lex_state = 8}, + [9818] = {.lex_state = 0, .external_lex_state = 8}, + [9819] = {.lex_state = 23, .external_lex_state = 8}, [9820] = {.lex_state = 0, .external_lex_state = 8}, - [9821] = {.lex_state = 0, .external_lex_state = 8}, + [9821] = {.lex_state = 23, .external_lex_state = 8}, [9822] = {.lex_state = 0, .external_lex_state = 8}, [9823] = {.lex_state = 0, .external_lex_state = 8}, [9824] = {.lex_state = 0, .external_lex_state = 8}, [9825] = {.lex_state = 0, .external_lex_state = 8}, - [9826] = {.lex_state = 0, .external_lex_state = 8}, + [9826] = {.lex_state = 318, .external_lex_state = 8}, [9827] = {.lex_state = 0, .external_lex_state = 8}, [9828] = {.lex_state = 0, .external_lex_state = 8}, - [9829] = {.lex_state = 14, .external_lex_state = 8}, - [9830] = {.lex_state = 14, .external_lex_state = 8}, + [9829] = {.lex_state = 0, .external_lex_state = 8}, + [9830] = {.lex_state = 0, .external_lex_state = 8}, [9831] = {.lex_state = 0, .external_lex_state = 8}, [9832] = {.lex_state = 0, .external_lex_state = 8}, [9833] = {.lex_state = 0, .external_lex_state = 8}, - [9834] = {.lex_state = 0, .external_lex_state = 8}, - [9835] = {.lex_state = 14, .external_lex_state = 8}, - [9836] = {.lex_state = 14, .external_lex_state = 8}, - [9837] = {.lex_state = 14, .external_lex_state = 8}, + [9834] = {.lex_state = 0, .external_lex_state = 9}, + [9835] = {.lex_state = 0, .external_lex_state = 8}, + [9836] = {.lex_state = 0, .external_lex_state = 8}, + [9837] = {.lex_state = 30, .external_lex_state = 8}, [9838] = {.lex_state = 0, .external_lex_state = 8}, - [9839] = {.lex_state = 0, .external_lex_state = 8}, + [9839] = {.lex_state = 23, .external_lex_state = 8}, [9840] = {.lex_state = 0, .external_lex_state = 8}, [9841] = {.lex_state = 0, .external_lex_state = 8}, [9842] = {.lex_state = 0, .external_lex_state = 8}, - [9843] = {.lex_state = 14, .external_lex_state = 8}, - [9844] = {.lex_state = 14, .external_lex_state = 8}, + [9843] = {.lex_state = 0, .external_lex_state = 8}, + [9844] = {.lex_state = 0, .external_lex_state = 8}, [9845] = {.lex_state = 0, .external_lex_state = 8}, [9846] = {.lex_state = 0, .external_lex_state = 8}, [9847] = {.lex_state = 0, .external_lex_state = 8}, [9848] = {.lex_state = 0, .external_lex_state = 8}, - [9849] = {.lex_state = 0, .external_lex_state = 8}, + [9849] = {.lex_state = 23, .external_lex_state = 8}, [9850] = {.lex_state = 0, .external_lex_state = 8}, - [9851] = {.lex_state = 0, .external_lex_state = 8}, + [9851] = {.lex_state = 23, .external_lex_state = 8}, [9852] = {.lex_state = 0, .external_lex_state = 8}, - [9853] = {.lex_state = 0, .external_lex_state = 8}, - [9854] = {.lex_state = 0, .external_lex_state = 8}, - [9855] = {.lex_state = 0, .external_lex_state = 8}, + [9853] = {.lex_state = 23, .external_lex_state = 8}, + [9854] = {.lex_state = 23, .external_lex_state = 8}, + [9855] = {.lex_state = 0, .external_lex_state = 9}, [9856] = {.lex_state = 0, .external_lex_state = 8}, [9857] = {.lex_state = 0, .external_lex_state = 8}, [9858] = {.lex_state = 0, .external_lex_state = 8}, @@ -32657,207 +33403,296 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9861] = {.lex_state = 0, .external_lex_state = 8}, [9862] = {.lex_state = 0, .external_lex_state = 8}, [9863] = {.lex_state = 0, .external_lex_state = 8}, - [9864] = {.lex_state = 0, .external_lex_state = 8}, + [9864] = {.lex_state = 23, .external_lex_state = 8}, [9865] = {.lex_state = 0, .external_lex_state = 8}, [9866] = {.lex_state = 0, .external_lex_state = 8}, [9867] = {.lex_state = 0, .external_lex_state = 8}, [9868] = {.lex_state = 0, .external_lex_state = 8}, [9869] = {.lex_state = 0, .external_lex_state = 8}, - [9870] = {.lex_state = 0, .external_lex_state = 8}, + [9870] = {.lex_state = 23, .external_lex_state = 8}, [9871] = {.lex_state = 0, .external_lex_state = 8}, [9872] = {.lex_state = 0, .external_lex_state = 8}, - [9873] = {.lex_state = 0, .external_lex_state = 8}, - [9874] = {.lex_state = 0, .external_lex_state = 8}, + [9873] = {.lex_state = 0, .external_lex_state = 9}, + [9874] = {.lex_state = 23, .external_lex_state = 8}, [9875] = {.lex_state = 0, .external_lex_state = 8}, - [9876] = {.lex_state = 0, .external_lex_state = 8}, + [9876] = {.lex_state = 23, .external_lex_state = 8}, [9877] = {.lex_state = 0, .external_lex_state = 8}, - [9878] = {.lex_state = 14, .external_lex_state = 8}, - [9879] = {.lex_state = 0, .external_lex_state = 8}, + [9878] = {.lex_state = 0, .external_lex_state = 8}, + [9879] = {.lex_state = 23, .external_lex_state = 8}, [9880] = {.lex_state = 0, .external_lex_state = 8}, - [9881] = {.lex_state = 14, .external_lex_state = 8}, - [9882] = {.lex_state = 14, .external_lex_state = 8}, + [9881] = {.lex_state = 0, .external_lex_state = 8}, + [9882] = {.lex_state = 23, .external_lex_state = 8}, [9883] = {.lex_state = 0, .external_lex_state = 8}, - [9884] = {.lex_state = 14, .external_lex_state = 8}, - [9885] = {.lex_state = 14, .external_lex_state = 8}, + [9884] = {.lex_state = 0, .external_lex_state = 8}, + [9885] = {.lex_state = 0, .external_lex_state = 8}, [9886] = {.lex_state = 0, .external_lex_state = 8}, [9887] = {.lex_state = 0, .external_lex_state = 8}, [9888] = {.lex_state = 0, .external_lex_state = 8}, - [9889] = {.lex_state = 0, .external_lex_state = 9}, - [9890] = {.lex_state = 14, .external_lex_state = 8}, - [9891] = {.lex_state = 14, .external_lex_state = 8}, + [9889] = {.lex_state = 0, .external_lex_state = 8}, + [9890] = {.lex_state = 0, .external_lex_state = 8}, + [9891] = {.lex_state = 0, .external_lex_state = 9}, [9892] = {.lex_state = 0, .external_lex_state = 8}, - [9893] = {.lex_state = 0, .external_lex_state = 8}, - [9894] = {.lex_state = 0, .external_lex_state = 9}, - [9895] = {.lex_state = 0, .external_lex_state = 8}, - [9896] = {.lex_state = 14, .external_lex_state = 8}, - [9897] = {.lex_state = 14, .external_lex_state = 8}, - [9898] = {.lex_state = 14, .external_lex_state = 8}, - [9899] = {.lex_state = 14, .external_lex_state = 8}, - [9900] = {.lex_state = 14, .external_lex_state = 8}, - [9901] = {.lex_state = 14, .external_lex_state = 8}, - [9902] = {.lex_state = 14, .external_lex_state = 8}, - [9903] = {.lex_state = 14, .external_lex_state = 8}, + [9893] = {.lex_state = 23, .external_lex_state = 8}, + [9894] = {.lex_state = 0, .external_lex_state = 8}, + [9895] = {.lex_state = 0, .external_lex_state = 9}, + [9896] = {.lex_state = 0, .external_lex_state = 8}, + [9897] = {.lex_state = 23, .external_lex_state = 8}, + [9898] = {.lex_state = 23, .external_lex_state = 8}, + [9899] = {.lex_state = 318, .external_lex_state = 8}, + [9900] = {.lex_state = 0, .external_lex_state = 8}, + [9901] = {.lex_state = 0, .external_lex_state = 8}, + [9902] = {.lex_state = 0, .external_lex_state = 8}, + [9903] = {.lex_state = 0, .external_lex_state = 8}, [9904] = {.lex_state = 0, .external_lex_state = 8}, [9905] = {.lex_state = 0, .external_lex_state = 8}, - [9906] = {.lex_state = 0, .external_lex_state = 8}, - [9907] = {.lex_state = 0, .external_lex_state = 8}, + [9906] = {.lex_state = 23, .external_lex_state = 8}, + [9907] = {.lex_state = 23, .external_lex_state = 8}, [9908] = {.lex_state = 0, .external_lex_state = 8}, - [9909] = {.lex_state = 0, .external_lex_state = 8}, + [9909] = {.lex_state = 23, .external_lex_state = 8}, [9910] = {.lex_state = 0, .external_lex_state = 8}, - [9911] = {.lex_state = 14, .external_lex_state = 8}, + [9911] = {.lex_state = 0, .external_lex_state = 8}, [9912] = {.lex_state = 0, .external_lex_state = 8}, [9913] = {.lex_state = 0, .external_lex_state = 8}, - [9914] = {.lex_state = 14, .external_lex_state = 8}, - [9915] = {.lex_state = 0, .external_lex_state = 8}, + [9914] = {.lex_state = 23, .external_lex_state = 8}, + [9915] = {.lex_state = 23, .external_lex_state = 8}, [9916] = {.lex_state = 0, .external_lex_state = 8}, [9917] = {.lex_state = 0, .external_lex_state = 8}, [9918] = {.lex_state = 0, .external_lex_state = 8}, - [9919] = {.lex_state = 14, .external_lex_state = 8}, + [9919] = {.lex_state = 0, .external_lex_state = 8}, [9920] = {.lex_state = 0, .external_lex_state = 8}, - [9921] = {.lex_state = 14, .external_lex_state = 8}, - [9922] = {.lex_state = 0, .external_lex_state = 9}, - [9923] = {.lex_state = 0, .external_lex_state = 8}, + [9921] = {.lex_state = 0, .external_lex_state = 8}, + [9922] = {.lex_state = 0, .external_lex_state = 8}, + [9923] = {.lex_state = 23, .external_lex_state = 8}, [9924] = {.lex_state = 0, .external_lex_state = 8}, - [9925] = {.lex_state = 0, .external_lex_state = 8}, - [9926] = {.lex_state = 14, .external_lex_state = 8}, + [9925] = {.lex_state = 23, .external_lex_state = 8}, + [9926] = {.lex_state = 23, .external_lex_state = 8}, [9927] = {.lex_state = 0, .external_lex_state = 8}, [9928] = {.lex_state = 0, .external_lex_state = 8}, [9929] = {.lex_state = 0, .external_lex_state = 8}, - [9930] = {.lex_state = 14, .external_lex_state = 8}, + [9930] = {.lex_state = 0, .external_lex_state = 8}, [9931] = {.lex_state = 0, .external_lex_state = 8}, - [9932] = {.lex_state = 14, .external_lex_state = 8}, + [9932] = {.lex_state = 0, .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}, [9937] = {.lex_state = 0, .external_lex_state = 8}, - [9938] = {.lex_state = 14, .external_lex_state = 8}, + [9938] = {.lex_state = 0, .external_lex_state = 8}, [9939] = {.lex_state = 0, .external_lex_state = 8}, [9940] = {.lex_state = 0, .external_lex_state = 8}, [9941] = {.lex_state = 0, .external_lex_state = 8}, [9942] = {.lex_state = 0, .external_lex_state = 8}, - [9943] = {.lex_state = 14, .external_lex_state = 8}, + [9943] = {.lex_state = 0, .external_lex_state = 8}, [9944] = {.lex_state = 0, .external_lex_state = 8}, [9945] = {.lex_state = 0, .external_lex_state = 8}, - [9946] = {.lex_state = 14, .external_lex_state = 8}, + [9946] = {.lex_state = 0, .external_lex_state = 8}, [9947] = {.lex_state = 0, .external_lex_state = 8}, - [9948] = {.lex_state = 14, .external_lex_state = 8}, + [9948] = {.lex_state = 0, .external_lex_state = 8}, [9949] = {.lex_state = 0, .external_lex_state = 8}, - [9950] = {.lex_state = 14, .external_lex_state = 8}, + [9950] = {.lex_state = 0, .external_lex_state = 8}, [9951] = {.lex_state = 0, .external_lex_state = 8}, - [9952] = {.lex_state = 14, .external_lex_state = 8}, + [9952] = {.lex_state = 0, .external_lex_state = 8}, [9953] = {.lex_state = 0, .external_lex_state = 8}, [9954] = {.lex_state = 0, .external_lex_state = 8}, - [9955] = {.lex_state = 14, .external_lex_state = 8}, + [9955] = {.lex_state = 0, .external_lex_state = 8}, [9956] = {.lex_state = 0, .external_lex_state = 8}, - [9957] = {.lex_state = 14, .external_lex_state = 8}, - [9958] = {.lex_state = 0, .external_lex_state = 8}, - [9959] = {.lex_state = 0, .external_lex_state = 8}, - [9960] = {.lex_state = 14, .external_lex_state = 8}, - [9961] = {.lex_state = 14, .external_lex_state = 8}, + [9957] = {.lex_state = 23, .external_lex_state = 8}, + [9958] = {.lex_state = 23, .external_lex_state = 8}, + [9959] = {.lex_state = 23, .external_lex_state = 8}, + [9960] = {.lex_state = 0, .external_lex_state = 8}, + [9961] = {.lex_state = 0, .external_lex_state = 8}, [9962] = {.lex_state = 0, .external_lex_state = 8}, [9963] = {.lex_state = 0, .external_lex_state = 8}, [9964] = {.lex_state = 0, .external_lex_state = 8}, - [9965] = {.lex_state = 14, .external_lex_state = 8}, - [9966] = {.lex_state = 14, .external_lex_state = 8}, + [9965] = {.lex_state = 23, .external_lex_state = 8}, + [9966] = {.lex_state = 0, .external_lex_state = 8}, [9967] = {.lex_state = 0, .external_lex_state = 8}, - [9968] = {.lex_state = 0, .external_lex_state = 8}, + [9968] = {.lex_state = 23, .external_lex_state = 8}, [9969] = {.lex_state = 0, .external_lex_state = 8}, - [9970] = {.lex_state = 14, .external_lex_state = 8}, - [9971] = {.lex_state = 0, .external_lex_state = 8}, + [9970] = {.lex_state = 0, .external_lex_state = 8}, + [9971] = {.lex_state = 23, .external_lex_state = 8}, [9972] = {.lex_state = 0, .external_lex_state = 8}, - [9973] = {.lex_state = 14, .external_lex_state = 8}, + [9973] = {.lex_state = 23, .external_lex_state = 8}, [9974] = {.lex_state = 0, .external_lex_state = 8}, [9975] = {.lex_state = 0, .external_lex_state = 8}, - [9976] = {.lex_state = 14, .external_lex_state = 8}, - [9977] = {.lex_state = 14, .external_lex_state = 8}, + [9976] = {.lex_state = 0, .external_lex_state = 8}, + [9977] = {.lex_state = 0, .external_lex_state = 8}, [9978] = {.lex_state = 0, .external_lex_state = 8}, - [9979] = {.lex_state = 0, .external_lex_state = 8}, - [9980] = {.lex_state = 14, .external_lex_state = 8}, - [9981] = {.lex_state = 14, .external_lex_state = 8}, + [9979] = {.lex_state = 23, .external_lex_state = 8}, + [9980] = {.lex_state = 23, .external_lex_state = 8}, + [9981] = {.lex_state = 23, .external_lex_state = 8}, [9982] = {.lex_state = 0, .external_lex_state = 8}, [9983] = {.lex_state = 0, .external_lex_state = 8}, - [9984] = {.lex_state = 0, .external_lex_state = 8}, - [9985] = {.lex_state = 14, .external_lex_state = 8}, - [9986] = {.lex_state = 14, .external_lex_state = 8}, - [9987] = {.lex_state = 0, .external_lex_state = 8}, + [9984] = {.lex_state = 0, .external_lex_state = 9}, + [9985] = {.lex_state = 23, .external_lex_state = 8}, + [9986] = {.lex_state = 0, .external_lex_state = 8}, + [9987] = {.lex_state = 0, .external_lex_state = 9}, [9988] = {.lex_state = 0, .external_lex_state = 8}, - [9989] = {.lex_state = 0, .external_lex_state = 8}, - [9990] = {.lex_state = 0, .external_lex_state = 8}, + [9989] = {.lex_state = 23, .external_lex_state = 8}, + [9990] = {.lex_state = 23, .external_lex_state = 8}, [9991] = {.lex_state = 0, .external_lex_state = 8}, - [9992] = {.lex_state = 0, .external_lex_state = 8}, - [9993] = {.lex_state = 0, .external_lex_state = 8}, - [9994] = {.lex_state = 14, .external_lex_state = 8}, - [9995] = {.lex_state = 14, .external_lex_state = 8}, - [9996] = {.lex_state = 0, .external_lex_state = 8}, + [9992] = {.lex_state = 23, .external_lex_state = 8}, + [9993] = {.lex_state = 23, .external_lex_state = 8}, + [9994] = {.lex_state = 0, .external_lex_state = 8}, + [9995] = {.lex_state = 23, .external_lex_state = 8}, + [9996] = {.lex_state = 23, .external_lex_state = 8}, [9997] = {.lex_state = 0, .external_lex_state = 8}, - [9998] = {.lex_state = 0, .external_lex_state = 8}, - [9999] = {.lex_state = 14, .external_lex_state = 8}, - [10000] = {.lex_state = 0, .external_lex_state = 8}, - [10001] = {.lex_state = 14, .external_lex_state = 8}, - [10002] = {.lex_state = 14, .external_lex_state = 8}, + [9998] = {.lex_state = 23, .external_lex_state = 8}, + [9999] = {.lex_state = 0, .external_lex_state = 8}, + [10000] = {.lex_state = 23, .external_lex_state = 8}, + [10001] = {.lex_state = 0, .external_lex_state = 8}, + [10002] = {.lex_state = 0, .external_lex_state = 8}, [10003] = {.lex_state = 0, .external_lex_state = 8}, [10004] = {.lex_state = 0, .external_lex_state = 8}, - [10005] = {.lex_state = 14, .external_lex_state = 8}, - [10006] = {.lex_state = 14, .external_lex_state = 8}, - [10007] = {.lex_state = 0, .external_lex_state = 8}, + [10005] = {.lex_state = 23, .external_lex_state = 8}, + [10006] = {.lex_state = 0, .external_lex_state = 8}, + [10007] = {.lex_state = 23, .external_lex_state = 8}, [10008] = {.lex_state = 0, .external_lex_state = 8}, - [10009] = {.lex_state = 14, .external_lex_state = 8}, - [10010] = {.lex_state = 14, .external_lex_state = 8}, - [10011] = {.lex_state = 0, .external_lex_state = 8}, + [10009] = {.lex_state = 0, .external_lex_state = 8}, + [10010] = {.lex_state = 0, .external_lex_state = 8}, + [10011] = {.lex_state = 23, .external_lex_state = 8}, [10012] = {.lex_state = 0, .external_lex_state = 8}, - [10013] = {.lex_state = 14, .external_lex_state = 8}, - [10014] = {.lex_state = 14, .external_lex_state = 8}, + [10013] = {.lex_state = 0, .external_lex_state = 9}, + [10014] = {.lex_state = 23, .external_lex_state = 8}, [10015] = {.lex_state = 0, .external_lex_state = 8}, [10016] = {.lex_state = 0, .external_lex_state = 8}, - [10017] = {.lex_state = 14, .external_lex_state = 8}, - [10018] = {.lex_state = 14, .external_lex_state = 8}, - [10019] = {.lex_state = 0, .external_lex_state = 8}, - [10020] = {.lex_state = 14, .external_lex_state = 8}, - [10021] = {.lex_state = 14, .external_lex_state = 8}, + [10017] = {.lex_state = 0, .external_lex_state = 8}, + [10018] = {.lex_state = 0, .external_lex_state = 8}, + [10019] = {.lex_state = 23, .external_lex_state = 8}, + [10020] = {.lex_state = 0, .external_lex_state = 8}, + [10021] = {.lex_state = 0, .external_lex_state = 9}, [10022] = {.lex_state = 0, .external_lex_state = 8}, - [10023] = {.lex_state = 14, .external_lex_state = 8}, - [10024] = {.lex_state = 14, .external_lex_state = 8}, + [10023] = {.lex_state = 23, .external_lex_state = 8}, + [10024] = {.lex_state = 0, .external_lex_state = 8}, [10025] = {.lex_state = 0, .external_lex_state = 8}, - [10026] = {.lex_state = 14, .external_lex_state = 8}, - [10027] = {.lex_state = 14, .external_lex_state = 8}, + [10026] = {.lex_state = 23, .external_lex_state = 8}, + [10027] = {.lex_state = 0, .external_lex_state = 8}, [10028] = {.lex_state = 0, .external_lex_state = 8}, - [10029] = {.lex_state = 0, .external_lex_state = 8}, + [10029] = {.lex_state = 23, .external_lex_state = 8}, [10030] = {.lex_state = 0, .external_lex_state = 8}, - [10031] = {.lex_state = 14, .external_lex_state = 8}, - [10032] = {.lex_state = 14, .external_lex_state = 8}, - [10033] = {.lex_state = 0, .external_lex_state = 8}, - [10034] = {.lex_state = 0, .external_lex_state = 9}, - [10035] = {.lex_state = 14, .external_lex_state = 8}, - [10036] = {.lex_state = 0, .external_lex_state = 9}, - [10037] = {.lex_state = 14, .external_lex_state = 8}, + [10031] = {.lex_state = 0, .external_lex_state = 8}, + [10032] = {.lex_state = 0, .external_lex_state = 8}, + [10033] = {.lex_state = 23, .external_lex_state = 8}, + [10034] = {.lex_state = 0, .external_lex_state = 8}, + [10035] = {.lex_state = 23, .external_lex_state = 8}, + [10036] = {.lex_state = 0, .external_lex_state = 8}, + [10037] = {.lex_state = 0, .external_lex_state = 8}, [10038] = {.lex_state = 0, .external_lex_state = 8}, - [10039] = {.lex_state = 14, .external_lex_state = 8}, - [10040] = {.lex_state = 14, .external_lex_state = 8}, - [10041] = {.lex_state = 14, .external_lex_state = 8}, - [10042] = {.lex_state = 14, .external_lex_state = 8}, - [10043] = {.lex_state = 14, .external_lex_state = 8}, - [10044] = {.lex_state = 14, .external_lex_state = 8}, - [10045] = {.lex_state = 14, .external_lex_state = 8}, - [10046] = {.lex_state = 14, .external_lex_state = 8}, - [10047] = {.lex_state = 14, .external_lex_state = 8}, - [10048] = {.lex_state = 14, .external_lex_state = 8}, + [10039] = {.lex_state = 0, .external_lex_state = 8}, + [10040] = {.lex_state = 23, .external_lex_state = 8}, + [10041] = {.lex_state = 0, .external_lex_state = 8}, + [10042] = {.lex_state = 23, .external_lex_state = 8}, + [10043] = {.lex_state = 0, .external_lex_state = 8}, + [10044] = {.lex_state = 0, .external_lex_state = 8}, + [10045] = {.lex_state = 23, .external_lex_state = 8}, + [10046] = {.lex_state = 0, .external_lex_state = 8}, + [10047] = {.lex_state = 0, .external_lex_state = 8}, + [10048] = {.lex_state = 23, .external_lex_state = 8}, [10049] = {.lex_state = 0, .external_lex_state = 8}, [10050] = {.lex_state = 0, .external_lex_state = 8}, - [10051] = {.lex_state = 0, .external_lex_state = 8}, - [10052] = {.lex_state = 14, .external_lex_state = 8}, + [10051] = {.lex_state = 23, .external_lex_state = 8}, + [10052] = {.lex_state = 23, .external_lex_state = 8}, [10053] = {.lex_state = 0, .external_lex_state = 8}, [10054] = {.lex_state = 0, .external_lex_state = 8}, - [10055] = {.lex_state = 0, .external_lex_state = 8}, + [10055] = {.lex_state = 23, .external_lex_state = 8}, [10056] = {.lex_state = 0, .external_lex_state = 8}, [10057] = {.lex_state = 0, .external_lex_state = 8}, - [10058] = {.lex_state = 0, .external_lex_state = 8}, + [10058] = {.lex_state = 23, .external_lex_state = 8}, [10059] = {.lex_state = 0, .external_lex_state = 8}, [10060] = {.lex_state = 0, .external_lex_state = 8}, - [10061] = {.lex_state = 0, .external_lex_state = 8}, - [10062] = {.lex_state = 0, .external_lex_state = 8}, - [10063] = {.lex_state = 14, .external_lex_state = 8}, - [10064] = {.lex_state = 311, .external_lex_state = 8}, + [10061] = {.lex_state = 23, .external_lex_state = 8}, + [10062] = {.lex_state = 23, .external_lex_state = 8}, + [10063] = {.lex_state = 0, .external_lex_state = 8}, + [10064] = {.lex_state = 0, .external_lex_state = 8}, + [10065] = {.lex_state = 0, .external_lex_state = 8}, + [10066] = {.lex_state = 0, .external_lex_state = 8}, + [10067] = {.lex_state = 0, .external_lex_state = 8}, + [10068] = {.lex_state = 0, .external_lex_state = 8}, + [10069] = {.lex_state = 0, .external_lex_state = 8}, + [10070] = {.lex_state = 0, .external_lex_state = 8}, + [10071] = {.lex_state = 23, .external_lex_state = 8}, + [10072] = {.lex_state = 23, .external_lex_state = 8}, + [10073] = {.lex_state = 0, .external_lex_state = 8}, + [10074] = {.lex_state = 0, .external_lex_state = 8}, + [10075] = {.lex_state = 0, .external_lex_state = 8}, + [10076] = {.lex_state = 23, .external_lex_state = 8}, + [10077] = {.lex_state = 0, .external_lex_state = 8}, + [10078] = {.lex_state = 0, .external_lex_state = 8}, + [10079] = {.lex_state = 0, .external_lex_state = 8}, + [10080] = {.lex_state = 0, .external_lex_state = 8}, + [10081] = {.lex_state = 0, .external_lex_state = 8}, + [10082] = {.lex_state = 0, .external_lex_state = 8}, + [10083] = {.lex_state = 0, .external_lex_state = 8}, + [10084] = {.lex_state = 23, .external_lex_state = 8}, + [10085] = {.lex_state = 23, .external_lex_state = 8}, + [10086] = {.lex_state = 0, .external_lex_state = 8}, + [10087] = {.lex_state = 0, .external_lex_state = 8}, + [10088] = {.lex_state = 0, .external_lex_state = 8}, + [10089] = {.lex_state = 23, .external_lex_state = 8}, + [10090] = {.lex_state = 23, .external_lex_state = 8}, + [10091] = {.lex_state = 23, .external_lex_state = 8}, + [10092] = {.lex_state = 0, .external_lex_state = 8}, + [10093] = {.lex_state = 0, .external_lex_state = 8}, + [10094] = {.lex_state = 23, .external_lex_state = 8}, + [10095] = {.lex_state = 23, .external_lex_state = 8}, + [10096] = {.lex_state = 0, .external_lex_state = 8}, + [10097] = {.lex_state = 0, .external_lex_state = 8}, + [10098] = {.lex_state = 23, .external_lex_state = 8}, + [10099] = {.lex_state = 23, .external_lex_state = 8}, + [10100] = {.lex_state = 0, .external_lex_state = 8}, + [10101] = {.lex_state = 0, .external_lex_state = 8}, + [10102] = {.lex_state = 23, .external_lex_state = 8}, + [10103] = {.lex_state = 23, .external_lex_state = 8}, + [10104] = {.lex_state = 0, .external_lex_state = 8}, + [10105] = {.lex_state = 0, .external_lex_state = 8}, + [10106] = {.lex_state = 23, .external_lex_state = 8}, + [10107] = {.lex_state = 23, .external_lex_state = 8}, + [10108] = {.lex_state = 0, .external_lex_state = 8}, + [10109] = {.lex_state = 0, .external_lex_state = 8}, + [10110] = {.lex_state = 23, .external_lex_state = 8}, + [10111] = {.lex_state = 23, .external_lex_state = 8}, + [10112] = {.lex_state = 0, .external_lex_state = 8}, + [10113] = {.lex_state = 23, .external_lex_state = 8}, + [10114] = {.lex_state = 23, .external_lex_state = 8}, + [10115] = {.lex_state = 0, .external_lex_state = 8}, + [10116] = {.lex_state = 23, .external_lex_state = 8}, + [10117] = {.lex_state = 0, .external_lex_state = 8}, + [10118] = {.lex_state = 23, .external_lex_state = 8}, + [10119] = {.lex_state = 0, .external_lex_state = 8}, + [10120] = {.lex_state = 0, .external_lex_state = 8}, + [10121] = {.lex_state = 23, .external_lex_state = 8}, + [10122] = {.lex_state = 23, .external_lex_state = 8}, + [10123] = {.lex_state = 0, .external_lex_state = 8}, + [10124] = {.lex_state = 0, .external_lex_state = 8}, + [10125] = {.lex_state = 0, .external_lex_state = 8}, + [10126] = {.lex_state = 23, .external_lex_state = 8}, + [10127] = {.lex_state = 23, .external_lex_state = 8}, + [10128] = {.lex_state = 23, .external_lex_state = 8}, + [10129] = {.lex_state = 23, .external_lex_state = 8}, + [10130] = {.lex_state = 23, .external_lex_state = 8}, + [10131] = {.lex_state = 23, .external_lex_state = 8}, + [10132] = {.lex_state = 23, .external_lex_state = 8}, + [10133] = {.lex_state = 23, .external_lex_state = 8}, + [10134] = {.lex_state = 23, .external_lex_state = 8}, + [10135] = {.lex_state = 23, .external_lex_state = 8}, + [10136] = {.lex_state = 0, .external_lex_state = 8}, + [10137] = {.lex_state = 23, .external_lex_state = 8}, + [10138] = {.lex_state = 0, .external_lex_state = 8}, + [10139] = {.lex_state = 23, .external_lex_state = 8}, + [10140] = {.lex_state = 0, .external_lex_state = 8}, + [10141] = {.lex_state = 23, .external_lex_state = 8}, + [10142] = {.lex_state = 23, .external_lex_state = 8}, + [10143] = {.lex_state = 0, .external_lex_state = 8}, + [10144] = {.lex_state = 0, .external_lex_state = 8}, + [10145] = {.lex_state = 0, .external_lex_state = 8}, + [10146] = {.lex_state = 0, .external_lex_state = 8}, + [10147] = {.lex_state = 23, .external_lex_state = 8}, + [10148] = {.lex_state = 0, .external_lex_state = 8}, + [10149] = {.lex_state = 0, .external_lex_state = 8}, + [10150] = {.lex_state = 0, .external_lex_state = 8}, + [10151] = {.lex_state = 0, .external_lex_state = 8}, + [10152] = {.lex_state = 23, .external_lex_state = 8}, + [10153] = {.lex_state = 322, .external_lex_state = 8}, }; enum { @@ -33066,6 +33901,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(1), [anon_sym_continue_AT] = ACTIONS(1), [anon_sym_break_AT] = ACTIONS(1), + [anon_sym_this_AT] = ACTIONS(1), + [anon_sym_super_AT] = ACTIONS(1), + [anon_sym_AT2] = ACTIONS(1), [sym_real_literal] = ACTIONS(1), [sym_integer_literal] = ACTIONS(1), [sym_hex_literal] = ACTIONS(1), @@ -33087,92 +33925,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(9972), - [sym_shebang_line] = STATE(52), - [sym_file_annotation] = STATE(53), - [sym_package_header] = STATE(72), - [sym_import_list] = STATE(62), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_source_file_repeat2] = STATE(62), - [aux_sym_source_file_repeat3] = STATE(247), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_source_file] = STATE(10057), + [sym_shebang_line] = STATE(53), + [sym_file_annotation] = STATE(52), + [sym_package_header] = STATE(58), + [sym_import_list] = STATE(69), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(52), + [aux_sym_source_file_repeat2] = STATE(69), + [aux_sym_source_file_repeat3] = STATE(252), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [ts_builtin_sym_end] = ACTIONS(5), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_POUND_BANG] = ACTIONS(9), @@ -33243,174 +34083,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [2] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9427), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(117), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(153), - [anon_sym_do] = ACTIONS(155), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_BANG_BANG] = ACTIONS(117), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [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_RBRACE] = ACTIONS(121), + [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_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_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_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(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(175), + [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(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33429,181 +34273,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [3] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4767), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_DASH_GT] = ACTIONS(201), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(207), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_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_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33622,181 +34470,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [4] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4834), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_DASH_GT] = ACTIONS(247), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33815,181 +34667,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [5] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3317), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(201), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(305), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(207), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34008,181 +34864,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [6] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3278), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(247), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(305), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(297), + [anon_sym_as] = ACTIONS(299), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(299), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(297), + [anon_sym_RPAREN] = ACTIONS(297), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_where] = ACTIONS(299), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_DASH_GT] = ACTIONS(297), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_in] = ACTIONS(299), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_QMARK_COLON] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(299), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(297), + [anon_sym_DASH_EQ] = ACTIONS(297), + [anon_sym_STAR_EQ] = ACTIONS(297), + [anon_sym_SLASH_EQ] = ACTIONS(297), + [anon_sym_PERCENT_EQ] = ACTIONS(297), + [anon_sym_BANG_EQ] = ACTIONS(299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(297), + [anon_sym_GT_EQ] = ACTIONS(297), + [anon_sym_BANGin] = ACTIONS(297), + [anon_sym_is] = ACTIONS(299), + [anon_sym_BANGis] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(299), + [anon_sym_PERCENT] = ACTIONS(299), + [anon_sym_as_QMARK] = ACTIONS(297), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(297), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34201,178 +35061,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [7] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1069), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(361), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(363), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -34391,179 +35255,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [8] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3867), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34582,179 +35450,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [9] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3277), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34773,179 +35645,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [10] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3257), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(501), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_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(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34964,179 +35840,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [11] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5020), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(593), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(501), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35155,179 +36035,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(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [12] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3779), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [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), @@ -35346,179 +36230,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [13] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(4985), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(593), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(611), [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), [anon_sym_PLUS_PLUS] = ACTIONS(613), [anon_sym_DASH_DASH] = ACTIONS(613), [anon_sym_BANG] = ACTIONS(611), - [anon_sym_BANG_BANG] = ACTIONS(201), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(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), @@ -35537,179 +36425,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(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [14] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9427), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(147), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(153), - [anon_sym_do] = ACTIONS(155), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_BANG_BANG] = ACTIONS(117), + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(299), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(299), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(297), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_where] = ACTIONS(299), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(321), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_in] = ACTIONS(299), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_QMARK_COLON] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(299), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(297), + [anon_sym_DASH_EQ] = ACTIONS(297), + [anon_sym_STAR_EQ] = ACTIONS(297), + [anon_sym_SLASH_EQ] = ACTIONS(297), + [anon_sym_PERCENT_EQ] = ACTIONS(297), + [anon_sym_BANG_EQ] = ACTIONS(299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(297), + [anon_sym_GT_EQ] = ACTIONS(297), + [anon_sym_BANGin] = ACTIONS(297), + [anon_sym_is] = ACTIONS(299), + [anon_sym_BANGis] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(299), + [anon_sym_PERCENT] = ACTIONS(299), + [anon_sym_as_QMARK] = ACTIONS(297), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(297), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35728,179 +36620,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym__automatic_semicolon] = ACTIONS(297), + [sym_safe_nav] = ACTIONS(297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [15] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1144), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(361), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(363), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -35919,177 +36815,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [16] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1144), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(631), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_BANG_BANG] = ACTIONS(201), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -36108,178 +37008,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [17] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3278), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(663), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(681), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36298,176 +37202,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [18] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3867), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(695), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(681), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_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(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36486,177 +37395,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [19] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3779), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(695), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(707), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [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), @@ -36675,177 +37587,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [20] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3277), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(727), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(739), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36864,178 +37780,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [21] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4834), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(759), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(249), - [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(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(739), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37054,176 +37973,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [22] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(4985), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(785), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(203), - [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(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(771), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37242,177 +38167,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(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [23] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3257), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(727), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(771), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37431,178 +38360,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [24] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4767), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(759), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(203), - [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(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(707), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_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(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -37621,176 +38552,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [25] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1069), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(631), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_BANG_BANG] = ACTIONS(247), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_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(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -37809,178 +38745,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [26] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3317), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(663), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(803), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(207), + [anon_sym_DASH_EQ] = ACTIONS(207), + [anon_sym_STAR_EQ] = ACTIONS(207), + [anon_sym_SLASH_EQ] = ACTIONS(207), + [anon_sym_PERCENT_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(209), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37999,176 +38938,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [27] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5020), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(249), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(785), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(249), - [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(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(803), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38187,176 +39131,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), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [28] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4767), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(201), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38375,175 +39323,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [29] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4834), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(247), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(207), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38562,175 +39514,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [30] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3278), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_DASH_GT] = ACTIONS(247), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_DASH_GT] = ACTIONS(207), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38749,175 +39705,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [31] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3317), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_DASH_GT] = ACTIONS(201), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_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(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38936,172 +39896,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [32] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3779), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39120,173 +40084,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [33] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3867), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39305,173 +40273,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [34] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1069), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -39490,358 +40462,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [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(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1144), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_BANG_BANG] = ACTIONS(201), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [36] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3257), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -39860,173 +40651,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [37] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3277), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), + [36] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -40045,167 +40840,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [38] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(4985), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), + [37] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(201), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(207), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(203), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(209), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_BANG_BANG] = ACTIONS(201), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -40236,167 +41035,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [39] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5020), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_where] = ACTIONS(249), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_BANG_BANG] = ACTIONS(247), + [38] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_where] = ACTIONS(209), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40415,171 +41218,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(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [40] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1144), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_BANG_BANG] = ACTIONS(201), + [39] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40598,172 +41407,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [41] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3317), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_BANG_BANG] = ACTIONS(201), + [40] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40782,171 +41594,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [42] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4834), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), + [41] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3986), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), [anon_sym_for] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(249), + [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(249), - [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(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_BANG_BANG] = ACTIONS(247), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_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(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40965,171 +41781,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [43] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4767), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(203), - [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(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_BANG_BANG] = ACTIONS(201), + [42] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5236), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_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_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), @@ -41148,170 +41968,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [44] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3257), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), + [43] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5214), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(1071), - [anon_sym_in] = ACTIONS(249), + [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_BANG_BANG] = ACTIONS(247), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -41330,171 +42155,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = 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), }, - [45] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1069), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_BANG_BANG] = ACTIONS(247), + [44] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3473), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41513,171 +42343,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [46] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3277), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_BANG_BANG] = ACTIONS(201), + [45] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41696,171 +42530,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [47] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3867), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_BANG_BANG] = ACTIONS(247), + [46] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4701), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41879,172 +42717,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [48] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3278), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), + [47] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3487), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_BANG_BANG] = ACTIONS(247), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42063,170 +42904,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [49] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5020), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(249), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_QMARK_COLON] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(247), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_as_QMARK] = ACTIONS(247), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(247), + [48] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42245,171 +43090,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_safe_nav] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [50] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3779), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), + [49] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1059), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_BANG_BANG] = ACTIONS(201), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(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(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42428,171 +43277,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [51] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(4985), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(203), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(201), + [50] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3215), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_BANG_BANG] = ACTIONS(207), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42611,111 +43464,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [51] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3943), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_QMARK_COLON] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [52] = { - [sym_file_annotation] = STATE(54), - [sym_package_header] = STATE(68), - [sym_import_list] = STATE(66), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat1] = STATE(54), - [aux_sym_source_file_repeat2] = STATE(66), - [aux_sym_source_file_repeat3] = STATE(253), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1123), + [sym_file_annotation] = STATE(3122), + [sym_package_header] = STATE(67), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(3122), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -42784,103 +43828,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [53] = { - [sym_file_annotation] = STATE(3488), - [sym_package_header] = STATE(68), - [sym_import_list] = STATE(66), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat1] = STATE(3488), - [aux_sym_source_file_repeat2] = STATE(66), - [aux_sym_source_file_repeat3] = STATE(253), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1123), + [sym_file_annotation] = STATE(54), + [sym_package_header] = STATE(67), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(54), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -42949,103 +43997,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [54] = { - [sym_file_annotation] = STATE(3488), - [sym_package_header] = STATE(76), - [sym_import_list] = STATE(61), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat1] = STATE(3488), - [aux_sym_source_file_repeat2] = STATE(61), - [aux_sym_source_file_repeat3] = STATE(217), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1125), + [sym_file_annotation] = STATE(3122), + [sym_package_header] = STATE(74), + [sym_import_list] = STATE(75), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat1] = STATE(3122), + [aux_sym_source_file_repeat2] = STATE(75), + [aux_sym_source_file_repeat3] = STATE(241), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -43114,145 +44166,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [55] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9427), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(153), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_in] = ACTIONS(299), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(299), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(297), + [anon_sym_is] = ACTIONS(299), + [anon_sym_BANGis] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43271,151 +44327,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym__automatic_semicolon] = ACTIONS(297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [56] = { - [sym_type_alias] = STATE(5430), - [sym__declaration] = STATE(5430), - [sym_class_declaration] = STATE(5430), - [sym_function_declaration] = STATE(5430), - [sym_property_declaration] = STATE(5430), - [sym_getter] = STATE(5430), - [sym_setter] = STATE(5430), - [sym_object_declaration] = STATE(5430), - [sym__statement] = STATE(5430), - [sym_control_structure_body] = STATE(5454), - [sym__block] = STATE(5430), - [sym__loop_statement] = STATE(5430), - [sym_for_statement] = STATE(5430), - [sym_while_statement] = STATE(5430), - [sym_do_while_statement] = STATE(5430), - [sym_assignment] = STATE(5430), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8253), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5405), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -43434,151 +44494,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [57] = { - [sym_type_alias] = STATE(5430), - [sym__declaration] = STATE(5430), - [sym_class_declaration] = STATE(5430), - [sym_function_declaration] = STATE(5430), - [sym_property_declaration] = STATE(5430), - [sym_getter] = STATE(5430), - [sym_setter] = STATE(5430), - [sym_object_declaration] = STATE(5430), - [sym__statement] = STATE(5430), - [sym_control_structure_body] = STATE(5428), - [sym__block] = STATE(5430), - [sym__loop_statement] = STATE(5430), - [sym_for_statement] = STATE(5430), - [sym_while_statement] = STATE(5430), - [sym_do_while_statement] = STATE(5430), - [sym_assignment] = STATE(5430), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8253), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(249), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(249), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANGin] = ACTIONS(247), - [anon_sym_is] = ACTIONS(249), - [anon_sym_BANGis] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5417), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_in] = ACTIONS(209), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(209), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANGin] = ACTIONS(207), + [anon_sym_is] = ACTIONS(209), + [anon_sym_BANGis] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -43597,116 +44661,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [58] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9823), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9569), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1151), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43716,7 +44785,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43765,109 +44833,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [59] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9502), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9614), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9892), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1157), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43877,7 +44949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43926,109 +44998,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [60] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9554), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9694), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9793), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1161), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44038,7 +45114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1163), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44087,110 +45163,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [61] = { - [sym_import_list] = STATE(3131), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(3131), - [aux_sym_source_file_repeat3] = STATE(235), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1165), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9731), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1185), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44200,6 +45279,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), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44248,110 +45328,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [62] = { - [sym_import_list] = STATE(3131), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(3131), - [aux_sym_source_file_repeat3] = STATE(253), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1123), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9608), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9643), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1187), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44361,6 +45444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44409,109 +45493,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [63] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9544), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9639), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9570), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9740), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1167), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44521,7 +45609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1169), + [anon_sym_DASH_GT] = ACTIONS(1193), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44570,109 +45658,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [64] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9529), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9694), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9531), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9670), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1171), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44682,7 +45774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1163), + [anon_sym_DASH_GT] = ACTIONS(1197), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44731,109 +45823,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [65] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9782), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9639), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9514), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9740), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1173), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44843,7 +45939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1169), + [anon_sym_DASH_GT] = ACTIONS(1193), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44892,102 +45988,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [66] = { - [sym_import_list] = STATE(3131), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(3131), - [aux_sym_source_file_repeat3] = STATE(217), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1125), + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(228), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1201), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), @@ -45053,109 +46153,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [67] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9467), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9569), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_import_list] = STATE(75), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(75), + [aux_sym_source_file_repeat3] = STATE(241), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45165,7 +46270,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45214,110 +46318,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [68] = { - [sym_import_list] = STATE(61), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(61), - [aux_sym_source_file_repeat3] = STATE(217), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1125), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9466), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1203), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45327,6 +46434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45375,109 +46483,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [69] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9429), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9670), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1177), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45487,7 +46600,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45536,109 +46648,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [70] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9656), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9913), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(241), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45648,7 +46765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45697,109 +46813,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [71] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9915), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9913), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9825), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1185), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45809,7 +46929,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(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45858,110 +46978,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [72] = { - [sym_import_list] = STATE(66), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(66), - [aux_sym_source_file_repeat3] = STATE(253), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1123), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9463), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9670), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1209), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45971,6 +47094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1197), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46019,110 +47143,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [73] = { - [sym_import_list] = STATE(3131), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(3131), - [aux_sym_source_file_repeat3] = STATE(241), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1187), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9558), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9740), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46132,6 +47259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1193), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46180,109 +47308,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [74] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9742), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9694), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_import_list] = STATE(66), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(66), + [aux_sym_source_file_repeat3] = STATE(216), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1213), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1189), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46292,7 +47425,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(1163), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46341,109 +47473,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [75] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9455), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9614), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_source_file_repeat3] = STATE(216), + [aux_sym_import_list_repeat1] = STATE(8751), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1213), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1191), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46453,7 +47590,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(1159), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46502,110 +47638,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [76] = { - [sym_import_list] = STATE(73), - [sym_import_header] = STATE(8701), - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat2] = STATE(73), - [aux_sym_source_file_repeat3] = STATE(235), - [aux_sym_import_list_repeat1] = STATE(8701), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1165), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9883), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1215), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46615,6 +47754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46663,109 +47803,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [77] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9880), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9569), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9745), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1193), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46775,7 +47919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1155), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46824,109 +47968,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [78] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9886), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9670), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9539), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9643), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1195), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46936,7 +48084,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(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46985,109 +48133,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [79] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(10028), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9857), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), [sym_lambda_parameters] = STATE(9670), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1197), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47097,7 +48249,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(1197), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47146,109 +48298,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [80] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9417), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9614), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9932), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9643), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1199), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47258,7 +48414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47307,109 +48463,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [81] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9769), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9913), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10037), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1201), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47419,7 +48579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47468,109 +48628,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [82] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9381), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9913), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9783), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9692), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1203), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47629,109 +48793,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [83] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9543), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9569), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9880), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1205), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47741,7 +48909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1155), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47790,109 +48958,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [84] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9397), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9639), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9523), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9881), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1207), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47902,7 +49074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1169), + [anon_sym_DASH_GT] = ACTIONS(1205), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47951,109 +49123,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [85] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_variable_declaration] = STATE(9008), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9454), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_multi_variable_declaration] = STATE(9008), - [sym_lambda_parameters] = STATE(9670), - [sym__lambda_parameter] = STATE(9008), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5186), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_variable_declaration] = STATE(8820), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9597), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_multi_variable_declaration] = STATE(8820), + [sym_lambda_parameters] = STATE(9519), + [sym__lambda_parameter] = STATE(8820), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5308), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1209), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -48112,140 +49288,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [86] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9427), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [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), + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48264,147 +49444,1285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym__automatic_semicolon] = ACTIONS(297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [87] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(4186), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1252), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [88] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(4061), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [89] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4318), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [90] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(4286), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [91] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5216), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [92] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(2210), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [93] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(5441), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [94] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4738), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48423,145 +50741,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [88] = { - [sym_type_alias] = STATE(9334), - [sym__declaration] = STATE(9334), - [sym_class_declaration] = STATE(9334), - [sym_function_declaration] = STATE(9334), - [sym_property_declaration] = STATE(9334), - [sym_getter] = STATE(9334), - [sym_setter] = STATE(9334), - [sym_object_declaration] = STATE(9334), - [sym__statement] = STATE(9334), - [sym_control_structure_body] = STATE(9151), - [sym__block] = STATE(9334), - [sym__loop_statement] = STATE(9334), - [sym_for_statement] = STATE(9334), - [sym_while_statement] = STATE(9334), - [sym_do_while_statement] = STATE(9334), - [sym_assignment] = STATE(9334), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(247), - [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), + [95] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3886), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48580,147 +50903,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [89] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(4254), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [96] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3465), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48739,146 +51065,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [90] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1295), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [97] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(4077), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1289), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -48897,146 +51227,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [91] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4650), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), + [98] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(4177), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(1293), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -49055,146 +51389,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [92] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(4001), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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), + [99] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4138), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49213,146 +51551,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [93] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5243), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [100] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1035), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49371,146 +51713,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), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [94] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5544), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), + [101] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3088), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49529,146 +51875,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(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = 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), }, - [95] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(2411), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [102] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(2379), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49687,146 +52037,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [96] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3910), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), + [103] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(4187), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49845,146 +52199,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [97] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1573), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [104] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5646), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -50003,146 +52361,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [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), }, - [98] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(4047), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(1267), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [105] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4272), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50161,146 +52523,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [99] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3519), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), + [106] = { + [sym_type_alias] = STATE(9177), + [sym__declaration] = STATE(9177), + [sym_class_declaration] = STATE(9177), + [sym_function_declaration] = STATE(9177), + [sym_property_declaration] = STATE(9177), + [sym_getter] = STATE(9177), + [sym_setter] = STATE(9177), + [sym_object_declaration] = STATE(9177), + [sym__statement] = STATE(9177), + [sym_control_structure_body] = STATE(9163), + [sym__block] = STATE(9177), + [sym__loop_statement] = STATE(9177), + [sym_for_statement] = STATE(9177), + [sym_while_statement] = STATE(9177), + [sym_do_while_statement] = STATE(9177), + [sym_assignment] = STATE(9177), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [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(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -50319,146 +52684,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = 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), }, - [100] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(4140), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [107] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3523), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [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), @@ -50477,146 +52847,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [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), }, - [101] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(5352), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [108] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(5280), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50635,146 +53009,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [102] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(4244), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [109] = { + [sym_type_alias] = STATE(9177), + [sym__declaration] = STATE(9177), + [sym_class_declaration] = STATE(9177), + [sym_function_declaration] = STATE(9177), + [sym_property_declaration] = STATE(9177), + [sym_getter] = STATE(9177), + [sym_setter] = STATE(9177), + [sym_object_declaration] = STATE(9177), + [sym__statement] = STATE(9177), + [sym_control_structure_body] = STATE(9101), + [sym__block] = STATE(9177), + [sym__loop_statement] = STATE(9177), + [sym_for_statement] = STATE(9177), + [sym_while_statement] = STATE(9177), + [sym_do_while_statement] = STATE(9177), + [sym_assignment] = STATE(9177), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [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), @@ -50793,146 +53170,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [103] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5092), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(1291), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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), + [110] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(5627), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50951,139 +53333,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [104] = { - [sym_type_alias] = STATE(9334), - [sym__declaration] = STATE(9334), - [sym_class_declaration] = STATE(9334), - [sym_function_declaration] = STATE(9334), - [sym_property_declaration] = STATE(9334), - [sym_getter] = STATE(9334), - [sym_setter] = STATE(9334), - [sym_object_declaration] = STATE(9334), - [sym__statement] = STATE(9334), - [sym_control_structure_body] = STATE(9239), - [sym__block] = STATE(9334), - [sym__loop_statement] = STATE(9334), - [sym_for_statement] = STATE(9334), - [sym_while_statement] = STATE(9334), - [sym_do_while_statement] = STATE(9334), - [sym_assignment] = STATE(9334), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [111] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5611), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1215), - [anon_sym_RBRACE] = ACTIONS(201), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_object] = ACTIONS(31), - [anon_sym_fun] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1349), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -51114,123 +53501,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [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), }, - [105] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5589), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), + [112] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5339), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1293), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1295), + [anon_sym_else] = ACTIONS(1355), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -51238,11 +53628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -51273,140 +53663,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [106] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(5580), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(1299), - [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), + [113] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_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_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51425,146 +53818,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [107] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(5213), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(1305), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [114] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51583,146 +53979,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [108] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3723), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), + [115] = { + [sym_type_alias] = STATE(9177), + [sym__declaration] = STATE(9177), + [sym_class_declaration] = STATE(9177), + [sym_function_declaration] = STATE(9177), + [sym_property_declaration] = STATE(9177), + [sym_getter] = STATE(9177), + [sym_setter] = STATE(9177), + [sym_object_declaration] = STATE(9177), + [sym__statement] = STATE(9177), + [sym_control_structure_body] = STATE(9388), + [sym__block] = STATE(9177), + [sym__loop_statement] = STATE(9177), + [sym_for_statement] = STATE(9177), + [sym_while_statement] = STATE(9177), + [sym_do_while_statement] = STATE(9177), + [sym_assignment] = STATE(9177), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(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(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -51741,146 +54140,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = 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), }, - [109] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1104), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [116] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51899,146 +54301,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [110] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3441), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [117] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(1323), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [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), @@ -52057,146 +54462,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [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), }, - [111] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(4128), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(1327), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), + [118] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -52215,146 +54623,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [112] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(4287), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(1331), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), + [119] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [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), @@ -52373,145 +54784,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [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), }, - [113] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4669), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [120] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_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_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52530,145 +54945,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [114] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [121] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52687,145 +55106,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [115] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3964), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), + [122] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52844,145 +55267,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [116] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3197), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [123] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53001,145 +55428,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [117] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), + [124] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53158,145 +55589,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [118] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3446), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), + [125] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53315,145 +55750,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [119] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3397), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [126] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8300), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(766), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [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), @@ -53472,126 +55911,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [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), }, - [120] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5161), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), + [127] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -53600,11 +56043,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -53635,139 +56078,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [121] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3437), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), + [128] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53786,145 +56233,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [122] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4769), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), + [129] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53943,145 +56394,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [123] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3338), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), + [130] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54100,145 +56555,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [124] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5168), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [131] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [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), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54257,145 +56716,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = 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), }, - [125] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5170), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [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), + [132] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54414,145 +56877,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, - [126] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1189), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [133] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54571,145 +57038,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [127] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3421), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), + [134] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54728,145 +57199,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [128] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4739), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [135] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8320), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_object] = ACTIONS(673), + [anon_sym_fun] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(679), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_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_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54885,145 +57360,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [129] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4669), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [136] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -55042,145 +57521,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [130] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4668), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [137] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -55199,145 +57682,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [131] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1189), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [138] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -55356,145 +57843,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [132] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3338), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), + [139] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8316), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(725), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [anon_sym_object] = ACTIONS(731), + [anon_sym_fun] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(737), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55513,145 +58004,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [133] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3335), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [140] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55670,145 +58165,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [134] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3832), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), + [141] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55827,145 +58326,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [135] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3332), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), + [142] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -55984,145 +58487,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [136] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3901), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), + [143] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56141,145 +58648,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [137] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5069), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [144] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56298,145 +58809,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), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [138] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3964), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), + [145] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56455,145 +58970,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [139] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4769), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [146] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56612,145 +59131,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [140] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1075), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [147] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -56769,145 +59292,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [141] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [148] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_modifiers] = STATE(8303), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(784), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(761), + [anon_sym_var] = ACTIONS(761), + [anon_sym_object] = ACTIONS(763), + [anon_sym_fun] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(769), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56926,145 +59453,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [142] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1189), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [149] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57083,126 +59614,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [143] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), + [150] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [151] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), [sym_control_structure_body] = STATE(5161), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -57211,11 +59907,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(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), @@ -57246,139 +59942,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [144] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3421), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_modifiers] = STATE(8236), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(823), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_interface] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(265), - [anon_sym_var] = ACTIONS(265), - [anon_sym_object] = ACTIONS(267), - [anon_sym_fun] = ACTIONS(269), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(273), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), + [152] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8317), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(771), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1121), + [anon_sym_interface] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_fun] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(1131), + [anon_sym_set] = ACTIONS(1133), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [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), @@ -57397,145 +60097,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [145] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [153] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -57554,145 +60258,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [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), }, - [146] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3197), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [154] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_modifiers] = STATE(8288), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -57711,145 +60419,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [147] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1189), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [155] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8321), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57868,145 +60580,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [148] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3338), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [156] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1182), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [anon_sym_object] = ACTIONS(795), + [anon_sym_fun] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(799), + [anon_sym_set] = ACTIONS(801), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58025,145 +60741,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [149] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [157] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8295), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(693), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [anon_sym_object] = ACTIONS(699), + [anon_sym_fun] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(703), + [anon_sym_set] = ACTIONS(705), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -58182,145 +60902,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [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), }, - [150] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1075), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [158] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58339,145 +61063,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [151] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5168), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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), + [159] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58496,145 +61224,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), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [152] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), + [160] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [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), @@ -58653,145 +61385,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [153] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4668), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [161] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -58810,145 +61546,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [154] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4769), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3752), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_modifiers] = STATE(8244), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(745), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(749), - [anon_sym_var] = ACTIONS(749), - [anon_sym_object] = ACTIONS(751), - [anon_sym_fun] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(757), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [162] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -58967,145 +61707,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [155] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4739), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [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), + [163] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_modifiers] = STATE(8284), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(347), + [anon_sym_interface] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -59124,145 +61868,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [156] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4669), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), + [164] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), [anon_sym_for] = ACTIONS(1049), [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [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_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59281,145 +62029,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [157] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3832), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_modifiers] = STATE(8225), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(821), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(429), - [anon_sym_var] = ACTIONS(429), - [anon_sym_object] = ACTIONS(431), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(437), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), + [165] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5213), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [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), @@ -59438,145 +62190,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [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), }, - [158] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4668), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [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), + [166] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5166), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_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_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), @@ -59595,145 +62351,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [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), }, - [159] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3197), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1522), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_modifiers] = STATE(8252), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), + [167] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5161), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -59752,145 +62512,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = 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), }, - [160] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3335), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [168] = { + [sym_type_alias] = STATE(5077), + [sym__declaration] = STATE(5077), + [sym_class_declaration] = STATE(5077), + [sym_function_declaration] = STATE(5077), + [sym_property_declaration] = STATE(5077), + [sym_getter] = STATE(5077), + [sym_setter] = STATE(5077), + [sym_object_declaration] = STATE(5077), + [sym__statement] = STATE(5077), + [sym_control_structure_body] = STATE(5145), + [sym__block] = STATE(5077), + [sym__loop_statement] = STATE(5077), + [sym_for_statement] = STATE(5077), + [sym_while_statement] = STATE(5077), + [sym_do_while_statement] = STATE(5077), + [sym_assignment] = STATE(5077), + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(762), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -59909,145 +62673,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = 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), }, - [161] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3832), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [169] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60066,145 +62834,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [162] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3332), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8258), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_object] = ACTIONS(1059), - [anon_sym_fun] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(1063), - [anon_sym_set] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [170] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60223,145 +62995,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [163] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9427), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [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), + [171] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8285), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60380,145 +63156,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [164] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5170), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [172] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60537,145 +63317,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), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [165] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3964), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [173] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_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(1405), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60694,145 +63478,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [166] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3901), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2568), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_modifiers] = STATE(8255), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_object] = ACTIONS(1085), - [anon_sym_fun] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1091), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), + [174] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60851,145 +63639,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [167] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3446), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [175] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61008,145 +63800,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [168] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3397), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [176] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61165,145 +63961,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [169] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1181), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_modifiers] = STATE(8239), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), + [177] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(831), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61322,145 +64122,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [170] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3437), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [178] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4888), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61479,145 +64283,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [171] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5069), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8224), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(835), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1111), - [anon_sym_fun] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1115), - [anon_sym_set] = ACTIONS(1117), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [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), + [179] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61636,145 +64444,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [172] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4769), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8228), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [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), + [180] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61793,145 +64605,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [173] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1181), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_modifiers] = STATE(8256), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [181] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61950,145 +64766,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [174] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1181), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [182] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62107,145 +64927,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [175] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1129), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [183] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62264,145 +65088,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [176] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3338), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), + [184] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8297), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62421,145 +65249,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [177] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3335), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), + [185] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62578,145 +65410,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [178] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3437), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [186] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62735,145 +65571,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [179] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3332), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_modifiers] = STATE(8257), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), + [187] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(509), - [anon_sym_var] = ACTIONS(509), - [anon_sym_object] = ACTIONS(511), - [anon_sym_fun] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(515), - [anon_sym_set] = ACTIONS(517), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -62892,145 +65732,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [180] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3397), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [188] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8304), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63049,134 +65893,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [181] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5161), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [189] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(611), [anon_sym_DASH] = ACTIONS(611), [anon_sym_PLUS_PLUS] = ACTIONS(613), @@ -63185,9 +66033,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(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63206,145 +66054,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = 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), }, - [182] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5069), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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), + [190] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63363,145 +66215,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [183] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3832), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [191] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2565), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_modifiers] = STATE(8298), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63520,134 +66376,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [184] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5170), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_modifiers] = STATE(8250), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(834), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_object] = ACTIONS(585), - [anon_sym_fun] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(591), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [192] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3227), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(611), [anon_sym_DASH] = ACTIONS(611), [anon_sym_PLUS_PLUS] = ACTIONS(613), @@ -63656,9 +66516,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(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63677,145 +66537,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = 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), }, - [185] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3901), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(2446), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_modifiers] = STATE(8223), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [193] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9478), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63834,145 +66698,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [186] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9427), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [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), + [194] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1067), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63991,145 +66859,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [187] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1181), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [195] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(4001), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8307), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(765), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64148,145 +67020,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [188] = { - [sym_type_alias] = STATE(9334), - [sym__declaration] = STATE(9334), - [sym_class_declaration] = STATE(9334), - [sym_function_declaration] = STATE(9334), - [sym_property_declaration] = STATE(9334), - [sym_getter] = STATE(9334), - [sym_setter] = STATE(9334), - [sym_object_declaration] = STATE(9334), - [sym__statement] = STATE(9334), - [sym_control_structure_body] = STATE(9049), - [sym__block] = STATE(9334), - [sym__loop_statement] = STATE(9334), - [sym_for_statement] = STATE(9334), - [sym_while_statement] = STATE(9334), - [sym_do_while_statement] = STATE(9334), - [sym_assignment] = STATE(9334), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1215), - [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(1381), - [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), + [196] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5424), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(615), + [anon_sym_inner] = ACTIONS(615), + [anon_sym_value] = ACTIONS(615), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64305,145 +67181,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [189] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [197] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64462,145 +67342,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(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [190] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3421), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [198] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3263), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [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), @@ -64619,145 +67503,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [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), }, - [191] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3335), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), + [199] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3260), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8311), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(979), + [anon_sym_var] = ACTIONS(979), + [anon_sym_object] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(987), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -64776,145 +67664,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(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [192] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5069), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), + [200] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_modifiers] = STATE(8289), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(853), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64933,145 +67825,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [193] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5170), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), + [201] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4851), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65090,145 +67986,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [194] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5168), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), + [202] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3396), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65247,145 +68147,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, - [195] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5168), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(3980), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_modifiers] = STATE(8238), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [203] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3398), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65404,145 +68308,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), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, - [196] = { - [sym_type_alias] = STATE(5144), - [sym__declaration] = STATE(5144), - [sym_class_declaration] = STATE(5144), - [sym_function_declaration] = STATE(5144), - [sym_property_declaration] = STATE(5144), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_object_declaration] = STATE(5144), - [sym__statement] = STATE(5144), - [sym_control_structure_body] = STATE(5161), - [sym__block] = STATE(5144), - [sym__loop_statement] = STATE(5144), - [sym_for_statement] = STATE(5144), - [sym_while_statement] = STATE(5144), - [sym_do_while_statement] = STATE(5144), - [sym_assignment] = STATE(5144), - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_modifiers] = STATE(8245), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(575), - [anon_sym_class] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(967), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), + [204] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3419), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65561,145 +68469,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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, - [197] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3446), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_modifiers] = STATE(8232), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [205] = { + [sym_type_alias] = STATE(3588), + [sym__declaration] = STATE(3588), + [sym_class_declaration] = STATE(3588), + [sym_function_declaration] = STATE(3588), + [sym_property_declaration] = STATE(3588), + [sym_getter] = STATE(3588), + [sym_setter] = STATE(3588), + [sym_object_declaration] = STATE(3588), + [sym__statement] = STATE(3588), + [sym_control_structure_body] = STATE(3527), + [sym__block] = STATE(3588), + [sym__loop_statement] = STATE(3588), + [sym_for_statement] = STATE(3588), + [sym_while_statement] = STATE(3588), + [sym_do_while_statement] = STATE(3588), + [sym_assignment] = STATE(3588), + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8309), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(179), + [anon_sym_inner] = ACTIONS(179), + [anon_sym_value] = ACTIONS(179), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65718,145 +68630,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [198] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1075), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_modifiers] = STATE(8254), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(819), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [206] = { + [sym_type_alias] = STATE(3128), + [sym__declaration] = STATE(3128), + [sym_class_declaration] = STATE(3128), + [sym_function_declaration] = STATE(3128), + [sym_property_declaration] = STATE(3128), + [sym_getter] = STATE(3128), + [sym_setter] = STATE(3128), + [sym_object_declaration] = STATE(3128), + [sym__statement] = STATE(3128), + [sym_control_structure_body] = STATE(3235), + [sym__block] = STATE(3128), + [sym__loop_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_while_statement] = STATE(3128), + [sym_assignment] = STATE(3128), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8305), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), + [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), @@ -65875,616 +68791,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(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [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), }, - [199] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3964), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [200] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4668), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [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), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [201] = { - [sym_type_alias] = STATE(1168), - [sym__declaration] = STATE(1168), - [sym_class_declaration] = STATE(1168), - [sym_function_declaration] = STATE(1168), - [sym_property_declaration] = STATE(1168), - [sym_getter] = STATE(1168), - [sym_setter] = STATE(1168), - [sym_object_declaration] = STATE(1168), - [sym__statement] = STATE(1168), - [sym_control_structure_body] = STATE(1075), - [sym__block] = STATE(1168), - [sym__loop_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_while_statement] = STATE(1168), - [sym_assignment] = STATE(1168), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_modifiers] = STATE(8241), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(792), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_value] = ACTIONS(391), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [202] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3197), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), + [207] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66503,145 +68952,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [203] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4669), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), + [208] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66660,145 +69113,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [204] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3446), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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), + [209] = { + [sym_type_alias] = STATE(3828), + [sym__declaration] = STATE(3828), + [sym_class_declaration] = STATE(3828), + [sym_function_declaration] = STATE(3828), + [sym_property_declaration] = STATE(3828), + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_object_declaration] = STATE(3828), + [sym__statement] = STATE(3828), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(3828), + [sym__loop_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_while_statement] = STATE(3828), + [sym_do_while_statement] = STATE(3828), + [sym_assignment] = STATE(3828), + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8319), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(763), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_typealias] = ACTIONS(477), + [anon_sym_class] = ACTIONS(479), + [anon_sym_interface] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_val] = ACTIONS(487), + [anon_sym_var] = ACTIONS(487), + [anon_sym_object] = ACTIONS(489), + [anon_sym_fun] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(493), + [anon_sym_set] = ACTIONS(495), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(531), + [anon_sym_inner] = ACTIONS(531), + [anon_sym_value] = ACTIONS(531), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66817,145 +69274,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(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(533), + [anon_sym_actual] = ACTIONS(533), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, - [205] = { - [sym_type_alias] = STATE(3265), - [sym__declaration] = STATE(3265), - [sym_class_declaration] = STATE(3265), - [sym_function_declaration] = STATE(3265), - [sym_property_declaration] = STATE(3265), - [sym_getter] = STATE(3265), - [sym_setter] = STATE(3265), - [sym_object_declaration] = STATE(3265), - [sym__statement] = STATE(3265), - [sym_control_structure_body] = STATE(3332), - [sym__block] = STATE(3265), - [sym__loop_statement] = STATE(3265), - [sym_for_statement] = STATE(3265), - [sym_while_statement] = STATE(3265), - [sym_do_while_statement] = STATE(3265), - [sym_assignment] = STATE(3265), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_modifiers] = STATE(8234), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), + [210] = { + [sym_type_alias] = STATE(1027), + [sym__declaration] = STATE(1027), + [sym_class_declaration] = STATE(1027), + [sym_function_declaration] = STATE(1027), + [sym_property_declaration] = STATE(1027), + [sym_getter] = STATE(1027), + [sym_setter] = STATE(1027), + [sym_object_declaration] = STATE(1027), + [sym__statement] = STATE(1027), + [sym_control_structure_body] = STATE(1151), + [sym__block] = STATE(1027), + [sym__loop_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_while_statement] = STATE(1027), + [sym_assignment] = STATE(1027), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(499), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(445), + [anon_sym_inner] = ACTIONS(445), + [anon_sym_value] = ACTIONS(445), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66974,145 +69435,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(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, - [206] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4739), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(3113), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_modifiers] = STATE(8248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(207), - [anon_sym_interface] = ACTIONS(207), - [anon_sym_enum] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(213), - [anon_sym_var] = ACTIONS(213), - [anon_sym_object] = ACTIONS(215), - [anon_sym_fun] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(219), - [anon_sym_set] = ACTIONS(221), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), + [211] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4837), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67131,145 +69596,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(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [207] = { - [sym_type_alias] = STATE(3952), - [sym__declaration] = STATE(3952), - [sym_class_declaration] = STATE(3952), - [sym_function_declaration] = STATE(3952), - [sym_property_declaration] = STATE(3952), - [sym_getter] = STATE(3952), - [sym_setter] = STATE(3952), - [sym_object_declaration] = STATE(3952), - [sym__statement] = STATE(3952), - [sym_control_structure_body] = STATE(3901), - [sym__block] = STATE(3952), - [sym__loop_statement] = STATE(3952), - [sym_for_statement] = STATE(3952), - [sym_while_statement] = STATE(3952), - [sym_do_while_statement] = STATE(3952), - [sym_assignment] = STATE(3952), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_modifiers] = STATE(8227), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(820), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(419), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), + [212] = { + [sym_type_alias] = STATE(4818), + [sym__declaration] = STATE(4818), + [sym_class_declaration] = STATE(4818), + [sym_function_declaration] = STATE(4818), + [sym_property_declaration] = STATE(4818), + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_object_declaration] = STATE(4818), + [sym__statement] = STATE(4818), + [sym_control_structure_body] = STATE(4884), + [sym__block] = STATE(4818), + [sym__loop_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4818), + [sym_do_while_statement] = STATE(4818), + [sym_assignment] = STATE(4818), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(768), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(473), - [anon_sym_inner] = ACTIONS(473), - [anon_sym_value] = ACTIONS(473), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67288,145 +69757,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(475), - [anon_sym_actual] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [208] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3397), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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), + [213] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9485), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67445,145 +69917,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [209] = { - [sym_type_alias] = STATE(5430), - [sym__declaration] = STATE(5430), - [sym_class_declaration] = STATE(5430), - [sym_function_declaration] = STATE(5430), - [sym_property_declaration] = STATE(5430), - [sym_getter] = STATE(5430), - [sym_setter] = STATE(5430), - [sym_object_declaration] = STATE(5430), - [sym__statement] = STATE(5430), - [sym_control_structure_body] = STATE(5372), - [sym__block] = STATE(5430), - [sym__loop_statement] = STATE(5430), - [sym_for_statement] = STATE(5430), - [sym_while_statement] = STATE(5430), - [sym_do_while_statement] = STATE(5430), - [sym_assignment] = STATE(5430), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8253), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [214] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9790), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -67602,459 +70077,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [210] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3421), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_modifiers] = STATE(8233), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(825), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [211] = { - [sym_type_alias] = STATE(3237), - [sym__declaration] = STATE(3237), - [sym_class_declaration] = STATE(3237), - [sym_function_declaration] = STATE(3237), - [sym_property_declaration] = STATE(3237), - [sym_getter] = STATE(3237), - [sym_setter] = STATE(3237), - [sym_object_declaration] = STATE(3237), - [sym__statement] = STATE(3237), - [sym_control_structure_body] = STATE(3437), - [sym__block] = STATE(3237), - [sym__loop_statement] = STATE(3237), - [sym_for_statement] = STATE(3237), - [sym_while_statement] = STATE(3237), - [sym_do_while_statement] = STATE(3237), - [sym_assignment] = STATE(3237), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_modifiers] = STATE(8240), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_typealias] = ACTIONS(255), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(309), - [anon_sym_inner] = ACTIONS(309), - [anon_sym_value] = ACTIONS(309), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(311), - [anon_sym_actual] = ACTIONS(311), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_continue_AT] = 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), }, - [212] = { - [sym_type_alias] = STATE(4653), - [sym__declaration] = STATE(4653), - [sym_class_declaration] = STATE(4653), - [sym_function_declaration] = STATE(4653), - [sym_property_declaration] = STATE(4653), - [sym_getter] = STATE(4653), - [sym_setter] = STATE(4653), - [sym_object_declaration] = STATE(4653), - [sym__statement] = STATE(4653), - [sym_control_structure_body] = STATE(4739), - [sym__block] = STATE(4653), - [sym__loop_statement] = STATE(4653), - [sym_for_statement] = STATE(4653), - [sym_while_statement] = STATE(4653), - [sym_do_while_statement] = STATE(4653), - [sym_assignment] = STATE(4653), - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_modifiers] = STATE(8243), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(205), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [215] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5275), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -68073,110 +70237,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [213] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9464), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [216] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1201), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1385), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68235,104 +70403,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [214] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9820), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [217] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9788), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1387), + [anon_sym_RBRACE] = ACTIONS(1413), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68391,104 +70563,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [215] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9737), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [218] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym__alpha_identifier] = ACTIONS(1417), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_typealias] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1429), + [anon_sym_interface] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_val] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1444), + [anon_sym_fun] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1450), + [anon_sym_set] = ACTIONS(1453), + [anon_sym_this] = ACTIONS(1456), + [anon_sym_super] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1462), + [sym_label] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_suspend] = ACTIONS(1507), + [anon_sym_sealed] = ACTIONS(1510), + [anon_sym_annotation] = ACTIONS(1510), + [anon_sym_data] = ACTIONS(1513), + [anon_sym_inner] = ACTIONS(1513), + [anon_sym_value] = ACTIONS(1513), + [anon_sym_override] = ACTIONS(1516), + [anon_sym_lateinit] = ACTIONS(1516), + [anon_sym_public] = ACTIONS(1519), + [anon_sym_private] = ACTIONS(1519), + [anon_sym_internal] = ACTIONS(1519), + [anon_sym_protected] = ACTIONS(1519), + [anon_sym_tailrec] = ACTIONS(1507), + [anon_sym_operator] = ACTIONS(1507), + [anon_sym_infix] = ACTIONS(1507), + [anon_sym_inline] = ACTIONS(1507), + [anon_sym_external] = ACTIONS(1507), + [sym_property_modifier] = ACTIONS(1522), + [anon_sym_abstract] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_open] = ACTIONS(1525), + [anon_sym_vararg] = ACTIONS(1528), + [anon_sym_noinline] = ACTIONS(1528), + [anon_sym_crossinline] = ACTIONS(1528), + [anon_sym_expect] = ACTIONS(1531), + [anon_sym_actual] = ACTIONS(1531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1534), + [anon_sym_continue_AT] = ACTIONS(1537), + [anon_sym_break_AT] = ACTIONS(1540), + [anon_sym_this_AT] = ACTIONS(1543), + [anon_sym_super_AT] = ACTIONS(1546), + [sym_real_literal] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1552), + [sym_hex_literal] = ACTIONS(1555), + [sym_bin_literal] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1561), + [sym__backtick_identifier] = ACTIONS(1564), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1567), + }, + [219] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9823), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1389), + [anon_sym_RBRACE] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68547,104 +70883,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [216] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9722), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [220] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9752), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1391), + [anon_sym_RBRACE] = ACTIONS(1572), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68703,104 +71043,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [217] = { - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat3] = STATE(232), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1165), + [221] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9856), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1574), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68859,138 +71203,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [218] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9668), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1393), - [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), + [222] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9476), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69009,144 +71357,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [219] = { - [sym_type_alias] = STATE(5430), - [sym__declaration] = STATE(5430), - [sym_class_declaration] = STATE(5430), - [sym_function_declaration] = STATE(5430), - [sym_property_declaration] = STATE(5430), - [sym_getter] = STATE(5430), - [sym_setter] = STATE(5430), - [sym_object_declaration] = STATE(5430), - [sym__statement] = STATE(5430), - [sym_control_structure_body] = STATE(5343), - [sym__block] = STATE(5430), - [sym__loop_statement] = STATE(5430), - [sym_for_statement] = STATE(5430), - [sym_while_statement] = STATE(5430), - [sym_do_while_statement] = STATE(5430), - [sym_assignment] = STATE(5430), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8253), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [223] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9482), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69165,110 +71517,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(555), - [anon_sym_actual] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [220] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9697), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [224] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9729), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1395), + [anon_sym_RBRACE] = ACTIONS(1578), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69327,138 +71683,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [221] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9438), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1397), - [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), + [225] = { + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(175), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [226] = { + [sym_type_alias] = STATE(5382), + [sym__declaration] = STATE(5382), + [sym_class_declaration] = STATE(5382), + [sym_function_declaration] = STATE(5382), + [sym_property_declaration] = STATE(5382), + [sym_getter] = STATE(5382), + [sym_setter] = STATE(5382), + [sym_object_declaration] = STATE(5382), + [sym__statement] = STATE(5382), + [sym_control_structure_body] = STATE(5272), + [sym__block] = STATE(5382), + [sym__loop_statement] = STATE(5382), + [sym_for_statement] = STATE(5382), + [sym_while_statement] = STATE(5382), + [sym_do_while_statement] = STATE(5382), + [sym_assignment] = STATE(5382), + [sym__expression] = STATE(2313), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8312), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(1151), + [anon_sym_class] = ACTIONS(1153), + [anon_sym_interface] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -69477,110 +71997,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [222] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9394), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [227] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9606), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [228] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1598), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1399), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69639,104 +72323,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [223] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9652), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [229] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9850), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1401), + [anon_sym_RBRACE] = ACTIONS(1600), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69795,104 +72483,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [224] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9637), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [230] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9663), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1403), + [anon_sym_RBRACE] = ACTIONS(1602), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69951,104 +72643,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [225] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9459), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [231] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(10147), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1604), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [232] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9583), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1405), + [anon_sym_RBRACE] = ACTIONS(1606), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70107,138 +72963,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9717), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1407), - [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), + [233] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9483), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70257,144 +73117,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [227] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9701), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1407), - [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), + [234] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9849), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70413,144 +73277,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [228] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9562), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [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), + [235] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9622), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70569,110 +73437,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [229] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9503), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [236] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9700), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [237] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9468), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [238] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9572), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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_RBRACE] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70731,104 +73923,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [230] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9398), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [239] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9465), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1411), + [anon_sym_RBRACE] = ACTIONS(1612), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70887,104 +74083,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [231] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9430), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [240] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9510), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1413), + [anon_sym_RBRACE] = ACTIONS(1614), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71043,416 +74243,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [232] = { - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat3] = STATE(232), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1415), - [sym__alpha_identifier] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_typealias] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_interface] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_val] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_object] = ACTIONS(1444), - [anon_sym_fun] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1450), - [anon_sym_set] = ACTIONS(1453), - [anon_sym_this] = ACTIONS(1456), - [anon_sym_super] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1462), - [sym_label] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_when] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_suspend] = ACTIONS(1507), - [anon_sym_sealed] = ACTIONS(1510), - [anon_sym_annotation] = ACTIONS(1510), - [anon_sym_data] = ACTIONS(1513), - [anon_sym_inner] = ACTIONS(1513), - [anon_sym_value] = ACTIONS(1513), - [anon_sym_override] = ACTIONS(1516), - [anon_sym_lateinit] = ACTIONS(1516), - [anon_sym_public] = ACTIONS(1519), - [anon_sym_private] = ACTIONS(1519), - [anon_sym_internal] = ACTIONS(1519), - [anon_sym_protected] = ACTIONS(1519), - [anon_sym_tailrec] = ACTIONS(1507), - [anon_sym_operator] = ACTIONS(1507), - [anon_sym_infix] = ACTIONS(1507), - [anon_sym_inline] = ACTIONS(1507), - [anon_sym_external] = ACTIONS(1507), - [sym_property_modifier] = ACTIONS(1522), - [anon_sym_abstract] = ACTIONS(1525), - [anon_sym_final] = ACTIONS(1525), - [anon_sym_open] = ACTIONS(1525), - [anon_sym_vararg] = ACTIONS(1528), - [anon_sym_noinline] = ACTIONS(1528), - [anon_sym_crossinline] = ACTIONS(1528), - [anon_sym_expect] = ACTIONS(1531), - [anon_sym_actual] = ACTIONS(1531), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1534), - [anon_sym_continue_AT] = ACTIONS(1537), - [anon_sym_break_AT] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1546), - [sym_hex_literal] = ACTIONS(1549), - [sym_bin_literal] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1555), - [sym__backtick_identifier] = ACTIONS(1558), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1561), - }, - [233] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9715), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_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), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [234] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9528), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [241] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1213), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1564), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71511,104 +74403,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [235] = { - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat3] = STATE(232), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1187), + [242] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9491), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1616), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71667,260 +74563,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [236] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(10052), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_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), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [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), }, - [237] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9866), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [243] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9724), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1568), + [anon_sym_RBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71979,450 +74723,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [238] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9678), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_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), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [239] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9714), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_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), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [240] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9579), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [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), + [244] = { + [sym_type_alias] = STATE(9851), + [sym__declaration] = STATE(9851), + [sym_class_declaration] = STATE(9851), + [sym_function_declaration] = STATE(9851), + [sym_property_declaration] = STATE(9851), + [sym_getter] = STATE(9851), + [sym_setter] = STATE(9851), + [sym_object_declaration] = STATE(9851), + [sym__statement] = STATE(9851), + [sym_control_structure_body] = STATE(9764), + [sym__block] = STATE(9851), + [sym__loop_statement] = STATE(9851), + [sym_for_statement] = STATE(9851), + [sym_while_statement] = STATE(9851), + [sym_do_while_statement] = STATE(9851), + [sym_assignment] = STATE(9851), + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8315), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(301), + [anon_sym_class] = ACTIONS(303), + [anon_sym_interface] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(309), + [anon_sym_var] = ACTIONS(309), + [anon_sym_object] = ACTIONS(311), + [anon_sym_fun] = ACTIONS(313), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(319), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), [anon_sym_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_data] = ACTIONS(269), + [anon_sym_inner] = ACTIONS(269), + [anon_sym_value] = ACTIONS(269), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72441,110 +74877,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [241] = { - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat3] = STATE(232), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1572), + [245] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9924), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1622), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72603,104 +75043,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9416), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [246] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10046), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72759,104 +75203,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [243] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9988), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [247] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9524), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1576), + [anon_sym_RBRACE] = ACTIONS(1626), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72915,138 +75363,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [244] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9700), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1407), - [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), + [248] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9717), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [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(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), + [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), @@ -73065,266 +75517,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [245] = { - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(1580), - [sym_label] = ACTIONS(305), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(305), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [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), }, - [246] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9768), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [249] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9473), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1594), + [anon_sym_RBRACE] = ACTIONS(1630), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73383,104 +75683,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [247] = { - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat3] = STATE(232), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1123), + [250] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9499), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1632), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73539,104 +75843,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, - [248] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9445), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [251] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1596), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73695,138 +76003,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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(5430), - [sym__declaration] = STATE(5430), - [sym_class_declaration] = STATE(5430), - [sym_function_declaration] = STATE(5430), - [sym_property_declaration] = STATE(5430), - [sym_getter] = STATE(5430), - [sym_setter] = STATE(5430), - [sym_object_declaration] = STATE(5430), - [sym__statement] = STATE(5430), - [sym_control_structure_body] = STATE(5294), - [sym__block] = STATE(5430), - [sym__loop_statement] = STATE(5430), - [sym_for_statement] = STATE(5430), - [sym_while_statement] = STATE(5430), - [sym_do_while_statement] = STATE(5430), - [sym_assignment] = STATE(5430), - [sym__expression] = STATE(2138), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_modifiers] = STATE(8253), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), + [252] = { + [sym_type_alias] = STATE(9114), + [sym__declaration] = STATE(9114), + [sym_class_declaration] = STATE(9114), + [sym_function_declaration] = STATE(9114), + [sym_property_declaration] = STATE(9114), + [sym_getter] = STATE(9114), + [sym_setter] = STATE(9114), + [sym_object_declaration] = STATE(9114), + [sym__statement] = STATE(9114), + [sym__loop_statement] = STATE(9114), + [sym_for_statement] = STATE(9114), + [sym_while_statement] = STATE(9114), + [sym_do_while_statement] = STATE(9114), + [sym_assignment] = STATE(9114), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym_source_file_repeat3] = STATE(218), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1147), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(553), - [anon_sym_inner] = ACTIONS(553), - [anon_sym_value] = ACTIONS(553), + [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), @@ -73845,110 +76157,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(555), - [anon_sym_actual] = ACTIONS(555), + [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(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = 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), }, - [250] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9803), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [253] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10063), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1634), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74007,104 +76323,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9471), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [254] = { + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9867), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1600), + [anon_sym_RBRACE] = ACTIONS(1636), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74163,572 +76483,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [252] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(10000), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_object] = ACTIONS(31), - [anon_sym_fun] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [253] = { - [sym_type_alias] = STATE(9048), - [sym__declaration] = STATE(9048), - [sym_class_declaration] = STATE(9048), - [sym_function_declaration] = STATE(9048), - [sym_property_declaration] = STATE(9048), - [sym_getter] = STATE(9048), - [sym_setter] = STATE(9048), - [sym_object_declaration] = STATE(9048), - [sym__statement] = STATE(9048), - [sym__loop_statement] = STATE(9048), - [sym_for_statement] = STATE(9048), - [sym_while_statement] = STATE(9048), - [sym_do_while_statement] = STATE(9048), - [sym_assignment] = STATE(9048), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym_source_file_repeat3] = STATE(232), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_object] = ACTIONS(31), - [anon_sym_fun] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [254] = { - [sym_type_alias] = STATE(9785), - [sym__declaration] = STATE(9785), - [sym_class_declaration] = STATE(9785), - [sym_function_declaration] = STATE(9785), - [sym_property_declaration] = STATE(9785), - [sym_getter] = STATE(9785), - [sym_setter] = STATE(9785), - [sym_object_declaration] = STATE(9785), - [sym__statement] = STATE(9785), - [sym_control_structure_body] = STATE(9784), - [sym__block] = STATE(9785), - [sym__loop_statement] = STATE(9785), - [sym_for_statement] = STATE(9785), - [sym_while_statement] = STATE(9785), - [sym_do_while_statement] = STATE(9785), - [sym_assignment] = STATE(9785), - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_modifiers] = STATE(8229), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(141), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_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), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [255] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9802), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(9785), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1606), + [anon_sym_RBRACE] = ACTIONS(1638), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74787,104 +76643,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [256] = { - [sym_type_alias] = STATE(8593), - [sym__declaration] = STATE(8593), - [sym_class_declaration] = STATE(8593), - [sym_function_declaration] = STATE(8593), - [sym_property_declaration] = STATE(8593), - [sym_getter] = STATE(8593), - [sym_setter] = STATE(8593), - [sym_object_declaration] = STATE(8593), - [sym_statements] = STATE(9935), - [sym__statement] = STATE(8593), - [sym__loop_statement] = STATE(8593), - [sym_for_statement] = STATE(8593), - [sym_while_statement] = STATE(8593), - [sym_do_while_statement] = STATE(8593), - [sym_assignment] = STATE(8593), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(8702), + [sym__declaration] = STATE(8702), + [sym_class_declaration] = STATE(8702), + [sym_function_declaration] = STATE(8702), + [sym_property_declaration] = STATE(8702), + [sym_getter] = STATE(8702), + [sym_setter] = STATE(8702), + [sym_object_declaration] = STATE(8702), + [sym_statements] = STATE(10031), + [sym__statement] = STATE(8702), + [sym__loop_statement] = STATE(8702), + [sym_for_statement] = STATE(8702), + [sym_while_statement] = STATE(8702), + [sym_do_while_statement] = STATE(8702), + [sym_assignment] = STATE(8702), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1608), + [anon_sym_RBRACE] = ACTIONS(1640), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74943,103 +76803,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [257] = { - [sym_type_alias] = STATE(9351), - [sym__declaration] = STATE(9351), - [sym_class_declaration] = STATE(9351), - [sym_function_declaration] = STATE(9351), - [sym_property_declaration] = STATE(9351), - [sym_getter] = STATE(9351), - [sym_setter] = STATE(9351), - [sym_object_declaration] = STATE(9351), - [sym__statement] = STATE(9351), - [sym__loop_statement] = STATE(9351), - [sym_for_statement] = STATE(9351), - [sym_while_statement] = STATE(9351), - [sym_do_while_statement] = STATE(9351), - [sym_assignment] = STATE(9351), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(9458), + [sym__declaration] = STATE(9458), + [sym_class_declaration] = STATE(9458), + [sym_function_declaration] = STATE(9458), + [sym_property_declaration] = STATE(9458), + [sym_getter] = STATE(9458), + [sym_setter] = STATE(9458), + [sym_object_declaration] = STATE(9458), + [sym__statement] = STATE(9458), + [sym__loop_statement] = STATE(9458), + [sym_for_statement] = STATE(9458), + [sym_while_statement] = STATE(9458), + [sym_do_while_statement] = STATE(9458), + [sym_assignment] = STATE(9458), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1642), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -75098,103 +76962,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_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), }, [258] = { - [sym_type_alias] = STATE(9351), - [sym__declaration] = STATE(9351), - [sym_class_declaration] = STATE(9351), - [sym_function_declaration] = STATE(9351), - [sym_property_declaration] = STATE(9351), - [sym_getter] = STATE(9351), - [sym_setter] = STATE(9351), - [sym_object_declaration] = STATE(9351), - [sym__statement] = STATE(9351), - [sym__loop_statement] = STATE(9351), - [sym_for_statement] = STATE(9351), - [sym_while_statement] = STATE(9351), - [sym_do_while_statement] = STATE(9351), - [sym_assignment] = STATE(9351), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(9458), + [sym__declaration] = STATE(9458), + [sym_class_declaration] = STATE(9458), + [sym_function_declaration] = STATE(9458), + [sym_property_declaration] = STATE(9458), + [sym_getter] = STATE(9458), + [sym_setter] = STATE(9458), + [sym_object_declaration] = STATE(9458), + [sym__statement] = STATE(9458), + [sym__loop_statement] = STATE(9458), + [sym_for_statement] = STATE(9458), + [sym_while_statement] = STATE(9458), + [sym_do_while_statement] = STATE(9458), + [sym_assignment] = STATE(9458), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [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(1612), + [anon_sym_RBRACE] = ACTIONS(1644), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -75253,96 +77121,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [259] = { - [sym_type_alias] = STATE(9351), - [sym__declaration] = STATE(9351), - [sym_class_declaration] = STATE(9351), - [sym_function_declaration] = STATE(9351), - [sym_property_declaration] = STATE(9351), - [sym_getter] = STATE(9351), - [sym_setter] = STATE(9351), - [sym_object_declaration] = STATE(9351), - [sym__statement] = STATE(9351), - [sym__loop_statement] = STATE(9351), - [sym_for_statement] = STATE(9351), - [sym_while_statement] = STATE(9351), - [sym_do_while_statement] = STATE(9351), - [sym_assignment] = STATE(9351), - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_modifiers] = STATE(8249), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(4077), - [sym__multi_annotation] = STATE(4077), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_type_alias] = STATE(9458), + [sym__declaration] = STATE(9458), + [sym_class_declaration] = STATE(9458), + [sym_function_declaration] = STATE(9458), + [sym_property_declaration] = STATE(9458), + [sym_getter] = STATE(9458), + [sym_setter] = STATE(9458), + [sym_object_declaration] = STATE(9458), + [sym__statement] = STATE(9458), + [sym__loop_statement] = STATE(9458), + [sym_for_statement] = STATE(9458), + [sym_while_statement] = STATE(9458), + [sym_do_while_statement] = STATE(9458), + [sym_assignment] = STATE(9458), + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3883), + [sym__multi_annotation] = STATE(3883), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(769), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), @@ -75407,1758 +77279,1804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [260] = { - [sym__expression] = STATE(364), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(1416), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(361), - [sym_label] = ACTIONS(387), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(501), + [sym_label] = ACTIONS(527), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [261] = { - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [sym_label] = ACTIONS(469), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(441), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [262] = { - [sym__expression] = STATE(1335), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(1848), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(663), - [sym_label] = ACTIONS(677), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(771), + [sym_label] = ACTIONS(785), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [263] = { - [sym__expression] = STATE(380), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(631), - [sym_label] = ACTIONS(645), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(739), + [sym_label] = ACTIONS(753), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [264] = { - [sym__expression] = STATE(1405), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(695), - [sym_label] = ACTIONS(709), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(803), + [sym_label] = ACTIONS(817), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [265] = { - [sym__expression] = STATE(1462), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(2284), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_DASH_GT] = ACTIONS(1580), - [sym_label] = ACTIONS(851), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [266] = { - [sym__expression] = STATE(2410), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [267] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [268] = { - [sym__expression] = STATE(2456), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [269] = { - [sym__expression] = STATE(2547), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), + [sym__expression] = STATE(2566), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [270] = { - [sym__expression] = STATE(517), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(527), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [271] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1710), - [anon_sym_set] = ACTIONS(1712), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -77177,126 +79095,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [272] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -77315,126 +79235,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [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), }, [273] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -77453,126 +79375,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [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), }, [274] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -77591,126 +79515,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [275] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1710), - [anon_sym_set] = ACTIONS(1712), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -77729,126 +79655,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [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), }, [276] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_get] = ACTIONS(1710), - [anon_sym_set] = ACTIONS(1712), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -77867,126 +79795,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [277] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -78005,363 +79935,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), }, [278] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(1710), - [anon_sym_set] = ACTIONS(1712), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [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(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), - }, - [279] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [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(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [280] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1710), - [anon_sym_set] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [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), @@ -78371,36 +80027,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1790), [anon_sym_continue] = ACTIONS(1790), [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1728), + [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), + [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(1746), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -78419,12 +80075,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [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), @@ -78432,113 +80090,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1752), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [281] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [279] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -78557,126 +80215,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [282] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(1710), - [anon_sym_set] = ACTIONS(1712), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [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(1728), - [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(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [280] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -78695,124 +80355,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [283] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1804), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [281] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1750), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -78831,124 +80495,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [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), }, - [284] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [282] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -78967,124 +80635,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [285] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [283] = { + [sym__expression] = STATE(3299), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(265), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [284] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79103,124 +80912,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [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), }, - [286] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_get] = ACTIONS(1804), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [285] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [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(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79239,124 +81050,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [287] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1804), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [286] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1880), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79375,124 +81188,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [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), }, - [288] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [287] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79511,124 +81326,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [289] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(1804), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [288] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79647,124 +81464,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [290] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [289] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1856), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79783,124 +81602,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [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), }, - [291] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_get] = ACTIONS(1804), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [290] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -79919,124 +81740,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [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), }, - [292] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [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(1728), - [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(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [291] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -80055,124 +81878,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [293] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(1804), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [292] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -80191,124 +82016,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), }, - [294] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [293] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -80327,387 +82154,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), - }, - [295] = { - [sym__expression] = STATE(3128), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_DASH_GT] = ACTIONS(1580), - [sym_label] = ACTIONS(241), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [296] = { - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [sym_label] = ACTIONS(549), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [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), }, - [297] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [294] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_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(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -80726,120 +82292,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [298] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [295] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_get] = ACTIONS(1888), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -80858,120 +82430,529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [299] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1914), + [296] = { + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(611), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [297] = { + [sym__expression] = STATE(3809), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(363), + [sym_label] = ACTIONS(381), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [298] = { + [sym__expression] = STATE(3922), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(681), + [sym_label] = ACTIONS(689), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [299] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1936), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -80990,120 +82971,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), }, [300] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -81122,120 +83105,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [301] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [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(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -81254,252 +83239,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [302] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [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(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [sym__expression] = STATE(4080), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(663), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [303] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1922), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(707), + [sym_label] = ACTIONS(721), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [304] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -81518,120 +83641,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [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), }, - [304] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [305] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1936), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -81650,86 +83775,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [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), }, - [305] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), + [306] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1736), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1912), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [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), @@ -81739,31 +83866,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1790), [anon_sym_continue] = ACTIONS(1790), [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), + [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(1746), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -81782,12 +83909,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [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), @@ -81795,107 +83924,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1752), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [306] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(1910), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [307] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -81914,120 +84043,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [307] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [308] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -82046,252 +84177,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [308] = { - [sym__expression] = STATE(3663), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(593), - [sym_label] = ACTIONS(611), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [309] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1936), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -82310,249 +84311,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [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), }, [310] = { - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(759), - [sym_label] = ACTIONS(767), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(159), - [anon_sym_else] = ACTIONS(1582), - [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(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [311] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -82571,118 +84445,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [312] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [311] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -82701,118 +84579,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [313] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [312] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1932), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1936), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -82831,118 +84713,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), + }, + [313] = { + [sym__expression] = STATE(4136), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [314] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [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(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -82961,248 +84978,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [315] = { - [sym__expression] = STATE(3986), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(785), - [sym_label] = ACTIONS(793), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1582), - [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(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [316] = { - [sym_getter] = STATE(5440), - [sym_setter] = STATE(5440), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1990), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [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(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -83221,118 +85110,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [317] = { - [sym_getter] = STATE(5366), - [sym_setter] = STATE(5366), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(1990), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [316] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -83351,84 +85242,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), }, - [318] = { - [sym_getter] = STATE(5432), - [sym_setter] = STATE(5432), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), + [317] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_get] = ACTIONS(1990), - [anon_sym_set] = ACTIONS(1992), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), + [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), @@ -83438,31 +85331,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1790), [anon_sym_continue] = ACTIONS(1790), [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), + [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(1746), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -83481,12 +85374,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [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), @@ -83494,105 +85389,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1752), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, + [318] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, [319] = { - [sym_getter] = STATE(5404), - [sym_setter] = STATE(5404), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(1990), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -83611,118 +85638,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [320] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -83741,84 +85770,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [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), }, [321] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [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), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), + }, + [322] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [323] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(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), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), + }, + [324] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1950), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), + [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), @@ -83828,31 +86255,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1790), [anon_sym_continue] = ACTIONS(1790), [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), + [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(1746), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -83871,12 +86298,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [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), @@ -83884,105 +86313,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1752), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [322] = { - [sym_getter] = STATE(5459), - [sym_setter] = STATE(5459), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(1990), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [325] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -84001,248 +86430,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [323] = { - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(727), - [sym_label] = ACTIONS(741), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [326] = { + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2060), + [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), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [324] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [327] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2062), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -84261,118 +86694,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [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), }, - [325] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [328] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [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(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1802), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -84391,118 +86826,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [326] = { - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(1990), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_super] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [329] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [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(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1732), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -84521,84 +86958,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1756), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [327] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), + [330] = { + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1982), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), + [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), @@ -84608,31 +87047,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1790), [anon_sym_continue] = ACTIONS(1790), [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), + [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(1746), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -84651,12 +87090,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [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), @@ -84664,365 +87105,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1752), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1728), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [328] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [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(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [329] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1696), - [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(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [330] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [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(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1746), + [331] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_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(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(1814), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -85041,11614 +87222,11851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [331] = { - [sym__expression] = STATE(4100), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(1580), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [332] = { - [sym__expression] = STATE(4038), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2048), - [anon_sym_fun] = ACTIONS(2052), - [anon_sym_get] = ACTIONS(2056), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2066), - [sym_label] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2056), - [anon_sym_inner] = ACTIONS(2056), - [anon_sym_value] = ACTIONS(2056), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2056), - [anon_sym_actual] = ACTIONS(2056), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_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), }, [333] = { - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2143), - [anon_sym_fun] = ACTIONS(2147), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2161), - [sym_label] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2151), - [anon_sym_inner] = ACTIONS(2151), - [anon_sym_value] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2151), - [anon_sym_actual] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_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), }, [334] = { - [sym__expression] = STATE(1413), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2143), - [anon_sym_fun] = ACTIONS(2224), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2228), - [sym_label] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2151), - [anon_sym_inner] = ACTIONS(2151), - [anon_sym_value] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2151), - [anon_sym_actual] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(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(2278), + [anon_sym_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2282), + [sym_label] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(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), }, [335] = { - [sym__expression] = STATE(1541), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_fun] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2276), - [sym_label] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2306), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2266), - [anon_sym_inner] = ACTIONS(2266), - [anon_sym_value] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2266), - [anon_sym_actual] = ACTIONS(2266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2316), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2330), + [sym_label] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), + [anon_sym_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(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [336] = { - [sym__expression] = STATE(3732), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2351), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_get] = ACTIONS(2359), - [anon_sym_set] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2369), - [sym_label] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2359), - [anon_sym_inner] = ACTIONS(2359), - [anon_sym_value] = ACTIONS(2359), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2359), - [anon_sym_actual] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2429), + [sym_label] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_internal] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_tailrec] = ACTIONS(2082), + [anon_sym_operator] = ACTIONS(2082), + [anon_sym_infix] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_external] = ACTIONS(2082), + [sym_property_modifier] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_open] = ACTIONS(2082), + [anon_sym_vararg] = ACTIONS(2082), + [anon_sym_noinline] = ACTIONS(2082), + [anon_sym_crossinline] = ACTIONS(2082), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, [337] = { - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_fun] = ACTIONS(2448), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2462), - [sym_label] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2452), - [anon_sym_inner] = ACTIONS(2452), - [anon_sym_value] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2452), - [anon_sym_actual] = ACTIONS(2452), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2495), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2499), + [sym_label] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_internal] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_tailrec] = ACTIONS(2082), + [anon_sym_operator] = ACTIONS(2082), + [anon_sym_infix] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_external] = ACTIONS(2082), + [sym_property_modifier] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_open] = ACTIONS(2082), + [anon_sym_vararg] = ACTIONS(2082), + [anon_sym_noinline] = ACTIONS(2082), + [anon_sym_crossinline] = ACTIONS(2082), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, [338] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_fun] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2552), - [sym_label] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2570), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2542), - [anon_sym_inner] = ACTIONS(2542), - [anon_sym_value] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2542), - [anon_sym_actual] = ACTIONS(2542), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(3921), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2521), + [sym_label] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), + [anon_sym_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(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [339] = { - [sym__expression] = STATE(471), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_fun] = ACTIONS(2612), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2616), - [sym_label] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2542), - [anon_sym_inner] = ACTIONS(2542), - [anon_sym_value] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2542), - [anon_sym_actual] = ACTIONS(2542), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(2555), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2569), + [sym_label] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), + [anon_sym_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(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [340] = { - [sym__expression] = STATE(365), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2638), - [sym_label] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2542), - [anon_sym_inner] = ACTIONS(2542), - [anon_sym_value] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2542), - [anon_sym_actual] = ACTIONS(2542), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2668), + [sym_label] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [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(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [341] = { - [sym__expression] = STATE(3973), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2351), - [anon_sym_fun] = ACTIONS(2656), - [anon_sym_get] = ACTIONS(2359), - [anon_sym_set] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2660), - [sym_label] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2359), - [anon_sym_inner] = ACTIONS(2359), - [anon_sym_value] = ACTIONS(2359), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2359), - [anon_sym_actual] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(2734), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2738), + [sym_label] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [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(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [342] = { - [sym__expression] = STATE(4229), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2048), - [anon_sym_fun] = ACTIONS(2678), - [anon_sym_get] = ACTIONS(2056), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2682), - [sym_label] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2056), - [anon_sym_inner] = ACTIONS(2056), - [anon_sym_value] = ACTIONS(2056), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2056), - [anon_sym_actual] = ACTIONS(2056), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2756), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2760), + [sym_label] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [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(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [343] = { - [sym__expression] = STATE(4259), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2351), - [anon_sym_fun] = ACTIONS(2700), - [anon_sym_get] = ACTIONS(2359), - [anon_sym_set] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2704), - [sym_label] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2359), - [anon_sym_inner] = ACTIONS(2359), - [anon_sym_value] = ACTIONS(2359), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2359), - [anon_sym_actual] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2778), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2782), + [sym_label] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), + [anon_sym_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(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [344] = { - [sym__expression] = STATE(389), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2726), - [sym_label] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2542), - [anon_sym_inner] = ACTIONS(2542), - [anon_sym_value] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2542), - [anon_sym_actual] = ACTIONS(2542), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(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(2800), + [anon_sym_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2804), + [sym_label] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_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), }, [345] = { - [sym__expression] = STATE(3758), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2048), - [anon_sym_fun] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2056), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2748), - [sym_label] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2056), - [anon_sym_inner] = ACTIONS(2056), - [anon_sym_value] = ACTIONS(2056), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2056), - [anon_sym_actual] = ACTIONS(2056), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_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(2822), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2826), + [sym_label] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_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), }, [346] = { - [sym__expression] = STATE(2405), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2143), - [anon_sym_fun] = ACTIONS(2766), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2770), - [sym_label] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2151), - [anon_sym_inner] = ACTIONS(2151), - [anon_sym_value] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2151), - [anon_sym_actual] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_fun] = ACTIONS(2844), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2848), + [sym_label] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2658), + [anon_sym_inner] = ACTIONS(2658), + [anon_sym_value] = ACTIONS(2658), + [anon_sym_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(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [347] = { - [sym__expression] = STATE(2154), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_fun] = ACTIONS(2788), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2792), - [sym_label] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2452), - [anon_sym_inner] = ACTIONS(2452), - [anon_sym_value] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2452), - [anon_sym_actual] = ACTIONS(2452), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym__expression] = STATE(3296), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2866), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2870), + [sym_label] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), + [anon_sym_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(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [348] = { - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2814), - [sym_label] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2452), - [anon_sym_inner] = ACTIONS(2452), - [anon_sym_value] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2452), - [anon_sym_actual] = ACTIONS(2452), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2892), + [sym_label] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_internal] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_tailrec] = ACTIONS(2082), + [anon_sym_operator] = ACTIONS(2082), + [anon_sym_infix] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_external] = ACTIONS(2082), + [sym_property_modifier] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_open] = ACTIONS(2082), + [anon_sym_vararg] = ACTIONS(2082), + [anon_sym_noinline] = ACTIONS(2082), + [anon_sym_crossinline] = ACTIONS(2082), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, [349] = { - [sym__expression] = STATE(3125), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2048), - [anon_sym_fun] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2056), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2836), - [sym_label] = ACTIONS(2839), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2056), - [anon_sym_inner] = ACTIONS(2056), - [anon_sym_value] = ACTIONS(2056), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2056), - [anon_sym_actual] = ACTIONS(2056), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), + [sym__expression] = STATE(4242), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(2910), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2914), + [sym_label] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [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(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [350] = { - [sym__expression] = STATE(4191), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2351), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_get] = ACTIONS(2359), - [anon_sym_set] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2858), - [sym_label] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2359), - [anon_sym_inner] = ACTIONS(2359), - [anon_sym_value] = ACTIONS(2359), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2359), - [anon_sym_actual] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_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(2932), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2936), + [sym_label] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_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), }, [351] = { - [sym__expression] = STATE(1531), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_fun] = ACTIONS(2876), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2880), - [sym_label] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2452), - [anon_sym_inner] = ACTIONS(2452), - [anon_sym_value] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2452), - [anon_sym_actual] = ACTIONS(2452), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2954), + [anon_sym_get] = ACTIONS(2419), + [anon_sym_set] = ACTIONS(2419), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2958), + [sym_label] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2419), + [anon_sym_inner] = ACTIONS(2419), + [anon_sym_value] = ACTIONS(2419), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_lateinit] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_internal] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_tailrec] = ACTIONS(2082), + [anon_sym_operator] = ACTIONS(2082), + [anon_sym_infix] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_external] = ACTIONS(2082), + [sym_property_modifier] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_open] = ACTIONS(2082), + [anon_sym_vararg] = ACTIONS(2082), + [anon_sym_noinline] = ACTIONS(2082), + [anon_sym_crossinline] = ACTIONS(2082), + [anon_sym_expect] = ACTIONS(2419), + [anon_sym_actual] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, [352] = { - [sym__expression] = STATE(1317), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2902), - [sym_label] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2266), - [anon_sym_inner] = ACTIONS(2266), - [anon_sym_value] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2266), - [anon_sym_actual] = ACTIONS(2266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), + [sym__expression] = STATE(4114), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2312), + [anon_sym_fun] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2980), + [sym_label] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2320), + [anon_sym_inner] = ACTIONS(2320), + [anon_sym_value] = ACTIONS(2320), + [anon_sym_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(2320), + [anon_sym_actual] = ACTIONS(2320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [353] = { - [sym__expression] = STATE(2471), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_fun] = ACTIONS(2920), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2924), - [sym_label] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2266), - [anon_sym_inner] = ACTIONS(2266), - [anon_sym_value] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2266), - [anon_sym_actual] = ACTIONS(2266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(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(2998), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(3002), + [sym_label] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_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), }, [354] = { - [sym__expression] = STATE(2544), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2143), - [anon_sym_fun] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2946), - [sym_label] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2151), - [anon_sym_inner] = ACTIONS(2151), - [anon_sym_value] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2151), - [anon_sym_actual] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_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(3020), + [anon_sym_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(3024), + [sym_label] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_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), }, [355] = { - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_typealias] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_val] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2968), - [sym_label] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_suspend] = ACTIONS(2040), - [anon_sym_sealed] = ACTIONS(2040), - [anon_sym_annotation] = ACTIONS(2040), - [anon_sym_data] = ACTIONS(2266), - [anon_sym_inner] = ACTIONS(2266), - [anon_sym_value] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_lateinit] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_internal] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_tailrec] = ACTIONS(2040), - [anon_sym_operator] = ACTIONS(2040), - [anon_sym_infix] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_external] = ACTIONS(2040), - [sym_property_modifier] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_open] = ACTIONS(2040), - [anon_sym_vararg] = ACTIONS(2040), - [anon_sym_noinline] = ACTIONS(2040), - [anon_sym_crossinline] = ACTIONS(2040), - [anon_sym_expect] = ACTIONS(2266), - [anon_sym_actual] = ACTIONS(2266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_typealias] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_val] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_fun] = ACTIONS(3042), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(3046), + [sym_label] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_suspend] = ACTIONS(2082), + [anon_sym_sealed] = ACTIONS(2082), + [anon_sym_annotation] = ACTIONS(2082), + [anon_sym_data] = ACTIONS(2559), + [anon_sym_inner] = ACTIONS(2559), + [anon_sym_value] = ACTIONS(2559), + [anon_sym_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(2559), + [anon_sym_actual] = ACTIONS(2559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [356] = { - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), + [sym__expression] = STATE(1892), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [357] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(1584), + [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_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [358] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym__expression] = STATE(4271), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [359] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(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), }, [360] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(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(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [361] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_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(3101), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [362] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [363] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [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(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(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(3113), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, [364] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [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(3117), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [365] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3123), }, [366] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [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), }, [367] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3043), - [anon_sym_object] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3043), - [anon_sym_super] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_when] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_throw] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3045), - [anon_sym_continue_AT] = ACTIONS(3045), - [anon_sym_break_AT] = ACTIONS(3045), - [sym_real_literal] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [sym_hex_literal] = ACTIONS(3045), - [sym_bin_literal] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3045), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3045), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [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(3132), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [368] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = 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(3136), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), }, [369] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [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(3140), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [370] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_object] = ACTIONS(3055), - [anon_sym_fun] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3055), - [anon_sym_super] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_when] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3055), - [anon_sym_sealed] = ACTIONS(3055), - [anon_sym_annotation] = ACTIONS(3055), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3055), - [anon_sym_lateinit] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_internal] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_tailrec] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_infix] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym_external] = ACTIONS(3055), - [sym_property_modifier] = ACTIONS(3055), - [anon_sym_abstract] = ACTIONS(3055), - [anon_sym_final] = ACTIONS(3055), - [anon_sym_open] = ACTIONS(3055), - [anon_sym_vararg] = ACTIONS(3055), - [anon_sym_noinline] = ACTIONS(3055), - [anon_sym_crossinline] = ACTIONS(3055), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3057), - [anon_sym_continue_AT] = ACTIONS(3057), - [anon_sym_break_AT] = ACTIONS(3057), - [sym_real_literal] = ACTIONS(3057), - [sym_integer_literal] = ACTIONS(3055), - [sym_hex_literal] = ACTIONS(3057), - [sym_bin_literal] = ACTIONS(3057), - [anon_sym_true] = ACTIONS(3055), - [anon_sym_false] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3057), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3057), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(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(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(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(3144), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [371] = { - [sym__expression] = STATE(4202), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), + [sym__expression] = STATE(2286), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [372] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [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(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(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(3156), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, [373] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(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(3160), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [374] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(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(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [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(3167), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, [375] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(1714), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_QMARK_COLON] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1772), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3173), }, [376] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1972), - [sym__comparison_operator] = STATE(1971), - [sym__in_operator] = STATE(1964), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1963), - [sym__multiplicative_operator] = STATE(1962), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1955), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, [377] = { - [sym__expression] = STATE(4233), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1740), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(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(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(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(3182), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, [378] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [379] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1967), + [sym__in_operator] = STATE(1959), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1943), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1929), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(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(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(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), }, [380] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, [381] = { - [sym__expression] = STATE(4275), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(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), }, [382] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3043), - [anon_sym_super] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_when] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_throw] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3045), - [anon_sym_continue_AT] = ACTIONS(3045), - [anon_sym_break_AT] = ACTIONS(3045), - [sym_real_literal] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [sym_hex_literal] = ACTIONS(3045), - [sym_bin_literal] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3045), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3045), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [383] = { - [sym_primary_constructor] = STATE(2916), - [sym_class_body] = STATE(3260), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(412), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(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(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(3167), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, [384] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym_primary_constructor] = STATE(853), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(420), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3206), }, [385] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, [386] = { - [sym_primary_constructor] = STATE(2922), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(419), - [sym_type_constraints] = STATE(3133), - [sym_enum_class_body] = STATE(3233), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(850), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(415), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [387] = { - [sym_primary_constructor] = STATE(2924), - [sym_class_body] = STATE(3233), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(420), - [sym_type_constraints] = STATE(3158), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(835), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(414), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [388] = { - [sym__expression] = STATE(1656), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1580), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [389] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), - }, - [390] = { - [sym_primary_constructor] = STATE(2888), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(418), - [sym_type_constraints] = STATE(3161), - [sym_enum_class_body] = STATE(3201), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(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(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = 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(3136), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), [anon_sym_public] = ACTIONS(3136), [anon_sym_private] = ACTIONS(3136), [anon_sym_internal] = ACTIONS(3136), [anon_sym_protected] = ACTIONS(3136), - [anon_sym_tailrec] = ACTIONS(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(3138), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), + }, + [390] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_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(3140), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), [anon_sym_abstract] = ACTIONS(3140), [anon_sym_final] = ACTIONS(3140), [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [391] = { - [sym_primary_constructor] = STATE(881), - [sym_class_body] = STATE(1076), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(409), - [sym_type_constraints] = STATE(965), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(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), }, [392] = { - [sym_primary_constructor] = STATE(878), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(416), - [sym_type_constraints] = STATE(958), - [sym_enum_class_body] = STATE(1076), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [393] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym_primary_constructor] = STATE(2854), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(421), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, [394] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, [395] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym_primary_constructor] = STATE(855), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(411), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [396] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [397] = { - [sym_primary_constructor] = STATE(866), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(414), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1174), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_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(3132), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3132), [anon_sym_sealed] = ACTIONS(3132), [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [398] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, [399] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym_primary_constructor] = STATE(2839), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(407), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(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), }, [400] = { - [sym_primary_constructor] = STATE(843), - [sym_class_body] = STATE(1175), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(415), - [sym_type_constraints] = STATE(980), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [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(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(3156), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, [401] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(1826), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(1874), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [402] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym_primary_constructor] = STATE(2844), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(409), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [403] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym_primary_constructor] = STATE(2846), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(410), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [404] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(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(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(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(3171), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3173), }, [405] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(1748), - [sym__comparison_operator] = STATE(1746), - [sym__in_operator] = STATE(1744), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(1743), - [sym__multiplicative_operator] = STATE(1742), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1740), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1646), + [sym__in_operator] = STATE(1645), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1643), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1642), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(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(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [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(3101), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [406] = { - [sym_primary_constructor] = STATE(2969), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(438), - [sym_type_constraints] = STATE(3133), - [sym_enum_class_body] = STATE(3233), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(2884), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(439), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [407] = { - [sym_primary_constructor] = STATE(905), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(422), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1174), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_primary_constructor] = STATE(2843), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, [408] = { - [sym_primary_constructor] = STATE(2998), - [sym_class_body] = STATE(3260), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(425), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_primary_constructor] = STATE(862), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(432), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(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), }, [409] = { - [sym_primary_constructor] = STATE(875), - [sym_class_body] = STATE(1206), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(947), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_primary_constructor] = STATE(2851), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [410] = { - [sym_primary_constructor] = STATE(2954), - [sym_class_body] = STATE(3233), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(433), - [sym_type_constraints] = STATE(3158), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(2852), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [411] = { - [sym_primary_constructor] = STATE(895), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(427), - [sym_type_constraints] = STATE(958), - [sym_enum_class_body] = STATE(1076), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(857), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [412] = { - [sym_primary_constructor] = STATE(2920), - [sym_class_body] = STATE(3234), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3130), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym_primary_constructor] = STATE(2888), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(429), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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(2952), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(431), - [sym_type_constraints] = STATE(3161), - [sym_enum_class_body] = STATE(3201), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_primary_constructor] = STATE(916), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(426), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [414] = { - [sym_primary_constructor] = STATE(859), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_primary_constructor] = STATE(829), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [415] = { - [sym_primary_constructor] = STATE(858), - [sym_class_body] = STATE(1088), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(962), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [416] = { - [sym_primary_constructor] = STATE(853), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_primary_constructor] = STATE(832), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [416] = { + [sym_primary_constructor] = STATE(922), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(423), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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(897), - [sym_class_body] = STATE(1076), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(436), - [sym_type_constraints] = STATE(965), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(890), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(428), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, [418] = { - [sym_primary_constructor] = STATE(2901), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_primary_constructor] = STATE(2895), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(422), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [419] = { - [sym_primary_constructor] = STATE(2926), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_primary_constructor] = STATE(2921), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(427), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [420] = { - [sym_primary_constructor] = STATE(2935), - [sym_class_body] = STATE(3181), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3173), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_primary_constructor] = STATE(859), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, [421] = { - [sym_primary_constructor] = STATE(892), - [sym_class_body] = STATE(1175), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(424), - [sym_type_constraints] = STATE(980), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_primary_constructor] = STATE(2855), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [422] = { - [sym_primary_constructor] = STATE(906), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_primary_constructor] = STATE(2907), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [423] = { - [sym_type_constraints] = STATE(442), - [sym_property_delegate] = STATE(494), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [sym_primary_constructor] = STATE(923), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [424] = { + [sym_type_constraints] = STATE(456), + [sym_property_delegate] = STATE(503), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96673,348 +99091,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), - }, - [424] = { - [sym_primary_constructor] = STATE(894), - [sym_class_body] = STATE(1088), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(962), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [425] = { - [sym_primary_constructor] = STATE(2971), - [sym_class_body] = STATE(3234), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3130), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [426] = { - [sym_type_constraints] = STATE(440), - [sym_property_delegate] = STATE(509), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_type_constraints] = STATE(446), + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97039,925 +99215,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [426] = { + [sym_primary_constructor] = STATE(893), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [427] = { - [sym_primary_constructor] = STATE(900), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_primary_constructor] = STATE(2937), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [428] = { - [sym_type_constraints] = STATE(448), - [sym_property_delegate] = STATE(500), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [sym_primary_constructor] = STATE(888), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [429] = { - [sym_type_constraints] = STATE(450), - [sym_property_delegate] = STATE(505), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), - }, - [430] = { - [sym_type_constraints] = STATE(449), - [sym_property_delegate] = STATE(502), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [431] = { - [sym_primary_constructor] = STATE(2976), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [432] = { - [sym_type_constraints] = STATE(446), - [sym_property_delegate] = STATE(499), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [433] = { - [sym_primary_constructor] = STATE(2953), - [sym_class_body] = STATE(3181), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3173), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [434] = { - [sym_type_constraints] = STATE(444), - [sym_property_delegate] = STATE(482), - [sym_getter] = STATE(1196), - [sym_setter] = STATE(1196), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_primary_constructor] = STATE(2896), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3274), [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_LT] = ACTIONS(3270), [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(3270), [anon_sym_fun] = ACTIONS(3270), [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), [anon_sym_this] = ACTIONS(3270), [anon_sym_super] = ACTIONS(3270), [anon_sym_STAR] = ACTIONS(3270), [sym_label] = ACTIONS(3270), [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), [anon_sym_null] = ACTIONS(3270), [anon_sym_if] = ACTIONS(3270), [anon_sym_else] = ACTIONS(3270), @@ -97967,30 +99663,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3270), [anon_sym_continue] = ACTIONS(3270), [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3274), [anon_sym_PLUS] = ACTIONS(3270), [anon_sym_DASH] = ACTIONS(3270), [anon_sym_SLASH] = ACTIONS(3270), [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [430] = { + [sym_type_constraints] = STATE(442), + [sym_property_delegate] = STATE(513), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98015,104 +99835,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [435] = { - [sym_type_constraints] = STATE(456), - [sym_property_delegate] = STATE(513), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [431] = { + [sym_type_constraints] = STATE(440), + [sym_property_delegate] = STATE(508), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98137,193 +99959,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [436] = { - [sym_primary_constructor] = STATE(903), - [sym_class_body] = STATE(1206), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(947), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [437] = { - [sym_type_constraints] = STATE(453), - [sym_property_delegate] = STATE(510), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [432] = { + [sym_primary_constructor] = STATE(913), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3278), [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_this] = ACTIONS(3278), [anon_sym_super] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3278), [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_null] = ACTIONS(3278), [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), @@ -98333,30 +100035,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3278), [anon_sym_continue] = ACTIONS(3278), [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [433] = { + [sym_type_constraints] = STATE(448), + [sym_property_delegate] = STATE(511), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98381,226 +100207,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [438] = { - [sym_primary_constructor] = STATE(2946), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [439] = { - [sym_type_constraints] = STATE(457), - [sym_property_delegate] = STATE(516), - [sym_getter] = STATE(3252), - [sym_setter] = STATE(3252), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [434] = { + [sym_type_constraints] = STATE(449), + [sym_property_delegate] = STATE(480), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98625,103 +100331,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [440] = { - [sym_property_delegate] = STATE(499), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [435] = { + [sym_type_constraints] = STATE(454), + [sym_property_delegate] = STATE(498), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98746,103 +100455,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [441] = { - [sym_type_constraints] = STATE(481), - [sym_property_delegate] = STATE(596), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [436] = { + [sym_type_constraints] = STATE(453), + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98867,103 +100579,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [442] = { - [sym_property_delegate] = STATE(489), - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [437] = { + [sym_type_constraints] = STATE(445), + [sym_property_delegate] = STATE(487), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98988,103 +100703,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [443] = { - [sym_type_constraints] = STATE(484), - [sym_property_delegate] = STATE(589), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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), + [438] = { + [sym_type_constraints] = STATE(458), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99109,70 +100827,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [444] = { - [sym_property_delegate] = STATE(513), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [439] = { + [sym_primary_constructor] = STATE(2919), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(3278), [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_this] = ACTIONS(3278), [anon_sym_super] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3278), [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_null] = ACTIONS(3278), [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), @@ -99182,30 +100903,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3278), [anon_sym_continue] = ACTIONS(3278), [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [440] = { + [sym_property_delegate] = STATE(480), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99230,103 +101074,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [445] = { - [sym_type_constraints] = STATE(486), - [sym_property_delegate] = STATE(582), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [441] = { + [sym_type_constraints] = STATE(507), + [sym_property_delegate] = STATE(556), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99351,103 +101197,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [446] = { - [sym_property_delegate] = STATE(494), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3238), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [442] = { + [sym_property_delegate] = STATE(483), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99472,103 +101320,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [447] = { - [sym_type_constraints] = STATE(498), - [sym_property_delegate] = STATE(573), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [443] = { + [sym_type_constraints] = STATE(496), + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99593,103 +101443,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [448] = { - [sym_property_delegate] = STATE(493), - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [444] = { + [sym_type_constraints] = STATE(479), + [sym_property_delegate] = STATE(595), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99714,103 +101566,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [449] = { - [sym_property_delegate] = STATE(500), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3238), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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), + [445] = { + [sym_property_delegate] = STATE(511), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99835,103 +101689,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [450] = { - [sym_property_delegate] = STATE(502), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [446] = { + [sym_property_delegate] = STATE(513), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99956,103 +101812,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [451] = { - [sym_type_constraints] = STATE(504), - [sym_property_delegate] = STATE(559), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [447] = { + [sym_type_constraints] = STATE(505), + [sym_property_delegate] = STATE(589), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100077,103 +101935,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [452] = { - [sym_type_constraints] = STATE(514), - [sym_property_delegate] = STATE(579), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [448] = { + [sym_property_delegate] = STATE(503), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100198,103 +102058,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [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(3280), + [sym__string_start] = ACTIONS(1792), }, - [453] = { - [sym_property_delegate] = STATE(505), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [449] = { + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [450] = { + [sym_type_constraints] = STATE(501), + [sym_property_delegate] = STATE(549), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100319,103 +102304,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [454] = { - [sym_type_constraints] = STATE(508), + [451] = { + [sym_type_constraints] = STATE(500), [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100440,103 +102427,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [455] = { - [sym_type_constraints] = STATE(485), - [sym_property_delegate] = STATE(546), - [sym_getter] = STATE(3252), - [sym_setter] = STATE(3252), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [452] = { + [sym_type_constraints] = STATE(495), + [sym_property_delegate] = STATE(547), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100561,103 +102550,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [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(3272), + [sym__string_start] = ACTIONS(1792), + }, + [453] = { + [sym_property_delegate] = STATE(487), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [454] = { + [sym_property_delegate] = STATE(508), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [455] = { + [sym_type_constraints] = STATE(491), + [sym_property_delegate] = STATE(568), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [456] = { - [sym_property_delegate] = STATE(509), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100682,103 +103042,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [457] = { - [sym_property_delegate] = STATE(510), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_type_constraints] = STATE(493), + [sym_property_delegate] = STATE(560), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100803,103 +103165,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [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(3280), + [sym__string_start] = ACTIONS(1792), }, [458] = { - [sym_type_constraints] = STATE(479), - [sym_property_delegate] = STATE(545), - [sym_getter] = STATE(1196), - [sym_setter] = STATE(1196), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [sym_property_delegate] = STATE(485), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100924,103 +103288,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [459] = { - [sym_type_constraints] = STATE(497), - [sym_property_delegate] = STATE(570), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [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), + [sym_type_constraints] = STATE(494), + [sym_property_delegate] = STATE(557), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101045,2381 +103411,2421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [460] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(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(3182), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, [461] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, [462] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(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(3171), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3173), }, [463] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, [464] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, [465] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), }, [466] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [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(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(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(3101), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [467] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_object] = ACTIONS(3055), - [anon_sym_fun] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3055), - [anon_sym_super] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_when] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3055), - [anon_sym_sealed] = ACTIONS(3055), - [anon_sym_annotation] = ACTIONS(3055), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3055), - [anon_sym_lateinit] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_internal] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_tailrec] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_infix] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym_external] = ACTIONS(3055), - [sym_property_modifier] = ACTIONS(3055), - [anon_sym_abstract] = ACTIONS(3055), - [anon_sym_final] = ACTIONS(3055), - [anon_sym_open] = ACTIONS(3055), - [anon_sym_vararg] = ACTIONS(3055), - [anon_sym_noinline] = ACTIONS(3055), - [anon_sym_crossinline] = ACTIONS(3055), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3057), - [anon_sym_continue_AT] = ACTIONS(3057), - [anon_sym_break_AT] = ACTIONS(3057), - [sym_real_literal] = ACTIONS(3057), - [sym_integer_literal] = ACTIONS(3055), - [sym_hex_literal] = ACTIONS(3057), - [sym_bin_literal] = ACTIONS(3057), - [anon_sym_true] = ACTIONS(3055), - [anon_sym_false] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3057), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3057), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [468] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [469] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(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(3117), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [470] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [471] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [472] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, [473] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [474] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, [475] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [476] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_where] = ACTIONS(3043), - [anon_sym_object] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3043), - [anon_sym_super] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_when] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_throw] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1896), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1896), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1898), - [anon_sym_LT_EQ] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1900), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3045), - [anon_sym_continue_AT] = ACTIONS(3045), - [anon_sym_break_AT] = ACTIONS(3045), - [sym_real_literal] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [sym_hex_literal] = ACTIONS(3045), - [sym_bin_literal] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3045), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3045), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), }, [477] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), }, [478] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2181), - [sym__comparison_operator] = STATE(2184), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2186), - [sym__multiplicative_operator] = STATE(2187), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2095), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(1884), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_QMARK_COLON] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(1902), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1794), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1806), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(1936), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), + [anon_sym_EQ_EQ] = ACTIONS(1948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_BANGin] = ACTIONS(1954), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1936), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3123), }, [479] = { - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103444,101 +105850,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [480] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103563,101 +105971,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [481] = { - [sym_property_delegate] = STATE(582), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103682,101 +106092,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [482] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103801,101 +106213,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [483] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [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), @@ -103920,101 +106334,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, [484] = { - [sym_property_delegate] = STATE(606), - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104039,101 +106455,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [485] = { - [sym_property_delegate] = STATE(579), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104158,101 +106576,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, [486] = { - [sym_property_delegate] = STATE(570), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [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), + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104277,101 +106697,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [487] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104396,43 +106818,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [488] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [489] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [490] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -104447,8 +107113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1790), @@ -104515,12 +107181,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), [sym_real_literal] = ACTIONS(1792), [sym_integer_literal] = ACTIONS(1790), [sym_hex_literal] = ACTIONS(1792), @@ -104534,82 +107202,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [489] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [491] = { + [sym_property_delegate] = STATE(579), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104634,101 +107302,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [490] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [492] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104753,101 +107423,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [491] = { - [sym_getter] = STATE(3297), - [sym_setter] = STATE(3297), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [493] = { + [sym_property_delegate] = STATE(568), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104872,59 +107544,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [492] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [494] = { + [sym_property_delegate] = STATE(560), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3414), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1790), @@ -104991,12 +107665,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), [sym_real_literal] = ACTIONS(1792), [sym_integer_literal] = ACTIONS(1790), [sym_hex_literal] = ACTIONS(1792), @@ -105010,82 +107686,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [493] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [495] = { + [sym_property_delegate] = STATE(589), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105110,101 +107786,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [494] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [496] = { + [sym_property_delegate] = STATE(557), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105229,101 +107907,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [495] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [497] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105348,101 +108028,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [496] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [498] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105467,101 +108149,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [497] = { - [sym_property_delegate] = STATE(565), - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [499] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105586,101 +108270,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [498] = { - [sym_property_delegate] = STATE(589), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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), + [500] = { + [sym_property_delegate] = STATE(549), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105705,101 +108391,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [499] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [501] = { + [sym_property_delegate] = STATE(547), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105824,101 +108512,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [500] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [502] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105943,101 +108633,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [501] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [503] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106062,101 +108754,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [502] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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), + [504] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106181,101 +108875,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [503] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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), + [505] = { + [sym_property_delegate] = STATE(583), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106300,101 +108996,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [504] = { - [sym_property_delegate] = STATE(573), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [506] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106419,101 +109117,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [505] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [507] = { + [sym_property_delegate] = STATE(553), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106538,101 +109238,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [506] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [508] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106657,101 +109359,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [507] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [509] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106776,101 +109480,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [508] = { - [sym_property_delegate] = STATE(559), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [510] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106895,101 +109601,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [509] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [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), + [511] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107014,339 +109722,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [510] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), - }, - [511] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [512] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107371,101 +109843,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [513] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9215), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107490,101 +109964,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [514] = { - [sym_property_delegate] = STATE(596), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107609,101 +110085,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [515] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9145), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107728,101 +110206,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [516] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9156), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9230), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107847,3284 +110327,3221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [517] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), }, [518] = { - [sym_primary_constructor] = STATE(3763), - [sym_class_body] = STATE(3233), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(543), - [sym_type_constraints] = STATE(3158), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(1349), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(563), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(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), }, [519] = { - [sym_primary_constructor] = STATE(1348), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(603), - [sym_type_constraints] = STATE(958), - [sym_enum_class_body] = STATE(1076), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_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(3113), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, [520] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_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(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [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(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [521] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [522] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), - }, - [523] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), - }, - [524] = { - [sym_primary_constructor] = STATE(1347), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(607), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1174), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [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(3136), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), [anon_sym_public] = ACTIONS(3136), [anon_sym_private] = ACTIONS(3136), [anon_sym_internal] = ACTIONS(3136), [anon_sym_protected] = ACTIONS(3136), - [anon_sym_tailrec] = ACTIONS(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(3138), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), + }, + [523] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(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(3140), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), [anon_sym_abstract] = ACTIONS(3140), [anon_sym_final] = ACTIONS(3140), [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [524] = { + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(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(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(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(3144), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [525] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [526] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3171), + [anon_sym_super] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_when] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3173), + [anon_sym_continue_AT] = ACTIONS(3173), + [anon_sym_break_AT] = ACTIONS(3173), + [anon_sym_this_AT] = ACTIONS(3173), + [anon_sym_super_AT] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3173), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3173), }, [527] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [528] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, [529] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [530] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_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(3132), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [531] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, [532] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_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), }, [533] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, [534] = { - [sym_primary_constructor] = STATE(1298), - [sym_class_body] = STATE(1076), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(604), - [sym_type_constraints] = STATE(965), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, [535] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym_indexing_suffix] = STATE(1056), + [sym_navigation_suffix] = STATE(1053), + [sym_call_suffix] = STATE(1050), + [sym_annotated_lambda] = STATE(1047), + [sym_type_arguments] = STATE(8109), + [sym_value_arguments] = STATE(764), + [sym_lambda_literal] = STATE(1044), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1479), + [sym__in_operator] = STATE(1478), + [sym__is_operator] = STATE(5955), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1466), + [sym__as_operator] = STATE(5956), + [sym__postfix_unary_operator] = STATE(1041), + [sym__member_access_operator] = STATE(7815), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1452), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(2018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2022), + [anon_sym_BANGin] = ACTIONS(2024), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_as_QMARK] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, [536] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym_primary_constructor] = STATE(3689), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(575), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, [537] = { - [sym_primary_constructor] = STATE(3793), - [sym_class_body] = STATE(3260), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(574), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_primary_constructor] = STATE(1350), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(564), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [538] = { - [sym_primary_constructor] = STATE(3765), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(575), - [sym_type_constraints] = STATE(3133), - [sym_enum_class_body] = STATE(3233), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym_primary_constructor] = STATE(1346), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(561), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [539] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_object] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3043), - [anon_sym_super] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_QMARK_COLON] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_when] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_throw] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1968), - [anon_sym_BANGin] = ACTIONS(1970), - [anon_sym_is] = ACTIONS(1738), - [anon_sym_BANGis] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3045), - [anon_sym_continue_AT] = ACTIONS(3045), - [anon_sym_break_AT] = ACTIONS(3045), - [sym_real_literal] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [sym_hex_literal] = ACTIONS(3045), - [sym_bin_literal] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3045), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3045), + [sym_primary_constructor] = STATE(3696), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(572), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [540] = { - [sym_primary_constructor] = STATE(3749), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(576), - [sym_type_constraints] = STATE(3161), - [sym_enum_class_body] = STATE(3201), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_primary_constructor] = STATE(1363), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(567), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3206), + [anon_sym_continue_AT] = ACTIONS(3206), + [anon_sym_break_AT] = ACTIONS(3206), + [anon_sym_this_AT] = ACTIONS(3206), + [anon_sym_super_AT] = ACTIONS(3206), + [sym_real_literal] = ACTIONS(3206), + [sym_integer_literal] = ACTIONS(3200), + [sym_hex_literal] = ACTIONS(3206), + [sym_bin_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3206), }, [541] = { - [sym_primary_constructor] = STATE(1343), - [sym_class_body] = STATE(1175), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(601), - [sym_type_constraints] = STATE(980), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_primary_constructor] = STATE(3699), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(571), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), }, [542] = { - [sym_indexing_suffix] = STATE(1160), - [sym_navigation_suffix] = STATE(1149), - [sym_call_suffix] = STATE(1147), - [sym_annotated_lambda] = STATE(1146), - [sym_type_arguments] = STATE(8209), - [sym_value_arguments] = STATE(778), - [sym_lambda_literal] = STATE(1048), - [sym__equality_operator] = STATE(2149), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2147), - [sym__is_operator] = STATE(6101), - [sym__additive_operator] = STATE(2145), - [sym__multiplicative_operator] = STATE(2140), - [sym__as_operator] = STATE(6171), - [sym__postfix_unary_operator] = STATE(1143), - [sym__member_access_operator] = STATE(7772), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2137), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(1952), - [sym_label] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1952), - [anon_sym_as_QMARK] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(1728), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym_primary_constructor] = STATE(3695), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(573), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [543] = { - [sym_primary_constructor] = STATE(3755), - [sym_class_body] = STATE(3181), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3173), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [544] = { - [sym_type_constraints] = STATE(620), - [sym_property_delegate] = STATE(688), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111149,99 +113566,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [545] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [544] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111266,99 +113685,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [546] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [545] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111383,99 +113804,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [546] = { + [sym_primary_constructor] = STATE(3783), + [sym_class_body] = STATE(3137), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(623), + [sym_type_constraints] = STATE(3047), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, [547] = { - [sym_type_constraints] = STATE(623), - [sym_property_delegate] = STATE(667), - [sym_getter] = STATE(3252), - [sym_setter] = STATE(3252), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3376), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111500,117 +114042,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [548] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -111629,87 +114161,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [549] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111734,99 +114280,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [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(3280), + [sym__string_start] = ACTIONS(1792), }, [550] = { - [sym_type_constraints] = STATE(625), - [sym_property_delegate] = STATE(670), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111851,99 +114399,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [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(3280), + [sym__string_start] = ACTIONS(1792), }, [551] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111968,99 +114518,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [552] = { - [sym_type_constraints] = STATE(624), - [sym_property_delegate] = STATE(672), - [sym_getter] = STATE(1196), - [sym_setter] = STATE(1196), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [sym_primary_constructor] = STATE(3758), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(617), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3244), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), + }, + [553] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112085,99 +114756,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [553] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [554] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112202,117 +114875,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [554] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_get] = ACTIONS(3442), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [555] = { + [sym_primary_constructor] = STATE(1423), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(619), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1186), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [556] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112331,105 +115113,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [555] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym_get] = ACTIONS(3442), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [557] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112448,87 +115232,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [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), }, - [556] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [558] = { + [sym_primary_constructor] = STATE(1391), + [sym_class_body] = STATE(1186), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(615), + [sym_type_constraints] = STATE(983), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [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), + }, + [559] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112553,117 +115470,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [557] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_get] = ACTIONS(3442), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [560] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112682,105 +115589,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [558] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_get] = ACTIONS(3442), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1756), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [561] = { + [sym_primary_constructor] = STATE(1345), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [562] = { + [sym_type_constraints] = STATE(612), + [sym_property_delegate] = STATE(664), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112799,87 +115827,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), + }, + [563] = { + [sym_primary_constructor] = STATE(1347), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [559] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [564] = { + [sym_primary_constructor] = STATE(1295), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [565] = { + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112904,99 +116184,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [560] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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), + [566] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113021,117 +116303,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [561] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(3442), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [567] = { + [sym_primary_constructor] = STATE(1353), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [568] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -113150,105 +116541,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [562] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [569] = { + [sym_type_constraints] = STATE(603), + [sym_property_delegate] = STATE(668), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -113267,87 +116660,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [563] = { - [sym_getter] = STATE(3297), - [sym_setter] = STATE(3297), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [570] = { + [sym_type_constraints] = STATE(620), + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113372,99 +116779,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [564] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [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), + [571] = { + [sym_primary_constructor] = STATE(3703), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [572] = { + [sym_primary_constructor] = STATE(3698), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [573] = { + [sym_primary_constructor] = STATE(3697), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [574] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113489,99 +117255,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [575] = { + [sym_primary_constructor] = STATE(3693), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(3274), }, - [565] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [576] = { + [sym_primary_constructor] = STATE(1420), + [sym_class_body] = STATE(1023), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(621), + [sym_type_constraints] = STATE(939), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), + }, + [577] = { + [sym_primary_constructor] = STATE(1414), + [sym__class_parameters] = STATE(936), + [sym_type_parameters] = STATE(613), + [sym_type_constraints] = STATE(928), + [sym_enum_class_body] = STATE(1175), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_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_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3248), + [anon_sym_continue_AT] = ACTIONS(3248), + [anon_sym_break_AT] = ACTIONS(3248), + [anon_sym_this_AT] = ACTIONS(3248), + [anon_sym_super_AT] = ACTIONS(3248), + [sym_real_literal] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3244), + [sym_hex_literal] = ACTIONS(3248), + [sym_bin_literal] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3248), + }, + [578] = { + [sym_primary_constructor] = STATE(3814), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(604), + [sym_type_constraints] = STATE(2970), + [sym_enum_class_body] = STATE(3178), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [579] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [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), @@ -113606,99 +117850,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [566] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [580] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113723,99 +117969,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [567] = { - [sym_type_constraints] = STATE(628), - [sym_property_delegate] = STATE(693), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [581] = { + [sym_type_constraints] = STATE(608), + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113840,117 +118088,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [568] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1756), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [582] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -113969,105 +118207,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [569] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [583] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -114086,87 +118326,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, - [570] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [584] = { + [sym_type_constraints] = STATE(610), + [sym_property_delegate] = STATE(648), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114191,99 +118445,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [571] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [585] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114308,99 +118564,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [572] = { - [sym_type_constraints] = STATE(627), - [sym_property_delegate] = STATE(690), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [586] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114425,99 +118683,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [573] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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), + [587] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114542,468 +118802,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), - }, - [574] = { - [sym_primary_constructor] = STATE(3771), - [sym_class_body] = STATE(3234), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3130), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [575] = { - [sym_primary_constructor] = STATE(3761), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [576] = { - [sym_primary_constructor] = STATE(3757), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [577] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [588] = { + [sym_type_constraints] = STATE(600), + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -115022,87 +118921,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [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), }, - [578] = { - [sym_type_constraints] = STATE(626), - [sym_property_delegate] = STATE(664), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [589] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9109), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115127,99 +119040,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [579] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [590] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115244,99 +119159,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [580] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [591] = { + [sym_type_constraints] = STATE(599), + [sym_property_delegate] = STATE(657), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115361,99 +119278,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [581] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [592] = { + [sym_primary_constructor] = STATE(3765), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3048), + [sym_type_parameters] = STATE(624), + [sym_type_constraints] = STATE(3027), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), + }, + [593] = { + [sym_type_constraints] = STATE(601), + [sym_property_delegate] = STATE(654), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115478,99 +119516,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [582] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [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), + [594] = { + [sym_type_constraints] = STATE(605), + [sym_property_delegate] = STATE(650), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115595,216 +119635,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [583] = { - [sym_primary_constructor] = STATE(1394), - [sym_class_body] = STATE(1175), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(621), - [sym_type_constraints] = STATE(980), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [595] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9448), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [584] = { + [596] = { [sym_type_constraints] = STATE(609), - [sym_property_delegate] = STATE(662), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_property_delegate] = STATE(666), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115829,216 +119873,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [585] = { - [sym_primary_constructor] = STATE(1412), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(619), - [sym_type_constraints] = STATE(958), - [sym_enum_class_body] = STATE(1076), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [597] = { + [sym_type_constraints] = STATE(644), + [sym_property_delegate] = STATE(730), + [sym_getter] = STATE(1029), + [sym_setter] = STATE(1029), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [586] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [598] = { + [sym_type_constraints] = STATE(640), + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116063,99 +120109,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [587] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [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), + [599] = { + [sym_property_delegate] = STATE(654), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116180,216 +120227,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [588] = { - [sym_primary_constructor] = STATE(1355), - [sym_class_body] = STATE(1076), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(618), - [sym_type_constraints] = STATE(965), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [600] = { + [sym_property_delegate] = STATE(666), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [589] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [601] = { + [sym_property_delegate] = STATE(650), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116414,60 +120463,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [590] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [602] = { + [sym_type_constraints] = STATE(643), + [sym_property_delegate] = STATE(749), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3526), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), + [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(1790), + [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1790), [anon_sym_in] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), @@ -116484,11 +120539,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116501,7 +120551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), [anon_sym_as_QMARK] = ACTIONS(1792), [anon_sym_PLUS_PLUS] = ACTIONS(1792), [anon_sym_DASH_DASH] = ACTIONS(1792), @@ -116531,12 +120581,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), [sym_real_literal] = ACTIONS(1792), [sym_integer_literal] = ACTIONS(1790), [sym_hex_literal] = ACTIONS(1792), @@ -116550,52 +120602,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [591] = { - [sym_type_constraints] = STATE(635), - [sym_property_delegate] = STATE(660), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [603] = { + [sym_property_delegate] = STATE(657), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [604] = { + [sym_primary_constructor] = STATE(3764), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3368), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(3278), [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_this] = ACTIONS(3278), [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3282), [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_null] = ACTIONS(3278), [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), @@ -116605,25 +120774,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3278), [anon_sym_continue] = ACTIONS(3278), [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [605] = { + [sym_property_delegate] = STATE(659), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116648,117 +120935,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [592] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [606] = { + [sym_type_constraints] = STATE(645), + [sym_property_delegate] = STATE(739), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -116777,321 +121053,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [593] = { - [sym_primary_constructor] = STATE(3989), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(617), - [sym_type_constraints] = STATE(3161), - [sym_enum_class_body] = STATE(3201), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), - }, - [594] = { - [sym_primary_constructor] = STATE(1397), - [sym__class_parameters] = STATE(981), - [sym_type_parameters] = STATE(610), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1174), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [595] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [607] = { + [sym_type_constraints] = STATE(646), + [sym_property_delegate] = STATE(743), + [sym_getter] = STATE(3149), + [sym_setter] = STATE(3149), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117116,99 +121171,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, - [596] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [608] = { + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117233,351 +121289,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [597] = { - [sym_primary_constructor] = STATE(3996), - [sym_class_body] = STATE(3233), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(615), - [sym_type_constraints] = STATE(3158), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [598] = { - [sym_primary_constructor] = STATE(3998), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(614), - [sym_type_constraints] = STATE(3133), - [sym_enum_class_body] = STATE(3233), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [599] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3442), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [609] = { + [sym_property_delegate] = STATE(672), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -117596,87 +121407,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [600] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9248), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [610] = { + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117701,216 +121525,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [601] = { - [sym_primary_constructor] = STATE(1346), - [sym_class_body] = STATE(1088), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(962), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [602] = { - [sym_type_constraints] = STATE(613), - [sym_property_delegate] = STATE(668), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [611] = { + [sym_type_constraints] = STATE(639), + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117935,450 +121643,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [603] = { - [sym_primary_constructor] = STATE(1342), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [612] = { + [sym_property_delegate] = STATE(648), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [604] = { - [sym_primary_constructor] = STATE(1341), - [sym_class_body] = STATE(1206), - [sym__class_parameters] = STATE(981), + [613] = { + [sym_primary_constructor] = STATE(1426), + [sym__class_parameters] = STATE(936), [sym_type_constraints] = STATE(947), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [605] = { - [sym_primary_constructor] = STATE(4007), - [sym_class_body] = STATE(3260), - [sym__class_parameters] = STATE(3094), - [sym_type_parameters] = STATE(611), - [sym_type_constraints] = STATE(3095), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym_enum_class_body] = STATE(1148), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [606] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [614] = { + [sym_type_constraints] = STATE(641), + [sym_property_delegate] = STATE(747), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118403,183 +121997,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [607] = { - [sym_primary_constructor] = STATE(1337), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [608] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9055), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [615] = { + [sym_primary_constructor] = STATE(1427), + [sym_class_body] = STATE(1068), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(969), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3278), [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_this] = ACTIONS(3278), [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_null] = ACTIONS(3278), [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), @@ -118589,30 +122072,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3278), [anon_sym_continue] = ACTIONS(3278), [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [616] = { + [sym_type_constraints] = STATE(637), + [sym_property_delegate] = STATE(741), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118637,98 +122233,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [609] = { - [sym_property_delegate] = STATE(668), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [617] = { + [sym_primary_constructor] = STATE(3797), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [618] = { + [sym_type_constraints] = STATE(638), + [sym_property_delegate] = STATE(718), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118753,302 +122469,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [610] = { - [sym_primary_constructor] = STATE(1402), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [611] = { - [sym_primary_constructor] = STATE(4000), - [sym_class_body] = STATE(3234), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3130), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [612] = { - [sym_type_constraints] = STATE(645), - [sym_property_delegate] = STATE(715), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [619] = { + [sym_primary_constructor] = STATE(1390), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3516), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3278), [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_this] = ACTIONS(3278), [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3282), [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_null] = ACTIONS(3278), [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), @@ -119058,953 +122544,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3278), [anon_sym_continue] = ACTIONS(3278), [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), [anon_sym_true] = ACTIONS(3278), [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [613] = { - [sym_property_delegate] = STATE(688), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3368), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), - }, - [614] = { - [sym_primary_constructor] = STATE(3995), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [615] = { - [sym_primary_constructor] = STATE(3990), - [sym_class_body] = STATE(3181), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3173), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [616] = { - [sym_type_constraints] = STATE(638), - [sym_property_delegate] = STATE(739), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), - }, - [617] = { - [sym_primary_constructor] = STATE(3985), - [sym__class_parameters] = STATE(3094), - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym_modifiers] = STATE(9754), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [618] = { - [sym_primary_constructor] = STATE(1399), - [sym_class_body] = STATE(1206), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(947), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [619] = { - [sym_primary_constructor] = STATE(1407), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__string_start] = ACTIONS(3282), }, [620] = { - [sym_property_delegate] = STATE(682), - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_property_delegate] = STATE(668), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120029,186 +122705,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [621] = { - [sym_primary_constructor] = STATE(1384), - [sym_class_body] = STATE(1088), - [sym__class_parameters] = STATE(981), - [sym_type_constraints] = STATE(962), - [sym_modifiers] = STATE(9765), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [622] = { - [sym_type_constraints] = STATE(639), - [sym_property_delegate] = STATE(713), - [sym_getter] = STATE(3252), - [sym_setter] = STATE(3252), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_primary_constructor] = STATE(1424), + [sym_class_body] = STATE(1180), + [sym__class_parameters] = STATE(936), + [sym_type_constraints] = STATE(945), + [sym_modifiers] = STATE(9876), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3274), [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3516), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3270), [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(3270), [anon_sym_fun] = ACTIONS(3270), [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), [anon_sym_this] = ACTIONS(3270), [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3274), [sym_label] = ACTIONS(3270), [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), [anon_sym_null] = ACTIONS(3270), [anon_sym_if] = ACTIONS(3270), [anon_sym_else] = ACTIONS(3270), @@ -120218,141 +122780,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3270), [anon_sym_continue] = ACTIONS(3270), [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3274), [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3274), [anon_sym_PLUS] = ACTIONS(3270), [anon_sym_DASH] = ACTIONS(3270), [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), [anon_sym_true] = ACTIONS(3270), [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [sym__string_start] = ACTIONS(3274), }, - [623] = { - [sym_property_delegate] = STATE(660), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [622] = { + [sym_type_constraints] = STATE(642), + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120377,70 +122941,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [623] = { + [sym_primary_constructor] = STATE(3798), + [sym_class_body] = STATE(3173), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3039), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__string_start] = ACTIONS(3274), }, [624] = { - [sym_property_delegate] = STATE(670), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_primary_constructor] = STATE(3767), + [sym_class_body] = STATE(3061), + [sym__class_parameters] = STATE(3048), + [sym_type_constraints] = STATE(3015), + [sym_modifiers] = STATE(9854), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3368), + [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3254), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), [anon_sym_object] = ACTIONS(3278), [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_this] = ACTIONS(3278), [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3282), [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_null] = ACTIONS(3278), [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), @@ -120450,147 +123134,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3278), [anon_sym_continue] = ACTIONS(3278), [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), [anon_sym_true] = ACTIONS(3278), [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__string_start] = ACTIONS(3282), }, [625] = { - [sym_property_delegate] = STATE(664), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120609,104 +123308,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), }, [626] = { - [sym_property_delegate] = STATE(690), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120725,104 +123425,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(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), }, [627] = { - [sym_property_delegate] = STATE(693), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3368), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120841,104 +123542,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [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), }, [628] = { - [sym_property_delegate] = STATE(698), - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120957,104 +123659,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(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), }, [629] = { - [sym_type_constraints] = STATE(649), - [sym_property_delegate] = STATE(723), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121073,104 +123776,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [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), }, [630] = { - [sym_type_constraints] = STATE(658), - [sym_property_delegate] = STATE(740), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121189,104 +123893,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [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), }, [631] = { - [sym_type_constraints] = STATE(648), - [sym_property_delegate] = STATE(719), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121305,104 +124010,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [632] = { - [sym_type_constraints] = STATE(647), - [sym_property_delegate] = STATE(717), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121421,104 +124127,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [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), }, [633] = { - [sym_type_constraints] = STATE(650), - [sym_property_delegate] = STATE(735), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121537,104 +124244,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(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), }, [634] = { - [sym_type_constraints] = STATE(651), - [sym_property_delegate] = STATE(736), - [sym_getter] = STATE(1196), - [sym_setter] = STATE(1196), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121653,104 +124361,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), }, [635] = { - [sym_property_delegate] = STATE(662), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121769,104 +124478,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [636] = { - [sym_type_constraints] = STATE(637), - [sym_property_delegate] = STATE(720), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121885,96 +124595,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, [637] = { [sym_property_delegate] = STATE(739), - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121999,96 +124697,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [638] = { - [sym_property_delegate] = STATE(735), - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), + [sym_property_delegate] = STATE(750), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122113,96 +124813,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [639] = { - [sym_property_delegate] = STATE(715), - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [sym_property_delegate] = STATE(728), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122227,113 +124929,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [640] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(718), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122352,102 +125045,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [641] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122466,102 +125161,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [642] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122580,102 +125277,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), + [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), }, [643] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122694,102 +125393,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [644] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(747), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122808,85 +125509,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [645] = { - [sym_property_delegate] = STATE(717), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), + [sym_property_delegate] = STATE(749), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122911,113 +125625,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [646] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(741), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123036,85 +125741,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [647] = { - [sym_property_delegate] = STATE(719), - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123139,96 +125856,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [648] = { - [sym_property_delegate] = STATE(723), - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123253,96 +125971,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [649] = { - [sym_property_delegate] = STATE(729), - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123367,96 +126086,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [650] = { - [sym_property_delegate] = STATE(740), - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123481,96 +126201,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [651] = { - [sym_property_delegate] = STATE(720), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123595,113 +126316,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, [652] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123720,102 +126431,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, [653] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123834,102 +126546,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [654] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123948,102 +126661,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [655] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -124062,102 +126776,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [656] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -124176,102 +126891,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [657] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1624), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -124290,85 +127006,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), + [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(3598), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [658] = { - [sym_property_delegate] = STATE(743), - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124393,95 +127121,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [659] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124506,226 +127236,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, [660] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, [661] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -124744,83 +127466,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [662] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124845,95 +127581,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [663] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124958,95 +127696,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, [664] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125071,95 +127811,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [665] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125184,95 +127926,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [666] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125297,95 +128041,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [667] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125410,95 +128156,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [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(3280), + [sym__string_start] = ACTIONS(1792), }, [668] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125523,95 +128271,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [669] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125636,95 +128386,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, [670] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125749,95 +128501,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, [671] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125862,95 +128616,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [672] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125975,95 +128731,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, [673] = { - [sym_getter] = STATE(3297), - [sym_setter] = STATE(3297), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9376), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126088,95 +128846,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, [674] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9389), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3460), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126201,101 +128961,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [675] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -126314,113 +129088,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, [676] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -126439,101 +129202,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [677] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -126552,101 +129316,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [678] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [679] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(678), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(678), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [680] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [681] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(680), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(680), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [682] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -126665,89 +129886,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [679] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [683] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(685), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(685), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [684] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -126766,113 +130114,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [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), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [680] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [685] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [686] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -126891,101 +130342,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [681] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [687] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(689), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(689), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [688] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -127004,89 +130570,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [682] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [689] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [690] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [691] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(3704), + [anon_sym_set] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -127105,113 +130912,1470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [683] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [692] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(699), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(699), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [693] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(696), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(696), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [694] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(3748), + [anon_sym_AT] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_object] = ACTIONS(3765), + [anon_sym_fun] = ACTIONS(3768), + [anon_sym_get] = ACTIONS(3771), + [anon_sym_set] = ACTIONS(3771), + [anon_sym_this] = ACTIONS(3774), + [anon_sym_super] = ACTIONS(3777), + [anon_sym_STAR] = ACTIONS(3780), + [sym_label] = ACTIONS(3783), + [anon_sym_in] = ACTIONS(3786), + [anon_sym_null] = ACTIONS(3789), + [anon_sym_if] = ACTIONS(3792), + [anon_sym_else] = ACTIONS(3795), + [anon_sym_when] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3801), + [anon_sym_throw] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3807), + [anon_sym_continue] = ACTIONS(3810), + [anon_sym_break] = ACTIONS(3810), + [anon_sym_COLON_COLON] = ACTIONS(3813), + [anon_sym_BANGin] = ACTIONS(3816), + [anon_sym_is] = ACTIONS(3819), + [anon_sym_BANGis] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3783), + [anon_sym_DASH] = ACTIONS(3783), + [anon_sym_PLUS_PLUS] = ACTIONS(3825), + [anon_sym_DASH_DASH] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3783), + [anon_sym_data] = ACTIONS(3771), + [anon_sym_inner] = ACTIONS(3771), + [anon_sym_value] = ACTIONS(3771), + [anon_sym_expect] = ACTIONS(3771), + [anon_sym_actual] = ACTIONS(3771), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3828), + [anon_sym_continue_AT] = ACTIONS(3831), + [anon_sym_break_AT] = ACTIONS(3834), + [anon_sym_this_AT] = ACTIONS(3837), + [anon_sym_super_AT] = ACTIONS(3840), + [sym_real_literal] = ACTIONS(3843), + [sym_integer_literal] = ACTIONS(3846), + [sym_hex_literal] = ACTIONS(3849), + [sym_bin_literal] = ACTIONS(3849), + [anon_sym_true] = ACTIONS(3852), + [anon_sym_false] = ACTIONS(3852), + [anon_sym_SQUOTE] = ACTIONS(3855), + [sym__backtick_identifier] = ACTIONS(3858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3861), + }, + [695] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3864), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [696] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [697] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(698), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(698), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [698] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [699] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [700] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(701), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(701), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3870), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [701] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [702] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(703), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(703), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [703] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [704] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -127230,89 +132394,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [684] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [705] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [706] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -127331,113 +132622,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [685] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [707] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -127456,89 +132736,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [686] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [708] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -127557,101 +132850,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [687] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [709] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(710), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(710), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [710] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [711] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_entry] = STATE(695), + [sym_when_condition] = STATE(8900), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(695), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [712] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -127670,95 +133306,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [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), }, - [688] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [713] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127783,101 +133405,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [689] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9300), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3372), - [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), + [714] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -127896,101 +133532,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(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), }, - [690] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [715] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128009,113 +133645,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [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), }, - [691] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [716] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -128134,101 +133758,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [692] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [717] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -128247,83 +133871,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [693] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [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), + [718] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128348,113 +133970,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [694] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [719] = { + [sym_getter] = STATE(1136), + [sym_setter] = STATE(1136), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128473,101 +134083,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [695] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [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(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [720] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [721] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -128586,83 +134323,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [696] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [722] = { + [sym_getter] = STATE(1112), + [sym_setter] = STATE(1112), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128687,58 +134422,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [697] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [723] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -128800,12 +134535,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1792), [anon_sym_continue_AT] = ACTIONS(1792), [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), [sym_real_literal] = ACTIONS(1792), [sym_integer_literal] = ACTIONS(1790), [sym_hex_literal] = ACTIONS(1792), @@ -128819,76 +134556,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [698] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9282), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [724] = { + [sym_getter] = STATE(1160), + [sym_setter] = STATE(1160), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128913,223 +134648,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [699] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_get] = ACTIONS(3708), - [anon_sym_set] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [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), }, - [700] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym_get] = ACTIONS(3736), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [725] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -129148,100 +134775,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [701] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3740), - [anon_sym_get] = ACTIONS(3736), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [726] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(3922), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -129260,100 +134888,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [702] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3708), - [anon_sym_set] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [727] = { + [sym_getter] = STATE(3116), + [sym_setter] = STATE(3116), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129372,100 +134987,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [703] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(3736), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [728] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129484,100 +135100,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, - [704] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(3708), - [anon_sym_set] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [729] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -129596,100 +135227,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [705] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3748), - [anon_sym_get] = ACTIONS(3708), - [anon_sym_set] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [730] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129708,100 +135326,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [706] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(3708), - [anon_sym_set] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [731] = { + [sym_getter] = STATE(3126), + [sym_setter] = STATE(3126), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129820,100 +135439,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, - [707] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_get] = ACTIONS(3736), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [732] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129932,100 +135552,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [708] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3754), - [anon_sym_get] = ACTIONS(3708), - [anon_sym_set] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [733] = { + [sym_getter] = STATE(3162), + [sym_setter] = STATE(3162), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130044,100 +135665,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [709] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(3736), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [734] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -130156,100 +135792,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [710] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_get] = ACTIONS(3736), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [735] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -130268,82 +135905,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [711] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [736] = { + [sym_getter] = STATE(3111), + [sym_setter] = STATE(3111), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130368,93 +136004,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [712] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [737] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130479,99 +136117,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [713] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [738] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(3894), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130590,111 +136244,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [714] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_get] = ACTIONS(3764), - [anon_sym_set] = ACTIONS(3766), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [739] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130713,82 +136343,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [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), }, - [715] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), + [740] = { + [sym_getter] = STATE(3264), + [sym_setter] = STATE(3264), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), [anon_sym_data] = ACTIONS(75), @@ -130812,93 +136456,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [716] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [741] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130923,93 +136569,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [717] = { - [sym_getter] = STATE(3220), - [sym_setter] = STATE(3220), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [742] = { + [sym_getter] = STATE(3225), + [sym_setter] = STATE(3225), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131034,93 +136682,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [718] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [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), + [743] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131145,93 +136795,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [719] = { - [sym_getter] = STATE(3250), - [sym_setter] = STATE(3250), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2008), + [744] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), [anon_sym_get] = ACTIONS(3520), [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(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_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131256,93 +136908,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [720] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [745] = { + [sym_getter] = STATE(3187), + [sym_setter] = STATE(3187), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131367,93 +137021,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [721] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), + [746] = { + [sym_getter] = STATE(1147), + [sym_setter] = STATE(1147), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), [anon_sym_get] = ACTIONS(3520), [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(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_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131478,111 +137134,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [722] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3796), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [747] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -131601,81 +137247,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [723] = { - [sym_getter] = STATE(3273), - [sym_setter] = STATE(3273), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1976), + [748] = { + [sym_getter] = STATE(1099), + [sym_setter] = STATE(1099), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), [anon_sym_get] = ACTIONS(3520), [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(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_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131700,111 +137360,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [724] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3796), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [749] = { + [sym_getter] = STATE(3229), + [sym_setter] = STATE(3229), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -131823,81 +137473,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(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [725] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), + [750] = { + [sym_getter] = STATE(1163), + [sym_setter] = STATE(1163), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2062), [anon_sym_get] = ACTIONS(3520), [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131922,111 +137586,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), }, - [726] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3796), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1756), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [751] = { + [sym_getter] = STATE(1158), + [sym_setter] = STATE(1158), + [sym_modifiers] = STATE(9107), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132045,87 +137699,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [727] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [752] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132144,111 +137824,436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [728] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3802), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3796), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [753] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(1689), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8359), + [sym_annotation] = STATE(1286), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(709), + [anon_sym_for] = ACTIONS(711), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [754] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(2136), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8377), + [sym_annotation] = STATE(1241), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(155), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [755] = { + [sym__loop_statement] = STATE(5351), + [sym_for_statement] = STATE(5351), + [sym_while_statement] = STATE(5351), + [sym_do_while_statement] = STATE(5351), + [sym_assignment] = STATE(5351), + [sym__expression] = STATE(2263), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_annotation] = STATE(1255), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [756] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -132267,87 +138272,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [729] = { - [sym_getter] = STATE(3285), - [sym_setter] = STATE(3285), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [757] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132366,111 +138384,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [730] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3804), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3796), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [758] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -132489,99 +138496,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [731] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3806), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3796), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [759] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -132600,87 +138608,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [732] = { - [sym_getter] = STATE(3292), - [sym_setter] = STATE(3292), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), + [760] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(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_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132699,99 +138720,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [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), - [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__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [733] = { - [sym_getter] = STATE(3297), - [sym_setter] = STATE(3297), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [761] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132810,99 +138832,996 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [734] = { - [sym_getter] = STATE(1199), - [sym_setter] = STATE(1199), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [762] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(4237), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1580), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8390), + [sym_annotation] = STATE(1249), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [763] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(1398), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(2118), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8379), + [sym_annotation] = STATE(1260), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(503), + [anon_sym_for] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [764] = { + [sym_annotated_lambda] = STATE(1171), + [sym_lambda_literal] = STATE(1044), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [765] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(2450), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1545), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8395), + [sym_annotation] = STATE(1262), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [766] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_annotation] = STATE(1242), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [767] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1790), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(1637), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8364), + [sym_annotation] = STATE(1247), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(991), + [anon_sym_for] = ACTIONS(993), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [768] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(3277), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1985), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8361), + [sym_annotation] = STATE(1288), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [769] = { + [sym__loop_statement] = STATE(9246), + [sym_for_statement] = STATE(9246), + [sym_while_statement] = STATE(9246), + [sym_do_while_statement] = STATE(9246), + [sym_assignment] = STATE(9246), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4549), + [sym_parenthesized_expression] = STATE(4549), + [sym_collection_literal] = STATE(4549), + [sym__literal_constant] = STATE(4549), + [sym_string_literal] = STATE(4549), + [sym_lambda_literal] = STATE(4549), + [sym_anonymous_function] = STATE(4549), + [sym__function_literal] = STATE(4549), + [sym_object_literal] = STATE(4549), + [sym_this_expression] = STATE(4549), + [sym_super_expression] = STATE(4549), + [sym_if_expression] = STATE(4549), + [sym_when_expression] = STATE(4549), + [sym_try_expression] = STATE(4549), + [sym_jump_expression] = STATE(4549), + [sym_callable_reference] = STATE(4549), + [sym__prefix_unary_operator] = STATE(1736), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8391), + [sym_annotation] = STATE(1242), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4549), + [sym_long_literal] = STATE(4549), + [sym_boolean_literal] = STATE(4549), + [sym_character_literal] = STATE(4549), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [770] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132921,99 +139840,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [735] = { - [sym_getter] = STATE(1094), - [sym_setter] = STATE(1094), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [771] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2263), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2751), + [sym_parenthesized_expression] = STATE(2751), + [sym_collection_literal] = STATE(2751), + [sym__literal_constant] = STATE(2751), + [sym_string_literal] = STATE(2751), + [sym_lambda_literal] = STATE(2751), + [sym_anonymous_function] = STATE(2751), + [sym__function_literal] = STATE(2751), + [sym_object_literal] = STATE(2751), + [sym_this_expression] = STATE(2751), + [sym_super_expression] = STATE(2751), + [sym_if_expression] = STATE(2751), + [sym_when_expression] = STATE(2751), + [sym_try_expression] = STATE(2751), + [sym_jump_expression] = STATE(2751), + [sym_callable_reference] = STATE(2751), + [sym__prefix_unary_operator] = STATE(2166), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8363), + [sym_annotation] = STATE(1255), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2751), + [sym_long_literal] = STATE(2751), + [sym_boolean_literal] = STATE(2751), + [sym_character_literal] = STATE(2751), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(997), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [772] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133032,99 +140064,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [736] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [773] = { + [sym_annotated_lambda] = STATE(1076), + [sym_lambda_literal] = STATE(1044), + [sym_annotation] = STATE(8342), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8342), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [774] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4013), + [anon_sym_fun] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4013), + [anon_sym_sealed] = ACTIONS(4013), + [anon_sym_annotation] = ACTIONS(4013), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_lateinit] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_private] = ACTIONS(4013), + [anon_sym_internal] = ACTIONS(4013), + [anon_sym_protected] = ACTIONS(4013), + [anon_sym_tailrec] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_infix] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_external] = ACTIONS(4013), + [sym_property_modifier] = ACTIONS(4013), + [anon_sym_abstract] = ACTIONS(4013), + [anon_sym_final] = ACTIONS(4013), + [anon_sym_open] = ACTIONS(4013), + [anon_sym_vararg] = ACTIONS(4013), + [anon_sym_noinline] = ACTIONS(4013), + [anon_sym_crossinline] = ACTIONS(4013), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [775] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133143,99 +140400,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [737] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [776] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4013), + [anon_sym_fun] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [777] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4023), + [anon_sym_fun] = ACTIONS(4023), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4023), + [anon_sym_sealed] = ACTIONS(4023), + [anon_sym_annotation] = ACTIONS(4023), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4023), + [anon_sym_lateinit] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_private] = ACTIONS(4023), + [anon_sym_internal] = ACTIONS(4023), + [anon_sym_protected] = ACTIONS(4023), + [anon_sym_tailrec] = ACTIONS(4023), + [anon_sym_operator] = ACTIONS(4023), + [anon_sym_infix] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_external] = ACTIONS(4023), + [sym_property_modifier] = ACTIONS(4023), + [anon_sym_abstract] = ACTIONS(4023), + [anon_sym_final] = ACTIONS(4023), + [anon_sym_open] = ACTIONS(4023), + [anon_sym_vararg] = ACTIONS(4023), + [anon_sym_noinline] = ACTIONS(4023), + [anon_sym_crossinline] = ACTIONS(4023), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [778] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4023), + [anon_sym_fun] = ACTIONS(4023), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [779] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(2255), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8386), + [sym_annotation] = STATE(1257), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(839), + [anon_sym_for] = ACTIONS(841), + [anon_sym_while] = ACTIONS(843), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [780] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(519), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1544), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8374), + [sym_annotation] = STATE(1272), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [781] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(464), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_collection_literal] = STATE(785), + [sym__literal_constant] = STATE(785), + [sym_string_literal] = STATE(785), + [sym_lambda_literal] = STATE(785), + [sym_anonymous_function] = STATE(785), + [sym__function_literal] = STATE(785), + [sym_object_literal] = STATE(785), + [sym_this_expression] = STATE(785), + [sym_super_expression] = STATE(785), + [sym_if_expression] = STATE(785), + [sym_when_expression] = STATE(785), + [sym_try_expression] = STATE(785), + [sym_jump_expression] = STATE(785), + [sym_callable_reference] = STATE(785), + [sym__prefix_unary_operator] = STATE(1765), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8365), + [sym_annotation] = STATE(1275), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(785), + [sym_long_literal] = STATE(785), + [sym_boolean_literal] = STATE(785), + [sym_character_literal] = STATE(785), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [782] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(2023), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8358), + [sym_annotation] = STATE(1246), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(417), + [anon_sym_for] = ACTIONS(419), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [783] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133254,99 +141296,1556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [738] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [784] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(1668), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_collection_literal] = STATE(2773), + [sym__literal_constant] = STATE(2773), + [sym_string_literal] = STATE(2773), + [sym_lambda_literal] = STATE(2773), + [sym_anonymous_function] = STATE(2773), + [sym__function_literal] = STATE(2773), + [sym_object_literal] = STATE(2773), + [sym_this_expression] = STATE(2773), + [sym_super_expression] = STATE(2773), + [sym_if_expression] = STATE(2773), + [sym_when_expression] = STATE(2773), + [sym_try_expression] = STATE(2773), + [sym_jump_expression] = STATE(2773), + [sym_callable_reference] = STATE(2773), + [sym__prefix_unary_operator] = STATE(1594), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8366), + [sym_annotation] = STATE(1248), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2773), + [sym_long_literal] = STATE(2773), + [sym_boolean_literal] = STATE(2773), + [sym_character_literal] = STATE(2773), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(773), + [anon_sym_for] = ACTIONS(775), + [anon_sym_while] = ACTIONS(777), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(193), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [785] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), + }, + [786] = { + [sym__loop_statement] = STATE(3603), + [sym_for_statement] = STATE(3603), + [sym_while_statement] = STATE(3603), + [sym_do_while_statement] = STATE(3603), + [sym_assignment] = STATE(3603), + [sym__expression] = STATE(2486), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(2774), + [sym_parenthesized_expression] = STATE(2774), + [sym_collection_literal] = STATE(2774), + [sym__literal_constant] = STATE(2774), + [sym_string_literal] = STATE(2774), + [sym_lambda_literal] = STATE(2774), + [sym_anonymous_function] = STATE(2774), + [sym__function_literal] = STATE(2774), + [sym_object_literal] = STATE(2774), + [sym_this_expression] = STATE(2774), + [sym_super_expression] = STATE(2774), + [sym_if_expression] = STATE(2774), + [sym_when_expression] = STATE(2774), + [sym_try_expression] = STATE(2774), + [sym_jump_expression] = STATE(2774), + [sym_callable_reference] = STATE(2774), + [sym__prefix_unary_operator] = STATE(1793), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8362), + [sym_annotation] = STATE(1238), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3395), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(2774), + [sym_long_literal] = STATE(2774), + [sym_boolean_literal] = STATE(2774), + [sym_character_literal] = STATE(2774), + [sym__lexical_identifier] = STATE(2955), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [787] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(2593), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3004), + [sym_parenthesized_expression] = STATE(3004), + [sym_collection_literal] = STATE(3004), + [sym__literal_constant] = STATE(3004), + [sym_string_literal] = STATE(3004), + [sym_lambda_literal] = STATE(3004), + [sym_anonymous_function] = STATE(3004), + [sym__function_literal] = STATE(3004), + [sym_object_literal] = STATE(3004), + [sym_this_expression] = STATE(3004), + [sym_super_expression] = STATE(3004), + [sym_if_expression] = STATE(3004), + [sym_when_expression] = STATE(3004), + [sym_try_expression] = STATE(3004), + [sym_jump_expression] = STATE(3004), + [sym_callable_reference] = STATE(3004), + [sym__prefix_unary_operator] = STATE(1533), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8387), + [sym_annotation] = STATE(1285), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3004), + [sym_long_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), + [sym_character_literal] = STATE(3004), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [788] = { + [sym__loop_statement] = STATE(1026), + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_do_while_statement] = STATE(1026), + [sym_assignment] = STATE(1026), + [sym__expression] = STATE(398), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1653), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8378), + [sym_annotation] = STATE(1245), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1106), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(823), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(805), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(809), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [789] = { + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(958), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2741), + [sym_collection_literal] = STATE(2741), + [sym__literal_constant] = STATE(2741), + [sym_string_literal] = STATE(2741), + [sym_lambda_literal] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [sym__function_literal] = STATE(2741), + [sym_object_literal] = STATE(2741), + [sym_this_expression] = STATE(2741), + [sym_super_expression] = STATE(2741), + [sym_if_expression] = STATE(2741), + [sym_when_expression] = STATE(2741), + [sym_try_expression] = STATE(2741), + [sym_jump_expression] = STATE(2741), + [sym_callable_reference] = STATE(2741), + [sym__prefix_unary_operator] = STATE(2113), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8371), + [sym_annotation] = STATE(1270), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3079), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(2741), + [sym_long_literal] = STATE(2741), + [sym_boolean_literal] = STATE(2741), + [sym_character_literal] = STATE(2741), + [sym__lexical_identifier] = STATE(2791), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [790] = { + [sym__loop_statement] = STATE(9907), + [sym_for_statement] = STATE(9907), + [sym_while_statement] = STATE(9907), + [sym_do_while_statement] = STATE(9907), + [sym_assignment] = STATE(9907), + [sym__expression] = STATE(4278), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_annotation] = STATE(1293), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(329), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [791] = { + [sym__loop_statement] = STATE(4006), + [sym_for_statement] = STATE(4006), + [sym_while_statement] = STATE(4006), + [sym_do_while_statement] = STATE(4006), + [sym_assignment] = STATE(4006), + [sym__expression] = STATE(2205), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(2982), + [sym_parenthesized_expression] = STATE(2982), + [sym_collection_literal] = STATE(2982), + [sym__literal_constant] = STATE(2982), + [sym_string_literal] = STATE(2982), + [sym_lambda_literal] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [sym__function_literal] = STATE(2982), + [sym_object_literal] = STATE(2982), + [sym_this_expression] = STATE(2982), + [sym_super_expression] = STATE(2982), + [sym_if_expression] = STATE(2982), + [sym_when_expression] = STATE(2982), + [sym_try_expression] = STATE(2982), + [sym_jump_expression] = STATE(2982), + [sym_callable_reference] = STATE(2982), + [sym__prefix_unary_operator] = STATE(1774), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8398), + [sym_annotation] = STATE(1292), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3860), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(2982), + [sym_long_literal] = STATE(2982), + [sym_boolean_literal] = STATE(2982), + [sym_character_literal] = STATE(2982), + [sym__lexical_identifier] = STATE(3332), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(741), + [anon_sym_for] = ACTIONS(743), + [anon_sym_while] = ACTIONS(745), + [anon_sym_do] = ACTIONS(509), + [anon_sym_null] = ACTIONS(511), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(543), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [792] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(4089), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1844), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8372), + [sym_annotation] = STATE(1282), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [793] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(4278), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1803), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8384), + [sym_annotation] = STATE(1293), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [794] = { + [sym__loop_statement] = STATE(5112), + [sym_for_statement] = STATE(5112), + [sym_while_statement] = STATE(5112), + [sym_do_while_statement] = STATE(5112), + [sym_assignment] = STATE(5112), + [sym__expression] = STATE(3792), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(4551), + [sym_collection_literal] = STATE(4551), + [sym__literal_constant] = STATE(4551), + [sym_string_literal] = STATE(4551), + [sym_lambda_literal] = STATE(4551), + [sym_anonymous_function] = STATE(4551), + [sym__function_literal] = STATE(4551), + [sym_object_literal] = STATE(4551), + [sym_this_expression] = STATE(4551), + [sym_super_expression] = STATE(4551), + [sym_if_expression] = STATE(4551), + [sym_when_expression] = STATE(4551), + [sym_try_expression] = STATE(4551), + [sym_jump_expression] = STATE(4551), + [sym_callable_reference] = STATE(4551), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8401), + [sym_annotation] = STATE(1269), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5132), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(4551), + [sym_long_literal] = STATE(4551), + [sym_boolean_literal] = STATE(4551), + [sym_character_literal] = STATE(4551), + [sym__lexical_identifier] = STATE(4612), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [795] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(3879), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(4530), + [sym_collection_literal] = STATE(4530), + [sym__literal_constant] = STATE(4530), + [sym_string_literal] = STATE(4530), + [sym_lambda_literal] = STATE(4530), + [sym_anonymous_function] = STATE(4530), + [sym__function_literal] = STATE(4530), + [sym_object_literal] = STATE(4530), + [sym_this_expression] = STATE(4530), + [sym_super_expression] = STATE(4530), + [sym_if_expression] = STATE(4530), + [sym_when_expression] = STATE(4530), + [sym_try_expression] = STATE(4530), + [sym_jump_expression] = STATE(4530), + [sym_callable_reference] = STATE(4530), + [sym__prefix_unary_operator] = STATE(1459), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8370), + [sym_annotation] = STATE(1239), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(683), + [anon_sym_for] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [796] = { + [sym__loop_statement] = STATE(4817), + [sym_for_statement] = STATE(4817), + [sym_while_statement] = STATE(4817), + [sym_do_while_statement] = STATE(4817), + [sym_assignment] = STATE(4817), + [sym__expression] = STATE(4122), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4528), + [sym_parenthesized_expression] = STATE(4528), + [sym_collection_literal] = STATE(4528), + [sym__literal_constant] = STATE(4528), + [sym_string_literal] = STATE(4528), + [sym_lambda_literal] = STATE(4528), + [sym_anonymous_function] = STATE(4528), + [sym__function_literal] = STATE(4528), + [sym_object_literal] = STATE(4528), + [sym_this_expression] = STATE(4528), + [sym_super_expression] = STATE(4528), + [sym_if_expression] = STATE(4528), + [sym_when_expression] = STATE(4528), + [sym_try_expression] = STATE(4528), + [sym_jump_expression] = STATE(4528), + [sym_callable_reference] = STATE(4528), + [sym__prefix_unary_operator] = STATE(1905), + [sym__postfix_unary_expression] = STATE(8411), + [sym_directly_assignable_expression] = STATE(8392), + [sym_annotation] = STATE(1276), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4853), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4528), + [sym_long_literal] = STATE(4528), + [sym_boolean_literal] = STATE(4528), + [sym_character_literal] = STATE(4528), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5345), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [797] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133365,99 +142864,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [739] = { - [sym_getter] = STATE(1152), - [sym_setter] = STATE(1152), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [798] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), + }, + [799] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133476,99 +143088,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(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), }, - [740] = { - [sym_getter] = STATE(1053), - [sym_setter] = STATE(1053), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [800] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133587,99 +143199,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(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), }, - [741] = { - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [801] = { + [sym_catch_block] = STATE(813), + [sym_finally_block] = STATE(1149), + [aux_sym_try_expression_repeat1] = STATE(813), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(4098), + [anon_sym_finally] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), + }, + [802] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133698,99 +143421,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [742] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [803] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133809,99 +143532,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [743] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [804] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133920,99 +143643,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [744] = { - [sym_getter] = STATE(1162), - [sym_setter] = STATE(1162), - [sym_modifiers] = STATE(9059), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3532), - [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), + [805] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -134031,99 +143754,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [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), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [745] = { - [sym_getter] = STATE(3219), - [sym_setter] = STATE(3219), - [sym_modifiers] = STATE(9065), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [806] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -134142,111 +143865,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [746] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_get] = ACTIONS(3764), - [anon_sym_set] = ACTIONS(3766), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [807] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -134265,99 +143976,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [747] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3810), - [anon_sym_get] = ACTIONS(3764), - [anon_sym_set] = ACTIONS(3766), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [808] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -134376,99 +144087,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [748] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3812), - [anon_sym_get] = ACTIONS(3764), - [anon_sym_set] = ACTIONS(3766), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [809] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -134487,99 +144198,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [749] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3814), - [anon_sym_get] = ACTIONS(3764), - [anon_sym_set] = ACTIONS(3766), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1756), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [810] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -134598,99 +144309,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [750] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3816), - [anon_sym_get] = ACTIONS(3764), - [anon_sym_set] = ACTIONS(3766), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [811] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -134709,6145 +144420,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [751] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_interface] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3825), - [anon_sym_var] = ACTIONS(3825), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3827), - [anon_sym_fun] = ACTIONS(3827), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3825), - [anon_sym_sealed] = ACTIONS(3825), - [anon_sym_annotation] = ACTIONS(3825), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3825), - [anon_sym_lateinit] = ACTIONS(3825), - [anon_sym_public] = ACTIONS(3825), - [anon_sym_private] = ACTIONS(3825), - [anon_sym_internal] = ACTIONS(3825), - [anon_sym_protected] = ACTIONS(3825), - [anon_sym_tailrec] = ACTIONS(3825), - [anon_sym_operator] = ACTIONS(3825), - [anon_sym_infix] = ACTIONS(3825), - [anon_sym_inline] = ACTIONS(3825), - [anon_sym_external] = ACTIONS(3825), - [sym_property_modifier] = ACTIONS(3825), - [anon_sym_abstract] = ACTIONS(3825), - [anon_sym_final] = ACTIONS(3825), - [anon_sym_open] = ACTIONS(3825), - [anon_sym_vararg] = ACTIONS(3825), - [anon_sym_noinline] = ACTIONS(3825), - [anon_sym_crossinline] = ACTIONS(3825), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [752] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [753] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3842), - [anon_sym_fun] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_this] = ACTIONS(3842), - [anon_sym_super] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3842), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_if] = ACTIONS(3842), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_when] = ACTIONS(3842), - [anon_sym_try] = ACTIONS(3842), - [anon_sym_throw] = ACTIONS(3842), - [anon_sym_return] = ACTIONS(3842), - [anon_sym_continue] = ACTIONS(3842), - [anon_sym_break] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(3857), - [anon_sym_DASH_EQ] = ACTIONS(3857), - [anon_sym_STAR_EQ] = ACTIONS(3857), - [anon_sym_SLASH_EQ] = ACTIONS(3857), - [anon_sym_PERCENT_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3842), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3844), - [anon_sym_continue_AT] = ACTIONS(3844), - [anon_sym_break_AT] = ACTIONS(3844), - [sym_real_literal] = ACTIONS(3844), - [sym_integer_literal] = ACTIONS(3842), - [sym_hex_literal] = ACTIONS(3844), - [sym_bin_literal] = ACTIONS(3844), - [anon_sym_true] = ACTIONS(3842), - [anon_sym_false] = ACTIONS(3842), - [anon_sym_SQUOTE] = ACTIONS(3844), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3844), - }, - [754] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [755] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3867), - [anon_sym_var] = ACTIONS(3867), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3869), - [anon_sym_fun] = ACTIONS(3869), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3869), - [anon_sym_sealed] = ACTIONS(3869), - [anon_sym_annotation] = ACTIONS(3869), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3869), - [anon_sym_lateinit] = ACTIONS(3869), - [anon_sym_public] = ACTIONS(3869), - [anon_sym_private] = ACTIONS(3869), - [anon_sym_internal] = ACTIONS(3869), - [anon_sym_protected] = ACTIONS(3869), - [anon_sym_tailrec] = ACTIONS(3869), - [anon_sym_operator] = ACTIONS(3869), - [anon_sym_infix] = ACTIONS(3869), - [anon_sym_inline] = ACTIONS(3869), - [anon_sym_external] = ACTIONS(3869), - [sym_property_modifier] = ACTIONS(3869), - [anon_sym_abstract] = ACTIONS(3869), - [anon_sym_final] = ACTIONS(3869), - [anon_sym_open] = ACTIONS(3869), - [anon_sym_vararg] = ACTIONS(3869), - [anon_sym_noinline] = ACTIONS(3869), - [anon_sym_crossinline] = ACTIONS(3869), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [756] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_interface] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3825), - [anon_sym_var] = ACTIONS(3825), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3827), - [anon_sym_fun] = ACTIONS(3827), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3827), - [anon_sym_sealed] = ACTIONS(3827), - [anon_sym_annotation] = ACTIONS(3827), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3827), - [anon_sym_lateinit] = ACTIONS(3827), - [anon_sym_public] = ACTIONS(3827), - [anon_sym_private] = ACTIONS(3827), - [anon_sym_internal] = ACTIONS(3827), - [anon_sym_protected] = ACTIONS(3827), - [anon_sym_tailrec] = ACTIONS(3827), - [anon_sym_operator] = ACTIONS(3827), - [anon_sym_infix] = ACTIONS(3827), - [anon_sym_inline] = ACTIONS(3827), - [anon_sym_external] = ACTIONS(3827), - [sym_property_modifier] = ACTIONS(3827), - [anon_sym_abstract] = ACTIONS(3827), - [anon_sym_final] = ACTIONS(3827), - [anon_sym_open] = ACTIONS(3827), - [anon_sym_vararg] = ACTIONS(3827), - [anon_sym_noinline] = ACTIONS(3827), - [anon_sym_crossinline] = ACTIONS(3827), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [757] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(760), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(760), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3872), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [758] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(754), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(754), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [759] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(769), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(769), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [760] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3876), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [761] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(763), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(763), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3876), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [762] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(3878), - [anon_sym_AT] = ACTIONS(3881), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_RBRACE] = ACTIONS(3890), - [anon_sym_LPAREN] = ACTIONS(3892), - [anon_sym_object] = ACTIONS(3895), - [anon_sym_fun] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(3878), - [anon_sym_set] = ACTIONS(3878), - [anon_sym_this] = ACTIONS(3901), - [anon_sym_super] = ACTIONS(3904), - [anon_sym_STAR] = ACTIONS(3907), - [sym_label] = ACTIONS(3910), - [anon_sym_in] = ACTIONS(3913), - [anon_sym_null] = ACTIONS(3916), - [anon_sym_if] = ACTIONS(3919), - [anon_sym_else] = ACTIONS(3922), - [anon_sym_when] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3928), - [anon_sym_throw] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3934), - [anon_sym_continue] = ACTIONS(3937), - [anon_sym_break] = ACTIONS(3937), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_BANGin] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3946), - [anon_sym_BANGis] = ACTIONS(3949), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3910), - [anon_sym_data] = ACTIONS(3878), - [anon_sym_inner] = ACTIONS(3878), - [anon_sym_value] = ACTIONS(3878), - [anon_sym_expect] = ACTIONS(3878), - [anon_sym_actual] = ACTIONS(3878), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3955), - [anon_sym_continue_AT] = ACTIONS(3958), - [anon_sym_break_AT] = ACTIONS(3961), - [sym_real_literal] = ACTIONS(3964), - [sym_integer_literal] = ACTIONS(3967), - [sym_hex_literal] = ACTIONS(3970), - [sym_bin_literal] = ACTIONS(3970), - [anon_sym_true] = ACTIONS(3973), - [anon_sym_false] = ACTIONS(3973), - [anon_sym_SQUOTE] = ACTIONS(3976), - [sym__backtick_identifier] = ACTIONS(3979), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3982), - }, - [763] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3985), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [764] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3987), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [765] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [766] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(764), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(764), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [767] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [768] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [769] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [770] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3842), - [anon_sym_fun] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_this] = ACTIONS(3842), - [anon_sym_super] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3842), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_if] = ACTIONS(3842), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_when] = ACTIONS(3842), - [anon_sym_try] = ACTIONS(3842), - [anon_sym_throw] = ACTIONS(3842), - [anon_sym_return] = ACTIONS(3842), - [anon_sym_continue] = ACTIONS(3842), - [anon_sym_break] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(4000), - [anon_sym_STAR_EQ] = ACTIONS(4000), - [anon_sym_SLASH_EQ] = ACTIONS(4000), - [anon_sym_PERCENT_EQ] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3842), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3844), - [anon_sym_continue_AT] = ACTIONS(3844), - [anon_sym_break_AT] = ACTIONS(3844), - [sym_real_literal] = ACTIONS(3844), - [sym_integer_literal] = ACTIONS(3842), - [sym_hex_literal] = ACTIONS(3844), - [sym_bin_literal] = ACTIONS(3844), - [anon_sym_true] = ACTIONS(3842), - [anon_sym_false] = ACTIONS(3842), - [anon_sym_SQUOTE] = ACTIONS(3844), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3844), - }, - [771] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(781), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(781), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4003), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [772] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(767), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(767), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [773] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(782), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(782), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [774] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(768), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(768), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [775] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3867), - [anon_sym_var] = ACTIONS(3867), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3869), - [anon_sym_fun] = ACTIONS(3869), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3867), - [anon_sym_sealed] = ACTIONS(3867), - [anon_sym_annotation] = ACTIONS(3867), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3867), - [anon_sym_lateinit] = ACTIONS(3867), - [anon_sym_public] = ACTIONS(3867), - [anon_sym_private] = ACTIONS(3867), - [anon_sym_internal] = ACTIONS(3867), - [anon_sym_protected] = ACTIONS(3867), - [anon_sym_tailrec] = ACTIONS(3867), - [anon_sym_operator] = ACTIONS(3867), - [anon_sym_infix] = ACTIONS(3867), - [anon_sym_inline] = ACTIONS(3867), - [anon_sym_external] = ACTIONS(3867), - [sym_property_modifier] = ACTIONS(3867), - [anon_sym_abstract] = ACTIONS(3867), - [anon_sym_final] = ACTIONS(3867), - [anon_sym_open] = ACTIONS(3867), - [anon_sym_vararg] = ACTIONS(3867), - [anon_sym_noinline] = ACTIONS(3867), - [anon_sym_crossinline] = ACTIONS(3867), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [776] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(765), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(765), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [777] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [778] = { - [sym_annotated_lambda] = STATE(1073), - [sym_lambda_literal] = STATE(1048), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_fun] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_this] = ACTIONS(4011), - [anon_sym_super] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [sym_label] = ACTIONS(4011), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_when] = ACTIONS(4011), - [anon_sym_try] = ACTIONS(4011), - [anon_sym_throw] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_suspend] = ACTIONS(4011), - [anon_sym_sealed] = ACTIONS(4011), - [anon_sym_annotation] = ACTIONS(4011), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_override] = ACTIONS(4011), - [anon_sym_lateinit] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4011), - [anon_sym_private] = ACTIONS(4011), - [anon_sym_internal] = ACTIONS(4011), - [anon_sym_protected] = ACTIONS(4011), - [anon_sym_tailrec] = ACTIONS(4011), - [anon_sym_operator] = ACTIONS(4011), - [anon_sym_infix] = ACTIONS(4011), - [anon_sym_inline] = ACTIONS(4011), - [anon_sym_external] = ACTIONS(4011), - [sym_property_modifier] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4011), - [anon_sym_final] = ACTIONS(4011), - [anon_sym_open] = ACTIONS(4011), - [anon_sym_vararg] = ACTIONS(4011), - [anon_sym_noinline] = ACTIONS(4011), - [anon_sym_crossinline] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4013), - [anon_sym_continue_AT] = ACTIONS(4013), - [anon_sym_break_AT] = ACTIONS(4013), - [sym_real_literal] = ACTIONS(4013), - [sym_integer_literal] = ACTIONS(4011), - [sym_hex_literal] = ACTIONS(4013), - [sym_bin_literal] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4011), - [anon_sym_false] = ACTIONS(4011), - [anon_sym_SQUOTE] = ACTIONS(4013), - [sym__backtick_identifier] = ACTIONS(4013), - [sym__automatic_semicolon] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4013), - }, - [779] = { - [sym_annotated_lambda] = STATE(1140), - [sym_lambda_literal] = STATE(1048), - [sym_annotation] = STATE(8270), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8270), - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_this] = ACTIONS(4015), - [anon_sym_super] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_null] = ACTIONS(4015), - [anon_sym_if] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_try] = ACTIONS(4015), - [anon_sym_throw] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_suspend] = ACTIONS(4015), - [anon_sym_sealed] = ACTIONS(4015), - [anon_sym_annotation] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_override] = ACTIONS(4015), - [anon_sym_lateinit] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4015), - [anon_sym_private] = ACTIONS(4015), - [anon_sym_internal] = ACTIONS(4015), - [anon_sym_protected] = ACTIONS(4015), - [anon_sym_tailrec] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(4015), - [anon_sym_infix] = ACTIONS(4015), - [anon_sym_inline] = ACTIONS(4015), - [anon_sym_external] = ACTIONS(4015), - [sym_property_modifier] = ACTIONS(4015), - [anon_sym_abstract] = ACTIONS(4015), - [anon_sym_final] = ACTIONS(4015), - [anon_sym_open] = ACTIONS(4015), - [anon_sym_vararg] = ACTIONS(4015), - [anon_sym_noinline] = ACTIONS(4015), - [anon_sym_crossinline] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4017), - [anon_sym_continue_AT] = ACTIONS(4017), - [anon_sym_break_AT] = ACTIONS(4017), - [sym_real_literal] = ACTIONS(4017), - [sym_integer_literal] = ACTIONS(4015), - [sym_hex_literal] = ACTIONS(4017), - [sym_bin_literal] = ACTIONS(4017), - [anon_sym_true] = ACTIONS(4015), - [anon_sym_false] = ACTIONS(4015), - [anon_sym_SQUOTE] = ACTIONS(4017), - [sym__backtick_identifier] = ACTIONS(4017), - [sym__automatic_semicolon] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4017), - }, - [780] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(777), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(777), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [781] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [782] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(762), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(762), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [783] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8911), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(3834), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [784] = { - [sym_catch_block] = STATE(798), - [sym_finally_block] = STATE(1135), - [aux_sym_try_expression_repeat1] = STATE(798), - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_this] = ACTIONS(4025), - [anon_sym_super] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_null] = ACTIONS(4025), - [anon_sym_if] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(4025), - [anon_sym_catch] = ACTIONS(4029), - [anon_sym_finally] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4025), - [anon_sym_return] = ACTIONS(4025), - [anon_sym_continue] = ACTIONS(4025), - [anon_sym_break] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4027), - [anon_sym_continue_AT] = ACTIONS(4027), - [anon_sym_break_AT] = ACTIONS(4027), - [sym_real_literal] = ACTIONS(4027), - [sym_integer_literal] = ACTIONS(4025), - [sym_hex_literal] = ACTIONS(4027), - [sym_bin_literal] = ACTIONS(4027), - [anon_sym_true] = ACTIONS(4025), - [anon_sym_false] = ACTIONS(4025), - [anon_sym_SQUOTE] = ACTIONS(4027), - [sym__backtick_identifier] = ACTIONS(4027), - [sym__automatic_semicolon] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4027), - }, - [785] = { - [sym__loop_statement] = STATE(4647), - [sym_for_statement] = STATE(4647), - [sym_while_statement] = STATE(4647), - [sym_do_while_statement] = STATE(4647), - [sym_assignment] = STATE(4647), - [sym__expression] = STATE(4048), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1870), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8309), - [sym_annotation] = STATE(1411), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [786] = { - [sym__loop_statement] = STATE(3264), - [sym_for_statement] = STATE(3264), - [sym_while_statement] = STATE(3264), - [sym_do_while_statement] = STATE(3264), - [sym_assignment] = STATE(3264), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(2096), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8308), - [sym_annotation] = STATE(1395), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(525), - [anon_sym_for] = ACTIONS(527), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [787] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4035), - [anon_sym_get] = ACTIONS(4037), - [anon_sym_set] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [788] = { - [sym_type_constraints] = STATE(943), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [789] = { - [sym__loop_statement] = STATE(4647), - [sym_for_statement] = STATE(4647), - [sym_while_statement] = STATE(4647), - [sym_do_while_statement] = STATE(4647), - [sym_assignment] = STATE(4647), - [sym__expression] = STATE(4243), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_annotation] = STATE(1391), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [790] = { - [sym__loop_statement] = STATE(5139), - [sym_for_statement] = STATE(5139), - [sym_while_statement] = STATE(5139), - [sym_do_while_statement] = STATE(5139), - [sym_assignment] = STATE(5139), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2018), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8303), - [sym_annotation] = STATE(1381), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [791] = { - [aux_sym_user_type_repeat1] = STATE(799), - [sym__alpha_identifier] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_as] = ACTIONS(4075), - [anon_sym_EQ] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_COMMA] = ACTIONS(4077), - [anon_sym_by] = ACTIONS(4075), - [anon_sym_LT] = ACTIONS(4075), - [anon_sym_GT] = ACTIONS(4075), - [anon_sym_where] = ACTIONS(4075), - [anon_sym_object] = ACTIONS(4075), - [anon_sym_fun] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(4079), - [anon_sym_SEMI] = ACTIONS(4077), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_this] = ACTIONS(4075), - [anon_sym_super] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [sym__quest] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4075), - [sym_label] = ACTIONS(4075), - [anon_sym_in] = ACTIONS(4075), - [anon_sym_DOT_DOT] = ACTIONS(4077), - [anon_sym_QMARK_COLON] = ACTIONS(4077), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_PIPE_PIPE] = ACTIONS(4077), - [anon_sym_null] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_else] = ACTIONS(4075), - [anon_sym_when] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_throw] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_PLUS_EQ] = ACTIONS(4077), - [anon_sym_DASH_EQ] = ACTIONS(4077), - [anon_sym_STAR_EQ] = ACTIONS(4077), - [anon_sym_SLASH_EQ] = ACTIONS(4077), - [anon_sym_PERCENT_EQ] = ACTIONS(4077), - [anon_sym_BANG_EQ] = ACTIONS(4075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4077), - [anon_sym_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4077), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4077), - [anon_sym_is] = ACTIONS(4075), - [anon_sym_BANGis] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_SLASH] = ACTIONS(4075), - [anon_sym_PERCENT] = ACTIONS(4075), - [anon_sym_as_QMARK] = ACTIONS(4077), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_BANG] = ACTIONS(4075), - [anon_sym_BANG_BANG] = ACTIONS(4077), - [anon_sym_suspend] = ACTIONS(4075), - [anon_sym_sealed] = ACTIONS(4075), - [anon_sym_annotation] = ACTIONS(4075), - [anon_sym_data] = ACTIONS(4075), - [anon_sym_inner] = ACTIONS(4075), - [anon_sym_value] = ACTIONS(4075), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_lateinit] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_internal] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_tailrec] = ACTIONS(4075), - [anon_sym_operator] = ACTIONS(4075), - [anon_sym_infix] = ACTIONS(4075), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_external] = ACTIONS(4075), - [sym_property_modifier] = ACTIONS(4075), - [anon_sym_abstract] = ACTIONS(4075), - [anon_sym_final] = ACTIONS(4075), - [anon_sym_open] = ACTIONS(4075), - [anon_sym_vararg] = ACTIONS(4075), - [anon_sym_noinline] = ACTIONS(4075), - [anon_sym_crossinline] = ACTIONS(4075), - [anon_sym_expect] = ACTIONS(4075), - [anon_sym_actual] = ACTIONS(4075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4077), - [anon_sym_continue_AT] = ACTIONS(4077), - [anon_sym_break_AT] = ACTIONS(4077), - [sym_real_literal] = ACTIONS(4077), - [sym_integer_literal] = ACTIONS(4075), - [sym_hex_literal] = ACTIONS(4077), - [sym_bin_literal] = ACTIONS(4077), - [anon_sym_true] = ACTIONS(4075), - [anon_sym_false] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [sym__backtick_identifier] = ACTIONS(4077), - [sym__automatic_semicolon] = ACTIONS(4077), - [sym_safe_nav] = ACTIONS(4077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4077), - }, - [792] = { - [sym__loop_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_assignment] = STATE(1169), - [sym__expression] = STATE(393), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1760), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8304), - [sym_annotation] = STATE(1364), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [793] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym_get] = ACTIONS(4084), - [anon_sym_set] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [794] = { - [sym_type_constraints] = STATE(941), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [795] = { - [sym__loop_statement] = STATE(5443), - [sym_for_statement] = STATE(5443), - [sym_while_statement] = STATE(5443), - [sym_do_while_statement] = STATE(5443), - [sym_assignment] = STATE(5443), - [sym__expression] = STATE(2083), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_annotation] = STATE(1360), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [796] = { - [sym__loop_statement] = STATE(3928), - [sym_for_statement] = STATE(3928), - [sym_while_statement] = STATE(3928), - [sym_do_while_statement] = STATE(3928), - [sym_assignment] = STATE(3928), - [sym__expression] = STATE(2558), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(2136), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8322), - [sym_annotation] = STATE(1363), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [797] = { - [sym__loop_statement] = STATE(4647), - [sym_for_statement] = STATE(4647), - [sym_while_statement] = STATE(4647), - [sym_do_while_statement] = STATE(4647), - [sym_assignment] = STATE(4647), - [sym__expression] = STATE(3041), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(2252), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8336), - [sym_annotation] = STATE(1409), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(225), - [anon_sym_for] = ACTIONS(227), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [798] = { - [sym_catch_block] = STATE(798), - [aux_sym_try_expression_repeat1] = STATE(798), - [sym__alpha_identifier] = ACTIONS(4094), - [anon_sym_AT] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4094), - [anon_sym_EQ] = ACTIONS(4094), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_where] = ACTIONS(4094), - [anon_sym_object] = ACTIONS(4094), - [anon_sym_fun] = ACTIONS(4094), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(4094), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_this] = ACTIONS(4094), - [anon_sym_super] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4094), - [sym_label] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_QMARK_COLON] = ACTIONS(4096), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_null] = ACTIONS(4094), - [anon_sym_if] = ACTIONS(4094), - [anon_sym_else] = ACTIONS(4094), - [anon_sym_when] = ACTIONS(4094), - [anon_sym_try] = ACTIONS(4094), - [anon_sym_catch] = ACTIONS(4098), - [anon_sym_finally] = ACTIONS(4094), - [anon_sym_throw] = ACTIONS(4094), - [anon_sym_return] = ACTIONS(4094), - [anon_sym_continue] = ACTIONS(4094), - [anon_sym_break] = ACTIONS(4094), - [anon_sym_COLON_COLON] = ACTIONS(4096), - [anon_sym_PLUS_EQ] = ACTIONS(4096), - [anon_sym_DASH_EQ] = ACTIONS(4096), - [anon_sym_STAR_EQ] = ACTIONS(4096), - [anon_sym_SLASH_EQ] = ACTIONS(4096), - [anon_sym_PERCENT_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4094), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4094), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_BANGin] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4094), - [anon_sym_BANGis] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4094), - [anon_sym_as_QMARK] = ACTIONS(4096), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_BANG_BANG] = ACTIONS(4096), - [anon_sym_suspend] = ACTIONS(4094), - [anon_sym_sealed] = ACTIONS(4094), - [anon_sym_annotation] = ACTIONS(4094), - [anon_sym_data] = ACTIONS(4094), - [anon_sym_inner] = ACTIONS(4094), - [anon_sym_value] = ACTIONS(4094), - [anon_sym_override] = ACTIONS(4094), - [anon_sym_lateinit] = ACTIONS(4094), - [anon_sym_public] = ACTIONS(4094), - [anon_sym_private] = ACTIONS(4094), - [anon_sym_internal] = ACTIONS(4094), - [anon_sym_protected] = ACTIONS(4094), - [anon_sym_tailrec] = ACTIONS(4094), - [anon_sym_operator] = ACTIONS(4094), - [anon_sym_infix] = ACTIONS(4094), - [anon_sym_inline] = ACTIONS(4094), - [anon_sym_external] = ACTIONS(4094), - [sym_property_modifier] = ACTIONS(4094), - [anon_sym_abstract] = ACTIONS(4094), - [anon_sym_final] = ACTIONS(4094), - [anon_sym_open] = ACTIONS(4094), - [anon_sym_vararg] = ACTIONS(4094), - [anon_sym_noinline] = ACTIONS(4094), - [anon_sym_crossinline] = ACTIONS(4094), - [anon_sym_expect] = ACTIONS(4094), - [anon_sym_actual] = ACTIONS(4094), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4096), - [anon_sym_continue_AT] = ACTIONS(4096), - [anon_sym_break_AT] = ACTIONS(4096), - [sym_real_literal] = ACTIONS(4096), - [sym_integer_literal] = ACTIONS(4094), - [sym_hex_literal] = ACTIONS(4096), - [sym_bin_literal] = ACTIONS(4096), - [anon_sym_true] = ACTIONS(4094), - [anon_sym_false] = ACTIONS(4094), - [anon_sym_SQUOTE] = ACTIONS(4096), - [sym__backtick_identifier] = ACTIONS(4096), - [sym__automatic_semicolon] = ACTIONS(4096), - [sym_safe_nav] = ACTIONS(4096), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4096), - }, - [799] = { - [aux_sym_user_type_repeat1] = STATE(799), - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4105), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), - }, - [800] = { - [sym__loop_statement] = STATE(3304), - [sym_for_statement] = STATE(3304), - [sym_while_statement] = STATE(3304), - [sym_do_while_statement] = STATE(3304), - [sym_assignment] = STATE(3304), - [sym__expression] = STATE(1336), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(1991), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8318), - [sym_annotation] = STATE(1390), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [801] = { - [sym__loop_statement] = STATE(3264), - [sym_for_statement] = STATE(3264), - [sym_while_statement] = STATE(3264), - [sym_do_while_statement] = STATE(3264), - [sym_assignment] = STATE(3264), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_collection_literal] = STATE(2769), - [sym__literal_constant] = STATE(2769), - [sym_string_literal] = STATE(2769), - [sym_lambda_literal] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [sym__function_literal] = STATE(2769), - [sym_object_literal] = STATE(2769), - [sym_this_expression] = STATE(2769), - [sym_super_expression] = STATE(2769), - [sym_if_expression] = STATE(2769), - [sym_when_expression] = STATE(2769), - [sym_try_expression] = STATE(2769), - [sym_jump_expression] = STATE(2769), - [sym_callable_reference] = STATE(2769), - [sym__prefix_unary_operator] = STATE(1841), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8325), - [sym_annotation] = STATE(1415), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2769), - [sym_long_literal] = STATE(2769), - [sym_boolean_literal] = STATE(2769), - [sym_character_literal] = STATE(2769), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(533), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [802] = { - [sym_type_arguments] = STATE(869), - [sym__alpha_identifier] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_EQ] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_object] = ACTIONS(4108), - [anon_sym_fun] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_get] = ACTIONS(4108), - [anon_sym_set] = ACTIONS(4108), - [anon_sym_this] = ACTIONS(4108), - [anon_sym_super] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [sym__quest] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [sym_label] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_QMARK_COLON] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_null] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_else] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_PLUS_EQ] = ACTIONS(4110), - [anon_sym_DASH_EQ] = ACTIONS(4110), - [anon_sym_STAR_EQ] = ACTIONS(4110), - [anon_sym_SLASH_EQ] = ACTIONS(4110), - [anon_sym_PERCENT_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_BANGin] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4108), - [anon_sym_BANGis] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_as_QMARK] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_BANG_BANG] = ACTIONS(4110), - [anon_sym_suspend] = ACTIONS(4108), - [anon_sym_sealed] = ACTIONS(4108), - [anon_sym_annotation] = ACTIONS(4108), - [anon_sym_data] = ACTIONS(4108), - [anon_sym_inner] = ACTIONS(4108), - [anon_sym_value] = ACTIONS(4108), - [anon_sym_override] = ACTIONS(4108), - [anon_sym_lateinit] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_internal] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_tailrec] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_infix] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_external] = ACTIONS(4108), - [sym_property_modifier] = ACTIONS(4108), - [anon_sym_abstract] = ACTIONS(4108), - [anon_sym_final] = ACTIONS(4108), - [anon_sym_open] = ACTIONS(4108), - [anon_sym_vararg] = ACTIONS(4108), - [anon_sym_noinline] = ACTIONS(4108), - [anon_sym_crossinline] = ACTIONS(4108), - [anon_sym_expect] = ACTIONS(4108), - [anon_sym_actual] = ACTIONS(4108), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4110), - [anon_sym_continue_AT] = ACTIONS(4110), - [anon_sym_break_AT] = ACTIONS(4110), - [sym_real_literal] = ACTIONS(4110), - [sym_integer_literal] = ACTIONS(4108), - [sym_hex_literal] = ACTIONS(4110), - [sym_bin_literal] = ACTIONS(4110), - [anon_sym_true] = ACTIONS(4108), - [anon_sym_false] = ACTIONS(4108), - [anon_sym_SQUOTE] = ACTIONS(4110), - [sym__backtick_identifier] = ACTIONS(4110), - [sym__automatic_semicolon] = ACTIONS(4110), - [sym_safe_nav] = ACTIONS(4110), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4110), - }, - [803] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(4084), - [anon_sym_set] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [804] = { - [sym__loop_statement] = STATE(3928), - [sym_for_statement] = STATE(3928), - [sym_while_statement] = STATE(3928), - [sym_do_while_statement] = STATE(3928), - [sym_assignment] = STATE(3928), - [sym__expression] = STATE(2424), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2918), - [sym_parenthesized_expression] = STATE(2918), - [sym_collection_literal] = STATE(2918), - [sym__literal_constant] = STATE(2918), - [sym_string_literal] = STATE(2918), - [sym_lambda_literal] = STATE(2918), - [sym_anonymous_function] = STATE(2918), - [sym__function_literal] = STATE(2918), - [sym_object_literal] = STATE(2918), - [sym_this_expression] = STATE(2918), - [sym_super_expression] = STATE(2918), - [sym_if_expression] = STATE(2918), - [sym_when_expression] = STATE(2918), - [sym_try_expression] = STATE(2918), - [sym_jump_expression] = STATE(2918), - [sym_callable_reference] = STATE(2918), - [sym__prefix_unary_operator] = STATE(1823), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8335), - [sym_annotation] = STATE(1418), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2918), - [sym_long_literal] = STATE(2918), - [sym_boolean_literal] = STATE(2918), - [sym_character_literal] = STATE(2918), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [805] = { - [sym_type_constraints] = STATE(946), - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [806] = { - [sym__loop_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_assignment] = STATE(1169), - [sym__expression] = STATE(366), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_collection_literal] = STATE(770), - [sym__literal_constant] = STATE(770), - [sym_string_literal] = STATE(770), - [sym_lambda_literal] = STATE(770), - [sym_anonymous_function] = STATE(770), - [sym__function_literal] = STATE(770), - [sym_object_literal] = STATE(770), - [sym_this_expression] = STATE(770), - [sym_super_expression] = STATE(770), - [sym_if_expression] = STATE(770), - [sym_when_expression] = STATE(770), - [sym_try_expression] = STATE(770), - [sym_jump_expression] = STATE(770), - [sym_callable_reference] = STATE(770), - [sym__prefix_unary_operator] = STATE(1994), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8319), - [sym_annotation] = STATE(1371), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(770), - [sym_long_literal] = STATE(770), - [sym_boolean_literal] = STATE(770), - [sym_character_literal] = STATE(770), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [807] = { - [sym_type_constraints] = STATE(898), - [sym_function_body] = STATE(1113), - [sym__block] = STATE(1204), + [812] = { + [sym_type_arguments] = STATE(6538), [sym__alpha_identifier] = ACTIONS(4122), [anon_sym_AT] = ACTIONS(4124), [anon_sym_COLON] = ACTIONS(4126), [anon_sym_LBRACK] = ACTIONS(4124), [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), + [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(3178), + [anon_sym_where] = ACTIONS(4122), [anon_sym_object] = ACTIONS(4122), [anon_sym_fun] = ACTIONS(4122), [anon_sym_DOT] = ACTIONS(4122), @@ -140856,6 +144451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(4122), [anon_sym_this] = ACTIONS(4122), [anon_sym_super] = ACTIONS(4122), + [sym__quest] = ACTIONS(4128), [anon_sym_STAR] = ACTIONS(4122), [sym_label] = ACTIONS(4122), [anon_sym_in] = ACTIONS(4122), @@ -140926,6 +144522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -140939,1534 +144537,1452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4124), }, - [808] = { - [sym__loop_statement] = STATE(5139), - [sym_for_statement] = STATE(5139), - [sym_while_statement] = STATE(5139), - [sym_do_while_statement] = STATE(5139), - [sym_assignment] = STATE(5139), - [sym__expression] = STATE(4218), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1717), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8314), - [sym_annotation] = STATE(1406), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(971), - [anon_sym_for] = ACTIONS(973), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [809] = { - [sym__loop_statement] = STATE(9150), - [sym_for_statement] = STATE(9150), - [sym_while_statement] = STATE(9150), - [sym_do_while_statement] = STATE(9150), - [sym_assignment] = STATE(9150), - [sym__expression] = STATE(4274), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_annotation] = STATE(1378), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [810] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4037), - [anon_sym_set] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [811] = { - [sym__loop_statement] = STATE(3264), - [sym_for_statement] = STATE(3264), - [sym_while_statement] = STATE(3264), - [sym_do_while_statement] = STATE(3264), - [sym_assignment] = STATE(3264), - [sym__expression] = STATE(1508), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2110), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8296), - [sym_annotation] = STATE(1370), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [812] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(4037), - [anon_sym_set] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, [813] = { - [sym__loop_statement] = STATE(4647), - [sym_for_statement] = STATE(4647), - [sym_while_statement] = STATE(4647), - [sym_do_while_statement] = STATE(4647), - [sym_assignment] = STATE(4647), - [sym__expression] = STATE(3944), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4498), - [sym_parenthesized_expression] = STATE(4498), - [sym_collection_literal] = STATE(4498), - [sym__literal_constant] = STATE(4498), - [sym_string_literal] = STATE(4498), - [sym_lambda_literal] = STATE(4498), - [sym_anonymous_function] = STATE(4498), - [sym__function_literal] = STATE(4498), - [sym_object_literal] = STATE(4498), - [sym_this_expression] = STATE(4498), - [sym_super_expression] = STATE(4498), - [sym_if_expression] = STATE(4498), - [sym_when_expression] = STATE(4498), - [sym_try_expression] = STATE(4498), - [sym_jump_expression] = STATE(4498), - [sym_callable_reference] = STATE(4498), - [sym__prefix_unary_operator] = STATE(1741), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8333), - [sym_annotation] = STATE(1357), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4498), - [sym_long_literal] = STATE(4498), - [sym_boolean_literal] = STATE(4498), - [sym_character_literal] = STATE(4498), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(761), - [anon_sym_for] = ACTIONS(763), - [anon_sym_while] = ACTIONS(765), - [anon_sym_do] = ACTIONS(231), - [anon_sym_null] = ACTIONS(233), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(245), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_catch_block] = STATE(813), + [aux_sym_try_expression_repeat1] = STATE(813), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_object] = ACTIONS(4130), + [anon_sym_fun] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_this] = ACTIONS(4130), + [anon_sym_super] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [sym_label] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(4134), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_suspend] = ACTIONS(4130), + [anon_sym_sealed] = ACTIONS(4130), + [anon_sym_annotation] = ACTIONS(4130), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_override] = ACTIONS(4130), + [anon_sym_lateinit] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_internal] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_tailrec] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_infix] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym_external] = ACTIONS(4130), + [sym_property_modifier] = ACTIONS(4130), + [anon_sym_abstract] = ACTIONS(4130), + [anon_sym_final] = ACTIONS(4130), + [anon_sym_open] = ACTIONS(4130), + [anon_sym_vararg] = ACTIONS(4130), + [anon_sym_noinline] = ACTIONS(4130), + [anon_sym_crossinline] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4132), + [anon_sym_continue_AT] = ACTIONS(4132), + [anon_sym_break_AT] = ACTIONS(4132), + [anon_sym_this_AT] = ACTIONS(4132), + [anon_sym_super_AT] = ACTIONS(4132), + [sym_real_literal] = ACTIONS(4132), + [sym_integer_literal] = ACTIONS(4130), + [sym_hex_literal] = ACTIONS(4132), + [sym_bin_literal] = ACTIONS(4132), + [anon_sym_true] = ACTIONS(4130), + [anon_sym_false] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4132), + [sym__backtick_identifier] = ACTIONS(4132), + [sym__automatic_semicolon] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4132), }, [814] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4037), - [anon_sym_set] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(909), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [815] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(4037), - [anon_sym_set] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [sym_type_constraints] = STATE(905), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(4151), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [816] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_get] = ACTIONS(4084), - [anon_sym_set] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_user_type_repeat1] = STATE(819), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(4157), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [sym_label] = ACTIONS(4153), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), }, [817] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym_get] = ACTIONS(4084), - [anon_sym_set] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_when_condition] = STATE(9384), + [sym_range_test] = STATE(9382), + [sym_type_test] = STATE(9382), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__in_operator] = STATE(2100), + [sym__is_operator] = STATE(6039), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_in] = ACTIONS(3712), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3718), + [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [818] = { - [aux_sym_user_type_repeat1] = STATE(791), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [sym__quest] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [sym_label] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), + [sym_type_constraints] = STATE(903), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [819] = { - [sym__loop_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_assignment] = STATE(1169), - [sym__expression] = STATE(529), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2204), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8293), - [sym_annotation] = STATE(1377), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [aux_sym_user_type_repeat1] = STATE(819), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, [820] = { - [sym__loop_statement] = STATE(3928), - [sym_for_statement] = STATE(3928), - [sym_while_statement] = STATE(3928), - [sym_do_while_statement] = STATE(3928), - [sym_assignment] = STATE(3928), - [sym__expression] = STATE(1376), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(1965), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8302), - [sym_annotation] = STATE(1431), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_type_constraints] = STATE(911), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, [821] = { - [sym__loop_statement] = STATE(3928), - [sym_for_statement] = STATE(3928), - [sym_while_statement] = STATE(3928), - [sym_do_while_statement] = STATE(3928), - [sym_assignment] = STATE(3928), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(2938), - [sym_parenthesized_expression] = STATE(2938), - [sym_collection_literal] = STATE(2938), - [sym__literal_constant] = STATE(2938), - [sym_string_literal] = STATE(2938), - [sym_lambda_literal] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [sym__function_literal] = STATE(2938), - [sym_object_literal] = STATE(2938), - [sym_this_expression] = STATE(2938), - [sym_super_expression] = STATE(2938), - [sym_if_expression] = STATE(2938), - [sym_when_expression] = STATE(2938), - [sym_try_expression] = STATE(2938), - [sym_jump_expression] = STATE(2938), - [sym_callable_reference] = STATE(2938), - [sym__prefix_unary_operator] = STATE(2190), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8324), - [sym_annotation] = STATE(1362), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3951), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(2938), - [sym_long_literal] = STATE(2938), - [sym_boolean_literal] = STATE(2938), - [sym_character_literal] = STATE(2938), - [sym__lexical_identifier] = STATE(3077), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(445), - [anon_sym_for] = ACTIONS(447), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(451), - [anon_sym_null] = ACTIONS(453), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, [822] = { - [sym_type_arguments] = STATE(6509), + [sym_type_constraints] = STATE(899), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [823] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [824] = { + [sym_type_arguments] = STATE(861), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [sym_label] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), + }, + [825] = { + [aux_sym_user_type_repeat1] = STATE(816), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [826] = { + [sym_type_constraints] = STATE(1102), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4147), [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(4151), + [anon_sym_COLON] = ACTIONS(4200), [anon_sym_LBRACK] = ACTIONS(4149), [anon_sym_as] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_COMMA] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), [anon_sym_LT] = ACTIONS(4147), [anon_sym_GT] = ACTIONS(4147), - [anon_sym_where] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4147), [anon_sym_fun] = ACTIONS(4147), [anon_sym_DOT] = ACTIONS(4147), @@ -142475,7 +145991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(4147), [anon_sym_this] = ACTIONS(4147), [anon_sym_super] = ACTIONS(4147), - [sym__quest] = ACTIONS(4108), [anon_sym_STAR] = ACTIONS(4147), [sym_label] = ACTIONS(4147), [anon_sym_in] = ACTIONS(4147), @@ -142546,6 +146061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(4149), [anon_sym_continue_AT] = ACTIONS(4149), [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), [sym_real_literal] = ACTIONS(4149), [sym_integer_literal] = ACTIONS(4147), [sym_hex_literal] = ACTIONS(4149), @@ -142559,2068 +146076,784 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4149), }, - [823] = { - [sym__loop_statement] = STATE(3304), - [sym_for_statement] = STATE(3304), - [sym_while_statement] = STATE(3304), - [sym_do_while_statement] = STATE(3304), - [sym_assignment] = STATE(3304), - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2761), - [sym_parenthesized_expression] = STATE(2761), - [sym_collection_literal] = STATE(2761), - [sym__literal_constant] = STATE(2761), - [sym_string_literal] = STATE(2761), - [sym_lambda_literal] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [sym__function_literal] = STATE(2761), - [sym_object_literal] = STATE(2761), - [sym_this_expression] = STATE(2761), - [sym_super_expression] = STATE(2761), - [sym_if_expression] = STATE(2761), - [sym_when_expression] = STATE(2761), - [sym_try_expression] = STATE(2761), - [sym_jump_expression] = STATE(2761), - [sym_callable_reference] = STATE(2761), - [sym__prefix_unary_operator] = STATE(2131), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8295), - [sym_annotation] = STATE(1366), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2761), - [sym_long_literal] = STATE(2761), - [sym_boolean_literal] = STATE(2761), - [sym_character_literal] = STATE(2761), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(319), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [824] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4153), - [anon_sym_get] = ACTIONS(4084), - [anon_sym_set] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [825] = { - [sym__loop_statement] = STATE(3304), - [sym_for_statement] = STATE(3304), - [sym_while_statement] = STATE(3304), - [sym_do_while_statement] = STATE(3304), - [sym_assignment] = STATE(3304), - [sym__expression] = STATE(1490), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8332), - [sym_annotation] = STATE(1408), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [826] = { - [sym__loop_statement] = STATE(3264), - [sym_for_statement] = STATE(3264), - [sym_while_statement] = STATE(3264), - [sym_do_while_statement] = STATE(3264), - [sym_assignment] = STATE(3264), - [sym__expression] = STATE(2083), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(2778), - [sym_parenthesized_expression] = STATE(2778), - [sym_collection_literal] = STATE(2778), - [sym__literal_constant] = STATE(2778), - [sym_string_literal] = STATE(2778), - [sym_lambda_literal] = STATE(2778), - [sym_anonymous_function] = STATE(2778), - [sym__function_literal] = STATE(2778), - [sym_object_literal] = STATE(2778), - [sym_this_expression] = STATE(2778), - [sym_super_expression] = STATE(2778), - [sym_if_expression] = STATE(2778), - [sym_when_expression] = STATE(2778), - [sym_try_expression] = STATE(2778), - [sym_jump_expression] = STATE(2778), - [sym_callable_reference] = STATE(2778), - [sym__prefix_unary_operator] = STATE(2135), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8315), - [sym_annotation] = STATE(1360), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3426), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(2778), - [sym_long_literal] = STATE(2778), - [sym_boolean_literal] = STATE(2778), - [sym_character_literal] = STATE(2778), - [sym__lexical_identifier] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(531), - [anon_sym_null] = ACTIONS(945), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, [827] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4155), - [anon_sym_get] = ACTIONS(4084), - [anon_sym_set] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(839), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [sym__quest] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, [828] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4157), - [anon_sym_get] = ACTIONS(4037), - [anon_sym_set] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_null] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), }, [829] = { - [sym__loop_statement] = STATE(9441), - [sym_for_statement] = STATE(9441), - [sym_while_statement] = STATE(9441), - [sym_do_while_statement] = STATE(9441), - [sym_assignment] = STATE(9441), - [sym__expression] = STATE(4243), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4497), - [sym_parenthesized_expression] = STATE(4497), - [sym_collection_literal] = STATE(4497), - [sym__literal_constant] = STATE(4497), - [sym_string_literal] = STATE(4497), - [sym_lambda_literal] = STATE(4497), - [sym_anonymous_function] = STATE(4497), - [sym__function_literal] = STATE(4497), - [sym_object_literal] = STATE(4497), - [sym_this_expression] = STATE(4497), - [sym_super_expression] = STATE(4497), - [sym_if_expression] = STATE(4497), - [sym_when_expression] = STATE(4497), - [sym_try_expression] = STATE(4497), - [sym_jump_expression] = STATE(4497), - [sym_callable_reference] = STATE(4497), - [sym__prefix_unary_operator] = STATE(1995), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8330), - [sym_annotation] = STATE(1391), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4684), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4497), - [sym_long_literal] = STATE(4497), - [sym_boolean_literal] = STATE(4497), - [sym_character_literal] = STATE(4497), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_while] = ACTIONS(153), - [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(187), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [830] = { - [sym__loop_statement] = STATE(3304), - [sym_for_statement] = STATE(3304), - [sym_while_statement] = STATE(3304), - [sym_do_while_statement] = STATE(3304), - [sym_assignment] = STATE(3304), - [sym__expression] = STATE(2503), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(2771), - [sym_parenthesized_expression] = STATE(2771), - [sym_collection_literal] = STATE(2771), - [sym__literal_constant] = STATE(2771), - [sym_string_literal] = STATE(2771), - [sym_lambda_literal] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [sym__function_literal] = STATE(2771), - [sym_object_literal] = STATE(2771), - [sym_this_expression] = STATE(2771), - [sym_super_expression] = STATE(2771), - [sym_if_expression] = STATE(2771), - [sym_when_expression] = STATE(2771), - [sym_try_expression] = STATE(2771), - [sym_jump_expression] = STATE(2771), - [sym_callable_reference] = STATE(2771), - [sym__prefix_unary_operator] = STATE(1768), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8327), - [sym_annotation] = STATE(1387), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3423), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2771), - [sym_long_literal] = STATE(2771), - [sym_boolean_literal] = STATE(2771), - [sym_character_literal] = STATE(2771), - [sym__lexical_identifier] = STATE(2868), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(287), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [aux_sym_nullable_type_repeat1] = STATE(830), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [sym__quest] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), }, [831] = { - [sym__loop_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_assignment] = STATE(1169), - [sym__expression] = STATE(466), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_collection_literal] = STATE(753), - [sym__literal_constant] = STATE(753), - [sym_string_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_anonymous_function] = STATE(753), - [sym__function_literal] = STATE(753), - [sym_object_literal] = STATE(753), - [sym_this_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_expression] = STATE(753), - [sym_when_expression] = STATE(753), - [sym_try_expression] = STATE(753), - [sym_jump_expression] = STATE(753), - [sym_callable_reference] = STATE(753), - [sym__prefix_unary_operator] = STATE(2151), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8298), - [sym_annotation] = STATE(1374), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1186), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(753), - [sym_long_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym_character_literal] = STATE(753), - [sym__lexical_identifier] = STATE(832), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [832] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_by] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3818), - [sym__quest] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [833] = { - [sym_type_constraints] = STATE(936), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4241), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, [834] = { - [sym__loop_statement] = STATE(5139), - [sym_for_statement] = STATE(5139), - [sym_while_statement] = STATE(5139), - [sym_do_while_statement] = STATE(5139), - [sym_assignment] = STATE(5139), - [sym__expression] = STATE(3698), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4520), - [sym_parenthesized_expression] = STATE(4520), - [sym_collection_literal] = STATE(4520), - [sym__literal_constant] = STATE(4520), - [sym_string_literal] = STATE(4520), - [sym_lambda_literal] = STATE(4520), - [sym_anonymous_function] = STATE(4520), - [sym__function_literal] = STATE(4520), - [sym_object_literal] = STATE(4520), - [sym_this_expression] = STATE(4520), - [sym_super_expression] = STATE(4520), - [sym_if_expression] = STATE(4520), - [sym_when_expression] = STATE(4520), - [sym_try_expression] = STATE(4520), - [sym_jump_expression] = STATE(4520), - [sym_callable_reference] = STATE(4520), - [sym__prefix_unary_operator] = STATE(2196), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8300), - [sym_annotation] = STATE(1358), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4520), - [sym_long_literal] = STATE(4520), - [sym_boolean_literal] = STATE(4520), - [sym_character_literal] = STATE(4520), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(603), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [835] = { - [sym__loop_statement] = STATE(5139), - [sym_for_statement] = STATE(5139), - [sym_while_statement] = STATE(5139), - [sym_do_while_statement] = STATE(5139), - [sym_assignment] = STATE(5139), - [sym__expression] = STATE(4274), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(4515), - [sym_parenthesized_expression] = STATE(4515), - [sym_collection_literal] = STATE(4515), - [sym__literal_constant] = STATE(4515), - [sym_string_literal] = STATE(4515), - [sym_lambda_literal] = STATE(4515), - [sym_anonymous_function] = STATE(4515), - [sym__function_literal] = STATE(4515), - [sym_object_literal] = STATE(4515), - [sym_this_expression] = STATE(4515), - [sym_super_expression] = STATE(4515), - [sym_if_expression] = STATE(4515), - [sym_when_expression] = STATE(4515), - [sym_try_expression] = STATE(4515), - [sym_jump_expression] = STATE(4515), - [sym_callable_reference] = STATE(4515), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(8371), - [sym_directly_assignable_expression] = STATE(8313), - [sym_annotation] = STATE(1378), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5017), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(4515), - [sym_long_literal] = STATE(4515), - [sym_boolean_literal] = STATE(4515), - [sym_character_literal] = STATE(4515), - [sym__lexical_identifier] = STATE(4561), - [aux_sym__statement_repeat1] = STATE(5421), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(601), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [836] = { - [aux_sym_nullable_type_repeat1] = STATE(860), - [sym__alpha_identifier] = ACTIONS(4165), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_as] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [anon_sym_by] = ACTIONS(4165), - [anon_sym_LT] = ACTIONS(4165), - [anon_sym_GT] = ACTIONS(4165), - [anon_sym_where] = ACTIONS(4165), - [anon_sym_object] = ACTIONS(4165), - [anon_sym_fun] = ACTIONS(4165), - [anon_sym_DOT] = ACTIONS(4165), - [anon_sym_SEMI] = ACTIONS(4167), - [anon_sym_get] = ACTIONS(4165), - [anon_sym_set] = ACTIONS(4165), - [anon_sym_this] = ACTIONS(4165), - [anon_sym_super] = ACTIONS(4165), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4165), - [sym_label] = ACTIONS(4165), - [anon_sym_in] = ACTIONS(4165), - [anon_sym_DOT_DOT] = ACTIONS(4167), - [anon_sym_QMARK_COLON] = ACTIONS(4167), - [anon_sym_AMP_AMP] = ACTIONS(4167), - [anon_sym_PIPE_PIPE] = ACTIONS(4167), - [anon_sym_null] = ACTIONS(4165), - [anon_sym_if] = ACTIONS(4165), - [anon_sym_else] = ACTIONS(4165), - [anon_sym_when] = ACTIONS(4165), - [anon_sym_try] = ACTIONS(4165), - [anon_sym_throw] = ACTIONS(4165), - [anon_sym_return] = ACTIONS(4165), - [anon_sym_continue] = ACTIONS(4165), - [anon_sym_break] = ACTIONS(4165), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_PLUS_EQ] = ACTIONS(4167), - [anon_sym_DASH_EQ] = ACTIONS(4167), - [anon_sym_STAR_EQ] = ACTIONS(4167), - [anon_sym_SLASH_EQ] = ACTIONS(4167), - [anon_sym_PERCENT_EQ] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), - [anon_sym_EQ_EQ] = ACTIONS(4165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), - [anon_sym_LT_EQ] = ACTIONS(4167), - [anon_sym_GT_EQ] = ACTIONS(4167), - [anon_sym_BANGin] = ACTIONS(4167), - [anon_sym_is] = ACTIONS(4165), - [anon_sym_BANGis] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4165), - [anon_sym_DASH] = ACTIONS(4165), - [anon_sym_SLASH] = ACTIONS(4165), - [anon_sym_PERCENT] = ACTIONS(4165), - [anon_sym_as_QMARK] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_BANG] = ACTIONS(4165), - [anon_sym_BANG_BANG] = ACTIONS(4167), - [anon_sym_suspend] = ACTIONS(4165), - [anon_sym_sealed] = ACTIONS(4165), - [anon_sym_annotation] = ACTIONS(4165), - [anon_sym_data] = ACTIONS(4165), - [anon_sym_inner] = ACTIONS(4165), - [anon_sym_value] = ACTIONS(4165), - [anon_sym_override] = ACTIONS(4165), - [anon_sym_lateinit] = ACTIONS(4165), - [anon_sym_public] = ACTIONS(4165), - [anon_sym_private] = ACTIONS(4165), - [anon_sym_internal] = ACTIONS(4165), - [anon_sym_protected] = ACTIONS(4165), - [anon_sym_tailrec] = ACTIONS(4165), - [anon_sym_operator] = ACTIONS(4165), - [anon_sym_infix] = ACTIONS(4165), - [anon_sym_inline] = ACTIONS(4165), - [anon_sym_external] = ACTIONS(4165), - [sym_property_modifier] = ACTIONS(4165), - [anon_sym_abstract] = ACTIONS(4165), - [anon_sym_final] = ACTIONS(4165), - [anon_sym_open] = ACTIONS(4165), - [anon_sym_vararg] = ACTIONS(4165), - [anon_sym_noinline] = ACTIONS(4165), - [anon_sym_crossinline] = ACTIONS(4165), - [anon_sym_expect] = ACTIONS(4165), - [anon_sym_actual] = ACTIONS(4165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4167), - [anon_sym_continue_AT] = ACTIONS(4167), - [anon_sym_break_AT] = ACTIONS(4167), - [sym_real_literal] = ACTIONS(4167), - [sym_integer_literal] = ACTIONS(4165), - [sym_hex_literal] = ACTIONS(4167), - [sym_bin_literal] = ACTIONS(4167), - [anon_sym_true] = ACTIONS(4165), - [anon_sym_false] = ACTIONS(4165), - [anon_sym_SQUOTE] = ACTIONS(4167), - [sym__backtick_identifier] = ACTIONS(4167), - [sym__automatic_semicolon] = ACTIONS(4167), - [sym_safe_nav] = ACTIONS(4167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4167), - }, - [837] = { - [sym__alpha_identifier] = ACTIONS(4171), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(4173), - [anon_sym_as] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_COMMA] = ACTIONS(4173), - [anon_sym_by] = ACTIONS(4171), - [anon_sym_LT] = ACTIONS(4171), - [anon_sym_GT] = ACTIONS(4171), - [anon_sym_where] = ACTIONS(4171), - [anon_sym_object] = ACTIONS(4171), - [anon_sym_fun] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4173), - [anon_sym_get] = ACTIONS(4171), - [anon_sym_set] = ACTIONS(4171), - [anon_sym_this] = ACTIONS(4171), - [anon_sym_super] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - [sym__quest] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4171), - [sym_label] = ACTIONS(4171), - [anon_sym_in] = ACTIONS(4171), - [anon_sym_DOT_DOT] = ACTIONS(4173), - [anon_sym_QMARK_COLON] = ACTIONS(4173), - [anon_sym_AMP_AMP] = ACTIONS(4173), - [anon_sym_PIPE_PIPE] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4171), - [anon_sym_if] = ACTIONS(4171), - [anon_sym_else] = ACTIONS(4171), - [anon_sym_when] = ACTIONS(4171), - [anon_sym_try] = ACTIONS(4171), - [anon_sym_throw] = ACTIONS(4171), - [anon_sym_return] = ACTIONS(4171), - [anon_sym_continue] = ACTIONS(4171), - [anon_sym_break] = ACTIONS(4171), - [anon_sym_COLON_COLON] = ACTIONS(4173), - [anon_sym_PLUS_EQ] = ACTIONS(4173), - [anon_sym_DASH_EQ] = ACTIONS(4173), - [anon_sym_STAR_EQ] = ACTIONS(4173), - [anon_sym_SLASH_EQ] = ACTIONS(4173), - [anon_sym_PERCENT_EQ] = ACTIONS(4173), - [anon_sym_BANG_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), - [anon_sym_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), - [anon_sym_LT_EQ] = ACTIONS(4173), - [anon_sym_GT_EQ] = ACTIONS(4173), - [anon_sym_BANGin] = ACTIONS(4173), - [anon_sym_is] = ACTIONS(4171), - [anon_sym_BANGis] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4171), - [anon_sym_PERCENT] = ACTIONS(4171), - [anon_sym_as_QMARK] = ACTIONS(4173), - [anon_sym_PLUS_PLUS] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(4171), - [anon_sym_BANG_BANG] = ACTIONS(4173), - [anon_sym_suspend] = ACTIONS(4171), - [anon_sym_sealed] = ACTIONS(4171), - [anon_sym_annotation] = ACTIONS(4171), - [anon_sym_data] = ACTIONS(4171), - [anon_sym_inner] = ACTIONS(4171), - [anon_sym_value] = ACTIONS(4171), - [anon_sym_override] = ACTIONS(4171), - [anon_sym_lateinit] = ACTIONS(4171), - [anon_sym_public] = ACTIONS(4171), - [anon_sym_private] = ACTIONS(4171), - [anon_sym_internal] = ACTIONS(4171), - [anon_sym_protected] = ACTIONS(4171), - [anon_sym_tailrec] = ACTIONS(4171), - [anon_sym_operator] = ACTIONS(4171), - [anon_sym_infix] = ACTIONS(4171), - [anon_sym_inline] = ACTIONS(4171), - [anon_sym_external] = ACTIONS(4171), - [sym_property_modifier] = ACTIONS(4171), - [anon_sym_abstract] = ACTIONS(4171), - [anon_sym_final] = ACTIONS(4171), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_vararg] = ACTIONS(4171), - [anon_sym_noinline] = ACTIONS(4171), - [anon_sym_crossinline] = ACTIONS(4171), - [anon_sym_expect] = ACTIONS(4171), - [anon_sym_actual] = ACTIONS(4171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4173), - [anon_sym_continue_AT] = ACTIONS(4173), - [anon_sym_break_AT] = ACTIONS(4173), - [sym_real_literal] = ACTIONS(4173), - [sym_integer_literal] = ACTIONS(4171), - [sym_hex_literal] = ACTIONS(4173), - [sym_bin_literal] = ACTIONS(4173), - [anon_sym_true] = ACTIONS(4171), - [anon_sym_false] = ACTIONS(4171), - [anon_sym_SQUOTE] = ACTIONS(4173), - [sym__backtick_identifier] = ACTIONS(4173), - [sym__automatic_semicolon] = ACTIONS(4173), - [sym_safe_nav] = ACTIONS(4173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4173), - }, - [838] = { - [sym_type_constraints] = STATE(943), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [839] = { - [sym_type_constraints] = STATE(941), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [840] = { - [sym_type_constraints] = STATE(1130), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4175), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), - }, - [841] = { - [sym_type_constraints] = STATE(936), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), - }, - [842] = { - [sym_type_constraints] = STATE(935), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), [sym__alpha_identifier] = ACTIONS(4179), [anon_sym_AT] = ACTIONS(4181), [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), [anon_sym_RBRACE] = ACTIONS(4181), [anon_sym_LPAREN] = ACTIONS(4181), [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), [anon_sym_LT] = ACTIONS(4179), [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3178), + [anon_sym_where] = ACTIONS(4179), [anon_sym_object] = ACTIONS(4179), [anon_sym_fun] = ACTIONS(4179), [anon_sym_DOT] = ACTIONS(4179), @@ -144630,8 +146863,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(4179), [anon_sym_super] = ACTIONS(4179), [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), [sym_label] = ACTIONS(4179), [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), [anon_sym_DOT_DOT] = ACTIONS(4181), [anon_sym_QMARK_COLON] = ACTIONS(4181), [anon_sym_AMP_AMP] = ACTIONS(4181), @@ -144699,6 +146934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(4181), [anon_sym_continue_AT] = ACTIONS(4181), [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), [sym_real_literal] = ACTIONS(4181), [sym_integer_literal] = ACTIONS(4179), [sym_hex_literal] = ACTIONS(4181), @@ -144707,3665 +146944,3400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(4179), [anon_sym_SQUOTE] = ACTIONS(4181), [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4181), }, - [843] = { - [sym_class_body] = STATE(1088), - [sym_type_constraints] = STATE(962), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [844] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4185), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [835] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [845] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4215), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [836] = { + [sym_type_constraints] = STATE(1107), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [837] = { + [sym_type_constraints] = STATE(905), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [838] = { + [sym_type_constraints] = STATE(1105), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [839] = { + [aux_sym_nullable_type_repeat1] = STATE(830), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [sym__quest] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4247), + [sym_label] = ACTIONS(4247), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_when] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_throw] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4249), + [anon_sym_continue_AT] = ACTIONS(4249), + [anon_sym_break_AT] = ACTIONS(4249), + [anon_sym_this_AT] = ACTIONS(4249), + [anon_sym_super_AT] = ACTIONS(4249), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4247), + [anon_sym_false] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4249), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), + }, + [840] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_RBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_DASH_GT] = ACTIONS(4255), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_suspend] = ACTIONS(4253), + [anon_sym_sealed] = ACTIONS(4253), + [anon_sym_annotation] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_override] = ACTIONS(4253), + [anon_sym_lateinit] = ACTIONS(4253), + [anon_sym_public] = ACTIONS(4253), + [anon_sym_private] = ACTIONS(4253), + [anon_sym_internal] = ACTIONS(4253), + [anon_sym_protected] = ACTIONS(4253), + [anon_sym_tailrec] = ACTIONS(4253), + [anon_sym_operator] = ACTIONS(4253), + [anon_sym_infix] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym_external] = ACTIONS(4253), + [sym_property_modifier] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4253), + [anon_sym_final] = ACTIONS(4253), + [anon_sym_open] = ACTIONS(4253), + [anon_sym_vararg] = ACTIONS(4253), + [anon_sym_noinline] = ACTIONS(4253), + [anon_sym_crossinline] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [841] = { + [sym_type_constraints] = STATE(1100), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [842] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [843] = { + [sym_type_constraints] = STATE(1096), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [844] = { + [sym_type_constraints] = STATE(903), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [845] = { + [sym_type_constraints] = STATE(899), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [846] = { - [sym_type_constraints] = STATE(931), - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, [847] = { - [aux_sym_nullable_type_repeat1] = STATE(860), - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_object] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_this] = ACTIONS(4221), - [anon_sym_super] = ACTIONS(4221), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4221), - [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(4221), - [anon_sym_if] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4221), - [anon_sym_when] = ACTIONS(4221), - [anon_sym_try] = ACTIONS(4221), - [anon_sym_throw] = ACTIONS(4221), - [anon_sym_return] = ACTIONS(4221), - [anon_sym_continue] = ACTIONS(4221), - [anon_sym_break] = ACTIONS(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [anon_sym_as_QMARK] = ACTIONS(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_suspend] = ACTIONS(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4221), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [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(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [848] = { - [aux_sym_nullable_type_repeat1] = STATE(848), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [sym__quest] = ACTIONS(4229), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), + [sym_type_constraints] = STATE(898), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [849] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4232), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(896), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [850] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [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_DOT] = 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(4238), - [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_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), - [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), - }, - [851] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [851] = { + [aux_sym_nullable_type_repeat1] = STATE(839), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [sym__quest] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), }, [852] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(4311), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [853] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, [854] = { - [sym_type_constraints] = STATE(1116), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(4254), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), }, [855] = { - [sym_function_body] = STATE(1062), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [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_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [856] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [sym_label] = ACTIONS(4317), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), }, [857] = { - [sym_type_constraints] = STATE(1083), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [858] = { - [sym_class_body] = STATE(1153), - [sym_type_constraints] = STATE(972), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, [859] = { - [sym_type_constraints] = STATE(1043), - [sym_enum_class_body] = STATE(1066), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(4276), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, [860] = { - [aux_sym_nullable_type_repeat1] = STATE(848), - [sym__alpha_identifier] = ACTIONS(4278), - [anon_sym_AT] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4280), - [anon_sym_as] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(4280), - [anon_sym_COMMA] = ACTIONS(4280), - [anon_sym_by] = ACTIONS(4278), - [anon_sym_LT] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4278), - [anon_sym_where] = ACTIONS(4278), - [anon_sym_object] = ACTIONS(4278), - [anon_sym_fun] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym_get] = ACTIONS(4278), - [anon_sym_set] = ACTIONS(4278), - [anon_sym_this] = ACTIONS(4278), - [anon_sym_super] = ACTIONS(4278), - [sym__quest] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4278), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4278), - [anon_sym_DOT_DOT] = ACTIONS(4280), - [anon_sym_QMARK_COLON] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4280), - [anon_sym_null] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4278), - [anon_sym_when] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_PLUS_EQ] = ACTIONS(4280), - [anon_sym_DASH_EQ] = ACTIONS(4280), - [anon_sym_STAR_EQ] = ACTIONS(4280), - [anon_sym_SLASH_EQ] = ACTIONS(4280), - [anon_sym_PERCENT_EQ] = ACTIONS(4280), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), - [anon_sym_LT_EQ] = ACTIONS(4280), - [anon_sym_GT_EQ] = ACTIONS(4280), - [anon_sym_BANGin] = ACTIONS(4280), - [anon_sym_is] = ACTIONS(4278), - [anon_sym_BANGis] = ACTIONS(4280), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_SLASH] = ACTIONS(4278), - [anon_sym_PERCENT] = ACTIONS(4278), - [anon_sym_as_QMARK] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4278), - [anon_sym_BANG_BANG] = ACTIONS(4280), - [anon_sym_suspend] = ACTIONS(4278), - [anon_sym_sealed] = ACTIONS(4278), - [anon_sym_annotation] = ACTIONS(4278), - [anon_sym_data] = ACTIONS(4278), - [anon_sym_inner] = ACTIONS(4278), - [anon_sym_value] = ACTIONS(4278), - [anon_sym_override] = ACTIONS(4278), - [anon_sym_lateinit] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_internal] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_tailrec] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_infix] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym_external] = ACTIONS(4278), - [sym_property_modifier] = ACTIONS(4278), - [anon_sym_abstract] = ACTIONS(4278), - [anon_sym_final] = ACTIONS(4278), - [anon_sym_open] = ACTIONS(4278), - [anon_sym_vararg] = ACTIONS(4278), - [anon_sym_noinline] = ACTIONS(4278), - [anon_sym_crossinline] = ACTIONS(4278), - [anon_sym_expect] = ACTIONS(4278), - [anon_sym_actual] = ACTIONS(4278), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4280), - [anon_sym_continue_AT] = ACTIONS(4280), - [anon_sym_break_AT] = ACTIONS(4280), - [sym_real_literal] = ACTIONS(4280), - [sym_integer_literal] = ACTIONS(4278), - [sym_hex_literal] = ACTIONS(4280), - [sym_bin_literal] = ACTIONS(4280), - [anon_sym_true] = ACTIONS(4278), - [anon_sym_false] = ACTIONS(4278), - [anon_sym_SQUOTE] = ACTIONS(4280), - [sym__backtick_identifier] = ACTIONS(4280), - [sym__automatic_semicolon] = ACTIONS(4280), - [sym_safe_nav] = ACTIONS(4280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4280), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4333), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, [861] = { - [sym_function_body] = STATE(1090), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, [862] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [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_DOT] = 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(4290), - [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_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), - [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), - }, - [863] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [864] = { - [sym_type_constraints] = STATE(1102), - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [865] = { - [sym__alpha_identifier] = ACTIONS(4308), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_COMMA] = ACTIONS(4310), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_object] = ACTIONS(4308), - [anon_sym_fun] = ACTIONS(4308), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_SEMI] = ACTIONS(4310), - [anon_sym_get] = ACTIONS(4308), - [anon_sym_set] = ACTIONS(4308), - [anon_sym_this] = ACTIONS(4308), - [anon_sym_super] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [sym__quest] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4308), - [sym_label] = ACTIONS(4308), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_DOT_DOT] = ACTIONS(4310), - [anon_sym_QMARK_COLON] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4310), - [anon_sym_PIPE_PIPE] = ACTIONS(4310), - [anon_sym_null] = ACTIONS(4308), - [anon_sym_if] = ACTIONS(4308), - [anon_sym_else] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [anon_sym_try] = ACTIONS(4308), - [anon_sym_throw] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4308), - [anon_sym_continue] = ACTIONS(4308), - [anon_sym_break] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(4310), - [anon_sym_PLUS_EQ] = ACTIONS(4310), - [anon_sym_DASH_EQ] = ACTIONS(4310), - [anon_sym_STAR_EQ] = ACTIONS(4310), - [anon_sym_SLASH_EQ] = ACTIONS(4310), - [anon_sym_PERCENT_EQ] = ACTIONS(4310), - [anon_sym_BANG_EQ] = ACTIONS(4308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), - [anon_sym_EQ_EQ] = ACTIONS(4308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), - [anon_sym_LT_EQ] = ACTIONS(4310), - [anon_sym_GT_EQ] = ACTIONS(4310), - [anon_sym_BANGin] = ACTIONS(4310), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_BANGis] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4308), - [anon_sym_as_QMARK] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4310), - [anon_sym_DASH_DASH] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_BANG_BANG] = ACTIONS(4310), - [anon_sym_suspend] = ACTIONS(4308), - [anon_sym_sealed] = ACTIONS(4308), - [anon_sym_annotation] = ACTIONS(4308), - [anon_sym_data] = ACTIONS(4308), - [anon_sym_inner] = ACTIONS(4308), - [anon_sym_value] = ACTIONS(4308), - [anon_sym_override] = ACTIONS(4308), - [anon_sym_lateinit] = ACTIONS(4308), - [anon_sym_public] = ACTIONS(4308), - [anon_sym_private] = ACTIONS(4308), - [anon_sym_internal] = ACTIONS(4308), - [anon_sym_protected] = ACTIONS(4308), - [anon_sym_tailrec] = ACTIONS(4308), - [anon_sym_operator] = ACTIONS(4308), - [anon_sym_infix] = ACTIONS(4308), - [anon_sym_inline] = ACTIONS(4308), - [anon_sym_external] = ACTIONS(4308), - [sym_property_modifier] = ACTIONS(4308), - [anon_sym_abstract] = ACTIONS(4308), - [anon_sym_final] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4308), - [anon_sym_vararg] = ACTIONS(4308), - [anon_sym_noinline] = ACTIONS(4308), - [anon_sym_crossinline] = ACTIONS(4308), - [anon_sym_expect] = ACTIONS(4308), - [anon_sym_actual] = ACTIONS(4308), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4310), - [anon_sym_continue_AT] = ACTIONS(4310), - [anon_sym_break_AT] = ACTIONS(4310), - [sym_real_literal] = ACTIONS(4310), - [sym_integer_literal] = ACTIONS(4308), - [sym_hex_literal] = ACTIONS(4310), - [sym_bin_literal] = ACTIONS(4310), - [anon_sym_true] = ACTIONS(4308), - [anon_sym_false] = ACTIONS(4308), - [anon_sym_SQUOTE] = ACTIONS(4310), - [sym__backtick_identifier] = ACTIONS(4310), - [sym__automatic_semicolon] = ACTIONS(4310), - [sym_safe_nav] = ACTIONS(4310), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4310), - }, - [866] = { - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [867] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [868] = { - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), - }, - [869] = { - [sym__alpha_identifier] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4314), - [anon_sym_EQ] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_object] = ACTIONS(4314), - [anon_sym_fun] = ACTIONS(4314), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_get] = ACTIONS(4314), - [anon_sym_set] = ACTIONS(4314), - [anon_sym_this] = ACTIONS(4314), - [anon_sym_super] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [sym__quest] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4314), - [sym_label] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_QMARK_COLON] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_else] = ACTIONS(4314), - [anon_sym_when] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_continue] = ACTIONS(4314), - [anon_sym_break] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_PLUS_EQ] = ACTIONS(4316), - [anon_sym_DASH_EQ] = ACTIONS(4316), - [anon_sym_STAR_EQ] = ACTIONS(4316), - [anon_sym_SLASH_EQ] = ACTIONS(4316), - [anon_sym_PERCENT_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_BANGin] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4314), - [anon_sym_BANGis] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4314), - [anon_sym_as_QMARK] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_BANG_BANG] = ACTIONS(4316), - [anon_sym_suspend] = ACTIONS(4314), - [anon_sym_sealed] = ACTIONS(4314), - [anon_sym_annotation] = ACTIONS(4314), - [anon_sym_data] = ACTIONS(4314), - [anon_sym_inner] = ACTIONS(4314), - [anon_sym_value] = ACTIONS(4314), - [anon_sym_override] = ACTIONS(4314), - [anon_sym_lateinit] = ACTIONS(4314), - [anon_sym_public] = ACTIONS(4314), - [anon_sym_private] = ACTIONS(4314), - [anon_sym_internal] = ACTIONS(4314), - [anon_sym_protected] = ACTIONS(4314), - [anon_sym_tailrec] = ACTIONS(4314), - [anon_sym_operator] = ACTIONS(4314), - [anon_sym_infix] = ACTIONS(4314), - [anon_sym_inline] = ACTIONS(4314), - [anon_sym_external] = ACTIONS(4314), - [sym_property_modifier] = ACTIONS(4314), - [anon_sym_abstract] = ACTIONS(4314), - [anon_sym_final] = ACTIONS(4314), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_vararg] = ACTIONS(4314), - [anon_sym_noinline] = ACTIONS(4314), - [anon_sym_crossinline] = ACTIONS(4314), - [anon_sym_expect] = ACTIONS(4314), - [anon_sym_actual] = ACTIONS(4314), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4316), - [anon_sym_continue_AT] = ACTIONS(4316), - [anon_sym_break_AT] = ACTIONS(4316), - [sym_real_literal] = ACTIONS(4316), - [sym_integer_literal] = ACTIONS(4314), - [sym_hex_literal] = ACTIONS(4316), - [sym_bin_literal] = ACTIONS(4316), - [anon_sym_true] = ACTIONS(4314), - [anon_sym_false] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4316), - [sym__backtick_identifier] = ACTIONS(4316), - [sym__automatic_semicolon] = ACTIONS(4316), - [sym_safe_nav] = ACTIONS(4316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4316), - }, - [870] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4328), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4324), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [871] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4332), - [anon_sym_get] = ACTIONS(4334), - [anon_sym_set] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [872] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_get] = ACTIONS(4334), - [anon_sym_set] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [873] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4340), - [anon_sym_get] = ACTIONS(4334), - [anon_sym_set] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [874] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4334), - [anon_sym_set] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [863] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, - [875] = { - [sym_class_body] = STATE(1157), - [sym_type_constraints] = STATE(997), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), + [864] = { + [aux_sym_type_constraints_repeat1] = STATE(885), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_object] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_this] = ACTIONS(4339), + [anon_sym_super] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [sym_label] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_QMARK_COLON] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_PLUS_EQ] = ACTIONS(4341), + [anon_sym_DASH_EQ] = ACTIONS(4341), + [anon_sym_STAR_EQ] = ACTIONS(4341), + [anon_sym_SLASH_EQ] = ACTIONS(4341), + [anon_sym_PERCENT_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_BANG_BANG] = ACTIONS(4341), + [anon_sym_suspend] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_annotation] = ACTIONS(4339), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_lateinit] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_tailrec] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_infix] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym_external] = ACTIONS(4339), + [sym_property_modifier] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_final] = ACTIONS(4339), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_vararg] = ACTIONS(4339), + [anon_sym_noinline] = ACTIONS(4339), + [anon_sym_crossinline] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4341), + [anon_sym_continue_AT] = ACTIONS(4341), + [anon_sym_break_AT] = ACTIONS(4341), + [anon_sym_this_AT] = ACTIONS(4341), + [anon_sym_super_AT] = ACTIONS(4341), + [sym_real_literal] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(4339), + [sym_hex_literal] = ACTIONS(4341), + [sym_bin_literal] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_safe_nav] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4341), }, - [876] = { - [sym__alpha_identifier] = ACTIONS(4346), - [anon_sym_AT] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_as] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(4346), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4346), - [anon_sym_GT] = ACTIONS(4346), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_object] = ACTIONS(4346), - [anon_sym_fun] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(4346), - [anon_sym_SEMI] = ACTIONS(4348), - [anon_sym_get] = ACTIONS(4346), - [anon_sym_set] = ACTIONS(4346), - [anon_sym_this] = ACTIONS(4346), - [anon_sym_super] = ACTIONS(4346), - [sym__quest] = ACTIONS(4346), - [anon_sym_STAR] = ACTIONS(4346), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_QMARK_COLON] = ACTIONS(4348), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_null] = ACTIONS(4346), - [anon_sym_if] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4346), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_try] = ACTIONS(4346), - [anon_sym_throw] = ACTIONS(4346), - [anon_sym_return] = ACTIONS(4346), - [anon_sym_continue] = ACTIONS(4346), - [anon_sym_break] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(4348), - [anon_sym_PLUS_EQ] = ACTIONS(4348), - [anon_sym_DASH_EQ] = ACTIONS(4348), - [anon_sym_STAR_EQ] = ACTIONS(4348), - [anon_sym_SLASH_EQ] = ACTIONS(4348), - [anon_sym_PERCENT_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4348), - [anon_sym_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_BANGin] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4346), - [anon_sym_BANGis] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4346), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_SLASH] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_as_QMARK] = ACTIONS(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_BANG] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4348), - [anon_sym_suspend] = ACTIONS(4346), - [anon_sym_sealed] = ACTIONS(4346), - [anon_sym_annotation] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4346), - [anon_sym_inner] = ACTIONS(4346), - [anon_sym_value] = ACTIONS(4346), - [anon_sym_override] = ACTIONS(4346), - [anon_sym_lateinit] = ACTIONS(4346), - [anon_sym_public] = ACTIONS(4346), - [anon_sym_private] = ACTIONS(4346), - [anon_sym_internal] = ACTIONS(4346), - [anon_sym_protected] = ACTIONS(4346), - [anon_sym_tailrec] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(4346), - [anon_sym_infix] = ACTIONS(4346), - [anon_sym_inline] = ACTIONS(4346), - [anon_sym_external] = ACTIONS(4346), - [sym_property_modifier] = ACTIONS(4346), - [anon_sym_abstract] = ACTIONS(4346), - [anon_sym_final] = ACTIONS(4346), - [anon_sym_open] = ACTIONS(4346), - [anon_sym_vararg] = ACTIONS(4346), - [anon_sym_noinline] = ACTIONS(4346), - [anon_sym_crossinline] = ACTIONS(4346), - [anon_sym_expect] = ACTIONS(4346), - [anon_sym_actual] = ACTIONS(4346), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4348), - [anon_sym_continue_AT] = ACTIONS(4348), - [anon_sym_break_AT] = ACTIONS(4348), - [sym_real_literal] = ACTIONS(4348), - [sym_integer_literal] = ACTIONS(4346), - [sym_hex_literal] = ACTIONS(4348), - [sym_bin_literal] = ACTIONS(4348), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_SQUOTE] = ACTIONS(4348), - [sym__backtick_identifier] = ACTIONS(4348), - [sym__automatic_semicolon] = ACTIONS(4348), - [sym_safe_nav] = ACTIONS(4348), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4348), + [865] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_object] = ACTIONS(4345), + [anon_sym_fun] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_this] = ACTIONS(4345), + [anon_sym_super] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_if] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_when] = ACTIONS(4345), + [anon_sym_try] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_throw] = ACTIONS(4345), + [anon_sym_return] = ACTIONS(4345), + [anon_sym_continue] = ACTIONS(4345), + [anon_sym_break] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4345), + [anon_sym_sealed] = ACTIONS(4345), + [anon_sym_annotation] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_override] = ACTIONS(4345), + [anon_sym_lateinit] = ACTIONS(4345), + [anon_sym_public] = ACTIONS(4345), + [anon_sym_private] = ACTIONS(4345), + [anon_sym_internal] = ACTIONS(4345), + [anon_sym_protected] = ACTIONS(4345), + [anon_sym_tailrec] = ACTIONS(4345), + [anon_sym_operator] = ACTIONS(4345), + [anon_sym_infix] = ACTIONS(4345), + [anon_sym_inline] = ACTIONS(4345), + [anon_sym_external] = ACTIONS(4345), + [sym_property_modifier] = ACTIONS(4345), + [anon_sym_abstract] = ACTIONS(4345), + [anon_sym_final] = ACTIONS(4345), + [anon_sym_open] = ACTIONS(4345), + [anon_sym_vararg] = ACTIONS(4345), + [anon_sym_noinline] = ACTIONS(4345), + [anon_sym_crossinline] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4347), + [anon_sym_continue_AT] = ACTIONS(4347), + [anon_sym_break_AT] = ACTIONS(4347), + [anon_sym_this_AT] = ACTIONS(4347), + [anon_sym_super_AT] = ACTIONS(4347), + [sym_real_literal] = ACTIONS(4347), + [sym_integer_literal] = ACTIONS(4345), + [sym_hex_literal] = ACTIONS(4347), + [sym_bin_literal] = ACTIONS(4347), + [anon_sym_true] = ACTIONS(4345), + [anon_sym_false] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4347), + [sym__automatic_semicolon] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4347), }, - [877] = { - [sym_type_constraints] = STATE(1098), - [sym_function_body] = STATE(1113), - [sym__block] = STATE(1204), + [866] = { [sym__alpha_identifier] = ACTIONS(4122), [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4352), + [anon_sym_COLON] = ACTIONS(4126), [anon_sym_LBRACK] = ACTIONS(4124), [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), + [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(3178), + [anon_sym_where] = ACTIONS(4122), [anon_sym_object] = ACTIONS(4122), [anon_sym_fun] = ACTIONS(4122), [anon_sym_DOT] = ACTIONS(4122), @@ -148444,6 +150416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -148457,195 +150431,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4124), }, - [878] = { - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [867] = { + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, - [879] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4354), - [anon_sym_get] = ACTIONS(4334), - [anon_sym_set] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [868] = { + [sym_class_body] = STATE(1172), + [sym_type_constraints] = STATE(955), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [869] = { + [sym_class_body] = STATE(1140), + [sym_type_constraints] = STATE(966), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [870] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -148664,95 +150855,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [880] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4356), - [anon_sym_get] = ACTIONS(4334), - [anon_sym_set] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [871] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [872] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -148771,307 +151071,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [881] = { - [sym_class_body] = STATE(1206), - [sym_type_constraints] = STATE(947), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [882] = { - [sym__alpha_identifier] = ACTIONS(4358), - [anon_sym_AT] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4360), - [anon_sym_RBRACK] = ACTIONS(4360), - [anon_sym_as] = ACTIONS(4358), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4360), - [anon_sym_RBRACE] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_RPAREN] = ACTIONS(4360), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_GT] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_object] = ACTIONS(4358), - [anon_sym_fun] = ACTIONS(4358), - [anon_sym_DOT] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_get] = ACTIONS(4358), - [anon_sym_set] = ACTIONS(4358), - [anon_sym_this] = ACTIONS(4358), - [anon_sym_super] = ACTIONS(4358), - [anon_sym_STAR] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4360), - [sym_label] = ACTIONS(4358), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_while] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4360), - [anon_sym_AMP_AMP] = ACTIONS(4360), - [anon_sym_PIPE_PIPE] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_else] = ACTIONS(4358), - [anon_sym_when] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_throw] = ACTIONS(4358), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_continue] = ACTIONS(4358), - [anon_sym_break] = ACTIONS(4358), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PLUS_EQ] = ACTIONS(4360), - [anon_sym_DASH_EQ] = ACTIONS(4360), - [anon_sym_STAR_EQ] = ACTIONS(4360), - [anon_sym_SLASH_EQ] = ACTIONS(4360), - [anon_sym_PERCENT_EQ] = ACTIONS(4360), - [anon_sym_BANG_EQ] = ACTIONS(4358), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4360), - [anon_sym_EQ_EQ] = ACTIONS(4358), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4360), - [anon_sym_LT_EQ] = ACTIONS(4360), - [anon_sym_GT_EQ] = ACTIONS(4360), - [anon_sym_BANGin] = ACTIONS(4360), - [anon_sym_is] = ACTIONS(4358), - [anon_sym_BANGis] = ACTIONS(4360), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_SLASH] = ACTIONS(4358), - [anon_sym_PERCENT] = ACTIONS(4358), - [anon_sym_as_QMARK] = ACTIONS(4360), - [anon_sym_PLUS_PLUS] = ACTIONS(4360), - [anon_sym_DASH_DASH] = ACTIONS(4360), - [anon_sym_BANG] = ACTIONS(4358), - [anon_sym_BANG_BANG] = ACTIONS(4360), - [anon_sym_suspend] = ACTIONS(4358), - [anon_sym_sealed] = ACTIONS(4358), - [anon_sym_annotation] = ACTIONS(4358), - [anon_sym_data] = ACTIONS(4358), - [anon_sym_inner] = ACTIONS(4358), - [anon_sym_value] = ACTIONS(4358), - [anon_sym_override] = ACTIONS(4358), - [anon_sym_lateinit] = ACTIONS(4358), - [anon_sym_public] = ACTIONS(4358), - [anon_sym_private] = ACTIONS(4358), - [anon_sym_internal] = ACTIONS(4358), - [anon_sym_protected] = ACTIONS(4358), - [anon_sym_tailrec] = ACTIONS(4358), - [anon_sym_operator] = ACTIONS(4358), - [anon_sym_infix] = ACTIONS(4358), - [anon_sym_inline] = ACTIONS(4358), - [anon_sym_external] = ACTIONS(4358), - [sym_property_modifier] = ACTIONS(4358), - [anon_sym_abstract] = ACTIONS(4358), - [anon_sym_final] = ACTIONS(4358), - [anon_sym_open] = ACTIONS(4358), - [anon_sym_vararg] = ACTIONS(4358), - [anon_sym_noinline] = ACTIONS(4358), - [anon_sym_crossinline] = ACTIONS(4358), - [anon_sym_expect] = ACTIONS(4358), - [anon_sym_actual] = ACTIONS(4358), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4360), - [anon_sym_continue_AT] = ACTIONS(4360), - [anon_sym_break_AT] = ACTIONS(4360), - [sym_real_literal] = ACTIONS(4360), - [sym_integer_literal] = ACTIONS(4358), - [sym_hex_literal] = ACTIONS(4360), - [sym_bin_literal] = ACTIONS(4360), - [anon_sym_true] = ACTIONS(4358), - [anon_sym_false] = ACTIONS(4358), - [anon_sym_SQUOTE] = ACTIONS(4360), - [sym__backtick_identifier] = ACTIONS(4360), - [sym_safe_nav] = ACTIONS(4360), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4360), + [873] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [883] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), + [874] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4364), - [anon_sym_get] = ACTIONS(4366), - [anon_sym_set] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -149090,306 +151287,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [884] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_catch] = ACTIONS(4394), - [anon_sym_finally] = 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), - [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), - }, - [885] = { - [aux_sym_type_constraints_repeat1] = STATE(887), - [sym__alpha_identifier] = ACTIONS(4398), - [anon_sym_AT] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [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(4402), - [anon_sym_by] = ACTIONS(4398), - [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_DOT] = 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_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), - [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), + [875] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [886] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4404), - [anon_sym_get] = ACTIONS(4406), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [876] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -149408,200 +151503,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [887] = { - [aux_sym_type_constraints_repeat1] = STATE(887), - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(4414), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_object] = ACTIONS(4410), - [anon_sym_fun] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_this] = ACTIONS(4410), - [anon_sym_super] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_throw] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4412), - [anon_sym_continue_AT] = ACTIONS(4412), - [anon_sym_break_AT] = ACTIONS(4412), - [sym_real_literal] = ACTIONS(4412), - [sym_integer_literal] = ACTIONS(4410), - [sym_hex_literal] = ACTIONS(4412), - [sym_bin_literal] = ACTIONS(4412), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [anon_sym_SQUOTE] = ACTIONS(4412), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4412), + [877] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [888] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4406), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [878] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -149620,94 +151719,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [889] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4419), - [anon_sym_get] = ACTIONS(4406), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [879] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -149726,94 +151827,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [890] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4406), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [880] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -149832,1472 +151935,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [891] = { - [sym_type_constraints] = STATE(1116), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [892] = { - [sym_class_body] = STATE(1088), - [sym_type_constraints] = STATE(962), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [893] = { - [sym_type_constraints] = STATE(1040), - [sym_enum_class_body] = STATE(1054), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3182), - [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(3178), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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), - }, - [894] = { - [sym_class_body] = STATE(1153), - [sym_type_constraints] = STATE(972), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(4427), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), - }, - [895] = { - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [896] = { - [sym_type_constraints] = STATE(992), - [sym_enum_class_body] = STATE(1139), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4429), - [anon_sym_fun] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_this] = ACTIONS(4429), - [anon_sym_super] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_when] = ACTIONS(4429), - [anon_sym_try] = ACTIONS(4429), - [anon_sym_throw] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4431), - [anon_sym_continue_AT] = ACTIONS(4431), - [anon_sym_break_AT] = ACTIONS(4431), - [sym_real_literal] = ACTIONS(4431), - [sym_integer_literal] = ACTIONS(4429), - [sym_hex_literal] = ACTIONS(4431), - [sym_bin_literal] = ACTIONS(4431), - [anon_sym_true] = ACTIONS(4429), - [anon_sym_false] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4431), - }, - [897] = { - [sym_class_body] = STATE(1206), - [sym_type_constraints] = STATE(947), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [898] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [899] = { - [aux_sym_type_constraints_repeat1] = STATE(885), - [sym__alpha_identifier] = ACTIONS(4433), - [anon_sym_AT] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_as] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_by] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_where] = ACTIONS(4433), - [anon_sym_object] = ACTIONS(4433), - [anon_sym_fun] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4433), - [anon_sym_SEMI] = ACTIONS(4435), - [anon_sym_get] = ACTIONS(4433), - [anon_sym_set] = ACTIONS(4433), - [anon_sym_this] = ACTIONS(4433), - [anon_sym_super] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4433), - [anon_sym_DOT_DOT] = ACTIONS(4435), - [anon_sym_QMARK_COLON] = ACTIONS(4435), - [anon_sym_AMP_AMP] = ACTIONS(4435), - [anon_sym_PIPE_PIPE] = ACTIONS(4435), - [anon_sym_null] = ACTIONS(4433), - [anon_sym_if] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4433), - [anon_sym_when] = ACTIONS(4433), - [anon_sym_try] = ACTIONS(4433), - [anon_sym_throw] = ACTIONS(4433), - [anon_sym_return] = ACTIONS(4433), - [anon_sym_continue] = ACTIONS(4433), - [anon_sym_break] = ACTIONS(4433), - [anon_sym_COLON_COLON] = ACTIONS(4435), - [anon_sym_PLUS_EQ] = ACTIONS(4435), - [anon_sym_DASH_EQ] = ACTIONS(4435), - [anon_sym_STAR_EQ] = ACTIONS(4435), - [anon_sym_SLASH_EQ] = ACTIONS(4435), - [anon_sym_PERCENT_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), - [anon_sym_LT_EQ] = ACTIONS(4435), - [anon_sym_GT_EQ] = ACTIONS(4435), - [anon_sym_BANGin] = ACTIONS(4435), - [anon_sym_is] = ACTIONS(4433), - [anon_sym_BANGis] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_PERCENT] = ACTIONS(4433), - [anon_sym_as_QMARK] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_BANG_BANG] = ACTIONS(4435), - [anon_sym_suspend] = ACTIONS(4433), - [anon_sym_sealed] = ACTIONS(4433), - [anon_sym_annotation] = ACTIONS(4433), - [anon_sym_data] = ACTIONS(4433), - [anon_sym_inner] = ACTIONS(4433), - [anon_sym_value] = ACTIONS(4433), - [anon_sym_override] = ACTIONS(4433), - [anon_sym_lateinit] = ACTIONS(4433), - [anon_sym_public] = ACTIONS(4433), - [anon_sym_private] = ACTIONS(4433), - [anon_sym_internal] = ACTIONS(4433), - [anon_sym_protected] = ACTIONS(4433), - [anon_sym_tailrec] = ACTIONS(4433), - [anon_sym_operator] = ACTIONS(4433), - [anon_sym_infix] = ACTIONS(4433), - [anon_sym_inline] = ACTIONS(4433), - [anon_sym_external] = ACTIONS(4433), - [sym_property_modifier] = ACTIONS(4433), - [anon_sym_abstract] = ACTIONS(4433), - [anon_sym_final] = ACTIONS(4433), - [anon_sym_open] = ACTIONS(4433), - [anon_sym_vararg] = ACTIONS(4433), - [anon_sym_noinline] = ACTIONS(4433), - [anon_sym_crossinline] = ACTIONS(4433), - [anon_sym_expect] = ACTIONS(4433), - [anon_sym_actual] = ACTIONS(4433), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4435), - [anon_sym_continue_AT] = ACTIONS(4435), - [anon_sym_break_AT] = ACTIONS(4435), - [sym_real_literal] = ACTIONS(4435), - [sym_integer_literal] = ACTIONS(4433), - [sym_hex_literal] = ACTIONS(4435), - [sym_bin_literal] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4433), - [anon_sym_false] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4435), - [sym__backtick_identifier] = ACTIONS(4435), - [sym__automatic_semicolon] = ACTIONS(4435), - [sym_safe_nav] = ACTIONS(4435), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4435), - }, - [900] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [901] = { - [aux_sym_user_type_repeat1] = STATE(791), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(4439), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [sym_label] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), - }, - [902] = { - [sym_class_body] = STATE(1097), - [sym_type_constraints] = STATE(1044), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3174), - [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(3178), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), - }, - [903] = { - [sym_class_body] = STATE(1157), - [sym_type_constraints] = STATE(997), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [904] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(4406), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [881] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -151316,1366 +152043,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [905] = { - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [906] = { - [sym_type_constraints] = STATE(1043), - [sym_enum_class_body] = STATE(1066), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), - }, - [907] = { - [sym_value_arguments] = STATE(1209), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4456), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), - }, - [908] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_object] = ACTIONS(4458), - [anon_sym_fun] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_this] = ACTIONS(4458), - [anon_sym_super] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [sym_label] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_null] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_when] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_value] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4460), - [anon_sym_continue_AT] = ACTIONS(4460), - [anon_sym_break_AT] = ACTIONS(4460), - [sym_real_literal] = ACTIONS(4460), - [sym_integer_literal] = ACTIONS(4458), - [sym_hex_literal] = ACTIONS(4460), - [sym_bin_literal] = ACTIONS(4460), - [aux_sym_unsigned_literal_token1] = ACTIONS(4462), - [anon_sym_L] = ACTIONS(4464), - [anon_sym_true] = ACTIONS(4458), - [anon_sym_false] = ACTIONS(4458), - [anon_sym_SQUOTE] = ACTIONS(4460), - [sym__backtick_identifier] = ACTIONS(4460), - [sym__automatic_semicolon] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4460), - }, - [909] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), - }, - [910] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_when_condition] = STATE(9040), - [sym_range_test] = STATE(9267), - [sym_type_test] = STATE(9267), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__in_operator] = STATE(2033), - [sym__is_operator] = STATE(6012), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3832), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_BANGin] = ACTIONS(3836), - [anon_sym_is] = ACTIONS(3838), - [anon_sym_BANGis] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [911] = { - [sym_type_constraints] = STATE(1083), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [912] = { - [sym_function_body] = STATE(1089), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), - }, - [913] = { - [sym_type_constraints] = STATE(1022), - [sym_enum_class_body] = STATE(1086), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4474), - [anon_sym_fun] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_this] = ACTIONS(4474), - [anon_sym_super] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4474), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_when] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_throw] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4476), - [anon_sym_continue_AT] = ACTIONS(4476), - [anon_sym_break_AT] = ACTIONS(4476), - [sym_real_literal] = ACTIONS(4476), - [sym_integer_literal] = ACTIONS(4474), - [sym_hex_literal] = ACTIONS(4476), - [sym_bin_literal] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4476), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4476), - }, - [914] = { - [sym__alpha_identifier] = ACTIONS(4478), - [anon_sym_AT] = ACTIONS(4480), - [anon_sym_COLON] = ACTIONS(4478), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_as] = ACTIONS(4478), - [anon_sym_EQ] = ACTIONS(4478), - [anon_sym_constructor] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(4480), - [anon_sym_RBRACE] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4480), - [anon_sym_COMMA] = ACTIONS(4480), - [anon_sym_LT] = ACTIONS(4478), - [anon_sym_GT] = ACTIONS(4478), - [anon_sym_where] = ACTIONS(4478), - [anon_sym_object] = ACTIONS(4478), - [anon_sym_fun] = ACTIONS(4478), - [anon_sym_DOT] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(4480), - [anon_sym_get] = ACTIONS(4478), - [anon_sym_set] = ACTIONS(4478), - [anon_sym_this] = ACTIONS(4478), - [anon_sym_super] = ACTIONS(4478), - [anon_sym_STAR] = ACTIONS(4478), - [sym_label] = ACTIONS(4478), - [anon_sym_in] = ACTIONS(4478), - [anon_sym_DOT_DOT] = ACTIONS(4480), - [anon_sym_QMARK_COLON] = ACTIONS(4480), - [anon_sym_AMP_AMP] = ACTIONS(4480), - [anon_sym_PIPE_PIPE] = ACTIONS(4480), - [anon_sym_null] = ACTIONS(4478), - [anon_sym_if] = ACTIONS(4478), - [anon_sym_else] = ACTIONS(4478), - [anon_sym_when] = ACTIONS(4478), - [anon_sym_try] = ACTIONS(4478), - [anon_sym_throw] = ACTIONS(4478), - [anon_sym_return] = ACTIONS(4478), - [anon_sym_continue] = ACTIONS(4478), - [anon_sym_break] = ACTIONS(4478), - [anon_sym_COLON_COLON] = ACTIONS(4480), - [anon_sym_PLUS_EQ] = ACTIONS(4480), - [anon_sym_DASH_EQ] = ACTIONS(4480), - [anon_sym_STAR_EQ] = ACTIONS(4480), - [anon_sym_SLASH_EQ] = ACTIONS(4480), - [anon_sym_PERCENT_EQ] = ACTIONS(4480), - [anon_sym_BANG_EQ] = ACTIONS(4478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4480), - [anon_sym_EQ_EQ] = ACTIONS(4478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4480), - [anon_sym_LT_EQ] = ACTIONS(4480), - [anon_sym_GT_EQ] = ACTIONS(4480), - [anon_sym_BANGin] = ACTIONS(4480), - [anon_sym_is] = ACTIONS(4478), - [anon_sym_BANGis] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_as_QMARK] = ACTIONS(4480), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_BANG] = ACTIONS(4478), - [anon_sym_BANG_BANG] = ACTIONS(4480), - [anon_sym_suspend] = ACTIONS(4478), - [anon_sym_sealed] = ACTIONS(4478), - [anon_sym_annotation] = ACTIONS(4478), - [anon_sym_data] = ACTIONS(4478), - [anon_sym_inner] = ACTIONS(4478), - [anon_sym_value] = ACTIONS(4478), - [anon_sym_override] = ACTIONS(4478), - [anon_sym_lateinit] = ACTIONS(4478), - [anon_sym_public] = ACTIONS(4478), - [anon_sym_private] = ACTIONS(4478), - [anon_sym_internal] = ACTIONS(4478), - [anon_sym_protected] = ACTIONS(4478), - [anon_sym_tailrec] = ACTIONS(4478), - [anon_sym_operator] = ACTIONS(4478), - [anon_sym_infix] = ACTIONS(4478), - [anon_sym_inline] = ACTIONS(4478), - [anon_sym_external] = ACTIONS(4478), - [sym_property_modifier] = ACTIONS(4478), - [anon_sym_abstract] = ACTIONS(4478), - [anon_sym_final] = ACTIONS(4478), - [anon_sym_open] = ACTIONS(4478), - [anon_sym_vararg] = ACTIONS(4478), - [anon_sym_noinline] = ACTIONS(4478), - [anon_sym_crossinline] = ACTIONS(4478), - [anon_sym_expect] = ACTIONS(4478), - [anon_sym_actual] = ACTIONS(4478), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4480), - [anon_sym_continue_AT] = ACTIONS(4480), - [anon_sym_break_AT] = ACTIONS(4480), - [sym_real_literal] = ACTIONS(4480), - [sym_integer_literal] = ACTIONS(4478), - [sym_hex_literal] = ACTIONS(4480), - [sym_bin_literal] = ACTIONS(4480), - [anon_sym_true] = ACTIONS(4478), - [anon_sym_false] = ACTIONS(4478), - [anon_sym_SQUOTE] = ACTIONS(4480), - [sym__backtick_identifier] = ACTIONS(4480), - [sym__automatic_semicolon] = ACTIONS(4480), - [sym_safe_nav] = ACTIONS(4480), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4480), - }, - [915] = { - [sym__alpha_identifier] = ACTIONS(4482), - [anon_sym_AT] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_EQ] = ACTIONS(4482), - [anon_sym_constructor] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_object] = ACTIONS(4482), - [anon_sym_fun] = ACTIONS(4482), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_SEMI] = ACTIONS(4484), - [anon_sym_get] = ACTIONS(4482), - [anon_sym_set] = ACTIONS(4482), - [anon_sym_this] = ACTIONS(4482), - [anon_sym_super] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4482), - [sym_label] = ACTIONS(4482), - [anon_sym_in] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_QMARK_COLON] = ACTIONS(4484), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [anon_sym_null] = ACTIONS(4482), - [anon_sym_if] = ACTIONS(4482), - [anon_sym_else] = ACTIONS(4482), - [anon_sym_when] = ACTIONS(4482), - [anon_sym_try] = ACTIONS(4482), - [anon_sym_throw] = ACTIONS(4482), - [anon_sym_return] = ACTIONS(4482), - [anon_sym_continue] = ACTIONS(4482), - [anon_sym_break] = ACTIONS(4482), - [anon_sym_COLON_COLON] = ACTIONS(4484), - [anon_sym_PLUS_EQ] = ACTIONS(4484), - [anon_sym_DASH_EQ] = ACTIONS(4484), - [anon_sym_STAR_EQ] = ACTIONS(4484), - [anon_sym_SLASH_EQ] = ACTIONS(4484), - [anon_sym_PERCENT_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_BANGin] = ACTIONS(4484), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_BANGis] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4482), - [anon_sym_as_QMARK] = ACTIONS(4484), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_BANG_BANG] = ACTIONS(4484), - [anon_sym_suspend] = ACTIONS(4482), - [anon_sym_sealed] = ACTIONS(4482), - [anon_sym_annotation] = ACTIONS(4482), - [anon_sym_data] = ACTIONS(4482), - [anon_sym_inner] = ACTIONS(4482), - [anon_sym_value] = ACTIONS(4482), - [anon_sym_override] = ACTIONS(4482), - [anon_sym_lateinit] = ACTIONS(4482), - [anon_sym_public] = ACTIONS(4482), - [anon_sym_private] = ACTIONS(4482), - [anon_sym_internal] = ACTIONS(4482), - [anon_sym_protected] = ACTIONS(4482), - [anon_sym_tailrec] = ACTIONS(4482), - [anon_sym_operator] = ACTIONS(4482), - [anon_sym_infix] = ACTIONS(4482), - [anon_sym_inline] = ACTIONS(4482), - [anon_sym_external] = ACTIONS(4482), - [sym_property_modifier] = ACTIONS(4482), - [anon_sym_abstract] = ACTIONS(4482), - [anon_sym_final] = ACTIONS(4482), - [anon_sym_open] = ACTIONS(4482), - [anon_sym_vararg] = ACTIONS(4482), - [anon_sym_noinline] = ACTIONS(4482), - [anon_sym_crossinline] = ACTIONS(4482), - [anon_sym_expect] = ACTIONS(4482), - [anon_sym_actual] = ACTIONS(4482), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4484), - [anon_sym_continue_AT] = ACTIONS(4484), - [anon_sym_break_AT] = ACTIONS(4484), - [sym_real_literal] = ACTIONS(4484), - [sym_integer_literal] = ACTIONS(4482), - [sym_hex_literal] = ACTIONS(4484), - [sym_bin_literal] = ACTIONS(4484), - [anon_sym_true] = ACTIONS(4482), - [anon_sym_false] = ACTIONS(4482), - [anon_sym_SQUOTE] = ACTIONS(4484), - [sym__backtick_identifier] = ACTIONS(4484), - [sym__automatic_semicolon] = ACTIONS(4484), - [sym_safe_nav] = ACTIONS(4484), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4484), - }, - [916] = { - [sym_class_body] = STATE(1153), - [sym_type_constraints] = STATE(972), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), - }, - [917] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4486), - [anon_sym_get] = ACTIONS(4366), - [anon_sym_set] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [882] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -152694,94 +152151,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(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [918] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4488), - [anon_sym_get] = ACTIONS(4406), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [883] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(4367), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -152800,29 +152259,1973 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [919] = { + [884] = { + [aux_sym_user_type_repeat1] = STATE(816), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [885] = { + [aux_sym_type_constraints_repeat1] = STATE(891), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_object] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_this] = ACTIONS(4424), + [anon_sym_super] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [sym_label] = ACTIONS(4424), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_when] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_throw] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4426), + [anon_sym_continue_AT] = ACTIONS(4426), + [anon_sym_break_AT] = ACTIONS(4426), + [anon_sym_this_AT] = ACTIONS(4426), + [anon_sym_super_AT] = ACTIONS(4426), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4426), + }, + [886] = { + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [887] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [888] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [889] = { + [sym_type_constraints] = STATE(1093), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [890] = { + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [891] = { + [aux_sym_type_constraints_repeat1] = STATE(891), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4434), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), + }, + [892] = { + [sym_type_constraints] = STATE(1095), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [893] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [894] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [895] = { + [sym_type_constraints] = STATE(1096), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [896] = { + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [897] = { + [sym_type_constraints] = STATE(1100), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [898] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [899] = { + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [900] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [901] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [902] = { + [sym_type_constraints] = STATE(1102), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4147), [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(4151), [anon_sym_LBRACK] = ACTIONS(4149), [anon_sym_as] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), [anon_sym_RBRACE] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_COMMA] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), [anon_sym_LT] = ACTIONS(4147), [anon_sym_GT] = ACTIONS(4147), - [anon_sym_where] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), [anon_sym_object] = ACTIONS(4147), [anon_sym_fun] = ACTIONS(4147), [anon_sym_DOT] = ACTIONS(4147), @@ -152901,6 +154304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(4149), [anon_sym_continue_AT] = ACTIONS(4149), [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), [sym_real_literal] = ACTIONS(4149), [sym_integer_literal] = ACTIONS(4147), [sym_hex_literal] = ACTIONS(4149), @@ -152914,1464 +154319,2572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4149), }, - [920] = { - [sym_class_body] = STATE(1167), - [sym_type_constraints] = STATE(988), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4490), - [anon_sym_fun] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_this] = ACTIONS(4490), - [anon_sym_super] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4490), - [anon_sym_if] = ACTIONS(4490), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_when] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4490), - [anon_sym_throw] = ACTIONS(4490), - [anon_sym_return] = ACTIONS(4490), - [anon_sym_continue] = ACTIONS(4490), - [anon_sym_break] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4492), - [anon_sym_continue_AT] = ACTIONS(4492), - [anon_sym_break_AT] = ACTIONS(4492), - [sym_real_literal] = ACTIONS(4492), - [sym_integer_literal] = ACTIONS(4490), - [sym_hex_literal] = ACTIONS(4492), - [sym_bin_literal] = ACTIONS(4492), - [anon_sym_true] = ACTIONS(4490), - [anon_sym_false] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4492), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4492), - }, - [921] = { - [sym__alpha_identifier] = ACTIONS(4494), - [anon_sym_AT] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4496), - [anon_sym_as] = ACTIONS(4494), - [anon_sym_EQ] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(4496), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_COMMA] = ACTIONS(4496), - [anon_sym_LT] = ACTIONS(4494), - [anon_sym_GT] = ACTIONS(4494), - [anon_sym_where] = ACTIONS(4494), - [anon_sym_object] = ACTIONS(4494), - [anon_sym_fun] = ACTIONS(4494), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_SEMI] = ACTIONS(4496), - [anon_sym_get] = ACTIONS(4494), - [anon_sym_set] = ACTIONS(4494), - [anon_sym_this] = ACTIONS(4494), - [anon_sym_super] = ACTIONS(4494), - [anon_sym_STAR] = ACTIONS(4494), - [sym_label] = ACTIONS(4494), - [anon_sym_in] = ACTIONS(4494), - [anon_sym_DOT_DOT] = ACTIONS(4496), - [anon_sym_QMARK_COLON] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4496), - [anon_sym_PIPE_PIPE] = ACTIONS(4496), - [anon_sym_null] = ACTIONS(4494), - [anon_sym_if] = ACTIONS(4494), - [anon_sym_else] = ACTIONS(4494), - [anon_sym_when] = ACTIONS(4494), - [anon_sym_try] = ACTIONS(4494), - [anon_sym_catch] = ACTIONS(4494), - [anon_sym_finally] = ACTIONS(4494), - [anon_sym_throw] = ACTIONS(4494), - [anon_sym_return] = ACTIONS(4494), - [anon_sym_continue] = ACTIONS(4494), - [anon_sym_break] = ACTIONS(4494), - [anon_sym_COLON_COLON] = ACTIONS(4496), - [anon_sym_PLUS_EQ] = ACTIONS(4496), - [anon_sym_DASH_EQ] = ACTIONS(4496), - [anon_sym_STAR_EQ] = ACTIONS(4496), - [anon_sym_SLASH_EQ] = ACTIONS(4496), - [anon_sym_PERCENT_EQ] = ACTIONS(4496), - [anon_sym_BANG_EQ] = ACTIONS(4494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), - [anon_sym_EQ_EQ] = ACTIONS(4494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), - [anon_sym_LT_EQ] = ACTIONS(4496), - [anon_sym_GT_EQ] = ACTIONS(4496), - [anon_sym_BANGin] = ACTIONS(4496), - [anon_sym_is] = ACTIONS(4494), - [anon_sym_BANGis] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4494), - [anon_sym_DASH] = ACTIONS(4494), - [anon_sym_SLASH] = ACTIONS(4494), - [anon_sym_PERCENT] = ACTIONS(4494), - [anon_sym_as_QMARK] = ACTIONS(4496), - [anon_sym_PLUS_PLUS] = ACTIONS(4496), - [anon_sym_DASH_DASH] = ACTIONS(4496), - [anon_sym_BANG] = ACTIONS(4494), - [anon_sym_BANG_BANG] = ACTIONS(4496), - [anon_sym_suspend] = ACTIONS(4494), - [anon_sym_sealed] = ACTIONS(4494), - [anon_sym_annotation] = ACTIONS(4494), - [anon_sym_data] = ACTIONS(4494), - [anon_sym_inner] = ACTIONS(4494), - [anon_sym_value] = ACTIONS(4494), - [anon_sym_override] = ACTIONS(4494), - [anon_sym_lateinit] = ACTIONS(4494), - [anon_sym_public] = ACTIONS(4494), - [anon_sym_private] = ACTIONS(4494), - [anon_sym_internal] = ACTIONS(4494), - [anon_sym_protected] = ACTIONS(4494), - [anon_sym_tailrec] = ACTIONS(4494), - [anon_sym_operator] = ACTIONS(4494), - [anon_sym_infix] = ACTIONS(4494), - [anon_sym_inline] = ACTIONS(4494), - [anon_sym_external] = ACTIONS(4494), - [sym_property_modifier] = ACTIONS(4494), - [anon_sym_abstract] = ACTIONS(4494), - [anon_sym_final] = ACTIONS(4494), - [anon_sym_open] = ACTIONS(4494), - [anon_sym_vararg] = ACTIONS(4494), - [anon_sym_noinline] = ACTIONS(4494), - [anon_sym_crossinline] = ACTIONS(4494), - [anon_sym_expect] = ACTIONS(4494), - [anon_sym_actual] = ACTIONS(4494), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4496), - [anon_sym_continue_AT] = ACTIONS(4496), - [anon_sym_break_AT] = ACTIONS(4496), - [sym_real_literal] = ACTIONS(4496), - [sym_integer_literal] = ACTIONS(4494), - [sym_hex_literal] = ACTIONS(4496), - [sym_bin_literal] = ACTIONS(4496), - [anon_sym_true] = ACTIONS(4494), - [anon_sym_false] = ACTIONS(4494), - [anon_sym_SQUOTE] = ACTIONS(4496), - [sym__backtick_identifier] = ACTIONS(4496), - [sym__automatic_semicolon] = ACTIONS(4496), - [sym_safe_nav] = ACTIONS(4496), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4496), - }, - [922] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_constructor] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [903] = { + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [923] = { - [sym_class_body] = STATE(1054), - [sym_type_constraints] = STATE(1028), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3174), - [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(3178), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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), + [904] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [924] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [905] = { + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [925] = { - [sym_type_constraints] = STATE(1043), - [sym_enum_class_body] = STATE(1066), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [906] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [aux_sym_unsigned_literal_token1] = ACTIONS(4459), + [anon_sym_L] = ACTIONS(4461), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, - [926] = { - [sym_type_constraints] = STATE(1023), - [sym_enum_class_body] = STATE(1097), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3182), - [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(3178), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), + [907] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, - [927] = { - [sym__alpha_identifier] = ACTIONS(4498), - [anon_sym_AT] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_as] = ACTIONS(4498), - [anon_sym_EQ] = ACTIONS(4498), - [anon_sym_LBRACE] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4500), - [anon_sym_LPAREN] = ACTIONS(4500), - [anon_sym_COMMA] = ACTIONS(4500), - [anon_sym_LT] = ACTIONS(4498), - [anon_sym_GT] = ACTIONS(4498), - [anon_sym_where] = ACTIONS(4498), - [anon_sym_object] = ACTIONS(4498), - [anon_sym_fun] = ACTIONS(4498), - [anon_sym_DOT] = ACTIONS(4498), - [anon_sym_SEMI] = ACTIONS(4500), - [anon_sym_get] = ACTIONS(4498), - [anon_sym_set] = ACTIONS(4498), - [anon_sym_this] = ACTIONS(4498), - [anon_sym_super] = ACTIONS(4498), - [anon_sym_STAR] = ACTIONS(4498), - [sym_label] = ACTIONS(4498), - [anon_sym_in] = ACTIONS(4498), - [anon_sym_DOT_DOT] = ACTIONS(4500), - [anon_sym_QMARK_COLON] = ACTIONS(4500), - [anon_sym_AMP_AMP] = ACTIONS(4500), - [anon_sym_PIPE_PIPE] = ACTIONS(4500), - [anon_sym_null] = ACTIONS(4498), - [anon_sym_if] = ACTIONS(4498), - [anon_sym_else] = ACTIONS(4498), - [anon_sym_when] = ACTIONS(4498), - [anon_sym_try] = ACTIONS(4498), - [anon_sym_catch] = ACTIONS(4498), - [anon_sym_finally] = ACTIONS(4498), - [anon_sym_throw] = ACTIONS(4498), - [anon_sym_return] = ACTIONS(4498), - [anon_sym_continue] = ACTIONS(4498), - [anon_sym_break] = ACTIONS(4498), - [anon_sym_COLON_COLON] = ACTIONS(4500), - [anon_sym_PLUS_EQ] = ACTIONS(4500), - [anon_sym_DASH_EQ] = ACTIONS(4500), - [anon_sym_STAR_EQ] = ACTIONS(4500), - [anon_sym_SLASH_EQ] = ACTIONS(4500), - [anon_sym_PERCENT_EQ] = ACTIONS(4500), - [anon_sym_BANG_EQ] = ACTIONS(4498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), - [anon_sym_EQ_EQ] = ACTIONS(4498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), - [anon_sym_LT_EQ] = ACTIONS(4500), - [anon_sym_GT_EQ] = ACTIONS(4500), - [anon_sym_BANGin] = ACTIONS(4500), - [anon_sym_is] = ACTIONS(4498), - [anon_sym_BANGis] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4498), - [anon_sym_SLASH] = ACTIONS(4498), - [anon_sym_PERCENT] = ACTIONS(4498), - [anon_sym_as_QMARK] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_BANG] = ACTIONS(4498), - [anon_sym_BANG_BANG] = ACTIONS(4500), - [anon_sym_suspend] = ACTIONS(4498), - [anon_sym_sealed] = ACTIONS(4498), - [anon_sym_annotation] = ACTIONS(4498), - [anon_sym_data] = ACTIONS(4498), - [anon_sym_inner] = ACTIONS(4498), - [anon_sym_value] = ACTIONS(4498), - [anon_sym_override] = ACTIONS(4498), - [anon_sym_lateinit] = ACTIONS(4498), - [anon_sym_public] = ACTIONS(4498), - [anon_sym_private] = ACTIONS(4498), - [anon_sym_internal] = ACTIONS(4498), - [anon_sym_protected] = ACTIONS(4498), - [anon_sym_tailrec] = ACTIONS(4498), - [anon_sym_operator] = ACTIONS(4498), - [anon_sym_infix] = ACTIONS(4498), - [anon_sym_inline] = ACTIONS(4498), - [anon_sym_external] = ACTIONS(4498), - [sym_property_modifier] = ACTIONS(4498), - [anon_sym_abstract] = ACTIONS(4498), - [anon_sym_final] = ACTIONS(4498), - [anon_sym_open] = ACTIONS(4498), - [anon_sym_vararg] = ACTIONS(4498), - [anon_sym_noinline] = ACTIONS(4498), - [anon_sym_crossinline] = ACTIONS(4498), - [anon_sym_expect] = ACTIONS(4498), - [anon_sym_actual] = ACTIONS(4498), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4500), - [anon_sym_continue_AT] = ACTIONS(4500), - [anon_sym_break_AT] = ACTIONS(4500), - [sym_real_literal] = ACTIONS(4500), - [sym_integer_literal] = ACTIONS(4498), - [sym_hex_literal] = ACTIONS(4500), - [sym_bin_literal] = ACTIONS(4500), - [anon_sym_true] = ACTIONS(4498), - [anon_sym_false] = ACTIONS(4498), - [anon_sym_SQUOTE] = ACTIONS(4500), - [sym__backtick_identifier] = ACTIONS(4500), - [sym__automatic_semicolon] = ACTIONS(4500), - [sym_safe_nav] = ACTIONS(4500), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4500), + [908] = { + [sym_class_body] = STATE(1120), + [sym_type_constraints] = STATE(993), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [928] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym_get] = ACTIONS(4366), - [anon_sym_set] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [909] = { + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [929] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_catch] = ACTIONS(4504), - [anon_sym_finally] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), + [910] = { + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1174), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), }, - [930] = { - [sym_class_body] = STATE(1100), - [sym_type_constraints] = STATE(1020), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_this] = ACTIONS(4508), - [anon_sym_super] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_throw] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4510), - [anon_sym_continue_AT] = ACTIONS(4510), - [anon_sym_break_AT] = ACTIONS(4510), - [sym_real_literal] = ACTIONS(4510), - [sym_integer_literal] = ACTIONS(4508), - [sym_hex_literal] = ACTIONS(4510), - [sym_bin_literal] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_SQUOTE] = ACTIONS(4510), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4510), + [911] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, - [931] = { - [sym_function_body] = STATE(1191), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [912] = { + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4471), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_object] = ACTIONS(4471), + [anon_sym_fun] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_this] = ACTIONS(4471), + [anon_sym_super] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_DOT_DOT] = ACTIONS(4473), + [anon_sym_QMARK_COLON] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4471), + [anon_sym_if] = ACTIONS(4471), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_when] = ACTIONS(4471), + [anon_sym_try] = ACTIONS(4471), + [anon_sym_throw] = ACTIONS(4471), + [anon_sym_return] = ACTIONS(4471), + [anon_sym_continue] = ACTIONS(4471), + [anon_sym_break] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4473), + [anon_sym_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4473), + [anon_sym_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_EQ] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_as_QMARK] = ACTIONS(4473), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_BANG_BANG] = ACTIONS(4473), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4473), + [anon_sym_continue_AT] = ACTIONS(4473), + [anon_sym_break_AT] = ACTIONS(4473), + [anon_sym_this_AT] = ACTIONS(4473), + [anon_sym_super_AT] = ACTIONS(4473), + [sym_real_literal] = ACTIONS(4473), + [sym_integer_literal] = ACTIONS(4471), + [sym_hex_literal] = ACTIONS(4473), + [sym_bin_literal] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_false] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4473), + [sym__backtick_identifier] = ACTIONS(4473), + [sym__automatic_semicolon] = ACTIONS(4473), + [sym_safe_nav] = ACTIONS(4473), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4473), }, - [932] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym_get] = ACTIONS(4366), - [anon_sym_set] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [913] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [914] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [915] = { + [sym_type_constraints] = STATE(937), + [sym_enum_class_body] = STATE(1128), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [916] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [933] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4518), - [anon_sym_get] = ACTIONS(4366), - [anon_sym_set] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [917] = { + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_object] = ACTIONS(4485), + [anon_sym_fun] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_this] = ACTIONS(4485), + [anon_sym_super] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [sym_label] = ACTIONS(4485), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_null] = ACTIONS(4485), + [anon_sym_if] = ACTIONS(4485), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_when] = ACTIONS(4485), + [anon_sym_try] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_throw] = ACTIONS(4485), + [anon_sym_return] = ACTIONS(4485), + [anon_sym_continue] = ACTIONS(4485), + [anon_sym_break] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4485), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_suspend] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_annotation] = ACTIONS(4485), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_lateinit] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_tailrec] = ACTIONS(4485), + [anon_sym_operator] = ACTIONS(4485), + [anon_sym_infix] = ACTIONS(4485), + [anon_sym_inline] = ACTIONS(4485), + [anon_sym_external] = ACTIONS(4485), + [sym_property_modifier] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_final] = ACTIONS(4485), + [anon_sym_open] = ACTIONS(4485), + [anon_sym_vararg] = ACTIONS(4485), + [anon_sym_noinline] = ACTIONS(4485), + [anon_sym_crossinline] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4487), + [anon_sym_continue_AT] = ACTIONS(4487), + [anon_sym_break_AT] = ACTIONS(4487), + [anon_sym_this_AT] = ACTIONS(4487), + [anon_sym_super_AT] = ACTIONS(4487), + [sym_real_literal] = ACTIONS(4487), + [sym_integer_literal] = ACTIONS(4485), + [sym_hex_literal] = ACTIONS(4487), + [sym_bin_literal] = ACTIONS(4487), + [anon_sym_true] = ACTIONS(4485), + [anon_sym_false] = ACTIONS(4485), + [anon_sym_SQUOTE] = ACTIONS(4487), + [sym__backtick_identifier] = ACTIONS(4487), + [sym__automatic_semicolon] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4487), + }, + [918] = { + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4489), + [anon_sym_GT] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_object] = ACTIONS(4489), + [anon_sym_fun] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_this] = ACTIONS(4489), + [anon_sym_super] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [sym_label] = ACTIONS(4489), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_DOT_DOT] = ACTIONS(4491), + [anon_sym_QMARK_COLON] = ACTIONS(4491), + [anon_sym_AMP_AMP] = ACTIONS(4491), + [anon_sym_PIPE_PIPE] = ACTIONS(4491), + [anon_sym_null] = ACTIONS(4489), + [anon_sym_if] = ACTIONS(4489), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_when] = ACTIONS(4489), + [anon_sym_try] = ACTIONS(4489), + [anon_sym_throw] = ACTIONS(4489), + [anon_sym_return] = ACTIONS(4489), + [anon_sym_continue] = ACTIONS(4489), + [anon_sym_break] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ] = ACTIONS(4489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ] = ACTIONS(4489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4489), + [anon_sym_BANG_BANG] = ACTIONS(4491), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4491), + [anon_sym_continue_AT] = ACTIONS(4491), + [anon_sym_break_AT] = ACTIONS(4491), + [anon_sym_this_AT] = ACTIONS(4491), + [anon_sym_super_AT] = ACTIONS(4491), + [sym_real_literal] = ACTIONS(4491), + [sym_integer_literal] = ACTIONS(4489), + [sym_hex_literal] = ACTIONS(4491), + [sym_bin_literal] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4489), + [anon_sym_false] = ACTIONS(4489), + [anon_sym_SQUOTE] = ACTIONS(4491), + [sym__backtick_identifier] = ACTIONS(4491), + [sym__automatic_semicolon] = ACTIONS(4491), + [sym_safe_nav] = ACTIONS(4491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4491), + }, + [919] = { + [sym_type_constraints] = STATE(971), + [sym_enum_class_body] = STATE(1120), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), + }, + [920] = { + [sym_class_body] = STATE(1138), + [sym_type_constraints] = STATE(956), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [921] = { + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [922] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [923] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [924] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [925] = { + [sym_value_arguments] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [926] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -154390,1891 +156903,2877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, + [927] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_object] = ACTIONS(4543), + [anon_sym_fun] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_this] = ACTIONS(4543), + [anon_sym_super] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4543), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4543), + [anon_sym_if] = ACTIONS(4543), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_throw] = ACTIONS(4543), + [anon_sym_return] = ACTIONS(4543), + [anon_sym_continue] = ACTIONS(4543), + [anon_sym_break] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4545), + [anon_sym_continue_AT] = ACTIONS(4545), + [anon_sym_break_AT] = ACTIONS(4545), + [anon_sym_this_AT] = ACTIONS(4545), + [anon_sym_super_AT] = ACTIONS(4545), + [sym_real_literal] = ACTIONS(4545), + [sym_integer_literal] = ACTIONS(4543), + [sym_hex_literal] = ACTIONS(4545), + [sym_bin_literal] = ACTIONS(4545), + [anon_sym_true] = ACTIONS(4543), + [anon_sym_false] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4545), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4545), + }, + [928] = { + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [929] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [930] = { + [sym_class_body] = STATE(1144), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_object] = ACTIONS(4547), + [anon_sym_fun] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_this] = ACTIONS(4547), + [anon_sym_super] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [sym_label] = ACTIONS(4547), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_if] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_when] = ACTIONS(4547), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_throw] = ACTIONS(4547), + [anon_sym_return] = ACTIONS(4547), + [anon_sym_continue] = ACTIONS(4547), + [anon_sym_break] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG] = ACTIONS(4547), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_suspend] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_annotation] = ACTIONS(4547), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_lateinit] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_tailrec] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_infix] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym_external] = ACTIONS(4547), + [sym_property_modifier] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_vararg] = ACTIONS(4547), + [anon_sym_noinline] = ACTIONS(4547), + [anon_sym_crossinline] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4549), + [anon_sym_continue_AT] = ACTIONS(4549), + [anon_sym_break_AT] = ACTIONS(4549), + [anon_sym_this_AT] = ACTIONS(4549), + [anon_sym_super_AT] = ACTIONS(4549), + [sym_real_literal] = ACTIONS(4549), + [sym_integer_literal] = ACTIONS(4547), + [sym_hex_literal] = ACTIONS(4549), + [sym_bin_literal] = ACTIONS(4549), + [anon_sym_true] = ACTIONS(4547), + [anon_sym_false] = ACTIONS(4547), + [anon_sym_SQUOTE] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4549), + [sym__automatic_semicolon] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4549), + }, + [931] = { + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_object] = ACTIONS(4551), + [anon_sym_fun] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_this] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_null] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_when] = ACTIONS(4551), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_throw] = ACTIONS(4551), + [anon_sym_return] = ACTIONS(4551), + [anon_sym_continue] = ACTIONS(4551), + [anon_sym_break] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_lateinit] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_tailrec] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_infix] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym_external] = ACTIONS(4551), + [sym_property_modifier] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_vararg] = ACTIONS(4551), + [anon_sym_noinline] = ACTIONS(4551), + [anon_sym_crossinline] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4553), + [anon_sym_continue_AT] = ACTIONS(4553), + [anon_sym_break_AT] = ACTIONS(4553), + [anon_sym_this_AT] = ACTIONS(4553), + [anon_sym_super_AT] = ACTIONS(4553), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_SQUOTE] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4553), + [sym__automatic_semicolon] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4553), + }, + [932] = { + [sym_class_body] = STATE(1187), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_object] = ACTIONS(4555), + [anon_sym_fun] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_this] = ACTIONS(4555), + [anon_sym_super] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4555), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_null] = ACTIONS(4555), + [anon_sym_if] = ACTIONS(4555), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_when] = ACTIONS(4555), + [anon_sym_try] = ACTIONS(4555), + [anon_sym_throw] = ACTIONS(4555), + [anon_sym_return] = ACTIONS(4555), + [anon_sym_continue] = ACTIONS(4555), + [anon_sym_break] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_suspend] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_annotation] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_lateinit] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_tailrec] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_infix] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym_external] = ACTIONS(4555), + [sym_property_modifier] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_open] = ACTIONS(4555), + [anon_sym_vararg] = ACTIONS(4555), + [anon_sym_noinline] = ACTIONS(4555), + [anon_sym_crossinline] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4557), + [anon_sym_continue_AT] = ACTIONS(4557), + [anon_sym_break_AT] = ACTIONS(4557), + [anon_sym_this_AT] = ACTIONS(4557), + [anon_sym_super_AT] = ACTIONS(4557), + [sym_real_literal] = ACTIONS(4557), + [sym_integer_literal] = ACTIONS(4555), + [sym_hex_literal] = ACTIONS(4557), + [sym_bin_literal] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(4555), + [anon_sym_false] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4557), + [sym__automatic_semicolon] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4557), + }, + [933] = { + [sym_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, [934] = { - [sym_class_body] = STATE(1202), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(4524), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_object] = ACTIONS(4559), + [anon_sym_fun] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_this] = ACTIONS(4559), + [anon_sym_super] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_when] = ACTIONS(4559), + [anon_sym_try] = ACTIONS(4559), + [anon_sym_throw] = ACTIONS(4559), + [anon_sym_return] = ACTIONS(4559), + [anon_sym_continue] = ACTIONS(4559), + [anon_sym_break] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_suspend] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_annotation] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_lateinit] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_tailrec] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_infix] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym_external] = ACTIONS(4559), + [sym_property_modifier] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_final] = ACTIONS(4559), + [anon_sym_open] = ACTIONS(4559), + [anon_sym_vararg] = ACTIONS(4559), + [anon_sym_noinline] = ACTIONS(4559), + [anon_sym_crossinline] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4561), + [anon_sym_continue_AT] = ACTIONS(4561), + [anon_sym_break_AT] = ACTIONS(4561), + [anon_sym_this_AT] = ACTIONS(4561), + [anon_sym_super_AT] = ACTIONS(4561), + [sym_real_literal] = ACTIONS(4561), + [sym_integer_literal] = ACTIONS(4559), + [sym_hex_literal] = ACTIONS(4561), + [sym_bin_literal] = ACTIONS(4561), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_SQUOTE] = ACTIONS(4561), + [sym__backtick_identifier] = ACTIONS(4561), + [sym__automatic_semicolon] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4561), }, [935] = { - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym_enum_class_body] = STATE(1120), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [936] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_object] = ACTIONS(4563), + [anon_sym_fun] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_this] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4563), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_throw] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4565), + [anon_sym_continue_AT] = ACTIONS(4565), + [anon_sym_break_AT] = ACTIONS(4565), + [anon_sym_this_AT] = ACTIONS(4565), + [anon_sym_super_AT] = ACTIONS(4565), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_SQUOTE] = ACTIONS(4565), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4565), }, [937] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(4366), - [anon_sym_set] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(1122), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), }, [938] = { - [sym_type_constraints] = STATE(1156), - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_object] = ACTIONS(4571), + [anon_sym_fun] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_this] = ACTIONS(4571), + [anon_sym_super] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [sym_label] = ACTIONS(4571), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_null] = ACTIONS(4571), + [anon_sym_if] = ACTIONS(4571), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_try] = ACTIONS(4571), + [anon_sym_throw] = ACTIONS(4571), + [anon_sym_return] = ACTIONS(4571), + [anon_sym_continue] = ACTIONS(4571), + [anon_sym_break] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4573), + [anon_sym_continue_AT] = ACTIONS(4573), + [anon_sym_break_AT] = ACTIONS(4573), + [anon_sym_this_AT] = ACTIONS(4573), + [anon_sym_super_AT] = ACTIONS(4573), + [sym_real_literal] = ACTIONS(4573), + [sym_integer_literal] = ACTIONS(4571), + [sym_hex_literal] = ACTIONS(4573), + [sym_bin_literal] = ACTIONS(4573), + [anon_sym_true] = ACTIONS(4571), + [anon_sym_false] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4573), }, [939] = { - [sym_class_body] = STATE(1157), - [sym_type_constraints] = STATE(997), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_class_body] = STATE(1180), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, [940] = { - [sym_type_constraints] = STATE(1137), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [941] = { - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_object] = ACTIONS(4577), + [anon_sym_fun] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_this] = ACTIONS(4577), + [anon_sym_super] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4577), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_when] = ACTIONS(4577), + [anon_sym_try] = ACTIONS(4577), + [anon_sym_throw] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4579), + [anon_sym_continue_AT] = ACTIONS(4579), + [anon_sym_break_AT] = ACTIONS(4579), + [anon_sym_this_AT] = ACTIONS(4579), + [anon_sym_super_AT] = ACTIONS(4579), + [sym_real_literal] = ACTIONS(4579), + [sym_integer_literal] = ACTIONS(4577), + [sym_hex_literal] = ACTIONS(4579), + [sym_bin_literal] = ACTIONS(4579), + [anon_sym_true] = ACTIONS(4577), + [anon_sym_false] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4579), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4579), }, [942] = { - [sym_class_body] = STATE(1138), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_object] = ACTIONS(4581), + [anon_sym_fun] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_this] = ACTIONS(4581), + [anon_sym_super] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4581), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4581), + [anon_sym_if] = ACTIONS(4581), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_when] = ACTIONS(4581), + [anon_sym_try] = ACTIONS(4581), + [anon_sym_throw] = ACTIONS(4581), + [anon_sym_return] = ACTIONS(4581), + [anon_sym_continue] = ACTIONS(4581), + [anon_sym_break] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4581), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4583), + [anon_sym_continue_AT] = ACTIONS(4583), + [anon_sym_break_AT] = ACTIONS(4583), + [anon_sym_this_AT] = ACTIONS(4583), + [anon_sym_super_AT] = ACTIONS(4583), + [sym_real_literal] = ACTIONS(4583), + [sym_integer_literal] = ACTIONS(4581), + [sym_hex_literal] = ACTIONS(4583), + [sym_bin_literal] = ACTIONS(4583), + [anon_sym_true] = ACTIONS(4581), + [anon_sym_false] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4583), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4583), }, [943] = { - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym_class_body] = STATE(1120), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [944] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_object] = ACTIONS(4585), + [anon_sym_fun] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_this] = ACTIONS(4585), + [anon_sym_super] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_null] = ACTIONS(4585), + [anon_sym_if] = ACTIONS(4585), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_when] = ACTIONS(4585), + [anon_sym_try] = ACTIONS(4585), + [anon_sym_throw] = ACTIONS(4585), + [anon_sym_return] = ACTIONS(4585), + [anon_sym_continue] = ACTIONS(4585), + [anon_sym_break] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_suspend] = ACTIONS(4585), + [anon_sym_sealed] = ACTIONS(4585), + [anon_sym_annotation] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_lateinit] = ACTIONS(4585), + [anon_sym_public] = ACTIONS(4585), + [anon_sym_private] = ACTIONS(4585), + [anon_sym_internal] = ACTIONS(4585), + [anon_sym_protected] = ACTIONS(4585), + [anon_sym_tailrec] = ACTIONS(4585), + [anon_sym_operator] = ACTIONS(4585), + [anon_sym_infix] = ACTIONS(4585), + [anon_sym_inline] = ACTIONS(4585), + [anon_sym_external] = ACTIONS(4585), + [sym_property_modifier] = ACTIONS(4585), + [anon_sym_abstract] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_open] = ACTIONS(4585), + [anon_sym_vararg] = ACTIONS(4585), + [anon_sym_noinline] = ACTIONS(4585), + [anon_sym_crossinline] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4587), + [anon_sym_continue_AT] = ACTIONS(4587), + [anon_sym_break_AT] = ACTIONS(4587), + [anon_sym_this_AT] = ACTIONS(4587), + [anon_sym_super_AT] = ACTIONS(4587), + [sym_real_literal] = ACTIONS(4587), + [sym_integer_literal] = ACTIONS(4585), + [sym_hex_literal] = ACTIONS(4587), + [sym_bin_literal] = ACTIONS(4587), + [anon_sym_true] = ACTIONS(4585), + [anon_sym_false] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4587), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4587), }, [945] = { - [sym_type_constraints] = STATE(1130), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_class_body] = STATE(1141), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, [946] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [947] = { - [sym_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [948] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4456), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, [949] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(961), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [950] = { - [sym__alpha_identifier] = ACTIONS(4538), - [anon_sym_AT] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_object] = ACTIONS(4538), - [anon_sym_fun] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_get] = ACTIONS(4538), - [anon_sym_set] = ACTIONS(4538), - [anon_sym_this] = ACTIONS(4538), - [anon_sym_super] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [sym_label] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_QMARK_COLON] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [anon_sym_null] = ACTIONS(4538), - [anon_sym_if] = ACTIONS(4538), - [anon_sym_else] = ACTIONS(4538), - [anon_sym_when] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4538), - [anon_sym_throw] = ACTIONS(4538), - [anon_sym_return] = ACTIONS(4538), - [anon_sym_continue] = ACTIONS(4538), - [anon_sym_break] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_BANGin] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_BANGis] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_as_QMARK] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_BANG_BANG] = ACTIONS(4540), - [anon_sym_suspend] = ACTIONS(4538), - [anon_sym_sealed] = ACTIONS(4538), - [anon_sym_annotation] = ACTIONS(4538), - [anon_sym_data] = ACTIONS(4538), - [anon_sym_inner] = ACTIONS(4538), - [anon_sym_value] = ACTIONS(4538), - [anon_sym_override] = ACTIONS(4538), - [anon_sym_lateinit] = ACTIONS(4538), - [anon_sym_public] = ACTIONS(4538), - [anon_sym_private] = ACTIONS(4538), - [anon_sym_internal] = ACTIONS(4538), - [anon_sym_protected] = ACTIONS(4538), - [anon_sym_tailrec] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_infix] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym_external] = ACTIONS(4538), - [sym_property_modifier] = ACTIONS(4538), - [anon_sym_abstract] = ACTIONS(4538), - [anon_sym_final] = ACTIONS(4538), - [anon_sym_open] = ACTIONS(4538), - [anon_sym_vararg] = ACTIONS(4538), - [anon_sym_noinline] = ACTIONS(4538), - [anon_sym_crossinline] = ACTIONS(4538), - [anon_sym_expect] = ACTIONS(4538), - [anon_sym_actual] = ACTIONS(4538), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4540), - [anon_sym_continue_AT] = ACTIONS(4540), - [anon_sym_break_AT] = ACTIONS(4540), - [sym_real_literal] = ACTIONS(4540), - [sym_integer_literal] = ACTIONS(4538), - [sym_hex_literal] = ACTIONS(4540), - [sym_bin_literal] = ACTIONS(4540), - [anon_sym_true] = ACTIONS(4538), - [anon_sym_false] = ACTIONS(4538), - [anon_sym_SQUOTE] = ACTIONS(4540), - [sym__backtick_identifier] = ACTIONS(4540), - [sym__automatic_semicolon] = ACTIONS(4540), - [sym_safe_nav] = ACTIONS(4540), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4540), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [951] = { - [sym_getter] = STATE(9308), - [sym_setter] = STATE(9308), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9189), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4542), - [anon_sym_get] = ACTIONS(4544), - [anon_sym_set] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [952] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), + }, + [953] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -156293,513 +159792,630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [952] = { - [sym__alpha_identifier] = ACTIONS(4548), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_object] = ACTIONS(4548), - [anon_sym_fun] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4548), - [anon_sym_set] = ACTIONS(4548), - [anon_sym_this] = ACTIONS(4548), - [anon_sym_super] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [sym_label] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4548), - [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(4548), - [anon_sym_if] = ACTIONS(4548), - [anon_sym_else] = ACTIONS(4548), - [anon_sym_when] = ACTIONS(4548), - [anon_sym_try] = ACTIONS(4548), - [anon_sym_throw] = ACTIONS(4548), - [anon_sym_return] = ACTIONS(4548), - [anon_sym_continue] = ACTIONS(4548), - [anon_sym_break] = ACTIONS(4548), - [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(4548), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [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(4548), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_as_QMARK] = ACTIONS(4551), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_BANG_BANG] = ACTIONS(4551), - [anon_sym_suspend] = ACTIONS(4548), - [anon_sym_sealed] = ACTIONS(4548), - [anon_sym_annotation] = ACTIONS(4548), - [anon_sym_data] = ACTIONS(4548), - [anon_sym_inner] = ACTIONS(4548), - [anon_sym_value] = ACTIONS(4548), - [anon_sym_override] = ACTIONS(4548), - [anon_sym_lateinit] = ACTIONS(4548), - [anon_sym_public] = ACTIONS(4548), - [anon_sym_private] = ACTIONS(4548), - [anon_sym_internal] = ACTIONS(4548), - [anon_sym_protected] = ACTIONS(4548), - [anon_sym_tailrec] = ACTIONS(4548), - [anon_sym_operator] = ACTIONS(4548), - [anon_sym_infix] = ACTIONS(4548), - [anon_sym_inline] = ACTIONS(4548), - [anon_sym_external] = ACTIONS(4548), - [sym_property_modifier] = ACTIONS(4548), - [anon_sym_abstract] = ACTIONS(4548), - [anon_sym_final] = ACTIONS(4548), - [anon_sym_open] = ACTIONS(4548), - [anon_sym_vararg] = ACTIONS(4548), - [anon_sym_noinline] = ACTIONS(4548), - [anon_sym_crossinline] = ACTIONS(4548), - [anon_sym_expect] = ACTIONS(4548), - [anon_sym_actual] = ACTIONS(4548), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4551), - [anon_sym_continue_AT] = ACTIONS(4551), - [anon_sym_break_AT] = ACTIONS(4551), - [sym_real_literal] = ACTIONS(4551), - [sym_integer_literal] = ACTIONS(4548), - [sym_hex_literal] = ACTIONS(4551), - [sym_bin_literal] = ACTIONS(4551), - [anon_sym_true] = ACTIONS(4548), - [anon_sym_false] = ACTIONS(4548), - [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), - }, - [953] = { - [sym__alpha_identifier] = ACTIONS(4554), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_object] = ACTIONS(4554), - [anon_sym_fun] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4554), - [anon_sym_set] = ACTIONS(4554), - [anon_sym_this] = ACTIONS(4554), - [anon_sym_super] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [sym_label] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4554), - [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(4554), - [anon_sym_if] = ACTIONS(4554), - [anon_sym_else] = ACTIONS(4554), - [anon_sym_when] = ACTIONS(4554), - [anon_sym_try] = ACTIONS(4554), - [anon_sym_throw] = ACTIONS(4554), - [anon_sym_return] = ACTIONS(4554), - [anon_sym_continue] = ACTIONS(4554), - [anon_sym_break] = ACTIONS(4554), - [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(4554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [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(4554), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_as_QMARK] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_BANG_BANG] = ACTIONS(4556), - [anon_sym_suspend] = ACTIONS(4554), - [anon_sym_sealed] = ACTIONS(4554), - [anon_sym_annotation] = ACTIONS(4554), - [anon_sym_data] = ACTIONS(4554), - [anon_sym_inner] = ACTIONS(4554), - [anon_sym_value] = ACTIONS(4554), - [anon_sym_override] = ACTIONS(4554), - [anon_sym_lateinit] = ACTIONS(4554), - [anon_sym_public] = ACTIONS(4554), - [anon_sym_private] = ACTIONS(4554), - [anon_sym_internal] = ACTIONS(4554), - [anon_sym_protected] = ACTIONS(4554), - [anon_sym_tailrec] = ACTIONS(4554), - [anon_sym_operator] = ACTIONS(4554), - [anon_sym_infix] = ACTIONS(4554), - [anon_sym_inline] = ACTIONS(4554), - [anon_sym_external] = ACTIONS(4554), - [sym_property_modifier] = ACTIONS(4554), - [anon_sym_abstract] = ACTIONS(4554), - [anon_sym_final] = ACTIONS(4554), - [anon_sym_open] = ACTIONS(4554), - [anon_sym_vararg] = ACTIONS(4554), - [anon_sym_noinline] = ACTIONS(4554), - [anon_sym_crossinline] = ACTIONS(4554), - [anon_sym_expect] = ACTIONS(4554), - [anon_sym_actual] = ACTIONS(4554), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4556), - [anon_sym_continue_AT] = ACTIONS(4556), - [anon_sym_break_AT] = ACTIONS(4556), - [sym_real_literal] = ACTIONS(4556), - [sym_integer_literal] = ACTIONS(4554), - [sym_hex_literal] = ACTIONS(4556), - [sym_bin_literal] = ACTIONS(4556), - [anon_sym_true] = ACTIONS(4554), - [anon_sym_false] = ACTIONS(4554), - [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), - }, [954] = { - [sym__alpha_identifier] = ACTIONS(4558), - [anon_sym_AT] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACE] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_object] = ACTIONS(4558), - [anon_sym_fun] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_get] = ACTIONS(4558), - [anon_sym_set] = ACTIONS(4558), - [anon_sym_this] = ACTIONS(4558), - [anon_sym_super] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [sym_label] = ACTIONS(4558), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_QMARK_COLON] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [anon_sym_null] = ACTIONS(4558), - [anon_sym_if] = ACTIONS(4558), - [anon_sym_else] = ACTIONS(4558), - [anon_sym_when] = ACTIONS(4558), - [anon_sym_try] = ACTIONS(4558), - [anon_sym_throw] = ACTIONS(4558), - [anon_sym_return] = ACTIONS(4558), - [anon_sym_continue] = ACTIONS(4558), - [anon_sym_break] = ACTIONS(4558), - [anon_sym_COLON_COLON] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_BANGin] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_BANGis] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_as_QMARK] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_BANG_BANG] = ACTIONS(4560), - [anon_sym_suspend] = ACTIONS(4558), - [anon_sym_sealed] = ACTIONS(4558), - [anon_sym_annotation] = ACTIONS(4558), - [anon_sym_data] = ACTIONS(4558), - [anon_sym_inner] = ACTIONS(4558), - [anon_sym_value] = ACTIONS(4558), - [anon_sym_override] = ACTIONS(4558), - [anon_sym_lateinit] = ACTIONS(4558), - [anon_sym_public] = ACTIONS(4558), - [anon_sym_private] = ACTIONS(4558), - [anon_sym_internal] = ACTIONS(4558), - [anon_sym_protected] = ACTIONS(4558), - [anon_sym_tailrec] = ACTIONS(4558), - [anon_sym_operator] = ACTIONS(4558), - [anon_sym_infix] = ACTIONS(4558), - [anon_sym_inline] = ACTIONS(4558), - [anon_sym_external] = ACTIONS(4558), - [sym_property_modifier] = ACTIONS(4558), - [anon_sym_abstract] = ACTIONS(4558), - [anon_sym_final] = ACTIONS(4558), - [anon_sym_open] = ACTIONS(4558), - [anon_sym_vararg] = ACTIONS(4558), - [anon_sym_noinline] = ACTIONS(4558), - [anon_sym_crossinline] = ACTIONS(4558), - [anon_sym_expect] = ACTIONS(4558), - [anon_sym_actual] = ACTIONS(4558), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4560), - [anon_sym_continue_AT] = ACTIONS(4560), - [anon_sym_break_AT] = ACTIONS(4560), - [sym_real_literal] = ACTIONS(4560), - [sym_integer_literal] = ACTIONS(4558), - [sym_hex_literal] = ACTIONS(4560), - [sym_bin_literal] = ACTIONS(4560), - [anon_sym_true] = ACTIONS(4558), - [anon_sym_false] = ACTIONS(4558), - [anon_sym_SQUOTE] = ACTIONS(4560), - [sym__backtick_identifier] = ACTIONS(4560), - [sym__automatic_semicolon] = ACTIONS(4560), - [sym_safe_nav] = ACTIONS(4560), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4560), + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, [955] = { - [sym_class_body] = STATE(1193), - [sym__alpha_identifier] = ACTIONS(4562), - [anon_sym_AT] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_object] = ACTIONS(4562), - [anon_sym_fun] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_get] = ACTIONS(4562), - [anon_sym_set] = ACTIONS(4562), - [anon_sym_this] = ACTIONS(4562), - [anon_sym_super] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [sym_label] = ACTIONS(4562), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_QMARK_COLON] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [anon_sym_null] = ACTIONS(4562), - [anon_sym_if] = ACTIONS(4562), - [anon_sym_else] = ACTIONS(4562), - [anon_sym_when] = ACTIONS(4562), - [anon_sym_try] = ACTIONS(4562), - [anon_sym_throw] = ACTIONS(4562), - [anon_sym_return] = ACTIONS(4562), - [anon_sym_continue] = ACTIONS(4562), - [anon_sym_break] = ACTIONS(4562), - [anon_sym_COLON_COLON] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_BANGin] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_BANGis] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_as_QMARK] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_BANG_BANG] = ACTIONS(4564), - [anon_sym_suspend] = ACTIONS(4562), - [anon_sym_sealed] = ACTIONS(4562), - [anon_sym_annotation] = ACTIONS(4562), - [anon_sym_data] = ACTIONS(4562), - [anon_sym_inner] = ACTIONS(4562), - [anon_sym_value] = ACTIONS(4562), - [anon_sym_override] = ACTIONS(4562), - [anon_sym_lateinit] = ACTIONS(4562), - [anon_sym_public] = ACTIONS(4562), - [anon_sym_private] = ACTIONS(4562), - [anon_sym_internal] = ACTIONS(4562), - [anon_sym_protected] = ACTIONS(4562), - [anon_sym_tailrec] = ACTIONS(4562), - [anon_sym_operator] = ACTIONS(4562), - [anon_sym_infix] = ACTIONS(4562), - [anon_sym_inline] = ACTIONS(4562), - [anon_sym_external] = ACTIONS(4562), - [sym_property_modifier] = ACTIONS(4562), - [anon_sym_abstract] = ACTIONS(4562), - [anon_sym_final] = ACTIONS(4562), - [anon_sym_open] = ACTIONS(4562), - [anon_sym_vararg] = ACTIONS(4562), - [anon_sym_noinline] = ACTIONS(4562), - [anon_sym_crossinline] = ACTIONS(4562), - [anon_sym_expect] = ACTIONS(4562), - [anon_sym_actual] = ACTIONS(4562), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4564), - [anon_sym_continue_AT] = ACTIONS(4564), - [anon_sym_break_AT] = ACTIONS(4564), - [sym_real_literal] = ACTIONS(4564), - [sym_integer_literal] = ACTIONS(4562), - [sym_hex_literal] = ACTIONS(4564), - [sym_bin_literal] = ACTIONS(4564), - [anon_sym_true] = ACTIONS(4562), - [anon_sym_false] = ACTIONS(4562), - [anon_sym_SQUOTE] = ACTIONS(4564), - [sym__backtick_identifier] = ACTIONS(4564), - [sym__automatic_semicolon] = ACTIONS(4564), - [sym_safe_nav] = ACTIONS(4564), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4564), + [sym_class_body] = STATE(1138), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), }, [956] = { - [sym_getter] = STATE(9029), - [sym_setter] = STATE(9029), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9189), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4566), - [anon_sym_get] = ACTIONS(4544), - [anon_sym_set] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_class_body] = STATE(1063), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), + }, + [957] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [958] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [959] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -156818,1143 +160434,630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [957] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(961), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), - }, - [958] = { - [sym_enum_class_body] = STATE(1206), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [959] = { - [sym__alpha_identifier] = ACTIONS(4570), - [anon_sym_AT] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_as] = ACTIONS(4570), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4573), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_by] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_where] = ACTIONS(4570), - [anon_sym_object] = ACTIONS(4570), - [anon_sym_fun] = ACTIONS(4570), - [anon_sym_DOT] = ACTIONS(4570), - [anon_sym_SEMI] = ACTIONS(4573), - [anon_sym_get] = ACTIONS(4570), - [anon_sym_set] = ACTIONS(4570), - [anon_sym_this] = ACTIONS(4570), - [anon_sym_super] = ACTIONS(4570), - [anon_sym_STAR] = ACTIONS(4570), - [sym_label] = ACTIONS(4570), - [anon_sym_in] = ACTIONS(4570), - [anon_sym_DOT_DOT] = ACTIONS(4573), - [anon_sym_QMARK_COLON] = ACTIONS(4573), - [anon_sym_AMP_AMP] = ACTIONS(4573), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(4570), - [anon_sym_if] = ACTIONS(4570), - [anon_sym_else] = ACTIONS(4570), - [anon_sym_when] = ACTIONS(4570), - [anon_sym_try] = ACTIONS(4570), - [anon_sym_throw] = ACTIONS(4570), - [anon_sym_return] = ACTIONS(4570), - [anon_sym_continue] = ACTIONS(4570), - [anon_sym_break] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_BANG_EQ] = ACTIONS(4570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), - [anon_sym_EQ_EQ] = ACTIONS(4570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4570), - [anon_sym_BANGis] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_SLASH] = ACTIONS(4570), - [anon_sym_PERCENT] = ACTIONS(4570), - [anon_sym_as_QMARK] = ACTIONS(4573), - [anon_sym_PLUS_PLUS] = ACTIONS(4573), - [anon_sym_DASH_DASH] = ACTIONS(4573), - [anon_sym_BANG] = ACTIONS(4570), - [anon_sym_BANG_BANG] = ACTIONS(4573), - [anon_sym_suspend] = ACTIONS(4570), - [anon_sym_sealed] = ACTIONS(4570), - [anon_sym_annotation] = ACTIONS(4570), - [anon_sym_data] = ACTIONS(4570), - [anon_sym_inner] = ACTIONS(4570), - [anon_sym_value] = ACTIONS(4570), - [anon_sym_override] = ACTIONS(4570), - [anon_sym_lateinit] = ACTIONS(4570), - [anon_sym_public] = ACTIONS(4570), - [anon_sym_private] = ACTIONS(4570), - [anon_sym_internal] = ACTIONS(4570), - [anon_sym_protected] = ACTIONS(4570), - [anon_sym_tailrec] = ACTIONS(4570), - [anon_sym_operator] = ACTIONS(4570), - [anon_sym_infix] = ACTIONS(4570), - [anon_sym_inline] = ACTIONS(4570), - [anon_sym_external] = ACTIONS(4570), - [sym_property_modifier] = ACTIONS(4570), - [anon_sym_abstract] = ACTIONS(4570), - [anon_sym_final] = ACTIONS(4570), - [anon_sym_open] = ACTIONS(4570), - [anon_sym_vararg] = ACTIONS(4570), - [anon_sym_noinline] = ACTIONS(4570), - [anon_sym_crossinline] = ACTIONS(4570), - [anon_sym_expect] = ACTIONS(4570), - [anon_sym_actual] = ACTIONS(4570), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4573), - [anon_sym_continue_AT] = ACTIONS(4573), - [anon_sym_break_AT] = ACTIONS(4573), - [sym_real_literal] = ACTIONS(4573), - [sym_integer_literal] = ACTIONS(4570), - [sym_hex_literal] = ACTIONS(4573), - [sym_bin_literal] = ACTIONS(4573), - [anon_sym_true] = ACTIONS(4570), - [anon_sym_false] = ACTIONS(4570), - [anon_sym_SQUOTE] = ACTIONS(4573), - [sym__backtick_identifier] = ACTIONS(4573), - [sym__automatic_semicolon] = ACTIONS(4573), - [sym_safe_nav] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4573), }, [960] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(957), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_object] = ACTIONS(4576), - [anon_sym_fun] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_this] = ACTIONS(4576), - [anon_sym_super] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4576), - [sym_label] = ACTIONS(4576), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_null] = ACTIONS(4576), - [anon_sym_if] = ACTIONS(4576), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_when] = ACTIONS(4576), - [anon_sym_try] = ACTIONS(4576), - [anon_sym_throw] = ACTIONS(4576), - [anon_sym_return] = ACTIONS(4576), - [anon_sym_continue] = ACTIONS(4576), - [anon_sym_break] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_PLUS_EQ] = ACTIONS(4578), - [anon_sym_DASH_EQ] = ACTIONS(4578), - [anon_sym_STAR_EQ] = ACTIONS(4578), - [anon_sym_SLASH_EQ] = ACTIONS(4578), - [anon_sym_PERCENT_EQ] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4576), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG] = ACTIONS(4576), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_suspend] = ACTIONS(4576), - [anon_sym_sealed] = ACTIONS(4576), - [anon_sym_annotation] = ACTIONS(4576), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_override] = ACTIONS(4576), - [anon_sym_lateinit] = ACTIONS(4576), - [anon_sym_public] = ACTIONS(4576), - [anon_sym_private] = ACTIONS(4576), - [anon_sym_internal] = ACTIONS(4576), - [anon_sym_protected] = ACTIONS(4576), - [anon_sym_tailrec] = ACTIONS(4576), - [anon_sym_operator] = ACTIONS(4576), - [anon_sym_infix] = ACTIONS(4576), - [anon_sym_inline] = ACTIONS(4576), - [anon_sym_external] = ACTIONS(4576), - [sym_property_modifier] = ACTIONS(4576), - [anon_sym_abstract] = ACTIONS(4576), - [anon_sym_final] = ACTIONS(4576), - [anon_sym_open] = ACTIONS(4576), - [anon_sym_vararg] = ACTIONS(4576), - [anon_sym_noinline] = ACTIONS(4576), - [anon_sym_crossinline] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4578), - [anon_sym_continue_AT] = ACTIONS(4578), - [anon_sym_break_AT] = ACTIONS(4578), - [sym_real_literal] = ACTIONS(4578), - [sym_integer_literal] = ACTIONS(4576), - [sym_hex_literal] = ACTIONS(4578), - [sym_bin_literal] = ACTIONS(4578), - [anon_sym_true] = ACTIONS(4576), - [anon_sym_false] = ACTIONS(4576), - [anon_sym_SQUOTE] = ACTIONS(4578), - [sym__backtick_identifier] = ACTIONS(4578), - [sym__automatic_semicolon] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4578), + [sym_enum_class_body] = STATE(1128), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), }, [961] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(961), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(4584), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_object] = ACTIONS(4580), - [anon_sym_fun] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_this] = ACTIONS(4580), - [anon_sym_super] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [sym_label] = ACTIONS(4580), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_when] = ACTIONS(4580), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_throw] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4582), - [anon_sym_continue_AT] = ACTIONS(4582), - [anon_sym_break_AT] = ACTIONS(4582), - [sym_real_literal] = ACTIONS(4582), - [sym_integer_literal] = ACTIONS(4580), - [sym_hex_literal] = ACTIONS(4582), - [sym_bin_literal] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_SQUOTE] = ACTIONS(4582), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4582), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, [962] = { - [sym_class_body] = STATE(1153), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [963] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_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_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_this] = ACTIONS(4587), - [anon_sym_super] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [sym_label] = ACTIONS(4587), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), - [anon_sym_if] = ACTIONS(4587), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_try] = ACTIONS(4587), - [anon_sym_throw] = ACTIONS(4587), - [anon_sym_return] = ACTIONS(4587), - [anon_sym_continue] = ACTIONS(4587), - [anon_sym_break] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4589), - [anon_sym_continue_AT] = ACTIONS(4589), - [anon_sym_break_AT] = ACTIONS(4589), - [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), + [sym_enum_class_body] = STATE(1082), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, [964] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_object] = ACTIONS(4591), - [anon_sym_fun] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_this] = ACTIONS(4591), - [anon_sym_super] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [sym_label] = ACTIONS(4591), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4591), - [anon_sym_if] = ACTIONS(4591), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_when] = ACTIONS(4591), - [anon_sym_try] = ACTIONS(4591), - [anon_sym_throw] = ACTIONS(4591), - [anon_sym_return] = ACTIONS(4591), - [anon_sym_continue] = ACTIONS(4591), - [anon_sym_break] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_suspend] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_annotation] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_lateinit] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_tailrec] = ACTIONS(4591), - [anon_sym_operator] = ACTIONS(4591), - [anon_sym_infix] = ACTIONS(4591), - [anon_sym_inline] = ACTIONS(4591), - [anon_sym_external] = ACTIONS(4591), - [sym_property_modifier] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_open] = ACTIONS(4591), - [anon_sym_vararg] = ACTIONS(4591), - [anon_sym_noinline] = ACTIONS(4591), - [anon_sym_crossinline] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4593), - [anon_sym_continue_AT] = ACTIONS(4593), - [anon_sym_break_AT] = ACTIONS(4593), - [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), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [965] = { - [sym_class_body] = STATE(1206), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [966] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_by] = ACTIONS(4595), - [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_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [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), - }, - [967] = { - [sym_getter] = STATE(9337), - [sym_setter] = STATE(9337), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9189), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_get] = ACTIONS(4544), - [anon_sym_set] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -157973,2508 +161076,2556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, + [966] = { + [sym_class_body] = STATE(1082), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), + }, + [967] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), + }, [968] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, [969] = { - [sym__alpha_identifier] = ACTIONS(4645), - [anon_sym_AT] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4647), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_RBRACE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4645), - [anon_sym_GT] = ACTIONS(4645), - [anon_sym_where] = ACTIONS(4645), - [anon_sym_object] = ACTIONS(4645), - [anon_sym_fun] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_get] = ACTIONS(4645), - [anon_sym_set] = ACTIONS(4645), - [anon_sym_this] = ACTIONS(4645), - [anon_sym_super] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4645), - [sym_label] = ACTIONS(4645), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4647), - [anon_sym_QMARK_COLON] = ACTIONS(4647), - [anon_sym_AMP_AMP] = ACTIONS(4647), - [anon_sym_PIPE_PIPE] = ACTIONS(4647), - [anon_sym_null] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_else] = ACTIONS(4645), - [anon_sym_when] = ACTIONS(4645), - [anon_sym_try] = ACTIONS(4645), - [anon_sym_throw] = ACTIONS(4645), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_continue] = ACTIONS(4645), - [anon_sym_break] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4647), - [anon_sym_PLUS_EQ] = ACTIONS(4647), - [anon_sym_DASH_EQ] = ACTIONS(4647), - [anon_sym_STAR_EQ] = ACTIONS(4647), - [anon_sym_SLASH_EQ] = ACTIONS(4647), - [anon_sym_PERCENT_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4647), - [anon_sym_LT_EQ] = ACTIONS(4647), - [anon_sym_GT_EQ] = ACTIONS(4647), - [anon_sym_BANGin] = ACTIONS(4647), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_BANGis] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4645), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_as_QMARK] = ACTIONS(4647), - [anon_sym_PLUS_PLUS] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_BANG_BANG] = ACTIONS(4647), - [anon_sym_suspend] = ACTIONS(4645), - [anon_sym_sealed] = ACTIONS(4645), - [anon_sym_annotation] = ACTIONS(4645), - [anon_sym_data] = ACTIONS(4645), - [anon_sym_inner] = ACTIONS(4645), - [anon_sym_value] = ACTIONS(4645), - [anon_sym_override] = ACTIONS(4645), - [anon_sym_lateinit] = ACTIONS(4645), - [anon_sym_public] = ACTIONS(4645), - [anon_sym_private] = ACTIONS(4645), - [anon_sym_internal] = ACTIONS(4645), - [anon_sym_protected] = ACTIONS(4645), - [anon_sym_tailrec] = ACTIONS(4645), - [anon_sym_operator] = ACTIONS(4645), - [anon_sym_infix] = ACTIONS(4645), - [anon_sym_inline] = ACTIONS(4645), - [anon_sym_external] = ACTIONS(4645), - [sym_property_modifier] = ACTIONS(4645), - [anon_sym_abstract] = ACTIONS(4645), - [anon_sym_final] = ACTIONS(4645), - [anon_sym_open] = ACTIONS(4645), - [anon_sym_vararg] = ACTIONS(4645), - [anon_sym_noinline] = ACTIONS(4645), - [anon_sym_crossinline] = ACTIONS(4645), - [anon_sym_expect] = ACTIONS(4645), - [anon_sym_actual] = ACTIONS(4645), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4647), - [anon_sym_continue_AT] = ACTIONS(4647), - [anon_sym_break_AT] = ACTIONS(4647), - [sym_real_literal] = ACTIONS(4647), - [sym_integer_literal] = ACTIONS(4645), - [sym_hex_literal] = ACTIONS(4647), - [sym_bin_literal] = ACTIONS(4647), - [anon_sym_true] = ACTIONS(4645), - [anon_sym_false] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4647), - [sym__backtick_identifier] = ACTIONS(4647), - [sym__automatic_semicolon] = ACTIONS(4647), - [sym_safe_nav] = ACTIONS(4647), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4647), + [sym_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [970] = { - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(4412), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_object] = ACTIONS(4410), - [anon_sym_fun] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_this] = ACTIONS(4410), - [anon_sym_super] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_throw] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4412), - [anon_sym_continue_AT] = ACTIONS(4412), - [anon_sym_break_AT] = ACTIONS(4412), - [sym_real_literal] = ACTIONS(4412), - [sym_integer_literal] = ACTIONS(4410), - [sym_hex_literal] = ACTIONS(4412), - [sym_bin_literal] = ACTIONS(4412), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [anon_sym_SQUOTE] = ACTIONS(4412), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4412), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [971] = { - [sym__alpha_identifier] = ACTIONS(4649), - [anon_sym_AT] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_as] = ACTIONS(4649), - [anon_sym_EQ] = ACTIONS(4649), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_by] = ACTIONS(4649), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4649), - [anon_sym_object] = ACTIONS(4649), - [anon_sym_fun] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_get] = ACTIONS(4649), - [anon_sym_set] = ACTIONS(4649), - [anon_sym_this] = ACTIONS(4649), - [anon_sym_super] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4649), - [sym_label] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_DOT_DOT] = ACTIONS(4651), - [anon_sym_QMARK_COLON] = ACTIONS(4651), - [anon_sym_AMP_AMP] = ACTIONS(4651), - [anon_sym_PIPE_PIPE] = ACTIONS(4651), - [anon_sym_null] = ACTIONS(4649), - [anon_sym_if] = ACTIONS(4649), - [anon_sym_else] = ACTIONS(4649), - [anon_sym_when] = ACTIONS(4649), - [anon_sym_try] = ACTIONS(4649), - [anon_sym_throw] = ACTIONS(4649), - [anon_sym_return] = ACTIONS(4649), - [anon_sym_continue] = ACTIONS(4649), - [anon_sym_break] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4651), - [anon_sym_PLUS_EQ] = ACTIONS(4651), - [anon_sym_DASH_EQ] = ACTIONS(4651), - [anon_sym_STAR_EQ] = ACTIONS(4651), - [anon_sym_SLASH_EQ] = ACTIONS(4651), - [anon_sym_PERCENT_EQ] = ACTIONS(4651), - [anon_sym_BANG_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4651), - [anon_sym_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4651), - [anon_sym_LT_EQ] = ACTIONS(4651), - [anon_sym_GT_EQ] = ACTIONS(4651), - [anon_sym_BANGin] = ACTIONS(4651), - [anon_sym_is] = ACTIONS(4649), - [anon_sym_BANGis] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4649), - [anon_sym_as_QMARK] = ACTIONS(4651), - [anon_sym_PLUS_PLUS] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4651), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_BANG_BANG] = ACTIONS(4651), - [anon_sym_suspend] = ACTIONS(4649), - [anon_sym_sealed] = ACTIONS(4649), - [anon_sym_annotation] = ACTIONS(4649), - [anon_sym_data] = ACTIONS(4649), - [anon_sym_inner] = ACTIONS(4649), - [anon_sym_value] = ACTIONS(4649), - [anon_sym_override] = ACTIONS(4649), - [anon_sym_lateinit] = ACTIONS(4649), - [anon_sym_public] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4649), - [anon_sym_internal] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4649), - [anon_sym_tailrec] = ACTIONS(4649), - [anon_sym_operator] = ACTIONS(4649), - [anon_sym_infix] = ACTIONS(4649), - [anon_sym_inline] = ACTIONS(4649), - [anon_sym_external] = ACTIONS(4649), - [sym_property_modifier] = ACTIONS(4649), - [anon_sym_abstract] = ACTIONS(4649), - [anon_sym_final] = ACTIONS(4649), - [anon_sym_open] = ACTIONS(4649), - [anon_sym_vararg] = ACTIONS(4649), - [anon_sym_noinline] = ACTIONS(4649), - [anon_sym_crossinline] = ACTIONS(4649), - [anon_sym_expect] = ACTIONS(4649), - [anon_sym_actual] = ACTIONS(4649), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4651), - [anon_sym_continue_AT] = ACTIONS(4651), - [anon_sym_break_AT] = ACTIONS(4651), - [sym_real_literal] = ACTIONS(4651), - [sym_integer_literal] = ACTIONS(4649), - [sym_hex_literal] = ACTIONS(4651), - [sym_bin_literal] = ACTIONS(4651), - [anon_sym_true] = ACTIONS(4649), - [anon_sym_false] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4651), - [sym__backtick_identifier] = ACTIONS(4651), - [sym__automatic_semicolon] = ACTIONS(4651), - [sym_safe_nav] = ACTIONS(4651), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4651), + [sym_enum_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [972] = { - [sym_class_body] = STATE(1167), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_object] = ACTIONS(4490), - [anon_sym_fun] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_this] = ACTIONS(4490), - [anon_sym_super] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4490), - [anon_sym_if] = ACTIONS(4490), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_when] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4490), - [anon_sym_throw] = ACTIONS(4490), - [anon_sym_return] = ACTIONS(4490), - [anon_sym_continue] = ACTIONS(4490), - [anon_sym_break] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4492), - [anon_sym_continue_AT] = ACTIONS(4492), - [anon_sym_break_AT] = ACTIONS(4492), - [sym_real_literal] = ACTIONS(4492), - [sym_integer_literal] = ACTIONS(4490), - [sym_hex_literal] = ACTIONS(4492), - [sym_bin_literal] = ACTIONS(4492), - [anon_sym_true] = ACTIONS(4490), - [anon_sym_false] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4492), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4492), + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4672), + [anon_sym_continue_AT] = ACTIONS(4672), + [anon_sym_break_AT] = ACTIONS(4672), + [anon_sym_this_AT] = ACTIONS(4672), + [anon_sym_super_AT] = ACTIONS(4672), + [sym_real_literal] = ACTIONS(4672), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4672), + [sym_bin_literal] = ACTIONS(4672), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4672), }, [973] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_object] = ACTIONS(4653), - [anon_sym_fun] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_this] = ACTIONS(4653), - [anon_sym_super] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [sym_label] = ACTIONS(4653), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_null] = ACTIONS(4653), - [anon_sym_if] = ACTIONS(4653), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_when] = ACTIONS(4653), - [anon_sym_try] = ACTIONS(4653), - [anon_sym_throw] = ACTIONS(4653), - [anon_sym_return] = ACTIONS(4653), - [anon_sym_continue] = ACTIONS(4653), - [anon_sym_break] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_suspend] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4653), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_lateinit] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_tailrec] = ACTIONS(4653), - [anon_sym_operator] = ACTIONS(4653), - [anon_sym_infix] = ACTIONS(4653), - [anon_sym_inline] = ACTIONS(4653), - [anon_sym_external] = ACTIONS(4653), - [sym_property_modifier] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_final] = ACTIONS(4653), - [anon_sym_open] = ACTIONS(4653), - [anon_sym_vararg] = ACTIONS(4653), - [anon_sym_noinline] = ACTIONS(4653), - [anon_sym_crossinline] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4655), - [anon_sym_continue_AT] = ACTIONS(4655), - [anon_sym_break_AT] = ACTIONS(4655), - [sym_real_literal] = ACTIONS(4655), - [sym_integer_literal] = ACTIONS(4653), - [sym_hex_literal] = ACTIONS(4655), - [sym_bin_literal] = ACTIONS(4655), - [anon_sym_true] = ACTIONS(4653), - [anon_sym_false] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4655), - [sym__backtick_identifier] = ACTIONS(4655), - [sym__automatic_semicolon] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4655), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_object] = ACTIONS(4674), + [anon_sym_fun] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_this] = ACTIONS(4674), + [anon_sym_super] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_when] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4674), + [anon_sym_throw] = ACTIONS(4674), + [anon_sym_return] = ACTIONS(4674), + [anon_sym_continue] = ACTIONS(4674), + [anon_sym_break] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4676), + [anon_sym_continue_AT] = ACTIONS(4676), + [anon_sym_break_AT] = ACTIONS(4676), + [anon_sym_this_AT] = ACTIONS(4676), + [anon_sym_super_AT] = ACTIONS(4676), + [sym_real_literal] = ACTIONS(4676), + [sym_integer_literal] = ACTIONS(4674), + [sym_hex_literal] = ACTIONS(4676), + [sym_bin_literal] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4674), + [anon_sym_false] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4676), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4676), }, [974] = { - [sym__alpha_identifier] = ACTIONS(4657), - [anon_sym_AT] = ACTIONS(4659), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_as] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4659), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4659), - [anon_sym_by] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4657), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_where] = ACTIONS(4657), - [anon_sym_object] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(4657), - [anon_sym_set] = ACTIONS(4657), - [anon_sym_this] = ACTIONS(4657), - [anon_sym_super] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [sym_label] = ACTIONS(4657), - [anon_sym_in] = ACTIONS(4657), - [anon_sym_DOT_DOT] = ACTIONS(4659), - [anon_sym_QMARK_COLON] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_PIPE_PIPE] = ACTIONS(4659), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_else] = ACTIONS(4657), - [anon_sym_when] = ACTIONS(4657), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_throw] = ACTIONS(4657), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_continue] = ACTIONS(4657), - [anon_sym_break] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4659), - [anon_sym_PLUS_EQ] = ACTIONS(4659), - [anon_sym_DASH_EQ] = ACTIONS(4659), - [anon_sym_STAR_EQ] = ACTIONS(4659), - [anon_sym_SLASH_EQ] = ACTIONS(4659), - [anon_sym_PERCENT_EQ] = ACTIONS(4659), - [anon_sym_BANG_EQ] = ACTIONS(4657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), - [anon_sym_EQ_EQ] = ACTIONS(4657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), - [anon_sym_LT_EQ] = ACTIONS(4659), - [anon_sym_GT_EQ] = ACTIONS(4659), - [anon_sym_BANGin] = ACTIONS(4659), - [anon_sym_is] = ACTIONS(4657), - [anon_sym_BANGis] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_as_QMARK] = ACTIONS(4659), - [anon_sym_PLUS_PLUS] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_BANG_BANG] = ACTIONS(4659), - [anon_sym_suspend] = ACTIONS(4657), - [anon_sym_sealed] = ACTIONS(4657), - [anon_sym_annotation] = ACTIONS(4657), - [anon_sym_data] = ACTIONS(4657), - [anon_sym_inner] = ACTIONS(4657), - [anon_sym_value] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_lateinit] = ACTIONS(4657), - [anon_sym_public] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4657), - [anon_sym_internal] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4657), - [anon_sym_tailrec] = ACTIONS(4657), - [anon_sym_operator] = ACTIONS(4657), - [anon_sym_infix] = ACTIONS(4657), - [anon_sym_inline] = ACTIONS(4657), - [anon_sym_external] = ACTIONS(4657), - [sym_property_modifier] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_final] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_vararg] = ACTIONS(4657), - [anon_sym_noinline] = ACTIONS(4657), - [anon_sym_crossinline] = ACTIONS(4657), - [anon_sym_expect] = ACTIONS(4657), - [anon_sym_actual] = ACTIONS(4657), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4659), - [anon_sym_continue_AT] = ACTIONS(4659), - [anon_sym_break_AT] = ACTIONS(4659), - [sym_real_literal] = ACTIONS(4659), - [sym_integer_literal] = ACTIONS(4657), - [sym_hex_literal] = ACTIONS(4659), - [sym_bin_literal] = ACTIONS(4659), - [anon_sym_true] = ACTIONS(4657), - [anon_sym_false] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4659), - [sym__backtick_identifier] = ACTIONS(4659), - [sym__automatic_semicolon] = ACTIONS(4659), - [sym_safe_nav] = ACTIONS(4659), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4659), + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4681), + [anon_sym_continue_AT] = ACTIONS(4681), + [anon_sym_break_AT] = ACTIONS(4681), + [anon_sym_this_AT] = ACTIONS(4681), + [anon_sym_super_AT] = ACTIONS(4681), + [sym_real_literal] = ACTIONS(4681), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4681), + [sym_bin_literal] = ACTIONS(4681), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4681), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4681), }, [975] = { - [sym__alpha_identifier] = ACTIONS(4661), - [anon_sym_AT] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_as] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_by] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4661), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_where] = ACTIONS(4661), - [anon_sym_object] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4661), - [anon_sym_this] = ACTIONS(4661), - [anon_sym_super] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [sym_label] = ACTIONS(4661), - [anon_sym_in] = ACTIONS(4661), - [anon_sym_DOT_DOT] = ACTIONS(4663), - [anon_sym_QMARK_COLON] = ACTIONS(4663), - [anon_sym_AMP_AMP] = ACTIONS(4663), - [anon_sym_PIPE_PIPE] = ACTIONS(4663), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_else] = ACTIONS(4661), - [anon_sym_when] = ACTIONS(4661), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_throw] = ACTIONS(4661), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_continue] = ACTIONS(4661), - [anon_sym_break] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4663), - [anon_sym_PLUS_EQ] = ACTIONS(4663), - [anon_sym_DASH_EQ] = ACTIONS(4663), - [anon_sym_STAR_EQ] = ACTIONS(4663), - [anon_sym_SLASH_EQ] = ACTIONS(4663), - [anon_sym_PERCENT_EQ] = ACTIONS(4663), - [anon_sym_BANG_EQ] = ACTIONS(4661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), - [anon_sym_EQ_EQ] = ACTIONS(4661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), - [anon_sym_LT_EQ] = ACTIONS(4663), - [anon_sym_GT_EQ] = ACTIONS(4663), - [anon_sym_BANGin] = ACTIONS(4663), - [anon_sym_is] = ACTIONS(4661), - [anon_sym_BANGis] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_as_QMARK] = ACTIONS(4663), - [anon_sym_PLUS_PLUS] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_BANG_BANG] = ACTIONS(4663), - [anon_sym_suspend] = ACTIONS(4661), - [anon_sym_sealed] = ACTIONS(4661), - [anon_sym_annotation] = ACTIONS(4661), - [anon_sym_data] = ACTIONS(4661), - [anon_sym_inner] = ACTIONS(4661), - [anon_sym_value] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_lateinit] = ACTIONS(4661), - [anon_sym_public] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4661), - [anon_sym_internal] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4661), - [anon_sym_tailrec] = ACTIONS(4661), - [anon_sym_operator] = ACTIONS(4661), - [anon_sym_infix] = ACTIONS(4661), - [anon_sym_inline] = ACTIONS(4661), - [anon_sym_external] = ACTIONS(4661), - [sym_property_modifier] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_final] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_vararg] = ACTIONS(4661), - [anon_sym_noinline] = ACTIONS(4661), - [anon_sym_crossinline] = ACTIONS(4661), - [anon_sym_expect] = ACTIONS(4661), - [anon_sym_actual] = ACTIONS(4661), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4663), - [anon_sym_continue_AT] = ACTIONS(4663), - [anon_sym_break_AT] = ACTIONS(4663), - [sym_real_literal] = ACTIONS(4663), - [sym_integer_literal] = ACTIONS(4661), - [sym_hex_literal] = ACTIONS(4663), - [sym_bin_literal] = ACTIONS(4663), - [anon_sym_true] = ACTIONS(4661), - [anon_sym_false] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4663), - [sym__backtick_identifier] = ACTIONS(4663), - [sym__automatic_semicolon] = ACTIONS(4663), - [sym_safe_nav] = ACTIONS(4663), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4663), + [aux_sym__delegation_specifiers_repeat1] = STATE(994), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, [976] = { - [sym__alpha_identifier] = ACTIONS(4665), - [anon_sym_AT] = ACTIONS(4667), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_as] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4667), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_LPAREN] = ACTIONS(4667), - [anon_sym_COMMA] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4665), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_where] = ACTIONS(4665), - [anon_sym_object] = ACTIONS(4665), - [anon_sym_fun] = ACTIONS(4665), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4667), - [anon_sym_get] = ACTIONS(4665), - [anon_sym_set] = ACTIONS(4665), - [anon_sym_this] = ACTIONS(4665), - [anon_sym_super] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [sym_label] = ACTIONS(4665), - [anon_sym_in] = ACTIONS(4665), - [anon_sym_DOT_DOT] = ACTIONS(4667), - [anon_sym_QMARK_COLON] = ACTIONS(4667), - [anon_sym_AMP_AMP] = ACTIONS(4667), - [anon_sym_PIPE_PIPE] = ACTIONS(4667), - [anon_sym_null] = ACTIONS(4665), - [anon_sym_if] = ACTIONS(4665), - [anon_sym_else] = ACTIONS(4665), - [anon_sym_when] = ACTIONS(4665), - [anon_sym_try] = ACTIONS(4665), - [anon_sym_throw] = ACTIONS(4665), - [anon_sym_return] = ACTIONS(4665), - [anon_sym_continue] = ACTIONS(4665), - [anon_sym_break] = ACTIONS(4665), - [anon_sym_COLON_COLON] = ACTIONS(4667), - [anon_sym_PLUS_EQ] = ACTIONS(4667), - [anon_sym_DASH_EQ] = ACTIONS(4667), - [anon_sym_STAR_EQ] = ACTIONS(4667), - [anon_sym_SLASH_EQ] = ACTIONS(4667), - [anon_sym_PERCENT_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ] = ACTIONS(4665), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ] = ACTIONS(4665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), - [anon_sym_LT_EQ] = ACTIONS(4667), - [anon_sym_GT_EQ] = ACTIONS(4667), - [anon_sym_BANGin] = ACTIONS(4667), - [anon_sym_is] = ACTIONS(4665), - [anon_sym_BANGis] = ACTIONS(4667), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_as_QMARK] = ACTIONS(4667), - [anon_sym_PLUS_PLUS] = ACTIONS(4667), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_BANG_BANG] = ACTIONS(4667), - [anon_sym_suspend] = ACTIONS(4665), - [anon_sym_sealed] = ACTIONS(4665), - [anon_sym_annotation] = ACTIONS(4665), - [anon_sym_data] = ACTIONS(4665), - [anon_sym_inner] = ACTIONS(4665), - [anon_sym_value] = ACTIONS(4665), - [anon_sym_override] = ACTIONS(4665), - [anon_sym_lateinit] = ACTIONS(4665), - [anon_sym_public] = ACTIONS(4665), - [anon_sym_private] = ACTIONS(4665), - [anon_sym_internal] = ACTIONS(4665), - [anon_sym_protected] = ACTIONS(4665), - [anon_sym_tailrec] = ACTIONS(4665), - [anon_sym_operator] = ACTIONS(4665), - [anon_sym_infix] = ACTIONS(4665), - [anon_sym_inline] = ACTIONS(4665), - [anon_sym_external] = ACTIONS(4665), - [sym_property_modifier] = ACTIONS(4665), - [anon_sym_abstract] = ACTIONS(4665), - [anon_sym_final] = ACTIONS(4665), - [anon_sym_open] = ACTIONS(4665), - [anon_sym_vararg] = ACTIONS(4665), - [anon_sym_noinline] = ACTIONS(4665), - [anon_sym_crossinline] = ACTIONS(4665), - [anon_sym_expect] = ACTIONS(4665), - [anon_sym_actual] = ACTIONS(4665), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4667), - [anon_sym_continue_AT] = ACTIONS(4667), - [anon_sym_break_AT] = ACTIONS(4667), - [sym_real_literal] = ACTIONS(4667), - [sym_integer_literal] = ACTIONS(4665), - [sym_hex_literal] = ACTIONS(4667), - [sym_bin_literal] = ACTIONS(4667), - [anon_sym_true] = ACTIONS(4665), - [anon_sym_false] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4667), - [sym__backtick_identifier] = ACTIONS(4667), - [sym__automatic_semicolon] = ACTIONS(4667), - [sym_safe_nav] = ACTIONS(4667), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4667), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [977] = { - [sym_enum_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [978] = { - [sym__alpha_identifier] = ACTIONS(4669), - [anon_sym_AT] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_where] = ACTIONS(4669), - [anon_sym_object] = ACTIONS(4669), - [anon_sym_fun] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4671), - [anon_sym_get] = ACTIONS(4669), - [anon_sym_set] = ACTIONS(4669), - [anon_sym_this] = ACTIONS(4669), - [anon_sym_super] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [sym_label] = ACTIONS(4669), - [anon_sym_in] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4671), - [anon_sym_QMARK_COLON] = ACTIONS(4671), - [anon_sym_AMP_AMP] = ACTIONS(4671), - [anon_sym_PIPE_PIPE] = ACTIONS(4671), - [anon_sym_null] = ACTIONS(4669), - [anon_sym_if] = ACTIONS(4669), - [anon_sym_else] = ACTIONS(4669), - [anon_sym_when] = ACTIONS(4669), - [anon_sym_try] = ACTIONS(4669), - [anon_sym_throw] = ACTIONS(4669), - [anon_sym_return] = ACTIONS(4669), - [anon_sym_continue] = ACTIONS(4669), - [anon_sym_break] = ACTIONS(4669), - [anon_sym_COLON_COLON] = ACTIONS(4671), - [anon_sym_PLUS_EQ] = ACTIONS(4671), - [anon_sym_DASH_EQ] = ACTIONS(4671), - [anon_sym_STAR_EQ] = ACTIONS(4671), - [anon_sym_SLASH_EQ] = ACTIONS(4671), - [anon_sym_PERCENT_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4671), - [anon_sym_LT_EQ] = ACTIONS(4671), - [anon_sym_GT_EQ] = ACTIONS(4671), - [anon_sym_BANGin] = ACTIONS(4671), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_BANGis] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_as_QMARK] = ACTIONS(4671), - [anon_sym_PLUS_PLUS] = ACTIONS(4671), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_BANG_BANG] = ACTIONS(4671), - [anon_sym_suspend] = ACTIONS(4669), - [anon_sym_sealed] = ACTIONS(4669), - [anon_sym_annotation] = ACTIONS(4669), - [anon_sym_data] = ACTIONS(4669), - [anon_sym_inner] = ACTIONS(4669), - [anon_sym_value] = ACTIONS(4669), - [anon_sym_override] = ACTIONS(4669), - [anon_sym_lateinit] = ACTIONS(4669), - [anon_sym_public] = ACTIONS(4669), - [anon_sym_private] = ACTIONS(4669), - [anon_sym_internal] = ACTIONS(4669), - [anon_sym_protected] = ACTIONS(4669), - [anon_sym_tailrec] = ACTIONS(4669), - [anon_sym_operator] = ACTIONS(4669), - [anon_sym_infix] = ACTIONS(4669), - [anon_sym_inline] = ACTIONS(4669), - [anon_sym_external] = ACTIONS(4669), - [sym_property_modifier] = ACTIONS(4669), - [anon_sym_abstract] = ACTIONS(4669), - [anon_sym_final] = ACTIONS(4669), - [anon_sym_open] = ACTIONS(4669), - [anon_sym_vararg] = ACTIONS(4669), - [anon_sym_noinline] = ACTIONS(4669), - [anon_sym_crossinline] = ACTIONS(4669), - [anon_sym_expect] = ACTIONS(4669), - [anon_sym_actual] = ACTIONS(4669), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4671), - [anon_sym_continue_AT] = ACTIONS(4671), - [anon_sym_break_AT] = ACTIONS(4671), - [sym_real_literal] = ACTIONS(4671), - [sym_integer_literal] = ACTIONS(4669), - [sym_hex_literal] = ACTIONS(4671), - [sym_bin_literal] = ACTIONS(4671), - [anon_sym_true] = ACTIONS(4669), - [anon_sym_false] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4671), - [sym__backtick_identifier] = ACTIONS(4671), - [sym__automatic_semicolon] = ACTIONS(4671), - [sym_safe_nav] = ACTIONS(4671), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4671), + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [979] = { - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_object] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_this] = ACTIONS(4221), - [anon_sym_super] = ACTIONS(4221), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4221), - [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(4221), - [anon_sym_if] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4221), - [anon_sym_when] = ACTIONS(4221), - [anon_sym_try] = ACTIONS(4221), - [anon_sym_throw] = ACTIONS(4221), - [anon_sym_return] = ACTIONS(4221), - [anon_sym_continue] = ACTIONS(4221), - [anon_sym_break] = ACTIONS(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [anon_sym_as_QMARK] = ACTIONS(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_suspend] = ACTIONS(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4221), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [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(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_object] = ACTIONS(4696), + [anon_sym_fun] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_this] = ACTIONS(4696), + [anon_sym_super] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_when] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_continue] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4698), + [anon_sym_continue_AT] = ACTIONS(4698), + [anon_sym_break_AT] = ACTIONS(4698), + [anon_sym_this_AT] = ACTIONS(4698), + [anon_sym_super_AT] = ACTIONS(4698), + [sym_real_literal] = ACTIONS(4698), + [sym_integer_literal] = ACTIONS(4696), + [sym_hex_literal] = ACTIONS(4698), + [sym_bin_literal] = ACTIONS(4698), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4698), }, [980] = { - [sym_class_body] = STATE(1088), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [981] = { - [sym__alpha_identifier] = ACTIONS(4673), - [anon_sym_AT] = ACTIONS(4675), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_as] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_RBRACE] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4673), - [anon_sym_object] = ACTIONS(4673), - [anon_sym_fun] = ACTIONS(4673), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4675), - [anon_sym_get] = ACTIONS(4673), - [anon_sym_set] = ACTIONS(4673), - [anon_sym_this] = ACTIONS(4673), - [anon_sym_super] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(4675), - [anon_sym_QMARK_COLON] = ACTIONS(4675), - [anon_sym_AMP_AMP] = ACTIONS(4675), - [anon_sym_PIPE_PIPE] = ACTIONS(4675), - [anon_sym_null] = ACTIONS(4673), - [anon_sym_if] = ACTIONS(4673), - [anon_sym_else] = ACTIONS(4673), - [anon_sym_when] = ACTIONS(4673), - [anon_sym_try] = ACTIONS(4673), - [anon_sym_throw] = ACTIONS(4673), - [anon_sym_return] = ACTIONS(4673), - [anon_sym_continue] = ACTIONS(4673), - [anon_sym_break] = ACTIONS(4673), - [anon_sym_COLON_COLON] = ACTIONS(4675), - [anon_sym_PLUS_EQ] = ACTIONS(4675), - [anon_sym_DASH_EQ] = ACTIONS(4675), - [anon_sym_STAR_EQ] = ACTIONS(4675), - [anon_sym_SLASH_EQ] = ACTIONS(4675), - [anon_sym_PERCENT_EQ] = ACTIONS(4675), - [anon_sym_BANG_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4675), - [anon_sym_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4675), - [anon_sym_LT_EQ] = ACTIONS(4675), - [anon_sym_GT_EQ] = ACTIONS(4675), - [anon_sym_BANGin] = ACTIONS(4675), - [anon_sym_is] = ACTIONS(4673), - [anon_sym_BANGis] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4675), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_BANG_BANG] = ACTIONS(4675), - [anon_sym_suspend] = ACTIONS(4673), - [anon_sym_sealed] = ACTIONS(4673), - [anon_sym_annotation] = ACTIONS(4673), - [anon_sym_data] = ACTIONS(4673), - [anon_sym_inner] = ACTIONS(4673), - [anon_sym_value] = ACTIONS(4673), - [anon_sym_override] = ACTIONS(4673), - [anon_sym_lateinit] = ACTIONS(4673), - [anon_sym_public] = ACTIONS(4673), - [anon_sym_private] = ACTIONS(4673), - [anon_sym_internal] = ACTIONS(4673), - [anon_sym_protected] = ACTIONS(4673), - [anon_sym_tailrec] = ACTIONS(4673), - [anon_sym_operator] = ACTIONS(4673), - [anon_sym_infix] = ACTIONS(4673), - [anon_sym_inline] = ACTIONS(4673), - [anon_sym_external] = ACTIONS(4673), - [sym_property_modifier] = ACTIONS(4673), - [anon_sym_abstract] = ACTIONS(4673), - [anon_sym_final] = ACTIONS(4673), - [anon_sym_open] = ACTIONS(4673), - [anon_sym_vararg] = ACTIONS(4673), - [anon_sym_noinline] = ACTIONS(4673), - [anon_sym_crossinline] = ACTIONS(4673), - [anon_sym_expect] = ACTIONS(4673), - [anon_sym_actual] = ACTIONS(4673), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4675), - [anon_sym_continue_AT] = ACTIONS(4675), - [anon_sym_break_AT] = ACTIONS(4675), - [sym_real_literal] = ACTIONS(4675), - [sym_integer_literal] = ACTIONS(4673), - [sym_hex_literal] = ACTIONS(4675), - [sym_bin_literal] = ACTIONS(4675), - [anon_sym_true] = ACTIONS(4673), - [anon_sym_false] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4675), - [sym__backtick_identifier] = ACTIONS(4675), - [sym__automatic_semicolon] = ACTIONS(4675), - [sym_safe_nav] = ACTIONS(4675), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4675), + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_object] = ACTIONS(4702), + [anon_sym_fun] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_this] = ACTIONS(4702), + [anon_sym_super] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4702), + [sym_label] = ACTIONS(4702), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4704), + [anon_sym_QMARK_COLON] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_when] = ACTIONS(4702), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_throw] = ACTIONS(4702), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_PERCENT_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ] = ACTIONS(4702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4704), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_as_QMARK] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_BANG_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4704), + [anon_sym_continue_AT] = ACTIONS(4704), + [anon_sym_break_AT] = ACTIONS(4704), + [anon_sym_this_AT] = ACTIONS(4704), + [anon_sym_super_AT] = ACTIONS(4704), + [sym_real_literal] = ACTIONS(4704), + [sym_integer_literal] = ACTIONS(4702), + [sym_hex_literal] = ACTIONS(4704), + [sym_bin_literal] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_SQUOTE] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4704), }, [982] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_object] = ACTIONS(4677), - [anon_sym_fun] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_this] = ACTIONS(4677), - [anon_sym_super] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [sym_label] = ACTIONS(4677), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_null] = ACTIONS(4677), - [anon_sym_if] = ACTIONS(4677), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_when] = ACTIONS(4677), - [anon_sym_try] = ACTIONS(4677), - [anon_sym_throw] = ACTIONS(4677), - [anon_sym_return] = ACTIONS(4677), - [anon_sym_continue] = ACTIONS(4677), - [anon_sym_break] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_suspend] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4677), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_lateinit] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_tailrec] = ACTIONS(4677), - [anon_sym_operator] = ACTIONS(4677), - [anon_sym_infix] = ACTIONS(4677), - [anon_sym_inline] = ACTIONS(4677), - [anon_sym_external] = ACTIONS(4677), - [sym_property_modifier] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_final] = ACTIONS(4677), - [anon_sym_open] = ACTIONS(4677), - [anon_sym_vararg] = ACTIONS(4677), - [anon_sym_noinline] = ACTIONS(4677), - [anon_sym_crossinline] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4679), - [anon_sym_continue_AT] = ACTIONS(4679), - [anon_sym_break_AT] = ACTIONS(4679), - [sym_real_literal] = ACTIONS(4679), - [sym_integer_literal] = ACTIONS(4677), - [sym_hex_literal] = ACTIONS(4679), - [sym_bin_literal] = ACTIONS(4679), - [anon_sym_true] = ACTIONS(4677), - [anon_sym_false] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4679), - [sym__backtick_identifier] = ACTIONS(4679), - [sym__automatic_semicolon] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4679), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), }, [983] = { - [sym_enum_class_body] = STATE(1122), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [984] = { - [sym_class_body] = STATE(1108), - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_object] = ACTIONS(4681), - [anon_sym_fun] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_this] = ACTIONS(4681), - [anon_sym_super] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [sym_label] = ACTIONS(4681), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_null] = ACTIONS(4681), - [anon_sym_if] = ACTIONS(4681), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_when] = ACTIONS(4681), - [anon_sym_try] = ACTIONS(4681), - [anon_sym_throw] = ACTIONS(4681), - [anon_sym_return] = ACTIONS(4681), - [anon_sym_continue] = ACTIONS(4681), - [anon_sym_break] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4683), - [anon_sym_continue_AT] = ACTIONS(4683), - [anon_sym_break_AT] = ACTIONS(4683), - [sym_real_literal] = ACTIONS(4683), - [sym_integer_literal] = ACTIONS(4681), - [sym_hex_literal] = ACTIONS(4683), - [sym_bin_literal] = ACTIONS(4683), - [anon_sym_true] = ACTIONS(4681), - [anon_sym_false] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4683), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4683), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [anon_sym_AT2] = ACTIONS(4714), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), }, [985] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_by] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_object] = ACTIONS(4685), - [anon_sym_fun] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_this] = ACTIONS(4685), - [anon_sym_super] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [sym_label] = ACTIONS(4685), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_null] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_when] = ACTIONS(4685), - [anon_sym_try] = ACTIONS(4685), - [anon_sym_throw] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4687), - [anon_sym_continue_AT] = ACTIONS(4687), - [anon_sym_break_AT] = ACTIONS(4687), - [sym_real_literal] = ACTIONS(4687), - [sym_integer_literal] = ACTIONS(4685), - [sym_hex_literal] = ACTIONS(4687), - [sym_bin_literal] = ACTIONS(4687), - [anon_sym_true] = ACTIONS(4685), - [anon_sym_false] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4687), - [sym__backtick_identifier] = ACTIONS(4687), - [sym__automatic_semicolon] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4687), + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_object] = ACTIONS(4716), + [anon_sym_fun] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_this] = ACTIONS(4716), + [anon_sym_super] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [sym_label] = ACTIONS(4716), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_QMARK_COLON] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(4716), + [anon_sym_if] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_when] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4716), + [anon_sym_throw] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4716), + [anon_sym_continue] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_STAR_EQ] = ACTIONS(4718), + [anon_sym_SLASH_EQ] = ACTIONS(4718), + [anon_sym_PERCENT_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_as_QMARK] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4716), + [anon_sym_BANG_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4718), + [anon_sym_continue_AT] = ACTIONS(4718), + [anon_sym_break_AT] = ACTIONS(4718), + [anon_sym_this_AT] = ACTIONS(4718), + [anon_sym_super_AT] = ACTIONS(4718), + [sym_real_literal] = ACTIONS(4718), + [sym_integer_literal] = ACTIONS(4716), + [sym_hex_literal] = ACTIONS(4718), + [sym_bin_literal] = ACTIONS(4718), + [anon_sym_true] = ACTIONS(4716), + [anon_sym_false] = ACTIONS(4716), + [anon_sym_SQUOTE] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4718), }, [986] = { - [sym__alpha_identifier] = ACTIONS(4689), - [anon_sym_AT] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4691), - [anon_sym_as] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4691), - [anon_sym_RBRACE] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(4689), - [anon_sym_where] = ACTIONS(4689), - [anon_sym_object] = ACTIONS(4689), - [anon_sym_fun] = ACTIONS(4689), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_get] = ACTIONS(4689), - [anon_sym_set] = ACTIONS(4689), - [anon_sym_this] = ACTIONS(4689), - [anon_sym_super] = ACTIONS(4689), - [anon_sym_STAR] = ACTIONS(4689), - [sym_label] = ACTIONS(4689), - [anon_sym_in] = ACTIONS(4689), - [anon_sym_DOT_DOT] = ACTIONS(4691), - [anon_sym_QMARK_COLON] = ACTIONS(4691), - [anon_sym_AMP_AMP] = ACTIONS(4691), - [anon_sym_PIPE_PIPE] = ACTIONS(4691), - [anon_sym_null] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_when] = ACTIONS(4689), - [anon_sym_try] = ACTIONS(4689), - [anon_sym_throw] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4691), - [anon_sym_PLUS_EQ] = ACTIONS(4691), - [anon_sym_DASH_EQ] = ACTIONS(4691), - [anon_sym_STAR_EQ] = ACTIONS(4691), - [anon_sym_SLASH_EQ] = ACTIONS(4691), - [anon_sym_PERCENT_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ] = ACTIONS(4689), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ] = ACTIONS(4689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4691), - [anon_sym_LT_EQ] = ACTIONS(4691), - [anon_sym_GT_EQ] = ACTIONS(4691), - [anon_sym_BANGin] = ACTIONS(4691), - [anon_sym_is] = ACTIONS(4689), - [anon_sym_BANGis] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_SLASH] = ACTIONS(4689), - [anon_sym_PERCENT] = ACTIONS(4689), - [anon_sym_as_QMARK] = ACTIONS(4691), - [anon_sym_PLUS_PLUS] = ACTIONS(4691), - [anon_sym_DASH_DASH] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4689), - [anon_sym_BANG_BANG] = ACTIONS(4691), - [anon_sym_suspend] = ACTIONS(4689), - [anon_sym_sealed] = ACTIONS(4689), - [anon_sym_annotation] = ACTIONS(4689), - [anon_sym_data] = ACTIONS(4689), - [anon_sym_inner] = ACTIONS(4689), - [anon_sym_value] = ACTIONS(4689), - [anon_sym_override] = ACTIONS(4689), - [anon_sym_lateinit] = ACTIONS(4689), - [anon_sym_public] = ACTIONS(4689), - [anon_sym_private] = ACTIONS(4689), - [anon_sym_internal] = ACTIONS(4689), - [anon_sym_protected] = ACTIONS(4689), - [anon_sym_tailrec] = ACTIONS(4689), - [anon_sym_operator] = ACTIONS(4689), - [anon_sym_infix] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_external] = ACTIONS(4689), - [sym_property_modifier] = ACTIONS(4689), - [anon_sym_abstract] = ACTIONS(4689), - [anon_sym_final] = ACTIONS(4689), - [anon_sym_open] = ACTIONS(4689), - [anon_sym_vararg] = ACTIONS(4689), - [anon_sym_noinline] = ACTIONS(4689), - [anon_sym_crossinline] = ACTIONS(4689), - [anon_sym_expect] = ACTIONS(4689), - [anon_sym_actual] = ACTIONS(4689), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4691), - [anon_sym_continue_AT] = ACTIONS(4691), - [anon_sym_break_AT] = ACTIONS(4691), - [sym_real_literal] = ACTIONS(4691), - [sym_integer_literal] = ACTIONS(4689), - [sym_hex_literal] = ACTIONS(4691), - [sym_bin_literal] = ACTIONS(4691), - [anon_sym_true] = ACTIONS(4689), - [anon_sym_false] = ACTIONS(4689), - [anon_sym_SQUOTE] = ACTIONS(4691), - [sym__backtick_identifier] = ACTIONS(4691), - [sym__automatic_semicolon] = ACTIONS(4691), - [sym_safe_nav] = ACTIONS(4691), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4691), + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [987] = { - [sym__alpha_identifier] = ACTIONS(4693), - [anon_sym_AT] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_as] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4693), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_where] = ACTIONS(4693), - [anon_sym_object] = ACTIONS(4693), - [anon_sym_fun] = ACTIONS(4693), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4695), - [anon_sym_get] = ACTIONS(4693), - [anon_sym_set] = ACTIONS(4693), - [anon_sym_this] = ACTIONS(4693), - [anon_sym_super] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [sym_label] = ACTIONS(4693), - [anon_sym_in] = ACTIONS(4693), - [anon_sym_DOT_DOT] = ACTIONS(4695), - [anon_sym_QMARK_COLON] = ACTIONS(4695), - [anon_sym_AMP_AMP] = ACTIONS(4695), - [anon_sym_PIPE_PIPE] = ACTIONS(4695), - [anon_sym_null] = ACTIONS(4693), - [anon_sym_if] = ACTIONS(4693), - [anon_sym_else] = ACTIONS(4693), - [anon_sym_when] = ACTIONS(4693), - [anon_sym_try] = ACTIONS(4693), - [anon_sym_throw] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4693), - [anon_sym_continue] = ACTIONS(4693), - [anon_sym_break] = ACTIONS(4693), - [anon_sym_COLON_COLON] = ACTIONS(4695), - [anon_sym_PLUS_EQ] = ACTIONS(4695), - [anon_sym_DASH_EQ] = ACTIONS(4695), - [anon_sym_STAR_EQ] = ACTIONS(4695), - [anon_sym_SLASH_EQ] = ACTIONS(4695), - [anon_sym_PERCENT_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4695), - [anon_sym_LT_EQ] = ACTIONS(4695), - [anon_sym_GT_EQ] = ACTIONS(4695), - [anon_sym_BANGin] = ACTIONS(4695), - [anon_sym_is] = ACTIONS(4693), - [anon_sym_BANGis] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_as_QMARK] = ACTIONS(4695), - [anon_sym_PLUS_PLUS] = ACTIONS(4695), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_BANG_BANG] = ACTIONS(4695), - [anon_sym_suspend] = ACTIONS(4693), - [anon_sym_sealed] = ACTIONS(4693), - [anon_sym_annotation] = ACTIONS(4693), - [anon_sym_data] = ACTIONS(4693), - [anon_sym_inner] = ACTIONS(4693), - [anon_sym_value] = ACTIONS(4693), - [anon_sym_override] = ACTIONS(4693), - [anon_sym_lateinit] = ACTIONS(4693), - [anon_sym_public] = ACTIONS(4693), - [anon_sym_private] = ACTIONS(4693), - [anon_sym_internal] = ACTIONS(4693), - [anon_sym_protected] = ACTIONS(4693), - [anon_sym_tailrec] = ACTIONS(4693), - [anon_sym_operator] = ACTIONS(4693), - [anon_sym_infix] = ACTIONS(4693), - [anon_sym_inline] = ACTIONS(4693), - [anon_sym_external] = ACTIONS(4693), - [sym_property_modifier] = ACTIONS(4693), - [anon_sym_abstract] = ACTIONS(4693), - [anon_sym_final] = ACTIONS(4693), - [anon_sym_open] = ACTIONS(4693), - [anon_sym_vararg] = ACTIONS(4693), - [anon_sym_noinline] = ACTIONS(4693), - [anon_sym_crossinline] = ACTIONS(4693), - [anon_sym_expect] = ACTIONS(4693), - [anon_sym_actual] = ACTIONS(4693), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4695), - [anon_sym_continue_AT] = ACTIONS(4695), - [anon_sym_break_AT] = ACTIONS(4695), - [sym_real_literal] = ACTIONS(4695), - [sym_integer_literal] = ACTIONS(4693), - [sym_hex_literal] = ACTIONS(4695), - [sym_bin_literal] = ACTIONS(4695), - [anon_sym_L] = ACTIONS(4697), - [anon_sym_true] = ACTIONS(4693), - [anon_sym_false] = ACTIONS(4693), - [anon_sym_SQUOTE] = ACTIONS(4695), - [sym__backtick_identifier] = ACTIONS(4695), - [sym__automatic_semicolon] = ACTIONS(4695), - [sym_safe_nav] = ACTIONS(4695), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4695), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [988] = { - [sym_class_body] = STATE(1100), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_object] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_this] = ACTIONS(4508), - [anon_sym_super] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_throw] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4510), - [anon_sym_continue_AT] = ACTIONS(4510), - [anon_sym_break_AT] = ACTIONS(4510), - [sym_real_literal] = ACTIONS(4510), - [sym_integer_literal] = ACTIONS(4508), - [sym_hex_literal] = ACTIONS(4510), - [sym_bin_literal] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_SQUOTE] = ACTIONS(4510), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4510), + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_object] = ACTIONS(4722), + [anon_sym_fun] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), }, [989] = { - [sym_enum_class_body] = STATE(1097), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), - }, - [990] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3037), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [991] = { - [sym_getter] = STATE(9212), - [sym_setter] = STATE(9212), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9189), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4699), - [anon_sym_get] = ACTIONS(4544), - [anon_sym_set] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -160493,10444 +163644,10823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, + [990] = { + [sym_enum_class_body] = STATE(1174), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [991] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_object] = ACTIONS(4728), + [anon_sym_fun] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_this] = ACTIONS(4728), + [anon_sym_super] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4728), + [anon_sym_throw] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4728), + [anon_sym_continue] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4730), + [anon_sym_continue_AT] = ACTIONS(4730), + [anon_sym_break_AT] = ACTIONS(4730), + [anon_sym_this_AT] = ACTIONS(4730), + [anon_sym_super_AT] = ACTIONS(4730), + [sym_real_literal] = ACTIONS(4730), + [sym_integer_literal] = ACTIONS(4728), + [sym_hex_literal] = ACTIONS(4730), + [sym_bin_literal] = ACTIONS(4730), + [anon_sym_true] = ACTIONS(4728), + [anon_sym_false] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4730), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4730), + }, [992] = { - [sym_enum_class_body] = STATE(1171), - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_object] = ACTIONS(4701), - [anon_sym_fun] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_this] = ACTIONS(4701), - [anon_sym_super] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [sym_label] = ACTIONS(4701), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_null] = ACTIONS(4701), - [anon_sym_if] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_when] = ACTIONS(4701), - [anon_sym_try] = ACTIONS(4701), - [anon_sym_throw] = ACTIONS(4701), - [anon_sym_return] = ACTIONS(4701), - [anon_sym_continue] = ACTIONS(4701), - [anon_sym_break] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_suspend] = ACTIONS(4701), - [anon_sym_sealed] = ACTIONS(4701), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_override] = ACTIONS(4701), - [anon_sym_lateinit] = ACTIONS(4701), - [anon_sym_public] = ACTIONS(4701), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_internal] = ACTIONS(4701), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_tailrec] = ACTIONS(4701), - [anon_sym_operator] = ACTIONS(4701), - [anon_sym_infix] = ACTIONS(4701), - [anon_sym_inline] = ACTIONS(4701), - [anon_sym_external] = ACTIONS(4701), - [sym_property_modifier] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_final] = ACTIONS(4701), - [anon_sym_open] = ACTIONS(4701), - [anon_sym_vararg] = ACTIONS(4701), - [anon_sym_noinline] = ACTIONS(4701), - [anon_sym_crossinline] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4703), - [anon_sym_continue_AT] = ACTIONS(4703), - [anon_sym_break_AT] = ACTIONS(4703), - [sym_real_literal] = ACTIONS(4703), - [sym_integer_literal] = ACTIONS(4701), - [sym_hex_literal] = ACTIONS(4703), - [sym_bin_literal] = ACTIONS(4703), - [anon_sym_true] = ACTIONS(4701), - [anon_sym_false] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4703), - [sym__backtick_identifier] = ACTIONS(4703), - [sym__automatic_semicolon] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4703), + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4732), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), }, [993] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), + [sym_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [994] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3045), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, [995] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_object] = ACTIONS(4740), + [anon_sym_fun] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_this] = ACTIONS(4740), + [anon_sym_super] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [sym_label] = ACTIONS(4740), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_null] = ACTIONS(4740), + [anon_sym_if] = ACTIONS(4740), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_when] = ACTIONS(4740), + [anon_sym_try] = ACTIONS(4740), + [anon_sym_throw] = ACTIONS(4740), + [anon_sym_return] = ACTIONS(4740), + [anon_sym_continue] = ACTIONS(4740), + [anon_sym_break] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG] = ACTIONS(4740), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_suspend] = ACTIONS(4740), + [anon_sym_sealed] = ACTIONS(4740), + [anon_sym_annotation] = ACTIONS(4740), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_override] = ACTIONS(4740), + [anon_sym_lateinit] = ACTIONS(4740), + [anon_sym_public] = ACTIONS(4740), + [anon_sym_private] = ACTIONS(4740), + [anon_sym_internal] = ACTIONS(4740), + [anon_sym_protected] = ACTIONS(4740), + [anon_sym_tailrec] = ACTIONS(4740), + [anon_sym_operator] = ACTIONS(4740), + [anon_sym_infix] = ACTIONS(4740), + [anon_sym_inline] = ACTIONS(4740), + [anon_sym_external] = ACTIONS(4740), + [sym_property_modifier] = ACTIONS(4740), + [anon_sym_abstract] = ACTIONS(4740), + [anon_sym_final] = ACTIONS(4740), + [anon_sym_open] = ACTIONS(4740), + [anon_sym_vararg] = ACTIONS(4740), + [anon_sym_noinline] = ACTIONS(4740), + [anon_sym_crossinline] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4742), + [anon_sym_continue_AT] = ACTIONS(4742), + [anon_sym_break_AT] = ACTIONS(4742), + [anon_sym_this_AT] = ACTIONS(4742), + [anon_sym_super_AT] = ACTIONS(4742), + [sym_real_literal] = ACTIONS(4742), + [sym_integer_literal] = ACTIONS(4740), + [sym_hex_literal] = ACTIONS(4742), + [sym_bin_literal] = ACTIONS(4742), + [anon_sym_L] = ACTIONS(4744), + [anon_sym_true] = ACTIONS(4740), + [anon_sym_false] = ACTIONS(4740), + [anon_sym_SQUOTE] = ACTIONS(4742), + [sym__backtick_identifier] = ACTIONS(4742), + [sym__automatic_semicolon] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4742), }, [996] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_object] = ACTIONS(3055), - [anon_sym_fun] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3055), - [anon_sym_super] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_when] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3057), - [anon_sym_continue_AT] = ACTIONS(3057), - [anon_sym_break_AT] = ACTIONS(3057), - [sym_real_literal] = ACTIONS(3057), - [sym_integer_literal] = ACTIONS(3055), - [sym_hex_literal] = ACTIONS(3057), - [sym_bin_literal] = ACTIONS(3057), - [anon_sym_true] = ACTIONS(3055), - [anon_sym_false] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3057), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3057), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3123), }, [997] = { - [sym_class_body] = STATE(1097), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_object] = ACTIONS(4746), + [anon_sym_fun] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_this] = ACTIONS(4746), + [anon_sym_super] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4746), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4746), + [anon_sym_if] = ACTIONS(4746), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_when] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4746), + [anon_sym_throw] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4746), + [anon_sym_continue] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4748), + [anon_sym_continue_AT] = ACTIONS(4748), + [anon_sym_break_AT] = ACTIONS(4748), + [anon_sym_this_AT] = ACTIONS(4748), + [anon_sym_super_AT] = ACTIONS(4748), + [sym_real_literal] = ACTIONS(4748), + [sym_integer_literal] = ACTIONS(4746), + [sym_hex_literal] = ACTIONS(4748), + [sym_bin_literal] = ACTIONS(4748), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4748), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4748), }, [998] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, [999] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_object] = ACTIONS(4750), + [anon_sym_fun] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_this] = ACTIONS(4750), + [anon_sym_super] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4750), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4750), + [anon_sym_if] = ACTIONS(4750), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_when] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4750), + [anon_sym_throw] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4750), + [anon_sym_continue] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4752), + [anon_sym_continue_AT] = ACTIONS(4752), + [anon_sym_break_AT] = ACTIONS(4752), + [anon_sym_this_AT] = ACTIONS(4752), + [anon_sym_super_AT] = ACTIONS(4752), + [sym_real_literal] = ACTIONS(4752), + [sym_integer_literal] = ACTIONS(4750), + [sym_hex_literal] = ACTIONS(4752), + [sym_bin_literal] = ACTIONS(4752), + [anon_sym_true] = ACTIONS(4750), + [anon_sym_false] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4752), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4752), }, [1000] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3053), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4754), + [anon_sym_if] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_when] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_throw] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_continue] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_AT] = ACTIONS(4756), + [anon_sym_this_AT] = ACTIONS(4756), + [anon_sym_super_AT] = ACTIONS(4756), + [sym_real_literal] = ACTIONS(4756), + [sym_integer_literal] = ACTIONS(4754), + [sym_hex_literal] = ACTIONS(4756), + [sym_bin_literal] = ACTIONS(4756), + [anon_sym_true] = ACTIONS(4754), + [anon_sym_false] = ACTIONS(4754), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4756), }, [1001] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3033), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_object] = ACTIONS(4758), + [anon_sym_fun] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_this] = ACTIONS(4758), + [anon_sym_super] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4758), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4758), + [anon_sym_if] = ACTIONS(4758), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_when] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4758), + [anon_sym_throw] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4758), + [anon_sym_continue] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_AT] = ACTIONS(4760), + [anon_sym_this_AT] = ACTIONS(4760), + [anon_sym_super_AT] = ACTIONS(4760), + [sym_real_literal] = ACTIONS(4760), + [sym_integer_literal] = ACTIONS(4758), + [sym_hex_literal] = ACTIONS(4760), + [sym_bin_literal] = ACTIONS(4760), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [anon_sym_SQUOTE] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4760), }, [1002] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [1003] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [1004] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_null] = ACTIONS(4762), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4765), + [anon_sym_continue_AT] = ACTIONS(4765), + [anon_sym_break_AT] = ACTIONS(4765), + [anon_sym_this_AT] = ACTIONS(4765), + [anon_sym_super_AT] = ACTIONS(4765), + [sym_real_literal] = ACTIONS(4765), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4765), + [sym_bin_literal] = ACTIONS(4765), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4765), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4765), }, [1005] = { - [sym_enum_class_body] = STATE(1066), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [1006] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3007), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), }, [1007] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(4615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4617), + [anon_sym_EQ_EQ] = ACTIONS(4615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [1008] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), }, [1009] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(2996), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [1010] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3049), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, [1011] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3025), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [1012] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3018), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, [1013] = { - [sym__alpha_identifier] = ACTIONS(4709), - [anon_sym_AT] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4711), - [anon_sym_as] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4711), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_by] = ACTIONS(4709), - [anon_sym_LT] = ACTIONS(4709), - [anon_sym_GT] = ACTIONS(4709), - [anon_sym_where] = ACTIONS(4709), - [anon_sym_object] = ACTIONS(4709), - [anon_sym_fun] = ACTIONS(4709), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_SEMI] = ACTIONS(4711), - [anon_sym_get] = ACTIONS(4709), - [anon_sym_set] = ACTIONS(4709), - [anon_sym_this] = ACTIONS(4709), - [anon_sym_super] = ACTIONS(4709), - [anon_sym_STAR] = ACTIONS(4709), - [sym_label] = ACTIONS(4709), - [anon_sym_in] = ACTIONS(4709), - [anon_sym_DOT_DOT] = ACTIONS(4711), - [anon_sym_QMARK_COLON] = ACTIONS(4711), - [anon_sym_AMP_AMP] = ACTIONS(4711), - [anon_sym_PIPE_PIPE] = ACTIONS(4711), - [anon_sym_null] = ACTIONS(4709), - [anon_sym_if] = ACTIONS(4709), - [anon_sym_else] = ACTIONS(4709), - [anon_sym_when] = ACTIONS(4709), - [anon_sym_try] = ACTIONS(4709), - [anon_sym_throw] = ACTIONS(4709), - [anon_sym_return] = ACTIONS(4709), - [anon_sym_continue] = ACTIONS(4709), - [anon_sym_break] = ACTIONS(4709), - [anon_sym_COLON_COLON] = ACTIONS(4711), - [anon_sym_PLUS_EQ] = ACTIONS(4711), - [anon_sym_DASH_EQ] = ACTIONS(4711), - [anon_sym_STAR_EQ] = ACTIONS(4711), - [anon_sym_SLASH_EQ] = ACTIONS(4711), - [anon_sym_PERCENT_EQ] = ACTIONS(4711), - [anon_sym_BANG_EQ] = ACTIONS(4709), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4711), - [anon_sym_EQ_EQ] = ACTIONS(4709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4711), - [anon_sym_LT_EQ] = ACTIONS(4711), - [anon_sym_GT_EQ] = ACTIONS(4711), - [anon_sym_BANGin] = ACTIONS(4711), - [anon_sym_is] = ACTIONS(4709), - [anon_sym_BANGis] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_as_QMARK] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4709), - [anon_sym_BANG_BANG] = ACTIONS(4711), - [anon_sym_suspend] = ACTIONS(4709), - [anon_sym_sealed] = ACTIONS(4709), - [anon_sym_annotation] = ACTIONS(4709), - [anon_sym_data] = ACTIONS(4709), - [anon_sym_inner] = ACTIONS(4709), - [anon_sym_value] = ACTIONS(4709), - [anon_sym_override] = ACTIONS(4709), - [anon_sym_lateinit] = ACTIONS(4709), - [anon_sym_public] = ACTIONS(4709), - [anon_sym_private] = ACTIONS(4709), - [anon_sym_internal] = ACTIONS(4709), - [anon_sym_protected] = ACTIONS(4709), - [anon_sym_tailrec] = ACTIONS(4709), - [anon_sym_operator] = ACTIONS(4709), - [anon_sym_infix] = ACTIONS(4709), - [anon_sym_inline] = ACTIONS(4709), - [anon_sym_external] = ACTIONS(4709), - [sym_property_modifier] = ACTIONS(4709), - [anon_sym_abstract] = ACTIONS(4709), - [anon_sym_final] = ACTIONS(4709), - [anon_sym_open] = ACTIONS(4709), - [anon_sym_vararg] = ACTIONS(4709), - [anon_sym_noinline] = ACTIONS(4709), - [anon_sym_crossinline] = ACTIONS(4709), - [anon_sym_expect] = ACTIONS(4709), - [anon_sym_actual] = ACTIONS(4709), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4711), - [anon_sym_continue_AT] = ACTIONS(4711), - [anon_sym_break_AT] = ACTIONS(4711), - [sym_real_literal] = ACTIONS(4711), - [sym_integer_literal] = ACTIONS(4709), - [sym_hex_literal] = ACTIONS(4711), - [sym_bin_literal] = ACTIONS(4711), - [anon_sym_true] = ACTIONS(4709), - [anon_sym_false] = ACTIONS(4709), - [anon_sym_SQUOTE] = ACTIONS(4711), - [sym__backtick_identifier] = ACTIONS(4711), - [sym__automatic_semicolon] = ACTIONS(4711), - [sym_safe_nav] = ACTIONS(4711), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4711), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2105), + [sym__in_operator] = STATE(2101), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2093), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2078), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, [1014] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3000), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1015] = { - [sym__alpha_identifier] = ACTIONS(4713), - [anon_sym_AT] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4715), - [anon_sym_as] = ACTIONS(4713), - [anon_sym_EQ] = ACTIONS(4713), - [anon_sym_LBRACE] = ACTIONS(4715), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_COMMA] = ACTIONS(4715), - [anon_sym_by] = ACTIONS(4713), - [anon_sym_LT] = ACTIONS(4713), - [anon_sym_GT] = ACTIONS(4713), - [anon_sym_where] = ACTIONS(4713), - [anon_sym_object] = ACTIONS(4713), - [anon_sym_fun] = ACTIONS(4713), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_SEMI] = ACTIONS(4715), - [anon_sym_get] = ACTIONS(4713), - [anon_sym_set] = ACTIONS(4713), - [anon_sym_this] = ACTIONS(4713), - [anon_sym_super] = ACTIONS(4713), - [anon_sym_STAR] = ACTIONS(4713), - [sym_label] = ACTIONS(4713), - [anon_sym_in] = ACTIONS(4713), - [anon_sym_DOT_DOT] = ACTIONS(4715), - [anon_sym_QMARK_COLON] = ACTIONS(4715), - [anon_sym_AMP_AMP] = ACTIONS(4715), - [anon_sym_PIPE_PIPE] = ACTIONS(4715), - [anon_sym_null] = ACTIONS(4713), - [anon_sym_if] = ACTIONS(4713), - [anon_sym_else] = ACTIONS(4713), - [anon_sym_when] = ACTIONS(4713), - [anon_sym_try] = ACTIONS(4713), - [anon_sym_throw] = ACTIONS(4713), - [anon_sym_return] = ACTIONS(4713), - [anon_sym_continue] = ACTIONS(4713), - [anon_sym_break] = ACTIONS(4713), - [anon_sym_COLON_COLON] = ACTIONS(4715), - [anon_sym_PLUS_EQ] = ACTIONS(4715), - [anon_sym_DASH_EQ] = ACTIONS(4715), - [anon_sym_STAR_EQ] = ACTIONS(4715), - [anon_sym_SLASH_EQ] = ACTIONS(4715), - [anon_sym_PERCENT_EQ] = ACTIONS(4715), - [anon_sym_BANG_EQ] = ACTIONS(4713), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4715), - [anon_sym_EQ_EQ] = ACTIONS(4713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4715), - [anon_sym_LT_EQ] = ACTIONS(4715), - [anon_sym_GT_EQ] = ACTIONS(4715), - [anon_sym_BANGin] = ACTIONS(4715), - [anon_sym_is] = ACTIONS(4713), - [anon_sym_BANGis] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4713), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_SLASH] = ACTIONS(4713), - [anon_sym_PERCENT] = ACTIONS(4713), - [anon_sym_as_QMARK] = ACTIONS(4715), - [anon_sym_PLUS_PLUS] = ACTIONS(4715), - [anon_sym_DASH_DASH] = ACTIONS(4715), - [anon_sym_BANG] = ACTIONS(4713), - [anon_sym_BANG_BANG] = ACTIONS(4715), - [anon_sym_suspend] = ACTIONS(4713), - [anon_sym_sealed] = ACTIONS(4713), - [anon_sym_annotation] = ACTIONS(4713), - [anon_sym_data] = ACTIONS(4713), - [anon_sym_inner] = ACTIONS(4713), - [anon_sym_value] = ACTIONS(4713), - [anon_sym_override] = ACTIONS(4713), - [anon_sym_lateinit] = ACTIONS(4713), - [anon_sym_public] = ACTIONS(4713), - [anon_sym_private] = ACTIONS(4713), - [anon_sym_internal] = ACTIONS(4713), - [anon_sym_protected] = ACTIONS(4713), - [anon_sym_tailrec] = ACTIONS(4713), - [anon_sym_operator] = ACTIONS(4713), - [anon_sym_infix] = ACTIONS(4713), - [anon_sym_inline] = ACTIONS(4713), - [anon_sym_external] = ACTIONS(4713), - [sym_property_modifier] = ACTIONS(4713), - [anon_sym_abstract] = ACTIONS(4713), - [anon_sym_final] = ACTIONS(4713), - [anon_sym_open] = ACTIONS(4713), - [anon_sym_vararg] = ACTIONS(4713), - [anon_sym_noinline] = ACTIONS(4713), - [anon_sym_crossinline] = ACTIONS(4713), - [anon_sym_expect] = ACTIONS(4713), - [anon_sym_actual] = ACTIONS(4713), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4715), - [anon_sym_continue_AT] = ACTIONS(4715), - [anon_sym_break_AT] = ACTIONS(4715), - [sym_real_literal] = ACTIONS(4715), - [sym_integer_literal] = ACTIONS(4713), - [sym_hex_literal] = ACTIONS(4715), - [sym_bin_literal] = ACTIONS(4715), - [anon_sym_true] = ACTIONS(4713), - [anon_sym_false] = ACTIONS(4713), - [anon_sym_SQUOTE] = ACTIONS(4715), - [sym__backtick_identifier] = ACTIONS(4715), - [sym__automatic_semicolon] = ACTIONS(4715), - [sym_safe_nav] = ACTIONS(4715), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4715), + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, [1016] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_DASH_GT] = ACTIONS(3091), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [1017] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3080), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4774), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [anon_sym_this_AT] = ACTIONS(4776), + [anon_sym_super_AT] = ACTIONS(4776), + [sym_real_literal] = ACTIONS(4776), + [sym_integer_literal] = ACTIONS(4774), + [sym_hex_literal] = ACTIONS(4776), + [sym_bin_literal] = ACTIONS(4776), + [anon_sym_true] = ACTIONS(4774), + [anon_sym_false] = ACTIONS(4774), + [anon_sym_SQUOTE] = ACTIONS(4776), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4776), }, [1018] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3087), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4778), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), }, [1019] = { - [sym__alpha_identifier] = ACTIONS(4717), - [anon_sym_AT] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4717), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4717), - [anon_sym_EQ] = ACTIONS(4717), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4717), - [anon_sym_GT] = ACTIONS(4717), - [anon_sym_where] = ACTIONS(4717), - [anon_sym_object] = ACTIONS(4717), - [anon_sym_fun] = ACTIONS(4717), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_get] = ACTIONS(4717), - [anon_sym_set] = ACTIONS(4717), - [anon_sym_this] = ACTIONS(4717), - [anon_sym_super] = ACTIONS(4717), - [anon_sym_STAR] = ACTIONS(4717), - [sym_label] = ACTIONS(4717), - [anon_sym_in] = ACTIONS(4717), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_QMARK_COLON] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_null] = ACTIONS(4717), - [anon_sym_if] = ACTIONS(4717), - [anon_sym_else] = ACTIONS(4717), - [anon_sym_when] = ACTIONS(4717), - [anon_sym_try] = ACTIONS(4717), - [anon_sym_throw] = ACTIONS(4717), - [anon_sym_return] = ACTIONS(4717), - [anon_sym_continue] = ACTIONS(4717), - [anon_sym_break] = ACTIONS(4717), - [anon_sym_COLON_COLON] = ACTIONS(4719), - [anon_sym_PLUS_EQ] = ACTIONS(4719), - [anon_sym_DASH_EQ] = ACTIONS(4719), - [anon_sym_STAR_EQ] = ACTIONS(4719), - [anon_sym_SLASH_EQ] = ACTIONS(4719), - [anon_sym_PERCENT_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_BANGin] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4717), - [anon_sym_BANGis] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4717), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_SLASH] = ACTIONS(4717), - [anon_sym_PERCENT] = ACTIONS(4717), - [anon_sym_as_QMARK] = ACTIONS(4719), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(4717), - [anon_sym_BANG_BANG] = ACTIONS(4719), - [anon_sym_suspend] = ACTIONS(4717), - [anon_sym_sealed] = ACTIONS(4717), - [anon_sym_annotation] = ACTIONS(4717), - [anon_sym_data] = ACTIONS(4717), - [anon_sym_inner] = ACTIONS(4717), - [anon_sym_value] = ACTIONS(4717), - [anon_sym_override] = ACTIONS(4717), - [anon_sym_lateinit] = ACTIONS(4717), - [anon_sym_public] = ACTIONS(4717), - [anon_sym_private] = ACTIONS(4717), - [anon_sym_internal] = ACTIONS(4717), - [anon_sym_protected] = ACTIONS(4717), - [anon_sym_tailrec] = ACTIONS(4717), - [anon_sym_operator] = ACTIONS(4717), - [anon_sym_infix] = ACTIONS(4717), - [anon_sym_inline] = ACTIONS(4717), - [anon_sym_external] = ACTIONS(4717), - [sym_property_modifier] = ACTIONS(4717), - [anon_sym_abstract] = ACTIONS(4717), - [anon_sym_final] = ACTIONS(4717), - [anon_sym_open] = ACTIONS(4717), - [anon_sym_vararg] = ACTIONS(4717), - [anon_sym_noinline] = ACTIONS(4717), - [anon_sym_crossinline] = ACTIONS(4717), - [anon_sym_expect] = ACTIONS(4717), - [anon_sym_actual] = ACTIONS(4717), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4719), - [anon_sym_continue_AT] = ACTIONS(4719), - [anon_sym_break_AT] = ACTIONS(4719), - [sym_real_literal] = ACTIONS(4719), - [sym_integer_literal] = ACTIONS(4717), - [sym_hex_literal] = ACTIONS(4719), - [sym_bin_literal] = ACTIONS(4719), - [anon_sym_true] = ACTIONS(4717), - [anon_sym_false] = ACTIONS(4717), - [anon_sym_SQUOTE] = ACTIONS(4719), - [sym__backtick_identifier] = ACTIONS(4719), - [sym__automatic_semicolon] = ACTIONS(4719), - [sym_safe_nav] = ACTIONS(4719), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4719), + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_object] = ACTIONS(4782), + [anon_sym_fun] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_this] = ACTIONS(4782), + [anon_sym_super] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [sym_label] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4782), + [anon_sym_if] = ACTIONS(4782), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_when] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4782), + [anon_sym_throw] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4782), + [anon_sym_continue] = ACTIONS(4782), + [anon_sym_break] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4782), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_suspend] = ACTIONS(4782), + [anon_sym_sealed] = ACTIONS(4782), + [anon_sym_annotation] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_override] = ACTIONS(4782), + [anon_sym_lateinit] = ACTIONS(4782), + [anon_sym_public] = ACTIONS(4782), + [anon_sym_private] = ACTIONS(4782), + [anon_sym_internal] = ACTIONS(4782), + [anon_sym_protected] = ACTIONS(4782), + [anon_sym_tailrec] = ACTIONS(4782), + [anon_sym_operator] = ACTIONS(4782), + [anon_sym_infix] = ACTIONS(4782), + [anon_sym_inline] = ACTIONS(4782), + [anon_sym_external] = ACTIONS(4782), + [sym_property_modifier] = ACTIONS(4782), + [anon_sym_abstract] = ACTIONS(4782), + [anon_sym_final] = ACTIONS(4782), + [anon_sym_open] = ACTIONS(4782), + [anon_sym_vararg] = ACTIONS(4782), + [anon_sym_noinline] = ACTIONS(4782), + [anon_sym_crossinline] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4784), + [anon_sym_continue_AT] = ACTIONS(4784), + [anon_sym_break_AT] = ACTIONS(4784), + [anon_sym_this_AT] = ACTIONS(4784), + [anon_sym_super_AT] = ACTIONS(4784), + [sym_real_literal] = ACTIONS(4784), + [sym_integer_literal] = ACTIONS(4782), + [sym_hex_literal] = ACTIONS(4784), + [sym_bin_literal] = ACTIONS(4784), + [anon_sym_true] = ACTIONS(4782), + [anon_sym_false] = ACTIONS(4782), + [anon_sym_SQUOTE] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4784), + [sym__automatic_semicolon] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4784), }, [1020] = { - [sym_class_body] = STATE(1056), - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_object] = ACTIONS(4721), - [anon_sym_fun] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_this] = ACTIONS(4721), - [anon_sym_super] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [sym_label] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_null] = ACTIONS(4721), - [anon_sym_if] = ACTIONS(4721), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_when] = ACTIONS(4721), - [anon_sym_try] = ACTIONS(4721), - [anon_sym_throw] = ACTIONS(4721), - [anon_sym_return] = ACTIONS(4721), - [anon_sym_continue] = ACTIONS(4721), - [anon_sym_break] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_suspend] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_annotation] = ACTIONS(4721), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_lateinit] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_tailrec] = ACTIONS(4721), - [anon_sym_operator] = ACTIONS(4721), - [anon_sym_infix] = ACTIONS(4721), - [anon_sym_inline] = ACTIONS(4721), - [anon_sym_external] = ACTIONS(4721), - [sym_property_modifier] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_final] = ACTIONS(4721), - [anon_sym_open] = ACTIONS(4721), - [anon_sym_vararg] = ACTIONS(4721), - [anon_sym_noinline] = ACTIONS(4721), - [anon_sym_crossinline] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4723), - [anon_sym_continue_AT] = ACTIONS(4723), - [anon_sym_break_AT] = ACTIONS(4723), - [sym_real_literal] = ACTIONS(4723), - [sym_integer_literal] = ACTIONS(4721), - [sym_hex_literal] = ACTIONS(4723), - [sym_bin_literal] = ACTIONS(4723), - [anon_sym_true] = ACTIONS(4721), - [anon_sym_false] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4723), - [sym__backtick_identifier] = ACTIONS(4723), - [sym__automatic_semicolon] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4723), + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_object] = ACTIONS(4786), + [anon_sym_fun] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_this] = ACTIONS(4786), + [anon_sym_super] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [sym_label] = ACTIONS(4786), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4786), + [anon_sym_if] = ACTIONS(4786), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_when] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4786), + [anon_sym_throw] = ACTIONS(4786), + [anon_sym_return] = ACTIONS(4786), + [anon_sym_continue] = ACTIONS(4786), + [anon_sym_break] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4786), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_suspend] = ACTIONS(4786), + [anon_sym_sealed] = ACTIONS(4786), + [anon_sym_annotation] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_override] = ACTIONS(4786), + [anon_sym_lateinit] = ACTIONS(4786), + [anon_sym_public] = ACTIONS(4786), + [anon_sym_private] = ACTIONS(4786), + [anon_sym_internal] = ACTIONS(4786), + [anon_sym_protected] = ACTIONS(4786), + [anon_sym_tailrec] = ACTIONS(4786), + [anon_sym_operator] = ACTIONS(4786), + [anon_sym_infix] = ACTIONS(4786), + [anon_sym_inline] = ACTIONS(4786), + [anon_sym_external] = ACTIONS(4786), + [sym_property_modifier] = ACTIONS(4786), + [anon_sym_abstract] = ACTIONS(4786), + [anon_sym_final] = ACTIONS(4786), + [anon_sym_open] = ACTIONS(4786), + [anon_sym_vararg] = ACTIONS(4786), + [anon_sym_noinline] = ACTIONS(4786), + [anon_sym_crossinline] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4788), + [anon_sym_continue_AT] = ACTIONS(4788), + [anon_sym_break_AT] = ACTIONS(4788), + [anon_sym_this_AT] = ACTIONS(4788), + [anon_sym_super_AT] = ACTIONS(4788), + [sym_real_literal] = ACTIONS(4788), + [sym_integer_literal] = ACTIONS(4786), + [sym_hex_literal] = ACTIONS(4788), + [sym_bin_literal] = ACTIONS(4788), + [anon_sym_true] = ACTIONS(4786), + [anon_sym_false] = ACTIONS(4786), + [anon_sym_SQUOTE] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4788), }, [1021] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3014), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [1022] = { - [sym_enum_class_body] = STATE(1139), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_object] = ACTIONS(4429), - [anon_sym_fun] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_this] = ACTIONS(4429), - [anon_sym_super] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_when] = ACTIONS(4429), - [anon_sym_try] = ACTIONS(4429), - [anon_sym_throw] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4431), - [anon_sym_continue_AT] = ACTIONS(4431), - [anon_sym_break_AT] = ACTIONS(4431), - [sym_real_literal] = ACTIONS(4431), - [sym_integer_literal] = ACTIONS(4429), - [sym_hex_literal] = ACTIONS(4431), - [sym_bin_literal] = ACTIONS(4431), - [anon_sym_true] = ACTIONS(4429), - [anon_sym_false] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4431), - }, - [1023] = { - [sym_enum_class_body] = STATE(1054), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3182), - [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_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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), - }, - [1024] = { - [sym__alpha_identifier] = ACTIONS(4725), - [anon_sym_AT] = ACTIONS(4727), - [anon_sym_COLON] = ACTIONS(4725), - [anon_sym_LBRACK] = ACTIONS(4727), - [anon_sym_as] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(4727), - [anon_sym_RBRACE] = ACTIONS(4727), - [anon_sym_LPAREN] = ACTIONS(4727), - [anon_sym_COMMA] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_where] = ACTIONS(4725), - [anon_sym_object] = ACTIONS(4725), - [anon_sym_fun] = ACTIONS(4725), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_get] = ACTIONS(4725), - [anon_sym_set] = ACTIONS(4725), - [anon_sym_this] = ACTIONS(4725), - [anon_sym_super] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4725), - [sym_label] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_DOT_DOT] = ACTIONS(4727), - [anon_sym_QMARK_COLON] = ACTIONS(4727), - [anon_sym_AMP_AMP] = ACTIONS(4727), - [anon_sym_PIPE_PIPE] = ACTIONS(4727), - [anon_sym_null] = ACTIONS(4725), - [anon_sym_if] = ACTIONS(4725), - [anon_sym_else] = ACTIONS(4725), - [anon_sym_when] = ACTIONS(4725), - [anon_sym_try] = ACTIONS(4725), - [anon_sym_throw] = ACTIONS(4725), - [anon_sym_return] = ACTIONS(4725), - [anon_sym_continue] = ACTIONS(4725), - [anon_sym_break] = ACTIONS(4725), - [anon_sym_COLON_COLON] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4727), - [anon_sym_STAR_EQ] = ACTIONS(4727), - [anon_sym_SLASH_EQ] = ACTIONS(4727), - [anon_sym_PERCENT_EQ] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4727), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4727), - [anon_sym_LT_EQ] = ACTIONS(4727), - [anon_sym_GT_EQ] = ACTIONS(4727), - [anon_sym_BANGin] = ACTIONS(4727), - [anon_sym_is] = ACTIONS(4725), - [anon_sym_BANGis] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4725), - [anon_sym_as_QMARK] = ACTIONS(4727), - [anon_sym_PLUS_PLUS] = ACTIONS(4727), - [anon_sym_DASH_DASH] = ACTIONS(4727), - [anon_sym_BANG] = ACTIONS(4725), - [anon_sym_BANG_BANG] = ACTIONS(4727), - [anon_sym_suspend] = ACTIONS(4725), - [anon_sym_sealed] = ACTIONS(4725), - [anon_sym_annotation] = ACTIONS(4725), - [anon_sym_data] = ACTIONS(4725), - [anon_sym_inner] = ACTIONS(4725), - [anon_sym_value] = ACTIONS(4725), - [anon_sym_override] = ACTIONS(4725), - [anon_sym_lateinit] = ACTIONS(4725), - [anon_sym_public] = ACTIONS(4725), - [anon_sym_private] = ACTIONS(4725), - [anon_sym_internal] = ACTIONS(4725), - [anon_sym_protected] = ACTIONS(4725), - [anon_sym_tailrec] = ACTIONS(4725), - [anon_sym_operator] = ACTIONS(4725), - [anon_sym_infix] = ACTIONS(4725), - [anon_sym_inline] = ACTIONS(4725), - [anon_sym_external] = ACTIONS(4725), - [sym_property_modifier] = ACTIONS(4725), - [anon_sym_abstract] = ACTIONS(4725), - [anon_sym_final] = ACTIONS(4725), - [anon_sym_open] = ACTIONS(4725), - [anon_sym_vararg] = ACTIONS(4725), - [anon_sym_noinline] = ACTIONS(4725), - [anon_sym_crossinline] = ACTIONS(4725), - [anon_sym_expect] = ACTIONS(4725), - [anon_sym_actual] = ACTIONS(4725), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4727), - [anon_sym_continue_AT] = ACTIONS(4727), - [anon_sym_break_AT] = ACTIONS(4727), - [sym_real_literal] = ACTIONS(4727), - [sym_integer_literal] = ACTIONS(4725), - [sym_hex_literal] = ACTIONS(4727), - [sym_bin_literal] = ACTIONS(4727), - [anon_sym_true] = ACTIONS(4725), - [anon_sym_false] = ACTIONS(4725), - [anon_sym_SQUOTE] = ACTIONS(4727), - [sym__backtick_identifier] = ACTIONS(4727), - [sym__automatic_semicolon] = ACTIONS(4727), - [sym_safe_nav] = ACTIONS(4727), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4727), - }, - [1025] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3041), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [1026] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), - }, - [1027] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), - }, - [1028] = { - [sym_class_body] = STATE(1119), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_object] = ACTIONS(4729), - [anon_sym_fun] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_this] = ACTIONS(4729), - [anon_sym_super] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_null] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_when] = ACTIONS(4729), - [anon_sym_try] = ACTIONS(4729), - [anon_sym_throw] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4731), - [anon_sym_continue_AT] = ACTIONS(4731), - [anon_sym_break_AT] = ACTIONS(4731), - [sym_real_literal] = ACTIONS(4731), - [sym_integer_literal] = ACTIONS(4729), - [sym_hex_literal] = ACTIONS(4731), - [sym_bin_literal] = ACTIONS(4731), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4731), - }, - [1029] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), - }, - [1030] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), - }, - [1031] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), - }, - [1032] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4633), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), - }, - [1033] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3057), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3055), - [anon_sym_sealed] = ACTIONS(3055), - [anon_sym_annotation] = ACTIONS(3055), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3055), - [anon_sym_lateinit] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_internal] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_tailrec] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_infix] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym_external] = ACTIONS(3055), - [sym_property_modifier] = ACTIONS(3055), - [anon_sym_abstract] = ACTIONS(3055), - [anon_sym_final] = ACTIONS(3055), - [anon_sym_open] = ACTIONS(3055), - [anon_sym_vararg] = ACTIONS(3055), - [anon_sym_noinline] = ACTIONS(3055), - [anon_sym_crossinline] = ACTIONS(3055), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [1034] = { - [sym_function_body] = STATE(1062), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(4733), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), - }, - [1035] = { - [sym_function_body] = STATE(1090), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(4735), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [1036] = { - [sym_getter] = STATE(9125), - [sym_setter] = STATE(9125), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9189), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4737), - [anon_sym_get] = ACTIONS(4544), - [anon_sym_set] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1037] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(4739), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [1038] = { - [sym_getter] = STATE(9083), - [sym_setter] = STATE(9083), - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_modifiers] = STATE(9189), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_get] = ACTIONS(4544), - [anon_sym_set] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), }, - [1039] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2116), - [sym__comparison_operator] = STATE(2114), - [sym__in_operator] = STATE(2109), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2108), - [sym__multiplicative_operator] = STATE(2107), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2105), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3384), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_DASH_GT] = ACTIONS(3029), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_QMARK_COLON] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT_EQ] = ACTIONS(3414), - [anon_sym_GT_EQ] = ACTIONS(3414), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [1022] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_suspend] = ACTIONS(4253), + [anon_sym_sealed] = ACTIONS(4253), + [anon_sym_annotation] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_override] = ACTIONS(4253), + [anon_sym_lateinit] = ACTIONS(4253), + [anon_sym_public] = ACTIONS(4253), + [anon_sym_private] = ACTIONS(4253), + [anon_sym_internal] = ACTIONS(4253), + [anon_sym_protected] = ACTIONS(4253), + [anon_sym_tailrec] = ACTIONS(4253), + [anon_sym_operator] = ACTIONS(4253), + [anon_sym_infix] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym_external] = ACTIONS(4253), + [sym_property_modifier] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4253), + [anon_sym_final] = ACTIONS(4253), + [anon_sym_open] = ACTIONS(4253), + [anon_sym_vararg] = ACTIONS(4253), + [anon_sym_noinline] = ACTIONS(4253), + [anon_sym_crossinline] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym__automatic_semicolon] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [1023] = { + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [1024] = { + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_object] = ACTIONS(4790), + [anon_sym_fun] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_this] = ACTIONS(4790), + [anon_sym_super] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4790), + [anon_sym_if] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_when] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4790), + [anon_sym_throw] = ACTIONS(4790), + [anon_sym_return] = ACTIONS(4790), + [anon_sym_continue] = ACTIONS(4790), + [anon_sym_break] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_suspend] = ACTIONS(4790), + [anon_sym_sealed] = ACTIONS(4790), + [anon_sym_annotation] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_override] = ACTIONS(4790), + [anon_sym_lateinit] = ACTIONS(4790), + [anon_sym_public] = ACTIONS(4790), + [anon_sym_private] = ACTIONS(4790), + [anon_sym_internal] = ACTIONS(4790), + [anon_sym_protected] = ACTIONS(4790), + [anon_sym_tailrec] = ACTIONS(4790), + [anon_sym_operator] = ACTIONS(4790), + [anon_sym_infix] = ACTIONS(4790), + [anon_sym_inline] = ACTIONS(4790), + [anon_sym_external] = ACTIONS(4790), + [sym_property_modifier] = ACTIONS(4790), + [anon_sym_abstract] = ACTIONS(4790), + [anon_sym_final] = ACTIONS(4790), + [anon_sym_open] = ACTIONS(4790), + [anon_sym_vararg] = ACTIONS(4790), + [anon_sym_noinline] = ACTIONS(4790), + [anon_sym_crossinline] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4792), + [anon_sym_continue_AT] = ACTIONS(4792), + [anon_sym_break_AT] = ACTIONS(4792), + [anon_sym_this_AT] = ACTIONS(4792), + [anon_sym_super_AT] = ACTIONS(4792), + [sym_real_literal] = ACTIONS(4792), + [sym_integer_literal] = ACTIONS(4790), + [sym_hex_literal] = ACTIONS(4792), + [sym_bin_literal] = ACTIONS(4792), + [anon_sym_true] = ACTIONS(4790), + [anon_sym_false] = ACTIONS(4790), + [anon_sym_SQUOTE] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4792), + [sym__automatic_semicolon] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4792), + }, + [1025] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_when] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4794), + [anon_sym_throw] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4794), + [anon_sym_continue] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4796), + [anon_sym_continue_AT] = ACTIONS(4796), + [anon_sym_break_AT] = ACTIONS(4796), + [anon_sym_this_AT] = ACTIONS(4796), + [anon_sym_super_AT] = ACTIONS(4796), + [sym_real_literal] = ACTIONS(4796), + [sym_integer_literal] = ACTIONS(4794), + [sym_hex_literal] = ACTIONS(4796), + [sym_bin_literal] = ACTIONS(4796), + [anon_sym_true] = ACTIONS(4794), + [anon_sym_false] = ACTIONS(4794), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), + }, + [1026] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [sym_label] = ACTIONS(3113), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [1027] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_object] = ACTIONS(4798), + [anon_sym_fun] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_this] = ACTIONS(4798), + [anon_sym_super] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4798), + [anon_sym_throw] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_continue] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4800), + [anon_sym_continue_AT] = ACTIONS(4800), + [anon_sym_break_AT] = ACTIONS(4800), + [anon_sym_this_AT] = ACTIONS(4800), + [anon_sym_super_AT] = ACTIONS(4800), + [sym_real_literal] = ACTIONS(4800), + [sym_integer_literal] = ACTIONS(4798), + [sym_hex_literal] = ACTIONS(4800), + [sym_bin_literal] = ACTIONS(4800), + [anon_sym_true] = ACTIONS(4798), + [anon_sym_false] = ACTIONS(4798), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4800), + }, + [1028] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), + }, + [1029] = { + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(3344), + [anon_sym_sealed] = ACTIONS(3344), + [anon_sym_annotation] = ACTIONS(3344), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_lateinit] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_internal] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_tailrec] = ACTIONS(3344), + [anon_sym_operator] = ACTIONS(3344), + [anon_sym_infix] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_external] = ACTIONS(3344), + [sym_property_modifier] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_vararg] = ACTIONS(3344), + [anon_sym_noinline] = ACTIONS(3344), + [anon_sym_crossinline] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [1030] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [1031] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_object] = ACTIONS(4804), + [anon_sym_fun] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_this] = ACTIONS(4804), + [anon_sym_super] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_when] = ACTIONS(4804), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_throw] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4806), + [anon_sym_continue_AT] = ACTIONS(4806), + [anon_sym_break_AT] = ACTIONS(4806), + [anon_sym_this_AT] = ACTIONS(4806), + [anon_sym_super_AT] = ACTIONS(4806), + [sym_real_literal] = ACTIONS(4806), + [sym_integer_literal] = ACTIONS(4804), + [sym_hex_literal] = ACTIONS(4806), + [sym_bin_literal] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4806), + }, + [1032] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [1033] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4812), + [anon_sym_fun] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_this] = ACTIONS(4812), + [anon_sym_super] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_null] = ACTIONS(4812), + [anon_sym_if] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_when] = ACTIONS(4812), + [anon_sym_try] = ACTIONS(4812), + [anon_sym_throw] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_continue] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4814), + [anon_sym_continue_AT] = ACTIONS(4814), + [anon_sym_break_AT] = ACTIONS(4814), + [anon_sym_this_AT] = ACTIONS(4814), + [anon_sym_super_AT] = ACTIONS(4814), + [sym_real_literal] = ACTIONS(4814), + [sym_integer_literal] = ACTIONS(4812), + [sym_hex_literal] = ACTIONS(4814), + [sym_bin_literal] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4814), + }, + [1034] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), + }, + [1035] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [1036] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_object] = ACTIONS(4826), + [anon_sym_fun] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_this] = ACTIONS(4826), + [anon_sym_super] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [sym_label] = ACTIONS(4826), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_when] = ACTIONS(4826), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_throw] = ACTIONS(4826), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_suspend] = ACTIONS(4826), + [anon_sym_sealed] = ACTIONS(4826), + [anon_sym_annotation] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4828), + [anon_sym_continue_AT] = ACTIONS(4828), + [anon_sym_break_AT] = ACTIONS(4828), + [anon_sym_this_AT] = ACTIONS(4828), + [anon_sym_super_AT] = ACTIONS(4828), + [sym_real_literal] = ACTIONS(4828), + [sym_integer_literal] = ACTIONS(4826), + [sym_hex_literal] = ACTIONS(4828), + [sym_bin_literal] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4828), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4828), + }, + [1037] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [1038] = { + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_object] = ACTIONS(4834), + [anon_sym_fun] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_this] = ACTIONS(4834), + [anon_sym_super] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_when] = ACTIONS(4834), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_throw] = ACTIONS(4834), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_suspend] = ACTIONS(4834), + [anon_sym_sealed] = ACTIONS(4834), + [anon_sym_annotation] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_override] = ACTIONS(4834), + [anon_sym_lateinit] = ACTIONS(4834), + [anon_sym_public] = ACTIONS(4834), + [anon_sym_private] = ACTIONS(4834), + [anon_sym_internal] = ACTIONS(4834), + [anon_sym_protected] = ACTIONS(4834), + [anon_sym_tailrec] = ACTIONS(4834), + [anon_sym_operator] = ACTIONS(4834), + [anon_sym_infix] = ACTIONS(4834), + [anon_sym_inline] = ACTIONS(4834), + [anon_sym_external] = ACTIONS(4834), + [sym_property_modifier] = ACTIONS(4834), + [anon_sym_abstract] = ACTIONS(4834), + [anon_sym_final] = ACTIONS(4834), + [anon_sym_open] = ACTIONS(4834), + [anon_sym_vararg] = ACTIONS(4834), + [anon_sym_noinline] = ACTIONS(4834), + [anon_sym_crossinline] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4836), + [anon_sym_continue_AT] = ACTIONS(4836), + [anon_sym_break_AT] = ACTIONS(4836), + [anon_sym_this_AT] = ACTIONS(4836), + [anon_sym_super_AT] = ACTIONS(4836), + [sym_real_literal] = ACTIONS(4836), + [sym_integer_literal] = ACTIONS(4834), + [sym_hex_literal] = ACTIONS(4836), + [sym_bin_literal] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4836), + [sym__backtick_identifier] = ACTIONS(4836), + [sym__automatic_semicolon] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4836), + }, + [1039] = { + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_object] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_this] = ACTIONS(4838), + [anon_sym_super] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [sym_label] = ACTIONS(4838), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_when] = ACTIONS(4838), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_throw] = ACTIONS(4838), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_suspend] = ACTIONS(4838), + [anon_sym_sealed] = ACTIONS(4838), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_override] = ACTIONS(4838), + [anon_sym_lateinit] = ACTIONS(4838), + [anon_sym_public] = ACTIONS(4838), + [anon_sym_private] = ACTIONS(4838), + [anon_sym_internal] = ACTIONS(4838), + [anon_sym_protected] = ACTIONS(4838), + [anon_sym_tailrec] = ACTIONS(4838), + [anon_sym_operator] = ACTIONS(4838), + [anon_sym_infix] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_external] = ACTIONS(4838), + [sym_property_modifier] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_final] = ACTIONS(4838), + [anon_sym_open] = ACTIONS(4838), + [anon_sym_vararg] = ACTIONS(4838), + [anon_sym_noinline] = ACTIONS(4838), + [anon_sym_crossinline] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4840), + [anon_sym_continue_AT] = ACTIONS(4840), + [anon_sym_break_AT] = ACTIONS(4840), + [anon_sym_this_AT] = ACTIONS(4840), + [anon_sym_super_AT] = ACTIONS(4840), + [sym_real_literal] = ACTIONS(4840), + [sym_integer_literal] = ACTIONS(4838), + [sym_hex_literal] = ACTIONS(4840), + [sym_bin_literal] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4840), + [sym__backtick_identifier] = ACTIONS(4840), + [sym__automatic_semicolon] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4840), }, [1040] = { - [sym_enum_class_body] = STATE(1119), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_object] = ACTIONS(4729), - [anon_sym_fun] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_this] = ACTIONS(4729), - [anon_sym_super] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_null] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_when] = ACTIONS(4729), - [anon_sym_try] = ACTIONS(4729), - [anon_sym_throw] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4731), - [anon_sym_continue_AT] = ACTIONS(4731), - [anon_sym_break_AT] = ACTIONS(4731), - [sym_real_literal] = ACTIONS(4731), - [sym_integer_literal] = ACTIONS(4729), - [sym_hex_literal] = ACTIONS(4731), - [sym_bin_literal] = ACTIONS(4731), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4731), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [1041] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_object] = ACTIONS(4842), + [anon_sym_fun] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_this] = ACTIONS(4842), + [anon_sym_super] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_when] = ACTIONS(4842), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_throw] = ACTIONS(4842), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_suspend] = ACTIONS(4842), + [anon_sym_sealed] = ACTIONS(4842), + [anon_sym_annotation] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_override] = ACTIONS(4842), + [anon_sym_lateinit] = ACTIONS(4842), + [anon_sym_public] = ACTIONS(4842), + [anon_sym_private] = ACTIONS(4842), + [anon_sym_internal] = ACTIONS(4842), + [anon_sym_protected] = ACTIONS(4842), + [anon_sym_tailrec] = ACTIONS(4842), + [anon_sym_operator] = ACTIONS(4842), + [anon_sym_infix] = ACTIONS(4842), + [anon_sym_inline] = ACTIONS(4842), + [anon_sym_external] = ACTIONS(4842), + [sym_property_modifier] = ACTIONS(4842), + [anon_sym_abstract] = ACTIONS(4842), + [anon_sym_final] = ACTIONS(4842), + [anon_sym_open] = ACTIONS(4842), + [anon_sym_vararg] = ACTIONS(4842), + [anon_sym_noinline] = ACTIONS(4842), + [anon_sym_crossinline] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4844), + [anon_sym_continue_AT] = ACTIONS(4844), + [anon_sym_break_AT] = ACTIONS(4844), + [anon_sym_this_AT] = ACTIONS(4844), + [anon_sym_super_AT] = ACTIONS(4844), + [sym_real_literal] = ACTIONS(4844), + [sym_integer_literal] = ACTIONS(4842), + [sym_hex_literal] = ACTIONS(4844), + [sym_bin_literal] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4844), + [sym__backtick_identifier] = ACTIONS(4844), + [sym__automatic_semicolon] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4844), }, [1042] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_object] = ACTIONS(4846), + [anon_sym_fun] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_this] = ACTIONS(4846), + [anon_sym_super] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_when] = ACTIONS(4846), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_throw] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4848), + [anon_sym_continue_AT] = ACTIONS(4848), + [anon_sym_break_AT] = ACTIONS(4848), + [anon_sym_this_AT] = ACTIONS(4848), + [anon_sym_super_AT] = ACTIONS(4848), + [sym_real_literal] = ACTIONS(4848), + [sym_integer_literal] = ACTIONS(4846), + [sym_hex_literal] = ACTIONS(4848), + [sym_bin_literal] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4848), }, [1043] = { - [sym_enum_class_body] = STATE(1086), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_object] = ACTIONS(4474), - [anon_sym_fun] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_this] = ACTIONS(4474), - [anon_sym_super] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4474), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_when] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_throw] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4476), - [anon_sym_continue_AT] = ACTIONS(4476), - [anon_sym_break_AT] = ACTIONS(4476), - [sym_real_literal] = ACTIONS(4476), - [sym_integer_literal] = ACTIONS(4474), - [sym_hex_literal] = ACTIONS(4476), - [sym_bin_literal] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4476), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4476), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), }, [1044] = { - [sym_class_body] = STATE(1054), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3174), - [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_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_object] = ACTIONS(4854), + [anon_sym_fun] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_this] = ACTIONS(4854), + [anon_sym_super] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [sym_label] = ACTIONS(4854), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_when] = ACTIONS(4854), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_throw] = ACTIONS(4854), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_suspend] = ACTIONS(4854), + [anon_sym_sealed] = ACTIONS(4854), + [anon_sym_annotation] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_override] = ACTIONS(4854), + [anon_sym_lateinit] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_internal] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_tailrec] = ACTIONS(4854), + [anon_sym_operator] = ACTIONS(4854), + [anon_sym_infix] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_external] = ACTIONS(4854), + [sym_property_modifier] = ACTIONS(4854), + [anon_sym_abstract] = ACTIONS(4854), + [anon_sym_final] = ACTIONS(4854), + [anon_sym_open] = ACTIONS(4854), + [anon_sym_vararg] = ACTIONS(4854), + [anon_sym_noinline] = ACTIONS(4854), + [anon_sym_crossinline] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4856), + [anon_sym_continue_AT] = ACTIONS(4856), + [anon_sym_break_AT] = ACTIONS(4856), + [anon_sym_this_AT] = ACTIONS(4856), + [anon_sym_super_AT] = ACTIONS(4856), + [sym_real_literal] = ACTIONS(4856), + [sym_integer_literal] = ACTIONS(4854), + [sym_hex_literal] = ACTIONS(4856), + [sym_bin_literal] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4856), + [sym__backtick_identifier] = ACTIONS(4856), + [sym__automatic_semicolon] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4856), }, [1045] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [1046] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2079), - [sym__comparison_operator] = STATE(2157), - [sym__in_operator] = STATE(2077), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2064), - [sym__multiplicative_operator] = STATE(2063), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2025), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4862), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [1047] = { - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), }, [1048] = { - [sym__alpha_identifier] = ACTIONS(4743), - [anon_sym_AT] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_as] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4743), - [anon_sym_LBRACE] = ACTIONS(4745), - [anon_sym_RBRACE] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_COMMA] = ACTIONS(4745), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4743), - [anon_sym_where] = ACTIONS(4743), - [anon_sym_object] = ACTIONS(4743), - [anon_sym_fun] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_this] = ACTIONS(4743), - [anon_sym_super] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4743), - [sym_label] = ACTIONS(4743), - [anon_sym_in] = ACTIONS(4743), - [anon_sym_DOT_DOT] = ACTIONS(4745), - [anon_sym_QMARK_COLON] = ACTIONS(4745), - [anon_sym_AMP_AMP] = ACTIONS(4745), - [anon_sym_PIPE_PIPE] = ACTIONS(4745), - [anon_sym_null] = ACTIONS(4743), - [anon_sym_if] = ACTIONS(4743), - [anon_sym_else] = ACTIONS(4743), - [anon_sym_when] = ACTIONS(4743), - [anon_sym_try] = ACTIONS(4743), - [anon_sym_throw] = ACTIONS(4743), - [anon_sym_return] = ACTIONS(4743), - [anon_sym_continue] = ACTIONS(4743), - [anon_sym_break] = ACTIONS(4743), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym_PLUS_EQ] = ACTIONS(4745), - [anon_sym_DASH_EQ] = ACTIONS(4745), - [anon_sym_STAR_EQ] = ACTIONS(4745), - [anon_sym_SLASH_EQ] = ACTIONS(4745), - [anon_sym_PERCENT_EQ] = ACTIONS(4745), - [anon_sym_BANG_EQ] = ACTIONS(4743), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4745), - [anon_sym_EQ_EQ] = ACTIONS(4743), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4745), - [anon_sym_LT_EQ] = ACTIONS(4745), - [anon_sym_GT_EQ] = ACTIONS(4745), - [anon_sym_BANGin] = ACTIONS(4745), - [anon_sym_is] = ACTIONS(4743), - [anon_sym_BANGis] = ACTIONS(4745), - [anon_sym_PLUS] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4743), - [anon_sym_PERCENT] = ACTIONS(4743), - [anon_sym_as_QMARK] = ACTIONS(4745), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4743), - [anon_sym_BANG_BANG] = ACTIONS(4745), - [anon_sym_suspend] = ACTIONS(4743), - [anon_sym_sealed] = ACTIONS(4743), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_data] = ACTIONS(4743), - [anon_sym_inner] = ACTIONS(4743), - [anon_sym_value] = ACTIONS(4743), - [anon_sym_override] = ACTIONS(4743), - [anon_sym_lateinit] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_internal] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_tailrec] = ACTIONS(4743), - [anon_sym_operator] = ACTIONS(4743), - [anon_sym_infix] = ACTIONS(4743), - [anon_sym_inline] = ACTIONS(4743), - [anon_sym_external] = ACTIONS(4743), - [sym_property_modifier] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_open] = ACTIONS(4743), - [anon_sym_vararg] = ACTIONS(4743), - [anon_sym_noinline] = ACTIONS(4743), - [anon_sym_crossinline] = ACTIONS(4743), - [anon_sym_expect] = ACTIONS(4743), - [anon_sym_actual] = ACTIONS(4743), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4745), - [anon_sym_continue_AT] = ACTIONS(4745), - [anon_sym_break_AT] = ACTIONS(4745), - [sym_real_literal] = ACTIONS(4745), - [sym_integer_literal] = ACTIONS(4743), - [sym_hex_literal] = ACTIONS(4745), - [sym_bin_literal] = ACTIONS(4745), - [anon_sym_true] = ACTIONS(4743), - [anon_sym_false] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4745), - [sym__backtick_identifier] = ACTIONS(4745), - [sym__automatic_semicolon] = ACTIONS(4745), - [sym_safe_nav] = ACTIONS(4745), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4745), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1049] = { - [sym__alpha_identifier] = ACTIONS(4747), - [anon_sym_AT] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_COMMA] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4747), - [anon_sym_GT] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_object] = ACTIONS(4747), - [anon_sym_fun] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_get] = ACTIONS(4747), - [anon_sym_set] = ACTIONS(4747), - [anon_sym_this] = ACTIONS(4747), - [anon_sym_super] = ACTIONS(4747), - [anon_sym_STAR] = ACTIONS(4747), - [sym_label] = ACTIONS(4747), - [anon_sym_in] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4749), - [anon_sym_QMARK_COLON] = ACTIONS(4749), - [anon_sym_AMP_AMP] = ACTIONS(4749), - [anon_sym_PIPE_PIPE] = ACTIONS(4749), - [anon_sym_null] = ACTIONS(4747), - [anon_sym_if] = ACTIONS(4747), - [anon_sym_else] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_try] = ACTIONS(4747), - [anon_sym_throw] = ACTIONS(4747), - [anon_sym_return] = ACTIONS(4747), - [anon_sym_continue] = ACTIONS(4747), - [anon_sym_break] = ACTIONS(4747), - [anon_sym_COLON_COLON] = ACTIONS(4749), - [anon_sym_PLUS_EQ] = ACTIONS(4749), - [anon_sym_DASH_EQ] = ACTIONS(4749), - [anon_sym_STAR_EQ] = ACTIONS(4749), - [anon_sym_SLASH_EQ] = ACTIONS(4749), - [anon_sym_PERCENT_EQ] = ACTIONS(4749), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4749), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4749), - [anon_sym_LT_EQ] = ACTIONS(4749), - [anon_sym_GT_EQ] = ACTIONS(4749), - [anon_sym_BANGin] = ACTIONS(4749), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_BANGis] = ACTIONS(4749), - [anon_sym_PLUS] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4747), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_as_QMARK] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4747), - [anon_sym_BANG_BANG] = ACTIONS(4749), - [anon_sym_suspend] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_annotation] = ACTIONS(4747), - [anon_sym_data] = ACTIONS(4747), - [anon_sym_inner] = ACTIONS(4747), - [anon_sym_value] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_lateinit] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_tailrec] = ACTIONS(4747), - [anon_sym_operator] = ACTIONS(4747), - [anon_sym_infix] = ACTIONS(4747), - [anon_sym_inline] = ACTIONS(4747), - [anon_sym_external] = ACTIONS(4747), - [sym_property_modifier] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_final] = ACTIONS(4747), - [anon_sym_open] = ACTIONS(4747), - [anon_sym_vararg] = ACTIONS(4747), - [anon_sym_noinline] = ACTIONS(4747), - [anon_sym_crossinline] = ACTIONS(4747), - [anon_sym_expect] = ACTIONS(4747), - [anon_sym_actual] = ACTIONS(4747), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4749), - [anon_sym_continue_AT] = ACTIONS(4749), - [anon_sym_break_AT] = ACTIONS(4749), - [sym_real_literal] = ACTIONS(4749), - [sym_integer_literal] = ACTIONS(4747), - [sym_hex_literal] = ACTIONS(4749), - [sym_bin_literal] = ACTIONS(4749), - [anon_sym_true] = ACTIONS(4747), - [anon_sym_false] = ACTIONS(4747), - [anon_sym_SQUOTE] = ACTIONS(4749), - [sym__backtick_identifier] = ACTIONS(4749), - [sym__automatic_semicolon] = ACTIONS(4749), - [sym_safe_nav] = ACTIONS(4749), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4749), + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_object] = ACTIONS(4866), + [anon_sym_fun] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_this] = ACTIONS(4866), + [anon_sym_super] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4866), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_when] = ACTIONS(4866), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_throw] = ACTIONS(4866), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_suspend] = ACTIONS(4866), + [anon_sym_sealed] = ACTIONS(4866), + [anon_sym_annotation] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_override] = ACTIONS(4866), + [anon_sym_lateinit] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_internal] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_tailrec] = ACTIONS(4866), + [anon_sym_operator] = ACTIONS(4866), + [anon_sym_infix] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_external] = ACTIONS(4866), + [sym_property_modifier] = ACTIONS(4866), + [anon_sym_abstract] = ACTIONS(4866), + [anon_sym_final] = ACTIONS(4866), + [anon_sym_open] = ACTIONS(4866), + [anon_sym_vararg] = ACTIONS(4866), + [anon_sym_noinline] = ACTIONS(4866), + [anon_sym_crossinline] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4868), + [anon_sym_continue_AT] = ACTIONS(4868), + [anon_sym_break_AT] = ACTIONS(4868), + [anon_sym_this_AT] = ACTIONS(4868), + [anon_sym_super_AT] = ACTIONS(4868), + [sym_real_literal] = ACTIONS(4868), + [sym_integer_literal] = ACTIONS(4866), + [sym_hex_literal] = ACTIONS(4868), + [sym_bin_literal] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4868), + [sym__backtick_identifier] = ACTIONS(4868), + [sym__automatic_semicolon] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4868), }, [1050] = { - [sym_function_body] = STATE(1089), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_object] = ACTIONS(4870), + [anon_sym_fun] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_this] = ACTIONS(4870), + [anon_sym_super] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4870), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_when] = ACTIONS(4870), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_throw] = ACTIONS(4870), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_suspend] = ACTIONS(4870), + [anon_sym_sealed] = ACTIONS(4870), + [anon_sym_annotation] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_override] = ACTIONS(4870), + [anon_sym_lateinit] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_internal] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_tailrec] = ACTIONS(4870), + [anon_sym_operator] = ACTIONS(4870), + [anon_sym_infix] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_external] = ACTIONS(4870), + [sym_property_modifier] = ACTIONS(4870), + [anon_sym_abstract] = ACTIONS(4870), + [anon_sym_final] = ACTIONS(4870), + [anon_sym_open] = ACTIONS(4870), + [anon_sym_vararg] = ACTIONS(4870), + [anon_sym_noinline] = ACTIONS(4870), + [anon_sym_crossinline] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4872), + [anon_sym_continue_AT] = ACTIONS(4872), + [anon_sym_break_AT] = ACTIONS(4872), + [anon_sym_this_AT] = ACTIONS(4872), + [anon_sym_super_AT] = ACTIONS(4872), + [sym_real_literal] = ACTIONS(4872), + [sym_integer_literal] = ACTIONS(4870), + [sym_hex_literal] = ACTIONS(4872), + [sym_bin_literal] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4872), + [sym__backtick_identifier] = ACTIONS(4872), + [sym__automatic_semicolon] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4872), }, [1051] = { - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4179), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, [1052] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_this] = ACTIONS(123), + [anon_sym_super] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(123), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(121), + [anon_sym_continue_AT] = ACTIONS(121), + [anon_sym_break_AT] = ACTIONS(121), + [anon_sym_this_AT] = ACTIONS(121), + [anon_sym_super_AT] = ACTIONS(121), + [sym_real_literal] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(123), + [sym_hex_literal] = ACTIONS(121), + [sym_bin_literal] = ACTIONS(121), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(121), }, [1053] = { - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(1696), - [anon_sym_set] = ACTIONS(1696), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(1696), - [anon_sym_sealed] = ACTIONS(1696), - [anon_sym_annotation] = ACTIONS(1696), - [anon_sym_data] = ACTIONS(1696), - [anon_sym_inner] = ACTIONS(1696), - [anon_sym_value] = ACTIONS(1696), - [anon_sym_override] = ACTIONS(1696), - [anon_sym_lateinit] = ACTIONS(1696), - [anon_sym_public] = ACTIONS(1696), - [anon_sym_private] = ACTIONS(1696), - [anon_sym_internal] = ACTIONS(1696), - [anon_sym_protected] = ACTIONS(1696), - [anon_sym_tailrec] = ACTIONS(1696), - [anon_sym_operator] = ACTIONS(1696), - [anon_sym_infix] = ACTIONS(1696), - [anon_sym_inline] = ACTIONS(1696), - [anon_sym_external] = ACTIONS(1696), - [sym_property_modifier] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_final] = ACTIONS(1696), - [anon_sym_open] = ACTIONS(1696), - [anon_sym_vararg] = ACTIONS(1696), - [anon_sym_noinline] = ACTIONS(1696), - [anon_sym_crossinline] = ACTIONS(1696), - [anon_sym_expect] = ACTIONS(1696), - [anon_sym_actual] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), }, [1054] = { - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4731), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_object] = ACTIONS(4729), - [anon_sym_fun] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_this] = ACTIONS(4729), - [anon_sym_super] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_null] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_when] = ACTIONS(4729), - [anon_sym_try] = ACTIONS(4729), - [anon_sym_throw] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4731), - [anon_sym_continue_AT] = ACTIONS(4731), - [anon_sym_break_AT] = ACTIONS(4731), - [sym_real_literal] = ACTIONS(4731), - [sym_integer_literal] = ACTIONS(4729), - [sym_hex_literal] = ACTIONS(4731), - [sym_bin_literal] = ACTIONS(4731), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4731), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [1055] = { - [sym__alpha_identifier] = ACTIONS(4751), - [anon_sym_AT] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4751), - [anon_sym_GT] = ACTIONS(4751), - [anon_sym_where] = ACTIONS(4751), - [anon_sym_object] = ACTIONS(4751), - [anon_sym_fun] = ACTIONS(4751), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_get] = ACTIONS(4751), - [anon_sym_set] = ACTIONS(4751), - [anon_sym_this] = ACTIONS(4751), - [anon_sym_super] = ACTIONS(4751), - [anon_sym_STAR] = ACTIONS(4751), - [sym_label] = ACTIONS(4751), - [anon_sym_in] = ACTIONS(4751), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_QMARK_COLON] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_null] = ACTIONS(4751), - [anon_sym_if] = ACTIONS(4751), - [anon_sym_else] = ACTIONS(4751), - [anon_sym_when] = ACTIONS(4751), - [anon_sym_try] = ACTIONS(4751), - [anon_sym_throw] = ACTIONS(4751), - [anon_sym_return] = ACTIONS(4751), - [anon_sym_continue] = ACTIONS(4751), - [anon_sym_break] = ACTIONS(4751), - [anon_sym_COLON_COLON] = ACTIONS(4753), - [anon_sym_PLUS_EQ] = ACTIONS(4753), - [anon_sym_DASH_EQ] = ACTIONS(4753), - [anon_sym_STAR_EQ] = ACTIONS(4753), - [anon_sym_SLASH_EQ] = ACTIONS(4753), - [anon_sym_PERCENT_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4751), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_BANGin] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4751), - [anon_sym_BANGis] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4751), - [anon_sym_SLASH] = ACTIONS(4751), - [anon_sym_PERCENT] = ACTIONS(4751), - [anon_sym_as_QMARK] = ACTIONS(4753), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4751), - [anon_sym_BANG_BANG] = ACTIONS(4753), - [anon_sym_suspend] = ACTIONS(4751), - [anon_sym_sealed] = ACTIONS(4751), - [anon_sym_annotation] = ACTIONS(4751), - [anon_sym_data] = ACTIONS(4751), - [anon_sym_inner] = ACTIONS(4751), - [anon_sym_value] = ACTIONS(4751), - [anon_sym_override] = ACTIONS(4751), - [anon_sym_lateinit] = ACTIONS(4751), - [anon_sym_public] = ACTIONS(4751), - [anon_sym_private] = ACTIONS(4751), - [anon_sym_internal] = ACTIONS(4751), - [anon_sym_protected] = ACTIONS(4751), - [anon_sym_tailrec] = ACTIONS(4751), - [anon_sym_operator] = ACTIONS(4751), - [anon_sym_infix] = ACTIONS(4751), - [anon_sym_inline] = ACTIONS(4751), - [anon_sym_external] = ACTIONS(4751), - [sym_property_modifier] = ACTIONS(4751), - [anon_sym_abstract] = ACTIONS(4751), - [anon_sym_final] = ACTIONS(4751), - [anon_sym_open] = ACTIONS(4751), - [anon_sym_vararg] = ACTIONS(4751), - [anon_sym_noinline] = ACTIONS(4751), - [anon_sym_crossinline] = ACTIONS(4751), - [anon_sym_expect] = ACTIONS(4751), - [anon_sym_actual] = ACTIONS(4751), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4753), - [anon_sym_continue_AT] = ACTIONS(4753), - [anon_sym_break_AT] = ACTIONS(4753), - [sym_real_literal] = ACTIONS(4753), - [sym_integer_literal] = ACTIONS(4751), - [sym_hex_literal] = ACTIONS(4753), - [sym_bin_literal] = ACTIONS(4753), - [anon_sym_true] = ACTIONS(4751), - [anon_sym_false] = ACTIONS(4751), - [anon_sym_SQUOTE] = ACTIONS(4753), - [sym__backtick_identifier] = ACTIONS(4753), - [sym__automatic_semicolon] = ACTIONS(4753), - [sym_safe_nav] = ACTIONS(4753), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4753), + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4884), + [anon_sym_fun] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_this] = ACTIONS(4884), + [anon_sym_super] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4884), + [anon_sym_if] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4884), + [anon_sym_throw] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4884), + [anon_sym_continue] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4886), + [anon_sym_continue_AT] = ACTIONS(4886), + [anon_sym_break_AT] = ACTIONS(4886), + [anon_sym_this_AT] = ACTIONS(4886), + [anon_sym_super_AT] = ACTIONS(4886), + [sym_real_literal] = ACTIONS(4886), + [sym_integer_literal] = ACTIONS(4884), + [sym_hex_literal] = ACTIONS(4886), + [sym_bin_literal] = ACTIONS(4886), + [anon_sym_true] = ACTIONS(4884), + [anon_sym_false] = ACTIONS(4884), + [anon_sym_SQUOTE] = ACTIONS(4886), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4886), }, [1056] = { - [sym__alpha_identifier] = ACTIONS(4755), - [anon_sym_AT] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4757), - [anon_sym_as] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(4755), - [anon_sym_LBRACE] = ACTIONS(4757), - [anon_sym_RBRACE] = ACTIONS(4757), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym_COMMA] = ACTIONS(4757), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_where] = ACTIONS(4755), - [anon_sym_object] = ACTIONS(4755), - [anon_sym_fun] = ACTIONS(4755), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4757), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_this] = ACTIONS(4755), - [anon_sym_super] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4755), - [sym_label] = ACTIONS(4755), - [anon_sym_in] = ACTIONS(4755), - [anon_sym_DOT_DOT] = ACTIONS(4757), - [anon_sym_QMARK_COLON] = ACTIONS(4757), - [anon_sym_AMP_AMP] = ACTIONS(4757), - [anon_sym_PIPE_PIPE] = ACTIONS(4757), - [anon_sym_null] = ACTIONS(4755), - [anon_sym_if] = ACTIONS(4755), - [anon_sym_else] = ACTIONS(4755), - [anon_sym_when] = ACTIONS(4755), - [anon_sym_try] = ACTIONS(4755), - [anon_sym_throw] = ACTIONS(4755), - [anon_sym_return] = ACTIONS(4755), - [anon_sym_continue] = ACTIONS(4755), - [anon_sym_break] = ACTIONS(4755), - [anon_sym_COLON_COLON] = ACTIONS(4757), - [anon_sym_PLUS_EQ] = ACTIONS(4757), - [anon_sym_DASH_EQ] = ACTIONS(4757), - [anon_sym_STAR_EQ] = ACTIONS(4757), - [anon_sym_SLASH_EQ] = ACTIONS(4757), - [anon_sym_PERCENT_EQ] = ACTIONS(4757), - [anon_sym_BANG_EQ] = ACTIONS(4755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4757), - [anon_sym_EQ_EQ] = ACTIONS(4755), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4757), - [anon_sym_LT_EQ] = ACTIONS(4757), - [anon_sym_GT_EQ] = ACTIONS(4757), - [anon_sym_BANGin] = ACTIONS(4757), - [anon_sym_is] = ACTIONS(4755), - [anon_sym_BANGis] = ACTIONS(4757), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4755), - [anon_sym_as_QMARK] = ACTIONS(4757), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_BANG] = ACTIONS(4755), - [anon_sym_BANG_BANG] = ACTIONS(4757), - [anon_sym_suspend] = ACTIONS(4755), - [anon_sym_sealed] = ACTIONS(4755), - [anon_sym_annotation] = ACTIONS(4755), - [anon_sym_data] = ACTIONS(4755), - [anon_sym_inner] = ACTIONS(4755), - [anon_sym_value] = ACTIONS(4755), - [anon_sym_override] = ACTIONS(4755), - [anon_sym_lateinit] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_internal] = ACTIONS(4755), - [anon_sym_protected] = ACTIONS(4755), - [anon_sym_tailrec] = ACTIONS(4755), - [anon_sym_operator] = ACTIONS(4755), - [anon_sym_infix] = ACTIONS(4755), - [anon_sym_inline] = ACTIONS(4755), - [anon_sym_external] = ACTIONS(4755), - [sym_property_modifier] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_open] = ACTIONS(4755), - [anon_sym_vararg] = ACTIONS(4755), - [anon_sym_noinline] = ACTIONS(4755), - [anon_sym_crossinline] = ACTIONS(4755), - [anon_sym_expect] = ACTIONS(4755), - [anon_sym_actual] = ACTIONS(4755), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4757), - [anon_sym_continue_AT] = ACTIONS(4757), - [anon_sym_break_AT] = ACTIONS(4757), - [sym_real_literal] = ACTIONS(4757), - [sym_integer_literal] = ACTIONS(4755), - [sym_hex_literal] = ACTIONS(4757), - [sym_bin_literal] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4755), - [anon_sym_false] = ACTIONS(4755), - [anon_sym_SQUOTE] = ACTIONS(4757), - [sym__backtick_identifier] = ACTIONS(4757), - [sym__automatic_semicolon] = ACTIONS(4757), - [sym_safe_nav] = ACTIONS(4757), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4757), + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_object] = ACTIONS(4888), + [anon_sym_fun] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_this] = ACTIONS(4888), + [anon_sym_super] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4888), + [anon_sym_if] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_when] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4888), + [anon_sym_throw] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4888), + [anon_sym_continue] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4890), + [anon_sym_continue_AT] = ACTIONS(4890), + [anon_sym_break_AT] = ACTIONS(4890), + [anon_sym_this_AT] = ACTIONS(4890), + [anon_sym_super_AT] = ACTIONS(4890), + [sym_real_literal] = ACTIONS(4890), + [sym_integer_literal] = ACTIONS(4888), + [sym_hex_literal] = ACTIONS(4890), + [sym_bin_literal] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4888), + [anon_sym_false] = ACTIONS(4888), + [anon_sym_SQUOTE] = ACTIONS(4890), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4890), }, [1057] = { - [sym__alpha_identifier] = ACTIONS(4759), - [anon_sym_AT] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4761), - [anon_sym_as] = ACTIONS(4759), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_LBRACE] = ACTIONS(4761), - [anon_sym_RBRACE] = ACTIONS(4761), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym_COMMA] = ACTIONS(4761), - [anon_sym_LT] = ACTIONS(4759), - [anon_sym_GT] = ACTIONS(4759), - [anon_sym_where] = ACTIONS(4759), - [anon_sym_object] = ACTIONS(4759), - [anon_sym_fun] = ACTIONS(4759), - [anon_sym_DOT] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_get] = ACTIONS(4759), - [anon_sym_set] = ACTIONS(4759), - [anon_sym_this] = ACTIONS(4759), - [anon_sym_super] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(4759), - [sym_label] = ACTIONS(4759), - [anon_sym_in] = ACTIONS(4759), - [anon_sym_DOT_DOT] = ACTIONS(4761), - [anon_sym_QMARK_COLON] = ACTIONS(4761), - [anon_sym_AMP_AMP] = ACTIONS(4761), - [anon_sym_PIPE_PIPE] = ACTIONS(4761), - [anon_sym_null] = ACTIONS(4759), - [anon_sym_if] = ACTIONS(4759), - [anon_sym_else] = ACTIONS(4759), - [anon_sym_when] = ACTIONS(4759), - [anon_sym_try] = ACTIONS(4759), - [anon_sym_throw] = ACTIONS(4759), - [anon_sym_return] = ACTIONS(4759), - [anon_sym_continue] = ACTIONS(4759), - [anon_sym_break] = ACTIONS(4759), - [anon_sym_COLON_COLON] = ACTIONS(4761), - [anon_sym_PLUS_EQ] = ACTIONS(4761), - [anon_sym_DASH_EQ] = ACTIONS(4761), - [anon_sym_STAR_EQ] = ACTIONS(4761), - [anon_sym_SLASH_EQ] = ACTIONS(4761), - [anon_sym_PERCENT_EQ] = ACTIONS(4761), - [anon_sym_BANG_EQ] = ACTIONS(4759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4761), - [anon_sym_EQ_EQ] = ACTIONS(4759), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4761), - [anon_sym_LT_EQ] = ACTIONS(4761), - [anon_sym_GT_EQ] = ACTIONS(4761), - [anon_sym_BANGin] = ACTIONS(4761), - [anon_sym_is] = ACTIONS(4759), - [anon_sym_BANGis] = ACTIONS(4761), - [anon_sym_PLUS] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4759), - [anon_sym_SLASH] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_as_QMARK] = ACTIONS(4761), - [anon_sym_PLUS_PLUS] = ACTIONS(4761), - [anon_sym_DASH_DASH] = ACTIONS(4761), - [anon_sym_BANG] = ACTIONS(4759), - [anon_sym_BANG_BANG] = ACTIONS(4761), - [anon_sym_suspend] = ACTIONS(4759), - [anon_sym_sealed] = ACTIONS(4759), - [anon_sym_annotation] = ACTIONS(4759), - [anon_sym_data] = ACTIONS(4759), - [anon_sym_inner] = ACTIONS(4759), - [anon_sym_value] = ACTIONS(4759), - [anon_sym_override] = ACTIONS(4759), - [anon_sym_lateinit] = ACTIONS(4759), - [anon_sym_public] = ACTIONS(4759), - [anon_sym_private] = ACTIONS(4759), - [anon_sym_internal] = ACTIONS(4759), - [anon_sym_protected] = ACTIONS(4759), - [anon_sym_tailrec] = ACTIONS(4759), - [anon_sym_operator] = ACTIONS(4759), - [anon_sym_infix] = ACTIONS(4759), - [anon_sym_inline] = ACTIONS(4759), - [anon_sym_external] = ACTIONS(4759), - [sym_property_modifier] = ACTIONS(4759), - [anon_sym_abstract] = ACTIONS(4759), - [anon_sym_final] = ACTIONS(4759), - [anon_sym_open] = ACTIONS(4759), - [anon_sym_vararg] = ACTIONS(4759), - [anon_sym_noinline] = ACTIONS(4759), - [anon_sym_crossinline] = ACTIONS(4759), - [anon_sym_expect] = ACTIONS(4759), - [anon_sym_actual] = ACTIONS(4759), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4761), - [anon_sym_continue_AT] = ACTIONS(4761), - [anon_sym_break_AT] = ACTIONS(4761), - [sym_real_literal] = ACTIONS(4761), - [sym_integer_literal] = ACTIONS(4759), - [sym_hex_literal] = ACTIONS(4761), - [sym_bin_literal] = ACTIONS(4761), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [anon_sym_SQUOTE] = ACTIONS(4761), - [sym__backtick_identifier] = ACTIONS(4761), - [sym__automatic_semicolon] = ACTIONS(4761), - [sym_safe_nav] = ACTIONS(4761), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4761), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, [1058] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [1059] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4765), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_object] = ACTIONS(4898), + [anon_sym_fun] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_this] = ACTIONS(4898), + [anon_sym_super] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_throw] = ACTIONS(4898), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_suspend] = ACTIONS(4898), + [anon_sym_sealed] = ACTIONS(4898), + [anon_sym_annotation] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_lateinit] = ACTIONS(4898), + [anon_sym_public] = ACTIONS(4898), + [anon_sym_private] = ACTIONS(4898), + [anon_sym_internal] = ACTIONS(4898), + [anon_sym_protected] = ACTIONS(4898), + [anon_sym_tailrec] = ACTIONS(4898), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_infix] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym_external] = ACTIONS(4898), + [sym_property_modifier] = ACTIONS(4898), + [anon_sym_abstract] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_open] = ACTIONS(4898), + [anon_sym_vararg] = ACTIONS(4898), + [anon_sym_noinline] = ACTIONS(4898), + [anon_sym_crossinline] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4900), + [anon_sym_continue_AT] = ACTIONS(4900), + [anon_sym_break_AT] = ACTIONS(4900), + [anon_sym_this_AT] = ACTIONS(4900), + [anon_sym_super_AT] = ACTIONS(4900), + [sym_real_literal] = ACTIONS(4900), + [sym_integer_literal] = ACTIONS(4898), + [sym_hex_literal] = ACTIONS(4900), + [sym_bin_literal] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(4900), + [sym__automatic_semicolon] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4900), }, [1060] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [1061] = { - [sym__alpha_identifier] = ACTIONS(4773), - [anon_sym_AT] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_as] = ACTIONS(4773), - [anon_sym_EQ] = ACTIONS(4773), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_where] = ACTIONS(4773), - [anon_sym_object] = ACTIONS(4773), - [anon_sym_fun] = ACTIONS(4773), - [anon_sym_DOT] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4775), - [anon_sym_get] = ACTIONS(4773), - [anon_sym_set] = ACTIONS(4773), - [anon_sym_this] = ACTIONS(4773), - [anon_sym_super] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [sym_label] = ACTIONS(4773), - [anon_sym_in] = ACTIONS(4773), - [anon_sym_DOT_DOT] = ACTIONS(4775), - [anon_sym_QMARK_COLON] = ACTIONS(4775), - [anon_sym_AMP_AMP] = ACTIONS(4775), - [anon_sym_PIPE_PIPE] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(4773), - [anon_sym_if] = ACTIONS(4773), - [anon_sym_else] = ACTIONS(4773), - [anon_sym_when] = ACTIONS(4773), - [anon_sym_try] = ACTIONS(4773), - [anon_sym_throw] = ACTIONS(4773), - [anon_sym_return] = ACTIONS(4773), - [anon_sym_continue] = ACTIONS(4773), - [anon_sym_break] = ACTIONS(4773), - [anon_sym_COLON_COLON] = ACTIONS(4775), - [anon_sym_PLUS_EQ] = ACTIONS(4775), - [anon_sym_DASH_EQ] = ACTIONS(4775), - [anon_sym_STAR_EQ] = ACTIONS(4775), - [anon_sym_SLASH_EQ] = ACTIONS(4775), - [anon_sym_PERCENT_EQ] = ACTIONS(4775), - [anon_sym_BANG_EQ] = ACTIONS(4773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4775), - [anon_sym_EQ_EQ] = ACTIONS(4773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4775), - [anon_sym_LT_EQ] = ACTIONS(4775), - [anon_sym_GT_EQ] = ACTIONS(4775), - [anon_sym_BANGin] = ACTIONS(4775), - [anon_sym_is] = ACTIONS(4773), - [anon_sym_BANGis] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_PERCENT] = ACTIONS(4773), - [anon_sym_as_QMARK] = ACTIONS(4775), - [anon_sym_PLUS_PLUS] = ACTIONS(4775), - [anon_sym_DASH_DASH] = ACTIONS(4775), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_BANG_BANG] = ACTIONS(4775), - [anon_sym_suspend] = ACTIONS(4773), - [anon_sym_sealed] = ACTIONS(4773), - [anon_sym_annotation] = ACTIONS(4773), - [anon_sym_data] = ACTIONS(4773), - [anon_sym_inner] = ACTIONS(4773), - [anon_sym_value] = ACTIONS(4773), - [anon_sym_override] = ACTIONS(4773), - [anon_sym_lateinit] = ACTIONS(4773), - [anon_sym_public] = ACTIONS(4773), - [anon_sym_private] = ACTIONS(4773), - [anon_sym_internal] = ACTIONS(4773), - [anon_sym_protected] = ACTIONS(4773), - [anon_sym_tailrec] = ACTIONS(4773), - [anon_sym_operator] = ACTIONS(4773), - [anon_sym_infix] = ACTIONS(4773), - [anon_sym_inline] = ACTIONS(4773), - [anon_sym_external] = ACTIONS(4773), - [sym_property_modifier] = ACTIONS(4773), - [anon_sym_abstract] = ACTIONS(4773), - [anon_sym_final] = ACTIONS(4773), - [anon_sym_open] = ACTIONS(4773), - [anon_sym_vararg] = ACTIONS(4773), - [anon_sym_noinline] = ACTIONS(4773), - [anon_sym_crossinline] = ACTIONS(4773), - [anon_sym_expect] = ACTIONS(4773), - [anon_sym_actual] = ACTIONS(4773), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4775), - [anon_sym_continue_AT] = ACTIONS(4775), - [anon_sym_break_AT] = ACTIONS(4775), - [sym_real_literal] = ACTIONS(4775), - [sym_integer_literal] = ACTIONS(4773), - [sym_hex_literal] = ACTIONS(4775), - [sym_bin_literal] = ACTIONS(4775), - [anon_sym_true] = ACTIONS(4773), - [anon_sym_false] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4775), - [sym__backtick_identifier] = ACTIONS(4775), - [sym__automatic_semicolon] = ACTIONS(4775), - [sym_safe_nav] = ACTIONS(4775), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4775), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [1062] = { - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4472), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_object] = ACTIONS(4902), + [anon_sym_fun] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_this] = ACTIONS(4902), + [anon_sym_super] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_when] = ACTIONS(4902), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_throw] = ACTIONS(4902), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_suspend] = ACTIONS(4902), + [anon_sym_sealed] = ACTIONS(4902), + [anon_sym_annotation] = ACTIONS(4902), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_lateinit] = ACTIONS(4902), + [anon_sym_public] = ACTIONS(4902), + [anon_sym_private] = ACTIONS(4902), + [anon_sym_internal] = ACTIONS(4902), + [anon_sym_protected] = ACTIONS(4902), + [anon_sym_tailrec] = ACTIONS(4902), + [anon_sym_operator] = ACTIONS(4902), + [anon_sym_infix] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym_external] = ACTIONS(4902), + [sym_property_modifier] = ACTIONS(4902), + [anon_sym_abstract] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_open] = ACTIONS(4902), + [anon_sym_vararg] = ACTIONS(4902), + [anon_sym_noinline] = ACTIONS(4902), + [anon_sym_crossinline] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4904), + [anon_sym_continue_AT] = ACTIONS(4904), + [anon_sym_break_AT] = ACTIONS(4904), + [anon_sym_this_AT] = ACTIONS(4904), + [anon_sym_super_AT] = ACTIONS(4904), + [sym_real_literal] = ACTIONS(4904), + [sym_integer_literal] = ACTIONS(4902), + [sym_hex_literal] = ACTIONS(4904), + [sym_bin_literal] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4904), + [sym__backtick_identifier] = ACTIONS(4904), + [sym__automatic_semicolon] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4904), }, [1063] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(4781), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_object] = ACTIONS(4906), + [anon_sym_fun] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_this] = ACTIONS(4906), + [anon_sym_super] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_when] = ACTIONS(4906), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_throw] = ACTIONS(4906), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_suspend] = ACTIONS(4906), + [anon_sym_sealed] = ACTIONS(4906), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_lateinit] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4906), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_internal] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_tailrec] = ACTIONS(4906), + [anon_sym_operator] = ACTIONS(4906), + [anon_sym_infix] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym_external] = ACTIONS(4906), + [sym_property_modifier] = ACTIONS(4906), + [anon_sym_abstract] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_open] = ACTIONS(4906), + [anon_sym_vararg] = ACTIONS(4906), + [anon_sym_noinline] = ACTIONS(4906), + [anon_sym_crossinline] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4908), + [anon_sym_continue_AT] = ACTIONS(4908), + [anon_sym_break_AT] = ACTIONS(4908), + [anon_sym_this_AT] = ACTIONS(4908), + [anon_sym_super_AT] = ACTIONS(4908), + [sym_real_literal] = ACTIONS(4908), + [sym_integer_literal] = ACTIONS(4906), + [sym_hex_literal] = ACTIONS(4908), + [sym_bin_literal] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(4908), + [sym__automatic_semicolon] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4908), }, [1064] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_object] = ACTIONS(4910), + [anon_sym_fun] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_this] = ACTIONS(4910), + [anon_sym_super] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_when] = ACTIONS(4910), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_throw] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_suspend] = ACTIONS(4910), + [anon_sym_sealed] = ACTIONS(4910), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_lateinit] = ACTIONS(4910), + [anon_sym_public] = ACTIONS(4910), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_internal] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_tailrec] = ACTIONS(4910), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_infix] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym_external] = ACTIONS(4910), + [sym_property_modifier] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_open] = ACTIONS(4910), + [anon_sym_vararg] = ACTIONS(4910), + [anon_sym_noinline] = ACTIONS(4910), + [anon_sym_crossinline] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4912), + [anon_sym_continue_AT] = ACTIONS(4912), + [anon_sym_break_AT] = ACTIONS(4912), + [anon_sym_this_AT] = ACTIONS(4912), + [anon_sym_super_AT] = ACTIONS(4912), + [sym_real_literal] = ACTIONS(4912), + [sym_integer_literal] = ACTIONS(4910), + [sym_hex_literal] = ACTIONS(4912), + [sym_bin_literal] = ACTIONS(4912), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(4912), + [sym__automatic_semicolon] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4912), }, [1065] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_object] = ACTIONS(4914), + [anon_sym_fun] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_this] = ACTIONS(4914), + [anon_sym_super] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_if] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_when] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4914), + [anon_sym_throw] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4914), + [anon_sym_continue] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_suspend] = ACTIONS(4914), + [anon_sym_sealed] = ACTIONS(4914), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_lateinit] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_internal] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_tailrec] = ACTIONS(4914), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_infix] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym_external] = ACTIONS(4914), + [sym_property_modifier] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_open] = ACTIONS(4914), + [anon_sym_vararg] = ACTIONS(4914), + [anon_sym_noinline] = ACTIONS(4914), + [anon_sym_crossinline] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4916), + [anon_sym_continue_AT] = ACTIONS(4916), + [anon_sym_break_AT] = ACTIONS(4916), + [anon_sym_this_AT] = ACTIONS(4916), + [anon_sym_super_AT] = ACTIONS(4916), + [sym_real_literal] = ACTIONS(4916), + [sym_integer_literal] = ACTIONS(4914), + [sym_hex_literal] = ACTIONS(4916), + [sym_bin_literal] = ACTIONS(4916), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4916), + [sym__backtick_identifier] = ACTIONS(4916), + [sym__automatic_semicolon] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4916), }, [1066] = { - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(4476), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_object] = ACTIONS(4474), - [anon_sym_fun] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_this] = ACTIONS(4474), - [anon_sym_super] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4474), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_when] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_throw] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4476), - [anon_sym_continue_AT] = ACTIONS(4476), - [anon_sym_break_AT] = ACTIONS(4476), - [sym_real_literal] = ACTIONS(4476), - [sym_integer_literal] = ACTIONS(4474), - [sym_hex_literal] = ACTIONS(4476), - [sym_bin_literal] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4476), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4476), + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_object] = ACTIONS(4918), + [anon_sym_fun] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_this] = ACTIONS(4918), + [anon_sym_super] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4918), + [anon_sym_if] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_when] = ACTIONS(4918), + [anon_sym_try] = ACTIONS(4918), + [anon_sym_throw] = ACTIONS(4918), + [anon_sym_return] = ACTIONS(4918), + [anon_sym_continue] = ACTIONS(4918), + [anon_sym_break] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_suspend] = ACTIONS(4918), + [anon_sym_sealed] = ACTIONS(4918), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_lateinit] = ACTIONS(4918), + [anon_sym_public] = ACTIONS(4918), + [anon_sym_private] = ACTIONS(4918), + [anon_sym_internal] = ACTIONS(4918), + [anon_sym_protected] = ACTIONS(4918), + [anon_sym_tailrec] = ACTIONS(4918), + [anon_sym_operator] = ACTIONS(4918), + [anon_sym_infix] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym_external] = ACTIONS(4918), + [sym_property_modifier] = ACTIONS(4918), + [anon_sym_abstract] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_open] = ACTIONS(4918), + [anon_sym_vararg] = ACTIONS(4918), + [anon_sym_noinline] = ACTIONS(4918), + [anon_sym_crossinline] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4920), + [anon_sym_continue_AT] = ACTIONS(4920), + [anon_sym_break_AT] = ACTIONS(4920), + [anon_sym_this_AT] = ACTIONS(4920), + [anon_sym_super_AT] = ACTIONS(4920), + [sym_real_literal] = ACTIONS(4920), + [sym_integer_literal] = ACTIONS(4918), + [sym_hex_literal] = ACTIONS(4920), + [sym_bin_literal] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4918), + [anon_sym_false] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4920), + [sym__automatic_semicolon] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4920), }, [1067] = { - [sym__alpha_identifier] = ACTIONS(4791), - [anon_sym_AT] = ACTIONS(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_where] = ACTIONS(4791), - [anon_sym_object] = ACTIONS(4791), - [anon_sym_fun] = ACTIONS(4791), - [anon_sym_DOT] = ACTIONS(4791), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym_get] = ACTIONS(4791), - [anon_sym_set] = ACTIONS(4791), - [anon_sym_this] = ACTIONS(4791), - [anon_sym_super] = ACTIONS(4791), - [anon_sym_STAR] = ACTIONS(4791), - [sym_label] = ACTIONS(4791), - [anon_sym_in] = ACTIONS(4791), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_QMARK_COLON] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_null] = ACTIONS(4791), - [anon_sym_if] = ACTIONS(4791), - [anon_sym_else] = ACTIONS(4791), - [anon_sym_when] = ACTIONS(4791), - [anon_sym_try] = ACTIONS(4791), - [anon_sym_throw] = ACTIONS(4791), - [anon_sym_return] = ACTIONS(4791), - [anon_sym_continue] = ACTIONS(4791), - [anon_sym_break] = ACTIONS(4791), - [anon_sym_COLON_COLON] = ACTIONS(4793), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_STAR_EQ] = ACTIONS(4793), - [anon_sym_SLASH_EQ] = ACTIONS(4793), - [anon_sym_PERCENT_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_BANGin] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4791), - [anon_sym_BANGis] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_SLASH] = ACTIONS(4791), - [anon_sym_PERCENT] = ACTIONS(4791), - [anon_sym_as_QMARK] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4791), - [anon_sym_BANG_BANG] = ACTIONS(4793), - [anon_sym_suspend] = ACTIONS(4791), - [anon_sym_sealed] = ACTIONS(4791), - [anon_sym_annotation] = ACTIONS(4791), - [anon_sym_data] = ACTIONS(4791), - [anon_sym_inner] = ACTIONS(4791), - [anon_sym_value] = ACTIONS(4791), - [anon_sym_override] = ACTIONS(4791), - [anon_sym_lateinit] = ACTIONS(4791), - [anon_sym_public] = ACTIONS(4791), - [anon_sym_private] = ACTIONS(4791), - [anon_sym_internal] = ACTIONS(4791), - [anon_sym_protected] = ACTIONS(4791), - [anon_sym_tailrec] = ACTIONS(4791), - [anon_sym_operator] = ACTIONS(4791), - [anon_sym_infix] = ACTIONS(4791), - [anon_sym_inline] = ACTIONS(4791), - [anon_sym_external] = ACTIONS(4791), - [sym_property_modifier] = ACTIONS(4791), - [anon_sym_abstract] = ACTIONS(4791), - [anon_sym_final] = ACTIONS(4791), - [anon_sym_open] = ACTIONS(4791), - [anon_sym_vararg] = ACTIONS(4791), - [anon_sym_noinline] = ACTIONS(4791), - [anon_sym_crossinline] = ACTIONS(4791), - [anon_sym_expect] = ACTIONS(4791), - [anon_sym_actual] = ACTIONS(4791), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4793), - [anon_sym_continue_AT] = ACTIONS(4793), - [anon_sym_break_AT] = ACTIONS(4793), - [sym_real_literal] = ACTIONS(4793), - [sym_integer_literal] = ACTIONS(4791), - [sym_hex_literal] = ACTIONS(4793), - [sym_bin_literal] = ACTIONS(4793), - [anon_sym_true] = ACTIONS(4791), - [anon_sym_false] = ACTIONS(4791), - [anon_sym_SQUOTE] = ACTIONS(4793), - [sym__backtick_identifier] = ACTIONS(4793), - [sym__automatic_semicolon] = ACTIONS(4793), - [sym_safe_nav] = ACTIONS(4793), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4793), + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_object] = ACTIONS(4922), + [anon_sym_fun] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_this] = ACTIONS(4922), + [anon_sym_super] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_when] = ACTIONS(4922), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_throw] = ACTIONS(4922), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_suspend] = ACTIONS(4922), + [anon_sym_sealed] = ACTIONS(4922), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_lateinit] = ACTIONS(4922), + [anon_sym_public] = ACTIONS(4922), + [anon_sym_private] = ACTIONS(4922), + [anon_sym_internal] = ACTIONS(4922), + [anon_sym_protected] = ACTIONS(4922), + [anon_sym_tailrec] = ACTIONS(4922), + [anon_sym_operator] = ACTIONS(4922), + [anon_sym_infix] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym_external] = ACTIONS(4922), + [sym_property_modifier] = ACTIONS(4922), + [anon_sym_abstract] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_open] = ACTIONS(4922), + [anon_sym_vararg] = ACTIONS(4922), + [anon_sym_noinline] = ACTIONS(4922), + [anon_sym_crossinline] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4924), + [anon_sym_continue_AT] = ACTIONS(4924), + [anon_sym_break_AT] = ACTIONS(4924), + [anon_sym_this_AT] = ACTIONS(4924), + [anon_sym_super_AT] = ACTIONS(4924), + [sym_real_literal] = ACTIONS(4924), + [sym_integer_literal] = ACTIONS(4922), + [sym_hex_literal] = ACTIONS(4924), + [sym_bin_literal] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4924), + [sym__backtick_identifier] = ACTIONS(4924), + [sym__automatic_semicolon] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4924), }, [1068] = { - [sym__alpha_identifier] = ACTIONS(3016), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [sym_label] = ACTIONS(3016), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_QMARK_COLON] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3016), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_as_QMARK] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(3018), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(3016), - [anon_sym_inner] = ACTIONS(3016), - [anon_sym_value] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(3016), - [anon_sym_actual] = ACTIONS(3016), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(3018), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3018), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [1069] = { - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(203), - [anon_sym_fun] = ACTIONS(203), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(203), - [anon_sym_super] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(203), - [sym_label] = ACTIONS(203), - [anon_sym_in] = ACTIONS(203), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(203), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(203), - [anon_sym_try] = ACTIONS(203), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_return] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(203), - [anon_sym_break] = ACTIONS(203), - [anon_sym_COLON_COLON] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(201), - [anon_sym_DASH_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_BANG_BANG] = ACTIONS(201), - [anon_sym_suspend] = ACTIONS(203), - [anon_sym_sealed] = ACTIONS(203), - [anon_sym_annotation] = ACTIONS(203), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_value] = ACTIONS(203), - [anon_sym_override] = ACTIONS(203), - [anon_sym_lateinit] = ACTIONS(203), - [anon_sym_public] = ACTIONS(203), - [anon_sym_private] = ACTIONS(203), - [anon_sym_internal] = ACTIONS(203), - [anon_sym_protected] = ACTIONS(203), - [anon_sym_tailrec] = ACTIONS(203), - [anon_sym_operator] = ACTIONS(203), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(203), - [anon_sym_external] = ACTIONS(203), - [sym_property_modifier] = ACTIONS(203), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_final] = ACTIONS(203), - [anon_sym_open] = ACTIONS(203), - [anon_sym_vararg] = ACTIONS(203), - [anon_sym_noinline] = ACTIONS(203), - [anon_sym_crossinline] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(201), - [anon_sym_continue_AT] = ACTIONS(201), - [anon_sym_break_AT] = ACTIONS(201), - [sym_real_literal] = ACTIONS(201), - [sym_integer_literal] = ACTIONS(203), - [sym_hex_literal] = ACTIONS(201), - [sym_bin_literal] = ACTIONS(201), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(201), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(201), + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4926), + [anon_sym_object] = ACTIONS(4926), + [anon_sym_fun] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_get] = ACTIONS(4926), + [anon_sym_set] = ACTIONS(4926), + [anon_sym_this] = ACTIONS(4926), + [anon_sym_super] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_QMARK_COLON] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_when] = ACTIONS(4926), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_throw] = ACTIONS(4926), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_BANGin] = ACTIONS(4928), + [anon_sym_is] = ACTIONS(4926), + [anon_sym_BANGis] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_as_QMARK] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4928), + [anon_sym_suspend] = ACTIONS(4926), + [anon_sym_sealed] = ACTIONS(4926), + [anon_sym_annotation] = ACTIONS(4926), + [anon_sym_data] = ACTIONS(4926), + [anon_sym_inner] = ACTIONS(4926), + [anon_sym_value] = ACTIONS(4926), + [anon_sym_override] = ACTIONS(4926), + [anon_sym_lateinit] = ACTIONS(4926), + [anon_sym_public] = ACTIONS(4926), + [anon_sym_private] = ACTIONS(4926), + [anon_sym_internal] = ACTIONS(4926), + [anon_sym_protected] = ACTIONS(4926), + [anon_sym_tailrec] = ACTIONS(4926), + [anon_sym_operator] = ACTIONS(4926), + [anon_sym_infix] = ACTIONS(4926), + [anon_sym_inline] = ACTIONS(4926), + [anon_sym_external] = ACTIONS(4926), + [sym_property_modifier] = ACTIONS(4926), + [anon_sym_abstract] = ACTIONS(4926), + [anon_sym_final] = ACTIONS(4926), + [anon_sym_open] = ACTIONS(4926), + [anon_sym_vararg] = ACTIONS(4926), + [anon_sym_noinline] = ACTIONS(4926), + [anon_sym_crossinline] = ACTIONS(4926), + [anon_sym_expect] = ACTIONS(4926), + [anon_sym_actual] = ACTIONS(4926), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4928), + [anon_sym_continue_AT] = ACTIONS(4928), + [anon_sym_break_AT] = ACTIONS(4928), + [anon_sym_this_AT] = ACTIONS(4928), + [anon_sym_super_AT] = ACTIONS(4928), + [sym_real_literal] = ACTIONS(4928), + [sym_integer_literal] = ACTIONS(4926), + [sym_hex_literal] = ACTIONS(4928), + [sym_bin_literal] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4928), + [sym__automatic_semicolon] = ACTIONS(4928), + [sym_safe_nav] = ACTIONS(4928), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4928), }, [1070] = { - [sym__alpha_identifier] = ACTIONS(4795), - [anon_sym_AT] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4797), - [anon_sym_as] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_where] = ACTIONS(4795), - [anon_sym_object] = ACTIONS(4795), - [anon_sym_fun] = ACTIONS(4795), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_get] = ACTIONS(4795), - [anon_sym_set] = ACTIONS(4795), - [anon_sym_this] = ACTIONS(4795), - [anon_sym_super] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4795), - [sym_label] = ACTIONS(4795), - [anon_sym_in] = ACTIONS(4795), - [anon_sym_DOT_DOT] = ACTIONS(4797), - [anon_sym_QMARK_COLON] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_null] = ACTIONS(4795), - [anon_sym_if] = ACTIONS(4795), - [anon_sym_else] = ACTIONS(4795), - [anon_sym_when] = ACTIONS(4795), - [anon_sym_try] = ACTIONS(4795), - [anon_sym_throw] = ACTIONS(4795), - [anon_sym_return] = ACTIONS(4795), - [anon_sym_continue] = ACTIONS(4795), - [anon_sym_break] = ACTIONS(4795), - [anon_sym_COLON_COLON] = ACTIONS(4797), - [anon_sym_PLUS_EQ] = ACTIONS(4797), - [anon_sym_DASH_EQ] = ACTIONS(4797), - [anon_sym_STAR_EQ] = ACTIONS(4797), - [anon_sym_SLASH_EQ] = ACTIONS(4797), - [anon_sym_PERCENT_EQ] = ACTIONS(4797), - [anon_sym_BANG_EQ] = ACTIONS(4795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4797), - [anon_sym_EQ_EQ] = ACTIONS(4795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4797), - [anon_sym_LT_EQ] = ACTIONS(4797), - [anon_sym_GT_EQ] = ACTIONS(4797), - [anon_sym_BANGin] = ACTIONS(4797), - [anon_sym_is] = ACTIONS(4795), - [anon_sym_BANGis] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4795), - [anon_sym_as_QMARK] = ACTIONS(4797), - [anon_sym_PLUS_PLUS] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4795), - [anon_sym_BANG_BANG] = ACTIONS(4797), - [anon_sym_suspend] = ACTIONS(4795), - [anon_sym_sealed] = ACTIONS(4795), - [anon_sym_annotation] = ACTIONS(4795), - [anon_sym_data] = ACTIONS(4795), - [anon_sym_inner] = ACTIONS(4795), - [anon_sym_value] = ACTIONS(4795), - [anon_sym_override] = ACTIONS(4795), - [anon_sym_lateinit] = ACTIONS(4795), - [anon_sym_public] = ACTIONS(4795), - [anon_sym_private] = ACTIONS(4795), - [anon_sym_internal] = ACTIONS(4795), - [anon_sym_protected] = ACTIONS(4795), - [anon_sym_tailrec] = ACTIONS(4795), - [anon_sym_operator] = ACTIONS(4795), - [anon_sym_infix] = ACTIONS(4795), - [anon_sym_inline] = ACTIONS(4795), - [anon_sym_external] = ACTIONS(4795), - [sym_property_modifier] = ACTIONS(4795), - [anon_sym_abstract] = ACTIONS(4795), - [anon_sym_final] = ACTIONS(4795), - [anon_sym_open] = ACTIONS(4795), - [anon_sym_vararg] = ACTIONS(4795), - [anon_sym_noinline] = ACTIONS(4795), - [anon_sym_crossinline] = ACTIONS(4795), - [anon_sym_expect] = ACTIONS(4795), - [anon_sym_actual] = ACTIONS(4795), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4797), - [anon_sym_continue_AT] = ACTIONS(4797), - [anon_sym_break_AT] = ACTIONS(4797), - [sym_real_literal] = ACTIONS(4797), - [sym_integer_literal] = ACTIONS(4795), - [sym_hex_literal] = ACTIONS(4797), - [sym_bin_literal] = ACTIONS(4797), - [anon_sym_true] = ACTIONS(4795), - [anon_sym_false] = ACTIONS(4795), - [anon_sym_SQUOTE] = ACTIONS(4797), - [sym__backtick_identifier] = ACTIONS(4797), - [sym__automatic_semicolon] = ACTIONS(4797), - [sym_safe_nav] = ACTIONS(4797), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4797), + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_object] = ACTIONS(4930), + [anon_sym_fun] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_this] = ACTIONS(4930), + [anon_sym_super] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_when] = ACTIONS(4930), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_throw] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_suspend] = ACTIONS(4930), + [anon_sym_sealed] = ACTIONS(4930), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_lateinit] = ACTIONS(4930), + [anon_sym_public] = ACTIONS(4930), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_internal] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_tailrec] = ACTIONS(4930), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_infix] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym_external] = ACTIONS(4930), + [sym_property_modifier] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_open] = ACTIONS(4930), + [anon_sym_vararg] = ACTIONS(4930), + [anon_sym_noinline] = ACTIONS(4930), + [anon_sym_crossinline] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4932), + [anon_sym_continue_AT] = ACTIONS(4932), + [anon_sym_break_AT] = ACTIONS(4932), + [anon_sym_this_AT] = ACTIONS(4932), + [anon_sym_super_AT] = ACTIONS(4932), + [sym_real_literal] = ACTIONS(4932), + [sym_integer_literal] = ACTIONS(4930), + [sym_hex_literal] = ACTIONS(4932), + [sym_bin_literal] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4932), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4932), }, [1071] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4934), + [anon_sym_AT] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_where] = ACTIONS(4934), + [anon_sym_object] = ACTIONS(4934), + [anon_sym_fun] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_get] = ACTIONS(4934), + [anon_sym_set] = ACTIONS(4934), + [anon_sym_this] = ACTIONS(4934), + [anon_sym_super] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [sym_label] = ACTIONS(4934), + [anon_sym_in] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4936), + [anon_sym_QMARK_COLON] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_when] = ACTIONS(4934), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_throw] = ACTIONS(4934), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym_PLUS_EQ] = ACTIONS(4936), + [anon_sym_DASH_EQ] = ACTIONS(4936), + [anon_sym_STAR_EQ] = ACTIONS(4936), + [anon_sym_SLASH_EQ] = ACTIONS(4936), + [anon_sym_PERCENT_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4936), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_BANGin] = ACTIONS(4936), + [anon_sym_is] = ACTIONS(4934), + [anon_sym_BANGis] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_as_QMARK] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_BANG_BANG] = ACTIONS(4936), + [anon_sym_suspend] = ACTIONS(4934), + [anon_sym_sealed] = ACTIONS(4934), + [anon_sym_annotation] = ACTIONS(4934), + [anon_sym_data] = ACTIONS(4934), + [anon_sym_inner] = ACTIONS(4934), + [anon_sym_value] = ACTIONS(4934), + [anon_sym_override] = ACTIONS(4934), + [anon_sym_lateinit] = ACTIONS(4934), + [anon_sym_public] = ACTIONS(4934), + [anon_sym_private] = ACTIONS(4934), + [anon_sym_internal] = ACTIONS(4934), + [anon_sym_protected] = ACTIONS(4934), + [anon_sym_tailrec] = ACTIONS(4934), + [anon_sym_operator] = ACTIONS(4934), + [anon_sym_infix] = ACTIONS(4934), + [anon_sym_inline] = ACTIONS(4934), + [anon_sym_external] = ACTIONS(4934), + [sym_property_modifier] = ACTIONS(4934), + [anon_sym_abstract] = ACTIONS(4934), + [anon_sym_final] = ACTIONS(4934), + [anon_sym_open] = ACTIONS(4934), + [anon_sym_vararg] = ACTIONS(4934), + [anon_sym_noinline] = ACTIONS(4934), + [anon_sym_crossinline] = ACTIONS(4934), + [anon_sym_expect] = ACTIONS(4934), + [anon_sym_actual] = ACTIONS(4934), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4936), + [anon_sym_continue_AT] = ACTIONS(4936), + [anon_sym_break_AT] = ACTIONS(4936), + [anon_sym_this_AT] = ACTIONS(4936), + [anon_sym_super_AT] = ACTIONS(4936), + [sym_real_literal] = ACTIONS(4936), + [sym_integer_literal] = ACTIONS(4934), + [sym_hex_literal] = ACTIONS(4936), + [sym_bin_literal] = ACTIONS(4936), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(4936), + [sym__automatic_semicolon] = ACTIONS(4936), + [sym_safe_nav] = ACTIONS(4936), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4936), }, [1072] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_object] = ACTIONS(4938), + [anon_sym_fun] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_this] = ACTIONS(4938), + [anon_sym_super] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_if] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_when] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4938), + [anon_sym_throw] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4938), + [anon_sym_continue] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_suspend] = ACTIONS(4938), + [anon_sym_sealed] = ACTIONS(4938), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_lateinit] = ACTIONS(4938), + [anon_sym_public] = ACTIONS(4938), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_internal] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_tailrec] = ACTIONS(4938), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_infix] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym_external] = ACTIONS(4938), + [sym_property_modifier] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_open] = ACTIONS(4938), + [anon_sym_vararg] = ACTIONS(4938), + [anon_sym_noinline] = ACTIONS(4938), + [anon_sym_crossinline] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4940), + [anon_sym_continue_AT] = ACTIONS(4940), + [anon_sym_break_AT] = ACTIONS(4940), + [anon_sym_this_AT] = ACTIONS(4940), + [anon_sym_super_AT] = ACTIONS(4940), + [sym_real_literal] = ACTIONS(4940), + [sym_integer_literal] = ACTIONS(4938), + [sym_hex_literal] = ACTIONS(4940), + [sym_bin_literal] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4940), + [sym__backtick_identifier] = ACTIONS(4940), + [sym__automatic_semicolon] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4940), }, [1073] = { - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_this] = ACTIONS(4015), - [anon_sym_super] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_null] = ACTIONS(4015), - [anon_sym_if] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_try] = ACTIONS(4015), - [anon_sym_throw] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_suspend] = ACTIONS(4015), - [anon_sym_sealed] = ACTIONS(4015), - [anon_sym_annotation] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_override] = ACTIONS(4015), - [anon_sym_lateinit] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4015), - [anon_sym_private] = ACTIONS(4015), - [anon_sym_internal] = ACTIONS(4015), - [anon_sym_protected] = ACTIONS(4015), - [anon_sym_tailrec] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(4015), - [anon_sym_infix] = ACTIONS(4015), - [anon_sym_inline] = ACTIONS(4015), - [anon_sym_external] = ACTIONS(4015), - [sym_property_modifier] = ACTIONS(4015), - [anon_sym_abstract] = ACTIONS(4015), - [anon_sym_final] = ACTIONS(4015), - [anon_sym_open] = ACTIONS(4015), - [anon_sym_vararg] = ACTIONS(4015), - [anon_sym_noinline] = ACTIONS(4015), - [anon_sym_crossinline] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4017), - [anon_sym_continue_AT] = ACTIONS(4017), - [anon_sym_break_AT] = ACTIONS(4017), - [sym_real_literal] = ACTIONS(4017), - [sym_integer_literal] = ACTIONS(4015), - [sym_hex_literal] = ACTIONS(4017), - [sym_bin_literal] = ACTIONS(4017), - [anon_sym_true] = ACTIONS(4015), - [anon_sym_false] = ACTIONS(4015), - [anon_sym_SQUOTE] = ACTIONS(4017), - [sym__backtick_identifier] = ACTIONS(4017), - [sym__automatic_semicolon] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4017), + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_object] = ACTIONS(4942), + [anon_sym_fun] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_this] = ACTIONS(4942), + [anon_sym_super] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4942), + [anon_sym_if] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_when] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4942), + [anon_sym_throw] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4942), + [anon_sym_continue] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_suspend] = ACTIONS(4942), + [anon_sym_sealed] = ACTIONS(4942), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_lateinit] = ACTIONS(4942), + [anon_sym_public] = ACTIONS(4942), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_internal] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_tailrec] = ACTIONS(4942), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_infix] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym_external] = ACTIONS(4942), + [sym_property_modifier] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_open] = ACTIONS(4942), + [anon_sym_vararg] = ACTIONS(4942), + [anon_sym_noinline] = ACTIONS(4942), + [anon_sym_crossinline] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4944), + [anon_sym_continue_AT] = ACTIONS(4944), + [anon_sym_break_AT] = ACTIONS(4944), + [anon_sym_this_AT] = ACTIONS(4944), + [anon_sym_super_AT] = ACTIONS(4944), + [sym_real_literal] = ACTIONS(4944), + [sym_integer_literal] = ACTIONS(4942), + [sym_hex_literal] = ACTIONS(4944), + [sym_bin_literal] = ACTIONS(4944), + [anon_sym_true] = ACTIONS(4942), + [anon_sym_false] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4944), + [sym__backtick_identifier] = ACTIONS(4944), + [sym__automatic_semicolon] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4944), }, [1074] = { - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1780), - [anon_sym_set] = ACTIONS(1780), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(1780), - [anon_sym_sealed] = ACTIONS(1780), - [anon_sym_annotation] = ACTIONS(1780), - [anon_sym_data] = ACTIONS(1780), - [anon_sym_inner] = ACTIONS(1780), - [anon_sym_value] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_lateinit] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_internal] = ACTIONS(1780), - [anon_sym_protected] = ACTIONS(1780), - [anon_sym_tailrec] = ACTIONS(1780), - [anon_sym_operator] = ACTIONS(1780), - [anon_sym_infix] = ACTIONS(1780), - [anon_sym_inline] = ACTIONS(1780), - [anon_sym_external] = ACTIONS(1780), - [sym_property_modifier] = ACTIONS(1780), - [anon_sym_abstract] = ACTIONS(1780), - [anon_sym_final] = ACTIONS(1780), - [anon_sym_open] = ACTIONS(1780), - [anon_sym_vararg] = ACTIONS(1780), - [anon_sym_noinline] = ACTIONS(1780), - [anon_sym_crossinline] = ACTIONS(1780), - [anon_sym_expect] = ACTIONS(1780), - [anon_sym_actual] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [1075] = { - [sym__alpha_identifier] = ACTIONS(4807), - [anon_sym_AT] = ACTIONS(4809), - [anon_sym_LBRACK] = ACTIONS(4809), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4807), - [anon_sym_LBRACE] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_LPAREN] = ACTIONS(4809), - [anon_sym_COMMA] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(4807), - [anon_sym_GT] = ACTIONS(4807), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_object] = ACTIONS(4807), - [anon_sym_fun] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_SEMI] = ACTIONS(4809), - [anon_sym_get] = ACTIONS(4807), - [anon_sym_set] = ACTIONS(4807), - [anon_sym_this] = ACTIONS(4807), - [anon_sym_super] = ACTIONS(4807), - [anon_sym_STAR] = ACTIONS(4807), - [sym_label] = ACTIONS(4807), - [anon_sym_in] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4809), - [anon_sym_QMARK_COLON] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_null] = ACTIONS(4807), - [anon_sym_if] = ACTIONS(4807), - [anon_sym_else] = ACTIONS(4807), - [anon_sym_when] = ACTIONS(4807), - [anon_sym_try] = ACTIONS(4807), - [anon_sym_throw] = ACTIONS(4807), - [anon_sym_return] = ACTIONS(4807), - [anon_sym_continue] = ACTIONS(4807), - [anon_sym_break] = ACTIONS(4807), - [anon_sym_COLON_COLON] = ACTIONS(4809), - [anon_sym_PLUS_EQ] = ACTIONS(4809), - [anon_sym_DASH_EQ] = ACTIONS(4809), - [anon_sym_STAR_EQ] = ACTIONS(4809), - [anon_sym_SLASH_EQ] = ACTIONS(4809), - [anon_sym_PERCENT_EQ] = ACTIONS(4809), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4809), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4809), - [anon_sym_LT_EQ] = ACTIONS(4809), - [anon_sym_GT_EQ] = ACTIONS(4809), - [anon_sym_BANGin] = ACTIONS(4809), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_BANGis] = ACTIONS(4809), - [anon_sym_PLUS] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4807), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_as_QMARK] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4809), - [anon_sym_DASH_DASH] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4807), - [anon_sym_BANG_BANG] = ACTIONS(4809), - [anon_sym_suspend] = ACTIONS(4807), - [anon_sym_sealed] = ACTIONS(4807), - [anon_sym_annotation] = ACTIONS(4807), - [anon_sym_data] = ACTIONS(4807), - [anon_sym_inner] = ACTIONS(4807), - [anon_sym_value] = ACTIONS(4807), - [anon_sym_override] = ACTIONS(4807), - [anon_sym_lateinit] = ACTIONS(4807), - [anon_sym_public] = ACTIONS(4807), - [anon_sym_private] = ACTIONS(4807), - [anon_sym_internal] = ACTIONS(4807), - [anon_sym_protected] = ACTIONS(4807), - [anon_sym_tailrec] = ACTIONS(4807), - [anon_sym_operator] = ACTIONS(4807), - [anon_sym_infix] = ACTIONS(4807), - [anon_sym_inline] = ACTIONS(4807), - [anon_sym_external] = ACTIONS(4807), - [sym_property_modifier] = ACTIONS(4807), - [anon_sym_abstract] = ACTIONS(4807), - [anon_sym_final] = ACTIONS(4807), - [anon_sym_open] = ACTIONS(4807), - [anon_sym_vararg] = ACTIONS(4807), - [anon_sym_noinline] = ACTIONS(4807), - [anon_sym_crossinline] = ACTIONS(4807), - [anon_sym_expect] = ACTIONS(4807), - [anon_sym_actual] = ACTIONS(4807), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4809), - [anon_sym_continue_AT] = ACTIONS(4809), - [anon_sym_break_AT] = ACTIONS(4809), - [sym_real_literal] = ACTIONS(4809), - [sym_integer_literal] = ACTIONS(4807), - [sym_hex_literal] = ACTIONS(4809), - [sym_bin_literal] = ACTIONS(4809), - [anon_sym_true] = ACTIONS(4807), - [anon_sym_false] = ACTIONS(4807), - [anon_sym_SQUOTE] = ACTIONS(4809), - [sym__backtick_identifier] = ACTIONS(4809), - [sym__automatic_semicolon] = ACTIONS(4809), - [sym_safe_nav] = ACTIONS(4809), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4809), + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_object] = ACTIONS(4946), + [anon_sym_fun] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_this] = ACTIONS(4946), + [anon_sym_super] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4946), + [anon_sym_if] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_when] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4946), + [anon_sym_throw] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4946), + [anon_sym_continue] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_suspend] = ACTIONS(4946), + [anon_sym_sealed] = ACTIONS(4946), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_lateinit] = ACTIONS(4946), + [anon_sym_public] = ACTIONS(4946), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_internal] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_tailrec] = ACTIONS(4946), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_infix] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym_external] = ACTIONS(4946), + [sym_property_modifier] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_open] = ACTIONS(4946), + [anon_sym_vararg] = ACTIONS(4946), + [anon_sym_noinline] = ACTIONS(4946), + [anon_sym_crossinline] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4948), + [anon_sym_continue_AT] = ACTIONS(4948), + [anon_sym_break_AT] = ACTIONS(4948), + [anon_sym_this_AT] = ACTIONS(4948), + [anon_sym_super_AT] = ACTIONS(4948), + [sym_real_literal] = ACTIONS(4948), + [sym_integer_literal] = ACTIONS(4946), + [sym_hex_literal] = ACTIONS(4948), + [sym_bin_literal] = ACTIONS(4948), + [anon_sym_true] = ACTIONS(4946), + [anon_sym_false] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4948), + [sym__backtick_identifier] = ACTIONS(4948), + [sym__automatic_semicolon] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4948), }, [1076] = { - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_object] = ACTIONS(4950), + [anon_sym_fun] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_this] = ACTIONS(4950), + [anon_sym_super] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4950), + [anon_sym_if] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_when] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4950), + [anon_sym_throw] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4950), + [anon_sym_continue] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_suspend] = ACTIONS(4950), + [anon_sym_sealed] = ACTIONS(4950), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_lateinit] = ACTIONS(4950), + [anon_sym_public] = ACTIONS(4950), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_internal] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_tailrec] = ACTIONS(4950), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_infix] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym_external] = ACTIONS(4950), + [sym_property_modifier] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_open] = ACTIONS(4950), + [anon_sym_vararg] = ACTIONS(4950), + [anon_sym_noinline] = ACTIONS(4950), + [anon_sym_crossinline] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4952), + [anon_sym_continue_AT] = ACTIONS(4952), + [anon_sym_break_AT] = ACTIONS(4952), + [anon_sym_this_AT] = ACTIONS(4952), + [anon_sym_super_AT] = ACTIONS(4952), + [sym_real_literal] = ACTIONS(4952), + [sym_integer_literal] = ACTIONS(4950), + [sym_hex_literal] = ACTIONS(4952), + [sym_bin_literal] = ACTIONS(4952), + [anon_sym_true] = ACTIONS(4950), + [anon_sym_false] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4952), + [sym__backtick_identifier] = ACTIONS(4952), + [sym__automatic_semicolon] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4952), }, [1077] = { - [sym_class_body] = STATE(1138), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(4811), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_object] = ACTIONS(4954), + [anon_sym_fun] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_this] = ACTIONS(4954), + [anon_sym_super] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4954), + [anon_sym_if] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_when] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4954), + [anon_sym_throw] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4954), + [anon_sym_continue] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_suspend] = ACTIONS(4954), + [anon_sym_sealed] = ACTIONS(4954), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_lateinit] = ACTIONS(4954), + [anon_sym_public] = ACTIONS(4954), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_internal] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_tailrec] = ACTIONS(4954), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_infix] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym_external] = ACTIONS(4954), + [sym_property_modifier] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_open] = ACTIONS(4954), + [anon_sym_vararg] = ACTIONS(4954), + [anon_sym_noinline] = ACTIONS(4954), + [anon_sym_crossinline] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4956), + [anon_sym_continue_AT] = ACTIONS(4956), + [anon_sym_break_AT] = ACTIONS(4956), + [anon_sym_this_AT] = ACTIONS(4956), + [anon_sym_super_AT] = ACTIONS(4956), + [sym_real_literal] = ACTIONS(4956), + [sym_integer_literal] = ACTIONS(4954), + [sym_hex_literal] = ACTIONS(4956), + [sym_bin_literal] = ACTIONS(4956), + [anon_sym_true] = ACTIONS(4954), + [anon_sym_false] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4956), + [sym__backtick_identifier] = ACTIONS(4956), + [sym__automatic_semicolon] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4956), }, [1078] = { - [sym__alpha_identifier] = ACTIONS(4813), - [anon_sym_AT] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4813), - [anon_sym_EQ] = ACTIONS(4813), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_where] = ACTIONS(4813), - [anon_sym_object] = ACTIONS(4813), - [anon_sym_fun] = ACTIONS(4813), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_get] = ACTIONS(4813), - [anon_sym_set] = ACTIONS(4813), - [anon_sym_this] = ACTIONS(4813), - [anon_sym_super] = ACTIONS(4813), - [anon_sym_STAR] = ACTIONS(4813), - [sym_label] = ACTIONS(4813), - [anon_sym_in] = ACTIONS(4813), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_QMARK_COLON] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_null] = ACTIONS(4813), - [anon_sym_if] = ACTIONS(4813), - [anon_sym_else] = ACTIONS(4813), - [anon_sym_when] = ACTIONS(4813), - [anon_sym_try] = ACTIONS(4813), - [anon_sym_throw] = ACTIONS(4813), - [anon_sym_return] = ACTIONS(4813), - [anon_sym_continue] = ACTIONS(4813), - [anon_sym_break] = ACTIONS(4813), - [anon_sym_COLON_COLON] = ACTIONS(4815), - [anon_sym_PLUS_EQ] = ACTIONS(4815), - [anon_sym_DASH_EQ] = ACTIONS(4815), - [anon_sym_STAR_EQ] = ACTIONS(4815), - [anon_sym_SLASH_EQ] = ACTIONS(4815), - [anon_sym_PERCENT_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4813), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4813), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_BANGin] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4813), - [anon_sym_BANGis] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4813), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_SLASH] = ACTIONS(4813), - [anon_sym_PERCENT] = ACTIONS(4813), - [anon_sym_as_QMARK] = ACTIONS(4815), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4813), - [anon_sym_BANG_BANG] = ACTIONS(4815), - [anon_sym_suspend] = ACTIONS(4813), - [anon_sym_sealed] = ACTIONS(4813), - [anon_sym_annotation] = ACTIONS(4813), - [anon_sym_data] = ACTIONS(4813), - [anon_sym_inner] = ACTIONS(4813), - [anon_sym_value] = ACTIONS(4813), - [anon_sym_override] = ACTIONS(4813), - [anon_sym_lateinit] = ACTIONS(4813), - [anon_sym_public] = ACTIONS(4813), - [anon_sym_private] = ACTIONS(4813), - [anon_sym_internal] = ACTIONS(4813), - [anon_sym_protected] = ACTIONS(4813), - [anon_sym_tailrec] = ACTIONS(4813), - [anon_sym_operator] = ACTIONS(4813), - [anon_sym_infix] = ACTIONS(4813), - [anon_sym_inline] = ACTIONS(4813), - [anon_sym_external] = ACTIONS(4813), - [sym_property_modifier] = ACTIONS(4813), - [anon_sym_abstract] = ACTIONS(4813), - [anon_sym_final] = ACTIONS(4813), - [anon_sym_open] = ACTIONS(4813), - [anon_sym_vararg] = ACTIONS(4813), - [anon_sym_noinline] = ACTIONS(4813), - [anon_sym_crossinline] = ACTIONS(4813), - [anon_sym_expect] = ACTIONS(4813), - [anon_sym_actual] = ACTIONS(4813), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4815), - [anon_sym_continue_AT] = ACTIONS(4815), - [anon_sym_break_AT] = ACTIONS(4815), - [sym_real_literal] = ACTIONS(4815), - [sym_integer_literal] = ACTIONS(4813), - [sym_hex_literal] = ACTIONS(4815), - [sym_bin_literal] = ACTIONS(4815), - [anon_sym_true] = ACTIONS(4813), - [anon_sym_false] = ACTIONS(4813), - [anon_sym_SQUOTE] = ACTIONS(4815), - [sym__backtick_identifier] = ACTIONS(4815), - [sym__automatic_semicolon] = ACTIONS(4815), - [sym_safe_nav] = ACTIONS(4815), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4815), + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_object] = ACTIONS(4958), + [anon_sym_fun] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_this] = ACTIONS(4958), + [anon_sym_super] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4958), + [anon_sym_if] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_when] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4958), + [anon_sym_throw] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4958), + [anon_sym_continue] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_suspend] = ACTIONS(4958), + [anon_sym_sealed] = ACTIONS(4958), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_lateinit] = ACTIONS(4958), + [anon_sym_public] = ACTIONS(4958), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_internal] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_tailrec] = ACTIONS(4958), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_infix] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym_external] = ACTIONS(4958), + [sym_property_modifier] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_open] = ACTIONS(4958), + [anon_sym_vararg] = ACTIONS(4958), + [anon_sym_noinline] = ACTIONS(4958), + [anon_sym_crossinline] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4960), + [anon_sym_continue_AT] = ACTIONS(4960), + [anon_sym_break_AT] = ACTIONS(4960), + [anon_sym_this_AT] = ACTIONS(4960), + [anon_sym_super_AT] = ACTIONS(4960), + [sym_real_literal] = ACTIONS(4960), + [sym_integer_literal] = ACTIONS(4958), + [sym_hex_literal] = ACTIONS(4960), + [sym_bin_literal] = ACTIONS(4960), + [anon_sym_true] = ACTIONS(4958), + [anon_sym_false] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4960), }, [1079] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [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), - [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), + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_object] = ACTIONS(4962), + [anon_sym_fun] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_this] = ACTIONS(4962), + [anon_sym_super] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_when] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4962), + [anon_sym_throw] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4962), + [anon_sym_continue] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_suspend] = ACTIONS(4962), + [anon_sym_sealed] = ACTIONS(4962), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_lateinit] = ACTIONS(4962), + [anon_sym_public] = ACTIONS(4962), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_internal] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_tailrec] = ACTIONS(4962), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_infix] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym_external] = ACTIONS(4962), + [sym_property_modifier] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_open] = ACTIONS(4962), + [anon_sym_vararg] = ACTIONS(4962), + [anon_sym_noinline] = ACTIONS(4962), + [anon_sym_crossinline] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4964), + [anon_sym_continue_AT] = ACTIONS(4964), + [anon_sym_break_AT] = ACTIONS(4964), + [anon_sym_this_AT] = ACTIONS(4964), + [anon_sym_super_AT] = ACTIONS(4964), + [sym_real_literal] = ACTIONS(4964), + [sym_integer_literal] = ACTIONS(4962), + [sym_hex_literal] = ACTIONS(4964), + [sym_bin_literal] = ACTIONS(4964), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4964), + [sym__automatic_semicolon] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4964), }, [1080] = { - [sym__alpha_identifier] = ACTIONS(4821), - [anon_sym_AT] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_object] = ACTIONS(4821), - [anon_sym_fun] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_get] = ACTIONS(4821), - [anon_sym_set] = ACTIONS(4821), - [anon_sym_this] = ACTIONS(4821), - [anon_sym_super] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4821), - [sym_label] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_QMARK_COLON] = ACTIONS(4823), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_null] = ACTIONS(4821), - [anon_sym_if] = ACTIONS(4821), - [anon_sym_else] = ACTIONS(4821), - [anon_sym_when] = ACTIONS(4821), - [anon_sym_try] = ACTIONS(4821), - [anon_sym_throw] = ACTIONS(4821), - [anon_sym_return] = ACTIONS(4821), - [anon_sym_continue] = ACTIONS(4821), - [anon_sym_break] = ACTIONS(4821), - [anon_sym_COLON_COLON] = ACTIONS(4823), - [anon_sym_PLUS_EQ] = ACTIONS(4823), - [anon_sym_DASH_EQ] = ACTIONS(4823), - [anon_sym_STAR_EQ] = ACTIONS(4823), - [anon_sym_SLASH_EQ] = ACTIONS(4823), - [anon_sym_PERCENT_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_BANGin] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4821), - [anon_sym_BANGis] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_as_QMARK] = ACTIONS(4823), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_BANG_BANG] = ACTIONS(4823), - [anon_sym_suspend] = ACTIONS(4821), - [anon_sym_sealed] = ACTIONS(4821), - [anon_sym_annotation] = ACTIONS(4821), - [anon_sym_data] = ACTIONS(4821), - [anon_sym_inner] = ACTIONS(4821), - [anon_sym_value] = ACTIONS(4821), - [anon_sym_override] = ACTIONS(4821), - [anon_sym_lateinit] = ACTIONS(4821), - [anon_sym_public] = ACTIONS(4821), - [anon_sym_private] = ACTIONS(4821), - [anon_sym_internal] = ACTIONS(4821), - [anon_sym_protected] = ACTIONS(4821), - [anon_sym_tailrec] = ACTIONS(4821), - [anon_sym_operator] = ACTIONS(4821), - [anon_sym_infix] = ACTIONS(4821), - [anon_sym_inline] = ACTIONS(4821), - [anon_sym_external] = ACTIONS(4821), - [sym_property_modifier] = ACTIONS(4821), - [anon_sym_abstract] = ACTIONS(4821), - [anon_sym_final] = ACTIONS(4821), - [anon_sym_open] = ACTIONS(4821), - [anon_sym_vararg] = ACTIONS(4821), - [anon_sym_noinline] = ACTIONS(4821), - [anon_sym_crossinline] = ACTIONS(4821), - [anon_sym_expect] = ACTIONS(4821), - [anon_sym_actual] = ACTIONS(4821), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4823), - [anon_sym_continue_AT] = ACTIONS(4823), - [anon_sym_break_AT] = ACTIONS(4823), - [sym_real_literal] = ACTIONS(4823), - [sym_integer_literal] = ACTIONS(4821), - [sym_hex_literal] = ACTIONS(4823), - [sym_bin_literal] = ACTIONS(4823), - [anon_sym_true] = ACTIONS(4821), - [anon_sym_false] = ACTIONS(4821), - [anon_sym_SQUOTE] = ACTIONS(4823), - [sym__backtick_identifier] = ACTIONS(4823), - [sym__automatic_semicolon] = ACTIONS(4823), - [sym_safe_nav] = ACTIONS(4823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4823), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [1081] = { - [sym__alpha_identifier] = ACTIONS(4825), - [anon_sym_AT] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_as] = ACTIONS(4825), - [anon_sym_EQ] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_where] = ACTIONS(4825), - [anon_sym_object] = ACTIONS(4825), - [anon_sym_fun] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_get] = ACTIONS(4825), - [anon_sym_set] = ACTIONS(4825), - [anon_sym_this] = ACTIONS(4825), - [anon_sym_super] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [sym_label] = ACTIONS(4825), - [anon_sym_in] = ACTIONS(4825), - [anon_sym_DOT_DOT] = ACTIONS(4827), - [anon_sym_QMARK_COLON] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_null] = ACTIONS(4825), - [anon_sym_if] = ACTIONS(4825), - [anon_sym_else] = ACTIONS(4825), - [anon_sym_when] = ACTIONS(4825), - [anon_sym_try] = ACTIONS(4825), - [anon_sym_throw] = ACTIONS(4825), - [anon_sym_return] = ACTIONS(4825), - [anon_sym_continue] = ACTIONS(4825), - [anon_sym_break] = ACTIONS(4825), - [anon_sym_COLON_COLON] = ACTIONS(4827), - [anon_sym_PLUS_EQ] = ACTIONS(4827), - [anon_sym_DASH_EQ] = ACTIONS(4827), - [anon_sym_STAR_EQ] = ACTIONS(4827), - [anon_sym_SLASH_EQ] = ACTIONS(4827), - [anon_sym_PERCENT_EQ] = ACTIONS(4827), - [anon_sym_BANG_EQ] = ACTIONS(4825), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4827), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4827), - [anon_sym_BANGin] = ACTIONS(4827), - [anon_sym_is] = ACTIONS(4825), - [anon_sym_BANGis] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4825), - [anon_sym_as_QMARK] = ACTIONS(4827), - [anon_sym_PLUS_PLUS] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_BANG_BANG] = ACTIONS(4827), - [anon_sym_suspend] = ACTIONS(4825), - [anon_sym_sealed] = ACTIONS(4825), - [anon_sym_annotation] = ACTIONS(4825), - [anon_sym_data] = ACTIONS(4825), - [anon_sym_inner] = ACTIONS(4825), - [anon_sym_value] = ACTIONS(4825), - [anon_sym_override] = ACTIONS(4825), - [anon_sym_lateinit] = ACTIONS(4825), - [anon_sym_public] = ACTIONS(4825), - [anon_sym_private] = ACTIONS(4825), - [anon_sym_internal] = ACTIONS(4825), - [anon_sym_protected] = ACTIONS(4825), - [anon_sym_tailrec] = ACTIONS(4825), - [anon_sym_operator] = ACTIONS(4825), - [anon_sym_infix] = ACTIONS(4825), - [anon_sym_inline] = ACTIONS(4825), - [anon_sym_external] = ACTIONS(4825), - [sym_property_modifier] = ACTIONS(4825), - [anon_sym_abstract] = ACTIONS(4825), - [anon_sym_final] = ACTIONS(4825), - [anon_sym_open] = ACTIONS(4825), - [anon_sym_vararg] = ACTIONS(4825), - [anon_sym_noinline] = ACTIONS(4825), - [anon_sym_crossinline] = ACTIONS(4825), - [anon_sym_expect] = ACTIONS(4825), - [anon_sym_actual] = ACTIONS(4825), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4827), - [anon_sym_continue_AT] = ACTIONS(4827), - [anon_sym_break_AT] = ACTIONS(4827), - [sym_real_literal] = ACTIONS(4827), - [sym_integer_literal] = ACTIONS(4825), - [sym_hex_literal] = ACTIONS(4827), - [sym_bin_literal] = ACTIONS(4827), - [anon_sym_true] = ACTIONS(4825), - [anon_sym_false] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4827), - [sym__backtick_identifier] = ACTIONS(4827), - [sym__automatic_semicolon] = ACTIONS(4827), - [sym_safe_nav] = ACTIONS(4827), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4827), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1082] = { - [sym__alpha_identifier] = ACTIONS(4829), - [anon_sym_AT] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4831), - [anon_sym_RBRACE] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_object] = ACTIONS(4829), - [anon_sym_fun] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4831), - [anon_sym_get] = ACTIONS(4829), - [anon_sym_set] = ACTIONS(4829), - [anon_sym_this] = ACTIONS(4829), - [anon_sym_super] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [sym_label] = ACTIONS(4829), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4831), - [anon_sym_QMARK_COLON] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_null] = ACTIONS(4829), - [anon_sym_if] = ACTIONS(4829), - [anon_sym_else] = ACTIONS(4829), - [anon_sym_when] = ACTIONS(4829), - [anon_sym_try] = ACTIONS(4829), - [anon_sym_throw] = ACTIONS(4829), - [anon_sym_return] = ACTIONS(4829), - [anon_sym_continue] = ACTIONS(4829), - [anon_sym_break] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4831), - [anon_sym_PLUS_EQ] = ACTIONS(4831), - [anon_sym_DASH_EQ] = ACTIONS(4831), - [anon_sym_STAR_EQ] = ACTIONS(4831), - [anon_sym_SLASH_EQ] = ACTIONS(4831), - [anon_sym_PERCENT_EQ] = ACTIONS(4831), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4831), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4831), - [anon_sym_LT_EQ] = ACTIONS(4831), - [anon_sym_GT_EQ] = ACTIONS(4831), - [anon_sym_BANGin] = ACTIONS(4831), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_BANGis] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_as_QMARK] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_BANG_BANG] = ACTIONS(4831), - [anon_sym_suspend] = ACTIONS(4829), - [anon_sym_sealed] = ACTIONS(4829), - [anon_sym_annotation] = ACTIONS(4829), - [anon_sym_data] = ACTIONS(4829), - [anon_sym_inner] = ACTIONS(4829), - [anon_sym_value] = ACTIONS(4829), - [anon_sym_override] = ACTIONS(4829), - [anon_sym_lateinit] = ACTIONS(4829), - [anon_sym_public] = ACTIONS(4829), - [anon_sym_private] = ACTIONS(4829), - [anon_sym_internal] = ACTIONS(4829), - [anon_sym_protected] = ACTIONS(4829), - [anon_sym_tailrec] = ACTIONS(4829), - [anon_sym_operator] = ACTIONS(4829), - [anon_sym_infix] = ACTIONS(4829), - [anon_sym_inline] = ACTIONS(4829), - [anon_sym_external] = ACTIONS(4829), - [sym_property_modifier] = ACTIONS(4829), - [anon_sym_abstract] = ACTIONS(4829), - [anon_sym_final] = ACTIONS(4829), - [anon_sym_open] = ACTIONS(4829), - [anon_sym_vararg] = ACTIONS(4829), - [anon_sym_noinline] = ACTIONS(4829), - [anon_sym_crossinline] = ACTIONS(4829), - [anon_sym_expect] = ACTIONS(4829), - [anon_sym_actual] = ACTIONS(4829), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4831), - [anon_sym_continue_AT] = ACTIONS(4831), - [anon_sym_break_AT] = ACTIONS(4831), - [sym_real_literal] = ACTIONS(4831), - [sym_integer_literal] = ACTIONS(4829), - [sym_hex_literal] = ACTIONS(4831), - [sym_bin_literal] = ACTIONS(4831), - [anon_sym_true] = ACTIONS(4829), - [anon_sym_false] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4831), - [sym__backtick_identifier] = ACTIONS(4831), - [sym__automatic_semicolon] = ACTIONS(4831), - [sym_safe_nav] = ACTIONS(4831), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4831), + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_object] = ACTIONS(4966), + [anon_sym_fun] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_this] = ACTIONS(4966), + [anon_sym_super] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_if] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_when] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4966), + [anon_sym_throw] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4966), + [anon_sym_continue] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_suspend] = ACTIONS(4966), + [anon_sym_sealed] = ACTIONS(4966), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_lateinit] = ACTIONS(4966), + [anon_sym_public] = ACTIONS(4966), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_internal] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_tailrec] = ACTIONS(4966), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_infix] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym_external] = ACTIONS(4966), + [sym_property_modifier] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_open] = ACTIONS(4966), + [anon_sym_vararg] = ACTIONS(4966), + [anon_sym_noinline] = ACTIONS(4966), + [anon_sym_crossinline] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4968), + [anon_sym_continue_AT] = ACTIONS(4968), + [anon_sym_break_AT] = ACTIONS(4968), + [anon_sym_this_AT] = ACTIONS(4968), + [anon_sym_super_AT] = ACTIONS(4968), + [sym_real_literal] = ACTIONS(4968), + [sym_integer_literal] = ACTIONS(4966), + [sym_hex_literal] = ACTIONS(4968), + [sym_bin_literal] = ACTIONS(4968), + [anon_sym_true] = ACTIONS(4966), + [anon_sym_false] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4968), }, [1083] = { - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_object] = ACTIONS(4970), + [anon_sym_fun] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_this] = ACTIONS(4970), + [anon_sym_super] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_if] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_when] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4970), + [anon_sym_throw] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4970), + [anon_sym_continue] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_suspend] = ACTIONS(4970), + [anon_sym_sealed] = ACTIONS(4970), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_lateinit] = ACTIONS(4970), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_internal] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_tailrec] = ACTIONS(4970), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_infix] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym_external] = ACTIONS(4970), + [sym_property_modifier] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_open] = ACTIONS(4970), + [anon_sym_vararg] = ACTIONS(4970), + [anon_sym_noinline] = ACTIONS(4970), + [anon_sym_crossinline] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4972), + [anon_sym_continue_AT] = ACTIONS(4972), + [anon_sym_break_AT] = ACTIONS(4972), + [anon_sym_this_AT] = ACTIONS(4972), + [anon_sym_super_AT] = ACTIONS(4972), + [sym_real_literal] = ACTIONS(4972), + [sym_integer_literal] = ACTIONS(4970), + [sym_hex_literal] = ACTIONS(4972), + [sym_bin_literal] = ACTIONS(4972), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4972), }, [1084] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [1085] = { - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_this] = ACTIONS(4025), - [anon_sym_super] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_null] = ACTIONS(4025), - [anon_sym_if] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(4025), - [anon_sym_throw] = ACTIONS(4025), - [anon_sym_return] = ACTIONS(4025), - [anon_sym_continue] = ACTIONS(4025), - [anon_sym_break] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4027), - [anon_sym_continue_AT] = ACTIONS(4027), - [anon_sym_break_AT] = ACTIONS(4027), - [sym_real_literal] = ACTIONS(4027), - [sym_integer_literal] = ACTIONS(4025), - [sym_hex_literal] = ACTIONS(4027), - [sym_bin_literal] = ACTIONS(4027), - [anon_sym_true] = ACTIONS(4025), - [anon_sym_false] = ACTIONS(4025), - [anon_sym_SQUOTE] = ACTIONS(4027), - [sym__backtick_identifier] = ACTIONS(4027), - [sym__automatic_semicolon] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4027), + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4974), + [anon_sym_if] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_when] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4974), + [anon_sym_throw] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4974), + [anon_sym_continue] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_suspend] = ACTIONS(4974), + [anon_sym_sealed] = ACTIONS(4974), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_lateinit] = ACTIONS(4974), + [anon_sym_public] = ACTIONS(4974), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_internal] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_tailrec] = ACTIONS(4974), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_infix] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym_external] = ACTIONS(4974), + [sym_property_modifier] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_open] = ACTIONS(4974), + [anon_sym_vararg] = ACTIONS(4974), + [anon_sym_noinline] = ACTIONS(4974), + [anon_sym_crossinline] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4976), + [anon_sym_continue_AT] = ACTIONS(4976), + [anon_sym_break_AT] = ACTIONS(4976), + [anon_sym_this_AT] = ACTIONS(4976), + [anon_sym_super_AT] = ACTIONS(4976), + [sym_real_literal] = ACTIONS(4976), + [sym_integer_literal] = ACTIONS(4974), + [sym_hex_literal] = ACTIONS(4976), + [sym_bin_literal] = ACTIONS(4976), + [anon_sym_true] = ACTIONS(4974), + [anon_sym_false] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4976), }, [1086] = { - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_object] = ACTIONS(4429), - [anon_sym_fun] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_this] = ACTIONS(4429), - [anon_sym_super] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_when] = ACTIONS(4429), - [anon_sym_try] = ACTIONS(4429), - [anon_sym_throw] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4431), - [anon_sym_continue_AT] = ACTIONS(4431), - [anon_sym_break_AT] = ACTIONS(4431), - [sym_real_literal] = ACTIONS(4431), - [sym_integer_literal] = ACTIONS(4429), - [sym_hex_literal] = ACTIONS(4431), - [sym_bin_literal] = ACTIONS(4431), - [anon_sym_true] = ACTIONS(4429), - [anon_sym_false] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4431), + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1087] = { - [sym__alpha_identifier] = ACTIONS(4833), - [anon_sym_AT] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_where] = ACTIONS(4833), - [anon_sym_object] = ACTIONS(4833), - [anon_sym_fun] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_get] = ACTIONS(4833), - [anon_sym_set] = ACTIONS(4833), - [anon_sym_this] = ACTIONS(4833), - [anon_sym_super] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [sym_label] = ACTIONS(4833), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_QMARK_COLON] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_null] = ACTIONS(4833), - [anon_sym_if] = ACTIONS(4833), - [anon_sym_else] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4833), - [anon_sym_try] = ACTIONS(4833), - [anon_sym_throw] = ACTIONS(4833), - [anon_sym_return] = ACTIONS(4833), - [anon_sym_continue] = ACTIONS(4833), - [anon_sym_break] = ACTIONS(4833), - [anon_sym_COLON_COLON] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_BANGin] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_BANGis] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_as_QMARK] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_BANG_BANG] = ACTIONS(4835), - [anon_sym_suspend] = ACTIONS(4833), - [anon_sym_sealed] = ACTIONS(4833), - [anon_sym_annotation] = ACTIONS(4833), - [anon_sym_data] = ACTIONS(4833), - [anon_sym_inner] = ACTIONS(4833), - [anon_sym_value] = ACTIONS(4833), - [anon_sym_override] = ACTIONS(4833), - [anon_sym_lateinit] = ACTIONS(4833), - [anon_sym_public] = ACTIONS(4833), - [anon_sym_private] = ACTIONS(4833), - [anon_sym_internal] = ACTIONS(4833), - [anon_sym_protected] = ACTIONS(4833), - [anon_sym_tailrec] = ACTIONS(4833), - [anon_sym_operator] = ACTIONS(4833), - [anon_sym_infix] = ACTIONS(4833), - [anon_sym_inline] = ACTIONS(4833), - [anon_sym_external] = ACTIONS(4833), - [sym_property_modifier] = ACTIONS(4833), - [anon_sym_abstract] = ACTIONS(4833), - [anon_sym_final] = ACTIONS(4833), - [anon_sym_open] = ACTIONS(4833), - [anon_sym_vararg] = ACTIONS(4833), - [anon_sym_noinline] = ACTIONS(4833), - [anon_sym_crossinline] = ACTIONS(4833), - [anon_sym_expect] = ACTIONS(4833), - [anon_sym_actual] = ACTIONS(4833), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4835), - [anon_sym_continue_AT] = ACTIONS(4835), - [anon_sym_break_AT] = ACTIONS(4835), - [sym_real_literal] = ACTIONS(4835), - [sym_integer_literal] = ACTIONS(4833), - [sym_hex_literal] = ACTIONS(4835), - [sym_bin_literal] = ACTIONS(4835), - [anon_sym_true] = ACTIONS(4833), - [anon_sym_false] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4835), - [sym__backtick_identifier] = ACTIONS(4835), - [sym__automatic_semicolon] = ACTIONS(4835), - [sym_safe_nav] = ACTIONS(4835), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4835), + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1088] = { - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1089] = { - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1090] = { - [sym__alpha_identifier] = ACTIONS(4837), - [anon_sym_AT] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_LBRACE] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4837), - [anon_sym_object] = ACTIONS(4837), - [anon_sym_fun] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_get] = ACTIONS(4837), - [anon_sym_set] = ACTIONS(4837), - [anon_sym_this] = ACTIONS(4837), - [anon_sym_super] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [sym_label] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_QMARK_COLON] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_null] = ACTIONS(4837), - [anon_sym_if] = ACTIONS(4837), - [anon_sym_else] = ACTIONS(4837), - [anon_sym_when] = ACTIONS(4837), - [anon_sym_try] = ACTIONS(4837), - [anon_sym_throw] = ACTIONS(4837), - [anon_sym_return] = ACTIONS(4837), - [anon_sym_continue] = ACTIONS(4837), - [anon_sym_break] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4839), - [anon_sym_PLUS_EQ] = ACTIONS(4839), - [anon_sym_DASH_EQ] = ACTIONS(4839), - [anon_sym_STAR_EQ] = ACTIONS(4839), - [anon_sym_SLASH_EQ] = ACTIONS(4839), - [anon_sym_PERCENT_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_BANGin] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4837), - [anon_sym_BANGis] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_as_QMARK] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_BANG_BANG] = ACTIONS(4839), - [anon_sym_suspend] = ACTIONS(4837), - [anon_sym_sealed] = ACTIONS(4837), - [anon_sym_annotation] = ACTIONS(4837), - [anon_sym_data] = ACTIONS(4837), - [anon_sym_inner] = ACTIONS(4837), - [anon_sym_value] = ACTIONS(4837), - [anon_sym_override] = ACTIONS(4837), - [anon_sym_lateinit] = ACTIONS(4837), - [anon_sym_public] = ACTIONS(4837), - [anon_sym_private] = ACTIONS(4837), - [anon_sym_internal] = ACTIONS(4837), - [anon_sym_protected] = ACTIONS(4837), - [anon_sym_tailrec] = ACTIONS(4837), - [anon_sym_operator] = ACTIONS(4837), - [anon_sym_infix] = ACTIONS(4837), - [anon_sym_inline] = ACTIONS(4837), - [anon_sym_external] = ACTIONS(4837), - [sym_property_modifier] = ACTIONS(4837), - [anon_sym_abstract] = ACTIONS(4837), - [anon_sym_final] = ACTIONS(4837), - [anon_sym_open] = ACTIONS(4837), - [anon_sym_vararg] = ACTIONS(4837), - [anon_sym_noinline] = ACTIONS(4837), - [anon_sym_crossinline] = ACTIONS(4837), - [anon_sym_expect] = ACTIONS(4837), - [anon_sym_actual] = ACTIONS(4837), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4839), - [anon_sym_continue_AT] = ACTIONS(4839), - [anon_sym_break_AT] = ACTIONS(4839), - [sym_real_literal] = ACTIONS(4839), - [sym_integer_literal] = ACTIONS(4837), - [sym_hex_literal] = ACTIONS(4839), - [sym_bin_literal] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4837), - [anon_sym_false] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4839), - [sym__backtick_identifier] = ACTIONS(4839), - [sym__automatic_semicolon] = ACTIONS(4839), - [sym_safe_nav] = ACTIONS(4839), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4839), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1091] = { - [sym_getter] = STATE(9559), - [sym_setter] = STATE(9559), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9362), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_get] = ACTIONS(4843), - [anon_sym_set] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(4982), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -170949,2692 +174479,5394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1092] = { - [sym_class_body] = STATE(1202), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym__alpha_identifier] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_object] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_get] = ACTIONS(5020), + [anon_sym_set] = ACTIONS(5020), + [anon_sym_this] = ACTIONS(5020), + [anon_sym_super] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [sym_label] = ACTIONS(5020), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_when] = ACTIONS(5020), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_throw] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_BANGis] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_suspend] = ACTIONS(5020), + [anon_sym_sealed] = ACTIONS(5020), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_data] = ACTIONS(5020), + [anon_sym_inner] = ACTIONS(5020), + [anon_sym_value] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_lateinit] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_protected] = ACTIONS(5020), + [anon_sym_tailrec] = ACTIONS(5020), + [anon_sym_operator] = ACTIONS(5020), + [anon_sym_infix] = ACTIONS(5020), + [anon_sym_inline] = ACTIONS(5020), + [anon_sym_external] = ACTIONS(5020), + [sym_property_modifier] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_open] = ACTIONS(5020), + [anon_sym_vararg] = ACTIONS(5020), + [anon_sym_noinline] = ACTIONS(5020), + [anon_sym_crossinline] = ACTIONS(5020), + [anon_sym_expect] = ACTIONS(5020), + [anon_sym_actual] = ACTIONS(5020), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5022), + [anon_sym_continue_AT] = ACTIONS(5022), + [anon_sym_break_AT] = ACTIONS(5022), + [anon_sym_this_AT] = ACTIONS(5022), + [anon_sym_super_AT] = ACTIONS(5022), + [sym_real_literal] = ACTIONS(5022), + [sym_integer_literal] = ACTIONS(5020), + [sym_hex_literal] = ACTIONS(5022), + [sym_bin_literal] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(5022), + [sym__automatic_semicolon] = ACTIONS(5022), + [sym_safe_nav] = ACTIONS(5022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5022), }, [1093] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [1094] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(1764), - [anon_sym_sealed] = ACTIONS(1764), - [anon_sym_annotation] = ACTIONS(1764), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), }, [1095] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4853), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [1096] = { - [sym__alpha_identifier] = ACTIONS(4857), - [anon_sym_AT] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_as] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_COMMA] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_where] = ACTIONS(4857), - [anon_sym_object] = ACTIONS(4857), - [anon_sym_fun] = ACTIONS(4857), - [anon_sym_DOT] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4859), - [anon_sym_get] = ACTIONS(4857), - [anon_sym_set] = ACTIONS(4857), - [anon_sym_this] = ACTIONS(4857), - [anon_sym_super] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [sym_label] = ACTIONS(4857), - [anon_sym_in] = ACTIONS(4857), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_QMARK_COLON] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_null] = ACTIONS(4857), - [anon_sym_if] = ACTIONS(4857), - [anon_sym_else] = ACTIONS(4857), - [anon_sym_when] = ACTIONS(4857), - [anon_sym_try] = ACTIONS(4857), - [anon_sym_throw] = ACTIONS(4857), - [anon_sym_return] = ACTIONS(4857), - [anon_sym_continue] = ACTIONS(4857), - [anon_sym_break] = ACTIONS(4857), - [anon_sym_COLON_COLON] = ACTIONS(4859), - [anon_sym_PLUS_EQ] = ACTIONS(4859), - [anon_sym_DASH_EQ] = ACTIONS(4859), - [anon_sym_STAR_EQ] = ACTIONS(4859), - [anon_sym_SLASH_EQ] = ACTIONS(4859), - [anon_sym_PERCENT_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4859), - [anon_sym_LT_EQ] = ACTIONS(4859), - [anon_sym_GT_EQ] = ACTIONS(4859), - [anon_sym_BANGin] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4857), - [anon_sym_BANGis] = ACTIONS(4859), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_as_QMARK] = ACTIONS(4859), - [anon_sym_PLUS_PLUS] = ACTIONS(4859), - [anon_sym_DASH_DASH] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_BANG_BANG] = ACTIONS(4859), - [anon_sym_suspend] = ACTIONS(4857), - [anon_sym_sealed] = ACTIONS(4857), - [anon_sym_annotation] = ACTIONS(4857), - [anon_sym_data] = ACTIONS(4857), - [anon_sym_inner] = ACTIONS(4857), - [anon_sym_value] = ACTIONS(4857), - [anon_sym_override] = ACTIONS(4857), - [anon_sym_lateinit] = ACTIONS(4857), - [anon_sym_public] = ACTIONS(4857), - [anon_sym_private] = ACTIONS(4857), - [anon_sym_internal] = ACTIONS(4857), - [anon_sym_protected] = ACTIONS(4857), - [anon_sym_tailrec] = ACTIONS(4857), - [anon_sym_operator] = ACTIONS(4857), - [anon_sym_infix] = ACTIONS(4857), - [anon_sym_inline] = ACTIONS(4857), - [anon_sym_external] = ACTIONS(4857), - [sym_property_modifier] = ACTIONS(4857), - [anon_sym_abstract] = ACTIONS(4857), - [anon_sym_final] = ACTIONS(4857), - [anon_sym_open] = ACTIONS(4857), - [anon_sym_vararg] = ACTIONS(4857), - [anon_sym_noinline] = ACTIONS(4857), - [anon_sym_crossinline] = ACTIONS(4857), - [anon_sym_expect] = ACTIONS(4857), - [anon_sym_actual] = ACTIONS(4857), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4859), - [anon_sym_continue_AT] = ACTIONS(4859), - [anon_sym_break_AT] = ACTIONS(4859), - [sym_real_literal] = ACTIONS(4859), - [sym_integer_literal] = ACTIONS(4857), - [sym_hex_literal] = ACTIONS(4859), - [sym_bin_literal] = ACTIONS(4859), - [anon_sym_true] = ACTIONS(4857), - [anon_sym_false] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4859), - [sym__backtick_identifier] = ACTIONS(4859), - [sym__automatic_semicolon] = ACTIONS(4859), - [sym_safe_nav] = ACTIONS(4859), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4859), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [1097] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_object] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_this] = ACTIONS(5031), + [anon_sym_super] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_null] = ACTIONS(5031), + [anon_sym_if] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_try] = ACTIONS(5031), + [anon_sym_throw] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_continue] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_suspend] = ACTIONS(5031), + [anon_sym_sealed] = ACTIONS(5031), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5033), + [anon_sym_continue_AT] = ACTIONS(5033), + [anon_sym_break_AT] = ACTIONS(5033), + [anon_sym_this_AT] = ACTIONS(5033), + [anon_sym_super_AT] = ACTIONS(5033), + [sym_real_literal] = ACTIONS(5033), + [sym_integer_literal] = ACTIONS(5031), + [sym_hex_literal] = ACTIONS(5033), + [sym_bin_literal] = ACTIONS(5033), + [anon_sym_true] = ACTIONS(5031), + [anon_sym_false] = ACTIONS(5031), + [anon_sym_SQUOTE] = ACTIONS(5033), + [sym__backtick_identifier] = ACTIONS(5033), + [sym__automatic_semicolon] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5033), }, [1098] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_object] = ACTIONS(5035), + [anon_sym_fun] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_this] = ACTIONS(5035), + [anon_sym_super] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5035), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_null] = ACTIONS(5035), + [anon_sym_if] = ACTIONS(5035), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_throw] = ACTIONS(5035), + [anon_sym_return] = ACTIONS(5035), + [anon_sym_continue] = ACTIONS(5035), + [anon_sym_break] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5035), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5037), + [anon_sym_continue_AT] = ACTIONS(5037), + [anon_sym_break_AT] = ACTIONS(5037), + [anon_sym_this_AT] = ACTIONS(5037), + [anon_sym_super_AT] = ACTIONS(5037), + [sym_real_literal] = ACTIONS(5037), + [sym_integer_literal] = ACTIONS(5035), + [sym_hex_literal] = ACTIONS(5037), + [sym_bin_literal] = ACTIONS(5037), + [anon_sym_true] = ACTIONS(5035), + [anon_sym_false] = ACTIONS(5035), + [anon_sym_SQUOTE] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5037), }, [1099] = { - [sym__alpha_identifier] = ACTIONS(4861), - [anon_sym_AT] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_as] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_object] = ACTIONS(4861), - [anon_sym_fun] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_get] = ACTIONS(4861), - [anon_sym_set] = ACTIONS(4861), - [anon_sym_this] = ACTIONS(4861), - [anon_sym_super] = ACTIONS(4861), - [anon_sym_STAR] = ACTIONS(4861), - [sym_label] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4863), - [anon_sym_QMARK_COLON] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_null] = ACTIONS(4861), - [anon_sym_if] = ACTIONS(4861), - [anon_sym_else] = ACTIONS(4861), - [anon_sym_when] = ACTIONS(4861), - [anon_sym_try] = ACTIONS(4861), - [anon_sym_throw] = ACTIONS(4861), - [anon_sym_return] = ACTIONS(4861), - [anon_sym_continue] = ACTIONS(4861), - [anon_sym_break] = ACTIONS(4861), - [anon_sym_COLON_COLON] = ACTIONS(4863), - [anon_sym_PLUS_EQ] = ACTIONS(4863), - [anon_sym_DASH_EQ] = ACTIONS(4863), - [anon_sym_STAR_EQ] = ACTIONS(4863), - [anon_sym_SLASH_EQ] = ACTIONS(4863), - [anon_sym_PERCENT_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4863), - [anon_sym_LT_EQ] = ACTIONS(4863), - [anon_sym_GT_EQ] = ACTIONS(4863), - [anon_sym_BANGin] = ACTIONS(4863), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_BANGis] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4861), - [anon_sym_DASH] = ACTIONS(4861), - [anon_sym_SLASH] = ACTIONS(4861), - [anon_sym_PERCENT] = ACTIONS(4861), - [anon_sym_as_QMARK] = ACTIONS(4863), - [anon_sym_PLUS_PLUS] = ACTIONS(4863), - [anon_sym_DASH_DASH] = ACTIONS(4863), - [anon_sym_BANG] = ACTIONS(4861), - [anon_sym_BANG_BANG] = ACTIONS(4863), - [anon_sym_suspend] = ACTIONS(4861), - [anon_sym_sealed] = ACTIONS(4861), - [anon_sym_annotation] = ACTIONS(4861), - [anon_sym_data] = ACTIONS(4861), - [anon_sym_inner] = ACTIONS(4861), - [anon_sym_value] = ACTIONS(4861), - [anon_sym_override] = ACTIONS(4861), - [anon_sym_lateinit] = ACTIONS(4861), - [anon_sym_public] = ACTIONS(4861), - [anon_sym_private] = ACTIONS(4861), - [anon_sym_internal] = ACTIONS(4861), - [anon_sym_protected] = ACTIONS(4861), - [anon_sym_tailrec] = ACTIONS(4861), - [anon_sym_operator] = ACTIONS(4861), - [anon_sym_infix] = ACTIONS(4861), - [anon_sym_inline] = ACTIONS(4861), - [anon_sym_external] = ACTIONS(4861), - [sym_property_modifier] = ACTIONS(4861), - [anon_sym_abstract] = ACTIONS(4861), - [anon_sym_final] = ACTIONS(4861), - [anon_sym_open] = ACTIONS(4861), - [anon_sym_vararg] = ACTIONS(4861), - [anon_sym_noinline] = ACTIONS(4861), - [anon_sym_crossinline] = ACTIONS(4861), - [anon_sym_expect] = ACTIONS(4861), - [anon_sym_actual] = ACTIONS(4861), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4863), - [anon_sym_continue_AT] = ACTIONS(4863), - [anon_sym_break_AT] = ACTIONS(4863), - [sym_real_literal] = ACTIONS(4863), - [sym_integer_literal] = ACTIONS(4861), - [sym_hex_literal] = ACTIONS(4863), - [sym_bin_literal] = ACTIONS(4863), - [anon_sym_true] = ACTIONS(4861), - [anon_sym_false] = ACTIONS(4861), - [anon_sym_SQUOTE] = ACTIONS(4863), - [sym__backtick_identifier] = ACTIONS(4863), - [sym__automatic_semicolon] = ACTIONS(4863), - [sym_safe_nav] = ACTIONS(4863), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4863), + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_object] = ACTIONS(5039), + [anon_sym_fun] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_this] = ACTIONS(5039), + [anon_sym_super] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5039), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_null] = ACTIONS(5039), + [anon_sym_if] = ACTIONS(5039), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_try] = ACTIONS(5039), + [anon_sym_throw] = ACTIONS(5039), + [anon_sym_return] = ACTIONS(5039), + [anon_sym_continue] = ACTIONS(5039), + [anon_sym_break] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5039), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5041), + [anon_sym_continue_AT] = ACTIONS(5041), + [anon_sym_break_AT] = ACTIONS(5041), + [anon_sym_this_AT] = ACTIONS(5041), + [anon_sym_super_AT] = ACTIONS(5041), + [sym_real_literal] = ACTIONS(5041), + [sym_integer_literal] = ACTIONS(5039), + [sym_hex_literal] = ACTIONS(5041), + [sym_bin_literal] = ACTIONS(5041), + [anon_sym_true] = ACTIONS(5039), + [anon_sym_false] = ACTIONS(5039), + [anon_sym_SQUOTE] = ACTIONS(5041), + [sym__backtick_identifier] = ACTIONS(5041), + [sym__automatic_semicolon] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5041), }, [1100] = { - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_object] = ACTIONS(4721), - [anon_sym_fun] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_this] = ACTIONS(4721), - [anon_sym_super] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [sym_label] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_null] = ACTIONS(4721), - [anon_sym_if] = ACTIONS(4721), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_when] = ACTIONS(4721), - [anon_sym_try] = ACTIONS(4721), - [anon_sym_throw] = ACTIONS(4721), - [anon_sym_return] = ACTIONS(4721), - [anon_sym_continue] = ACTIONS(4721), - [anon_sym_break] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_suspend] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_annotation] = ACTIONS(4721), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_lateinit] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_tailrec] = ACTIONS(4721), - [anon_sym_operator] = ACTIONS(4721), - [anon_sym_infix] = ACTIONS(4721), - [anon_sym_inline] = ACTIONS(4721), - [anon_sym_external] = ACTIONS(4721), - [sym_property_modifier] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_final] = ACTIONS(4721), - [anon_sym_open] = ACTIONS(4721), - [anon_sym_vararg] = ACTIONS(4721), - [anon_sym_noinline] = ACTIONS(4721), - [anon_sym_crossinline] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4723), - [anon_sym_continue_AT] = ACTIONS(4723), - [anon_sym_break_AT] = ACTIONS(4723), - [sym_real_literal] = ACTIONS(4723), - [sym_integer_literal] = ACTIONS(4721), - [sym_hex_literal] = ACTIONS(4723), - [sym_bin_literal] = ACTIONS(4723), - [anon_sym_true] = ACTIONS(4721), - [anon_sym_false] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4723), - [sym__backtick_identifier] = ACTIONS(4723), - [sym__automatic_semicolon] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4723), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1101] = { - [sym__alpha_identifier] = ACTIONS(4865), - [anon_sym_AT] = ACTIONS(4867), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_as] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4865), - [anon_sym_LBRACE] = ACTIONS(4867), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [anon_sym_COMMA] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_where] = ACTIONS(4865), - [anon_sym_object] = ACTIONS(4865), - [anon_sym_fun] = ACTIONS(4865), - [anon_sym_DOT] = ACTIONS(4865), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_get] = ACTIONS(4865), - [anon_sym_set] = ACTIONS(4865), - [anon_sym_this] = ACTIONS(4865), - [anon_sym_super] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [sym_label] = ACTIONS(4865), - [anon_sym_in] = ACTIONS(4865), - [anon_sym_DOT_DOT] = ACTIONS(4867), - [anon_sym_QMARK_COLON] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_null] = ACTIONS(4865), - [anon_sym_if] = ACTIONS(4865), - [anon_sym_else] = ACTIONS(4865), - [anon_sym_when] = ACTIONS(4865), - [anon_sym_try] = ACTIONS(4865), - [anon_sym_throw] = ACTIONS(4865), - [anon_sym_return] = ACTIONS(4865), - [anon_sym_continue] = ACTIONS(4865), - [anon_sym_break] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4867), - [anon_sym_PLUS_EQ] = ACTIONS(4867), - [anon_sym_DASH_EQ] = ACTIONS(4867), - [anon_sym_STAR_EQ] = ACTIONS(4867), - [anon_sym_SLASH_EQ] = ACTIONS(4867), - [anon_sym_PERCENT_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4867), - [anon_sym_BANGin] = ACTIONS(4867), - [anon_sym_is] = ACTIONS(4865), - [anon_sym_BANGis] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_as_QMARK] = ACTIONS(4867), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_BANG_BANG] = ACTIONS(4867), - [anon_sym_suspend] = ACTIONS(4865), - [anon_sym_sealed] = ACTIONS(4865), - [anon_sym_annotation] = ACTIONS(4865), - [anon_sym_data] = ACTIONS(4865), - [anon_sym_inner] = ACTIONS(4865), - [anon_sym_value] = ACTIONS(4865), - [anon_sym_override] = ACTIONS(4865), - [anon_sym_lateinit] = ACTIONS(4865), - [anon_sym_public] = ACTIONS(4865), - [anon_sym_private] = ACTIONS(4865), - [anon_sym_internal] = ACTIONS(4865), - [anon_sym_protected] = ACTIONS(4865), - [anon_sym_tailrec] = ACTIONS(4865), - [anon_sym_operator] = ACTIONS(4865), - [anon_sym_infix] = ACTIONS(4865), - [anon_sym_inline] = ACTIONS(4865), - [anon_sym_external] = ACTIONS(4865), - [sym_property_modifier] = ACTIONS(4865), - [anon_sym_abstract] = ACTIONS(4865), - [anon_sym_final] = ACTIONS(4865), - [anon_sym_open] = ACTIONS(4865), - [anon_sym_vararg] = ACTIONS(4865), - [anon_sym_noinline] = ACTIONS(4865), - [anon_sym_crossinline] = ACTIONS(4865), - [anon_sym_expect] = ACTIONS(4865), - [anon_sym_actual] = ACTIONS(4865), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4867), - [anon_sym_continue_AT] = ACTIONS(4867), - [anon_sym_break_AT] = ACTIONS(4867), - [sym_real_literal] = ACTIONS(4867), - [sym_integer_literal] = ACTIONS(4865), - [sym_hex_literal] = ACTIONS(4867), - [sym_bin_literal] = ACTIONS(4867), - [anon_sym_true] = ACTIONS(4865), - [anon_sym_false] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4867), - [sym__backtick_identifier] = ACTIONS(4867), - [sym__automatic_semicolon] = ACTIONS(4867), - [sym_safe_nav] = ACTIONS(4867), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4867), + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_object] = ACTIONS(5043), + [anon_sym_fun] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_this] = ACTIONS(5043), + [anon_sym_super] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5043), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5043), + [anon_sym_if] = ACTIONS(5043), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_try] = ACTIONS(5043), + [anon_sym_throw] = ACTIONS(5043), + [anon_sym_return] = ACTIONS(5043), + [anon_sym_continue] = ACTIONS(5043), + [anon_sym_break] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5043), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5045), + [anon_sym_continue_AT] = ACTIONS(5045), + [anon_sym_break_AT] = ACTIONS(5045), + [anon_sym_this_AT] = ACTIONS(5045), + [anon_sym_super_AT] = ACTIONS(5045), + [sym_real_literal] = ACTIONS(5045), + [sym_integer_literal] = ACTIONS(5043), + [sym_hex_literal] = ACTIONS(5045), + [sym_bin_literal] = ACTIONS(5045), + [anon_sym_true] = ACTIONS(5043), + [anon_sym_false] = ACTIONS(5043), + [anon_sym_SQUOTE] = ACTIONS(5045), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5045), }, [1102] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [1103] = { - [sym__alpha_identifier] = ACTIONS(4869), - [anon_sym_AT] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(4871), - [anon_sym_as] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_LPAREN] = ACTIONS(4871), - [anon_sym_COMMA] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(4869), - [anon_sym_GT] = ACTIONS(4869), - [anon_sym_where] = ACTIONS(4869), - [anon_sym_object] = ACTIONS(4869), - [anon_sym_fun] = ACTIONS(4869), - [anon_sym_DOT] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym_get] = ACTIONS(4869), - [anon_sym_set] = ACTIONS(4869), - [anon_sym_this] = ACTIONS(4869), - [anon_sym_super] = ACTIONS(4869), - [anon_sym_STAR] = ACTIONS(4869), - [sym_label] = ACTIONS(4869), - [anon_sym_in] = ACTIONS(4869), - [anon_sym_DOT_DOT] = ACTIONS(4871), - [anon_sym_QMARK_COLON] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_null] = ACTIONS(4869), - [anon_sym_if] = ACTIONS(4869), - [anon_sym_else] = ACTIONS(4869), - [anon_sym_when] = ACTIONS(4869), - [anon_sym_try] = ACTIONS(4869), - [anon_sym_throw] = ACTIONS(4869), - [anon_sym_return] = ACTIONS(4869), - [anon_sym_continue] = ACTIONS(4869), - [anon_sym_break] = ACTIONS(4869), - [anon_sym_COLON_COLON] = ACTIONS(4871), - [anon_sym_PLUS_EQ] = ACTIONS(4871), - [anon_sym_DASH_EQ] = ACTIONS(4871), - [anon_sym_STAR_EQ] = ACTIONS(4871), - [anon_sym_SLASH_EQ] = ACTIONS(4871), - [anon_sym_PERCENT_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), - [anon_sym_LT_EQ] = ACTIONS(4871), - [anon_sym_GT_EQ] = ACTIONS(4871), - [anon_sym_BANGin] = ACTIONS(4871), - [anon_sym_is] = ACTIONS(4869), - [anon_sym_BANGis] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(4869), - [anon_sym_DASH] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4869), - [anon_sym_PERCENT] = ACTIONS(4869), - [anon_sym_as_QMARK] = ACTIONS(4871), - [anon_sym_PLUS_PLUS] = ACTIONS(4871), - [anon_sym_DASH_DASH] = ACTIONS(4871), - [anon_sym_BANG] = ACTIONS(4869), - [anon_sym_BANG_BANG] = ACTIONS(4871), - [anon_sym_suspend] = ACTIONS(4869), - [anon_sym_sealed] = ACTIONS(4869), - [anon_sym_annotation] = ACTIONS(4869), - [anon_sym_data] = ACTIONS(4869), - [anon_sym_inner] = ACTIONS(4869), - [anon_sym_value] = ACTIONS(4869), - [anon_sym_override] = ACTIONS(4869), - [anon_sym_lateinit] = ACTIONS(4869), - [anon_sym_public] = ACTIONS(4869), - [anon_sym_private] = ACTIONS(4869), - [anon_sym_internal] = ACTIONS(4869), - [anon_sym_protected] = ACTIONS(4869), - [anon_sym_tailrec] = ACTIONS(4869), - [anon_sym_operator] = ACTIONS(4869), - [anon_sym_infix] = ACTIONS(4869), - [anon_sym_inline] = ACTIONS(4869), - [anon_sym_external] = ACTIONS(4869), - [sym_property_modifier] = ACTIONS(4869), - [anon_sym_abstract] = ACTIONS(4869), - [anon_sym_final] = ACTIONS(4869), - [anon_sym_open] = ACTIONS(4869), - [anon_sym_vararg] = ACTIONS(4869), - [anon_sym_noinline] = ACTIONS(4869), - [anon_sym_crossinline] = ACTIONS(4869), - [anon_sym_expect] = ACTIONS(4869), - [anon_sym_actual] = ACTIONS(4869), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4871), - [anon_sym_continue_AT] = ACTIONS(4871), - [anon_sym_break_AT] = ACTIONS(4871), - [sym_real_literal] = ACTIONS(4871), - [sym_integer_literal] = ACTIONS(4869), - [sym_hex_literal] = ACTIONS(4871), - [sym_bin_literal] = ACTIONS(4871), - [anon_sym_true] = ACTIONS(4869), - [anon_sym_false] = ACTIONS(4869), - [anon_sym_SQUOTE] = ACTIONS(4871), - [sym__backtick_identifier] = ACTIONS(4871), - [sym__automatic_semicolon] = ACTIONS(4871), - [sym_safe_nav] = ACTIONS(4871), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4871), + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_this] = ACTIONS(5047), + [anon_sym_super] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_if] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_try] = ACTIONS(5047), + [anon_sym_throw] = ACTIONS(5047), + [anon_sym_return] = ACTIONS(5047), + [anon_sym_continue] = ACTIONS(5047), + [anon_sym_break] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_override] = ACTIONS(5047), + [anon_sym_lateinit] = ACTIONS(5047), + [anon_sym_public] = ACTIONS(5047), + [anon_sym_private] = ACTIONS(5047), + [anon_sym_internal] = ACTIONS(5047), + [anon_sym_protected] = ACTIONS(5047), + [anon_sym_tailrec] = ACTIONS(5047), + [anon_sym_operator] = ACTIONS(5047), + [anon_sym_infix] = ACTIONS(5047), + [anon_sym_inline] = ACTIONS(5047), + [anon_sym_external] = ACTIONS(5047), + [sym_property_modifier] = ACTIONS(5047), + [anon_sym_abstract] = ACTIONS(5047), + [anon_sym_final] = ACTIONS(5047), + [anon_sym_open] = ACTIONS(5047), + [anon_sym_vararg] = ACTIONS(5047), + [anon_sym_noinline] = ACTIONS(5047), + [anon_sym_crossinline] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5049), + [anon_sym_continue_AT] = ACTIONS(5049), + [anon_sym_break_AT] = ACTIONS(5049), + [anon_sym_this_AT] = ACTIONS(5049), + [anon_sym_super_AT] = ACTIONS(5049), + [sym_real_literal] = ACTIONS(5049), + [sym_integer_literal] = ACTIONS(5047), + [sym_hex_literal] = ACTIONS(5049), + [sym_bin_literal] = ACTIONS(5049), + [anon_sym_true] = ACTIONS(5047), + [anon_sym_false] = ACTIONS(5047), + [anon_sym_SQUOTE] = ACTIONS(5049), + [sym__backtick_identifier] = ACTIONS(5049), + [sym__automatic_semicolon] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5049), }, [1104] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4877), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(4879), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, [1105] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(4879), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1106] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), }, [1107] = { - [sym__alpha_identifier] = ACTIONS(4881), - [anon_sym_AT] = ACTIONS(4883), - [anon_sym_LBRACK] = ACTIONS(4883), - [anon_sym_as] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4883), - [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4883), - [anon_sym_COMMA] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4881), - [anon_sym_object] = ACTIONS(4881), - [anon_sym_fun] = ACTIONS(4881), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4883), - [anon_sym_get] = ACTIONS(4881), - [anon_sym_set] = ACTIONS(4881), - [anon_sym_this] = ACTIONS(4881), - [anon_sym_super] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4881), - [sym_label] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4881), - [anon_sym_DOT_DOT] = ACTIONS(4883), - [anon_sym_QMARK_COLON] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_null] = ACTIONS(4881), - [anon_sym_if] = ACTIONS(4881), - [anon_sym_else] = ACTIONS(4881), - [anon_sym_when] = ACTIONS(4881), - [anon_sym_try] = ACTIONS(4881), - [anon_sym_throw] = ACTIONS(4881), - [anon_sym_return] = ACTIONS(4881), - [anon_sym_continue] = ACTIONS(4881), - [anon_sym_break] = ACTIONS(4881), - [anon_sym_COLON_COLON] = ACTIONS(4883), - [anon_sym_PLUS_EQ] = ACTIONS(4883), - [anon_sym_DASH_EQ] = ACTIONS(4883), - [anon_sym_STAR_EQ] = ACTIONS(4883), - [anon_sym_SLASH_EQ] = ACTIONS(4883), - [anon_sym_PERCENT_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4883), - [anon_sym_LT_EQ] = ACTIONS(4883), - [anon_sym_GT_EQ] = ACTIONS(4883), - [anon_sym_BANGin] = ACTIONS(4883), - [anon_sym_is] = ACTIONS(4881), - [anon_sym_BANGis] = ACTIONS(4883), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4881), - [anon_sym_as_QMARK] = ACTIONS(4883), - [anon_sym_PLUS_PLUS] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4883), - [anon_sym_BANG] = ACTIONS(4881), - [anon_sym_BANG_BANG] = ACTIONS(4883), - [anon_sym_suspend] = ACTIONS(4881), - [anon_sym_sealed] = ACTIONS(4881), - [anon_sym_annotation] = ACTIONS(4881), - [anon_sym_data] = ACTIONS(4881), - [anon_sym_inner] = ACTIONS(4881), - [anon_sym_value] = ACTIONS(4881), - [anon_sym_override] = ACTIONS(4881), - [anon_sym_lateinit] = ACTIONS(4881), - [anon_sym_public] = ACTIONS(4881), - [anon_sym_private] = ACTIONS(4881), - [anon_sym_internal] = ACTIONS(4881), - [anon_sym_protected] = ACTIONS(4881), - [anon_sym_tailrec] = ACTIONS(4881), - [anon_sym_operator] = ACTIONS(4881), - [anon_sym_infix] = ACTIONS(4881), - [anon_sym_inline] = ACTIONS(4881), - [anon_sym_external] = ACTIONS(4881), - [sym_property_modifier] = ACTIONS(4881), - [anon_sym_abstract] = ACTIONS(4881), - [anon_sym_final] = ACTIONS(4881), - [anon_sym_open] = ACTIONS(4881), - [anon_sym_vararg] = ACTIONS(4881), - [anon_sym_noinline] = ACTIONS(4881), - [anon_sym_crossinline] = ACTIONS(4881), - [anon_sym_expect] = ACTIONS(4881), - [anon_sym_actual] = ACTIONS(4881), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4883), - [anon_sym_continue_AT] = ACTIONS(4883), - [anon_sym_break_AT] = ACTIONS(4883), - [sym_real_literal] = ACTIONS(4883), - [sym_integer_literal] = ACTIONS(4881), - [sym_hex_literal] = ACTIONS(4883), - [sym_bin_literal] = ACTIONS(4883), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [anon_sym_SQUOTE] = ACTIONS(4883), - [sym__backtick_identifier] = ACTIONS(4883), - [sym__automatic_semicolon] = ACTIONS(4883), - [sym_safe_nav] = ACTIONS(4883), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4883), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1108] = { - [sym__alpha_identifier] = ACTIONS(4885), - [anon_sym_AT] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4887), - [anon_sym_as] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4887), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4887), - [anon_sym_COMMA] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_where] = ACTIONS(4885), - [anon_sym_object] = ACTIONS(4885), - [anon_sym_fun] = ACTIONS(4885), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4887), - [anon_sym_get] = ACTIONS(4885), - [anon_sym_set] = ACTIONS(4885), - [anon_sym_this] = ACTIONS(4885), - [anon_sym_super] = ACTIONS(4885), - [anon_sym_STAR] = ACTIONS(4885), - [sym_label] = ACTIONS(4885), - [anon_sym_in] = ACTIONS(4885), - [anon_sym_DOT_DOT] = ACTIONS(4887), - [anon_sym_QMARK_COLON] = ACTIONS(4887), - [anon_sym_AMP_AMP] = ACTIONS(4887), - [anon_sym_PIPE_PIPE] = ACTIONS(4887), - [anon_sym_null] = ACTIONS(4885), - [anon_sym_if] = ACTIONS(4885), - [anon_sym_else] = ACTIONS(4885), - [anon_sym_when] = ACTIONS(4885), - [anon_sym_try] = ACTIONS(4885), - [anon_sym_throw] = ACTIONS(4885), - [anon_sym_return] = ACTIONS(4885), - [anon_sym_continue] = ACTIONS(4885), - [anon_sym_break] = ACTIONS(4885), - [anon_sym_COLON_COLON] = ACTIONS(4887), - [anon_sym_PLUS_EQ] = ACTIONS(4887), - [anon_sym_DASH_EQ] = ACTIONS(4887), - [anon_sym_STAR_EQ] = ACTIONS(4887), - [anon_sym_SLASH_EQ] = ACTIONS(4887), - [anon_sym_PERCENT_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), - [anon_sym_LT_EQ] = ACTIONS(4887), - [anon_sym_GT_EQ] = ACTIONS(4887), - [anon_sym_BANGin] = ACTIONS(4887), - [anon_sym_is] = ACTIONS(4885), - [anon_sym_BANGis] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(4885), - [anon_sym_DASH] = ACTIONS(4885), - [anon_sym_SLASH] = ACTIONS(4885), - [anon_sym_PERCENT] = ACTIONS(4885), - [anon_sym_as_QMARK] = ACTIONS(4887), - [anon_sym_PLUS_PLUS] = ACTIONS(4887), - [anon_sym_DASH_DASH] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4885), - [anon_sym_BANG_BANG] = ACTIONS(4887), - [anon_sym_suspend] = ACTIONS(4885), - [anon_sym_sealed] = ACTIONS(4885), - [anon_sym_annotation] = ACTIONS(4885), - [anon_sym_data] = ACTIONS(4885), - [anon_sym_inner] = ACTIONS(4885), - [anon_sym_value] = ACTIONS(4885), - [anon_sym_override] = ACTIONS(4885), - [anon_sym_lateinit] = ACTIONS(4885), - [anon_sym_public] = ACTIONS(4885), - [anon_sym_private] = ACTIONS(4885), - [anon_sym_internal] = ACTIONS(4885), - [anon_sym_protected] = ACTIONS(4885), - [anon_sym_tailrec] = ACTIONS(4885), - [anon_sym_operator] = ACTIONS(4885), - [anon_sym_infix] = ACTIONS(4885), - [anon_sym_inline] = ACTIONS(4885), - [anon_sym_external] = ACTIONS(4885), - [sym_property_modifier] = ACTIONS(4885), - [anon_sym_abstract] = ACTIONS(4885), - [anon_sym_final] = ACTIONS(4885), - [anon_sym_open] = ACTIONS(4885), - [anon_sym_vararg] = ACTIONS(4885), - [anon_sym_noinline] = ACTIONS(4885), - [anon_sym_crossinline] = ACTIONS(4885), - [anon_sym_expect] = ACTIONS(4885), - [anon_sym_actual] = ACTIONS(4885), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4887), - [anon_sym_continue_AT] = ACTIONS(4887), - [anon_sym_break_AT] = ACTIONS(4887), - [sym_real_literal] = ACTIONS(4887), - [sym_integer_literal] = ACTIONS(4885), - [sym_hex_literal] = ACTIONS(4887), - [sym_bin_literal] = ACTIONS(4887), - [anon_sym_true] = ACTIONS(4885), - [anon_sym_false] = ACTIONS(4885), - [anon_sym_SQUOTE] = ACTIONS(4887), - [sym__backtick_identifier] = ACTIONS(4887), - [sym__automatic_semicolon] = ACTIONS(4887), - [sym_safe_nav] = ACTIONS(4887), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4887), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_object] = ACTIONS(5059), + [anon_sym_fun] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_this] = ACTIONS(5059), + [anon_sym_super] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [sym_label] = ACTIONS(5059), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_null] = ACTIONS(5059), + [anon_sym_if] = ACTIONS(5059), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_try] = ACTIONS(5059), + [anon_sym_throw] = ACTIONS(5059), + [anon_sym_return] = ACTIONS(5059), + [anon_sym_continue] = ACTIONS(5059), + [anon_sym_break] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5059), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_suspend] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_annotation] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5061), + [anon_sym_continue_AT] = ACTIONS(5061), + [anon_sym_break_AT] = ACTIONS(5061), + [anon_sym_this_AT] = ACTIONS(5061), + [anon_sym_super_AT] = ACTIONS(5061), + [sym_real_literal] = ACTIONS(5061), + [sym_integer_literal] = ACTIONS(5059), + [sym_hex_literal] = ACTIONS(5061), + [sym_bin_literal] = ACTIONS(5061), + [anon_sym_true] = ACTIONS(5059), + [anon_sym_false] = ACTIONS(5059), + [anon_sym_SQUOTE] = ACTIONS(5061), + [sym__backtick_identifier] = ACTIONS(5061), + [sym__automatic_semicolon] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5061), }, [1109] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_object] = ACTIONS(5063), + [anon_sym_fun] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_this] = ACTIONS(5063), + [anon_sym_super] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [sym_label] = ACTIONS(5063), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_if] = ACTIONS(5063), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_when] = ACTIONS(5063), + [anon_sym_try] = ACTIONS(5063), + [anon_sym_throw] = ACTIONS(5063), + [anon_sym_return] = ACTIONS(5063), + [anon_sym_continue] = ACTIONS(5063), + [anon_sym_break] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5063), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_suspend] = ACTIONS(5063), + [anon_sym_sealed] = ACTIONS(5063), + [anon_sym_annotation] = ACTIONS(5063), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5065), + [anon_sym_continue_AT] = ACTIONS(5065), + [anon_sym_break_AT] = ACTIONS(5065), + [anon_sym_this_AT] = ACTIONS(5065), + [anon_sym_super_AT] = ACTIONS(5065), + [sym_real_literal] = ACTIONS(5065), + [sym_integer_literal] = ACTIONS(5063), + [sym_hex_literal] = ACTIONS(5065), + [sym_bin_literal] = ACTIONS(5065), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [anon_sym_SQUOTE] = ACTIONS(5065), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5065), }, [1110] = { - [sym__alpha_identifier] = ACTIONS(4889), - [anon_sym_AT] = ACTIONS(4891), - [anon_sym_LBRACK] = ACTIONS(4891), - [anon_sym_as] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4891), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [anon_sym_COMMA] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4889), - [anon_sym_GT] = ACTIONS(4889), - [anon_sym_where] = ACTIONS(4889), - [anon_sym_object] = ACTIONS(4889), - [anon_sym_fun] = ACTIONS(4889), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_get] = ACTIONS(4889), - [anon_sym_set] = ACTIONS(4889), - [anon_sym_this] = ACTIONS(4889), - [anon_sym_super] = ACTIONS(4889), - [anon_sym_STAR] = ACTIONS(4889), - [sym_label] = ACTIONS(4889), - [anon_sym_in] = ACTIONS(4889), - [anon_sym_DOT_DOT] = ACTIONS(4891), - [anon_sym_QMARK_COLON] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_null] = ACTIONS(4889), - [anon_sym_if] = ACTIONS(4889), - [anon_sym_else] = ACTIONS(4889), - [anon_sym_when] = ACTIONS(4889), - [anon_sym_try] = ACTIONS(4889), - [anon_sym_throw] = ACTIONS(4889), - [anon_sym_return] = ACTIONS(4889), - [anon_sym_continue] = ACTIONS(4889), - [anon_sym_break] = ACTIONS(4889), - [anon_sym_COLON_COLON] = ACTIONS(4891), - [anon_sym_PLUS_EQ] = ACTIONS(4891), - [anon_sym_DASH_EQ] = ACTIONS(4891), - [anon_sym_STAR_EQ] = ACTIONS(4891), - [anon_sym_SLASH_EQ] = ACTIONS(4891), - [anon_sym_PERCENT_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4891), - [anon_sym_LT_EQ] = ACTIONS(4891), - [anon_sym_GT_EQ] = ACTIONS(4891), - [anon_sym_BANGin] = ACTIONS(4891), - [anon_sym_is] = ACTIONS(4889), - [anon_sym_BANGis] = ACTIONS(4891), - [anon_sym_PLUS] = ACTIONS(4889), - [anon_sym_DASH] = ACTIONS(4889), - [anon_sym_SLASH] = ACTIONS(4889), - [anon_sym_PERCENT] = ACTIONS(4889), - [anon_sym_as_QMARK] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4891), - [anon_sym_DASH_DASH] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4889), - [anon_sym_BANG_BANG] = ACTIONS(4891), - [anon_sym_suspend] = ACTIONS(4889), - [anon_sym_sealed] = ACTIONS(4889), - [anon_sym_annotation] = ACTIONS(4889), - [anon_sym_data] = ACTIONS(4889), - [anon_sym_inner] = ACTIONS(4889), - [anon_sym_value] = ACTIONS(4889), - [anon_sym_override] = ACTIONS(4889), - [anon_sym_lateinit] = ACTIONS(4889), - [anon_sym_public] = ACTIONS(4889), - [anon_sym_private] = ACTIONS(4889), - [anon_sym_internal] = ACTIONS(4889), - [anon_sym_protected] = ACTIONS(4889), - [anon_sym_tailrec] = ACTIONS(4889), - [anon_sym_operator] = ACTIONS(4889), - [anon_sym_infix] = ACTIONS(4889), - [anon_sym_inline] = ACTIONS(4889), - [anon_sym_external] = ACTIONS(4889), - [sym_property_modifier] = ACTIONS(4889), - [anon_sym_abstract] = ACTIONS(4889), - [anon_sym_final] = ACTIONS(4889), - [anon_sym_open] = ACTIONS(4889), - [anon_sym_vararg] = ACTIONS(4889), - [anon_sym_noinline] = ACTIONS(4889), - [anon_sym_crossinline] = ACTIONS(4889), - [anon_sym_expect] = ACTIONS(4889), - [anon_sym_actual] = ACTIONS(4889), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4891), - [anon_sym_continue_AT] = ACTIONS(4891), - [anon_sym_break_AT] = ACTIONS(4891), - [sym_real_literal] = ACTIONS(4891), - [sym_integer_literal] = ACTIONS(4889), - [sym_hex_literal] = ACTIONS(4891), - [sym_bin_literal] = ACTIONS(4891), - [anon_sym_true] = ACTIONS(4889), - [anon_sym_false] = ACTIONS(4889), - [anon_sym_SQUOTE] = ACTIONS(4891), - [sym__backtick_identifier] = ACTIONS(4891), - [sym__automatic_semicolon] = ACTIONS(4891), - [sym_safe_nav] = ACTIONS(4891), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4891), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, [1111] = { - [sym__alpha_identifier] = ACTIONS(4893), - [anon_sym_AT] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_as] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(4893), - [anon_sym_where] = ACTIONS(4893), - [anon_sym_object] = ACTIONS(4893), - [anon_sym_fun] = ACTIONS(4893), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_get] = ACTIONS(4893), - [anon_sym_set] = ACTIONS(4893), - [anon_sym_this] = ACTIONS(4893), - [anon_sym_super] = ACTIONS(4893), - [anon_sym_STAR] = ACTIONS(4893), - [sym_label] = ACTIONS(4893), - [anon_sym_in] = ACTIONS(4893), - [anon_sym_DOT_DOT] = ACTIONS(4895), - [anon_sym_QMARK_COLON] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_null] = ACTIONS(4893), - [anon_sym_if] = ACTIONS(4893), - [anon_sym_else] = ACTIONS(4893), - [anon_sym_when] = ACTIONS(4893), - [anon_sym_try] = ACTIONS(4893), - [anon_sym_throw] = ACTIONS(4893), - [anon_sym_return] = ACTIONS(4893), - [anon_sym_continue] = ACTIONS(4893), - [anon_sym_break] = ACTIONS(4893), - [anon_sym_COLON_COLON] = ACTIONS(4895), - [anon_sym_PLUS_EQ] = ACTIONS(4895), - [anon_sym_DASH_EQ] = ACTIONS(4895), - [anon_sym_STAR_EQ] = ACTIONS(4895), - [anon_sym_SLASH_EQ] = ACTIONS(4895), - [anon_sym_PERCENT_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), - [anon_sym_LT_EQ] = ACTIONS(4895), - [anon_sym_GT_EQ] = ACTIONS(4895), - [anon_sym_BANGin] = ACTIONS(4895), - [anon_sym_is] = ACTIONS(4893), - [anon_sym_BANGis] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4893), - [anon_sym_DASH] = ACTIONS(4893), - [anon_sym_SLASH] = ACTIONS(4893), - [anon_sym_PERCENT] = ACTIONS(4893), - [anon_sym_as_QMARK] = ACTIONS(4895), - [anon_sym_PLUS_PLUS] = ACTIONS(4895), - [anon_sym_DASH_DASH] = ACTIONS(4895), - [anon_sym_BANG] = ACTIONS(4893), - [anon_sym_BANG_BANG] = ACTIONS(4895), - [anon_sym_suspend] = ACTIONS(4893), - [anon_sym_sealed] = ACTIONS(4893), - [anon_sym_annotation] = ACTIONS(4893), - [anon_sym_data] = ACTIONS(4893), - [anon_sym_inner] = ACTIONS(4893), - [anon_sym_value] = ACTIONS(4893), - [anon_sym_override] = ACTIONS(4893), - [anon_sym_lateinit] = ACTIONS(4893), - [anon_sym_public] = ACTIONS(4893), - [anon_sym_private] = ACTIONS(4893), - [anon_sym_internal] = ACTIONS(4893), - [anon_sym_protected] = ACTIONS(4893), - [anon_sym_tailrec] = ACTIONS(4893), - [anon_sym_operator] = ACTIONS(4893), - [anon_sym_infix] = ACTIONS(4893), - [anon_sym_inline] = ACTIONS(4893), - [anon_sym_external] = ACTIONS(4893), - [sym_property_modifier] = ACTIONS(4893), - [anon_sym_abstract] = ACTIONS(4893), - [anon_sym_final] = ACTIONS(4893), - [anon_sym_open] = ACTIONS(4893), - [anon_sym_vararg] = ACTIONS(4893), - [anon_sym_noinline] = ACTIONS(4893), - [anon_sym_crossinline] = ACTIONS(4893), - [anon_sym_expect] = ACTIONS(4893), - [anon_sym_actual] = ACTIONS(4893), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4895), - [anon_sym_continue_AT] = ACTIONS(4895), - [anon_sym_break_AT] = ACTIONS(4895), - [sym_real_literal] = ACTIONS(4895), - [sym_integer_literal] = ACTIONS(4893), - [sym_hex_literal] = ACTIONS(4895), - [sym_bin_literal] = ACTIONS(4895), - [anon_sym_true] = ACTIONS(4893), - [anon_sym_false] = ACTIONS(4893), - [anon_sym_SQUOTE] = ACTIONS(4895), - [sym__backtick_identifier] = ACTIONS(4895), - [sym__automatic_semicolon] = ACTIONS(4895), - [sym_safe_nav] = ACTIONS(4895), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4895), + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [1112] = { - [sym__alpha_identifier] = ACTIONS(4897), - [anon_sym_AT] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_as] = ACTIONS(4897), - [anon_sym_EQ] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_where] = ACTIONS(4897), - [anon_sym_object] = ACTIONS(4897), - [anon_sym_fun] = ACTIONS(4897), - [anon_sym_DOT] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_get] = ACTIONS(4897), - [anon_sym_set] = ACTIONS(4897), - [anon_sym_this] = ACTIONS(4897), - [anon_sym_super] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [sym_label] = ACTIONS(4897), - [anon_sym_in] = ACTIONS(4897), - [anon_sym_DOT_DOT] = ACTIONS(4899), - [anon_sym_QMARK_COLON] = ACTIONS(4899), - [anon_sym_AMP_AMP] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4899), - [anon_sym_null] = ACTIONS(4897), - [anon_sym_if] = ACTIONS(4897), - [anon_sym_else] = ACTIONS(4897), - [anon_sym_when] = ACTIONS(4897), - [anon_sym_try] = ACTIONS(4897), - [anon_sym_throw] = ACTIONS(4897), - [anon_sym_return] = ACTIONS(4897), - [anon_sym_continue] = ACTIONS(4897), - [anon_sym_break] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4899), - [anon_sym_PLUS_EQ] = ACTIONS(4899), - [anon_sym_DASH_EQ] = ACTIONS(4899), - [anon_sym_STAR_EQ] = ACTIONS(4899), - [anon_sym_SLASH_EQ] = ACTIONS(4899), - [anon_sym_PERCENT_EQ] = ACTIONS(4899), - [anon_sym_BANG_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4899), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4899), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4899), - [anon_sym_BANGin] = ACTIONS(4899), - [anon_sym_is] = ACTIONS(4897), - [anon_sym_BANGis] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_PERCENT] = ACTIONS(4897), - [anon_sym_as_QMARK] = ACTIONS(4899), - [anon_sym_PLUS_PLUS] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4899), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_BANG_BANG] = ACTIONS(4899), - [anon_sym_suspend] = ACTIONS(4897), - [anon_sym_sealed] = ACTIONS(4897), - [anon_sym_annotation] = ACTIONS(4897), - [anon_sym_data] = ACTIONS(4897), - [anon_sym_inner] = ACTIONS(4897), - [anon_sym_value] = ACTIONS(4897), - [anon_sym_override] = ACTIONS(4897), - [anon_sym_lateinit] = ACTIONS(4897), - [anon_sym_public] = ACTIONS(4897), - [anon_sym_private] = ACTIONS(4897), - [anon_sym_internal] = ACTIONS(4897), - [anon_sym_protected] = ACTIONS(4897), - [anon_sym_tailrec] = ACTIONS(4897), - [anon_sym_operator] = ACTIONS(4897), - [anon_sym_infix] = ACTIONS(4897), - [anon_sym_inline] = ACTIONS(4897), - [anon_sym_external] = ACTIONS(4897), - [sym_property_modifier] = ACTIONS(4897), - [anon_sym_abstract] = ACTIONS(4897), - [anon_sym_final] = ACTIONS(4897), - [anon_sym_open] = ACTIONS(4897), - [anon_sym_vararg] = ACTIONS(4897), - [anon_sym_noinline] = ACTIONS(4897), - [anon_sym_crossinline] = ACTIONS(4897), - [anon_sym_expect] = ACTIONS(4897), - [anon_sym_actual] = ACTIONS(4897), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4899), - [anon_sym_continue_AT] = ACTIONS(4899), - [anon_sym_break_AT] = ACTIONS(4899), - [sym_real_literal] = ACTIONS(4899), - [sym_integer_literal] = ACTIONS(4897), - [sym_hex_literal] = ACTIONS(4899), - [sym_bin_literal] = ACTIONS(4899), - [anon_sym_true] = ACTIONS(4897), - [anon_sym_false] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4899), - [sym__backtick_identifier] = ACTIONS(4899), - [sym__automatic_semicolon] = ACTIONS(4899), - [sym_safe_nav] = ACTIONS(4899), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4899), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(1732), + [anon_sym_sealed] = ACTIONS(1732), + [anon_sym_annotation] = ACTIONS(1732), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_lateinit] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_internal] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_tailrec] = ACTIONS(1732), + [anon_sym_operator] = ACTIONS(1732), + [anon_sym_infix] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [anon_sym_external] = ACTIONS(1732), + [sym_property_modifier] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_final] = ACTIONS(1732), + [anon_sym_open] = ACTIONS(1732), + [anon_sym_vararg] = ACTIONS(1732), + [anon_sym_noinline] = ACTIONS(1732), + [anon_sym_crossinline] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, [1113] = { - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1114] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_object] = ACTIONS(4901), - [anon_sym_fun] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_this] = ACTIONS(4901), - [anon_sym_super] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [sym_label] = ACTIONS(4901), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_null] = ACTIONS(4901), - [anon_sym_if] = ACTIONS(4901), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_when] = ACTIONS(4901), - [anon_sym_try] = ACTIONS(4901), - [anon_sym_throw] = ACTIONS(4901), - [anon_sym_return] = ACTIONS(4901), - [anon_sym_continue] = ACTIONS(4901), - [anon_sym_break] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_suspend] = ACTIONS(4901), - [anon_sym_sealed] = ACTIONS(4901), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_value] = ACTIONS(4901), - [anon_sym_override] = ACTIONS(4901), - [anon_sym_lateinit] = ACTIONS(4901), - [anon_sym_public] = ACTIONS(4901), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_internal] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_tailrec] = ACTIONS(4901), - [anon_sym_operator] = ACTIONS(4901), - [anon_sym_infix] = ACTIONS(4901), - [anon_sym_inline] = ACTIONS(4901), - [anon_sym_external] = ACTIONS(4901), - [sym_property_modifier] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_final] = ACTIONS(4901), - [anon_sym_open] = ACTIONS(4901), - [anon_sym_vararg] = ACTIONS(4901), - [anon_sym_noinline] = ACTIONS(4901), - [anon_sym_crossinline] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4903), - [anon_sym_continue_AT] = ACTIONS(4903), - [anon_sym_break_AT] = ACTIONS(4903), - [sym_real_literal] = ACTIONS(4903), - [sym_integer_literal] = ACTIONS(4901), - [sym_hex_literal] = ACTIONS(4903), - [sym_bin_literal] = ACTIONS(4903), - [anon_sym_true] = ACTIONS(4901), - [anon_sym_false] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4903), - [sym__backtick_identifier] = ACTIONS(4903), - [sym__automatic_semicolon] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4903), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_object] = ACTIONS(5067), + [anon_sym_fun] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_this] = ACTIONS(5067), + [anon_sym_super] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [sym_label] = ACTIONS(5067), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_null] = ACTIONS(5067), + [anon_sym_if] = ACTIONS(5067), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_when] = ACTIONS(5067), + [anon_sym_try] = ACTIONS(5067), + [anon_sym_throw] = ACTIONS(5067), + [anon_sym_return] = ACTIONS(5067), + [anon_sym_continue] = ACTIONS(5067), + [anon_sym_break] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5067), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_suspend] = ACTIONS(5067), + [anon_sym_sealed] = ACTIONS(5067), + [anon_sym_annotation] = ACTIONS(5067), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5069), + [anon_sym_continue_AT] = ACTIONS(5069), + [anon_sym_break_AT] = ACTIONS(5069), + [anon_sym_this_AT] = ACTIONS(5069), + [anon_sym_super_AT] = ACTIONS(5069), + [sym_real_literal] = ACTIONS(5069), + [sym_integer_literal] = ACTIONS(5067), + [sym_hex_literal] = ACTIONS(5069), + [sym_bin_literal] = ACTIONS(5069), + [anon_sym_true] = ACTIONS(5067), + [anon_sym_false] = ACTIONS(5067), + [anon_sym_SQUOTE] = ACTIONS(5069), + [sym__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5069), }, [1115] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_this] = ACTIONS(1584), + [anon_sym_super] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [sym_label] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(1584), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_throw] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1582), + [anon_sym_continue_AT] = ACTIONS(1582), + [anon_sym_break_AT] = ACTIONS(1582), + [anon_sym_this_AT] = ACTIONS(1582), + [anon_sym_super_AT] = ACTIONS(1582), + [sym_real_literal] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1584), + [sym_hex_literal] = ACTIONS(1582), + [sym_bin_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1582), + [sym__backtick_identifier] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1582), }, [1116] = { - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, [1117] = { - [sym_getter] = STATE(9421), - [sym_setter] = STATE(9421), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9362), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(4909), - [anon_sym_get] = ACTIONS(4843), - [anon_sym_set] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_object] = ACTIONS(5073), + [anon_sym_fun] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_this] = ACTIONS(5073), + [anon_sym_super] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5073), + [anon_sym_if] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_when] = ACTIONS(5073), + [anon_sym_try] = ACTIONS(5073), + [anon_sym_throw] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5073), + [anon_sym_continue] = ACTIONS(5073), + [anon_sym_break] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5075), + [anon_sym_continue_AT] = ACTIONS(5075), + [anon_sym_break_AT] = ACTIONS(5075), + [anon_sym_this_AT] = ACTIONS(5075), + [anon_sym_super_AT] = ACTIONS(5075), + [sym_real_literal] = ACTIONS(5075), + [sym_integer_literal] = ACTIONS(5073), + [sym_hex_literal] = ACTIONS(5075), + [sym_bin_literal] = ACTIONS(5075), + [anon_sym_true] = ACTIONS(5073), + [anon_sym_false] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5075), + [sym__backtick_identifier] = ACTIONS(5075), + [sym__automatic_semicolon] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5075), + }, + [1118] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [anon_sym_this_AT] = ACTIONS(5079), + [anon_sym_super_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), + }, + [1119] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [1120] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [1121] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5081), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [1122] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_object] = ACTIONS(5085), + [anon_sym_fun] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_this] = ACTIONS(5085), + [anon_sym_super] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_null] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_when] = ACTIONS(5085), + [anon_sym_try] = ACTIONS(5085), + [anon_sym_throw] = ACTIONS(5085), + [anon_sym_return] = ACTIONS(5085), + [anon_sym_continue] = ACTIONS(5085), + [anon_sym_break] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5087), + [anon_sym_continue_AT] = ACTIONS(5087), + [anon_sym_break_AT] = ACTIONS(5087), + [anon_sym_this_AT] = ACTIONS(5087), + [anon_sym_super_AT] = ACTIONS(5087), + [sym_real_literal] = ACTIONS(5087), + [sym_integer_literal] = ACTIONS(5085), + [sym_hex_literal] = ACTIONS(5087), + [sym_bin_literal] = ACTIONS(5087), + [anon_sym_true] = ACTIONS(5085), + [anon_sym_false] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5087), + }, + [1123] = { + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [1124] = { + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_annotation] = ACTIONS(3420), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_lateinit] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_tailrec] = ACTIONS(3420), + [anon_sym_operator] = ACTIONS(3420), + [anon_sym_infix] = ACTIONS(3420), + [anon_sym_inline] = ACTIONS(3420), + [anon_sym_external] = ACTIONS(3420), + [sym_property_modifier] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_final] = ACTIONS(3420), + [anon_sym_open] = ACTIONS(3420), + [anon_sym_vararg] = ACTIONS(3420), + [anon_sym_noinline] = ACTIONS(3420), + [anon_sym_crossinline] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), + }, + [1125] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_object] = ACTIONS(5089), + [anon_sym_fun] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_this] = ACTIONS(5089), + [anon_sym_super] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5089), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_null] = ACTIONS(5089), + [anon_sym_if] = ACTIONS(5089), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_when] = ACTIONS(5089), + [anon_sym_try] = ACTIONS(5089), + [anon_sym_throw] = ACTIONS(5089), + [anon_sym_return] = ACTIONS(5089), + [anon_sym_continue] = ACTIONS(5089), + [anon_sym_break] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5091), + [anon_sym_continue_AT] = ACTIONS(5091), + [anon_sym_break_AT] = ACTIONS(5091), + [anon_sym_this_AT] = ACTIONS(5091), + [anon_sym_super_AT] = ACTIONS(5091), + [sym_real_literal] = ACTIONS(5091), + [sym_integer_literal] = ACTIONS(5089), + [sym_hex_literal] = ACTIONS(5091), + [sym_bin_literal] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5089), + [anon_sym_false] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5091), + }, + [1126] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), + }, + [1127] = { + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [1128] = { + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), + }, + [1129] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_object] = ACTIONS(5095), + [anon_sym_fun] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_this] = ACTIONS(5095), + [anon_sym_super] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_null] = ACTIONS(5095), + [anon_sym_if] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_when] = ACTIONS(5095), + [anon_sym_try] = ACTIONS(5095), + [anon_sym_throw] = ACTIONS(5095), + [anon_sym_return] = ACTIONS(5095), + [anon_sym_continue] = ACTIONS(5095), + [anon_sym_break] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5097), + [anon_sym_continue_AT] = ACTIONS(5097), + [anon_sym_break_AT] = ACTIONS(5097), + [anon_sym_this_AT] = ACTIONS(5097), + [anon_sym_super_AT] = ACTIONS(5097), + [sym_real_literal] = ACTIONS(5097), + [sym_integer_literal] = ACTIONS(5095), + [sym_hex_literal] = ACTIONS(5097), + [sym_bin_literal] = ACTIONS(5097), + [anon_sym_true] = ACTIONS(5095), + [anon_sym_false] = ACTIONS(5095), + [anon_sym_SQUOTE] = ACTIONS(5097), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5097), + }, + [1130] = { + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [1131] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [1132] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [1133] = { + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [1134] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [1135] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_object] = ACTIONS(5099), + [anon_sym_fun] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_this] = ACTIONS(5099), + [anon_sym_super] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_null] = ACTIONS(5099), + [anon_sym_if] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_when] = ACTIONS(5099), + [anon_sym_try] = ACTIONS(5099), + [anon_sym_throw] = ACTIONS(5099), + [anon_sym_return] = ACTIONS(5099), + [anon_sym_continue] = ACTIONS(5099), + [anon_sym_break] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5101), + [anon_sym_continue_AT] = ACTIONS(5101), + [anon_sym_break_AT] = ACTIONS(5101), + [anon_sym_this_AT] = ACTIONS(5101), + [anon_sym_super_AT] = ACTIONS(5101), + [sym_real_literal] = ACTIONS(5101), + [sym_integer_literal] = ACTIONS(5099), + [sym_hex_literal] = ACTIONS(5101), + [sym_bin_literal] = ACTIONS(5101), + [anon_sym_true] = ACTIONS(5099), + [anon_sym_false] = ACTIONS(5099), + [anon_sym_SQUOTE] = ACTIONS(5101), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5101), + }, + [1136] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(1808), + [anon_sym_sealed] = ACTIONS(1808), + [anon_sym_annotation] = ACTIONS(1808), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_lateinit] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_internal] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_tailrec] = ACTIONS(1808), + [anon_sym_operator] = ACTIONS(1808), + [anon_sym_infix] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym_external] = ACTIONS(1808), + [sym_property_modifier] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_final] = ACTIONS(1808), + [anon_sym_open] = ACTIONS(1808), + [anon_sym_vararg] = ACTIONS(1808), + [anon_sym_noinline] = ACTIONS(1808), + [anon_sym_crossinline] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), + }, + [1137] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_object] = ACTIONS(5103), + [anon_sym_fun] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_this] = ACTIONS(5103), + [anon_sym_super] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_null] = ACTIONS(5103), + [anon_sym_if] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_when] = ACTIONS(5103), + [anon_sym_try] = ACTIONS(5103), + [anon_sym_throw] = ACTIONS(5103), + [anon_sym_return] = ACTIONS(5103), + [anon_sym_continue] = ACTIONS(5103), + [anon_sym_break] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5105), + [anon_sym_continue_AT] = ACTIONS(5105), + [anon_sym_break_AT] = ACTIONS(5105), + [anon_sym_this_AT] = ACTIONS(5105), + [anon_sym_super_AT] = ACTIONS(5105), + [sym_real_literal] = ACTIONS(5105), + [sym_integer_literal] = ACTIONS(5103), + [sym_hex_literal] = ACTIONS(5105), + [sym_bin_literal] = ACTIONS(5105), + [anon_sym_true] = ACTIONS(5103), + [anon_sym_false] = ACTIONS(5103), + [anon_sym_SQUOTE] = ACTIONS(5105), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5105), + }, + [1138] = { + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), + }, + [1139] = { + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_object] = ACTIONS(5107), + [anon_sym_fun] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_this] = ACTIONS(5107), + [anon_sym_super] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [sym_label] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_null] = ACTIONS(5107), + [anon_sym_if] = ACTIONS(5107), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_when] = ACTIONS(5107), + [anon_sym_try] = ACTIONS(5107), + [anon_sym_throw] = ACTIONS(5107), + [anon_sym_return] = ACTIONS(5107), + [anon_sym_continue] = ACTIONS(5107), + [anon_sym_break] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_suspend] = ACTIONS(5107), + [anon_sym_sealed] = ACTIONS(5107), + [anon_sym_annotation] = ACTIONS(5107), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_override] = ACTIONS(5107), + [anon_sym_lateinit] = ACTIONS(5107), + [anon_sym_public] = ACTIONS(5107), + [anon_sym_private] = ACTIONS(5107), + [anon_sym_internal] = ACTIONS(5107), + [anon_sym_protected] = ACTIONS(5107), + [anon_sym_tailrec] = ACTIONS(5107), + [anon_sym_operator] = ACTIONS(5107), + [anon_sym_infix] = ACTIONS(5107), + [anon_sym_inline] = ACTIONS(5107), + [anon_sym_external] = ACTIONS(5107), + [sym_property_modifier] = ACTIONS(5107), + [anon_sym_abstract] = ACTIONS(5107), + [anon_sym_final] = ACTIONS(5107), + [anon_sym_open] = ACTIONS(5107), + [anon_sym_vararg] = ACTIONS(5107), + [anon_sym_noinline] = ACTIONS(5107), + [anon_sym_crossinline] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5109), + [anon_sym_continue_AT] = ACTIONS(5109), + [anon_sym_break_AT] = ACTIONS(5109), + [anon_sym_this_AT] = ACTIONS(5109), + [anon_sym_super_AT] = ACTIONS(5109), + [sym_real_literal] = ACTIONS(5109), + [sym_integer_literal] = ACTIONS(5107), + [sym_hex_literal] = ACTIONS(5109), + [sym_bin_literal] = ACTIONS(5109), + [anon_sym_true] = ACTIONS(5107), + [anon_sym_false] = ACTIONS(5107), + [anon_sym_SQUOTE] = ACTIONS(5109), + [sym__backtick_identifier] = ACTIONS(5109), + [sym__automatic_semicolon] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5109), + }, + [1140] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), + }, + [1141] = { + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [1142] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -173653,638 +179885,1605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1118] = { - [sym__alpha_identifier] = ACTIONS(4911), - [anon_sym_AT] = ACTIONS(4913), - [anon_sym_LBRACK] = ACTIONS(4913), - [anon_sym_as] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4913), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4913), - [anon_sym_COMMA] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4911), - [anon_sym_GT] = ACTIONS(4911), - [anon_sym_where] = ACTIONS(4911), - [anon_sym_object] = ACTIONS(4911), - [anon_sym_fun] = ACTIONS(4911), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_SEMI] = ACTIONS(4913), - [anon_sym_get] = ACTIONS(4911), - [anon_sym_set] = ACTIONS(4911), - [anon_sym_this] = ACTIONS(4911), - [anon_sym_super] = ACTIONS(4911), - [anon_sym_STAR] = ACTIONS(4911), - [sym_label] = ACTIONS(4911), - [anon_sym_in] = ACTIONS(4911), - [anon_sym_DOT_DOT] = ACTIONS(4913), - [anon_sym_QMARK_COLON] = ACTIONS(4913), - [anon_sym_AMP_AMP] = ACTIONS(4913), - [anon_sym_PIPE_PIPE] = ACTIONS(4913), - [anon_sym_null] = ACTIONS(4911), - [anon_sym_if] = ACTIONS(4911), - [anon_sym_else] = ACTIONS(4911), - [anon_sym_when] = ACTIONS(4911), - [anon_sym_try] = ACTIONS(4911), - [anon_sym_throw] = ACTIONS(4911), - [anon_sym_return] = ACTIONS(4911), - [anon_sym_continue] = ACTIONS(4911), - [anon_sym_break] = ACTIONS(4911), - [anon_sym_COLON_COLON] = ACTIONS(4913), - [anon_sym_PLUS_EQ] = ACTIONS(4913), - [anon_sym_DASH_EQ] = ACTIONS(4913), - [anon_sym_STAR_EQ] = ACTIONS(4913), - [anon_sym_SLASH_EQ] = ACTIONS(4913), - [anon_sym_PERCENT_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ] = ACTIONS(4911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4913), - [anon_sym_LT_EQ] = ACTIONS(4913), - [anon_sym_GT_EQ] = ACTIONS(4913), - [anon_sym_BANGin] = ACTIONS(4913), - [anon_sym_is] = ACTIONS(4911), - [anon_sym_BANGis] = ACTIONS(4913), - [anon_sym_PLUS] = ACTIONS(4911), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_SLASH] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_as_QMARK] = ACTIONS(4913), - [anon_sym_PLUS_PLUS] = ACTIONS(4913), - [anon_sym_DASH_DASH] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4911), - [anon_sym_BANG_BANG] = ACTIONS(4913), - [anon_sym_suspend] = ACTIONS(4911), - [anon_sym_sealed] = ACTIONS(4911), - [anon_sym_annotation] = ACTIONS(4911), - [anon_sym_data] = ACTIONS(4911), - [anon_sym_inner] = ACTIONS(4911), - [anon_sym_value] = ACTIONS(4911), - [anon_sym_override] = ACTIONS(4911), - [anon_sym_lateinit] = ACTIONS(4911), - [anon_sym_public] = ACTIONS(4911), - [anon_sym_private] = ACTIONS(4911), - [anon_sym_internal] = ACTIONS(4911), - [anon_sym_protected] = ACTIONS(4911), - [anon_sym_tailrec] = ACTIONS(4911), - [anon_sym_operator] = ACTIONS(4911), - [anon_sym_infix] = ACTIONS(4911), - [anon_sym_inline] = ACTIONS(4911), - [anon_sym_external] = ACTIONS(4911), - [sym_property_modifier] = ACTIONS(4911), - [anon_sym_abstract] = ACTIONS(4911), - [anon_sym_final] = ACTIONS(4911), - [anon_sym_open] = ACTIONS(4911), - [anon_sym_vararg] = ACTIONS(4911), - [anon_sym_noinline] = ACTIONS(4911), - [anon_sym_crossinline] = ACTIONS(4911), - [anon_sym_expect] = ACTIONS(4911), - [anon_sym_actual] = ACTIONS(4911), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4913), - [anon_sym_continue_AT] = ACTIONS(4913), - [anon_sym_break_AT] = ACTIONS(4913), - [sym_real_literal] = ACTIONS(4913), - [sym_integer_literal] = ACTIONS(4911), - [sym_hex_literal] = ACTIONS(4913), - [sym_bin_literal] = ACTIONS(4913), - [anon_sym_true] = ACTIONS(4911), - [anon_sym_false] = ACTIONS(4911), - [anon_sym_SQUOTE] = ACTIONS(4913), - [sym__backtick_identifier] = ACTIONS(4913), - [sym__automatic_semicolon] = ACTIONS(4913), - [sym_safe_nav] = ACTIONS(4913), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4913), + [1143] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_object] = ACTIONS(5117), + [anon_sym_fun] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_this] = ACTIONS(5117), + [anon_sym_super] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_try] = ACTIONS(5117), + [anon_sym_throw] = ACTIONS(5117), + [anon_sym_return] = ACTIONS(5117), + [anon_sym_continue] = ACTIONS(5117), + [anon_sym_break] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5119), + [anon_sym_continue_AT] = ACTIONS(5119), + [anon_sym_break_AT] = ACTIONS(5119), + [anon_sym_this_AT] = ACTIONS(5119), + [anon_sym_super_AT] = ACTIONS(5119), + [sym_real_literal] = ACTIONS(5119), + [sym_integer_literal] = ACTIONS(5117), + [sym_hex_literal] = ACTIONS(5119), + [sym_bin_literal] = ACTIONS(5119), + [anon_sym_true] = ACTIONS(5117), + [anon_sym_false] = ACTIONS(5117), + [anon_sym_SQUOTE] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5119), }, - [1119] = { - [sym__alpha_identifier] = ACTIONS(4915), - [anon_sym_AT] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4917), - [anon_sym_as] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4917), - [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4917), - [anon_sym_COMMA] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4915), - [anon_sym_GT] = ACTIONS(4915), - [anon_sym_where] = ACTIONS(4915), - [anon_sym_object] = ACTIONS(4915), - [anon_sym_fun] = ACTIONS(4915), - [anon_sym_DOT] = ACTIONS(4915), - [anon_sym_SEMI] = ACTIONS(4917), - [anon_sym_get] = ACTIONS(4915), - [anon_sym_set] = ACTIONS(4915), - [anon_sym_this] = ACTIONS(4915), - [anon_sym_super] = ACTIONS(4915), - [anon_sym_STAR] = ACTIONS(4915), - [sym_label] = ACTIONS(4915), - [anon_sym_in] = ACTIONS(4915), - [anon_sym_DOT_DOT] = ACTIONS(4917), - [anon_sym_QMARK_COLON] = ACTIONS(4917), - [anon_sym_AMP_AMP] = ACTIONS(4917), - [anon_sym_PIPE_PIPE] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4915), - [anon_sym_if] = ACTIONS(4915), - [anon_sym_else] = ACTIONS(4915), - [anon_sym_when] = ACTIONS(4915), - [anon_sym_try] = ACTIONS(4915), - [anon_sym_throw] = ACTIONS(4915), - [anon_sym_return] = ACTIONS(4915), - [anon_sym_continue] = ACTIONS(4915), - [anon_sym_break] = ACTIONS(4915), - [anon_sym_COLON_COLON] = ACTIONS(4917), - [anon_sym_PLUS_EQ] = ACTIONS(4917), - [anon_sym_DASH_EQ] = ACTIONS(4917), - [anon_sym_STAR_EQ] = ACTIONS(4917), - [anon_sym_SLASH_EQ] = ACTIONS(4917), - [anon_sym_PERCENT_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4917), - [anon_sym_LT_EQ] = ACTIONS(4917), - [anon_sym_GT_EQ] = ACTIONS(4917), - [anon_sym_BANGin] = ACTIONS(4917), - [anon_sym_is] = ACTIONS(4915), - [anon_sym_BANGis] = ACTIONS(4917), - [anon_sym_PLUS] = ACTIONS(4915), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_SLASH] = ACTIONS(4915), - [anon_sym_PERCENT] = ACTIONS(4915), - [anon_sym_as_QMARK] = ACTIONS(4917), - [anon_sym_PLUS_PLUS] = ACTIONS(4917), - [anon_sym_DASH_DASH] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4915), - [anon_sym_BANG_BANG] = ACTIONS(4917), - [anon_sym_suspend] = ACTIONS(4915), - [anon_sym_sealed] = ACTIONS(4915), - [anon_sym_annotation] = ACTIONS(4915), - [anon_sym_data] = ACTIONS(4915), - [anon_sym_inner] = ACTIONS(4915), - [anon_sym_value] = ACTIONS(4915), - [anon_sym_override] = ACTIONS(4915), - [anon_sym_lateinit] = ACTIONS(4915), - [anon_sym_public] = ACTIONS(4915), - [anon_sym_private] = ACTIONS(4915), - [anon_sym_internal] = ACTIONS(4915), - [anon_sym_protected] = ACTIONS(4915), - [anon_sym_tailrec] = ACTIONS(4915), - [anon_sym_operator] = ACTIONS(4915), - [anon_sym_infix] = ACTIONS(4915), - [anon_sym_inline] = ACTIONS(4915), - [anon_sym_external] = ACTIONS(4915), - [sym_property_modifier] = ACTIONS(4915), - [anon_sym_abstract] = ACTIONS(4915), - [anon_sym_final] = ACTIONS(4915), - [anon_sym_open] = ACTIONS(4915), - [anon_sym_vararg] = ACTIONS(4915), - [anon_sym_noinline] = ACTIONS(4915), - [anon_sym_crossinline] = ACTIONS(4915), - [anon_sym_expect] = ACTIONS(4915), - [anon_sym_actual] = ACTIONS(4915), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4917), - [anon_sym_continue_AT] = ACTIONS(4917), - [anon_sym_break_AT] = ACTIONS(4917), - [sym_real_literal] = ACTIONS(4917), - [sym_integer_literal] = ACTIONS(4915), - [sym_hex_literal] = ACTIONS(4917), - [sym_bin_literal] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4915), - [anon_sym_false] = ACTIONS(4915), - [anon_sym_SQUOTE] = ACTIONS(4917), - [sym__backtick_identifier] = ACTIONS(4917), - [sym__automatic_semicolon] = ACTIONS(4917), - [sym_safe_nav] = ACTIONS(4917), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4917), + [1144] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_object] = ACTIONS(5121), + [anon_sym_fun] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_this] = ACTIONS(5121), + [anon_sym_super] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_try] = ACTIONS(5121), + [anon_sym_throw] = ACTIONS(5121), + [anon_sym_return] = ACTIONS(5121), + [anon_sym_continue] = ACTIONS(5121), + [anon_sym_break] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5123), + [anon_sym_continue_AT] = ACTIONS(5123), + [anon_sym_break_AT] = ACTIONS(5123), + [anon_sym_this_AT] = ACTIONS(5123), + [anon_sym_super_AT] = ACTIONS(5123), + [sym_real_literal] = ACTIONS(5123), + [sym_integer_literal] = ACTIONS(5121), + [sym_hex_literal] = ACTIONS(5123), + [sym_bin_literal] = ACTIONS(5123), + [anon_sym_true] = ACTIONS(5121), + [anon_sym_false] = ACTIONS(5121), + [anon_sym_SQUOTE] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5123), }, - [1120] = { - [sym__alpha_identifier] = ACTIONS(4919), - [anon_sym_AT] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_as] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4919), - [anon_sym_GT] = ACTIONS(4919), - [anon_sym_where] = ACTIONS(4919), - [anon_sym_object] = ACTIONS(4919), - [anon_sym_fun] = ACTIONS(4919), - [anon_sym_DOT] = ACTIONS(4919), - [anon_sym_SEMI] = ACTIONS(4921), - [anon_sym_get] = ACTIONS(4919), - [anon_sym_set] = ACTIONS(4919), - [anon_sym_this] = ACTIONS(4919), - [anon_sym_super] = ACTIONS(4919), - [anon_sym_STAR] = ACTIONS(4919), - [sym_label] = ACTIONS(4919), - [anon_sym_in] = ACTIONS(4919), - [anon_sym_DOT_DOT] = ACTIONS(4921), - [anon_sym_QMARK_COLON] = ACTIONS(4921), - [anon_sym_AMP_AMP] = ACTIONS(4921), - [anon_sym_PIPE_PIPE] = ACTIONS(4921), - [anon_sym_null] = ACTIONS(4919), - [anon_sym_if] = ACTIONS(4919), - [anon_sym_else] = ACTIONS(4919), - [anon_sym_when] = ACTIONS(4919), - [anon_sym_try] = ACTIONS(4919), - [anon_sym_throw] = ACTIONS(4919), - [anon_sym_return] = ACTIONS(4919), - [anon_sym_continue] = ACTIONS(4919), - [anon_sym_break] = ACTIONS(4919), - [anon_sym_COLON_COLON] = ACTIONS(4921), - [anon_sym_PLUS_EQ] = ACTIONS(4921), - [anon_sym_DASH_EQ] = ACTIONS(4921), - [anon_sym_STAR_EQ] = ACTIONS(4921), - [anon_sym_SLASH_EQ] = ACTIONS(4921), - [anon_sym_PERCENT_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4921), - [anon_sym_LT_EQ] = ACTIONS(4921), - [anon_sym_GT_EQ] = ACTIONS(4921), - [anon_sym_BANGin] = ACTIONS(4921), - [anon_sym_is] = ACTIONS(4919), - [anon_sym_BANGis] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4919), - [anon_sym_DASH] = ACTIONS(4919), - [anon_sym_SLASH] = ACTIONS(4919), - [anon_sym_PERCENT] = ACTIONS(4919), - [anon_sym_as_QMARK] = ACTIONS(4921), - [anon_sym_PLUS_PLUS] = ACTIONS(4921), - [anon_sym_DASH_DASH] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4919), - [anon_sym_BANG_BANG] = ACTIONS(4921), - [anon_sym_suspend] = ACTIONS(4919), - [anon_sym_sealed] = ACTIONS(4919), - [anon_sym_annotation] = ACTIONS(4919), - [anon_sym_data] = ACTIONS(4919), - [anon_sym_inner] = ACTIONS(4919), - [anon_sym_value] = ACTIONS(4919), - [anon_sym_override] = ACTIONS(4919), - [anon_sym_lateinit] = ACTIONS(4919), - [anon_sym_public] = ACTIONS(4919), - [anon_sym_private] = ACTIONS(4919), - [anon_sym_internal] = ACTIONS(4919), - [anon_sym_protected] = ACTIONS(4919), - [anon_sym_tailrec] = ACTIONS(4919), - [anon_sym_operator] = ACTIONS(4919), - [anon_sym_infix] = ACTIONS(4919), - [anon_sym_inline] = ACTIONS(4919), - [anon_sym_external] = ACTIONS(4919), - [sym_property_modifier] = ACTIONS(4919), - [anon_sym_abstract] = ACTIONS(4919), - [anon_sym_final] = ACTIONS(4919), - [anon_sym_open] = ACTIONS(4919), - [anon_sym_vararg] = ACTIONS(4919), - [anon_sym_noinline] = ACTIONS(4919), - [anon_sym_crossinline] = ACTIONS(4919), - [anon_sym_expect] = ACTIONS(4919), - [anon_sym_actual] = ACTIONS(4919), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4921), - [anon_sym_continue_AT] = ACTIONS(4921), - [anon_sym_break_AT] = ACTIONS(4921), - [sym_real_literal] = ACTIONS(4921), - [sym_integer_literal] = ACTIONS(4919), - [sym_hex_literal] = ACTIONS(4921), - [sym_bin_literal] = ACTIONS(4921), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [anon_sym_SQUOTE] = ACTIONS(4921), - [sym__backtick_identifier] = ACTIONS(4921), - [sym__automatic_semicolon] = ACTIONS(4921), - [sym_safe_nav] = ACTIONS(4921), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4921), + [1145] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_object] = ACTIONS(5125), + [anon_sym_fun] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_this] = ACTIONS(5125), + [anon_sym_super] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_try] = ACTIONS(5125), + [anon_sym_throw] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5125), + [anon_sym_continue] = ACTIONS(5125), + [anon_sym_break] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_suspend] = ACTIONS(5125), + [anon_sym_sealed] = ACTIONS(5125), + [anon_sym_annotation] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_override] = ACTIONS(5125), + [anon_sym_lateinit] = ACTIONS(5125), + [anon_sym_public] = ACTIONS(5125), + [anon_sym_private] = ACTIONS(5125), + [anon_sym_internal] = ACTIONS(5125), + [anon_sym_protected] = ACTIONS(5125), + [anon_sym_tailrec] = ACTIONS(5125), + [anon_sym_operator] = ACTIONS(5125), + [anon_sym_infix] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym_external] = ACTIONS(5125), + [sym_property_modifier] = ACTIONS(5125), + [anon_sym_abstract] = ACTIONS(5125), + [anon_sym_final] = ACTIONS(5125), + [anon_sym_open] = ACTIONS(5125), + [anon_sym_vararg] = ACTIONS(5125), + [anon_sym_noinline] = ACTIONS(5125), + [anon_sym_crossinline] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5127), + [anon_sym_continue_AT] = ACTIONS(5127), + [anon_sym_break_AT] = ACTIONS(5127), + [anon_sym_this_AT] = ACTIONS(5127), + [anon_sym_super_AT] = ACTIONS(5127), + [sym_real_literal] = ACTIONS(5127), + [sym_integer_literal] = ACTIONS(5125), + [sym_hex_literal] = ACTIONS(5127), + [sym_bin_literal] = ACTIONS(5127), + [anon_sym_true] = ACTIONS(5125), + [anon_sym_false] = ACTIONS(5125), + [anon_sym_SQUOTE] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5127), }, - [1121] = { - [sym__alpha_identifier] = ACTIONS(4817), - [anon_sym_AT] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4817), - [anon_sym_object] = ACTIONS(4817), - [anon_sym_fun] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_get] = ACTIONS(4817), - [anon_sym_set] = ACTIONS(4817), - [anon_sym_this] = ACTIONS(4817), - [anon_sym_super] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [sym_label] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_QMARK_COLON] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_null] = ACTIONS(4817), - [anon_sym_if] = ACTIONS(4817), - [anon_sym_else] = ACTIONS(4817), - [anon_sym_when] = ACTIONS(4817), - [anon_sym_try] = ACTIONS(4817), - [anon_sym_throw] = ACTIONS(4817), - [anon_sym_return] = ACTIONS(4817), - [anon_sym_continue] = ACTIONS(4817), - [anon_sym_break] = ACTIONS(4817), - [anon_sym_COLON_COLON] = ACTIONS(4819), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_BANGin] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4817), - [anon_sym_BANGis] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_as_QMARK] = ACTIONS(4819), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_BANG_BANG] = ACTIONS(4819), - [anon_sym_suspend] = ACTIONS(4817), - [anon_sym_sealed] = ACTIONS(4817), - [anon_sym_annotation] = ACTIONS(4817), - [anon_sym_data] = ACTIONS(4817), - [anon_sym_inner] = ACTIONS(4817), - [anon_sym_value] = ACTIONS(4817), - [anon_sym_override] = ACTIONS(4817), - [anon_sym_lateinit] = ACTIONS(4817), - [anon_sym_public] = ACTIONS(4817), - [anon_sym_private] = ACTIONS(4817), - [anon_sym_internal] = ACTIONS(4817), - [anon_sym_protected] = ACTIONS(4817), - [anon_sym_tailrec] = ACTIONS(4817), - [anon_sym_operator] = ACTIONS(4817), - [anon_sym_infix] = ACTIONS(4817), - [anon_sym_inline] = ACTIONS(4817), - [anon_sym_external] = ACTIONS(4817), - [sym_property_modifier] = ACTIONS(4817), - [anon_sym_abstract] = ACTIONS(4817), - [anon_sym_final] = ACTIONS(4817), - [anon_sym_open] = ACTIONS(4817), - [anon_sym_vararg] = ACTIONS(4817), - [anon_sym_noinline] = ACTIONS(4817), - [anon_sym_crossinline] = ACTIONS(4817), - [anon_sym_expect] = ACTIONS(4817), - [anon_sym_actual] = ACTIONS(4817), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4819), - [anon_sym_continue_AT] = ACTIONS(4819), - [anon_sym_break_AT] = ACTIONS(4819), - [sym_real_literal] = ACTIONS(4819), - [sym_integer_literal] = ACTIONS(4817), - [sym_hex_literal] = ACTIONS(4819), - [sym_bin_literal] = ACTIONS(4819), - [anon_sym_true] = ACTIONS(4817), - [anon_sym_false] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4819), - [sym__backtick_identifier] = ACTIONS(4819), - [sym__automatic_semicolon] = ACTIONS(4819), - [sym_safe_nav] = ACTIONS(4819), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4819), + [1146] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [1122] = { - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [1147] = { + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(1796), + [anon_sym_sealed] = ACTIONS(1796), + [anon_sym_annotation] = ACTIONS(1796), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_override] = ACTIONS(1796), + [anon_sym_lateinit] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_internal] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_tailrec] = ACTIONS(1796), + [anon_sym_operator] = ACTIONS(1796), + [anon_sym_infix] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [anon_sym_external] = ACTIONS(1796), + [sym_property_modifier] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_final] = ACTIONS(1796), + [anon_sym_open] = ACTIONS(1796), + [anon_sym_vararg] = ACTIONS(1796), + [anon_sym_noinline] = ACTIONS(1796), + [anon_sym_crossinline] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [1123] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4394), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_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), - [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), + [1148] = { + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, - [1124] = { + [1149] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_object] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_this] = ACTIONS(5131), + [anon_sym_super] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_when] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_throw] = ACTIONS(5131), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_continue] = ACTIONS(5131), + [anon_sym_break] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5133), + [anon_sym_continue_AT] = ACTIONS(5133), + [anon_sym_break_AT] = ACTIONS(5133), + [anon_sym_this_AT] = ACTIONS(5133), + [anon_sym_super_AT] = ACTIONS(5133), + [sym_real_literal] = ACTIONS(5133), + [sym_integer_literal] = ACTIONS(5131), + [sym_hex_literal] = ACTIONS(5133), + [sym_bin_literal] = ACTIONS(5133), + [anon_sym_true] = ACTIONS(5131), + [anon_sym_false] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5133), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5133), + }, + [1150] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_object] = ACTIONS(5135), + [anon_sym_fun] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_this] = ACTIONS(5135), + [anon_sym_super] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_null] = ACTIONS(5135), + [anon_sym_if] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_try] = ACTIONS(5135), + [anon_sym_throw] = ACTIONS(5135), + [anon_sym_return] = ACTIONS(5135), + [anon_sym_continue] = ACTIONS(5135), + [anon_sym_break] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5137), + [anon_sym_continue_AT] = ACTIONS(5137), + [anon_sym_break_AT] = ACTIONS(5137), + [anon_sym_this_AT] = ACTIONS(5137), + [anon_sym_super_AT] = ACTIONS(5137), + [sym_real_literal] = ACTIONS(5137), + [sym_integer_literal] = ACTIONS(5135), + [sym_hex_literal] = ACTIONS(5137), + [sym_bin_literal] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5135), + [anon_sym_false] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5137), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5137), + }, + [1151] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_object] = ACTIONS(5139), + [anon_sym_fun] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_null] = ACTIONS(5139), + [anon_sym_if] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_try] = ACTIONS(5139), + [anon_sym_throw] = ACTIONS(5139), + [anon_sym_return] = ACTIONS(5139), + [anon_sym_continue] = ACTIONS(5139), + [anon_sym_break] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5141), + [anon_sym_continue_AT] = ACTIONS(5141), + [anon_sym_break_AT] = ACTIONS(5141), + [anon_sym_this_AT] = ACTIONS(5141), + [anon_sym_super_AT] = ACTIONS(5141), + [sym_real_literal] = ACTIONS(5141), + [sym_integer_literal] = ACTIONS(5139), + [sym_hex_literal] = ACTIONS(5141), + [sym_bin_literal] = ACTIONS(5141), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5141), + }, + [1152] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1153] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_object] = ACTIONS(5145), + [anon_sym_fun] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_this] = ACTIONS(5145), + [anon_sym_super] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_throw] = ACTIONS(5145), + [anon_sym_return] = ACTIONS(5145), + [anon_sym_continue] = ACTIONS(5145), + [anon_sym_break] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5147), + [anon_sym_continue_AT] = ACTIONS(5147), + [anon_sym_break_AT] = ACTIONS(5147), + [anon_sym_this_AT] = ACTIONS(5147), + [anon_sym_super_AT] = ACTIONS(5147), + [sym_real_literal] = ACTIONS(5147), + [sym_integer_literal] = ACTIONS(5145), + [sym_hex_literal] = ACTIONS(5147), + [sym_bin_literal] = ACTIONS(5147), + [anon_sym_true] = ACTIONS(5145), + [anon_sym_false] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5147), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5147), + }, + [1154] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_null] = ACTIONS(5149), + [anon_sym_if] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_try] = ACTIONS(5149), + [anon_sym_throw] = ACTIONS(5149), + [anon_sym_return] = ACTIONS(5149), + [anon_sym_continue] = ACTIONS(5149), + [anon_sym_break] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5151), + [anon_sym_continue_AT] = ACTIONS(5151), + [anon_sym_break_AT] = ACTIONS(5151), + [anon_sym_this_AT] = ACTIONS(5151), + [anon_sym_super_AT] = ACTIONS(5151), + [sym_real_literal] = ACTIONS(5151), + [sym_integer_literal] = ACTIONS(5149), + [sym_hex_literal] = ACTIONS(5151), + [sym_bin_literal] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5151), + }, + [1155] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5155), + }, + [1156] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1157] = { + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1158] = { [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(1792), [anon_sym_LBRACK] = ACTIONS(1792), @@ -174375,6 +181574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -174388,5701 +181589,2100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [1125] = { - [sym__alpha_identifier] = ACTIONS(4358), - [anon_sym_AT] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4360), - [anon_sym_as] = ACTIONS(4358), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4360), - [anon_sym_RBRACE] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_GT] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_object] = ACTIONS(4358), - [anon_sym_fun] = ACTIONS(4358), - [anon_sym_DOT] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_get] = ACTIONS(4358), - [anon_sym_set] = ACTIONS(4358), - [anon_sym_this] = ACTIONS(4358), - [anon_sym_super] = ACTIONS(4358), - [anon_sym_STAR] = ACTIONS(4358), - [sym_label] = ACTIONS(4358), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4360), - [anon_sym_AMP_AMP] = ACTIONS(4360), - [anon_sym_PIPE_PIPE] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_else] = ACTIONS(4358), - [anon_sym_when] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_throw] = ACTIONS(4358), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_continue] = ACTIONS(4358), - [anon_sym_break] = ACTIONS(4358), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PLUS_EQ] = ACTIONS(4360), - [anon_sym_DASH_EQ] = ACTIONS(4360), - [anon_sym_STAR_EQ] = ACTIONS(4360), - [anon_sym_SLASH_EQ] = ACTIONS(4360), - [anon_sym_PERCENT_EQ] = ACTIONS(4360), - [anon_sym_BANG_EQ] = ACTIONS(4358), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4360), - [anon_sym_EQ_EQ] = ACTIONS(4358), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4360), - [anon_sym_LT_EQ] = ACTIONS(4360), - [anon_sym_GT_EQ] = ACTIONS(4360), - [anon_sym_BANGin] = ACTIONS(4360), - [anon_sym_is] = ACTIONS(4358), - [anon_sym_BANGis] = ACTIONS(4360), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_SLASH] = ACTIONS(4358), - [anon_sym_PERCENT] = ACTIONS(4358), - [anon_sym_as_QMARK] = ACTIONS(4360), - [anon_sym_PLUS_PLUS] = ACTIONS(4360), - [anon_sym_DASH_DASH] = ACTIONS(4360), - [anon_sym_BANG] = ACTIONS(4358), - [anon_sym_BANG_BANG] = ACTIONS(4360), - [anon_sym_suspend] = ACTIONS(4358), - [anon_sym_sealed] = ACTIONS(4358), - [anon_sym_annotation] = ACTIONS(4358), - [anon_sym_data] = ACTIONS(4358), - [anon_sym_inner] = ACTIONS(4358), - [anon_sym_value] = ACTIONS(4358), - [anon_sym_override] = ACTIONS(4358), - [anon_sym_lateinit] = ACTIONS(4358), - [anon_sym_public] = ACTIONS(4358), - [anon_sym_private] = ACTIONS(4358), - [anon_sym_internal] = ACTIONS(4358), - [anon_sym_protected] = ACTIONS(4358), - [anon_sym_tailrec] = ACTIONS(4358), - [anon_sym_operator] = ACTIONS(4358), - [anon_sym_infix] = ACTIONS(4358), - [anon_sym_inline] = ACTIONS(4358), - [anon_sym_external] = ACTIONS(4358), - [sym_property_modifier] = ACTIONS(4358), - [anon_sym_abstract] = ACTIONS(4358), - [anon_sym_final] = ACTIONS(4358), - [anon_sym_open] = ACTIONS(4358), - [anon_sym_vararg] = ACTIONS(4358), - [anon_sym_noinline] = ACTIONS(4358), - [anon_sym_crossinline] = ACTIONS(4358), - [anon_sym_expect] = ACTIONS(4358), - [anon_sym_actual] = ACTIONS(4358), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4360), - [anon_sym_continue_AT] = ACTIONS(4360), - [anon_sym_break_AT] = ACTIONS(4360), - [sym_real_literal] = ACTIONS(4360), - [sym_integer_literal] = ACTIONS(4358), - [sym_hex_literal] = ACTIONS(4360), - [sym_bin_literal] = ACTIONS(4360), - [anon_sym_true] = ACTIONS(4358), - [anon_sym_false] = ACTIONS(4358), - [anon_sym_SQUOTE] = ACTIONS(4360), - [sym__backtick_identifier] = ACTIONS(4360), - [sym__automatic_semicolon] = ACTIONS(4360), - [sym_safe_nav] = ACTIONS(4360), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4360), - }, - [1126] = { - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4219), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), - }, - [1127] = { - [sym__alpha_identifier] = ACTIONS(4923), - [anon_sym_AT] = ACTIONS(4925), - [anon_sym_LBRACK] = ACTIONS(4925), - [anon_sym_as] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4925), - [anon_sym_RBRACE] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4925), - [anon_sym_COMMA] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_where] = ACTIONS(4923), - [anon_sym_object] = ACTIONS(4923), - [anon_sym_fun] = ACTIONS(4923), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_SEMI] = ACTIONS(4925), - [anon_sym_get] = ACTIONS(4923), - [anon_sym_set] = ACTIONS(4923), - [anon_sym_this] = ACTIONS(4923), - [anon_sym_super] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [sym_label] = ACTIONS(4923), - [anon_sym_in] = ACTIONS(4923), - [anon_sym_DOT_DOT] = ACTIONS(4925), - [anon_sym_QMARK_COLON] = ACTIONS(4925), - [anon_sym_AMP_AMP] = ACTIONS(4925), - [anon_sym_PIPE_PIPE] = ACTIONS(4925), - [anon_sym_null] = ACTIONS(4923), - [anon_sym_if] = ACTIONS(4923), - [anon_sym_else] = ACTIONS(4923), - [anon_sym_when] = ACTIONS(4923), - [anon_sym_try] = ACTIONS(4923), - [anon_sym_throw] = ACTIONS(4923), - [anon_sym_return] = ACTIONS(4923), - [anon_sym_continue] = ACTIONS(4923), - [anon_sym_break] = ACTIONS(4923), - [anon_sym_COLON_COLON] = ACTIONS(4925), - [anon_sym_PLUS_EQ] = ACTIONS(4925), - [anon_sym_DASH_EQ] = ACTIONS(4925), - [anon_sym_STAR_EQ] = ACTIONS(4925), - [anon_sym_SLASH_EQ] = ACTIONS(4925), - [anon_sym_PERCENT_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4925), - [anon_sym_LT_EQ] = ACTIONS(4925), - [anon_sym_GT_EQ] = ACTIONS(4925), - [anon_sym_BANGin] = ACTIONS(4925), - [anon_sym_is] = ACTIONS(4923), - [anon_sym_BANGis] = ACTIONS(4925), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_PERCENT] = ACTIONS(4923), - [anon_sym_as_QMARK] = ACTIONS(4925), - [anon_sym_PLUS_PLUS] = ACTIONS(4925), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_BANG_BANG] = ACTIONS(4925), - [anon_sym_suspend] = ACTIONS(4923), - [anon_sym_sealed] = ACTIONS(4923), - [anon_sym_annotation] = ACTIONS(4923), - [anon_sym_data] = ACTIONS(4923), - [anon_sym_inner] = ACTIONS(4923), - [anon_sym_value] = ACTIONS(4923), - [anon_sym_override] = ACTIONS(4923), - [anon_sym_lateinit] = ACTIONS(4923), - [anon_sym_public] = ACTIONS(4923), - [anon_sym_private] = ACTIONS(4923), - [anon_sym_internal] = ACTIONS(4923), - [anon_sym_protected] = ACTIONS(4923), - [anon_sym_tailrec] = ACTIONS(4923), - [anon_sym_operator] = ACTIONS(4923), - [anon_sym_infix] = ACTIONS(4923), - [anon_sym_inline] = ACTIONS(4923), - [anon_sym_external] = ACTIONS(4923), - [sym_property_modifier] = ACTIONS(4923), - [anon_sym_abstract] = ACTIONS(4923), - [anon_sym_final] = ACTIONS(4923), - [anon_sym_open] = ACTIONS(4923), - [anon_sym_vararg] = ACTIONS(4923), - [anon_sym_noinline] = ACTIONS(4923), - [anon_sym_crossinline] = ACTIONS(4923), - [anon_sym_expect] = ACTIONS(4923), - [anon_sym_actual] = ACTIONS(4923), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4925), - [anon_sym_continue_AT] = ACTIONS(4925), - [anon_sym_break_AT] = ACTIONS(4925), - [sym_real_literal] = ACTIONS(4925), - [sym_integer_literal] = ACTIONS(4923), - [sym_hex_literal] = ACTIONS(4925), - [sym_bin_literal] = ACTIONS(4925), - [anon_sym_true] = ACTIONS(4923), - [anon_sym_false] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4925), - [sym__backtick_identifier] = ACTIONS(4925), - [sym__automatic_semicolon] = ACTIONS(4925), - [sym_safe_nav] = ACTIONS(4925), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4925), - }, - [1128] = { - [sym__alpha_identifier] = ACTIONS(4927), - [anon_sym_AT] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4927), - [anon_sym_GT] = ACTIONS(4927), - [anon_sym_where] = ACTIONS(4927), - [anon_sym_object] = ACTIONS(4927), - [anon_sym_fun] = ACTIONS(4927), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4929), - [anon_sym_get] = ACTIONS(4927), - [anon_sym_set] = ACTIONS(4927), - [anon_sym_this] = ACTIONS(4927), - [anon_sym_super] = ACTIONS(4927), - [anon_sym_STAR] = ACTIONS(4927), - [sym_label] = ACTIONS(4927), - [anon_sym_in] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_QMARK_COLON] = ACTIONS(4929), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_null] = ACTIONS(4927), - [anon_sym_if] = ACTIONS(4927), - [anon_sym_else] = ACTIONS(4927), - [anon_sym_when] = ACTIONS(4927), - [anon_sym_try] = ACTIONS(4927), - [anon_sym_throw] = ACTIONS(4927), - [anon_sym_return] = ACTIONS(4927), - [anon_sym_continue] = ACTIONS(4927), - [anon_sym_break] = ACTIONS(4927), - [anon_sym_COLON_COLON] = ACTIONS(4929), - [anon_sym_PLUS_EQ] = ACTIONS(4929), - [anon_sym_DASH_EQ] = ACTIONS(4929), - [anon_sym_STAR_EQ] = ACTIONS(4929), - [anon_sym_SLASH_EQ] = ACTIONS(4929), - [anon_sym_PERCENT_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_BANGin] = ACTIONS(4929), - [anon_sym_is] = ACTIONS(4927), - [anon_sym_BANGis] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4927), - [anon_sym_DASH] = ACTIONS(4927), - [anon_sym_SLASH] = ACTIONS(4927), - [anon_sym_PERCENT] = ACTIONS(4927), - [anon_sym_as_QMARK] = ACTIONS(4929), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4927), - [anon_sym_BANG_BANG] = ACTIONS(4929), - [anon_sym_suspend] = ACTIONS(4927), - [anon_sym_sealed] = ACTIONS(4927), - [anon_sym_annotation] = ACTIONS(4927), - [anon_sym_data] = ACTIONS(4927), - [anon_sym_inner] = ACTIONS(4927), - [anon_sym_value] = ACTIONS(4927), - [anon_sym_override] = ACTIONS(4927), - [anon_sym_lateinit] = ACTIONS(4927), - [anon_sym_public] = ACTIONS(4927), - [anon_sym_private] = ACTIONS(4927), - [anon_sym_internal] = ACTIONS(4927), - [anon_sym_protected] = ACTIONS(4927), - [anon_sym_tailrec] = ACTIONS(4927), - [anon_sym_operator] = ACTIONS(4927), - [anon_sym_infix] = ACTIONS(4927), - [anon_sym_inline] = ACTIONS(4927), - [anon_sym_external] = ACTIONS(4927), - [sym_property_modifier] = ACTIONS(4927), - [anon_sym_abstract] = ACTIONS(4927), - [anon_sym_final] = ACTIONS(4927), - [anon_sym_open] = ACTIONS(4927), - [anon_sym_vararg] = ACTIONS(4927), - [anon_sym_noinline] = ACTIONS(4927), - [anon_sym_crossinline] = ACTIONS(4927), - [anon_sym_expect] = ACTIONS(4927), - [anon_sym_actual] = ACTIONS(4927), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4929), - [anon_sym_continue_AT] = ACTIONS(4929), - [anon_sym_break_AT] = ACTIONS(4929), - [sym_real_literal] = ACTIONS(4929), - [sym_integer_literal] = ACTIONS(4927), - [sym_hex_literal] = ACTIONS(4929), - [sym_bin_literal] = ACTIONS(4929), - [anon_sym_true] = ACTIONS(4927), - [anon_sym_false] = ACTIONS(4927), - [anon_sym_SQUOTE] = ACTIONS(4929), - [sym__backtick_identifier] = ACTIONS(4929), - [sym__automatic_semicolon] = ACTIONS(4929), - [sym_safe_nav] = ACTIONS(4929), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4929), - }, - [1129] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_object] = ACTIONS(4931), - [anon_sym_fun] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_this] = ACTIONS(4931), - [anon_sym_super] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [sym_label] = ACTIONS(4931), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_null] = ACTIONS(4931), - [anon_sym_if] = ACTIONS(4931), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_try] = ACTIONS(4931), - [anon_sym_throw] = ACTIONS(4931), - [anon_sym_return] = ACTIONS(4931), - [anon_sym_continue] = ACTIONS(4931), - [anon_sym_break] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_suspend] = ACTIONS(4931), - [anon_sym_sealed] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4931), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_value] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), - [anon_sym_lateinit] = ACTIONS(4931), - [anon_sym_public] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4931), - [anon_sym_internal] = ACTIONS(4931), - [anon_sym_protected] = ACTIONS(4931), - [anon_sym_tailrec] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_infix] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym_external] = ACTIONS(4931), - [sym_property_modifier] = ACTIONS(4931), - [anon_sym_abstract] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_open] = ACTIONS(4931), - [anon_sym_vararg] = ACTIONS(4931), - [anon_sym_noinline] = ACTIONS(4931), - [anon_sym_crossinline] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4933), - [anon_sym_continue_AT] = ACTIONS(4933), - [anon_sym_break_AT] = ACTIONS(4933), - [sym_real_literal] = ACTIONS(4933), - [sym_integer_literal] = ACTIONS(4931), - [sym_hex_literal] = ACTIONS(4933), - [sym_bin_literal] = ACTIONS(4933), - [anon_sym_true] = ACTIONS(4931), - [anon_sym_false] = ACTIONS(4931), - [anon_sym_SQUOTE] = ACTIONS(4933), - [sym__backtick_identifier] = ACTIONS(4933), - [sym__automatic_semicolon] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4933), - }, - [1130] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), - }, - [1131] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_object] = ACTIONS(4935), - [anon_sym_fun] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_this] = ACTIONS(4935), - [anon_sym_super] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [sym_label] = ACTIONS(4935), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(4935), - [anon_sym_if] = ACTIONS(4935), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_when] = ACTIONS(4935), - [anon_sym_try] = ACTIONS(4935), - [anon_sym_throw] = ACTIONS(4935), - [anon_sym_return] = ACTIONS(4935), - [anon_sym_continue] = ACTIONS(4935), - [anon_sym_break] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_suspend] = ACTIONS(4935), - [anon_sym_sealed] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4935), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_value] = ACTIONS(4935), - [anon_sym_override] = ACTIONS(4935), - [anon_sym_lateinit] = ACTIONS(4935), - [anon_sym_public] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4935), - [anon_sym_internal] = ACTIONS(4935), - [anon_sym_protected] = ACTIONS(4935), - [anon_sym_tailrec] = ACTIONS(4935), - [anon_sym_operator] = ACTIONS(4935), - [anon_sym_infix] = ACTIONS(4935), - [anon_sym_inline] = ACTIONS(4935), - [anon_sym_external] = ACTIONS(4935), - [sym_property_modifier] = ACTIONS(4935), - [anon_sym_abstract] = ACTIONS(4935), - [anon_sym_final] = ACTIONS(4935), - [anon_sym_open] = ACTIONS(4935), - [anon_sym_vararg] = ACTIONS(4935), - [anon_sym_noinline] = ACTIONS(4935), - [anon_sym_crossinline] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4937), - [anon_sym_continue_AT] = ACTIONS(4937), - [anon_sym_break_AT] = ACTIONS(4937), - [sym_real_literal] = ACTIONS(4937), - [sym_integer_literal] = ACTIONS(4935), - [sym_hex_literal] = ACTIONS(4937), - [sym_bin_literal] = ACTIONS(4937), - [anon_sym_true] = ACTIONS(4935), - [anon_sym_false] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4937), - [sym__backtick_identifier] = ACTIONS(4937), - [sym__automatic_semicolon] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4937), - }, - [1132] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_object] = ACTIONS(4939), - [anon_sym_fun] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_this] = ACTIONS(4939), - [anon_sym_super] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [sym_label] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_null] = ACTIONS(4939), - [anon_sym_if] = ACTIONS(4939), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_when] = ACTIONS(4939), - [anon_sym_try] = ACTIONS(4939), - [anon_sym_throw] = ACTIONS(4939), - [anon_sym_return] = ACTIONS(4939), - [anon_sym_continue] = ACTIONS(4939), - [anon_sym_break] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_suspend] = ACTIONS(4939), - [anon_sym_sealed] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4939), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_value] = ACTIONS(4939), - [anon_sym_override] = ACTIONS(4939), - [anon_sym_lateinit] = ACTIONS(4939), - [anon_sym_public] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4939), - [anon_sym_internal] = ACTIONS(4939), - [anon_sym_protected] = ACTIONS(4939), - [anon_sym_tailrec] = ACTIONS(4939), - [anon_sym_operator] = ACTIONS(4939), - [anon_sym_infix] = ACTIONS(4939), - [anon_sym_inline] = ACTIONS(4939), - [anon_sym_external] = ACTIONS(4939), - [sym_property_modifier] = ACTIONS(4939), - [anon_sym_abstract] = ACTIONS(4939), - [anon_sym_final] = ACTIONS(4939), - [anon_sym_open] = ACTIONS(4939), - [anon_sym_vararg] = ACTIONS(4939), - [anon_sym_noinline] = ACTIONS(4939), - [anon_sym_crossinline] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4941), - [anon_sym_continue_AT] = ACTIONS(4941), - [anon_sym_break_AT] = ACTIONS(4941), - [sym_real_literal] = ACTIONS(4941), - [sym_integer_literal] = ACTIONS(4939), - [sym_hex_literal] = ACTIONS(4941), - [sym_bin_literal] = ACTIONS(4941), - [anon_sym_true] = ACTIONS(4939), - [anon_sym_false] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4941), - [sym__backtick_identifier] = ACTIONS(4941), - [sym__automatic_semicolon] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4941), - }, - [1133] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_object] = ACTIONS(4943), - [anon_sym_fun] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_this] = ACTIONS(4943), - [anon_sym_super] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [sym_label] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_null] = ACTIONS(4943), - [anon_sym_if] = ACTIONS(4943), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_when] = ACTIONS(4943), - [anon_sym_try] = ACTIONS(4943), - [anon_sym_throw] = ACTIONS(4943), - [anon_sym_return] = ACTIONS(4943), - [anon_sym_continue] = ACTIONS(4943), - [anon_sym_break] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_suspend] = ACTIONS(4943), - [anon_sym_sealed] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4943), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_value] = ACTIONS(4943), - [anon_sym_override] = ACTIONS(4943), - [anon_sym_lateinit] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_internal] = ACTIONS(4943), - [anon_sym_protected] = ACTIONS(4943), - [anon_sym_tailrec] = ACTIONS(4943), - [anon_sym_operator] = ACTIONS(4943), - [anon_sym_infix] = ACTIONS(4943), - [anon_sym_inline] = ACTIONS(4943), - [anon_sym_external] = ACTIONS(4943), - [sym_property_modifier] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_open] = ACTIONS(4943), - [anon_sym_vararg] = ACTIONS(4943), - [anon_sym_noinline] = ACTIONS(4943), - [anon_sym_crossinline] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4945), - [anon_sym_continue_AT] = ACTIONS(4945), - [anon_sym_break_AT] = ACTIONS(4945), - [sym_real_literal] = ACTIONS(4945), - [sym_integer_literal] = ACTIONS(4943), - [sym_hex_literal] = ACTIONS(4945), - [sym_bin_literal] = ACTIONS(4945), - [anon_sym_true] = ACTIONS(4943), - [anon_sym_false] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4945), - [sym__backtick_identifier] = ACTIONS(4945), - [sym__automatic_semicolon] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4945), - }, - [1134] = { - [sym__alpha_identifier] = ACTIONS(4947), - [anon_sym_AT] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_where] = ACTIONS(4947), - [anon_sym_object] = ACTIONS(4947), - [anon_sym_fun] = ACTIONS(4947), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_get] = ACTIONS(4947), - [anon_sym_set] = ACTIONS(4947), - [anon_sym_this] = ACTIONS(4947), - [anon_sym_super] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [sym_label] = ACTIONS(4947), - [anon_sym_in] = ACTIONS(4947), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_QMARK_COLON] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_null] = ACTIONS(4947), - [anon_sym_if] = ACTIONS(4947), - [anon_sym_else] = ACTIONS(4947), - [anon_sym_when] = ACTIONS(4947), - [anon_sym_try] = ACTIONS(4947), - [anon_sym_throw] = ACTIONS(4947), - [anon_sym_return] = ACTIONS(4947), - [anon_sym_continue] = ACTIONS(4947), - [anon_sym_break] = ACTIONS(4947), - [anon_sym_COLON_COLON] = ACTIONS(4949), - [anon_sym_PLUS_EQ] = ACTIONS(4949), - [anon_sym_DASH_EQ] = ACTIONS(4949), - [anon_sym_STAR_EQ] = ACTIONS(4949), - [anon_sym_SLASH_EQ] = ACTIONS(4949), - [anon_sym_PERCENT_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4947), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_BANGin] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4947), - [anon_sym_BANGis] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_as_QMARK] = ACTIONS(4949), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_BANG_BANG] = ACTIONS(4949), - [anon_sym_suspend] = ACTIONS(4947), - [anon_sym_sealed] = ACTIONS(4947), - [anon_sym_annotation] = ACTIONS(4947), - [anon_sym_data] = ACTIONS(4947), - [anon_sym_inner] = ACTIONS(4947), - [anon_sym_value] = ACTIONS(4947), - [anon_sym_override] = ACTIONS(4947), - [anon_sym_lateinit] = ACTIONS(4947), - [anon_sym_public] = ACTIONS(4947), - [anon_sym_private] = ACTIONS(4947), - [anon_sym_internal] = ACTIONS(4947), - [anon_sym_protected] = ACTIONS(4947), - [anon_sym_tailrec] = ACTIONS(4947), - [anon_sym_operator] = ACTIONS(4947), - [anon_sym_infix] = ACTIONS(4947), - [anon_sym_inline] = ACTIONS(4947), - [anon_sym_external] = ACTIONS(4947), - [sym_property_modifier] = ACTIONS(4947), - [anon_sym_abstract] = ACTIONS(4947), - [anon_sym_final] = ACTIONS(4947), - [anon_sym_open] = ACTIONS(4947), - [anon_sym_vararg] = ACTIONS(4947), - [anon_sym_noinline] = ACTIONS(4947), - [anon_sym_crossinline] = ACTIONS(4947), - [anon_sym_expect] = ACTIONS(4947), - [anon_sym_actual] = ACTIONS(4947), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4949), - [anon_sym_continue_AT] = ACTIONS(4949), - [anon_sym_break_AT] = ACTIONS(4949), - [sym_real_literal] = ACTIONS(4949), - [sym_integer_literal] = ACTIONS(4947), - [sym_hex_literal] = ACTIONS(4949), - [sym_bin_literal] = ACTIONS(4949), - [anon_sym_true] = ACTIONS(4947), - [anon_sym_false] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4949), - [sym__backtick_identifier] = ACTIONS(4949), - [sym__automatic_semicolon] = ACTIONS(4949), - [sym_safe_nav] = ACTIONS(4949), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4949), - }, - [1135] = { - [sym__alpha_identifier] = ACTIONS(4951), - [anon_sym_AT] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_as] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_where] = ACTIONS(4951), - [anon_sym_object] = ACTIONS(4951), - [anon_sym_fun] = ACTIONS(4951), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym_get] = ACTIONS(4951), - [anon_sym_set] = ACTIONS(4951), - [anon_sym_this] = ACTIONS(4951), - [anon_sym_super] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [sym_label] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4951), - [anon_sym_DOT_DOT] = ACTIONS(4953), - [anon_sym_QMARK_COLON] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_null] = ACTIONS(4951), - [anon_sym_if] = ACTIONS(4951), - [anon_sym_else] = ACTIONS(4951), - [anon_sym_when] = ACTIONS(4951), - [anon_sym_try] = ACTIONS(4951), - [anon_sym_throw] = ACTIONS(4951), - [anon_sym_return] = ACTIONS(4951), - [anon_sym_continue] = ACTIONS(4951), - [anon_sym_break] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [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(4951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_BANGin] = ACTIONS(4953), - [anon_sym_is] = ACTIONS(4951), - [anon_sym_BANGis] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_as_QMARK] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_BANG_BANG] = ACTIONS(4953), - [anon_sym_suspend] = ACTIONS(4951), - [anon_sym_sealed] = ACTIONS(4951), - [anon_sym_annotation] = ACTIONS(4951), - [anon_sym_data] = ACTIONS(4951), - [anon_sym_inner] = ACTIONS(4951), - [anon_sym_value] = ACTIONS(4951), - [anon_sym_override] = ACTIONS(4951), - [anon_sym_lateinit] = ACTIONS(4951), - [anon_sym_public] = ACTIONS(4951), - [anon_sym_private] = ACTIONS(4951), - [anon_sym_internal] = ACTIONS(4951), - [anon_sym_protected] = ACTIONS(4951), - [anon_sym_tailrec] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_infix] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym_external] = ACTIONS(4951), - [sym_property_modifier] = ACTIONS(4951), - [anon_sym_abstract] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_open] = ACTIONS(4951), - [anon_sym_vararg] = ACTIONS(4951), - [anon_sym_noinline] = ACTIONS(4951), - [anon_sym_crossinline] = ACTIONS(4951), - [anon_sym_expect] = ACTIONS(4951), - [anon_sym_actual] = ACTIONS(4951), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4953), - [anon_sym_continue_AT] = ACTIONS(4953), - [anon_sym_break_AT] = ACTIONS(4953), - [sym_real_literal] = ACTIONS(4953), - [sym_integer_literal] = ACTIONS(4951), - [sym_hex_literal] = ACTIONS(4953), - [sym_bin_literal] = ACTIONS(4953), - [anon_sym_true] = ACTIONS(4951), - [anon_sym_false] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4953), - [sym__backtick_identifier] = ACTIONS(4953), - [sym__automatic_semicolon] = ACTIONS(4953), - [sym_safe_nav] = ACTIONS(4953), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4953), - }, - [1136] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [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_DOT] = 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), - [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), - }, - [1137] = { - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), - }, - [1138] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(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_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_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), - [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), - }, - [1139] = { - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_object] = ACTIONS(4701), - [anon_sym_fun] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_this] = ACTIONS(4701), - [anon_sym_super] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [sym_label] = ACTIONS(4701), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_null] = ACTIONS(4701), - [anon_sym_if] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_when] = ACTIONS(4701), - [anon_sym_try] = ACTIONS(4701), - [anon_sym_throw] = ACTIONS(4701), - [anon_sym_return] = ACTIONS(4701), - [anon_sym_continue] = ACTIONS(4701), - [anon_sym_break] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_suspend] = ACTIONS(4701), - [anon_sym_sealed] = ACTIONS(4701), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_override] = ACTIONS(4701), - [anon_sym_lateinit] = ACTIONS(4701), - [anon_sym_public] = ACTIONS(4701), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_internal] = ACTIONS(4701), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_tailrec] = ACTIONS(4701), - [anon_sym_operator] = ACTIONS(4701), - [anon_sym_infix] = ACTIONS(4701), - [anon_sym_inline] = ACTIONS(4701), - [anon_sym_external] = ACTIONS(4701), - [sym_property_modifier] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_final] = ACTIONS(4701), - [anon_sym_open] = ACTIONS(4701), - [anon_sym_vararg] = ACTIONS(4701), - [anon_sym_noinline] = ACTIONS(4701), - [anon_sym_crossinline] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4703), - [anon_sym_continue_AT] = ACTIONS(4703), - [anon_sym_break_AT] = ACTIONS(4703), - [sym_real_literal] = ACTIONS(4703), - [sym_integer_literal] = ACTIONS(4701), - [sym_hex_literal] = ACTIONS(4703), - [sym_bin_literal] = ACTIONS(4703), - [anon_sym_true] = ACTIONS(4701), - [anon_sym_false] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4703), - [sym__backtick_identifier] = ACTIONS(4703), - [sym__automatic_semicolon] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4703), - }, - [1140] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_where] = ACTIONS(4963), - [anon_sym_object] = ACTIONS(4963), - [anon_sym_fun] = ACTIONS(4963), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym_get] = ACTIONS(4963), - [anon_sym_set] = ACTIONS(4963), - [anon_sym_this] = ACTIONS(4963), - [anon_sym_super] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [sym_label] = ACTIONS(4963), - [anon_sym_in] = ACTIONS(4963), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_QMARK_COLON] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_null] = ACTIONS(4963), - [anon_sym_if] = ACTIONS(4963), - [anon_sym_else] = ACTIONS(4963), - [anon_sym_when] = ACTIONS(4963), - [anon_sym_try] = ACTIONS(4963), - [anon_sym_throw] = ACTIONS(4963), - [anon_sym_return] = ACTIONS(4963), - [anon_sym_continue] = ACTIONS(4963), - [anon_sym_break] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4963), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_BANGin] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4963), - [anon_sym_BANGis] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_as_QMARK] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_BANG_BANG] = ACTIONS(4965), - [anon_sym_suspend] = ACTIONS(4963), - [anon_sym_sealed] = ACTIONS(4963), - [anon_sym_annotation] = ACTIONS(4963), - [anon_sym_data] = ACTIONS(4963), - [anon_sym_inner] = ACTIONS(4963), - [anon_sym_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), - [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), - }, - [1141] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_where] = ACTIONS(4967), - [anon_sym_object] = ACTIONS(4967), - [anon_sym_fun] = ACTIONS(4967), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4969), - [anon_sym_get] = ACTIONS(4967), - [anon_sym_set] = ACTIONS(4967), - [anon_sym_this] = ACTIONS(4967), - [anon_sym_super] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [sym_label] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_QMARK_COLON] = ACTIONS(4969), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_null] = ACTIONS(4967), - [anon_sym_if] = ACTIONS(4967), - [anon_sym_else] = ACTIONS(4967), - [anon_sym_when] = ACTIONS(4967), - [anon_sym_try] = ACTIONS(4967), - [anon_sym_throw] = ACTIONS(4967), - [anon_sym_return] = ACTIONS(4967), - [anon_sym_continue] = ACTIONS(4967), - [anon_sym_break] = ACTIONS(4967), - [anon_sym_COLON_COLON] = ACTIONS(4969), - [anon_sym_PLUS_EQ] = ACTIONS(4969), - [anon_sym_DASH_EQ] = ACTIONS(4969), - [anon_sym_STAR_EQ] = ACTIONS(4969), - [anon_sym_SLASH_EQ] = ACTIONS(4969), - [anon_sym_PERCENT_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_BANGin] = ACTIONS(4969), - [anon_sym_is] = ACTIONS(4967), - [anon_sym_BANGis] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_as_QMARK] = ACTIONS(4969), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_BANG_BANG] = ACTIONS(4969), - [anon_sym_suspend] = ACTIONS(4967), - [anon_sym_sealed] = ACTIONS(4967), - [anon_sym_annotation] = ACTIONS(4967), - [anon_sym_data] = ACTIONS(4967), - [anon_sym_inner] = ACTIONS(4967), - [anon_sym_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), - [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), - }, - [1142] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [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_DOT] = 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), - [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), - }, - [1143] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [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_DOT] = 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), - [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), - }, - [1144] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [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_DOT] = 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), - [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), - }, - [1145] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [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_DOT] = 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), - [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), - }, - [1146] = { - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_fun] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_this] = ACTIONS(4011), - [anon_sym_super] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [sym_label] = ACTIONS(4011), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_when] = ACTIONS(4011), - [anon_sym_try] = ACTIONS(4011), - [anon_sym_throw] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_suspend] = ACTIONS(4011), - [anon_sym_sealed] = ACTIONS(4011), - [anon_sym_annotation] = ACTIONS(4011), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_override] = ACTIONS(4011), - [anon_sym_lateinit] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4011), - [anon_sym_private] = ACTIONS(4011), - [anon_sym_internal] = ACTIONS(4011), - [anon_sym_protected] = ACTIONS(4011), - [anon_sym_tailrec] = ACTIONS(4011), - [anon_sym_operator] = ACTIONS(4011), - [anon_sym_infix] = ACTIONS(4011), - [anon_sym_inline] = ACTIONS(4011), - [anon_sym_external] = ACTIONS(4011), - [sym_property_modifier] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4011), - [anon_sym_final] = ACTIONS(4011), - [anon_sym_open] = ACTIONS(4011), - [anon_sym_vararg] = ACTIONS(4011), - [anon_sym_noinline] = ACTIONS(4011), - [anon_sym_crossinline] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4013), - [anon_sym_continue_AT] = ACTIONS(4013), - [anon_sym_break_AT] = ACTIONS(4013), - [sym_real_literal] = ACTIONS(4013), - [sym_integer_literal] = ACTIONS(4011), - [sym_hex_literal] = ACTIONS(4013), - [sym_bin_literal] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4011), - [anon_sym_false] = ACTIONS(4011), - [anon_sym_SQUOTE] = ACTIONS(4013), - [sym__backtick_identifier] = ACTIONS(4013), - [sym__automatic_semicolon] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4013), - }, - [1147] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [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_DOT] = 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), - [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), - }, - [1148] = { - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [1149] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [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_DOT] = 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), - [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), - }, - [1150] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_object] = ACTIONS(4995), - [anon_sym_fun] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_this] = ACTIONS(4995), - [anon_sym_super] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [sym_label] = ACTIONS(4995), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_null] = ACTIONS(4995), - [anon_sym_if] = ACTIONS(4995), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_try] = ACTIONS(4995), - [anon_sym_throw] = ACTIONS(4995), - [anon_sym_return] = ACTIONS(4995), - [anon_sym_continue] = ACTIONS(4995), - [anon_sym_break] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_suspend] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_annotation] = ACTIONS(4995), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_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), - [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), - }, - [1151] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_object] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_this] = ACTIONS(4999), - [anon_sym_super] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [sym_label] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_throw] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_continue] = ACTIONS(4999), - [anon_sym_break] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_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), - [anon_sym_return_AT] = ACTIONS(5001), - [anon_sym_continue_AT] = ACTIONS(5001), - [anon_sym_break_AT] = ACTIONS(5001), - [sym_real_literal] = ACTIONS(5001), - [sym_integer_literal] = ACTIONS(4999), - [sym_hex_literal] = ACTIONS(5001), - [sym_bin_literal] = ACTIONS(5001), - [anon_sym_true] = ACTIONS(4999), - [anon_sym_false] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(5001), - [sym__backtick_identifier] = ACTIONS(5001), - [sym__automatic_semicolon] = ACTIONS(5001), - [sym_safe_nav] = ACTIONS(5001), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5001), - }, - [1152] = { - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = 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), - [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), - }, - [1153] = { - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(4492), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_object] = ACTIONS(4490), - [anon_sym_fun] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_this] = ACTIONS(4490), - [anon_sym_super] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4490), - [anon_sym_if] = ACTIONS(4490), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_when] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4490), - [anon_sym_throw] = ACTIONS(4490), - [anon_sym_return] = ACTIONS(4490), - [anon_sym_continue] = ACTIONS(4490), - [anon_sym_break] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4492), - [anon_sym_continue_AT] = ACTIONS(4492), - [anon_sym_break_AT] = ACTIONS(4492), - [sym_real_literal] = ACTIONS(4492), - [sym_integer_literal] = ACTIONS(4490), - [sym_hex_literal] = ACTIONS(4492), - [sym_bin_literal] = ACTIONS(4492), - [anon_sym_true] = ACTIONS(4490), - [anon_sym_false] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4492), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4492), - }, - [1154] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_object] = ACTIONS(5003), - [anon_sym_fun] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_this] = ACTIONS(5003), - [anon_sym_super] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [sym_label] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_null] = ACTIONS(5003), - [anon_sym_if] = ACTIONS(5003), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_try] = ACTIONS(5003), - [anon_sym_throw] = ACTIONS(5003), - [anon_sym_return] = ACTIONS(5003), - [anon_sym_continue] = ACTIONS(5003), - [anon_sym_break] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_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), - [anon_sym_return_AT] = ACTIONS(5005), - [anon_sym_continue_AT] = ACTIONS(5005), - [anon_sym_break_AT] = ACTIONS(5005), - [sym_real_literal] = ACTIONS(5005), - [sym_integer_literal] = ACTIONS(5003), - [sym_hex_literal] = ACTIONS(5005), - [sym_bin_literal] = ACTIONS(5005), - [anon_sym_true] = ACTIONS(5003), - [anon_sym_false] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5005), - [sym__backtick_identifier] = ACTIONS(5005), - [sym__automatic_semicolon] = ACTIONS(5005), - [sym_safe_nav] = ACTIONS(5005), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5005), - }, - [1155] = { - [sym_getter] = STATE(9590), - [sym_setter] = STATE(9590), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9362), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_get] = ACTIONS(4843), - [anon_sym_set] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [1156] = { - [sym_function_body] = STATE(1191), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), - }, - [1157] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), - }, - [1158] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), - }, [1159] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_object] = ACTIONS(5009), - [anon_sym_fun] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_this] = ACTIONS(5009), - [anon_sym_super] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [sym_label] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_null] = ACTIONS(5009), - [anon_sym_if] = ACTIONS(5009), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_when] = ACTIONS(5009), - [anon_sym_try] = ACTIONS(5009), - [anon_sym_throw] = ACTIONS(5009), - [anon_sym_return] = ACTIONS(5009), - [anon_sym_continue] = ACTIONS(5009), - [anon_sym_break] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [anon_sym_PLUS_EQ] = ACTIONS(5011), - [anon_sym_DASH_EQ] = ACTIONS(5011), - [anon_sym_STAR_EQ] = ACTIONS(5011), - [anon_sym_SLASH_EQ] = ACTIONS(5011), - [anon_sym_PERCENT_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ] = ACTIONS(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_suspend] = ACTIONS(5009), - [anon_sym_sealed] = ACTIONS(5009), - [anon_sym_annotation] = ACTIONS(5009), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_value] = ACTIONS(5009), - [anon_sym_override] = ACTIONS(5009), - [anon_sym_lateinit] = ACTIONS(5009), - [anon_sym_public] = ACTIONS(5009), - [anon_sym_private] = ACTIONS(5009), - [anon_sym_internal] = ACTIONS(5009), - [anon_sym_protected] = ACTIONS(5009), - [anon_sym_tailrec] = ACTIONS(5009), - [anon_sym_operator] = ACTIONS(5009), - [anon_sym_infix] = ACTIONS(5009), - [anon_sym_inline] = ACTIONS(5009), - [anon_sym_external] = ACTIONS(5009), - [sym_property_modifier] = ACTIONS(5009), - [anon_sym_abstract] = ACTIONS(5009), - [anon_sym_final] = ACTIONS(5009), - [anon_sym_open] = ACTIONS(5009), - [anon_sym_vararg] = ACTIONS(5009), - [anon_sym_noinline] = ACTIONS(5009), - [anon_sym_crossinline] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5011), - [anon_sym_continue_AT] = ACTIONS(5011), - [anon_sym_break_AT] = ACTIONS(5011), - [sym_real_literal] = ACTIONS(5011), - [sym_integer_literal] = ACTIONS(5009), - [sym_hex_literal] = ACTIONS(5011), - [sym_bin_literal] = ACTIONS(5011), - [anon_sym_true] = ACTIONS(5009), - [anon_sym_false] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5011), - [sym__backtick_identifier] = ACTIONS(5011), - [sym__automatic_semicolon] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5011), + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_object] = ACTIONS(5159), + [anon_sym_fun] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [sym_label] = ACTIONS(5159), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_if] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_try] = ACTIONS(5159), + [anon_sym_throw] = ACTIONS(5159), + [anon_sym_return] = ACTIONS(5159), + [anon_sym_continue] = ACTIONS(5159), + [anon_sym_break] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5159), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5161), + [anon_sym_continue_AT] = ACTIONS(5161), + [anon_sym_break_AT] = ACTIONS(5161), + [anon_sym_this_AT] = ACTIONS(5161), + [anon_sym_super_AT] = ACTIONS(5161), + [sym_real_literal] = ACTIONS(5161), + [sym_integer_literal] = ACTIONS(5159), + [sym_hex_literal] = ACTIONS(5161), + [sym_bin_literal] = ACTIONS(5161), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5161), }, [1160] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_where] = ACTIONS(5013), - [anon_sym_object] = ACTIONS(5013), - [anon_sym_fun] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_get] = ACTIONS(5013), - [anon_sym_set] = ACTIONS(5013), - [anon_sym_this] = ACTIONS(5013), - [anon_sym_super] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [sym_label] = ACTIONS(5013), - [anon_sym_in] = ACTIONS(5013), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_QMARK_COLON] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5013), - [anon_sym_if] = ACTIONS(5013), - [anon_sym_else] = ACTIONS(5013), - [anon_sym_when] = ACTIONS(5013), - [anon_sym_try] = ACTIONS(5013), - [anon_sym_throw] = ACTIONS(5013), - [anon_sym_return] = ACTIONS(5013), - [anon_sym_continue] = ACTIONS(5013), - [anon_sym_break] = ACTIONS(5013), - [anon_sym_COLON_COLON] = ACTIONS(5015), - [anon_sym_PLUS_EQ] = ACTIONS(5015), - [anon_sym_DASH_EQ] = ACTIONS(5015), - [anon_sym_STAR_EQ] = ACTIONS(5015), - [anon_sym_SLASH_EQ] = ACTIONS(5015), - [anon_sym_PERCENT_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_BANGin] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5013), - [anon_sym_BANGis] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_as_QMARK] = ACTIONS(5015), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_BANG_BANG] = ACTIONS(5015), - [anon_sym_suspend] = ACTIONS(5013), - [anon_sym_sealed] = ACTIONS(5013), - [anon_sym_annotation] = ACTIONS(5013), - [anon_sym_data] = ACTIONS(5013), - [anon_sym_inner] = ACTIONS(5013), - [anon_sym_value] = ACTIONS(5013), - [anon_sym_override] = ACTIONS(5013), - [anon_sym_lateinit] = ACTIONS(5013), - [anon_sym_public] = ACTIONS(5013), - [anon_sym_private] = ACTIONS(5013), - [anon_sym_internal] = ACTIONS(5013), - [anon_sym_protected] = ACTIONS(5013), - [anon_sym_tailrec] = ACTIONS(5013), - [anon_sym_operator] = ACTIONS(5013), - [anon_sym_infix] = ACTIONS(5013), - [anon_sym_inline] = ACTIONS(5013), - [anon_sym_external] = ACTIONS(5013), - [sym_property_modifier] = ACTIONS(5013), - [anon_sym_abstract] = ACTIONS(5013), - [anon_sym_final] = ACTIONS(5013), - [anon_sym_open] = ACTIONS(5013), - [anon_sym_vararg] = ACTIONS(5013), - [anon_sym_noinline] = ACTIONS(5013), - [anon_sym_crossinline] = ACTIONS(5013), - [anon_sym_expect] = ACTIONS(5013), - [anon_sym_actual] = ACTIONS(5013), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5015), - [anon_sym_continue_AT] = ACTIONS(5015), - [anon_sym_break_AT] = ACTIONS(5015), - [sym_real_literal] = ACTIONS(5015), - [sym_integer_literal] = ACTIONS(5013), - [sym_hex_literal] = ACTIONS(5015), - [sym_bin_literal] = ACTIONS(5015), - [anon_sym_true] = ACTIONS(5013), - [anon_sym_false] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5015), - [sym__backtick_identifier] = ACTIONS(5015), - [sym__automatic_semicolon] = ACTIONS(5015), - [sym_safe_nav] = ACTIONS(5015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5015), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(1802), + [anon_sym_sealed] = ACTIONS(1802), + [anon_sym_annotation] = ACTIONS(1802), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_lateinit] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_internal] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_tailrec] = ACTIONS(1802), + [anon_sym_operator] = ACTIONS(1802), + [anon_sym_infix] = ACTIONS(1802), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_external] = ACTIONS(1802), + [sym_property_modifier] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_final] = ACTIONS(1802), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_vararg] = ACTIONS(1802), + [anon_sym_noinline] = ACTIONS(1802), + [anon_sym_crossinline] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [1161] = { - [sym__alpha_identifier] = ACTIONS(5017), - [anon_sym_AT] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_where] = ACTIONS(5017), - [anon_sym_object] = ACTIONS(5017), - [anon_sym_fun] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_get] = ACTIONS(5017), - [anon_sym_set] = ACTIONS(5017), - [anon_sym_this] = ACTIONS(5017), - [anon_sym_super] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [sym_label] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5017), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_QMARK_COLON] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_null] = ACTIONS(5017), - [anon_sym_if] = ACTIONS(5017), - [anon_sym_else] = ACTIONS(5017), - [anon_sym_when] = ACTIONS(5017), - [anon_sym_try] = ACTIONS(5017), - [anon_sym_throw] = ACTIONS(5017), - [anon_sym_return] = ACTIONS(5017), - [anon_sym_continue] = ACTIONS(5017), - [anon_sym_break] = ACTIONS(5017), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_PLUS_EQ] = ACTIONS(5019), - [anon_sym_DASH_EQ] = ACTIONS(5019), - [anon_sym_STAR_EQ] = ACTIONS(5019), - [anon_sym_SLASH_EQ] = ACTIONS(5019), - [anon_sym_PERCENT_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_BANGin] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5017), - [anon_sym_BANGis] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5017), - [anon_sym_as_QMARK] = ACTIONS(5019), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_BANG_BANG] = ACTIONS(5019), - [anon_sym_suspend] = ACTIONS(5017), - [anon_sym_sealed] = ACTIONS(5017), - [anon_sym_annotation] = ACTIONS(5017), - [anon_sym_data] = ACTIONS(5017), - [anon_sym_inner] = ACTIONS(5017), - [anon_sym_value] = ACTIONS(5017), - [anon_sym_override] = ACTIONS(5017), - [anon_sym_lateinit] = ACTIONS(5017), - [anon_sym_public] = ACTIONS(5017), - [anon_sym_private] = ACTIONS(5017), - [anon_sym_internal] = ACTIONS(5017), - [anon_sym_protected] = ACTIONS(5017), - [anon_sym_tailrec] = ACTIONS(5017), - [anon_sym_operator] = ACTIONS(5017), - [anon_sym_infix] = ACTIONS(5017), - [anon_sym_inline] = ACTIONS(5017), - [anon_sym_external] = ACTIONS(5017), - [sym_property_modifier] = ACTIONS(5017), - [anon_sym_abstract] = ACTIONS(5017), - [anon_sym_final] = ACTIONS(5017), - [anon_sym_open] = ACTIONS(5017), - [anon_sym_vararg] = ACTIONS(5017), - [anon_sym_noinline] = ACTIONS(5017), - [anon_sym_crossinline] = ACTIONS(5017), - [anon_sym_expect] = ACTIONS(5017), - [anon_sym_actual] = ACTIONS(5017), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5019), - [anon_sym_continue_AT] = ACTIONS(5019), - [anon_sym_break_AT] = ACTIONS(5019), - [sym_real_literal] = ACTIONS(5019), - [sym_integer_literal] = ACTIONS(5017), - [sym_hex_literal] = ACTIONS(5019), - [sym_bin_literal] = ACTIONS(5019), - [anon_sym_true] = ACTIONS(5017), - [anon_sym_false] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5019), - [sym__backtick_identifier] = ACTIONS(5019), - [sym__automatic_semicolon] = ACTIONS(5019), - [sym_safe_nav] = ACTIONS(5019), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5019), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, [1162] = { - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(3340), - [anon_sym_sealed] = ACTIONS(3340), - [anon_sym_annotation] = ACTIONS(3340), - [anon_sym_data] = ACTIONS(3340), - [anon_sym_inner] = ACTIONS(3340), - [anon_sym_value] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_lateinit] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_internal] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_tailrec] = ACTIONS(3340), - [anon_sym_operator] = ACTIONS(3340), - [anon_sym_infix] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym_external] = ACTIONS(3340), - [sym_property_modifier] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_final] = ACTIONS(3340), - [anon_sym_open] = ACTIONS(3340), - [anon_sym_vararg] = ACTIONS(3340), - [anon_sym_noinline] = ACTIONS(3340), - [anon_sym_crossinline] = ACTIONS(3340), - [anon_sym_expect] = ACTIONS(3340), - [anon_sym_actual] = ACTIONS(3340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_object] = ACTIONS(5163), + [anon_sym_fun] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_this] = ACTIONS(5163), + [anon_sym_super] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_null] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_try] = ACTIONS(5163), + [anon_sym_throw] = ACTIONS(5163), + [anon_sym_return] = ACTIONS(5163), + [anon_sym_continue] = ACTIONS(5163), + [anon_sym_break] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5165), + [anon_sym_continue_AT] = ACTIONS(5165), + [anon_sym_break_AT] = ACTIONS(5165), + [anon_sym_this_AT] = ACTIONS(5165), + [anon_sym_super_AT] = ACTIONS(5165), + [sym_real_literal] = ACTIONS(5165), + [sym_integer_literal] = ACTIONS(5163), + [sym_hex_literal] = ACTIONS(5165), + [sym_bin_literal] = ACTIONS(5165), + [anon_sym_true] = ACTIONS(5163), + [anon_sym_false] = ACTIONS(5163), + [anon_sym_SQUOTE] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5165), }, [1163] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_object] = ACTIONS(5021), - [anon_sym_fun] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_this] = ACTIONS(5021), - [anon_sym_super] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [sym_label] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_null] = ACTIONS(5021), - [anon_sym_if] = ACTIONS(5021), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_when] = ACTIONS(5021), - [anon_sym_try] = ACTIONS(5021), - [anon_sym_throw] = ACTIONS(5021), - [anon_sym_return] = ACTIONS(5021), - [anon_sym_continue] = ACTIONS(5021), - [anon_sym_break] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_suspend] = ACTIONS(5021), - [anon_sym_sealed] = ACTIONS(5021), - [anon_sym_annotation] = ACTIONS(5021), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_value] = ACTIONS(5021), - [anon_sym_override] = ACTIONS(5021), - [anon_sym_lateinit] = ACTIONS(5021), - [anon_sym_public] = ACTIONS(5021), - [anon_sym_private] = ACTIONS(5021), - [anon_sym_internal] = ACTIONS(5021), - [anon_sym_protected] = ACTIONS(5021), - [anon_sym_tailrec] = ACTIONS(5021), - [anon_sym_operator] = ACTIONS(5021), - [anon_sym_infix] = ACTIONS(5021), - [anon_sym_inline] = ACTIONS(5021), - [anon_sym_external] = ACTIONS(5021), - [sym_property_modifier] = ACTIONS(5021), - [anon_sym_abstract] = ACTIONS(5021), - [anon_sym_final] = ACTIONS(5021), - [anon_sym_open] = ACTIONS(5021), - [anon_sym_vararg] = ACTIONS(5021), - [anon_sym_noinline] = ACTIONS(5021), - [anon_sym_crossinline] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5023), - [anon_sym_continue_AT] = ACTIONS(5023), - [anon_sym_break_AT] = ACTIONS(5023), - [sym_real_literal] = ACTIONS(5023), - [sym_integer_literal] = ACTIONS(5021), - [sym_hex_literal] = ACTIONS(5023), - [sym_bin_literal] = ACTIONS(5023), - [anon_sym_true] = ACTIONS(5021), - [anon_sym_false] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5023), - [sym__backtick_identifier] = ACTIONS(5023), - [sym__automatic_semicolon] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5023), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(1814), + [anon_sym_sealed] = ACTIONS(1814), + [anon_sym_annotation] = ACTIONS(1814), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_lateinit] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_internal] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_tailrec] = ACTIONS(1814), + [anon_sym_operator] = ACTIONS(1814), + [anon_sym_infix] = ACTIONS(1814), + [anon_sym_inline] = ACTIONS(1814), + [anon_sym_external] = ACTIONS(1814), + [sym_property_modifier] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_final] = ACTIONS(1814), + [anon_sym_open] = ACTIONS(1814), + [anon_sym_vararg] = ACTIONS(1814), + [anon_sym_noinline] = ACTIONS(1814), + [anon_sym_crossinline] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, [1164] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_object] = ACTIONS(5025), - [anon_sym_fun] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_this] = ACTIONS(5025), - [anon_sym_super] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [sym_label] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_null] = ACTIONS(5025), - [anon_sym_if] = ACTIONS(5025), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_when] = ACTIONS(5025), - [anon_sym_try] = ACTIONS(5025), - [anon_sym_throw] = ACTIONS(5025), - [anon_sym_return] = ACTIONS(5025), - [anon_sym_continue] = ACTIONS(5025), - [anon_sym_break] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_suspend] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_annotation] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_value] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_lateinit] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_tailrec] = ACTIONS(5025), - [anon_sym_operator] = ACTIONS(5025), - [anon_sym_infix] = ACTIONS(5025), - [anon_sym_inline] = ACTIONS(5025), - [anon_sym_external] = ACTIONS(5025), - [sym_property_modifier] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_final] = ACTIONS(5025), - [anon_sym_open] = ACTIONS(5025), - [anon_sym_vararg] = ACTIONS(5025), - [anon_sym_noinline] = ACTIONS(5025), - [anon_sym_crossinline] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5027), - [anon_sym_continue_AT] = ACTIONS(5027), - [anon_sym_break_AT] = ACTIONS(5027), - [sym_real_literal] = ACTIONS(5027), - [sym_integer_literal] = ACTIONS(5025), - [sym_hex_literal] = ACTIONS(5027), - [sym_bin_literal] = ACTIONS(5027), - [anon_sym_true] = ACTIONS(5025), - [anon_sym_false] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5027), - [sym__backtick_identifier] = ACTIONS(5027), - [sym__automatic_semicolon] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5027), + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_object] = ACTIONS(5167), + [anon_sym_fun] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_this] = ACTIONS(5167), + [anon_sym_super] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(5167), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5167), + [anon_sym_if] = ACTIONS(5167), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_when] = ACTIONS(5167), + [anon_sym_try] = ACTIONS(5167), + [anon_sym_throw] = ACTIONS(5167), + [anon_sym_return] = ACTIONS(5167), + [anon_sym_continue] = ACTIONS(5167), + [anon_sym_break] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5167), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_suspend] = ACTIONS(5167), + [anon_sym_sealed] = ACTIONS(5167), + [anon_sym_annotation] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_lateinit] = ACTIONS(5167), + [anon_sym_public] = ACTIONS(5167), + [anon_sym_private] = ACTIONS(5167), + [anon_sym_internal] = ACTIONS(5167), + [anon_sym_protected] = ACTIONS(5167), + [anon_sym_tailrec] = ACTIONS(5167), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_infix] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym_external] = ACTIONS(5167), + [sym_property_modifier] = ACTIONS(5167), + [anon_sym_abstract] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_open] = ACTIONS(5167), + [anon_sym_vararg] = ACTIONS(5167), + [anon_sym_noinline] = ACTIONS(5167), + [anon_sym_crossinline] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5169), + [anon_sym_continue_AT] = ACTIONS(5169), + [anon_sym_break_AT] = ACTIONS(5169), + [anon_sym_this_AT] = ACTIONS(5169), + [anon_sym_super_AT] = ACTIONS(5169), + [sym_real_literal] = ACTIONS(5169), + [sym_integer_literal] = ACTIONS(5167), + [sym_hex_literal] = ACTIONS(5169), + [sym_bin_literal] = ACTIONS(5169), + [anon_sym_true] = ACTIONS(5167), + [anon_sym_false] = ACTIONS(5167), + [anon_sym_SQUOTE] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(5169), + [sym__automatic_semicolon] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5169), }, [1165] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_as] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_where] = ACTIONS(5029), - [anon_sym_object] = ACTIONS(5029), - [anon_sym_fun] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_get] = ACTIONS(5029), - [anon_sym_set] = ACTIONS(5029), - [anon_sym_this] = ACTIONS(5029), - [anon_sym_super] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [sym_label] = ACTIONS(5029), - [anon_sym_in] = ACTIONS(5029), - [anon_sym_DOT_DOT] = ACTIONS(5031), - [anon_sym_QMARK_COLON] = ACTIONS(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_null] = ACTIONS(5029), - [anon_sym_if] = ACTIONS(5029), - [anon_sym_else] = ACTIONS(5029), - [anon_sym_when] = ACTIONS(5029), - [anon_sym_try] = ACTIONS(5029), - [anon_sym_throw] = ACTIONS(5029), - [anon_sym_return] = ACTIONS(5029), - [anon_sym_continue] = ACTIONS(5029), - [anon_sym_break] = ACTIONS(5029), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ] = ACTIONS(5029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), - [anon_sym_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_EQ] = ACTIONS(5031), - [anon_sym_BANGin] = ACTIONS(5031), - [anon_sym_is] = ACTIONS(5029), - [anon_sym_BANGis] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_PERCENT] = ACTIONS(5029), - [anon_sym_as_QMARK] = ACTIONS(5031), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_BANG_BANG] = ACTIONS(5031), - [anon_sym_suspend] = ACTIONS(5029), - [anon_sym_sealed] = ACTIONS(5029), - [anon_sym_annotation] = ACTIONS(5029), - [anon_sym_data] = ACTIONS(5029), - [anon_sym_inner] = ACTIONS(5029), - [anon_sym_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), - [sym_real_literal] = ACTIONS(5031), - [sym_integer_literal] = ACTIONS(5029), - [sym_hex_literal] = ACTIONS(5031), - [sym_bin_literal] = ACTIONS(5031), - [anon_sym_true] = ACTIONS(5029), - [anon_sym_false] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5031), - [sym__backtick_identifier] = ACTIONS(5031), - [sym__automatic_semicolon] = ACTIONS(5031), - [sym_safe_nav] = ACTIONS(5031), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5031), + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_object] = ACTIONS(5171), + [anon_sym_fun] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(5171), + [anon_sym_set] = ACTIONS(5171), + [anon_sym_this] = ACTIONS(5171), + [anon_sym_super] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [sym_label] = ACTIONS(5171), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5173), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_if] = ACTIONS(5171), + [anon_sym_else] = ACTIONS(5171), + [anon_sym_when] = ACTIONS(5171), + [anon_sym_try] = ACTIONS(5171), + [anon_sym_throw] = ACTIONS(5171), + [anon_sym_return] = ACTIONS(5171), + [anon_sym_continue] = ACTIONS(5171), + [anon_sym_break] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_PLUS_EQ] = ACTIONS(5173), + [anon_sym_DASH_EQ] = ACTIONS(5173), + [anon_sym_STAR_EQ] = ACTIONS(5173), + [anon_sym_SLASH_EQ] = ACTIONS(5173), + [anon_sym_PERCENT_EQ] = ACTIONS(5173), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), + [anon_sym_LT_EQ] = ACTIONS(5173), + [anon_sym_GT_EQ] = ACTIONS(5173), + [anon_sym_BANGin] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_BANGis] = ACTIONS(5173), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_as_QMARK] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5173), + [anon_sym_DASH_DASH] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5171), + [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_suspend] = ACTIONS(5171), + [anon_sym_sealed] = ACTIONS(5171), + [anon_sym_annotation] = ACTIONS(5171), + [anon_sym_data] = ACTIONS(5171), + [anon_sym_inner] = ACTIONS(5171), + [anon_sym_value] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_lateinit] = ACTIONS(5171), + [anon_sym_public] = ACTIONS(5171), + [anon_sym_private] = ACTIONS(5171), + [anon_sym_internal] = ACTIONS(5171), + [anon_sym_protected] = ACTIONS(5171), + [anon_sym_tailrec] = ACTIONS(5171), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_infix] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym_external] = ACTIONS(5171), + [sym_property_modifier] = ACTIONS(5171), + [anon_sym_abstract] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_open] = ACTIONS(5171), + [anon_sym_vararg] = ACTIONS(5171), + [anon_sym_noinline] = ACTIONS(5171), + [anon_sym_crossinline] = ACTIONS(5171), + [anon_sym_expect] = ACTIONS(5171), + [anon_sym_actual] = ACTIONS(5171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5173), + [anon_sym_continue_AT] = ACTIONS(5173), + [anon_sym_break_AT] = ACTIONS(5173), + [anon_sym_this_AT] = ACTIONS(5173), + [anon_sym_super_AT] = ACTIONS(5173), + [sym_real_literal] = ACTIONS(5173), + [sym_integer_literal] = ACTIONS(5171), + [sym_hex_literal] = ACTIONS(5173), + [sym_bin_literal] = ACTIONS(5173), + [anon_sym_true] = ACTIONS(5171), + [anon_sym_false] = ACTIONS(5171), + [anon_sym_SQUOTE] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(5173), + [sym__automatic_semicolon] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5173), }, [1166] = { - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(4512), - [anon_sym_LBRACE] = ACTIONS(4514), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_object] = ACTIONS(5175), + [anon_sym_fun] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_this] = ACTIONS(5175), + [anon_sym_super] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5175), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(5175), + [anon_sym_if] = ACTIONS(5175), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_throw] = ACTIONS(5175), + [anon_sym_return] = ACTIONS(5175), + [anon_sym_continue] = ACTIONS(5175), + [anon_sym_break] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5175), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5177), + [anon_sym_continue_AT] = ACTIONS(5177), + [anon_sym_break_AT] = ACTIONS(5177), + [anon_sym_this_AT] = ACTIONS(5177), + [anon_sym_super_AT] = ACTIONS(5177), + [sym_real_literal] = ACTIONS(5177), + [sym_integer_literal] = ACTIONS(5175), + [sym_hex_literal] = ACTIONS(5177), + [sym_bin_literal] = ACTIONS(5177), + [anon_sym_true] = ACTIONS(5175), + [anon_sym_false] = ACTIONS(5175), + [anon_sym_SQUOTE] = ACTIONS(5177), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5177), }, [1167] = { - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_object] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_this] = ACTIONS(4508), - [anon_sym_super] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_throw] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4510), - [anon_sym_continue_AT] = ACTIONS(4510), - [anon_sym_break_AT] = ACTIONS(4510), - [sym_real_literal] = ACTIONS(4510), - [sym_integer_literal] = ACTIONS(4508), - [sym_hex_literal] = ACTIONS(4510), - [sym_bin_literal] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_SQUOTE] = ACTIONS(4510), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4510), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [1168] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_object] = ACTIONS(5033), - [anon_sym_fun] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_this] = ACTIONS(5033), - [anon_sym_super] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [sym_label] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_null] = ACTIONS(5033), - [anon_sym_if] = ACTIONS(5033), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_when] = ACTIONS(5033), - [anon_sym_try] = ACTIONS(5033), - [anon_sym_throw] = ACTIONS(5033), - [anon_sym_return] = ACTIONS(5033), - [anon_sym_continue] = ACTIONS(5033), - [anon_sym_break] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_suspend] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_annotation] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_object] = ACTIONS(5179), + [anon_sym_fun] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_this] = ACTIONS(5179), + [anon_sym_super] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [sym_label] = ACTIONS(5179), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_null] = ACTIONS(5179), + [anon_sym_if] = ACTIONS(5179), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_throw] = ACTIONS(5179), + [anon_sym_return] = ACTIONS(5179), + [anon_sym_continue] = ACTIONS(5179), + [anon_sym_break] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5179), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5181), + [anon_sym_continue_AT] = ACTIONS(5181), + [anon_sym_break_AT] = ACTIONS(5181), + [anon_sym_this_AT] = ACTIONS(5181), + [anon_sym_super_AT] = ACTIONS(5181), + [sym_real_literal] = ACTIONS(5181), + [sym_integer_literal] = ACTIONS(5179), + [sym_hex_literal] = ACTIONS(5181), + [sym_bin_literal] = ACTIONS(5181), + [anon_sym_true] = ACTIONS(5179), + [anon_sym_false] = ACTIONS(5179), + [anon_sym_SQUOTE] = ACTIONS(5181), + [sym__backtick_identifier] = ACTIONS(5181), + [sym__automatic_semicolon] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5181), }, [1169] = { - [sym__alpha_identifier] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(3039), - [anon_sym_set] = ACTIONS(3039), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [sym_label] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3041), - [anon_sym_QMARK_COLON] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_as_QMARK] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(3041), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(3039), - [anon_sym_inner] = ACTIONS(3039), - [anon_sym_value] = ACTIONS(3039), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(3039), - [anon_sym_actual] = ACTIONS(3039), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(3041), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3041), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_object] = ACTIONS(5183), + [anon_sym_fun] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_this] = ACTIONS(5183), + [anon_sym_super] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [sym_label] = ACTIONS(5183), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_null] = ACTIONS(5183), + [anon_sym_if] = ACTIONS(5183), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_try] = ACTIONS(5183), + [anon_sym_throw] = ACTIONS(5183), + [anon_sym_return] = ACTIONS(5183), + [anon_sym_continue] = ACTIONS(5183), + [anon_sym_break] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5183), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5185), + [anon_sym_continue_AT] = ACTIONS(5185), + [anon_sym_break_AT] = ACTIONS(5185), + [anon_sym_this_AT] = ACTIONS(5185), + [anon_sym_super_AT] = ACTIONS(5185), + [sym_real_literal] = ACTIONS(5185), + [sym_integer_literal] = ACTIONS(5183), + [sym_hex_literal] = ACTIONS(5185), + [sym_bin_literal] = ACTIONS(5185), + [anon_sym_true] = ACTIONS(5183), + [anon_sym_false] = ACTIONS(5183), + [anon_sym_SQUOTE] = ACTIONS(5185), + [sym__backtick_identifier] = ACTIONS(5185), + [sym__automatic_semicolon] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5185), }, [1170] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_object] = ACTIONS(5037), - [anon_sym_fun] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_this] = ACTIONS(5037), - [anon_sym_super] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [sym_label] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(5037), - [anon_sym_if] = ACTIONS(5037), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_when] = ACTIONS(5037), - [anon_sym_try] = ACTIONS(5037), - [anon_sym_throw] = ACTIONS(5037), - [anon_sym_return] = ACTIONS(5037), - [anon_sym_continue] = ACTIONS(5037), - [anon_sym_break] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_suspend] = ACTIONS(5037), - [anon_sym_sealed] = ACTIONS(5037), - [anon_sym_annotation] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_object] = ACTIONS(5187), + [anon_sym_fun] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_this] = ACTIONS(5187), + [anon_sym_super] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [sym_label] = ACTIONS(5187), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_null] = ACTIONS(5187), + [anon_sym_if] = ACTIONS(5187), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_try] = ACTIONS(5187), + [anon_sym_throw] = ACTIONS(5187), + [anon_sym_return] = ACTIONS(5187), + [anon_sym_continue] = ACTIONS(5187), + [anon_sym_break] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5187), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5189), + [anon_sym_continue_AT] = ACTIONS(5189), + [anon_sym_break_AT] = ACTIONS(5189), + [anon_sym_this_AT] = ACTIONS(5189), + [anon_sym_super_AT] = ACTIONS(5189), + [sym_real_literal] = ACTIONS(5189), + [sym_integer_literal] = ACTIONS(5187), + [sym_hex_literal] = ACTIONS(5189), + [sym_bin_literal] = ACTIONS(5189), + [anon_sym_true] = ACTIONS(5187), + [anon_sym_false] = ACTIONS(5187), + [anon_sym_SQUOTE] = ACTIONS(5189), + [sym__backtick_identifier] = ACTIONS(5189), + [sym__automatic_semicolon] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5189), }, [1171] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_object] = ACTIONS(5041), - [anon_sym_fun] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_this] = ACTIONS(5041), - [anon_sym_super] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [sym_label] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(5041), - [anon_sym_if] = ACTIONS(5041), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_when] = ACTIONS(5041), - [anon_sym_try] = ACTIONS(5041), - [anon_sym_throw] = ACTIONS(5041), - [anon_sym_return] = ACTIONS(5041), - [anon_sym_continue] = ACTIONS(5041), - [anon_sym_break] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_suspend] = ACTIONS(5041), - [anon_sym_sealed] = ACTIONS(5041), - [anon_sym_annotation] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), }, [1172] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_when] = ACTIONS(5045), - [anon_sym_try] = ACTIONS(5045), - [anon_sym_throw] = ACTIONS(5045), - [anon_sym_return] = ACTIONS(5045), - [anon_sym_continue] = ACTIONS(5045), - [anon_sym_break] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_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), - [sym_real_literal] = ACTIONS(5047), - [sym_integer_literal] = ACTIONS(5045), - [sym_hex_literal] = ACTIONS(5047), - [sym_bin_literal] = ACTIONS(5047), - [anon_sym_true] = ACTIONS(5045), - [anon_sym_false] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5047), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), }, [1173] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_object] = ACTIONS(5049), - [anon_sym_fun] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_this] = ACTIONS(5049), - [anon_sym_super] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), - [anon_sym_if] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_when] = ACTIONS(5049), - [anon_sym_try] = ACTIONS(5049), - [anon_sym_throw] = ACTIONS(5049), - [anon_sym_return] = ACTIONS(5049), - [anon_sym_continue] = ACTIONS(5049), - [anon_sym_break] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5051), - [anon_sym_continue_AT] = ACTIONS(5051), - [anon_sym_break_AT] = ACTIONS(5051), - [sym_real_literal] = ACTIONS(5051), - [sym_integer_literal] = ACTIONS(5049), - [sym_hex_literal] = ACTIONS(5051), - [sym_bin_literal] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5049), - [anon_sym_false] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5051), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5051), + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_object] = ACTIONS(5191), + [anon_sym_fun] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_this] = ACTIONS(5191), + [anon_sym_super] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [sym_label] = ACTIONS(5191), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_null] = ACTIONS(5191), + [anon_sym_if] = ACTIONS(5191), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_when] = ACTIONS(5191), + [anon_sym_try] = ACTIONS(5191), + [anon_sym_throw] = ACTIONS(5191), + [anon_sym_return] = ACTIONS(5191), + [anon_sym_continue] = ACTIONS(5191), + [anon_sym_break] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5191), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_suspend] = ACTIONS(5191), + [anon_sym_sealed] = ACTIONS(5191), + [anon_sym_annotation] = ACTIONS(5191), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_override] = ACTIONS(5191), + [anon_sym_lateinit] = ACTIONS(5191), + [anon_sym_public] = ACTIONS(5191), + [anon_sym_private] = ACTIONS(5191), + [anon_sym_internal] = ACTIONS(5191), + [anon_sym_protected] = ACTIONS(5191), + [anon_sym_tailrec] = ACTIONS(5191), + [anon_sym_operator] = ACTIONS(5191), + [anon_sym_infix] = ACTIONS(5191), + [anon_sym_inline] = ACTIONS(5191), + [anon_sym_external] = ACTIONS(5191), + [sym_property_modifier] = ACTIONS(5191), + [anon_sym_abstract] = ACTIONS(5191), + [anon_sym_final] = ACTIONS(5191), + [anon_sym_open] = ACTIONS(5191), + [anon_sym_vararg] = ACTIONS(5191), + [anon_sym_noinline] = ACTIONS(5191), + [anon_sym_crossinline] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5193), + [anon_sym_continue_AT] = ACTIONS(5193), + [anon_sym_break_AT] = ACTIONS(5193), + [anon_sym_this_AT] = ACTIONS(5193), + [anon_sym_super_AT] = ACTIONS(5193), + [sym_real_literal] = ACTIONS(5193), + [sym_integer_literal] = ACTIONS(5191), + [sym_hex_literal] = ACTIONS(5193), + [sym_bin_literal] = ACTIONS(5193), + [anon_sym_true] = ACTIONS(5191), + [anon_sym_false] = ACTIONS(5191), + [anon_sym_SQUOTE] = ACTIONS(5193), + [sym__backtick_identifier] = ACTIONS(5193), + [sym__automatic_semicolon] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5193), }, [1174] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), }, [1175] = { - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [1176] = { - [sym__alpha_identifier] = ACTIONS(5053), - [anon_sym_AT] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [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_DOT] = 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), - [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), + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_object] = ACTIONS(5195), + [anon_sym_fun] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_this] = ACTIONS(5195), + [anon_sym_super] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [sym_label] = ACTIONS(5195), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_null] = ACTIONS(5195), + [anon_sym_if] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_when] = ACTIONS(5195), + [anon_sym_try] = ACTIONS(5195), + [anon_sym_throw] = ACTIONS(5195), + [anon_sym_return] = ACTIONS(5195), + [anon_sym_continue] = ACTIONS(5195), + [anon_sym_break] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5195), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_suspend] = ACTIONS(5195), + [anon_sym_sealed] = ACTIONS(5195), + [anon_sym_annotation] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_lateinit] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_internal] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_tailrec] = ACTIONS(5195), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_infix] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_external] = ACTIONS(5195), + [sym_property_modifier] = ACTIONS(5195), + [anon_sym_abstract] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_open] = ACTIONS(5195), + [anon_sym_vararg] = ACTIONS(5195), + [anon_sym_noinline] = ACTIONS(5195), + [anon_sym_crossinline] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5197), + [anon_sym_continue_AT] = ACTIONS(5197), + [anon_sym_break_AT] = ACTIONS(5197), + [anon_sym_this_AT] = ACTIONS(5197), + [anon_sym_super_AT] = ACTIONS(5197), + [sym_real_literal] = ACTIONS(5197), + [sym_integer_literal] = ACTIONS(5195), + [sym_hex_literal] = ACTIONS(5197), + [sym_bin_literal] = ACTIONS(5197), + [anon_sym_true] = ACTIONS(5195), + [anon_sym_false] = ACTIONS(5195), + [anon_sym_SQUOTE] = ACTIONS(5197), + [sym__backtick_identifier] = ACTIONS(5197), + [sym__automatic_semicolon] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5197), }, [1177] = { - [sym__alpha_identifier] = ACTIONS(4905), - [anon_sym_AT] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_as] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_where] = ACTIONS(4905), - [anon_sym_object] = ACTIONS(4905), - [anon_sym_fun] = ACTIONS(4905), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_SEMI] = ACTIONS(4907), - [anon_sym_get] = ACTIONS(4905), - [anon_sym_set] = ACTIONS(4905), - [anon_sym_this] = ACTIONS(4905), - [anon_sym_super] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [sym_label] = ACTIONS(4905), - [anon_sym_in] = ACTIONS(4905), - [anon_sym_DOT_DOT] = ACTIONS(4907), - [anon_sym_QMARK_COLON] = ACTIONS(4907), - [anon_sym_AMP_AMP] = ACTIONS(4907), - [anon_sym_PIPE_PIPE] = ACTIONS(4907), - [anon_sym_null] = ACTIONS(4905), - [anon_sym_if] = ACTIONS(4905), - [anon_sym_else] = ACTIONS(4905), - [anon_sym_when] = ACTIONS(4905), - [anon_sym_try] = ACTIONS(4905), - [anon_sym_throw] = ACTIONS(4905), - [anon_sym_return] = ACTIONS(4905), - [anon_sym_continue] = ACTIONS(4905), - [anon_sym_break] = ACTIONS(4905), - [anon_sym_COLON_COLON] = ACTIONS(4907), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), - [anon_sym_EQ_EQ] = ACTIONS(4905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), - [anon_sym_LT_EQ] = ACTIONS(4907), - [anon_sym_GT_EQ] = ACTIONS(4907), - [anon_sym_BANGin] = ACTIONS(4907), - [anon_sym_is] = ACTIONS(4905), - [anon_sym_BANGis] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_as_QMARK] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(4907), - [anon_sym_DASH_DASH] = ACTIONS(4907), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_BANG_BANG] = ACTIONS(4907), - [anon_sym_suspend] = ACTIONS(4905), - [anon_sym_sealed] = ACTIONS(4905), - [anon_sym_annotation] = ACTIONS(4905), - [anon_sym_data] = ACTIONS(4905), - [anon_sym_inner] = ACTIONS(4905), - [anon_sym_value] = ACTIONS(4905), - [anon_sym_override] = ACTIONS(4905), - [anon_sym_lateinit] = ACTIONS(4905), - [anon_sym_public] = ACTIONS(4905), - [anon_sym_private] = ACTIONS(4905), - [anon_sym_internal] = ACTIONS(4905), - [anon_sym_protected] = ACTIONS(4905), - [anon_sym_tailrec] = ACTIONS(4905), - [anon_sym_operator] = ACTIONS(4905), - [anon_sym_infix] = ACTIONS(4905), - [anon_sym_inline] = ACTIONS(4905), - [anon_sym_external] = ACTIONS(4905), - [sym_property_modifier] = ACTIONS(4905), - [anon_sym_abstract] = ACTIONS(4905), - [anon_sym_final] = ACTIONS(4905), - [anon_sym_open] = ACTIONS(4905), - [anon_sym_vararg] = ACTIONS(4905), - [anon_sym_noinline] = ACTIONS(4905), - [anon_sym_crossinline] = ACTIONS(4905), - [anon_sym_expect] = ACTIONS(4905), - [anon_sym_actual] = ACTIONS(4905), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4907), - [anon_sym_continue_AT] = ACTIONS(4907), - [anon_sym_break_AT] = ACTIONS(4907), - [sym_real_literal] = ACTIONS(4907), - [sym_integer_literal] = ACTIONS(4905), - [sym_hex_literal] = ACTIONS(4907), - [sym_bin_literal] = ACTIONS(4907), - [anon_sym_true] = ACTIONS(4905), - [anon_sym_false] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4907), - [sym__backtick_identifier] = ACTIONS(4907), - [sym__automatic_semicolon] = ACTIONS(4907), - [sym_safe_nav] = ACTIONS(4907), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4907), + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_object] = ACTIONS(5199), + [anon_sym_fun] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_this] = ACTIONS(5199), + [anon_sym_super] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [sym_label] = ACTIONS(5199), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_null] = ACTIONS(5199), + [anon_sym_if] = ACTIONS(5199), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_when] = ACTIONS(5199), + [anon_sym_try] = ACTIONS(5199), + [anon_sym_throw] = ACTIONS(5199), + [anon_sym_return] = ACTIONS(5199), + [anon_sym_continue] = ACTIONS(5199), + [anon_sym_break] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5199), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_suspend] = ACTIONS(5199), + [anon_sym_sealed] = ACTIONS(5199), + [anon_sym_annotation] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_override] = ACTIONS(5199), + [anon_sym_lateinit] = ACTIONS(5199), + [anon_sym_public] = ACTIONS(5199), + [anon_sym_private] = ACTIONS(5199), + [anon_sym_internal] = ACTIONS(5199), + [anon_sym_protected] = ACTIONS(5199), + [anon_sym_tailrec] = ACTIONS(5199), + [anon_sym_operator] = ACTIONS(5199), + [anon_sym_infix] = ACTIONS(5199), + [anon_sym_inline] = ACTIONS(5199), + [anon_sym_external] = ACTIONS(5199), + [sym_property_modifier] = ACTIONS(5199), + [anon_sym_abstract] = ACTIONS(5199), + [anon_sym_final] = ACTIONS(5199), + [anon_sym_open] = ACTIONS(5199), + [anon_sym_vararg] = ACTIONS(5199), + [anon_sym_noinline] = ACTIONS(5199), + [anon_sym_crossinline] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5201), + [anon_sym_continue_AT] = ACTIONS(5201), + [anon_sym_break_AT] = ACTIONS(5201), + [anon_sym_this_AT] = ACTIONS(5201), + [anon_sym_super_AT] = ACTIONS(5201), + [sym_real_literal] = ACTIONS(5201), + [sym_integer_literal] = ACTIONS(5199), + [sym_hex_literal] = ACTIONS(5201), + [sym_bin_literal] = ACTIONS(5201), + [anon_sym_true] = ACTIONS(5199), + [anon_sym_false] = ACTIONS(5199), + [anon_sym_SQUOTE] = ACTIONS(5201), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5201), }, [1178] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_object] = ACTIONS(5057), - [anon_sym_fun] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_this] = ACTIONS(5057), - [anon_sym_super] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), - [anon_sym_if] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_when] = ACTIONS(5057), - [anon_sym_try] = ACTIONS(5057), - [anon_sym_throw] = ACTIONS(5057), - [anon_sym_return] = ACTIONS(5057), - [anon_sym_continue] = ACTIONS(5057), - [anon_sym_break] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(5061), - [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), - [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), - }, - [1179] = { - [sym_getter] = STATE(9585), - [sym_setter] = STATE(9585), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9362), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(5064), - [anon_sym_get] = ACTIONS(4843), - [anon_sym_set] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -180101,924 +183701,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, + [1179] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, [1180] = { - [sym__alpha_identifier] = ACTIONS(5066), - [anon_sym_AT] = ACTIONS(5068), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5066), - [anon_sym_EQ] = ACTIONS(5066), - [anon_sym_LBRACE] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_where] = ACTIONS(5066), - [anon_sym_object] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(5068), - [anon_sym_get] = ACTIONS(5066), - [anon_sym_set] = ACTIONS(5066), - [anon_sym_this] = ACTIONS(5066), - [anon_sym_super] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5066), - [sym_label] = ACTIONS(5066), - [anon_sym_in] = ACTIONS(5066), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_QMARK_COLON] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_else] = ACTIONS(5066), - [anon_sym_when] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_throw] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_continue] = ACTIONS(5066), - [anon_sym_break] = ACTIONS(5066), - [anon_sym_COLON_COLON] = ACTIONS(5068), - [anon_sym_PLUS_EQ] = ACTIONS(5068), - [anon_sym_DASH_EQ] = ACTIONS(5068), - [anon_sym_STAR_EQ] = ACTIONS(5068), - [anon_sym_SLASH_EQ] = ACTIONS(5068), - [anon_sym_PERCENT_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5066), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5066), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_BANGin] = ACTIONS(5068), - [anon_sym_is] = ACTIONS(5066), - [anon_sym_BANGis] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5066), - [anon_sym_as_QMARK] = ACTIONS(5068), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_BANG_BANG] = ACTIONS(5068), - [anon_sym_suspend] = ACTIONS(5066), - [anon_sym_sealed] = ACTIONS(5066), - [anon_sym_annotation] = ACTIONS(5066), - [anon_sym_data] = ACTIONS(5066), - [anon_sym_inner] = ACTIONS(5066), - [anon_sym_value] = ACTIONS(5066), - [anon_sym_override] = ACTIONS(5066), - [anon_sym_lateinit] = ACTIONS(5066), - [anon_sym_public] = ACTIONS(5066), - [anon_sym_private] = ACTIONS(5066), - [anon_sym_internal] = ACTIONS(5066), - [anon_sym_protected] = ACTIONS(5066), - [anon_sym_tailrec] = ACTIONS(5066), - [anon_sym_operator] = ACTIONS(5066), - [anon_sym_infix] = ACTIONS(5066), - [anon_sym_inline] = ACTIONS(5066), - [anon_sym_external] = ACTIONS(5066), - [sym_property_modifier] = ACTIONS(5066), - [anon_sym_abstract] = ACTIONS(5066), - [anon_sym_final] = ACTIONS(5066), - [anon_sym_open] = ACTIONS(5066), - [anon_sym_vararg] = ACTIONS(5066), - [anon_sym_noinline] = ACTIONS(5066), - [anon_sym_crossinline] = ACTIONS(5066), - [anon_sym_expect] = ACTIONS(5066), - [anon_sym_actual] = ACTIONS(5066), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5068), - [anon_sym_continue_AT] = ACTIONS(5068), - [anon_sym_break_AT] = ACTIONS(5068), - [sym_real_literal] = ACTIONS(5068), - [sym_integer_literal] = ACTIONS(5066), - [sym_hex_literal] = ACTIONS(5068), - [sym_bin_literal] = ACTIONS(5068), - [anon_sym_true] = ACTIONS(5066), - [anon_sym_false] = ACTIONS(5066), - [anon_sym_SQUOTE] = ACTIONS(5068), - [sym__backtick_identifier] = ACTIONS(5068), - [sym__automatic_semicolon] = ACTIONS(5068), - [sym_safe_nav] = ACTIONS(5068), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5068), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, [1181] = { - [sym__alpha_identifier] = ACTIONS(5070), - [anon_sym_AT] = ACTIONS(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5070), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_where] = ACTIONS(5070), - [anon_sym_object] = ACTIONS(5070), - [anon_sym_fun] = ACTIONS(5070), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym_get] = ACTIONS(5070), - [anon_sym_set] = ACTIONS(5070), - [anon_sym_this] = ACTIONS(5070), - [anon_sym_super] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [sym_label] = ACTIONS(5070), - [anon_sym_in] = ACTIONS(5070), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_QMARK_COLON] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5070), - [anon_sym_if] = ACTIONS(5070), - [anon_sym_else] = ACTIONS(5070), - [anon_sym_when] = ACTIONS(5070), - [anon_sym_try] = ACTIONS(5070), - [anon_sym_throw] = ACTIONS(5070), - [anon_sym_return] = ACTIONS(5070), - [anon_sym_continue] = ACTIONS(5070), - [anon_sym_break] = ACTIONS(5070), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5070), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5070), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_BANGin] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5070), - [anon_sym_BANGis] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_as_QMARK] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_BANG] = ACTIONS(5070), - [anon_sym_BANG_BANG] = ACTIONS(5072), - [anon_sym_suspend] = ACTIONS(5070), - [anon_sym_sealed] = ACTIONS(5070), - [anon_sym_annotation] = ACTIONS(5070), - [anon_sym_data] = ACTIONS(5070), - [anon_sym_inner] = ACTIONS(5070), - [anon_sym_value] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_lateinit] = ACTIONS(5070), - [anon_sym_public] = ACTIONS(5070), - [anon_sym_private] = ACTIONS(5070), - [anon_sym_internal] = ACTIONS(5070), - [anon_sym_protected] = ACTIONS(5070), - [anon_sym_tailrec] = ACTIONS(5070), - [anon_sym_operator] = ACTIONS(5070), - [anon_sym_infix] = ACTIONS(5070), - [anon_sym_inline] = ACTIONS(5070), - [anon_sym_external] = ACTIONS(5070), - [sym_property_modifier] = ACTIONS(5070), - [anon_sym_abstract] = ACTIONS(5070), - [anon_sym_final] = ACTIONS(5070), - [anon_sym_open] = ACTIONS(5070), - [anon_sym_vararg] = ACTIONS(5070), - [anon_sym_noinline] = ACTIONS(5070), - [anon_sym_crossinline] = ACTIONS(5070), - [anon_sym_expect] = ACTIONS(5070), - [anon_sym_actual] = ACTIONS(5070), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5072), - [anon_sym_continue_AT] = ACTIONS(5072), - [anon_sym_break_AT] = ACTIONS(5072), - [sym_real_literal] = ACTIONS(5072), - [sym_integer_literal] = ACTIONS(5070), - [sym_hex_literal] = ACTIONS(5072), - [sym_bin_literal] = ACTIONS(5072), - [anon_sym_true] = ACTIONS(5070), - [anon_sym_false] = ACTIONS(5070), - [anon_sym_SQUOTE] = ACTIONS(5072), - [sym__backtick_identifier] = ACTIONS(5072), - [sym__automatic_semicolon] = ACTIONS(5072), - [sym_safe_nav] = ACTIONS(5072), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5072), + [sym__alpha_identifier] = ACTIONS(5205), + [anon_sym_AT] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5205), + [anon_sym_object] = ACTIONS(5205), + [anon_sym_fun] = ACTIONS(5205), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_get] = ACTIONS(5205), + [anon_sym_set] = ACTIONS(5205), + [anon_sym_this] = ACTIONS(5205), + [anon_sym_super] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [sym_label] = ACTIONS(5205), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_null] = ACTIONS(5205), + [anon_sym_if] = ACTIONS(5205), + [anon_sym_else] = ACTIONS(5205), + [anon_sym_when] = ACTIONS(5205), + [anon_sym_try] = ACTIONS(5205), + [anon_sym_throw] = ACTIONS(5205), + [anon_sym_return] = ACTIONS(5205), + [anon_sym_continue] = ACTIONS(5205), + [anon_sym_break] = ACTIONS(5205), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [anon_sym_PLUS_EQ] = ACTIONS(5207), + [anon_sym_DASH_EQ] = ACTIONS(5207), + [anon_sym_STAR_EQ] = ACTIONS(5207), + [anon_sym_SLASH_EQ] = ACTIONS(5207), + [anon_sym_PERCENT_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_BANGin] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5205), + [anon_sym_BANGis] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5205), + [anon_sym_as_QMARK] = ACTIONS(5207), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_BANG_BANG] = ACTIONS(5207), + [anon_sym_suspend] = ACTIONS(5205), + [anon_sym_sealed] = ACTIONS(5205), + [anon_sym_annotation] = ACTIONS(5205), + [anon_sym_data] = ACTIONS(5205), + [anon_sym_inner] = ACTIONS(5205), + [anon_sym_value] = ACTIONS(5205), + [anon_sym_override] = ACTIONS(5205), + [anon_sym_lateinit] = ACTIONS(5205), + [anon_sym_public] = ACTIONS(5205), + [anon_sym_private] = ACTIONS(5205), + [anon_sym_internal] = ACTIONS(5205), + [anon_sym_protected] = ACTIONS(5205), + [anon_sym_tailrec] = ACTIONS(5205), + [anon_sym_operator] = ACTIONS(5205), + [anon_sym_infix] = ACTIONS(5205), + [anon_sym_inline] = ACTIONS(5205), + [anon_sym_external] = ACTIONS(5205), + [sym_property_modifier] = ACTIONS(5205), + [anon_sym_abstract] = ACTIONS(5205), + [anon_sym_final] = ACTIONS(5205), + [anon_sym_open] = ACTIONS(5205), + [anon_sym_vararg] = ACTIONS(5205), + [anon_sym_noinline] = ACTIONS(5205), + [anon_sym_crossinline] = ACTIONS(5205), + [anon_sym_expect] = ACTIONS(5205), + [anon_sym_actual] = ACTIONS(5205), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5207), + [anon_sym_continue_AT] = ACTIONS(5207), + [anon_sym_break_AT] = ACTIONS(5207), + [anon_sym_this_AT] = ACTIONS(5207), + [anon_sym_super_AT] = ACTIONS(5207), + [sym_real_literal] = ACTIONS(5207), + [sym_integer_literal] = ACTIONS(5205), + [sym_hex_literal] = ACTIONS(5207), + [sym_bin_literal] = ACTIONS(5207), + [anon_sym_true] = ACTIONS(5205), + [anon_sym_false] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5207), + [sym__backtick_identifier] = ACTIONS(5207), + [sym__automatic_semicolon] = ACTIONS(5207), + [sym_safe_nav] = ACTIONS(5207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5207), }, [1182] = { - [sym__alpha_identifier] = ACTIONS(5074), - [anon_sym_AT] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5074), - [anon_sym_EQ] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_where] = ACTIONS(5074), - [anon_sym_object] = ACTIONS(5074), - [anon_sym_fun] = ACTIONS(5074), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_SEMI] = ACTIONS(5076), - [anon_sym_get] = ACTIONS(5074), - [anon_sym_set] = ACTIONS(5074), - [anon_sym_this] = ACTIONS(5074), - [anon_sym_super] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5074), - [sym_label] = ACTIONS(5074), - [anon_sym_in] = ACTIONS(5074), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_QMARK_COLON] = ACTIONS(5076), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(5074), - [anon_sym_if] = ACTIONS(5074), - [anon_sym_else] = ACTIONS(5074), - [anon_sym_when] = ACTIONS(5074), - [anon_sym_try] = ACTIONS(5074), - [anon_sym_throw] = ACTIONS(5074), - [anon_sym_return] = ACTIONS(5074), - [anon_sym_continue] = ACTIONS(5074), - [anon_sym_break] = ACTIONS(5074), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_PLUS_EQ] = ACTIONS(5076), - [anon_sym_DASH_EQ] = ACTIONS(5076), - [anon_sym_STAR_EQ] = ACTIONS(5076), - [anon_sym_SLASH_EQ] = ACTIONS(5076), - [anon_sym_PERCENT_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5074), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_BANGin] = ACTIONS(5076), - [anon_sym_is] = ACTIONS(5074), - [anon_sym_BANGis] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_as_QMARK] = ACTIONS(5076), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_BANG_BANG] = ACTIONS(5076), - [anon_sym_suspend] = ACTIONS(5074), - [anon_sym_sealed] = ACTIONS(5074), - [anon_sym_annotation] = ACTIONS(5074), - [anon_sym_data] = ACTIONS(5074), - [anon_sym_inner] = ACTIONS(5074), - [anon_sym_value] = ACTIONS(5074), - [anon_sym_override] = ACTIONS(5074), - [anon_sym_lateinit] = ACTIONS(5074), - [anon_sym_public] = ACTIONS(5074), - [anon_sym_private] = ACTIONS(5074), - [anon_sym_internal] = ACTIONS(5074), - [anon_sym_protected] = ACTIONS(5074), - [anon_sym_tailrec] = ACTIONS(5074), - [anon_sym_operator] = ACTIONS(5074), - [anon_sym_infix] = ACTIONS(5074), - [anon_sym_inline] = ACTIONS(5074), - [anon_sym_external] = ACTIONS(5074), - [sym_property_modifier] = ACTIONS(5074), - [anon_sym_abstract] = ACTIONS(5074), - [anon_sym_final] = ACTIONS(5074), - [anon_sym_open] = ACTIONS(5074), - [anon_sym_vararg] = ACTIONS(5074), - [anon_sym_noinline] = ACTIONS(5074), - [anon_sym_crossinline] = ACTIONS(5074), - [anon_sym_expect] = ACTIONS(5074), - [anon_sym_actual] = ACTIONS(5074), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5076), - [anon_sym_continue_AT] = ACTIONS(5076), - [anon_sym_break_AT] = ACTIONS(5076), - [sym_real_literal] = ACTIONS(5076), - [sym_integer_literal] = ACTIONS(5074), - [sym_hex_literal] = ACTIONS(5076), - [sym_bin_literal] = ACTIONS(5076), - [anon_sym_true] = ACTIONS(5074), - [anon_sym_false] = ACTIONS(5074), - [anon_sym_SQUOTE] = ACTIONS(5076), - [sym__backtick_identifier] = ACTIONS(5076), - [sym__automatic_semicolon] = ACTIONS(5076), - [sym_safe_nav] = ACTIONS(5076), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5076), + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_object] = ACTIONS(5209), + [anon_sym_fun] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_this] = ACTIONS(5209), + [anon_sym_super] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [sym_label] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_null] = ACTIONS(5209), + [anon_sym_if] = ACTIONS(5209), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_when] = ACTIONS(5209), + [anon_sym_try] = ACTIONS(5209), + [anon_sym_throw] = ACTIONS(5209), + [anon_sym_return] = ACTIONS(5209), + [anon_sym_continue] = ACTIONS(5209), + [anon_sym_break] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_suspend] = ACTIONS(5209), + [anon_sym_sealed] = ACTIONS(5209), + [anon_sym_annotation] = ACTIONS(5209), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_override] = ACTIONS(5209), + [anon_sym_lateinit] = ACTIONS(5209), + [anon_sym_public] = ACTIONS(5209), + [anon_sym_private] = ACTIONS(5209), + [anon_sym_internal] = ACTIONS(5209), + [anon_sym_protected] = ACTIONS(5209), + [anon_sym_tailrec] = ACTIONS(5209), + [anon_sym_operator] = ACTIONS(5209), + [anon_sym_infix] = ACTIONS(5209), + [anon_sym_inline] = ACTIONS(5209), + [anon_sym_external] = ACTIONS(5209), + [sym_property_modifier] = ACTIONS(5209), + [anon_sym_abstract] = ACTIONS(5209), + [anon_sym_final] = ACTIONS(5209), + [anon_sym_open] = ACTIONS(5209), + [anon_sym_vararg] = ACTIONS(5209), + [anon_sym_noinline] = ACTIONS(5209), + [anon_sym_crossinline] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5211), + [anon_sym_continue_AT] = ACTIONS(5211), + [anon_sym_break_AT] = ACTIONS(5211), + [anon_sym_this_AT] = ACTIONS(5211), + [anon_sym_super_AT] = ACTIONS(5211), + [sym_real_literal] = ACTIONS(5211), + [sym_integer_literal] = ACTIONS(5209), + [sym_hex_literal] = ACTIONS(5211), + [sym_bin_literal] = ACTIONS(5211), + [anon_sym_true] = ACTIONS(5209), + [anon_sym_false] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5211), + [sym__backtick_identifier] = ACTIONS(5211), + [sym__automatic_semicolon] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5211), }, [1183] = { - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4065), - [anon_sym_LBRACE] = ACTIONS(4067), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_object] = ACTIONS(5213), + [anon_sym_fun] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_this] = ACTIONS(5213), + [anon_sym_super] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [sym_label] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_null] = ACTIONS(5213), + [anon_sym_if] = ACTIONS(5213), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_when] = ACTIONS(5213), + [anon_sym_try] = ACTIONS(5213), + [anon_sym_throw] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5213), + [anon_sym_continue] = ACTIONS(5213), + [anon_sym_break] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_suspend] = ACTIONS(5213), + [anon_sym_sealed] = ACTIONS(5213), + [anon_sym_annotation] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_override] = ACTIONS(5213), + [anon_sym_lateinit] = ACTIONS(5213), + [anon_sym_public] = ACTIONS(5213), + [anon_sym_private] = ACTIONS(5213), + [anon_sym_internal] = ACTIONS(5213), + [anon_sym_protected] = ACTIONS(5213), + [anon_sym_tailrec] = ACTIONS(5213), + [anon_sym_operator] = ACTIONS(5213), + [anon_sym_infix] = ACTIONS(5213), + [anon_sym_inline] = ACTIONS(5213), + [anon_sym_external] = ACTIONS(5213), + [sym_property_modifier] = ACTIONS(5213), + [anon_sym_abstract] = ACTIONS(5213), + [anon_sym_final] = ACTIONS(5213), + [anon_sym_open] = ACTIONS(5213), + [anon_sym_vararg] = ACTIONS(5213), + [anon_sym_noinline] = ACTIONS(5213), + [anon_sym_crossinline] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5215), + [anon_sym_continue_AT] = ACTIONS(5215), + [anon_sym_break_AT] = ACTIONS(5215), + [anon_sym_this_AT] = ACTIONS(5215), + [anon_sym_super_AT] = ACTIONS(5215), + [sym_real_literal] = ACTIONS(5215), + [sym_integer_literal] = ACTIONS(5213), + [sym_hex_literal] = ACTIONS(5215), + [sym_bin_literal] = ACTIONS(5215), + [anon_sym_true] = ACTIONS(5213), + [anon_sym_false] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5215), + [sym__backtick_identifier] = ACTIONS(5215), + [sym__automatic_semicolon] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5215), }, [1184] = { - [sym__alpha_identifier] = ACTIONS(5078), - [anon_sym_AT] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5078), - [anon_sym_EQ] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_where] = ACTIONS(5078), - [anon_sym_object] = ACTIONS(5078), - [anon_sym_fun] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_SEMI] = ACTIONS(5080), - [anon_sym_get] = ACTIONS(5078), - [anon_sym_set] = ACTIONS(5078), - [anon_sym_this] = ACTIONS(5078), - [anon_sym_super] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5078), - [sym_label] = ACTIONS(5078), - [anon_sym_in] = ACTIONS(5078), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_QMARK_COLON] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_null] = ACTIONS(5078), - [anon_sym_if] = ACTIONS(5078), - [anon_sym_else] = ACTIONS(5078), - [anon_sym_when] = ACTIONS(5078), - [anon_sym_try] = ACTIONS(5078), - [anon_sym_throw] = ACTIONS(5078), - [anon_sym_return] = ACTIONS(5078), - [anon_sym_continue] = ACTIONS(5078), - [anon_sym_break] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5080), - [anon_sym_PLUS_EQ] = ACTIONS(5080), - [anon_sym_DASH_EQ] = ACTIONS(5080), - [anon_sym_STAR_EQ] = ACTIONS(5080), - [anon_sym_SLASH_EQ] = ACTIONS(5080), - [anon_sym_PERCENT_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_BANGin] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5078), - [anon_sym_BANGis] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5078), - [anon_sym_as_QMARK] = ACTIONS(5080), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_BANG] = ACTIONS(5078), - [anon_sym_BANG_BANG] = ACTIONS(5080), - [anon_sym_suspend] = ACTIONS(5078), - [anon_sym_sealed] = ACTIONS(5078), - [anon_sym_annotation] = ACTIONS(5078), - [anon_sym_data] = ACTIONS(5078), - [anon_sym_inner] = ACTIONS(5078), - [anon_sym_value] = ACTIONS(5078), - [anon_sym_override] = ACTIONS(5078), - [anon_sym_lateinit] = ACTIONS(5078), - [anon_sym_public] = ACTIONS(5078), - [anon_sym_private] = ACTIONS(5078), - [anon_sym_internal] = ACTIONS(5078), - [anon_sym_protected] = ACTIONS(5078), - [anon_sym_tailrec] = ACTIONS(5078), - [anon_sym_operator] = ACTIONS(5078), - [anon_sym_infix] = ACTIONS(5078), - [anon_sym_inline] = ACTIONS(5078), - [anon_sym_external] = ACTIONS(5078), - [sym_property_modifier] = ACTIONS(5078), - [anon_sym_abstract] = ACTIONS(5078), - [anon_sym_final] = ACTIONS(5078), - [anon_sym_open] = ACTIONS(5078), - [anon_sym_vararg] = ACTIONS(5078), - [anon_sym_noinline] = ACTIONS(5078), - [anon_sym_crossinline] = ACTIONS(5078), - [anon_sym_expect] = ACTIONS(5078), - [anon_sym_actual] = ACTIONS(5078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5080), - [anon_sym_continue_AT] = ACTIONS(5080), - [anon_sym_break_AT] = ACTIONS(5080), - [sym_real_literal] = ACTIONS(5080), - [sym_integer_literal] = ACTIONS(5078), - [sym_hex_literal] = ACTIONS(5080), - [sym_bin_literal] = ACTIONS(5080), - [anon_sym_true] = ACTIONS(5078), - [anon_sym_false] = ACTIONS(5078), - [anon_sym_SQUOTE] = ACTIONS(5080), - [sym__backtick_identifier] = ACTIONS(5080), - [sym__automatic_semicolon] = ACTIONS(5080), - [sym_safe_nav] = ACTIONS(5080), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5080), - }, - [1185] = { - [sym__alpha_identifier] = ACTIONS(5082), - [anon_sym_AT] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5084), - [anon_sym_as] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5084), - [anon_sym_RBRACE] = ACTIONS(5084), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(5084), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_where] = ACTIONS(5082), - [anon_sym_object] = ACTIONS(5082), - [anon_sym_fun] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_SEMI] = ACTIONS(5084), - [anon_sym_get] = ACTIONS(5082), - [anon_sym_set] = ACTIONS(5082), - [anon_sym_this] = ACTIONS(5082), - [anon_sym_super] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5082), - [sym_label] = ACTIONS(5082), - [anon_sym_in] = ACTIONS(5082), - [anon_sym_DOT_DOT] = ACTIONS(5084), - [anon_sym_QMARK_COLON] = ACTIONS(5084), - [anon_sym_AMP_AMP] = ACTIONS(5084), - [anon_sym_PIPE_PIPE] = ACTIONS(5084), - [anon_sym_null] = ACTIONS(5082), - [anon_sym_if] = ACTIONS(5082), - [anon_sym_else] = ACTIONS(5082), - [anon_sym_when] = ACTIONS(5082), - [anon_sym_try] = ACTIONS(5082), - [anon_sym_throw] = ACTIONS(5082), - [anon_sym_return] = ACTIONS(5082), - [anon_sym_continue] = ACTIONS(5082), - [anon_sym_break] = ACTIONS(5082), - [anon_sym_COLON_COLON] = ACTIONS(5084), - [anon_sym_PLUS_EQ] = ACTIONS(5084), - [anon_sym_DASH_EQ] = ACTIONS(5084), - [anon_sym_STAR_EQ] = ACTIONS(5084), - [anon_sym_SLASH_EQ] = ACTIONS(5084), - [anon_sym_PERCENT_EQ] = ACTIONS(5084), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5084), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5084), - [anon_sym_LT_EQ] = ACTIONS(5084), - [anon_sym_GT_EQ] = ACTIONS(5084), - [anon_sym_BANGin] = ACTIONS(5084), - [anon_sym_is] = ACTIONS(5082), - [anon_sym_BANGis] = ACTIONS(5084), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5082), - [anon_sym_as_QMARK] = ACTIONS(5084), - [anon_sym_PLUS_PLUS] = ACTIONS(5084), - [anon_sym_DASH_DASH] = ACTIONS(5084), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_BANG_BANG] = ACTIONS(5084), - [anon_sym_suspend] = ACTIONS(5082), - [anon_sym_sealed] = ACTIONS(5082), - [anon_sym_annotation] = ACTIONS(5082), - [anon_sym_data] = ACTIONS(5082), - [anon_sym_inner] = ACTIONS(5082), - [anon_sym_value] = ACTIONS(5082), - [anon_sym_override] = ACTIONS(5082), - [anon_sym_lateinit] = ACTIONS(5082), - [anon_sym_public] = ACTIONS(5082), - [anon_sym_private] = ACTIONS(5082), - [anon_sym_internal] = ACTIONS(5082), - [anon_sym_protected] = ACTIONS(5082), - [anon_sym_tailrec] = ACTIONS(5082), - [anon_sym_operator] = ACTIONS(5082), - [anon_sym_infix] = ACTIONS(5082), - [anon_sym_inline] = ACTIONS(5082), - [anon_sym_external] = ACTIONS(5082), - [sym_property_modifier] = ACTIONS(5082), - [anon_sym_abstract] = ACTIONS(5082), - [anon_sym_final] = ACTIONS(5082), - [anon_sym_open] = ACTIONS(5082), - [anon_sym_vararg] = ACTIONS(5082), - [anon_sym_noinline] = ACTIONS(5082), - [anon_sym_crossinline] = ACTIONS(5082), - [anon_sym_expect] = ACTIONS(5082), - [anon_sym_actual] = ACTIONS(5082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5084), - [anon_sym_continue_AT] = ACTIONS(5084), - [anon_sym_break_AT] = ACTIONS(5084), - [sym_real_literal] = ACTIONS(5084), - [sym_integer_literal] = ACTIONS(5082), - [sym_hex_literal] = ACTIONS(5084), - [sym_bin_literal] = ACTIONS(5084), - [anon_sym_true] = ACTIONS(5082), - [anon_sym_false] = ACTIONS(5082), - [anon_sym_SQUOTE] = ACTIONS(5084), - [sym__backtick_identifier] = ACTIONS(5084), - [sym__automatic_semicolon] = ACTIONS(5084), - [sym_safe_nav] = ACTIONS(5084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5084), - }, - [1186] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5086), - [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_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_this] = ACTIONS(5057), - [anon_sym_super] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), - [anon_sym_if] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_when] = ACTIONS(5057), - [anon_sym_try] = ACTIONS(5057), - [anon_sym_throw] = ACTIONS(5057), - [anon_sym_return] = ACTIONS(5057), - [anon_sym_continue] = ACTIONS(5057), - [anon_sym_break] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(5061), - [anon_sym_PLUS_EQ] = ACTIONS(5088), - [anon_sym_DASH_EQ] = ACTIONS(5088), - [anon_sym_STAR_EQ] = ACTIONS(5088), - [anon_sym_SLASH_EQ] = ACTIONS(5088), - [anon_sym_PERCENT_EQ] = ACTIONS(5088), - [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), - [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), - }, - [1187] = { - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3842), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3842), - [anon_sym_fun] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3842), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_this] = ACTIONS(3842), - [anon_sym_super] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3842), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_if] = ACTIONS(3842), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_when] = ACTIONS(3842), - [anon_sym_try] = ACTIONS(3842), - [anon_sym_throw] = ACTIONS(3842), - [anon_sym_return] = ACTIONS(3842), - [anon_sym_continue] = ACTIONS(3842), - [anon_sym_break] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3844), - [anon_sym_PLUS_EQ] = ACTIONS(3844), - [anon_sym_DASH_EQ] = ACTIONS(3844), - [anon_sym_STAR_EQ] = ACTIONS(3844), - [anon_sym_SLASH_EQ] = ACTIONS(3844), - [anon_sym_PERCENT_EQ] = ACTIONS(3844), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3842), - [anon_sym_BANG_BANG] = ACTIONS(3844), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3844), - [anon_sym_continue_AT] = ACTIONS(3844), - [anon_sym_break_AT] = ACTIONS(3844), - [sym_real_literal] = ACTIONS(3844), - [sym_integer_literal] = ACTIONS(3842), - [sym_hex_literal] = ACTIONS(3844), - [sym_bin_literal] = ACTIONS(3844), - [anon_sym_true] = ACTIONS(3842), - [anon_sym_false] = ACTIONS(3842), - [anon_sym_SQUOTE] = ACTIONS(3844), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3844), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3844), - }, - [1188] = { - [sym_getter] = STATE(9534), - [sym_setter] = STATE(9534), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9362), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(5090), - [anon_sym_get] = ACTIONS(4843), - [anon_sym_set] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -181037,2068 +184337,2826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [1189] = { - [sym__alpha_identifier] = ACTIONS(5092), - [anon_sym_AT] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5092), - [anon_sym_EQ] = ACTIONS(5092), - [anon_sym_LBRACE] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5092), - [anon_sym_object] = ACTIONS(5092), - [anon_sym_fun] = ACTIONS(5092), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_SEMI] = ACTIONS(5094), - [anon_sym_get] = ACTIONS(5092), - [anon_sym_set] = ACTIONS(5092), - [anon_sym_this] = ACTIONS(5092), - [anon_sym_super] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5092), - [sym_label] = ACTIONS(5092), - [anon_sym_in] = ACTIONS(5092), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_QMARK_COLON] = ACTIONS(5094), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_null] = ACTIONS(5092), - [anon_sym_if] = ACTIONS(5092), - [anon_sym_else] = ACTIONS(5092), - [anon_sym_when] = ACTIONS(5092), - [anon_sym_try] = ACTIONS(5092), - [anon_sym_throw] = ACTIONS(5092), - [anon_sym_return] = ACTIONS(5092), - [anon_sym_continue] = ACTIONS(5092), - [anon_sym_break] = ACTIONS(5092), - [anon_sym_COLON_COLON] = ACTIONS(5094), - [anon_sym_PLUS_EQ] = ACTIONS(5094), - [anon_sym_DASH_EQ] = ACTIONS(5094), - [anon_sym_STAR_EQ] = ACTIONS(5094), - [anon_sym_SLASH_EQ] = ACTIONS(5094), - [anon_sym_PERCENT_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5092), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5092), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_BANGin] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5092), - [anon_sym_BANGis] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5092), - [anon_sym_as_QMARK] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_BANG_BANG] = ACTIONS(5094), - [anon_sym_suspend] = ACTIONS(5092), - [anon_sym_sealed] = ACTIONS(5092), - [anon_sym_annotation] = ACTIONS(5092), - [anon_sym_data] = ACTIONS(5092), - [anon_sym_inner] = ACTIONS(5092), - [anon_sym_value] = ACTIONS(5092), - [anon_sym_override] = ACTIONS(5092), - [anon_sym_lateinit] = ACTIONS(5092), - [anon_sym_public] = ACTIONS(5092), - [anon_sym_private] = ACTIONS(5092), - [anon_sym_internal] = ACTIONS(5092), - [anon_sym_protected] = ACTIONS(5092), - [anon_sym_tailrec] = ACTIONS(5092), - [anon_sym_operator] = ACTIONS(5092), - [anon_sym_infix] = ACTIONS(5092), - [anon_sym_inline] = ACTIONS(5092), - [anon_sym_external] = ACTIONS(5092), - [sym_property_modifier] = ACTIONS(5092), - [anon_sym_abstract] = ACTIONS(5092), - [anon_sym_final] = ACTIONS(5092), - [anon_sym_open] = ACTIONS(5092), - [anon_sym_vararg] = ACTIONS(5092), - [anon_sym_noinline] = ACTIONS(5092), - [anon_sym_crossinline] = ACTIONS(5092), - [anon_sym_expect] = ACTIONS(5092), - [anon_sym_actual] = ACTIONS(5092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5094), - [anon_sym_continue_AT] = ACTIONS(5094), - [anon_sym_break_AT] = ACTIONS(5094), - [sym_real_literal] = ACTIONS(5094), - [sym_integer_literal] = ACTIONS(5092), - [sym_hex_literal] = ACTIONS(5094), - [sym_bin_literal] = ACTIONS(5094), - [anon_sym_true] = ACTIONS(5092), - [anon_sym_false] = ACTIONS(5092), - [anon_sym_SQUOTE] = ACTIONS(5094), - [sym__backtick_identifier] = ACTIONS(5094), - [sym__automatic_semicolon] = ACTIONS(5094), - [sym_safe_nav] = ACTIONS(5094), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5094), - }, - [1190] = { - [sym__alpha_identifier] = ACTIONS(5096), - [anon_sym_AT] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_as] = ACTIONS(5096), - [anon_sym_EQ] = ACTIONS(5096), - [anon_sym_LBRACE] = ACTIONS(5098), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_LPAREN] = ACTIONS(5098), - [anon_sym_COMMA] = ACTIONS(5098), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5096), - [anon_sym_object] = ACTIONS(5096), - [anon_sym_fun] = ACTIONS(5096), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_SEMI] = ACTIONS(5098), - [anon_sym_get] = ACTIONS(5096), - [anon_sym_set] = ACTIONS(5096), - [anon_sym_this] = ACTIONS(5096), - [anon_sym_super] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5096), - [sym_label] = ACTIONS(5096), - [anon_sym_in] = ACTIONS(5096), - [anon_sym_DOT_DOT] = ACTIONS(5098), - [anon_sym_QMARK_COLON] = ACTIONS(5098), - [anon_sym_AMP_AMP] = ACTIONS(5098), - [anon_sym_PIPE_PIPE] = ACTIONS(5098), - [anon_sym_null] = ACTIONS(5096), - [anon_sym_if] = ACTIONS(5096), - [anon_sym_else] = ACTIONS(5096), - [anon_sym_when] = ACTIONS(5096), - [anon_sym_try] = ACTIONS(5096), - [anon_sym_throw] = ACTIONS(5096), - [anon_sym_return] = ACTIONS(5096), - [anon_sym_continue] = ACTIONS(5096), - [anon_sym_break] = ACTIONS(5096), - [anon_sym_COLON_COLON] = ACTIONS(5098), - [anon_sym_PLUS_EQ] = ACTIONS(5098), - [anon_sym_DASH_EQ] = ACTIONS(5098), - [anon_sym_STAR_EQ] = ACTIONS(5098), - [anon_sym_SLASH_EQ] = ACTIONS(5098), - [anon_sym_PERCENT_EQ] = ACTIONS(5098), - [anon_sym_BANG_EQ] = ACTIONS(5096), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5098), - [anon_sym_EQ_EQ] = ACTIONS(5096), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5098), - [anon_sym_LT_EQ] = ACTIONS(5098), - [anon_sym_GT_EQ] = ACTIONS(5098), - [anon_sym_BANGin] = ACTIONS(5098), - [anon_sym_is] = ACTIONS(5096), - [anon_sym_BANGis] = ACTIONS(5098), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5096), - [anon_sym_as_QMARK] = ACTIONS(5098), - [anon_sym_PLUS_PLUS] = ACTIONS(5098), - [anon_sym_DASH_DASH] = ACTIONS(5098), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_BANG_BANG] = ACTIONS(5098), - [anon_sym_suspend] = ACTIONS(5096), - [anon_sym_sealed] = ACTIONS(5096), - [anon_sym_annotation] = ACTIONS(5096), - [anon_sym_data] = ACTIONS(5096), - [anon_sym_inner] = ACTIONS(5096), - [anon_sym_value] = ACTIONS(5096), - [anon_sym_override] = ACTIONS(5096), - [anon_sym_lateinit] = ACTIONS(5096), - [anon_sym_public] = ACTIONS(5096), - [anon_sym_private] = ACTIONS(5096), - [anon_sym_internal] = ACTIONS(5096), - [anon_sym_protected] = ACTIONS(5096), - [anon_sym_tailrec] = ACTIONS(5096), - [anon_sym_operator] = ACTIONS(5096), - [anon_sym_infix] = ACTIONS(5096), - [anon_sym_inline] = ACTIONS(5096), - [anon_sym_external] = ACTIONS(5096), - [sym_property_modifier] = ACTIONS(5096), - [anon_sym_abstract] = ACTIONS(5096), - [anon_sym_final] = ACTIONS(5096), - [anon_sym_open] = ACTIONS(5096), - [anon_sym_vararg] = ACTIONS(5096), - [anon_sym_noinline] = ACTIONS(5096), - [anon_sym_crossinline] = ACTIONS(5096), - [anon_sym_expect] = ACTIONS(5096), - [anon_sym_actual] = ACTIONS(5096), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5098), - [anon_sym_continue_AT] = ACTIONS(5098), - [anon_sym_break_AT] = ACTIONS(5098), - [sym_real_literal] = ACTIONS(5098), - [sym_integer_literal] = ACTIONS(5096), - [sym_hex_literal] = ACTIONS(5098), - [sym_bin_literal] = ACTIONS(5098), - [anon_sym_true] = ACTIONS(5096), - [anon_sym_false] = ACTIONS(5096), - [anon_sym_SQUOTE] = ACTIONS(5098), - [sym__backtick_identifier] = ACTIONS(5098), - [sym__automatic_semicolon] = ACTIONS(5098), - [sym_safe_nav] = ACTIONS(5098), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5098), - }, - [1191] = { - [sym__alpha_identifier] = ACTIONS(5100), - [anon_sym_AT] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5100), - [anon_sym_LBRACE] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5100), - [anon_sym_where] = ACTIONS(5100), - [anon_sym_object] = ACTIONS(5100), - [anon_sym_fun] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(5102), - [anon_sym_get] = ACTIONS(5100), - [anon_sym_set] = ACTIONS(5100), - [anon_sym_this] = ACTIONS(5100), - [anon_sym_super] = ACTIONS(5100), - [anon_sym_STAR] = ACTIONS(5100), - [sym_label] = ACTIONS(5100), - [anon_sym_in] = ACTIONS(5100), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_QMARK_COLON] = ACTIONS(5102), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_null] = ACTIONS(5100), - [anon_sym_if] = ACTIONS(5100), - [anon_sym_else] = ACTIONS(5100), - [anon_sym_when] = ACTIONS(5100), - [anon_sym_try] = ACTIONS(5100), - [anon_sym_throw] = ACTIONS(5100), - [anon_sym_return] = ACTIONS(5100), - [anon_sym_continue] = ACTIONS(5100), - [anon_sym_break] = ACTIONS(5100), - [anon_sym_COLON_COLON] = ACTIONS(5102), - [anon_sym_PLUS_EQ] = ACTIONS(5102), - [anon_sym_DASH_EQ] = ACTIONS(5102), - [anon_sym_STAR_EQ] = ACTIONS(5102), - [anon_sym_SLASH_EQ] = ACTIONS(5102), - [anon_sym_PERCENT_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_BANGin] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5100), - [anon_sym_BANGis] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5100), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_as_QMARK] = ACTIONS(5102), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_BANG] = ACTIONS(5100), - [anon_sym_BANG_BANG] = ACTIONS(5102), - [anon_sym_suspend] = ACTIONS(5100), - [anon_sym_sealed] = ACTIONS(5100), - [anon_sym_annotation] = ACTIONS(5100), - [anon_sym_data] = ACTIONS(5100), - [anon_sym_inner] = ACTIONS(5100), - [anon_sym_value] = ACTIONS(5100), - [anon_sym_override] = ACTIONS(5100), - [anon_sym_lateinit] = ACTIONS(5100), - [anon_sym_public] = ACTIONS(5100), - [anon_sym_private] = ACTIONS(5100), - [anon_sym_internal] = ACTIONS(5100), - [anon_sym_protected] = ACTIONS(5100), - [anon_sym_tailrec] = ACTIONS(5100), - [anon_sym_operator] = ACTIONS(5100), - [anon_sym_infix] = ACTIONS(5100), - [anon_sym_inline] = ACTIONS(5100), - [anon_sym_external] = ACTIONS(5100), - [sym_property_modifier] = ACTIONS(5100), - [anon_sym_abstract] = ACTIONS(5100), - [anon_sym_final] = ACTIONS(5100), - [anon_sym_open] = ACTIONS(5100), - [anon_sym_vararg] = ACTIONS(5100), - [anon_sym_noinline] = ACTIONS(5100), - [anon_sym_crossinline] = ACTIONS(5100), - [anon_sym_expect] = ACTIONS(5100), - [anon_sym_actual] = ACTIONS(5100), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5102), - [anon_sym_continue_AT] = ACTIONS(5102), - [anon_sym_break_AT] = ACTIONS(5102), - [sym_real_literal] = ACTIONS(5102), - [sym_integer_literal] = ACTIONS(5100), - [sym_hex_literal] = ACTIONS(5102), - [sym_bin_literal] = ACTIONS(5102), - [anon_sym_true] = ACTIONS(5100), - [anon_sym_false] = ACTIONS(5100), - [anon_sym_SQUOTE] = ACTIONS(5102), - [sym__backtick_identifier] = ACTIONS(5102), - [sym__automatic_semicolon] = ACTIONS(5102), - [sym_safe_nav] = ACTIONS(5102), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5102), - }, - [1192] = { - [sym__alpha_identifier] = ACTIONS(1582), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1582), - [anon_sym_fun] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_this] = ACTIONS(1582), - [anon_sym_super] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [sym_label] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(1582), - [anon_sym_try] = ACTIONS(1582), - [anon_sym_throw] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(1582), - [anon_sym_inner] = ACTIONS(1582), - [anon_sym_value] = ACTIONS(1582), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(1582), - [anon_sym_actual] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1580), - [anon_sym_continue_AT] = ACTIONS(1580), - [anon_sym_break_AT] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [sym_hex_literal] = ACTIONS(1580), - [sym_bin_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1580), - [sym__backtick_identifier] = ACTIONS(1580), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1580), - }, - [1193] = { - [sym__alpha_identifier] = ACTIONS(5104), - [anon_sym_AT] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5104), - [anon_sym_EQ] = ACTIONS(5104), - [anon_sym_LBRACE] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5104), - [anon_sym_object] = ACTIONS(5104), - [anon_sym_fun] = ACTIONS(5104), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_get] = ACTIONS(5104), - [anon_sym_set] = ACTIONS(5104), - [anon_sym_this] = ACTIONS(5104), - [anon_sym_super] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5104), - [sym_label] = ACTIONS(5104), - [anon_sym_in] = ACTIONS(5104), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_QMARK_COLON] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_null] = ACTIONS(5104), - [anon_sym_if] = ACTIONS(5104), - [anon_sym_else] = ACTIONS(5104), - [anon_sym_when] = ACTIONS(5104), - [anon_sym_try] = ACTIONS(5104), - [anon_sym_throw] = ACTIONS(5104), - [anon_sym_return] = ACTIONS(5104), - [anon_sym_continue] = ACTIONS(5104), - [anon_sym_break] = ACTIONS(5104), - [anon_sym_COLON_COLON] = ACTIONS(5106), - [anon_sym_PLUS_EQ] = ACTIONS(5106), - [anon_sym_DASH_EQ] = ACTIONS(5106), - [anon_sym_STAR_EQ] = ACTIONS(5106), - [anon_sym_SLASH_EQ] = ACTIONS(5106), - [anon_sym_PERCENT_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_BANGin] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5104), - [anon_sym_BANGis] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5104), - [anon_sym_as_QMARK] = ACTIONS(5106), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_BANG] = ACTIONS(5104), - [anon_sym_BANG_BANG] = ACTIONS(5106), - [anon_sym_suspend] = ACTIONS(5104), - [anon_sym_sealed] = ACTIONS(5104), - [anon_sym_annotation] = ACTIONS(5104), - [anon_sym_data] = ACTIONS(5104), - [anon_sym_inner] = ACTIONS(5104), - [anon_sym_value] = ACTIONS(5104), - [anon_sym_override] = ACTIONS(5104), - [anon_sym_lateinit] = ACTIONS(5104), - [anon_sym_public] = ACTIONS(5104), - [anon_sym_private] = ACTIONS(5104), - [anon_sym_internal] = ACTIONS(5104), - [anon_sym_protected] = ACTIONS(5104), - [anon_sym_tailrec] = ACTIONS(5104), - [anon_sym_operator] = ACTIONS(5104), - [anon_sym_infix] = ACTIONS(5104), - [anon_sym_inline] = ACTIONS(5104), - [anon_sym_external] = ACTIONS(5104), - [sym_property_modifier] = ACTIONS(5104), - [anon_sym_abstract] = ACTIONS(5104), - [anon_sym_final] = ACTIONS(5104), - [anon_sym_open] = ACTIONS(5104), - [anon_sym_vararg] = ACTIONS(5104), - [anon_sym_noinline] = ACTIONS(5104), - [anon_sym_crossinline] = ACTIONS(5104), - [anon_sym_expect] = ACTIONS(5104), - [anon_sym_actual] = ACTIONS(5104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5106), - [anon_sym_continue_AT] = ACTIONS(5106), - [anon_sym_break_AT] = ACTIONS(5106), - [sym_real_literal] = ACTIONS(5106), - [sym_integer_literal] = ACTIONS(5104), - [sym_hex_literal] = ACTIONS(5106), - [sym_bin_literal] = ACTIONS(5106), - [anon_sym_true] = ACTIONS(5104), - [anon_sym_false] = ACTIONS(5104), - [anon_sym_SQUOTE] = ACTIONS(5106), - [sym__backtick_identifier] = ACTIONS(5106), - [sym__automatic_semicolon] = ACTIONS(5106), - [sym_safe_nav] = ACTIONS(5106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5106), - }, - [1194] = { - [sym__alpha_identifier] = ACTIONS(5108), - [anon_sym_AT] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5108), - [anon_sym_EQ] = ACTIONS(5108), - [anon_sym_LBRACE] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5108), - [anon_sym_object] = ACTIONS(5108), - [anon_sym_fun] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_SEMI] = ACTIONS(5110), - [anon_sym_get] = ACTIONS(5108), - [anon_sym_set] = ACTIONS(5108), - [anon_sym_this] = ACTIONS(5108), - [anon_sym_super] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5108), - [sym_label] = ACTIONS(5108), - [anon_sym_in] = ACTIONS(5108), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_QMARK_COLON] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_null] = ACTIONS(5108), - [anon_sym_if] = ACTIONS(5108), - [anon_sym_else] = ACTIONS(5108), - [anon_sym_when] = ACTIONS(5108), - [anon_sym_try] = ACTIONS(5108), - [anon_sym_throw] = ACTIONS(5108), - [anon_sym_return] = ACTIONS(5108), - [anon_sym_continue] = ACTIONS(5108), - [anon_sym_break] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(5110), - [anon_sym_PLUS_EQ] = ACTIONS(5110), - [anon_sym_DASH_EQ] = ACTIONS(5110), - [anon_sym_STAR_EQ] = ACTIONS(5110), - [anon_sym_SLASH_EQ] = ACTIONS(5110), - [anon_sym_PERCENT_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_BANGin] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5108), - [anon_sym_BANGis] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5108), - [anon_sym_as_QMARK] = ACTIONS(5110), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_BANG_BANG] = ACTIONS(5110), - [anon_sym_suspend] = ACTIONS(5108), - [anon_sym_sealed] = ACTIONS(5108), - [anon_sym_annotation] = ACTIONS(5108), - [anon_sym_data] = ACTIONS(5108), - [anon_sym_inner] = ACTIONS(5108), - [anon_sym_value] = ACTIONS(5108), - [anon_sym_override] = ACTIONS(5108), - [anon_sym_lateinit] = ACTIONS(5108), - [anon_sym_public] = ACTIONS(5108), - [anon_sym_private] = ACTIONS(5108), - [anon_sym_internal] = ACTIONS(5108), - [anon_sym_protected] = ACTIONS(5108), - [anon_sym_tailrec] = ACTIONS(5108), - [anon_sym_operator] = ACTIONS(5108), - [anon_sym_infix] = ACTIONS(5108), - [anon_sym_inline] = ACTIONS(5108), - [anon_sym_external] = ACTIONS(5108), - [sym_property_modifier] = ACTIONS(5108), - [anon_sym_abstract] = ACTIONS(5108), - [anon_sym_final] = ACTIONS(5108), - [anon_sym_open] = ACTIONS(5108), - [anon_sym_vararg] = ACTIONS(5108), - [anon_sym_noinline] = ACTIONS(5108), - [anon_sym_crossinline] = ACTIONS(5108), - [anon_sym_expect] = ACTIONS(5108), - [anon_sym_actual] = ACTIONS(5108), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5110), - [anon_sym_continue_AT] = ACTIONS(5110), - [anon_sym_break_AT] = ACTIONS(5110), - [sym_real_literal] = ACTIONS(5110), - [sym_integer_literal] = ACTIONS(5108), - [sym_hex_literal] = ACTIONS(5110), - [sym_bin_literal] = ACTIONS(5110), - [anon_sym_true] = ACTIONS(5108), - [anon_sym_false] = ACTIONS(5108), - [anon_sym_SQUOTE] = ACTIONS(5110), - [sym__backtick_identifier] = ACTIONS(5110), - [sym__automatic_semicolon] = ACTIONS(5110), - [sym_safe_nav] = ACTIONS(5110), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5110), - }, - [1195] = { - [sym__alpha_identifier] = ACTIONS(5112), - [anon_sym_AT] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5112), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_LBRACE] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5112), - [anon_sym_object] = ACTIONS(5112), - [anon_sym_fun] = ACTIONS(5112), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_get] = ACTIONS(5112), - [anon_sym_set] = ACTIONS(5112), - [anon_sym_this] = ACTIONS(5112), - [anon_sym_super] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5112), - [sym_label] = ACTIONS(5112), - [anon_sym_in] = ACTIONS(5112), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_QMARK_COLON] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_else] = ACTIONS(5112), - [anon_sym_when] = ACTIONS(5112), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_throw] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_continue] = ACTIONS(5112), - [anon_sym_break] = ACTIONS(5112), - [anon_sym_COLON_COLON] = ACTIONS(5114), - [anon_sym_PLUS_EQ] = ACTIONS(5114), - [anon_sym_DASH_EQ] = ACTIONS(5114), - [anon_sym_STAR_EQ] = ACTIONS(5114), - [anon_sym_SLASH_EQ] = ACTIONS(5114), - [anon_sym_PERCENT_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_BANGin] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5112), - [anon_sym_BANGis] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5112), - [anon_sym_as_QMARK] = ACTIONS(5114), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_BANG_BANG] = ACTIONS(5114), - [anon_sym_suspend] = ACTIONS(5112), - [anon_sym_sealed] = ACTIONS(5112), - [anon_sym_annotation] = ACTIONS(5112), - [anon_sym_data] = ACTIONS(5112), - [anon_sym_inner] = ACTIONS(5112), - [anon_sym_value] = ACTIONS(5112), - [anon_sym_override] = ACTIONS(5112), - [anon_sym_lateinit] = ACTIONS(5112), - [anon_sym_public] = ACTIONS(5112), - [anon_sym_private] = ACTIONS(5112), - [anon_sym_internal] = ACTIONS(5112), - [anon_sym_protected] = ACTIONS(5112), - [anon_sym_tailrec] = ACTIONS(5112), - [anon_sym_operator] = ACTIONS(5112), - [anon_sym_infix] = ACTIONS(5112), - [anon_sym_inline] = ACTIONS(5112), - [anon_sym_external] = ACTIONS(5112), - [sym_property_modifier] = ACTIONS(5112), - [anon_sym_abstract] = ACTIONS(5112), - [anon_sym_final] = ACTIONS(5112), - [anon_sym_open] = ACTIONS(5112), - [anon_sym_vararg] = ACTIONS(5112), - [anon_sym_noinline] = ACTIONS(5112), - [anon_sym_crossinline] = ACTIONS(5112), - [anon_sym_expect] = ACTIONS(5112), - [anon_sym_actual] = ACTIONS(5112), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5114), - [anon_sym_continue_AT] = ACTIONS(5114), - [anon_sym_break_AT] = ACTIONS(5114), - [sym_real_literal] = ACTIONS(5114), - [sym_integer_literal] = ACTIONS(5112), - [sym_hex_literal] = ACTIONS(5114), - [sym_bin_literal] = ACTIONS(5114), - [anon_sym_true] = ACTIONS(5112), - [anon_sym_false] = ACTIONS(5112), - [anon_sym_SQUOTE] = ACTIONS(5114), - [sym__backtick_identifier] = ACTIONS(5114), - [sym__automatic_semicolon] = ACTIONS(5114), - [sym_safe_nav] = ACTIONS(5114), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5114), - }, - [1196] = { - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3278), - [anon_sym_sealed] = ACTIONS(3278), - [anon_sym_annotation] = ACTIONS(3278), - [anon_sym_data] = ACTIONS(3278), - [anon_sym_inner] = ACTIONS(3278), - [anon_sym_value] = ACTIONS(3278), - [anon_sym_override] = ACTIONS(3278), - [anon_sym_lateinit] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_internal] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_tailrec] = ACTIONS(3278), - [anon_sym_operator] = ACTIONS(3278), - [anon_sym_infix] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym_external] = ACTIONS(3278), - [sym_property_modifier] = ACTIONS(3278), - [anon_sym_abstract] = ACTIONS(3278), - [anon_sym_final] = ACTIONS(3278), - [anon_sym_open] = ACTIONS(3278), - [anon_sym_vararg] = ACTIONS(3278), - [anon_sym_noinline] = ACTIONS(3278), - [anon_sym_crossinline] = ACTIONS(3278), - [anon_sym_expect] = ACTIONS(3278), - [anon_sym_actual] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [1197] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [1185] = { + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [1186] = { + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [1187] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_as] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_object] = ACTIONS(5219), + [anon_sym_fun] = ACTIONS(5219), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_this] = ACTIONS(5219), + [anon_sym_super] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [sym_label] = ACTIONS(5219), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_QMARK_COLON] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_null] = ACTIONS(5219), + [anon_sym_if] = ACTIONS(5219), + [anon_sym_else] = ACTIONS(5219), + [anon_sym_when] = ACTIONS(5219), + [anon_sym_try] = ACTIONS(5219), + [anon_sym_throw] = ACTIONS(5219), + [anon_sym_return] = ACTIONS(5219), + [anon_sym_continue] = ACTIONS(5219), + [anon_sym_break] = ACTIONS(5219), + [anon_sym_COLON_COLON] = ACTIONS(5221), + [anon_sym_PLUS_EQ] = ACTIONS(5221), + [anon_sym_DASH_EQ] = ACTIONS(5221), + [anon_sym_STAR_EQ] = ACTIONS(5221), + [anon_sym_SLASH_EQ] = ACTIONS(5221), + [anon_sym_PERCENT_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5221), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_BANGin] = ACTIONS(5221), + [anon_sym_is] = ACTIONS(5219), + [anon_sym_BANGis] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_as_QMARK] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_BANG_BANG] = ACTIONS(5221), + [anon_sym_suspend] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_annotation] = ACTIONS(5219), + [anon_sym_data] = ACTIONS(5219), + [anon_sym_inner] = ACTIONS(5219), + [anon_sym_value] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_lateinit] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_tailrec] = ACTIONS(5219), + [anon_sym_operator] = ACTIONS(5219), + [anon_sym_infix] = ACTIONS(5219), + [anon_sym_inline] = ACTIONS(5219), + [anon_sym_external] = ACTIONS(5219), + [sym_property_modifier] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_final] = ACTIONS(5219), + [anon_sym_open] = ACTIONS(5219), + [anon_sym_vararg] = ACTIONS(5219), + [anon_sym_noinline] = ACTIONS(5219), + [anon_sym_crossinline] = ACTIONS(5219), + [anon_sym_expect] = ACTIONS(5219), + [anon_sym_actual] = ACTIONS(5219), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5221), + [anon_sym_continue_AT] = ACTIONS(5221), + [anon_sym_break_AT] = ACTIONS(5221), + [anon_sym_this_AT] = ACTIONS(5221), + [anon_sym_super_AT] = ACTIONS(5221), + [sym_real_literal] = ACTIONS(5221), + [sym_integer_literal] = ACTIONS(5219), + [sym_hex_literal] = ACTIONS(5221), + [sym_bin_literal] = ACTIONS(5221), + [anon_sym_true] = ACTIONS(5219), + [anon_sym_false] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5221), + [sym__backtick_identifier] = ACTIONS(5221), + [sym__automatic_semicolon] = ACTIONS(5221), + [sym_safe_nav] = ACTIONS(5221), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5221), + }, + [1188] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [1189] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [1190] = { + [sym_getter] = STATE(9131), + [sym_setter] = STATE(9131), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5247), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1191] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), + }, + [1192] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), + }, + [1193] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), + }, + [1194] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), + }, + [1195] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [1196] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [1197] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [1198] = { - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(4582), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_object] = ACTIONS(4580), - [anon_sym_fun] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_this] = ACTIONS(4580), - [anon_sym_super] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [sym_label] = ACTIONS(4580), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_when] = ACTIONS(4580), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_throw] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4582), - [anon_sym_continue_AT] = ACTIONS(4582), - [anon_sym_break_AT] = ACTIONS(4582), - [sym_real_literal] = ACTIONS(4582), - [sym_integer_literal] = ACTIONS(4580), - [sym_hex_literal] = ACTIONS(4582), - [sym_bin_literal] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_SQUOTE] = ACTIONS(4582), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4582), + [sym_type_constraints] = STATE(1362), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, [1199] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(1770), - [anon_sym_sealed] = ACTIONS(1770), - [anon_sym_annotation] = ACTIONS(1770), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_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), - [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), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, [1200] = { - [sym__alpha_identifier] = ACTIONS(5116), - [anon_sym_AT] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5116), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5116), - [anon_sym_object] = ACTIONS(5116), - [anon_sym_fun] = ACTIONS(5116), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_get] = ACTIONS(5116), - [anon_sym_set] = ACTIONS(5116), - [anon_sym_this] = ACTIONS(5116), - [anon_sym_super] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [sym_label] = ACTIONS(5116), - [anon_sym_in] = ACTIONS(5116), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_QMARK_COLON] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_null] = ACTIONS(5116), - [anon_sym_if] = ACTIONS(5116), - [anon_sym_else] = ACTIONS(5116), - [anon_sym_when] = ACTIONS(5116), - [anon_sym_try] = ACTIONS(5116), - [anon_sym_throw] = ACTIONS(5116), - [anon_sym_return] = ACTIONS(5116), - [anon_sym_continue] = ACTIONS(5116), - [anon_sym_break] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_BANGin] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5116), - [anon_sym_BANGis] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_as_QMARK] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_BANG_BANG] = ACTIONS(5118), - [anon_sym_suspend] = ACTIONS(5116), - [anon_sym_sealed] = ACTIONS(5116), - [anon_sym_annotation] = ACTIONS(5116), - [anon_sym_data] = ACTIONS(5116), - [anon_sym_inner] = ACTIONS(5116), - [anon_sym_value] = ACTIONS(5116), - [anon_sym_override] = ACTIONS(5116), - [anon_sym_lateinit] = ACTIONS(5116), - [anon_sym_public] = ACTIONS(5116), - [anon_sym_private] = ACTIONS(5116), - [anon_sym_internal] = ACTIONS(5116), - [anon_sym_protected] = ACTIONS(5116), - [anon_sym_tailrec] = ACTIONS(5116), - [anon_sym_operator] = ACTIONS(5116), - [anon_sym_infix] = ACTIONS(5116), - [anon_sym_inline] = ACTIONS(5116), - [anon_sym_external] = ACTIONS(5116), - [sym_property_modifier] = ACTIONS(5116), - [anon_sym_abstract] = ACTIONS(5116), - [anon_sym_final] = ACTIONS(5116), - [anon_sym_open] = ACTIONS(5116), - [anon_sym_vararg] = ACTIONS(5116), - [anon_sym_noinline] = ACTIONS(5116), - [anon_sym_crossinline] = ACTIONS(5116), - [anon_sym_expect] = ACTIONS(5116), - [anon_sym_actual] = ACTIONS(5116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5118), - [anon_sym_continue_AT] = ACTIONS(5118), - [anon_sym_break_AT] = ACTIONS(5118), - [sym_real_literal] = ACTIONS(5118), - [sym_integer_literal] = ACTIONS(5116), - [sym_hex_literal] = ACTIONS(5118), - [sym_bin_literal] = ACTIONS(5118), - [anon_sym_true] = ACTIONS(5116), - [anon_sym_false] = ACTIONS(5116), - [anon_sym_SQUOTE] = ACTIONS(5118), - [sym__backtick_identifier] = ACTIONS(5118), - [sym__automatic_semicolon] = ACTIONS(5118), - [sym_safe_nav] = ACTIONS(5118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5118), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [1201] = { - [sym__alpha_identifier] = ACTIONS(5120), - [anon_sym_AT] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5120), - [anon_sym_object] = ACTIONS(5120), - [anon_sym_fun] = ACTIONS(5120), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_get] = ACTIONS(5120), - [anon_sym_set] = ACTIONS(5120), - [anon_sym_this] = ACTIONS(5120), - [anon_sym_super] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [sym_label] = ACTIONS(5120), - [anon_sym_in] = ACTIONS(5120), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_QMARK_COLON] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5120), - [anon_sym_if] = ACTIONS(5120), - [anon_sym_else] = ACTIONS(5120), - [anon_sym_when] = ACTIONS(5120), - [anon_sym_try] = ACTIONS(5120), - [anon_sym_throw] = ACTIONS(5120), - [anon_sym_return] = ACTIONS(5120), - [anon_sym_continue] = ACTIONS(5120), - [anon_sym_break] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_BANGin] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5120), - [anon_sym_BANGis] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_as_QMARK] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_BANG_BANG] = ACTIONS(5122), - [anon_sym_suspend] = ACTIONS(5120), - [anon_sym_sealed] = ACTIONS(5120), - [anon_sym_annotation] = ACTIONS(5120), - [anon_sym_data] = ACTIONS(5120), - [anon_sym_inner] = ACTIONS(5120), - [anon_sym_value] = ACTIONS(5120), - [anon_sym_override] = ACTIONS(5120), - [anon_sym_lateinit] = ACTIONS(5120), - [anon_sym_public] = ACTIONS(5120), - [anon_sym_private] = ACTIONS(5120), - [anon_sym_internal] = ACTIONS(5120), - [anon_sym_protected] = ACTIONS(5120), - [anon_sym_tailrec] = ACTIONS(5120), - [anon_sym_operator] = ACTIONS(5120), - [anon_sym_infix] = ACTIONS(5120), - [anon_sym_inline] = ACTIONS(5120), - [anon_sym_external] = ACTIONS(5120), - [sym_property_modifier] = ACTIONS(5120), - [anon_sym_abstract] = ACTIONS(5120), - [anon_sym_final] = ACTIONS(5120), - [anon_sym_open] = ACTIONS(5120), - [anon_sym_vararg] = ACTIONS(5120), - [anon_sym_noinline] = ACTIONS(5120), - [anon_sym_crossinline] = ACTIONS(5120), - [anon_sym_expect] = ACTIONS(5120), - [anon_sym_actual] = ACTIONS(5120), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5122), - [anon_sym_continue_AT] = ACTIONS(5122), - [anon_sym_break_AT] = ACTIONS(5122), - [sym_real_literal] = ACTIONS(5122), - [sym_integer_literal] = ACTIONS(5120), - [sym_hex_literal] = ACTIONS(5122), - [sym_bin_literal] = ACTIONS(5122), - [anon_sym_true] = ACTIONS(5120), - [anon_sym_false] = ACTIONS(5120), - [anon_sym_SQUOTE] = ACTIONS(5122), - [sym__backtick_identifier] = ACTIONS(5122), - [sym__automatic_semicolon] = ACTIONS(5122), - [sym_safe_nav] = ACTIONS(5122), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5122), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), }, [1202] = { - [sym__alpha_identifier] = ACTIONS(5124), - [anon_sym_AT] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5124), - [anon_sym_object] = ACTIONS(5124), - [anon_sym_fun] = ACTIONS(5124), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_get] = ACTIONS(5124), - [anon_sym_set] = ACTIONS(5124), - [anon_sym_this] = ACTIONS(5124), - [anon_sym_super] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [sym_label] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_QMARK_COLON] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5124), - [anon_sym_if] = ACTIONS(5124), - [anon_sym_else] = ACTIONS(5124), - [anon_sym_when] = ACTIONS(5124), - [anon_sym_try] = ACTIONS(5124), - [anon_sym_throw] = ACTIONS(5124), - [anon_sym_return] = ACTIONS(5124), - [anon_sym_continue] = ACTIONS(5124), - [anon_sym_break] = ACTIONS(5124), - [anon_sym_COLON_COLON] = ACTIONS(5126), - [anon_sym_PLUS_EQ] = ACTIONS(5126), - [anon_sym_DASH_EQ] = ACTIONS(5126), - [anon_sym_STAR_EQ] = ACTIONS(5126), - [anon_sym_SLASH_EQ] = ACTIONS(5126), - [anon_sym_PERCENT_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5124), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5124), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_BANGin] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5124), - [anon_sym_BANGis] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_as_QMARK] = ACTIONS(5126), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_BANG_BANG] = ACTIONS(5126), - [anon_sym_suspend] = ACTIONS(5124), - [anon_sym_sealed] = ACTIONS(5124), - [anon_sym_annotation] = ACTIONS(5124), - [anon_sym_data] = ACTIONS(5124), - [anon_sym_inner] = ACTIONS(5124), - [anon_sym_value] = ACTIONS(5124), - [anon_sym_override] = ACTIONS(5124), - [anon_sym_lateinit] = ACTIONS(5124), - [anon_sym_public] = ACTIONS(5124), - [anon_sym_private] = ACTIONS(5124), - [anon_sym_internal] = ACTIONS(5124), - [anon_sym_protected] = ACTIONS(5124), - [anon_sym_tailrec] = ACTIONS(5124), - [anon_sym_operator] = ACTIONS(5124), - [anon_sym_infix] = ACTIONS(5124), - [anon_sym_inline] = ACTIONS(5124), - [anon_sym_external] = ACTIONS(5124), - [sym_property_modifier] = ACTIONS(5124), - [anon_sym_abstract] = ACTIONS(5124), - [anon_sym_final] = ACTIONS(5124), - [anon_sym_open] = ACTIONS(5124), - [anon_sym_vararg] = ACTIONS(5124), - [anon_sym_noinline] = ACTIONS(5124), - [anon_sym_crossinline] = ACTIONS(5124), - [anon_sym_expect] = ACTIONS(5124), - [anon_sym_actual] = ACTIONS(5124), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5126), - [anon_sym_continue_AT] = ACTIONS(5126), - [anon_sym_break_AT] = ACTIONS(5126), - [sym_real_literal] = ACTIONS(5126), - [sym_integer_literal] = ACTIONS(5124), - [sym_hex_literal] = ACTIONS(5126), - [sym_bin_literal] = ACTIONS(5126), - [anon_sym_true] = ACTIONS(5124), - [anon_sym_false] = ACTIONS(5124), - [anon_sym_SQUOTE] = ACTIONS(5126), - [sym__backtick_identifier] = ACTIONS(5126), - [sym__automatic_semicolon] = ACTIONS(5126), - [sym_safe_nav] = ACTIONS(5126), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5126), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1203] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4394), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_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), - [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), + [sym_getter] = STATE(9150), + [sym_setter] = STATE(9150), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5257), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1204] = { - [sym__alpha_identifier] = ACTIONS(5128), - [anon_sym_AT] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5128), - [anon_sym_EQ] = ACTIONS(5128), - [anon_sym_LBRACE] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5128), - [anon_sym_object] = ACTIONS(5128), - [anon_sym_fun] = ACTIONS(5128), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_get] = ACTIONS(5128), - [anon_sym_set] = ACTIONS(5128), - [anon_sym_this] = ACTIONS(5128), - [anon_sym_super] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5128), - [sym_label] = ACTIONS(5128), - [anon_sym_in] = ACTIONS(5128), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_QMARK_COLON] = ACTIONS(5130), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_null] = ACTIONS(5128), - [anon_sym_if] = ACTIONS(5128), - [anon_sym_else] = ACTIONS(5128), - [anon_sym_when] = ACTIONS(5128), - [anon_sym_try] = ACTIONS(5128), - [anon_sym_throw] = ACTIONS(5128), - [anon_sym_return] = ACTIONS(5128), - [anon_sym_continue] = ACTIONS(5128), - [anon_sym_break] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(5130), - [anon_sym_PLUS_EQ] = ACTIONS(5130), - [anon_sym_DASH_EQ] = ACTIONS(5130), - [anon_sym_STAR_EQ] = ACTIONS(5130), - [anon_sym_SLASH_EQ] = ACTIONS(5130), - [anon_sym_PERCENT_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5128), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5128), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_BANGin] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5128), - [anon_sym_BANGis] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5128), - [anon_sym_as_QMARK] = ACTIONS(5130), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_BANG_BANG] = ACTIONS(5130), - [anon_sym_suspend] = ACTIONS(5128), - [anon_sym_sealed] = ACTIONS(5128), - [anon_sym_annotation] = ACTIONS(5128), - [anon_sym_data] = ACTIONS(5128), - [anon_sym_inner] = ACTIONS(5128), - [anon_sym_value] = ACTIONS(5128), - [anon_sym_override] = ACTIONS(5128), - [anon_sym_lateinit] = ACTIONS(5128), - [anon_sym_public] = ACTIONS(5128), - [anon_sym_private] = ACTIONS(5128), - [anon_sym_internal] = ACTIONS(5128), - [anon_sym_protected] = ACTIONS(5128), - [anon_sym_tailrec] = ACTIONS(5128), - [anon_sym_operator] = ACTIONS(5128), - [anon_sym_infix] = ACTIONS(5128), - [anon_sym_inline] = ACTIONS(5128), - [anon_sym_external] = ACTIONS(5128), - [sym_property_modifier] = ACTIONS(5128), - [anon_sym_abstract] = ACTIONS(5128), - [anon_sym_final] = ACTIONS(5128), - [anon_sym_open] = ACTIONS(5128), - [anon_sym_vararg] = ACTIONS(5128), - [anon_sym_noinline] = ACTIONS(5128), - [anon_sym_crossinline] = ACTIONS(5128), - [anon_sym_expect] = ACTIONS(5128), - [anon_sym_actual] = ACTIONS(5128), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5130), - [anon_sym_continue_AT] = ACTIONS(5130), - [anon_sym_break_AT] = ACTIONS(5130), - [sym_real_literal] = ACTIONS(5130), - [sym_integer_literal] = ACTIONS(5128), - [sym_hex_literal] = ACTIONS(5130), - [sym_bin_literal] = ACTIONS(5130), - [anon_sym_true] = ACTIONS(5128), - [anon_sym_false] = ACTIONS(5128), - [anon_sym_SQUOTE] = ACTIONS(5130), - [sym__backtick_identifier] = ACTIONS(5130), - [sym__automatic_semicolon] = ACTIONS(5130), - [sym_safe_nav] = ACTIONS(5130), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5130), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1205] = { - [sym__alpha_identifier] = ACTIONS(5132), - [anon_sym_AT] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5132), - [anon_sym_LBRACE] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5132), - [anon_sym_object] = ACTIONS(5132), - [anon_sym_fun] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_SEMI] = ACTIONS(5134), - [anon_sym_get] = ACTIONS(5132), - [anon_sym_set] = ACTIONS(5132), - [anon_sym_this] = ACTIONS(5132), - [anon_sym_super] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5132), - [sym_label] = ACTIONS(5132), - [anon_sym_in] = ACTIONS(5132), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_QMARK_COLON] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_null] = ACTIONS(5132), - [anon_sym_if] = ACTIONS(5132), - [anon_sym_else] = ACTIONS(5132), - [anon_sym_when] = ACTIONS(5132), - [anon_sym_try] = ACTIONS(5132), - [anon_sym_throw] = ACTIONS(5132), - [anon_sym_return] = ACTIONS(5132), - [anon_sym_continue] = ACTIONS(5132), - [anon_sym_break] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5134), - [anon_sym_PLUS_EQ] = ACTIONS(5134), - [anon_sym_DASH_EQ] = ACTIONS(5134), - [anon_sym_STAR_EQ] = ACTIONS(5134), - [anon_sym_SLASH_EQ] = ACTIONS(5134), - [anon_sym_PERCENT_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_BANGin] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5132), - [anon_sym_BANGis] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5132), - [anon_sym_as_QMARK] = ACTIONS(5134), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(5132), - [anon_sym_BANG_BANG] = ACTIONS(5134), - [anon_sym_suspend] = ACTIONS(5132), - [anon_sym_sealed] = ACTIONS(5132), - [anon_sym_annotation] = ACTIONS(5132), - [anon_sym_data] = ACTIONS(5132), - [anon_sym_inner] = ACTIONS(5132), - [anon_sym_value] = ACTIONS(5132), - [anon_sym_override] = ACTIONS(5132), - [anon_sym_lateinit] = ACTIONS(5132), - [anon_sym_public] = ACTIONS(5132), - [anon_sym_private] = ACTIONS(5132), - [anon_sym_internal] = ACTIONS(5132), - [anon_sym_protected] = ACTIONS(5132), - [anon_sym_tailrec] = ACTIONS(5132), - [anon_sym_operator] = ACTIONS(5132), - [anon_sym_infix] = ACTIONS(5132), - [anon_sym_inline] = ACTIONS(5132), - [anon_sym_external] = ACTIONS(5132), - [sym_property_modifier] = ACTIONS(5132), - [anon_sym_abstract] = ACTIONS(5132), - [anon_sym_final] = ACTIONS(5132), - [anon_sym_open] = ACTIONS(5132), - [anon_sym_vararg] = ACTIONS(5132), - [anon_sym_noinline] = ACTIONS(5132), - [anon_sym_crossinline] = ACTIONS(5132), - [anon_sym_expect] = ACTIONS(5132), - [anon_sym_actual] = ACTIONS(5132), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5134), - [anon_sym_continue_AT] = ACTIONS(5134), - [anon_sym_break_AT] = ACTIONS(5134), - [sym_real_literal] = ACTIONS(5134), - [sym_integer_literal] = ACTIONS(5132), - [sym_hex_literal] = ACTIONS(5134), - [sym_bin_literal] = ACTIONS(5134), - [anon_sym_true] = ACTIONS(5132), - [anon_sym_false] = ACTIONS(5132), - [anon_sym_SQUOTE] = ACTIONS(5134), - [sym__backtick_identifier] = ACTIONS(5134), - [sym__automatic_semicolon] = ACTIONS(5134), - [sym_safe_nav] = ACTIONS(5134), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5134), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1206] = { - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3173), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1207] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), + [sym_type_constraints] = STATE(1367), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1208] = { - [sym_getter] = STATE(9575), - [sym_setter] = STATE(9575), - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_modifiers] = STATE(9362), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(6191), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(5136), - [anon_sym_get] = ACTIONS(4843), - [anon_sym_set] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), + }, + [1209] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [1210] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1211] = { + [sym_getter] = STATE(9460), + [sym_setter] = STATE(9460), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5261), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1748), - [anon_sym_inner] = ACTIONS(1748), - [anon_sym_value] = ACTIONS(1748), + [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), @@ -183117,9101 +187175,6254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1750), - [anon_sym_actual] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1209] = { - [sym__alpha_identifier] = ACTIONS(5138), - [anon_sym_AT] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_object] = ACTIONS(5138), - [anon_sym_fun] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_get] = ACTIONS(5138), - [anon_sym_set] = ACTIONS(5138), - [anon_sym_this] = ACTIONS(5138), - [anon_sym_super] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [sym_label] = ACTIONS(5138), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_QMARK_COLON] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_null] = ACTIONS(5138), - [anon_sym_if] = ACTIONS(5138), - [anon_sym_else] = ACTIONS(5138), - [anon_sym_when] = ACTIONS(5138), - [anon_sym_try] = ACTIONS(5138), - [anon_sym_throw] = ACTIONS(5138), - [anon_sym_return] = ACTIONS(5138), - [anon_sym_continue] = ACTIONS(5138), - [anon_sym_break] = ACTIONS(5138), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_PLUS_EQ] = ACTIONS(5140), - [anon_sym_DASH_EQ] = ACTIONS(5140), - [anon_sym_STAR_EQ] = ACTIONS(5140), - [anon_sym_SLASH_EQ] = ACTIONS(5140), - [anon_sym_PERCENT_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_BANGin] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_BANGis] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_as_QMARK] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_BANG_BANG] = ACTIONS(5140), - [anon_sym_suspend] = ACTIONS(5138), - [anon_sym_sealed] = ACTIONS(5138), - [anon_sym_annotation] = ACTIONS(5138), - [anon_sym_data] = ACTIONS(5138), - [anon_sym_inner] = ACTIONS(5138), - [anon_sym_value] = ACTIONS(5138), - [anon_sym_override] = ACTIONS(5138), - [anon_sym_lateinit] = ACTIONS(5138), - [anon_sym_public] = ACTIONS(5138), - [anon_sym_private] = ACTIONS(5138), - [anon_sym_internal] = ACTIONS(5138), - [anon_sym_protected] = ACTIONS(5138), - [anon_sym_tailrec] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5138), - [anon_sym_infix] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5138), - [anon_sym_external] = ACTIONS(5138), - [sym_property_modifier] = ACTIONS(5138), - [anon_sym_abstract] = ACTIONS(5138), - [anon_sym_final] = ACTIONS(5138), - [anon_sym_open] = ACTIONS(5138), - [anon_sym_vararg] = ACTIONS(5138), - [anon_sym_noinline] = ACTIONS(5138), - [anon_sym_crossinline] = ACTIONS(5138), - [anon_sym_expect] = ACTIONS(5138), - [anon_sym_actual] = ACTIONS(5138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5140), - [anon_sym_continue_AT] = ACTIONS(5140), - [anon_sym_break_AT] = ACTIONS(5140), - [sym_real_literal] = ACTIONS(5140), - [sym_integer_literal] = ACTIONS(5138), - [sym_hex_literal] = ACTIONS(5140), - [sym_bin_literal] = ACTIONS(5140), - [anon_sym_true] = ACTIONS(5138), - [anon_sym_false] = ACTIONS(5138), - [anon_sym_SQUOTE] = ACTIONS(5140), - [sym__backtick_identifier] = ACTIONS(5140), - [sym__automatic_semicolon] = ACTIONS(5140), - [sym_safe_nav] = ACTIONS(5140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5140), - }, - [1210] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), - }, - [1211] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), - }, [1212] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym_getter] = STATE(9156), + [sym_setter] = STATE(9156), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5263), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1213] = { - [sym_type_constraints] = STATE(1308), - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(5166), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_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), }, [1214] = { - [sym_type_constraints] = STATE(1309), - [sym_function_body] = STATE(1113), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(5170), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [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(3178), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [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_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(4124), - [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_getter] = STATE(9110), + [sym_setter] = STATE(9110), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5265), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), }, [1215] = { - [sym_type_constraints] = STATE(1301), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1216] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1217] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1218] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1219] = { - [sym_type_constraints] = STATE(1304), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1220] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1221] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1222] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1223] = { - [sym_primary_constructor] = STATE(2910), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1286), - [sym_type_constraints] = STATE(3132), - [sym_enum_class_body] = STATE(3493), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [1224] = { - [sym_primary_constructor] = STATE(4536), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1296), - [sym_type_constraints] = STATE(4601), - [sym_enum_class_body] = STATE(4757), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1225] = { - [sym_type_constraints] = STATE(1303), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(5206), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [1226] = { - [sym_primary_constructor] = STATE(4526), - [sym_class_body] = STATE(4763), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1291), - [sym_type_constraints] = STATE(4631), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1227] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym_type_constraints] = STATE(1371), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1228] = { - [sym_primary_constructor] = STATE(2898), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1251), - [sym_type_constraints] = STATE(3097), - [sym_enum_class_body] = STATE(3415), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [sym_getter] = STATE(9265), + [sym_setter] = STATE(9265), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_modifiers] = STATE(9322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(5273), + [anon_sym_get] = ACTIONS(5249), + [anon_sym_set] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1229] = { - [sym_primary_constructor] = STATE(4530), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1292), - [sym_type_constraints] = STATE(4588), - [sym_enum_class_body] = STATE(4705), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5214), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1230] = { - [sym_primary_constructor] = STATE(2892), - [sym_class_body] = STATE(3312), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1248), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1681), + [sym__in_operator] = STATE(1680), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1678), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1677), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5239), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5239), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_BANGin] = ACTIONS(5243), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [1231] = { - [sym_primary_constructor] = STATE(4541), - [sym_class_body] = STATE(4705), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1293), - [sym_type_constraints] = STATE(4582), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1232] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym_type_constraints] = STATE(1369), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [1233] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1234] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2143), + [sym__in_operator] = STATE(2145), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2149), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2156), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3578), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), + [anon_sym_EQ_EQ] = ACTIONS(3604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [anon_sym_LT_EQ] = ACTIONS(3608), + [anon_sym_GT_EQ] = ACTIONS(3608), + [anon_sym_BANGin] = ACTIONS(3610), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1235] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym_type_constraints] = STATE(1368), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1236] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [1237] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [1238] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5293), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2804), + [sym_label] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), + [sym_line_comment] = ACTIONS(3), + [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), }, [1239] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym__expression] = STATE(3921), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5302), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2521), + [sym_label] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), }, [1240] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [1241] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(1834), - [sym__comparison_operator] = STATE(1830), - [sym__in_operator] = STATE(1828), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(1827), - [sym__multiplicative_operator] = STATE(1826), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1824), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(5144), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(5164), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5310), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2209), + [sym_label] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), + [sym_line_comment] = ACTIONS(3), + [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), }, [1242] = { - [sym_primary_constructor] = STATE(2899), - [sym_class_body] = STATE(3415), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1252), - [sym_type_constraints] = STATE(3140), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5222), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5316), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(3046), + [sym_label] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [1243] = { - [sym_type_constraints] = STATE(1304), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [1244] = { - [sym_type_constraints] = STATE(1510), - [sym_function_body] = STATE(1113), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [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_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(4124), - [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_getter] = STATE(9565), + [sym_setter] = STATE(9565), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), + }, + [1244] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [1245] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5335), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2429), + [sym_label] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, [1246] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5341), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2958), + [sym_label] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [anon_sym_super_AT] = ACTIONS(2471), + [sym_real_literal] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2477), + [sym_hex_literal] = ACTIONS(2480), + [sym_bin_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2486), + [sym__backtick_identifier] = ACTIONS(2489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2492), }, [1247] = { - [sym_type_constraints] = STATE(1533), - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5347), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2848), + [sym_label] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [1248] = { - [sym_primary_constructor] = STATE(2896), - [sym_class_body] = STATE(3392), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3092), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5238), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5353), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2282), + [sym_label] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, [1249] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4242), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5356), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2914), + [sym_label] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [1250] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1373), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [1251] = { - [sym_primary_constructor] = STATE(2900), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5359), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [1252] = { - [sym_primary_constructor] = STATE(2905), - [sym_class_body] = STATE(3182), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3135), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5242), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(5361), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5359), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [1253] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1372), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [1254] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1371), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1255] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5363), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2668), + [sym_label] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [1256] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1369), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [1257] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5290), + [anon_sym_fun] = ACTIONS(5366), + [anon_sym_get] = ACTIONS(5296), + [anon_sym_set] = ACTIONS(5296), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(3024), + [sym_label] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(5296), + [anon_sym_inner] = ACTIONS(5296), + [anon_sym_value] = ACTIONS(5296), + [anon_sym_expect] = ACTIONS(5296), + [anon_sym_actual] = ACTIONS(5296), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2242), + [anon_sym_continue_AT] = ACTIONS(2245), + [anon_sym_break_AT] = ACTIONS(2248), + [anon_sym_this_AT] = ACTIONS(2251), + [anon_sym_super_AT] = ACTIONS(2254), + [sym_real_literal] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2260), + [sym_hex_literal] = ACTIONS(2263), + [sym_bin_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym__backtick_identifier] = ACTIONS(2272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2275), }, [1258] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(3598), + [sym_type_constraints] = STATE(1368), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1259] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(5369), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [1260] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2936), + [sym_label] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), + [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), }, [1261] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3598), + [sym_getter] = STATE(9655), + [sym_setter] = STATE(9655), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5380), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1262] = { - [sym_type_constraints] = STATE(1441), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(5244), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5382), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2826), + [sym_label] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2146), + [anon_sym_break_AT] = ACTIONS(2149), + [anon_sym_this_AT] = ACTIONS(2152), + [anon_sym_super_AT] = ACTIONS(2155), + [sym_real_literal] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2161), + [sym_hex_literal] = ACTIONS(2164), + [sym_bin_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym__backtick_identifier] = ACTIONS(2173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2176), }, [1263] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [1264] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym_type_constraints] = STATE(2103), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(5385), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1265] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5389), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [1266] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(3598), + [sym_getter] = STATE(9634), + [sym_setter] = STATE(9634), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5393), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1267] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(5395), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, [1268] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [1269] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5399), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2738), + [sym_label] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, [1270] = { - [sym_type_constraints] = STATE(1549), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5402), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2760), + [sym_label] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), }, [1271] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5252), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), - }, - [1272] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5254), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), - }, - [1273] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(5256), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), - }, - [1274] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), - }, - [1275] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1276] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1277] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1278] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [1279] = { - [sym_type_constraints] = STATE(1519), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(5264), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [1280] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5266), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [1281] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2177), - [sym__comparison_operator] = STATE(2171), - [sym__in_operator] = STATE(2170), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2169), - [sym__multiplicative_operator] = STATE(2168), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2167), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3055), - [anon_sym_sealed] = ACTIONS(3055), - [anon_sym_annotation] = ACTIONS(3055), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3055), - [anon_sym_lateinit] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_internal] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_tailrec] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_infix] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym_external] = ACTIONS(3055), - [sym_property_modifier] = ACTIONS(3055), - [anon_sym_abstract] = ACTIONS(3055), - [anon_sym_final] = ACTIONS(3055), - [anon_sym_open] = ACTIONS(3055), - [anon_sym_vararg] = ACTIONS(3055), - [anon_sym_noinline] = ACTIONS(3055), - [anon_sym_crossinline] = ACTIONS(3055), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1282] = { - [sym_type_constraints] = STATE(1299), - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), - }, - [1283] = { - [sym_function_body] = STATE(1062), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [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_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), - }, - [1284] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(5272), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), - }, - [1285] = { - [sym_type_constraints] = STATE(1300), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), - }, - [1286] = { - [sym_primary_constructor] = STATE(2911), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [1287] = { - [sym_type_constraints] = STATE(1301), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), - }, - [1288] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(5276), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [1289] = { - [sym_type_constraints] = STATE(1303), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [1290] = { - [sym_function_body] = STATE(1090), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(5278), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [1291] = { - [sym_primary_constructor] = STATE(4529), - [sym_class_body] = STATE(4695), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4589), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5280), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [1292] = { - [sym_primary_constructor] = STATE(4538), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4607), - [sym_enum_class_body] = STATE(4822), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5282), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [1293] = { - [sym_primary_constructor] = STATE(4537), - [sym_class_body] = STATE(4822), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4599), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5284), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [1294] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5286), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [1295] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(5290), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(5272), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), - }, - [1296] = { - [sym_primary_constructor] = STATE(4540), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4613), - [sym_enum_class_body] = STATE(4723), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [1297] = { - [sym_type_constraints] = STATE(1389), - [sym_property_delegate] = STATE(1634), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5294), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5298), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(9599), + [sym_setter] = STATE(9599), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5405), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -192230,493 +193441,924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1298] = { - [sym_class_body] = STATE(1206), - [sym_type_constraints] = STATE(947), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [1272] = { + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5407), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2499), + [sym_label] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2462), + [anon_sym_break_AT] = ACTIONS(2465), + [anon_sym_this_AT] = ACTIONS(2468), + [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), }, - [1299] = { - [sym_function_body] = STATE(1191), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [1273] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5389), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, - [1300] = { - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [1274] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5410), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, - [1301] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [1275] = { + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_object] = ACTIONS(5332), + [anon_sym_fun] = ACTIONS(5414), + [anon_sym_get] = ACTIONS(5338), + [anon_sym_set] = ACTIONS(5338), + [anon_sym_this] = ACTIONS(2423), + [anon_sym_super] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2892), + [sym_label] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_when] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_data] = ACTIONS(5338), + [anon_sym_inner] = ACTIONS(5338), + [anon_sym_value] = ACTIONS(5338), + [anon_sym_expect] = ACTIONS(5338), + [anon_sym_actual] = ACTIONS(5338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(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), }, - [1302] = { - [sym_type_constraints] = STATE(1373), - [sym_property_delegate] = STATE(1565), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5304), - [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(5296), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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), + [1276] = { + [sym__expression] = STATE(4114), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5417), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2980), + [sym_label] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), + }, + [1277] = { + [sym_type_constraints] = STATE(1918), + [sym_function_body] = STATE(1014), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [1278] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [1279] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(5426), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [1280] = { + [sym_getter] = STATE(9522), + [sym_setter] = STATE(9522), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5428), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -192735,291 +194377,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1303] = { - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [1281] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, - [1304] = { - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [1282] = { + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(5313), + [anon_sym_fun] = ACTIONS(5432), + [anon_sym_get] = ACTIONS(5319), + [anon_sym_set] = ACTIONS(5319), + [anon_sym_this] = ACTIONS(2563), + [anon_sym_super] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2569), + [sym_label] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_when] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_data] = ACTIONS(5319), + [anon_sym_inner] = ACTIONS(5319), + [anon_sym_value] = ACTIONS(5319), + [anon_sym_expect] = ACTIONS(5319), + [anon_sym_actual] = ACTIONS(5319), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2605), + [anon_sym_break_AT] = ACTIONS(2608), + [anon_sym_this_AT] = ACTIONS(2611), + [anon_sym_super_AT] = ACTIONS(2614), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2620), + [sym_hex_literal] = ACTIONS(2623), + [sym_bin_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym__backtick_identifier] = ACTIONS(2632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2635), }, - [1305] = { - [sym_type_constraints] = STATE(1380), - [sym_property_delegate] = STATE(1607), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [1283] = { + [sym_getter] = STATE(9620), + [sym_setter] = STATE(9620), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_modifiers] = STATE(9271), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5997), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(5435), + [anon_sym_get] = ACTIONS(5324), + [anon_sym_set] = ACTIONS(5326), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1784), + [anon_sym_inner] = ACTIONS(1784), + [anon_sym_value] = ACTIONS(1784), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -193038,41096 +194689,46999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [1306] = { - [sym_type_constraints] = STATE(1549), - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [1284] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [1307] = { - [sym_type_constraints] = STATE(1417), - [sym_property_delegate] = STATE(1615), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5312), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5314), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [1285] = { + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5439), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(3002), + [sym_label] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2143), + [anon_sym_continue_AT] = ACTIONS(2146), + [anon_sym_break_AT] = ACTIONS(2149), + [anon_sym_this_AT] = ACTIONS(2152), + [anon_sym_super_AT] = ACTIONS(2155), + [sym_real_literal] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2161), + [sym_hex_literal] = ACTIONS(2164), + [sym_bin_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym__backtick_identifier] = ACTIONS(2173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2176), + }, + [1286] = { + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5442), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2782), + [sym_label] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_data] = ACTIONS(5350), + [anon_sym_inner] = ACTIONS(5350), + [anon_sym_value] = ACTIONS(5350), + [anon_sym_expect] = ACTIONS(5350), + [anon_sym_actual] = ACTIONS(5350), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_continue_AT] = ACTIONS(2701), + [anon_sym_break_AT] = ACTIONS(2704), + [anon_sym_this_AT] = ACTIONS(2707), + [anon_sym_super_AT] = ACTIONS(2710), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2716), + [sym_hex_literal] = ACTIONS(2719), + [sym_bin_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2725), + [sym__backtick_identifier] = ACTIONS(2728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2731), + }, + [1287] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [1288] = { + [sym__expression] = STATE(3296), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5449), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2870), + [sym_label] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), + }, + [1289] = { + [sym_type_constraints] = STATE(2157), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1290] = { + [sym_type_constraints] = STATE(2187), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [1291] = { + [sym_type_constraints] = STATE(2002), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(5456), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [1292] = { + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5371), + [anon_sym_fun] = ACTIONS(5458), + [anon_sym_get] = ACTIONS(5377), + [anon_sym_set] = ACTIONS(5377), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2108), + [sym_label] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_data] = ACTIONS(5377), + [anon_sym_inner] = ACTIONS(5377), + [anon_sym_value] = ACTIONS(5377), + [anon_sym_expect] = ACTIONS(5377), + [anon_sym_actual] = ACTIONS(5377), + [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(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_object] = ACTIONS(5299), + [anon_sym_fun] = ACTIONS(5461), + [anon_sym_get] = ACTIONS(5305), + [anon_sym_set] = ACTIONS(5305), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2330), + [sym_label] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_when] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_data] = ACTIONS(5305), + [anon_sym_inner] = ACTIONS(5305), + [anon_sym_value] = ACTIONS(5305), + [anon_sym_expect] = ACTIONS(5305), + [anon_sym_actual] = ACTIONS(5305), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2363), + [anon_sym_continue_AT] = ACTIONS(2366), + [anon_sym_break_AT] = ACTIONS(2369), + [anon_sym_this_AT] = ACTIONS(2372), + [anon_sym_super_AT] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2381), + [sym_hex_literal] = ACTIONS(2384), + [sym_bin_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym__backtick_identifier] = ACTIONS(2393), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2396), + }, + [1294] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9062), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5464), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1295] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [1296] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1297] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8826), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1298] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8968), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5474), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1299] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5476), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1300] = { + [sym_type_constraints] = STATE(2002), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [1301] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1302] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9005), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5480), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1303] = { + [sym_primary_constructor] = STATE(2986), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1422), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [1304] = { + [sym_primary_constructor] = STATE(2988), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1421), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, + [1305] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1306] = { + [sym_type_constraints] = STATE(2157), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [1307] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8998), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, [1308] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1309] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8994), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1310] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9014), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1311] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1312] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1313] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9091), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1314] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1315] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1316] = { - [sym_type_constraints] = STATE(1524), - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1317] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym_primary_constructor] = STATE(2983), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1425), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, [1318] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1319] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1320] = { - [sym_type_constraints] = STATE(1519), - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1321] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1322] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8923), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1323] = { - [sym_function_body] = STATE(1089), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym_primary_constructor] = STATE(2998), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(1389), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), }, [1324] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1325] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1326] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3408), + [sym_type_constraints] = STATE(2187), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1327] = { - [sym_type_constraints] = STATE(1400), - [sym_property_delegate] = STATE(1611), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5316), - [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(5296), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1912), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [1328] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9018), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1329] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9075), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1330] = { - [sym_type_constraints] = STATE(1393), - [sym_property_delegate] = STATE(1608), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5318), - [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(5296), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1331] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5544), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1332] = { - [sym_type_constraints] = STATE(1351), - [sym_property_delegate] = STATE(1614), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8830), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1333] = { - [sym_type_constraints] = STATE(1386), - [sym_property_delegate] = STATE(1610), - [sym_getter] = STATE(4656), - [sym_setter] = STATE(4656), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_RBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5322), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5324), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_DASH_GT] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5548), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1334] = { - [sym_type_constraints] = STATE(1551), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1335] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5552), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1336] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4521), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1400), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8402), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(5554), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1337] = { - [sym_type_constraints] = STATE(1043), - [sym_enum_class_body] = STATE(1066), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [1338] = { - [sym_type_constraints] = STATE(1414), - [sym_property_delegate] = STATE(1635), - [sym_getter] = STATE(3319), - [sym_setter] = STATE(3319), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_RBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5328), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5330), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_DASH_GT] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5560), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1339] = { - [sym_type_constraints] = STATE(1365), - [sym_property_delegate] = STATE(1598), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5332), - [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(5296), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1340] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(2019), - [sym__comparison_operator] = STATE(2021), - [sym__in_operator] = STATE(2036), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(2038), - [sym__multiplicative_operator] = STATE(1932), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2074), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3648), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3656), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_QMARK_COLON] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_BANGin] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1913), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [1341] = { - [sym_class_body] = STATE(1157), - [sym_type_constraints] = STATE(997), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(5334), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1342] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(5336), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [1343] = { - [sym_class_body] = STATE(1088), - [sym_type_constraints] = STATE(962), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [1344] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5338), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4324), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [1345] = { - [sym_type_constraints] = STATE(1441), - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [1346] = { - [sym_class_body] = STATE(1153), - [sym_type_constraints] = STATE(972), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [1347] = { - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [1348] = { - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1349] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5344), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [1350] = { - [sym_function_body] = STATE(1090), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(5348), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [1351] = { - [sym_property_delegate] = STATE(1608), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5318), - [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(5296), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym_primary_constructor] = STATE(4560), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1418), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, [1352] = { - [sym_class_body] = STATE(1202), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(5350), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1353] = { - [sym_class_body] = STATE(1138), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(5352), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, [1354] = { - [sym_primary_constructor] = STATE(3394), - [sym_class_body] = STATE(3312), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1456), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8974), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1355] = { - [sym_class_body] = STATE(1206), - [sym_type_constraints] = STATE(947), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1356] = { - [sym_primary_constructor] = STATE(3306), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1455), - [sym_type_constraints] = STATE(3097), - [sym_enum_class_body] = STATE(3415), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5356), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8906), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5592), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1357] = { - [sym__expression] = STATE(3758), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_object] = ACTIONS(5361), - [anon_sym_fun] = ACTIONS(5364), - [anon_sym_get] = ACTIONS(2030), - [anon_sym_set] = ACTIONS(2030), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2748), - [sym_label] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_data] = ACTIONS(2030), - [anon_sym_inner] = ACTIONS(2030), - [anon_sym_value] = ACTIONS(2030), - [anon_sym_expect] = ACTIONS(2030), - [anon_sym_actual] = ACTIONS(2030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5594), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1358] = { - [sym__expression] = STATE(3732), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_object] = ACTIONS(5367), - [anon_sym_fun] = ACTIONS(5370), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2369), - [sym_label] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_data] = ACTIONS(2339), - [anon_sym_inner] = ACTIONS(2339), - [anon_sym_value] = ACTIONS(2339), - [anon_sym_expect] = ACTIONS(2339), - [anon_sym_actual] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym_primary_constructor] = STATE(4556), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1408), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, [1359] = { - [sym_primary_constructor] = STATE(3305), - [sym_class_body] = STATE(3415), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1454), - [sym_type_constraints] = STATE(3140), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym_primary_constructor] = STATE(4553), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1405), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, [1360] = { - [sym__expression] = STATE(2154), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(5375), - [anon_sym_fun] = ACTIONS(5378), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2792), - [sym_label] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_data] = ACTIONS(2432), - [anon_sym_inner] = ACTIONS(2432), - [anon_sym_value] = ACTIONS(2432), - [anon_sym_expect] = ACTIONS(2432), - [anon_sym_actual] = ACTIONS(2432), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(8963), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5602), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1361] = { - [sym_primary_constructor] = STATE(3263), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(1449), - [sym_type_constraints] = STATE(3132), - [sym_enum_class_body] = STATE(3493), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1362] = { - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(5383), - [anon_sym_fun] = ACTIONS(5386), - [anon_sym_get] = ACTIONS(2131), - [anon_sym_set] = ACTIONS(2131), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2161), - [sym_label] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_data] = ACTIONS(2131), - [anon_sym_inner] = ACTIONS(2131), - [anon_sym_value] = ACTIONS(2131), - [anon_sym_expect] = ACTIONS(2131), - [anon_sym_actual] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1363] = { - [sym__expression] = STATE(2544), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(5383), - [anon_sym_fun] = ACTIONS(5389), - [anon_sym_get] = ACTIONS(2131), - [anon_sym_set] = ACTIONS(2131), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2946), - [sym_label] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_data] = ACTIONS(2131), - [anon_sym_inner] = ACTIONS(2131), - [anon_sym_value] = ACTIONS(2131), - [anon_sym_expect] = ACTIONS(2131), - [anon_sym_actual] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, [1364] = { - [sym__expression] = STATE(389), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_fun] = ACTIONS(5395), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2726), - [sym_label] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_data] = ACTIONS(2522), - [anon_sym_inner] = ACTIONS(2522), - [anon_sym_value] = ACTIONS(2522), - [anon_sym_expect] = ACTIONS(2522), - [anon_sym_actual] = ACTIONS(2522), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5606), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1365] = { - [sym_property_delegate] = STATE(1596), - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5398), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1366] = { - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(5400), - [anon_sym_fun] = ACTIONS(5403), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2968), - [sym_label] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_data] = ACTIONS(2246), - [anon_sym_inner] = ACTIONS(2246), - [anon_sym_value] = ACTIONS(2246), - [anon_sym_expect] = ACTIONS(2246), - [anon_sym_actual] = ACTIONS(2246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9045), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5610), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1367] = { - [sym_primary_constructor] = STATE(3185), - [sym_class_body] = STATE(3925), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1504), - [sym_type_constraints] = STATE(3639), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5406), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [1368] = { - [sym_primary_constructor] = STATE(3188), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1498), - [sym_type_constraints] = STATE(3652), - [sym_enum_class_body] = STATE(3897), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [1369] = { - [sym_primary_constructor] = STATE(3192), - [sym_class_body] = STATE(3897), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1493), - [sym_type_constraints] = STATE(3701), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5422), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1370] = { - [sym__expression] = STATE(1531), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(5375), - [anon_sym_fun] = ACTIONS(5424), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2880), - [sym_label] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_data] = ACTIONS(2432), - [anon_sym_inner] = ACTIONS(2432), - [anon_sym_value] = ACTIONS(2432), - [anon_sym_expect] = ACTIONS(2432), - [anon_sym_actual] = ACTIONS(2432), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1371] = { - [sym__expression] = STATE(365), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_fun] = ACTIONS(5427), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2638), - [sym_label] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_data] = ACTIONS(2522), - [anon_sym_inner] = ACTIONS(2522), - [anon_sym_value] = ACTIONS(2522), - [anon_sym_expect] = ACTIONS(2522), - [anon_sym_actual] = ACTIONS(2522), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [1372] = { - [sym_primary_constructor] = STATE(3216), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1436), - [sym_type_constraints] = STATE(3619), - [sym_enum_class_body] = STATE(3918), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5430), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [1373] = { - [sym_property_delegate] = STATE(1598), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5332), - [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(5296), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [1374] = { - [sym__expression] = STATE(471), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_fun] = ACTIONS(5432), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2616), - [sym_label] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_data] = ACTIONS(2522), - [anon_sym_inner] = ACTIONS(2522), - [anon_sym_value] = ACTIONS(2522), - [anon_sym_expect] = ACTIONS(2522), - [anon_sym_actual] = ACTIONS(2522), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1375] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1376] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9028), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5618), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1377] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_object] = ACTIONS(5392), - [anon_sym_fun] = ACTIONS(5435), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2552), - [sym_label] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_when] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_throw] = ACTIONS(2570), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_data] = ACTIONS(2522), - [anon_sym_inner] = ACTIONS(2522), - [anon_sym_value] = ACTIONS(2522), - [anon_sym_expect] = ACTIONS(2522), - [anon_sym_actual] = ACTIONS(2522), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2585), - [anon_sym_break_AT] = ACTIONS(2588), - [sym_real_literal] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2597), - [sym_bin_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2603), - [sym__backtick_identifier] = ACTIONS(2606), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2609), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1378] = { - [sym__expression] = STATE(4259), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_object] = ACTIONS(5367), - [anon_sym_fun] = ACTIONS(5438), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2704), - [sym_label] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_data] = ACTIONS(2339), - [anon_sym_inner] = ACTIONS(2339), - [anon_sym_value] = ACTIONS(2339), - [anon_sym_expect] = ACTIONS(2339), - [anon_sym_actual] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(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(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1379] = { - [sym_primary_constructor] = STATE(4760), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1453), - [sym_type_constraints] = STATE(4905), - [sym_enum_class_body] = STATE(5063), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1380] = { - [sym_property_delegate] = STATE(1565), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5304), - [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(5296), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9006), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5626), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1381] = { - [sym__expression] = STATE(3973), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_object] = ACTIONS(5367), - [anon_sym_fun] = ACTIONS(5451), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2660), - [sym_label] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_data] = ACTIONS(2339), - [anon_sym_inner] = ACTIONS(2339), - [anon_sym_value] = ACTIONS(2339), - [anon_sym_expect] = ACTIONS(2339), - [anon_sym_actual] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1382] = { - [sym_primary_constructor] = STATE(4770), - [sym_class_body] = STATE(5120), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1450), - [sym_type_constraints] = STATE(4934), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5454), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5630), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1383] = { - [sym_function_body] = STATE(1062), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_primary_constructor] = STATE(4565), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(1402), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), }, [1384] = { - [sym_class_body] = STATE(1153), - [sym_type_constraints] = STATE(972), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1385] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(3598), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1386] = { - [sym_property_delegate] = STATE(1634), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1387] = { + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [1388] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1389] = { + [sym_primary_constructor] = STATE(3000), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [1390] = { + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [1391] = { + [sym_class_body] = STATE(1068), + [sym_type_constraints] = STATE(969), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5294), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5296), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5298), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), - [anon_sym_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_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [1387] = { - [sym__expression] = STATE(2471), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(5400), - [anon_sym_fun] = ACTIONS(5462), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2924), - [sym_label] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_data] = ACTIONS(2246), - [anon_sym_inner] = ACTIONS(2246), - [anon_sym_value] = ACTIONS(2246), - [anon_sym_expect] = ACTIONS(2246), - [anon_sym_actual] = ACTIONS(2246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), - }, - [1388] = { - [sym_primary_constructor] = STATE(4803), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1537), - [sym_type_constraints] = STATE(4601), - [sym_enum_class_body] = STATE(4757), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - }, - [1389] = { - [sym_property_delegate] = STATE(1614), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), - }, - [1390] = { - [sym__expression] = STATE(1317), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(5400), - [anon_sym_fun] = ACTIONS(5467), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2902), - [sym_label] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_data] = ACTIONS(2246), - [anon_sym_inner] = ACTIONS(2246), - [anon_sym_value] = ACTIONS(2246), - [anon_sym_expect] = ACTIONS(2246), - [anon_sym_actual] = ACTIONS(2246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), - }, - [1391] = { - [sym__expression] = STATE(4229), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_object] = ACTIONS(5361), - [anon_sym_fun] = ACTIONS(5470), - [anon_sym_get] = ACTIONS(2030), - [anon_sym_set] = ACTIONS(2030), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2682), - [sym_label] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_data] = ACTIONS(2030), - [anon_sym_inner] = ACTIONS(2030), - [anon_sym_value] = ACTIONS(2030), - [anon_sym_expect] = ACTIONS(2030), - [anon_sym_actual] = ACTIONS(2030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), + [sym__string_start] = ACTIONS(3282), }, [1392] = { - [sym_primary_constructor] = STATE(4783), - [sym_class_body] = STATE(4705), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1539), - [sym_type_constraints] = STATE(4582), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1393] = { - [sym_property_delegate] = STATE(1611), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5316), - [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(5296), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, [1394] = { - [sym_class_body] = STATE(1088), - [sym_type_constraints] = STATE(962), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [1395] = { - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(5375), - [anon_sym_fun] = ACTIONS(5475), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2462), - [sym_label] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_data] = ACTIONS(2432), - [anon_sym_inner] = ACTIONS(2432), - [anon_sym_value] = ACTIONS(2432), - [anon_sym_expect] = ACTIONS(2432), - [anon_sym_actual] = ACTIONS(2432), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1396] = { - [sym_primary_constructor] = STATE(4781), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1432), - [sym_type_constraints] = STATE(4588), - [sym_enum_class_body] = STATE(4705), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5478), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1397] = { - [sym_type_constraints] = STATE(1005), - [sym_enum_class_body] = STATE(1122), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_value_arguments] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, [1398] = { - [sym_primary_constructor] = STATE(4745), - [sym_class_body] = STATE(4763), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(1544), - [sym_type_constraints] = STATE(4631), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [1399] = { - [sym_class_body] = STATE(1157), - [sym_type_constraints] = STATE(997), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1400] = { - [sym_property_delegate] = STATE(1626), - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(5649), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1401] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(5486), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [1402] = { - [sym_type_constraints] = STATE(1043), - [sym_enum_class_body] = STATE(1066), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym_primary_constructor] = STATE(4552), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, [1403] = { - [sym_primary_constructor] = STATE(4786), - [sym_class_body] = STATE(5116), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1442), - [sym_type_constraints] = STATE(4964), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [1404] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), [anon_sym_abstract] = ACTIONS(3140), [anon_sym_final] = ACTIONS(3140), [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1404] = { - [sym_value_arguments] = STATE(1209), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), - }, [1405] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(3598), + [sym_primary_constructor] = STATE(4557), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [1406] = { - [sym__expression] = STATE(4191), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_object] = ACTIONS(5367), - [anon_sym_fun] = ACTIONS(5494), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_this] = ACTIONS(2363), - [anon_sym_super] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2858), - [sym_label] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_when] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_data] = ACTIONS(2339), - [anon_sym_inner] = ACTIONS(2339), - [anon_sym_value] = ACTIONS(2339), - [anon_sym_expect] = ACTIONS(2339), - [anon_sym_actual] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2405), - [anon_sym_break_AT] = ACTIONS(2408), - [sym_real_literal] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2417), - [sym_bin_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2423), - [sym__backtick_identifier] = ACTIONS(2426), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2429), - }, - [1407] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1157), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(5497), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [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), - }, - [1408] = { - [sym__expression] = STATE(1541), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(5400), - [anon_sym_fun] = ACTIONS(5499), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2276), - [sym_label] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_when] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2306), - [anon_sym_data] = ACTIONS(2246), - [anon_sym_inner] = ACTIONS(2246), - [anon_sym_value] = ACTIONS(2246), - [anon_sym_expect] = ACTIONS(2246), - [anon_sym_actual] = ACTIONS(2246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2309), - [anon_sym_continue_AT] = ACTIONS(2312), - [anon_sym_break_AT] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2321), - [sym_hex_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym__backtick_identifier] = ACTIONS(2333), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2336), - }, - [1409] = { - [sym__expression] = STATE(3125), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_object] = ACTIONS(5361), - [anon_sym_fun] = ACTIONS(5502), - [anon_sym_get] = ACTIONS(2030), - [anon_sym_set] = ACTIONS(2030), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2836), - [sym_label] = ACTIONS(2839), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_data] = ACTIONS(2030), - [anon_sym_inner] = ACTIONS(2030), - [anon_sym_value] = ACTIONS(2030), - [anon_sym_expect] = ACTIONS(2030), - [anon_sym_actual] = ACTIONS(2030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), - }, - [1410] = { - [sym_primary_constructor] = STATE(4725), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1448), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5120), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5505), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), [anon_sym_public] = ACTIONS(3136), [anon_sym_private] = ACTIONS(3136), [anon_sym_internal] = ACTIONS(3136), [anon_sym_protected] = ACTIONS(3136), - [anon_sym_tailrec] = ACTIONS(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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1411] = { - [sym__expression] = STATE(4038), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_object] = ACTIONS(5361), - [anon_sym_fun] = ACTIONS(5507), - [anon_sym_get] = ACTIONS(2030), - [anon_sym_set] = ACTIONS(2030), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_super] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2066), - [sym_label] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_when] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_data] = ACTIONS(2030), - [anon_sym_inner] = ACTIONS(2030), - [anon_sym_value] = ACTIONS(2030), - [anon_sym_expect] = ACTIONS(2030), - [anon_sym_actual] = ACTIONS(2030), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2101), - [anon_sym_continue_AT] = ACTIONS(2104), - [anon_sym_break_AT] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2113), - [sym_hex_literal] = ACTIONS(2116), - [sym_bin_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2122), - [sym__backtick_identifier] = ACTIONS(2125), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2128), - }, - [1412] = { - [sym_type_constraints] = STATE(977), - [sym_enum_class_body] = STATE(1206), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [1413] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(3598), + [1407] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1414] = { - [sym_property_delegate] = STATE(1615), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [1408] = { + [sym_primary_constructor] = STATE(4558), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5312), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5296), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5314), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [1415] = { - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(5375), - [anon_sym_fun] = ACTIONS(5510), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_super] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2814), - [sym_label] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_data] = ACTIONS(2432), - [anon_sym_inner] = ACTIONS(2432), - [anon_sym_value] = ACTIONS(2432), - [anon_sym_expect] = ACTIONS(2432), - [anon_sym_actual] = ACTIONS(2432), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2402), - [anon_sym_continue_AT] = ACTIONS(2495), - [anon_sym_break_AT] = ACTIONS(2498), - [sym_real_literal] = ACTIONS(2501), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2507), - [sym_bin_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2513), - [sym__backtick_identifier] = ACTIONS(2516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2519), - }, - [1416] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(3598), + [1409] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1417] = { - [sym_property_delegate] = STATE(1607), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [1410] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1418] = { - [sym__expression] = STATE(2405), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(5383), - [anon_sym_fun] = ACTIONS(5513), - [anon_sym_get] = ACTIONS(2131), - [anon_sym_set] = ACTIONS(2131), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2770), - [sym_label] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_data] = ACTIONS(2131), - [anon_sym_inner] = ACTIONS(2131), - [anon_sym_value] = ACTIONS(2131), - [anon_sym_expect] = ACTIONS(2131), - [anon_sym_actual] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), - }, - [1419] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1411] = { + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [1420] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1412] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym_value_argument] = STATE(9371), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(2098), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5466), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1421] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), + [1413] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1422] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1414] = { + [sym_type_constraints] = STATE(947), + [sym_enum_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, - [1423] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(3598), + [1415] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1424] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(3598), + [1416] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2125), + [sym__in_operator] = STATE(2126), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2128), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2129), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3668), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_QMARK_COLON] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3688), + [anon_sym_GT_EQ] = ACTIONS(3688), + [anon_sym_BANGin] = ACTIONS(3690), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [1425] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1417] = { + [sym_variable_declaration] = STATE(8857), + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5667), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, - [1426] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3598), + [1418] = { + [sym_primary_constructor] = STATE(4562), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [1427] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1419] = { + [sym_function_body] = STATE(1048), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, - [1428] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3598), + [1420] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(945), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [1429] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3598), + [1421] = { + [sym_primary_constructor] = STATE(2980), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [1430] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1957), - [sym__comparison_operator] = STATE(1956), - [sym__in_operator] = STATE(1954), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1953), - [sym__multiplicative_operator] = STATE(1952), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1951), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3712), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_DOT_DOT] = ACTIONS(3716), - [anon_sym_QMARK_COLON] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3726), - [anon_sym_LT_EQ] = ACTIONS(3728), - [anon_sym_GT_EQ] = ACTIONS(3728), - [anon_sym_BANGin] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1422] = { + [sym_primary_constructor] = STATE(2991), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [1423] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [1424] = { + [sym_class_body] = STATE(1141), + [sym_type_constraints] = STATE(933), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(5667), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [1425] = { + [sym_primary_constructor] = STATE(2984), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [1426] = { + [sym_type_constraints] = STATE(990), + [sym_enum_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [1427] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5673), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [1428] = { + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1429] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1430] = { + [sym__expression] = STATE(2557), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1431] = { - [sym__expression] = STATE(1413), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(5383), - [anon_sym_fun] = ACTIONS(5516), - [anon_sym_get] = ACTIONS(2131), - [anon_sym_set] = ACTIONS(2131), - [anon_sym_this] = ACTIONS(2155), - [anon_sym_super] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2228), - [sym_label] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_data] = ACTIONS(2131), - [anon_sym_inner] = ACTIONS(2131), - [anon_sym_value] = ACTIONS(2131), - [anon_sym_expect] = ACTIONS(2131), - [anon_sym_actual] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2194), - [anon_sym_continue_AT] = ACTIONS(2197), - [anon_sym_break_AT] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2206), - [sym_hex_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym__backtick_identifier] = ACTIONS(2218), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2221), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1432] = { - [sym_primary_constructor] = STATE(4792), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4607), - [sym_enum_class_body] = STATE(4822), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5519), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2551), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1433] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8886), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5521), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2550), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1434] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8906), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5525), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(760), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1435] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5527), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(761), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1436] = { - [sym_primary_constructor] = STATE(3217), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4361), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1437] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5531), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, [1438] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8898), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5533), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(535), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1439] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5535), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4385), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1440] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1529), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [sym__expression] = STATE(2548), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1441] = { - [sym_function_body] = STATE(1051), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__expression] = STATE(2547), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1442] = { - [sym_primary_constructor] = STATE(4774), - [sym_class_body] = STATE(5123), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4959), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2546), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1443] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1440), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_object] = ACTIONS(4576), - [anon_sym_fun] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_this] = ACTIONS(4576), - [anon_sym_super] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4578), - [sym_label] = ACTIONS(4576), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_null] = ACTIONS(4576), - [anon_sym_if] = ACTIONS(4576), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_when] = ACTIONS(4576), - [anon_sym_try] = ACTIONS(4576), - [anon_sym_throw] = ACTIONS(4576), - [anon_sym_return] = ACTIONS(4576), - [anon_sym_continue] = ACTIONS(4576), - [anon_sym_break] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4578), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG] = ACTIONS(4576), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_suspend] = ACTIONS(4576), - [anon_sym_sealed] = ACTIONS(4576), - [anon_sym_annotation] = ACTIONS(4576), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_override] = ACTIONS(4576), - [anon_sym_lateinit] = ACTIONS(4576), - [anon_sym_public] = ACTIONS(4576), - [anon_sym_private] = ACTIONS(4576), - [anon_sym_internal] = ACTIONS(4576), - [anon_sym_protected] = ACTIONS(4576), - [anon_sym_tailrec] = ACTIONS(4576), - [anon_sym_operator] = ACTIONS(4576), - [anon_sym_infix] = ACTIONS(4576), - [anon_sym_inline] = ACTIONS(4576), - [anon_sym_external] = ACTIONS(4576), - [sym_property_modifier] = ACTIONS(4576), - [anon_sym_abstract] = ACTIONS(4576), - [anon_sym_final] = ACTIONS(4576), - [anon_sym_open] = ACTIONS(4576), - [anon_sym_vararg] = ACTIONS(4576), - [anon_sym_noinline] = ACTIONS(4576), - [anon_sym_crossinline] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4578), - [anon_sym_continue_AT] = ACTIONS(4578), - [anon_sym_break_AT] = ACTIONS(4578), - [sym_real_literal] = ACTIONS(4578), - [sym_integer_literal] = ACTIONS(4576), - [sym_hex_literal] = ACTIONS(4578), - [sym_bin_literal] = ACTIONS(4578), - [anon_sym_true] = ACTIONS(4576), - [anon_sym_false] = ACTIONS(4576), - [anon_sym_SQUOTE] = ACTIONS(4578), - [sym__backtick_identifier] = ACTIONS(4578), - [sym__automatic_semicolon] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4578), + [sym__expression] = STATE(2545), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1444] = { - [sym_primary_constructor] = STATE(4852), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1591), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5120), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2542), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1445] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5543), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4381), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5701), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1446] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8918), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5545), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2539), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1447] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym__expression] = STATE(2297), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1448] = { - [sym_primary_constructor] = STATE(4768), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4967), - [sym_enum_class_body] = STATE(5089), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5573), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4408), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1449] = { - [sym_primary_constructor] = STATE(3261), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5575), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1450] = { - [sym_primary_constructor] = STATE(4766), - [sym_class_body] = STATE(5089), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4914), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5577), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4406), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1451] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8924), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5579), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_function_body] = STATE(1131), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [1452] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym__expression] = STATE(531), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1453] = { - [sym_primary_constructor] = STATE(4758), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4973), - [sym_enum_class_body] = STATE(5046), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5581), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1086), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1454] = { - [sym_primary_constructor] = STATE(3271), - [sym_class_body] = STATE(3182), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3135), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5583), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1087), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1455] = { - [sym_primary_constructor] = STATE(3290), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5585), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1088), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1456] = { - [sym_primary_constructor] = STATE(3374), - [sym_class_body] = STATE(3392), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3092), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5587), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1089), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1457] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5589), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1090), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1458] = { - [sym_function_body] = STATE(1089), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym__expression] = STATE(1091), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1459] = { - [sym_primary_constructor] = STATE(4838), - [sym_class_body] = STATE(5116), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1638), - [sym_type_constraints] = STATE(4964), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(3921), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1460] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5593), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(294), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1461] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5595), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(293), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1462] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3033), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(295), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1463] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5597), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(291), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1464] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8899), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5599), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2529), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1465] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8913), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5601), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(289), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1466] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3057), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3055), - [anon_sym_sealed] = ACTIONS(3055), - [anon_sym_annotation] = ACTIONS(3055), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3055), - [anon_sym_lateinit] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_internal] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_tailrec] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_infix] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym_external] = ACTIONS(3055), - [sym_property_modifier] = ACTIONS(3055), - [anon_sym_abstract] = ACTIONS(3055), - [anon_sym_final] = ACTIONS(3055), - [anon_sym_open] = ACTIONS(3055), - [anon_sym_vararg] = ACTIONS(3055), - [anon_sym_noinline] = ACTIONS(3055), - [anon_sym_crossinline] = ACTIONS(3055), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(529), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1467] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5603), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(292), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1468] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym__expression] = STATE(758), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1469] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8737), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5605), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(331), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1470] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym__expression] = STATE(321), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1471] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym__expression] = STATE(318), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1472] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5607), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(328), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1473] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5609), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(528), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1474] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3007), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(317), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1475] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4324), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1476] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(316), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1477] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(2996), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(757), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1478] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3049), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(525), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1479] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3025), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(524), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1480] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3018), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(808), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1481] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3000), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(807), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1482] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_DASH_GT] = ACTIONS(3091), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(805), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1483] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3080), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(799), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1484] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym__expression] = STATE(365), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1485] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3087), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(804), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1486] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5611), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(803), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1487] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__expression] = STATE(756), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1488] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3014), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1489] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5613), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1490] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3041), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2578), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1491] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1492] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5617), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(977), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1493] = { - [sym_primary_constructor] = STATE(3205), - [sym_class_body] = STATE(3859), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3615), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1494] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1495] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym__expression] = STATE(970), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1496] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8875), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5623), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1497] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym__expression] = STATE(523), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1498] = { - [sym_primary_constructor] = STATE(3198), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5625), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2459), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1499] = { - [sym_primary_constructor] = STATE(4879), - [sym_class_body] = STATE(5120), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1602), - [sym_type_constraints] = STATE(4934), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1500] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1501] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym__expression] = STATE(521), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1502] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8825), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5631), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4249), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1503] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym__expression] = STATE(381), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1504] = { - [sym_primary_constructor] = STATE(3187), - [sym_class_body] = STATE(3784), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3696), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1505] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym__expression] = STATE(520), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1506] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3029), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1507] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym__expression] = STATE(4337), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5703), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1508] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym__expression] = STATE(3920), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1509] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_object] = ACTIONS(3055), - [anon_sym_fun] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3055), - [anon_sym_super] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_when] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3057), - [anon_sym_continue_AT] = ACTIONS(3057), - [anon_sym_break_AT] = ACTIONS(3057), - [sym_real_literal] = ACTIONS(3057), - [sym_integer_literal] = ACTIONS(3055), - [sym_hex_literal] = ACTIONS(3057), - [sym_bin_literal] = ACTIONS(3057), - [anon_sym_true] = ACTIONS(3055), - [anon_sym_false] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3057), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3057), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1510] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym__expression] = STATE(4333), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1511] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym__expression] = STATE(4473), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1512] = { - [sym__expression] = STATE(4475), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1583), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8380), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(5635), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1283), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1513] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1529), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [sym__expression] = STATE(3922), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1514] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3045), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1515] = { - [sym_primary_constructor] = STATE(3549), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1597), - [sym_type_constraints] = STATE(3619), - [sym_enum_class_body] = STATE(3918), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5637), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4472), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1516] = { - [sym_primary_constructor] = STATE(3540), - [sym_class_body] = STATE(3897), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1593), - [sym_type_constraints] = STATE(3701), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5639), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [sym__expression] = STATE(1621), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1517] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5641), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1518] = { - [sym_primary_constructor] = STATE(3539), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1603), - [sym_type_constraints] = STATE(3652), - [sym_enum_class_body] = STATE(3897), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1519] = { - [sym_function_body] = STATE(1047), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1520] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8995), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5645), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4482), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1521] = { - [sym_primary_constructor] = STATE(3536), - [sym_class_body] = STATE(3925), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(1588), - [sym_type_constraints] = STATE(3639), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4364), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1522] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym__expression] = STATE(3941), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1523] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5649), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3940), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1524] = { - [sym_function_body] = STATE(1191), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym__expression] = STATE(3936), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1525] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5651), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3934), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1526] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8771), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3931), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1527] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5655), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3930), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1528] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym__expression] = STATE(3929), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1529] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1529), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_object] = ACTIONS(4580), - [anon_sym_fun] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_this] = ACTIONS(4580), - [anon_sym_super] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4582), - [sym_label] = ACTIONS(4580), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_when] = ACTIONS(4580), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_throw] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4582), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4582), - [anon_sym_continue_AT] = ACTIONS(4582), - [anon_sym_break_AT] = ACTIONS(4582), - [sym_real_literal] = ACTIONS(4582), - [sym_integer_literal] = ACTIONS(4580), - [sym_hex_literal] = ACTIONS(4582), - [sym_bin_literal] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_SQUOTE] = ACTIONS(4582), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4582), + [sym__expression] = STATE(3928), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1530] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1531] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym__expression] = STATE(3927), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1532] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5662), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1396), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1533] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1534] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5664), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(404), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1535] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5666), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3926), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1536] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5668), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2530), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1537] = { - [sym_primary_constructor] = STATE(4806), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4613), - [sym_enum_class_body] = STATE(4723), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5670), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__expression] = STATE(1280), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1538] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8929), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5672), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3789), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1539] = { - [sym_primary_constructor] = STATE(4802), - [sym_class_body] = STATE(4822), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4599), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5674), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(3872), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1540] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3053), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(3811), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1541] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1895), - [sym__comparison_operator] = STATE(1894), - [sym__in_operator] = STATE(1893), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1892), - [sym__multiplicative_operator] = STATE(1890), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1889), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3760), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(3768), - [anon_sym_DASH_GT] = ACTIONS(3037), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3770), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3772), - [anon_sym_QMARK_COLON] = ACTIONS(3774), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE_PIPE] = ACTIONS(3778), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3782), - [anon_sym_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_BANGin] = ACTIONS(3786), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3788), - [anon_sym_SLASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(3925), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1459), + [sym_annotation] = STATE(1459), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1339), + [sym_label] = ACTIONS(689), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(333), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1542] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8866), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5676), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2419), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1543] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5678), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1544] = { - [sym_primary_constructor] = STATE(4765), - [sym_class_body] = STATE(4695), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4589), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5680), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1545] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5682), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1546] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3788), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1547] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8799), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5686), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4250), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1548] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5688), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2455), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1549] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), + [sym__expression] = STATE(4254), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1550] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5690), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3787), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1551] = { - [sym_function_body] = STATE(1166), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__expression] = STATE(4253), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1552] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5692), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1553] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5694), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1554] = { - [sym_function_body] = STATE(1158), - [sym__block] = STATE(1204), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [1555] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5696), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1556] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8843), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5698), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1557] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2119), - [sym__in_operator] = STATE(2120), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2121), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2128), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5547), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(5549), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5551), - [anon_sym_DOT_DOT] = ACTIONS(5553), - [anon_sym_QMARK_COLON] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_PIPE_PIPE] = ACTIONS(5559), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5563), - [anon_sym_EQ_EQ] = ACTIONS(5561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5563), - [anon_sym_LT_EQ] = ACTIONS(5565), - [anon_sym_GT_EQ] = ACTIONS(5565), - [anon_sym_BANGin] = ACTIONS(5567), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), - }, - [1558] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5700), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4244), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1554] = { + [sym__expression] = STATE(2434), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1555] = { + [sym__expression] = STATE(2433), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1556] = { + [sym__expression] = STATE(3785), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1557] = { + [sym__expression] = STATE(3784), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1558] = { + [sym__expression] = STATE(4255), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1559] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5702), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4240), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1560] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5704), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2280), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1561] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5706), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(527), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1562] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8826), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5708), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(533), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1563] = { - [sym_primary_constructor] = STATE(4898), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(1625), - [sym_type_constraints] = STATE(4905), - [sym_enum_class_body] = STATE(5063), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5710), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3164), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [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(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2430), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1564] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(8939), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(5712), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4238), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1565] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2429), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1566] = { - [sym_class_body] = STATE(1138), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(5714), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym__expression] = STATE(2566), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1567] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2558), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1568] = { - [sym_type_constraints] = STATE(1939), - [sym_property_delegate] = STATE(2460), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5716), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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__expression] = STATE(2426), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1569] = { - [sym_type_constraints] = STATE(2422), - [sym_property_delegate] = STATE(2537), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5724), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2442), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1570] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2432), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1571] = { - [sym_type_constraints] = STATE(1941), - [sym_property_delegate] = STATE(2481), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5732), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), + [sym__expression] = STATE(2436), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1572] = { - [sym_type_constraints] = STATE(2393), - [sym_property_delegate] = STATE(2541), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(2439), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1573] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(5736), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(5738), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__expression] = STATE(1792), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1574] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(5738), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__expression] = STATE(2445), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1575] = { - [sym_type_constraints] = STATE(2447), - [sym_property_delegate] = STATE(2549), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5740), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [1576] = { - [sym_type_constraints] = STATE(2242), - [sym_property_delegate] = STATE(2469), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5742), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(4227), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1577] = { - [sym_type_constraints] = STATE(1943), - [sym_property_delegate] = STATE(2478), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5748), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(4247), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1578] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), + [sym__expression] = STATE(4246), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1579] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [sym__expression] = STATE(4235), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1580] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5754), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), + [sym__expression] = STATE(4242), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1581] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5756), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), + [sym__expression] = STATE(3809), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1582] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5758), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1583] = { - [sym__expression] = STATE(4229), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(5762), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(5765), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3780), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1584] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5767), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__expression] = STATE(2251), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1585] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1586] = { - [sym_type_constraints] = STATE(2322), - [sym_property_delegate] = STATE(2486), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5771), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5773), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1587] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__expression] = STATE(4070), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1588] = { - [sym_primary_constructor] = STATE(3538), - [sym_class_body] = STATE(3784), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3696), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5775), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(688), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1589] = { - [sym_class_body] = STATE(1202), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(5777), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym__expression] = STATE(686), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1590] = { - [sym_variable_declaration] = STATE(8980), - [sym__expression] = STATE(4471), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5606), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(684), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1591] = { - [sym_primary_constructor] = STATE(4849), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4967), - [sym_enum_class_body] = STATE(5089), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5779), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__expression] = STATE(1845), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1592] = { - [sym_type_constraints] = STATE(2296), - [sym_property_delegate] = STATE(2455), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5781), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5783), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__expression] = STATE(1848), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1593] = { - [sym_primary_constructor] = STATE(3548), - [sym_class_body] = STATE(3859), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3615), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5785), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(682), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1594] = { - [sym_getter] = STATE(3295), - [sym_setter] = STATE(3295), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_DASH_GT] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1595] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__expression] = STATE(1618), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1596] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__expression] = STATE(1620), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1597] = { - [sym_primary_constructor] = STATE(3552), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5787), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__expression] = STATE(1622), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1598] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__expression] = STATE(1623), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1599] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__expression] = STATE(1626), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1600] = { - [sym_primary_constructor] = STATE(5003), - [sym_class_body] = STATE(5461), - [sym__class_parameters] = STATE(5246), - [sym_type_parameters] = STATE(2433), - [sym_type_constraints] = STATE(5339), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5789), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5793), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3112), - [anon_sym_fun] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3112), - [anon_sym_super] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_null] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_when] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3118), - [anon_sym_continue_AT] = ACTIONS(3118), - [anon_sym_break_AT] = ACTIONS(3118), - [sym_real_literal] = ACTIONS(3118), - [sym_integer_literal] = ACTIONS(3112), - [sym_hex_literal] = ACTIONS(3118), - [sym_bin_literal] = ACTIONS(3118), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3118), + [sym__expression] = STATE(1627), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1601] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym_value_argument] = STATE(9054), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(2068), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5608), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5523), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1628), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1602] = { - [sym_primary_constructor] = STATE(4892), - [sym_class_body] = STATE(5089), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4914), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5801), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__expression] = STATE(1629), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1603] = { - [sym_primary_constructor] = STATE(3547), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5803), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__expression] = STATE(1630), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1604] = { - [sym_primary_constructor] = STATE(5010), - [sym__class_parameters] = STATE(5246), - [sym_type_parameters] = STATE(2432), - [sym_type_constraints] = STATE(5304), - [sym_enum_class_body] = STATE(5446), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5805), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__expression] = STATE(1631), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1605] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(3777), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1606] = { - [sym_primary_constructor] = STATE(5014), - [sym_class_body] = STATE(5446), - [sym__class_parameters] = STATE(5246), - [sym_type_parameters] = STATE(2414), - [sym_type_constraints] = STATE(5312), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5809), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5793), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__expression] = STATE(2464), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1607] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(676), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1608] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(691), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1609] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1610] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5298), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(708), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1611] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(707), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1612] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__expression] = STATE(1633), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1613] = { - [sym_type_constraints] = STATE(2421), - [sym_property_delegate] = STATE(2526), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5811), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(320), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1614] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(3776), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1615] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1616] = { - [sym_type_constraints] = STATE(2398), - [sym_property_delegate] = STATE(2530), - [sym_getter] = STATE(3319), - [sym_setter] = STATE(3319), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5817), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5819), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(677), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1617] = { - [sym_getter] = STATE(4673), - [sym_setter] = STATE(4673), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_DASH_GT] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(706), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1618] = { - [sym_type_constraints] = STATE(1949), - [sym_property_delegate] = STATE(2519), - [sym_getter] = STATE(3860), - [sym_setter] = STATE(3860), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5821), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5823), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1619] = { - [sym_type_constraints] = STATE(2397), - [sym_property_delegate] = STATE(2533), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5825), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5827), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(330), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1620] = { - [sym_type_constraints] = STATE(1944), - [sym_property_delegate] = STATE(2494), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5829), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5831), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1621] = { - [sym_type_constraints] = STATE(2287), - [sym_property_delegate] = STATE(2464), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_object] = ACTIONS(3121), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_super] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3123), + [anon_sym_continue_AT] = ACTIONS(3123), + [anon_sym_break_AT] = ACTIONS(3123), + [anon_sym_this_AT] = ACTIONS(3123), + [anon_sym_super_AT] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_hex_literal] = ACTIONS(3123), + [sym_bin_literal] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3123), }, [1622] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1623] = { - [sym_type_constraints] = STATE(2435), - [sym_property_delegate] = STATE(2551), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5835), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1624] = { - [sym_type_constraints] = STATE(2437), - [sym_property_delegate] = STATE(2553), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5837), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(675), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1625] = { - [sym_primary_constructor] = STATE(4843), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4973), - [sym_enum_class_body] = STATE(5046), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5839), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), + [sym__expression] = STATE(2448), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1626] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), [anon_sym_abstract] = ACTIONS(3140), [anon_sym_final] = ACTIONS(3140), [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [1626] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1627] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1628] = { - [sym_type_constraints] = STATE(2443), - [sym_property_delegate] = STATE(2556), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5841), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5843), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1629] = { - [sym_primary_constructor] = STATE(5023), - [sym__class_parameters] = STATE(5246), - [sym_type_parameters] = STATE(2440), - [sym_type_constraints] = STATE(5309), - [sym_enum_class_body] = STATE(5405), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5845), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_fun] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3164), - [anon_sym_super] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3164), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_null] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3164), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3164), - [anon_sym_false] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1630] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1631] = { - [sym_type_constraints] = STATE(2279), - [sym_property_delegate] = STATE(2466), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5847), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1632] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(704), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1633] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1634] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(1871), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1635] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9175), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5314), - [anon_sym_get] = ACTIONS(5306), - [anon_sym_set] = ACTIONS(5308), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(1892), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1636] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, [1637] = { - [sym_type_constraints] = STATE(2451), - [sym_property_delegate] = STATE(2561), - [sym_getter] = STATE(4656), - [sym_setter] = STATE(4656), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5849), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5851), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1638] = { - [sym_primary_constructor] = STATE(4863), - [sym_class_body] = STATE(5123), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4959), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5853), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [sym__expression] = STATE(1673), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1639] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9191), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5300), - [anon_sym_set] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1640] = { - [sym__expression] = STATE(548), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(276), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1641] = { - [sym__expression] = STATE(4387), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1642] = { - [sym__expression] = STATE(844), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(394), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1643] = { - [sym__expression] = STATE(845), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(392), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1644] = { - [sym__expression] = STATE(849), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(380), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1645] = { - [sym__expression] = STATE(851), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(388), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1646] = { - [sym__expression] = STATE(1033), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(401), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1647] = { - [sym__expression] = STATE(867), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(390), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1648] = { - [sym__expression] = STATE(856), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(322), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1649] = { - [sym_type_constraints] = STATE(2500), - [sym_property_delegate] = STATE(2639), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5855), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), + [sym__expression] = STATE(389), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1650] = { - [sym__expression] = STATE(4490), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1651] = { - [sym__expression] = STATE(4350), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(391), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1652] = { - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1653] = { - [sym__expression] = STATE(379), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1654] = { - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(1686), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1655] = { - [sym__expression] = STATE(382), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1656] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3031), - [anon_sym_fun] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3031), - [anon_sym_super] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_when] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3033), - [anon_sym_continue_AT] = ACTIONS(3033), - [anon_sym_break_AT] = ACTIONS(3033), - [sym_real_literal] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [sym_hex_literal] = ACTIONS(3033), - [sym_bin_literal] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3033), + [sym__expression] = STATE(383), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1657] = { - [sym__expression] = STATE(4348), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1658] = { - [sym_type_constraints] = STATE(2477), - [sym_property_delegate] = STATE(2623), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5889), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5891), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [1659] = { - [sym__expression] = STATE(1506), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1660] = { - [sym_type_constraints] = STATE(2480), - [sym_property_delegate] = STATE(2605), - [sym_getter] = STATE(3860), - [sym_setter] = STATE(3860), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5897), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5899), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - }, - [1661] = { - [sym__expression] = STATE(2488), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1662] = { - [sym__expression] = STATE(967), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1663] = { - [sym__expression] = STATE(3664), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(3774), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1658] = { + [sym__expression] = STATE(275), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1659] = { + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1660] = { + [sym__expression] = STATE(319), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1661] = { + [sym__expression] = STATE(1688), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1662] = { + [sym__expression] = STATE(1691), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1663] = { + [sym__expression] = STATE(1575), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1664] = { - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(1723), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1665] = { - [sym__expression] = STATE(1514), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1724), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1666] = { - [sym__expression] = STATE(324), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1725), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1667] = { - [sym__expression] = STATE(750), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1726), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1668] = { - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1669] = { - [sym__expression] = STATE(749), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1437), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1637), + [sym_annotation] = STATE(1637), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(989), + [sym_label] = ACTIONS(999), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1670] = { - [sym__expression] = STATE(748), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(271), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1671] = { - [sym__expression] = STATE(747), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(274), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1672] = { - [sym__expression] = STATE(746), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(326), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1673] = { - [sym__expression] = STATE(314), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [1674] = { - [sym_type_constraints] = STATE(2491), - [sym_property_delegate] = STATE(2637), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5901), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), }, [1675] = { - [sym__expression] = STATE(311), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2281), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1676] = { - [sym__expression] = STATE(4208), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(3773), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1677] = { - [sym__expression] = STATE(312), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1678] = { - [sym__expression] = STATE(329), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1679] = { - [sym__expression] = STATE(321), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1680] = { - [sym__expression] = STATE(294), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1681] = { - [sym__expression] = STATE(292), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1196), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1682] = { - [sym__expression] = STATE(290), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1683] = { - [sym__expression] = STATE(288), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1684] = { - [sym__expression] = STATE(285), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(5644), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, [1685] = { - [sym__expression] = STATE(4288), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1686] = { - [sym__expression] = STATE(4219), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1686] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [1687] = { - [sym__expression] = STATE(4200), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1688] = { - [sym__expression] = STATE(4471), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), }, [1689] = { - [sym__expression] = STATE(4270), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1690] = { - [sym__expression] = STATE(4188), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(315), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1691] = { - [sym__expression] = STATE(317), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [1692] = { - [sym__expression] = STATE(3986), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym__expression] = STATE(2286), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1693] = { - [sym__expression] = STATE(539), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1694] = { - [sym__expression] = STATE(4194), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [1694] = { + [sym__expression] = STATE(273), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1695] = { - [sym__expression] = STATE(4204), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(282), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1696] = { - [sym__expression] = STATE(4216), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(281), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1697] = { - [sym__expression] = STATE(284), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(280), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1698] = { - [sym__expression] = STATE(319), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(279), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1699] = { - [sym_type_constraints] = STATE(2493), - [sym_property_delegate] = STATE(2592), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5903), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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__expression] = STATE(278), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1700] = { - [sym__expression] = STATE(928), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(277), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1701] = { - [sym__expression] = STATE(937), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), + [sym__expression] = STATE(626), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), [sym__prefix_unary_operator] = STATE(2136), [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1702] = { - [sym__expression] = STATE(933), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1703] = { - [sym__expression] = STATE(4259), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4225), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1703] = { + [sym__expression] = STATE(636), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, [1704] = { - [sym__expression] = STATE(4483), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(630), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1705] = { - [sym__expression] = STATE(4217), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__expression] = STATE(629), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, [1706] = { - [sym__expression] = STATE(932), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1707] = { - [sym__expression] = STATE(917), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2253), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1708] = { - [sym__expression] = STATE(2448), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1709] = { - [sym__expression] = STATE(4205), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(2208), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1710] = { - [sym__expression] = STATE(883), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2312), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1711] = { - [sym__expression] = STATE(4221), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__expression] = STATE(2256), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, [1712] = { - [sym__expression] = STATE(326), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(473), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1713] = { - [sym_type_constraints] = STATE(2492), - [sym_property_delegate] = STATE(2643), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5905), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__expression] = STATE(2315), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1714] = { - [sym__expression] = STATE(4224), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(628), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1715] = { + [sym__expression] = STATE(4080), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), + [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(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1715] = { - [sym__expression] = STATE(704), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1716] = { - [sym__expression] = STATE(699), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2311), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1717] = { - [sym__expression] = STATE(4191), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__expression] = STATE(2309), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, [1718] = { - [sym__expression] = STATE(3663), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__expression] = STATE(2305), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, [1719] = { - [sym__expression] = STATE(702), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2301), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1720] = { - [sym__expression] = STATE(3976), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1721] = { + [sym__expression] = STATE(2298), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1722] = { + [sym__expression] = STATE(2296), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1723] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [1724] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), + }, + [1725] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), + }, + [1726] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), + }, + [1727] = { + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1728] = { + [sym__expression] = STATE(627), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1729] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_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), + }, + [1730] = { + [sym__expression] = STATE(2284), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1731] = { + [sym__expression] = STATE(472), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1732] = { + [sym__expression] = STATE(532), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1733] = { + [sym__expression] = STATE(2273), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1734] = { + [sym__expression] = STATE(625), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1735] = { + [sym__expression] = STATE(631), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1736] = { + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1737] = { + [sym__expression] = STATE(632), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, - [1721] = { - [sym_type_constraints] = STATE(2490), - [sym_property_delegate] = STATE(2631), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5907), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [1738] = { + [sym__expression] = STATE(633), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1739] = { + [sym__expression] = STATE(634), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1740] = { + [sym__expression] = STATE(635), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1741] = { + [sym__expression] = STATE(4524), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1742] = { + [sym__expression] = STATE(359), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1743] = { + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1744] = { + [sym__expression] = STATE(4398), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1745] = { + [sym__expression] = STATE(375), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1746] = { + [sym_type_constraints] = STATE(2248), + [sym_property_delegate] = STATE(2360), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -234152,467 +241706,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [1722] = { - [sym__expression] = STATE(705), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1723] = { - [sym__expression] = STATE(322), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1724] = { - [sym__expression] = STATE(4295), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1725] = { - [sym__expression] = STATE(646), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1726] = { - [sym_type_constraints] = STATE(2508), - [sym_property_delegate] = STATE(2628), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5909), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [1747] = { + [sym_type_constraints] = STATE(2242), + [sym_property_delegate] = STATE(2351), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5717), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -234637,7649 +241807,6548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [1727] = { - [sym__expression] = STATE(706), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1728] = { - [sym__expression] = STATE(708), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1729] = { - [sym__expression] = STATE(4202), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1730] = { - [sym__expression] = STATE(316), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1731] = { - [sym__expression] = STATE(2425), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1732] = { - [sym__expression] = STATE(4185), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1733] = { - [sym__expression] = STATE(3753), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1734] = { - [sym__expression] = STATE(644), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1735] = { - [sym__expression] = STATE(318), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1736] = { - [sym__expression] = STATE(394), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1737] = { - [sym__expression] = STATE(643), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1738] = { - [sym__expression] = STATE(642), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1739] = { - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1740] = { - [sym__expression] = STATE(405), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1741] = { - [sym__expression] = STATE(3758), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1742] = { - [sym__expression] = STATE(404), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1743] = { - [sym__expression] = STATE(403), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1744] = { - [sym__expression] = STATE(402), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1745] = { - [sym__expression] = STATE(641), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1746] = { - [sym__expression] = STATE(401), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1747] = { - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), }, [1748] = { - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1749] = { - [sym__expression] = STATE(396), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(811), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1750] = { - [sym__expression] = STATE(385), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1751] = { - [sym__expression] = STATE(384), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(272), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1752] = { - [sym__expression] = STATE(399), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(802), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1753] = { - [sym__expression] = STATE(657), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [1754] = { - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4355), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1755] = { - [sym__expression] = STATE(2459), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(2216), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1756] = { - [sym__expression] = STATE(3843), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2292), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1757] = { - [sym__expression] = STATE(2456), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, [1758] = { - [sym__expression] = STATE(3842), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [1759] = { - [sym__expression] = STATE(655), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(806), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1760] = { - [sym__expression] = STATE(389), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(2224), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1761] = { - [sym__expression] = STATE(3841), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2226), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1762] = { - [sym__expression] = STATE(380), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(2228), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1763] = { - [sym__expression] = STATE(654), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2230), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1764] = { - [sym__expression] = STATE(653), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2232), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1765] = { - [sym__expression] = STATE(652), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1766] = { - [sym__expression] = STATE(280), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2234), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1767] = { - [sym__expression] = STATE(271), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2235), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1768] = { - [sym__expression] = STATE(2471), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(2243), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1769] = { - [sym__expression] = STATE(3839), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2245), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1770] = { - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), + [sym__expression] = STATE(2246), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1771] = { - [sym__expression] = STATE(276), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(800), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1772] = { - [sym__expression] = STATE(282), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(810), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1773] = { - [sym__expression] = STATE(3838), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(468), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1774] = { - [sym__expression] = STATE(275), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1775] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_fun] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3085), - [anon_sym_super] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_when] = ACTIONS(3085), - [anon_sym_try] = ACTIONS(3085), - [anon_sym_throw] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3087), - [anon_sym_continue_AT] = ACTIONS(3087), - [anon_sym_break_AT] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(3085), - [sym_hex_literal] = ACTIONS(3087), - [sym_bin_literal] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3087), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3087), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1776] = { - [sym__expression] = STATE(3837), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1777] = { - [sym__expression] = STATE(3835), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(469), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1778] = { - [sym__expression] = STATE(3830), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2196), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1779] = { - [sym__expression] = STATE(3829), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1780] = { - [sym__expression] = STATE(278), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(476), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1781] = { - [sym__expression] = STATE(3825), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1782] = { - [sym__expression] = STATE(527), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(467), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1783] = { - [sym_type_constraints] = STATE(2482), - [sym_property_delegate] = STATE(2695), - [sym_getter] = STATE(5464), - [sym_setter] = STATE(5464), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(5911), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_fun] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5915), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_when] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3272), - [anon_sym_continue_AT] = ACTIONS(3272), - [anon_sym_break_AT] = ACTIONS(3272), - [sym_real_literal] = ACTIONS(3272), - [sym_integer_literal] = ACTIONS(3270), - [sym_hex_literal] = ACTIONS(3272), - [sym_bin_literal] = ACTIONS(3272), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3272), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3272), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1784] = { - [sym__expression] = STATE(281), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4282), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1785] = { - [sym__expression] = STATE(279), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4144), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1786] = { - [sym__expression] = STATE(3953), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4261), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1787] = { - [sym__expression] = STATE(3817), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1741), - [sym_annotation] = STATE(1741), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1303), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1862), - [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(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(809), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1788] = { - [sym__expression] = STATE(273), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4260), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1789] = { - [sym__expression] = STATE(272), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1790] = { - [sym__expression] = STATE(2403), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, [1791] = { - [sym__expression] = STATE(274), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1792] = { - [sym__expression] = STATE(277), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), }, [1793] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_fun] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3027), - [anon_sym_super] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3029), - [anon_sym_continue_AT] = ACTIONS(3029), - [anon_sym_break_AT] = ACTIONS(3029), - [sym_real_literal] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [sym_hex_literal] = ACTIONS(3029), - [sym_bin_literal] = ACTIONS(3029), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3029), + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1794] = { - [sym__expression] = STATE(592), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(470), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1795] = { - [sym__expression] = STATE(577), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4276), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1796] = { - [sym__expression] = STATE(4455), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4279), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1797] = { - [sym__expression] = STATE(569), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4283), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1798] = { - [sym__expression] = STATE(2496), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4284), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1799] = { - [sym__expression] = STATE(2497), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(461), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1800] = { - [sym__expression] = STATE(2501), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4265), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1801] = { - [sym__expression] = STATE(2489), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4269), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1802] = { - [sym__expression] = STATE(951), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1803] = { - [sym__expression] = STATE(568), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1804] = { - [sym__expression] = STATE(4277), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1805] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4271), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1806] = { + [sym__expression] = STATE(474), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1807] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [1808] = { + [sym__expression] = STATE(4266), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1809] = { + [sym__expression] = STATE(953), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1810] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2097), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [1811] = { + [sym__expression] = STATE(3288), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1812] = { + [sym__expression] = STATE(4299), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -242288,5236 +248357,3432 @@ 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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1806] = { - [sym__expression] = STATE(554), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [1813] = { + [sym__expression] = STATE(2190), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), + }, + [1814] = { + [sym__expression] = STATE(959), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [1807] = { - [sym__expression] = STATE(4269), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [1815] = { + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1816] = { + [sym__expression] = STATE(4048), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1808] = { - [sym__expression] = STATE(2506), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1809] = { - [sym__expression] = STATE(2509), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1810] = { - [sym__expression] = STATE(2510), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1811] = { - [sym__expression] = STATE(2512), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1812] = { - [sym__expression] = STATE(2513), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [1817] = { + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [1813] = { - [sym__expression] = STATE(4272), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [1818] = { + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1814] = { - [sym__expression] = STATE(2517), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1815] = { - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1816] = { - [sym__expression] = STATE(4307), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1817] = { - [sym__expression] = STATE(2410), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1818] = { - [sym__expression] = STATE(722), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1819] = { - [sym__expression] = STATE(555), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(926), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1820] = { - [sym__expression] = STATE(4264), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4069), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1821] = { - [sym__expression] = STATE(557), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4072), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1822] = { - [sym__expression] = STATE(1775), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(4067), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1823] = { - [sym__expression] = STATE(2405), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1824] = { - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(4065), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1825] = { - [sym__expression] = STATE(558), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [1824] = { + [sym__expression] = STATE(964), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [1826] = { - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [1825] = { + [sym__expression] = STATE(4051), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1826] = { + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1827] = { - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(2497), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1828] = { - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(2500), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1829] = { - [sym__expression] = STATE(561), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(2502), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1830] = { - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(4060), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1831] = { - [sym__expression] = STATE(599), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4046), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1832] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4092), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1833] = { - [sym__expression] = STATE(4266), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4057), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1834] = { - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(965), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1835] = { - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4471), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1836] = { - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(2511), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1837] = { - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(2512), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1838] = { - [sym_type_constraints] = STATE(2476), - [sym_property_delegate] = STATE(2669), - [sym_getter] = STATE(5434), - [sym_setter] = STATE(5434), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(5921), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5923), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), + [sym__expression] = STATE(2514), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__string_start] = ACTIONS(205), }, [1839] = { - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(2516), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1840] = { - [sym__expression] = STATE(363), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2517), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1841] = { - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(304), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1842] = { - [sym__expression] = STATE(4098), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(2519), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1843] = { - [sym__expression] = STATE(724), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(2570), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1844] = { - [sym__expression] = STATE(1466), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1845] = { - [sym__expression] = STATE(4100), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1846] = { - [sym__expression] = STATE(1656), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [1847] = { - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [1848] = { - [sym__expression] = STATE(367), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1849] = { - [sym__expression] = STATE(726), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1850] = { - [sym__expression] = STATE(4319), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1851] = { - [sym__expression] = STATE(728), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1852] = { - [sym__expression] = STATE(730), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1853] = { - [sym__expression] = STATE(2439), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1854] = { - [sym__expression] = STATE(2430), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1855] = { - [sym__expression] = STATE(2518), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1856] = { - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1857] = { - [sym__expression] = STATE(2431), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1858] = { - [sym__expression] = STATE(2438), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [1845] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [1859] = { - [sym__expression] = STATE(4258), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [1846] = { + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -247526,37145 +251791,39939 @@ 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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1847] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1848] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1600), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1603), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3916), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_SLASH] = ACTIONS(3898), + [anon_sym_PERCENT] = ACTIONS(3898), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + }, + [1849] = { + [sym__expression] = STATE(4520), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1850] = { + [sym__expression] = STATE(4495), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1851] = { + [sym__expression] = STATE(4418), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1852] = { + [sym__expression] = STATE(4420), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1853] = { + [sym__expression] = STATE(4422), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1854] = { + [sym__expression] = STATE(4423), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1855] = { + [sym__expression] = STATE(4427), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1856] = { + [sym__expression] = STATE(4429), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1857] = { + [sym__expression] = STATE(4107), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1858] = { + [sym__expression] = STATE(4438), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1859] = { + [sym__expression] = STATE(4136), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1860] = { - [sym__expression] = STATE(2449), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4439), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1861] = { - [sym__expression] = STATE(4253), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4440), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1862] = { - [sym__expression] = STATE(2427), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4444), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1863] = { - [sym__expression] = STATE(4271), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4452), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1864] = { - [sym__expression] = STATE(731), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4456), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1865] = { - [sym__expression] = STATE(4273), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4458), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1866] = { - [sym__expression] = STATE(4349), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [aux_sym__delegation_specifiers_repeat1] = STATE(2097), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(5719), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, [1867] = { - [sym__expression] = STATE(1485), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4465), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1868] = { - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [aux_sym__delegation_specifiers_repeat1] = STATE(1866), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(5719), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, [1869] = { - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4463), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1870] = { - [sym__expression] = STATE(4038), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4400), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1871] = { - [sym__expression] = STATE(871), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, [1872] = { - [sym__expression] = STATE(872), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), }, [1873] = { - [sym__expression] = STATE(467), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4469), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1874] = { - [sym__expression] = STATE(873), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4470), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1875] = { - [sym__expression] = STATE(1155), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4480), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1876] = { - [sym__expression] = STATE(562), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4481), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1877] = { - [sym__expression] = STATE(874), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4483), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1878] = { - [sym__expression] = STATE(879), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4484), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1879] = { - [sym__expression] = STATE(880), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4485), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1880] = { - [sym__expression] = STATE(4071), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4486), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1881] = { - [sym__expression] = STATE(4062), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4487), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1882] = { - [sym__expression] = STATE(4055), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4490), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1883] = { - [sym__expression] = STATE(4049), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1884] = { - [sym__expression] = STATE(1179), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(2531), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1793), + [sym_annotation] = STATE(1793), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1884] = { + [sym__expression] = STATE(4491), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1885] = { - [sym__expression] = STATE(2396), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4493), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1886] = { - [sym__expression] = STATE(2452), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4494), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1887] = { - [sym__expression] = STATE(4045), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4466), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1888] = { - [sym__expression] = STATE(1375), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4498), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1889] = { - [sym__expression] = STATE(1483), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4502), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1890] = { - [sym__expression] = STATE(1482), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4504), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1891] = { - [sym__expression] = STATE(4043), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4505), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1892] = { - [sym__expression] = STATE(1481), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1663), + [sym__in_operator] = STATE(1664), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1666), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1667), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5691), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), }, [1893] = { - [sym__expression] = STATE(1480), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4508), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1894] = { - [sym__expression] = STATE(1479), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4509), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1895] = { - [sym__expression] = STATE(1478), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4517), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1896] = { - [sym__expression] = STATE(293), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4518), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1897] = { - [sym__expression] = STATE(1477), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(284), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1898] = { - [sym__expression] = STATE(1476), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(290), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1899] = { - [sym__expression] = STATE(1475), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(288), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1900] = { - [sym__expression] = STATE(1474), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(287), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1901] = { - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(286), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1902] = { - [sym__expression] = STATE(2416), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(285), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1653), + [sym_annotation] = STATE(1653), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1237), + [sym_label] = ACTIONS(817), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(811), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(813), + [anon_sym_return] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1903] = { - [sym__expression] = STATE(2441), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(323), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1904] = { - [sym__expression] = STATE(1541), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(324), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1905] = { - [sym__expression] = STATE(4469), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4114), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1906] = { - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(325), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1907] = { - [sym__expression] = STATE(2406), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(329), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1908] = { - [sym__expression] = STATE(1462), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(327), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1909] = { - [sym__expression] = STATE(2578), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4526), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1910] = { - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(314), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1544), + [sym_annotation] = STATE(1544), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1911] = { - [sym__expression] = STATE(4040), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1912] = { - [sym_type_constraints] = STATE(2487), - [sym_property_delegate] = STATE(2692), - [sym_getter] = STATE(5366), - [sym_setter] = STATE(5366), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(5925), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [sym_function_body] = STATE(1085), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [1913] = { - [sym__expression] = STATE(283), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [1914] = { - [sym__expression] = STATE(4037), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1915] = { - [sym__expression] = STATE(4039), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(759), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1916] = { - [sym__expression] = STATE(289), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4523), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1917] = { - [sym__expression] = STATE(287), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4310), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1918] = { - [sym__expression] = STATE(291), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [1919] = { - [sym__expression] = STATE(286), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1760), - [sym_annotation] = STATE(1760), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4288), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1920] = { - [sym__expression] = STATE(4046), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4290), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1921] = { - [sym__expression] = STATE(4235), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4297), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1922] = { - [sym__expression] = STATE(1091), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4285), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1923] = { - [sym__expression] = STATE(4303), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4307), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1924] = { - [sym__expression] = STATE(4300), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5927), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1925] = { - [sym__expression] = STATE(313), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4298), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1926] = { - [sym__expression] = STATE(320), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1927] = { - [sym__expression] = STATE(1509), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(4305), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1927] = { + [sym__expression] = STATE(1753), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1928] = { - [sym__expression] = STATE(4453), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4304), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1929] = { - [sym__expression] = STATE(325), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1930] = { - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(1729), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1931] = { - [sym__expression] = STATE(4480), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4306), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1932] = { - [sym__expression] = STATE(1325), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4131), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1933] = { - [sym__expression] = STATE(330), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4110), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1934] = { - [sym__expression] = STATE(328), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1935] = { - [sym__expression] = STATE(2472), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(477), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1936] = { - [sym__expression] = STATE(327), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(717), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1937] = { - [sym__expression] = STATE(1117), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1768), - [sym_annotation] = STATE(1768), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(716), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1664), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1938] = { - [sym__expression] = STATE(1036), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(714), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1939] = { - [sym_property_delegate] = STATE(2511), - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5929), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__expression] = STATE(721), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1940] = { - [sym__expression] = STATE(3715), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4108), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1941] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1736), + [sym_annotation] = STATE(1736), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(362), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3107), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3111), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1942] = { + [sym__expression] = STATE(4124), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1943] = { + [sym__expression] = STATE(378), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), + }, + [1944] = { + [sym__expression] = STATE(715), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(205), }, - [1941] = { - [sym_property_delegate] = STATE(2460), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5716), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [1945] = { + [sym__expression] = STATE(726), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [1942] = { - [sym__expression] = STATE(2562), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [1946] = { + [sym__expression] = STATE(738), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [1943] = { - [sym_property_delegate] = STATE(2481), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5732), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [1947] = { + [sym__expression] = STATE(735), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [1944] = { - [sym_property_delegate] = STATE(2478), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5748), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [1945] = { - [sym__expression] = STATE(4075), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1946] = { - [sym__expression] = STATE(1430), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [1947] = { - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [1948] = { + [sym__expression] = STATE(734), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [1948] = { - [sym__expression] = STATE(375), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1949] = { - [sym_property_delegate] = STATE(2494), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5829), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5831), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__expression] = STATE(729), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1950] = { - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(712), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1951] = { - [sym__expression] = STATE(1429), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(725), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(1594), + [sym_annotation] = STATE(1594), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1243), + [sym_label] = ACTIONS(785), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(779), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [1952] = { - [sym__expression] = STATE(1428), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(299), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1953] = { - [sym__expression] = STATE(1427), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(379), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1954] = { - [sym__expression] = STATE(1426), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(305), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1955] = { - [sym__expression] = STATE(374), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(308), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1956] = { - [sym__expression] = STATE(1425), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(310), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1957] = { - [sym__expression] = STATE(1423), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(312), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1958] = { - [sym__expression] = STATE(1422), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(300), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1959] = { - [sym__expression] = STATE(1421), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1960] = { - [sym__expression] = STATE(1420), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(878), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1961] = { - [sym__expression] = STATE(1419), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(306), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1962] = { - [sym__expression] = STATE(376), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(307), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1963] = { - [sym__expression] = STATE(358), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(311), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1964] = { - [sym__expression] = STATE(361), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(309), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1965] = { - [sym__expression] = STATE(1413), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(301), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(1765), + [sym_annotation] = STATE(1765), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1966] = { - [sym_type_constraints] = STATE(2502), - [sym_property_delegate] = STATE(2630), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5931), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5933), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), + [sym__expression] = STATE(883), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1967] = { - [sym__expression] = STATE(1405), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(370), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1968] = { - [sym__expression] = STATE(1335), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1969] = { - [sym__expression] = STATE(3731), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(882), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1970] = { - [sym_type_constraints] = STATE(2507), - [sym_property_delegate] = STATE(2673), - [sym_getter] = STATE(5404), - [sym_setter] = STATE(5404), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__expression] = STATE(881), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1971] = { - [sym__expression] = STATE(362), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(875), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1972] = { - [sym__expression] = STATE(368), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(872), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1973] = { - [sym__expression] = STATE(357), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(870), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1974] = { - [sym__expression] = STATE(1416), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(368), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [1975] = { - [sym__expression] = STATE(3678), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(873), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1976] = { - [sym__expression] = STATE(4251), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4125), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1977] = { - [sym__expression] = STATE(372), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(874), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1978] = { - [sym__expression] = STATE(4058), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(876), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1979] = { - [sym__expression] = STATE(4248), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4126), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1980] = { - [sym__expression] = STATE(4246), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(879), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1981] = { - [sym__expression] = STATE(4241), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(880), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1545), + [sym_annotation] = STATE(1545), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1982] = { - [sym__expression] = STATE(4240), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1413), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [1983] = { - [sym__expression] = STATE(4017), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(3289), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1984] = { + [sym__expression] = STATE(3299), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1985] = { + [sym__expression] = STATE(3296), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1986] = { + [sym__expression] = STATE(3330), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1987] = { + [sym__expression] = STATE(3328), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1988] = { + [sym__expression] = STATE(3333), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1989] = { + [sym__expression] = STATE(3335), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [1990] = { + [sym__expression] = STATE(4230), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1580), + [sym_annotation] = STATE(1580), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(969), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3078), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1984] = { - [sym__expression] = STATE(4232), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1985] = { - [sym__expression] = STATE(4236), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1986] = { - [sym__expression] = STATE(4231), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1987] = { - [sym__expression] = STATE(4237), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1988] = { - [sym__expression] = STATE(4230), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1989] = { - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [1990] = { - [sym__expression] = STATE(4234), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1991] = { - [sym__expression] = STATE(1317), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(3336), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1992] = { - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(3337), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1993] = { - [sym__expression] = STATE(359), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(3338), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1994] = { - [sym__expression] = STATE(365), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(3339), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1995] = { - [sym__expression] = STATE(4229), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4128), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1996] = { - [sym__expression] = STATE(1313), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(3340), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1997] = { - [sym__expression] = STATE(4233), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4457), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1998] = { - [sym__expression] = STATE(1314), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4451), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [1999] = { - [sym__expression] = STATE(4250), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(364), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [2000] = { - [sym__expression] = STATE(3068), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4130), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2001] = { - [sym__expression] = STATE(4262), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4141), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2002] = { - [sym__expression] = STATE(364), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_function_body] = STATE(1132), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [2003] = { - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4450), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2004] = { - [sym__expression] = STATE(4020), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4445), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2005] = { - [sym__expression] = STATE(3967), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4500), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2006] = { - [sym__expression] = STATE(4026), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(366), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [2007] = { - [sym__expression] = STATE(4023), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4499), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2008] = { - [sym__expression] = STATE(4022), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4492), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2009] = { - [sym__expression] = STATE(4021), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4442), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2010] = { - [sym__expression] = STATE(3981), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4441), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2011] = { - [sym__expression] = STATE(4367), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4410), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2012] = { - [sym__expression] = STATE(4018), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4437), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2013] = { - [sym__expression] = STATE(4015), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(360), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [2014] = { - [sym__expression] = STATE(4014), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4433), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2015] = { - [sym__expression] = STATE(4013), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(4432), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2016] = { - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4431), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2017] = { - [sym__expression] = STATE(1315), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4430), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2018] = { - [sym__expression] = STATE(3973), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2018), - [sym_annotation] = STATE(2018), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(315), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1241), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(3310), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2019] = { - [sym__expression] = STATE(1318), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4424), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2020] = { - [sym__expression] = STATE(4275), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(381), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__expression] = STATE(3278), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2021] = { - [sym__expression] = STATE(1319), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4421), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2022] = { - [sym__expression] = STATE(4396), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4415), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2023] = { - [sym__expression] = STATE(369), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(1994), - [sym_annotation] = STATE(1994), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1315), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [2024] = { - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4514), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2025] = { - [sym__expression] = STATE(1041), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4512), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2026] = { - [sym__expression] = STATE(4482), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4417), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2027] = { - [sym__expression] = STATE(4474), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4511), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2028] = { - [sym__expression] = STATE(4470), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4475), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2029] = { - [sym__expression] = STATE(4466), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4401), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2030] = { - [sym__expression] = STATE(4465), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4402), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2031] = { - [sym__expression] = STATE(4464), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4143), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2032] = { - [sym__expression] = STATE(4458), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4405), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2033] = { - [sym__expression] = STATE(4315), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4411), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2034] = { - [sym__expression] = STATE(4447), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4425), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2035] = { - [sym__expression] = STATE(4440), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4426), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2036] = { - [sym__expression] = STATE(1322), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4462), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2037] = { - [sym__expression] = STATE(4439), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4464), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2038] = { - [sym__expression] = STATE(1324), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4474), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2039] = { - [sym__expression] = STATE(4327), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4478), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2040] = { - [sym__expression] = STATE(4366), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4479), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2041] = { - [sym__expression] = STATE(4437), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4513), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2042] = { - [sym__expression] = STATE(4434), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4516), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2043] = { - [sym__expression] = STATE(4433), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4507), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2044] = { - [sym__expression] = STATE(4429), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4515), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2045] = { - [sym__expression] = STATE(4431), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4510), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2046] = { - [sym__expression] = STATE(4428), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4489), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2047] = { - [sym__expression] = STATE(4365), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4488), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2048] = { - [sym_type_constraints] = STATE(2458), - [sym_property_delegate] = STATE(2664), - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(5937), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [sym__expression] = STATE(4459), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2049] = { - [sym__expression] = STATE(4426), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4447), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2050] = { - [sym__expression] = STATE(4424), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4446), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2051] = { - [sym__expression] = STATE(4422), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4309), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2052] = { - [sym__expression] = STATE(4420), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4275), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2053] = { - [sym__expression] = STATE(4418), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [2054] = { - [sym__expression] = STATE(4417), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(374), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_indexing_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_spread_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_elvis_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym__primary_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_collection_literal] = STATE(1110), + [sym__literal_constant] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_anonymous_function] = STATE(1110), + [sym__function_literal] = STATE(1110), + [sym_object_literal] = STATE(1110), + [sym_this_expression] = STATE(1110), + [sym_super_expression] = STATE(1110), + [sym_if_expression] = STATE(1110), + [sym_when_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_jump_expression] = STATE(1110), + [sym_callable_reference] = STATE(1110), + [sym__prefix_unary_operator] = STATE(2023), + [sym_annotation] = STATE(2023), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(1094), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1115), + [sym__break_at] = STATE(1115), + [sym__this_at] = STATE(1117), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1110), + [sym_long_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym_character_literal] = STATE(1110), + [sym__lexical_identifier] = STATE(823), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1303), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(427), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(433), + [anon_sym_return] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(451), + [anon_sym_break_AT] = ACTIONS(453), + [anon_sym_this_AT] = ACTIONS(455), + [anon_sym_super_AT] = ACTIONS(457), + [sym_real_literal] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(461), + [sym_hex_literal] = ACTIONS(463), + [sym_bin_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [sym__backtick_identifier] = ACTIONS(469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(471), }, [2055] = { - [sym__expression] = STATE(4414), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4434), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2056] = { - [sym__expression] = STATE(4410), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4428), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2057] = { - [sym__expression] = STATE(4407), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4416), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2058] = { - [sym__expression] = STATE(4406), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4321), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2059] = { - [sym__expression] = STATE(4400), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4413), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2060] = { - [sym__expression] = STATE(4399), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4412), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2061] = { - [sym__expression] = STATE(4398), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4409), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2062] = { - [sym__expression] = STATE(4395), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4403), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2063] = { - [sym__expression] = STATE(1042), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4314), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2064] = { - [sym__expression] = STATE(1045), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4404), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2065] = { - [sym__expression] = STATE(4392), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4407), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2066] = { - [sym__expression] = STATE(4435), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(3344), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1985), + [sym_annotation] = STATE(1985), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(265), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(251), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(257), + [anon_sym_return] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2067] = { - [sym__expression] = STATE(4370), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4414), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2068] = { - [sym__expression] = STATE(4343), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(5602), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5939), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2069] = { - [sym__expression] = STATE(4372), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_type_constraints] = STATE(2197), + [sym_property_delegate] = STATE(2352), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2069] = { + [sym__expression] = STATE(4323), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2070] = { - [sym__expression] = STATE(4376), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4477), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2071] = { - [sym__expression] = STATE(4377), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4496), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2072] = { - [sym__expression] = STATE(2524), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4497), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2073] = { - [sym__expression] = STATE(956), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4453), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2074] = { - [sym__expression] = STATE(1326), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4313), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2075] = { - [sym__expression] = STATE(4378), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(4503), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2076] = { - [sym__expression] = STATE(2445), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4501), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2077] = { - [sym__expression] = STATE(1046), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4455), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2078] = { - [sym__expression] = STATE(535), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2079] = { - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2079] = { + [sym__expression] = STATE(4320), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2080] = { - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2081] = { - [sym__expression] = STATE(4391), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2082] = { - [sym__expression] = STATE(1329), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1152), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2083] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2084] = { - [sym__expression] = STATE(1793), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2085] = { - [sym__expression] = STATE(2576), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4448), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2086] = { - [sym__expression] = STATE(2560), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4449), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2087] = { - [sym__expression] = STATE(2555), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), + [sym__expression] = STATE(1184), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2088] = { - [sym__expression] = STATE(2550), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4454), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2089] = { - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2090] = { - [sym__expression] = STATE(2548), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2091] = { - [sym__expression] = STATE(2546), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4460), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2092] = { - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), + [sym__expression] = STATE(4461), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2093] = { + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [2093] = { - [sym__expression] = STATE(2545), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2094] = { - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2095] = { - [sym__expression] = STATE(463), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4476), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2096] = { - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4312), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2097] = { - [sym__expression] = STATE(2540), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [aux_sym__delegation_specifiers_repeat1] = STATE(2097), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, [2098] = { - [sym__expression] = STATE(2534), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4376), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5670), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5726), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2099] = { - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4380), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2100] = { + [sym__expression] = STATE(4387), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2101] = { [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [2101] = { - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2102] = { - [sym__expression] = STATE(4192), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), + [sym__expression] = STATE(4419), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2103] = { + [sym_function_body] = STATE(1157), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2104] = { + [sym__expression] = STATE(4525), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [2105] = { + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2106] = { + [sym__expression] = STATE(4050), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1844), + [sym_annotation] = STATE(1844), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(302), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1580), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1353), + [sym_label] = ACTIONS(663), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), + [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(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [2103] = { - [sym__expression] = STATE(1447), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [2107] = { + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [2104] = { - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2105] = { - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, - [2106] = { - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [2108] = { + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [2107] = { - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2108] = { - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2109] = { - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2110] = { - [sym__expression] = STATE(1531), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2111] = { - [sym__expression] = STATE(1470), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(1008), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2112] = { - [sym_type_constraints] = STATE(2468), - [sym_property_delegate] = STATE(2629), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5941), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5943), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(3270), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_PLUS_EQ] = ACTIONS(3272), - [anon_sym_DASH_EQ] = ACTIONS(3272), - [anon_sym_STAR_EQ] = ACTIONS(3272), - [anon_sym_SLASH_EQ] = ACTIONS(3272), - [anon_sym_PERCENT_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2113] = { - [sym__expression] = STATE(1487), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2114] = { - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4325), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2115] = { - [sym__expression] = STATE(1495), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4443), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2116] = { - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1384), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2117] = { - [sym__expression] = STATE(1497), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1416), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2118] = { - [sym__expression] = STATE(1501), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2119] = { - [sym__expression] = STATE(1503), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(4519), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2120] = { - [sym__expression] = STATE(1505), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2121] = { - [sym__expression] = STATE(1507), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1409), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2122] = { - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1407), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2123] = { - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1406), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2124] = { - [sym__expression] = STATE(2153), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1404), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2125] = { - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1403), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2126] = { - [sym__expression] = STATE(1484), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1401), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2127] = { - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1388), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2128] = { - [sym__expression] = STATE(1511), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1395), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2129] = { - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1399), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2130] = { - [sym__expression] = STATE(714), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(957), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2131] = { - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(4522), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2132] = { - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__expression] = STATE(1386), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2133] = { - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(2131), - [sym_annotation] = STATE(2131), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(245), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1588), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1321), - [sym_label] = ACTIONS(305), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(291), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_data] = ACTIONS(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2134] = { - [sym__expression] = STATE(1557), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2110), - [sym_annotation] = STATE(2110), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(947), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2135] = { - [sym__expression] = STATE(2154), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym_type_constraints] = STATE(2227), + [sym_property_delegate] = STATE(2363), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, [2136] = { - [sym__expression] = STATE(2544), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), [sym__prefix_unary_operator] = STATE(2136), [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2137] = { - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2138] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3012), - [anon_sym_fun] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3012), - [anon_sym_super] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_when] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [anon_sym_throw] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3014), - [anon_sym_continue_AT] = ACTIONS(3014), - [anon_sym_break_AT] = ACTIONS(3014), - [sym_real_literal] = ACTIONS(3014), - [sym_integer_literal] = ACTIONS(3012), - [sym_hex_literal] = ACTIONS(3014), - [sym_bin_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3014), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3014), + [sym__expression] = STATE(4316), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2139] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5945), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2140] = { - [sym__expression] = STATE(521), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2141] = { - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2142] = { - [sym__expression] = STATE(2547), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), [sym__prefix_unary_operator] = STATE(2136), [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2143] = { - [sym__expression] = STATE(2542), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), [sym__prefix_unary_operator] = STATE(2136), [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2144] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(752), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2145] = { - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2146] = { - [sym_primary_constructor] = STATE(5091), - [sym_class_body] = STATE(4763), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2418), - [sym_type_constraints] = STATE(4631), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4527), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2147] = { - [sym__expression] = STATE(536), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(770), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2148] = { - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2149] = { - [sym__expression] = STATE(528), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2150] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5951), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__expression] = STATE(4399), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2151] = { - [sym__expression] = STATE(471), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4467), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2152] = { - [sym__expression] = STATE(4346), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(5955), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2153] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3051), - [anon_sym_fun] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3051), - [anon_sym_super] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3053), - [anon_sym_continue_AT] = ACTIONS(3053), - [anon_sym_break_AT] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [sym_hex_literal] = ACTIONS(3053), - [sym_bin_literal] = ACTIONS(3053), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3053), + [sym__expression] = STATE(772), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2154] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3035), - [anon_sym_fun] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3035), - [anon_sym_super] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_null] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_when] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3037), - [anon_sym_continue_AT] = ACTIONS(3037), - [anon_sym_break_AT] = ACTIONS(3037), - [sym_real_literal] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [sym_hex_literal] = ACTIONS(3037), - [sym_bin_literal] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3037), + [sym__expression] = STATE(2306), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2155] = { - [sym__expression] = STATE(468), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(1689), + [sym_annotation] = STATE(1689), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(303), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1333), + [sym_label] = ACTIONS(721), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(715), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_return] = ACTIONS(719), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2156] = { - [sym__expression] = STATE(474), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2157] = { - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym_function_body] = STATE(1061), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [2158] = { - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2096), - [sym_annotation] = STATE(2096), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(1870), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1271), - [sym_label] = ACTIONS(549), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(535), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(1385), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2118), + [sym_annotation] = STATE(2118), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(527), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(513), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(519), + [anon_sym_return] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2159] = { - [sym__expression] = STATE(530), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3485), + [sym_postfix_expression] = STATE(3485), + [sym_call_expression] = STATE(3485), + [sym_indexing_expression] = STATE(3485), + [sym_navigation_expression] = STATE(3485), + [sym_prefix_expression] = STATE(3485), + [sym_as_expression] = STATE(3485), + [sym_spread_expression] = STATE(3485), + [sym__binary_expression] = STATE(3485), + [sym_multiplicative_expression] = STATE(3485), + [sym_additive_expression] = STATE(3485), + [sym_range_expression] = STATE(3485), + [sym_infix_expression] = STATE(3485), + [sym_elvis_expression] = STATE(3485), + [sym_check_expression] = STATE(3485), + [sym_comparison_expression] = STATE(3485), + [sym_equality_expression] = STATE(3485), + [sym_conjunction_expression] = STATE(3485), + [sym_disjunction_expression] = STATE(3485), + [sym__primary_expression] = STATE(3485), + [sym_parenthesized_expression] = STATE(3485), + [sym_collection_literal] = STATE(3485), + [sym__literal_constant] = STATE(3485), + [sym_string_literal] = STATE(3485), + [sym_lambda_literal] = STATE(3485), + [sym_anonymous_function] = STATE(3485), + [sym__function_literal] = STATE(3485), + [sym_object_literal] = STATE(3485), + [sym_this_expression] = STATE(3485), + [sym_super_expression] = STATE(3485), + [sym_if_expression] = STATE(3485), + [sym_when_expression] = STATE(3485), + [sym_try_expression] = STATE(3485), + [sym_jump_expression] = STATE(3485), + [sym_callable_reference] = STATE(3485), + [sym__prefix_unary_operator] = STATE(2136), + [sym_annotation] = STATE(2136), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3516), + [sym__return_at] = STATE(225), + [sym__continue_at] = STATE(3422), + [sym__break_at] = STATE(3422), + [sym__this_at] = STATE(3420), + [sym__super_at] = STATE(3511), + [sym_unsigned_literal] = STATE(3485), + [sym_long_literal] = STATE(3485), + [sym_boolean_literal] = STATE(3485), + [sym_character_literal] = STATE(3485), + [sym__lexical_identifier] = STATE(2955), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1283), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(161), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(167), + [anon_sym_return] = ACTIONS(169), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_data] = ACTIONS(1592), + [anon_sym_inner] = ACTIONS(1592), + [anon_sym_value] = ACTIONS(1592), + [anon_sym_expect] = ACTIONS(1592), + [anon_sym_actual] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [anon_sym_continue_AT] = ACTIONS(185), + [anon_sym_break_AT] = ACTIONS(187), + [anon_sym_this_AT] = ACTIONS(189), + [anon_sym_super_AT] = ACTIONS(191), + [sym_real_literal] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_literal] = ACTIONS(197), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [sym__backtick_identifier] = ACTIONS(203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, [2160] = { - [sym__expression] = STATE(523), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(4506), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1803), + [sym_annotation] = STATE(1803), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(339), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2161] = { - [sym__expression] = STATE(533), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2162] = { - [sym__expression] = STATE(2230), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(951), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [2162] = { + [sym__expression] = STATE(797), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2163] = { - [sym__expression] = STATE(2231), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(3711), + [sym__unary_expression] = STATE(5168), + [sym_postfix_expression] = STATE(5168), + [sym_call_expression] = STATE(5168), + [sym_indexing_expression] = STATE(5168), + [sym_navigation_expression] = STATE(5168), + [sym_prefix_expression] = STATE(5168), + [sym_as_expression] = STATE(5168), + [sym_spread_expression] = STATE(5168), + [sym__binary_expression] = STATE(5168), + [sym_multiplicative_expression] = STATE(5168), + [sym_additive_expression] = STATE(5168), + [sym_range_expression] = STATE(5168), + [sym_infix_expression] = STATE(5168), + [sym_elvis_expression] = STATE(5168), + [sym_check_expression] = STATE(5168), + [sym_comparison_expression] = STATE(5168), + [sym_equality_expression] = STATE(5168), + [sym_conjunction_expression] = STATE(5168), + [sym_disjunction_expression] = STATE(5168), + [sym__primary_expression] = STATE(5168), + [sym_parenthesized_expression] = STATE(5168), + [sym_collection_literal] = STATE(5168), + [sym__literal_constant] = STATE(5168), + [sym_string_literal] = STATE(5168), + [sym_lambda_literal] = STATE(5168), + [sym_anonymous_function] = STATE(5168), + [sym__function_literal] = STATE(5168), + [sym_object_literal] = STATE(5168), + [sym_this_expression] = STATE(5168), + [sym_super_expression] = STATE(5168), + [sym_if_expression] = STATE(5168), + [sym_when_expression] = STATE(5168), + [sym_try_expression] = STATE(5168), + [sym_jump_expression] = STATE(5168), + [sym_callable_reference] = STATE(5168), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5160), + [sym__break_at] = STATE(5160), + [sym__this_at] = STATE(5142), + [sym__super_at] = STATE(5130), + [sym_unsigned_literal] = STATE(5168), + [sym_long_literal] = STATE(5168), + [sym_boolean_literal] = STATE(5168), + [sym_character_literal] = STATE(5168), + [sym__lexical_identifier] = STATE(4612), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_return] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_data] = ACTIONS(1920), + [anon_sym_inner] = ACTIONS(1920), + [anon_sym_value] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1920), + [anon_sym_actual] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [2164] = { - [sym__expression] = STATE(2232), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(2535), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2165] = { - [sym__expression] = STATE(2233), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym__expression] = STATE(783), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2166] = { - [sym__expression] = STATE(542), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2167] = { - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1533), + [sym_annotation] = STATE(1533), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2168] = { - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(775), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1774), + [sym_annotation] = STATE(1774), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4003), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3899), + [sym__break_at] = STATE(3899), + [sym__this_at] = STATE(3892), + [sym__super_at] = STATE(3950), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(497), + [anon_sym_super] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(753), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(747), + [anon_sym_when] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_data] = ACTIONS(1652), + [anon_sym_inner] = ACTIONS(1652), + [anon_sym_value] = ACTIONS(1652), + [anon_sym_expect] = ACTIONS(1652), + [anon_sym_actual] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_continue_AT] = ACTIONS(535), + [anon_sym_break_AT] = ACTIONS(537), + [anon_sym_this_AT] = ACTIONS(539), + [anon_sym_super_AT] = ACTIONS(541), + [sym_real_literal] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(545), + [sym_hex_literal] = ACTIONS(547), + [sym_bin_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym__backtick_identifier] = ACTIONS(553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [2169] = { - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_type_constraints] = STATE(2211), + [sym_property_delegate] = STATE(2333), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5732), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), }, [2170] = { - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_type_constraints] = STATE(2222), + [sym_property_delegate] = STATE(2373), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, [2171] = { - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4334), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2172] = { - [sym__expression] = STATE(2236), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(948), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2113), + [sym_annotation] = STATE(2113), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1309), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(597), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2173] = { - [sym__expression] = STATE(2237), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), - }, - [2174] = { - [sym__expression] = STATE(2238), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym_type_constraints] = STATE(2202), + [sym_property_delegate] = STATE(2331), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2174] = { + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2175] = { - [sym__expression] = STATE(2240), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(2275), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2176] = { - [sym__expression] = STATE(2241), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2177] = { - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2272), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2178] = { - [sym__expression] = STATE(2244), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(2135), - [sym_annotation] = STATE(2135), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(388), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1067), - [sym_label] = ACTIONS(1075), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), + [sym__expression] = STATE(2271), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2179] = { - [sym__expression] = STATE(473), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2270), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2180] = { - [sym__expression] = STATE(472), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_type_constraints] = STATE(2194), + [sym_property_delegate] = STATE(2321), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, [2181] = { - [sym__expression] = STATE(470), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_type_constraints] = STATE(2191), + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, [2182] = { - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2267), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2183] = { - [sym__expression] = STATE(1275), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(2266), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2184] = { - [sym__expression] = STATE(478), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2265), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2185] = { - [sym__expression] = STATE(461), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__expression] = STATE(2264), + [sym__unary_expression] = STATE(3085), + [sym_postfix_expression] = STATE(3085), + [sym_call_expression] = STATE(3085), + [sym_indexing_expression] = STATE(3085), + [sym_navigation_expression] = STATE(3085), + [sym_prefix_expression] = STATE(3085), + [sym_as_expression] = STATE(3085), + [sym_spread_expression] = STATE(3085), + [sym__binary_expression] = STATE(3085), + [sym_multiplicative_expression] = STATE(3085), + [sym_additive_expression] = STATE(3085), + [sym_range_expression] = STATE(3085), + [sym_infix_expression] = STATE(3085), + [sym_elvis_expression] = STATE(3085), + [sym_check_expression] = STATE(3085), + [sym_comparison_expression] = STATE(3085), + [sym_equality_expression] = STATE(3085), + [sym_conjunction_expression] = STATE(3085), + [sym_disjunction_expression] = STATE(3085), + [sym__primary_expression] = STATE(3085), + [sym_parenthesized_expression] = STATE(3085), + [sym_collection_literal] = STATE(3085), + [sym__literal_constant] = STATE(3085), + [sym_string_literal] = STATE(3085), + [sym_lambda_literal] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [sym__function_literal] = STATE(3085), + [sym_object_literal] = STATE(3085), + [sym_this_expression] = STATE(3085), + [sym_super_expression] = STATE(3085), + [sym_if_expression] = STATE(3085), + [sym_when_expression] = STATE(3085), + [sym_try_expression] = STATE(3085), + [sym_jump_expression] = STATE(3085), + [sym_callable_reference] = STATE(3085), + [sym__prefix_unary_operator] = STATE(2166), + [sym_annotation] = STATE(2166), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(3074), + [sym__return_at] = STATE(371), + [sym__continue_at] = STATE(3094), + [sym__break_at] = STATE(3094), + [sym__this_at] = STATE(3099), + [sym__super_at] = STATE(3084), + [sym_unsigned_literal] = STATE(3085), + [sym_long_literal] = STATE(3085), + [sym_boolean_literal] = STATE(3085), + [sym_character_literal] = STATE(3085), + [sym__lexical_identifier] = STATE(2791), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1906), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(1910), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1135), + [sym_label] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_data] = ACTIONS(1910), + [anon_sym_inner] = ACTIONS(1910), + [anon_sym_value] = ACTIONS(1910), + [anon_sym_expect] = ACTIONS(1910), + [anon_sym_actual] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(619), + [anon_sym_break_AT] = ACTIONS(621), + [anon_sym_this_AT] = ACTIONS(623), + [anon_sym_super_AT] = ACTIONS(625), + [sym_real_literal] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(629), + [sym_hex_literal] = ACTIONS(631), + [sym_bin_literal] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(635), + [sym__backtick_identifier] = ACTIONS(637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [2186] = { - [sym__expression] = STATE(477), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_type_constraints] = STATE(2200), + [sym_property_delegate] = STATE(2329), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5748), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, [2187] = { - [sym__expression] = STATE(464), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_function_body] = STATE(1081), + [sym__block] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(5387), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [2188] = { - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__expression] = STATE(4146), + [sym__unary_expression] = STATE(4772), + [sym_postfix_expression] = STATE(4772), + [sym_call_expression] = STATE(4772), + [sym_indexing_expression] = STATE(4772), + [sym_navigation_expression] = STATE(4772), + [sym_prefix_expression] = STATE(4772), + [sym_as_expression] = STATE(4772), + [sym_spread_expression] = STATE(4772), + [sym__binary_expression] = STATE(4772), + [sym_multiplicative_expression] = STATE(4772), + [sym_additive_expression] = STATE(4772), + [sym_range_expression] = STATE(4772), + [sym_infix_expression] = STATE(4772), + [sym_elvis_expression] = STATE(4772), + [sym_check_expression] = STATE(4772), + [sym_comparison_expression] = STATE(4772), + [sym_equality_expression] = STATE(4772), + [sym_conjunction_expression] = STATE(4772), + [sym_disjunction_expression] = STATE(4772), + [sym__primary_expression] = STATE(4772), + [sym_parenthesized_expression] = STATE(4772), + [sym_collection_literal] = STATE(4772), + [sym__literal_constant] = STATE(4772), + [sym_string_literal] = STATE(4772), + [sym_lambda_literal] = STATE(4772), + [sym_anonymous_function] = STATE(4772), + [sym__function_literal] = STATE(4772), + [sym_object_literal] = STATE(4772), + [sym_this_expression] = STATE(4772), + [sym_super_expression] = STATE(4772), + [sym_if_expression] = STATE(4772), + [sym_when_expression] = STATE(4772), + [sym_try_expression] = STATE(4772), + [sym_jump_expression] = STATE(4772), + [sym_callable_reference] = STATE(4772), + [sym__prefix_unary_operator] = STATE(1905), + [sym_annotation] = STATE(1905), + [sym__single_annotation] = STATE(5561), + [sym__multi_annotation] = STATE(5561), + [sym_simple_identifier] = STATE(4865), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4832), + [sym__break_at] = STATE(4832), + [sym__this_at] = STATE(4752), + [sym__super_at] = STATE(4882), + [sym_unsigned_literal] = STATE(4772), + [sym_long_literal] = STATE(4772), + [sym_boolean_literal] = STATE(4772), + [sym_character_literal] = STATE(4772), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_object] = ACTIONS(1838), + [anon_sym_fun] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_when] = ACTIONS(253), + [anon_sym_try] = ACTIONS(255), + [anon_sym_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_data] = ACTIONS(1842), + [anon_sym_inner] = ACTIONS(1842), + [anon_sym_value] = ACTIONS(1842), + [anon_sym_expect] = ACTIONS(1842), + [anon_sym_actual] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = ACTIONS(275), + [anon_sym_break_AT] = ACTIONS(277), + [anon_sym_this_AT] = ACTIONS(279), + [anon_sym_super_AT] = ACTIONS(281), + [sym_real_literal] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(285), + [sym_hex_literal] = ACTIONS(287), + [sym_bin_literal] = ACTIONS(287), + [anon_sym_true] = ACTIONS(289), + [anon_sym_false] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym__backtick_identifier] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), }, [2189] = { - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [2190] = { - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2191] = { - [sym__expression] = STATE(462), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_property_delegate] = STATE(2329), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5748), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, [2192] = { - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_primary_constructor] = STATE(4940), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2368), + [sym_type_constraints] = STATE(5296), + [sym_enum_class_body] = STATE(5403), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3244), + [anon_sym_super] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_when] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [2193] = { - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_primary_constructor] = STATE(4778), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2310), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2194] = { - [sym_primary_constructor] = STATE(5097), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2450), - [sym_type_constraints] = STATE(4588), - [sym_enum_class_body] = STATE(4705), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5957), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, [2195] = { - [sym__expression] = STATE(4341), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4964), + [sym_class_body] = STATE(5344), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2328), + [sym_type_constraints] = STATE(5268), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [2196] = { - [sym__expression] = STATE(3732), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2197] = { - [sym__expression] = STATE(3704), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym_property_delegate] = STATE(2325), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2198] = { - [sym__expression] = STATE(3705), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2199] = { - [sym__expression] = STATE(3707), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2200] = { - [sym__expression] = STATE(3709), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym_property_delegate] = STATE(2336), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2201] = { - [sym__expression] = STATE(3710), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym_primary_constructor] = STATE(4791), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2307), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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__string_start] = ACTIONS(109), }, [2202] = { - [sym__expression] = STATE(3711), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym_property_delegate] = STATE(2321), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5744), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2203] = { - [sym__expression] = STATE(4286), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4798), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2300), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2204] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_primary_constructor] = STATE(4808), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2295), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2205] = { - [sym__expression] = STATE(3059), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2206] = { - [sym__expression] = STATE(3036), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3576), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2258), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2207] = { - [sym__expression] = STATE(3028), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2208] = { - [sym__expression] = STATE(3057), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2209] = { - [sym__expression] = STATE(3053), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4826), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2303), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2210] = { - [sym__expression] = STATE(517), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(5798), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [2211] = { - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2204), - [sym_annotation] = STATE(2204), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1680), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), + [sym_property_delegate] = STATE(2331), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5740), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), }, [2212] = { - [sym__expression] = STATE(3050), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3573), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2294), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2213] = { - [sym__expression] = STATE(3049), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [2214] = { - [sym__expression] = STATE(4456), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3582), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2302), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), }, [2215] = { - [sym__expression] = STATE(4491), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4961), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2316), + [sym_type_constraints] = STATE(5269), + [sym_enum_class_body] = STATE(5344), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_super] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_when] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3238), + [anon_sym_continue_AT] = ACTIONS(3238), + [anon_sym_break_AT] = ACTIONS(3238), + [anon_sym_this_AT] = ACTIONS(3238), + [anon_sym_super_AT] = ACTIONS(3238), + [sym_real_literal] = ACTIONS(3238), + [sym_integer_literal] = ACTIONS(3234), + [sym_hex_literal] = ACTIONS(3238), + [sym_bin_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3238), }, [2216] = { - [sym__expression] = STATE(4487), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2217] = { - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(3424), - [sym_postfix_expression] = STATE(3424), - [sym_call_expression] = STATE(3424), - [sym_indexing_expression] = STATE(3424), - [sym_navigation_expression] = STATE(3424), - [sym_prefix_expression] = STATE(3424), - [sym_as_expression] = STATE(3424), - [sym_spread_expression] = STATE(3424), - [sym__binary_expression] = STATE(3424), - [sym_multiplicative_expression] = STATE(3424), - [sym_additive_expression] = STATE(3424), - [sym_range_expression] = STATE(3424), - [sym_infix_expression] = STATE(3424), - [sym_elvis_expression] = STATE(3424), - [sym_check_expression] = STATE(3424), - [sym_comparison_expression] = STATE(3424), - [sym_equality_expression] = STATE(3424), - [sym_conjunction_expression] = STATE(3424), - [sym_disjunction_expression] = STATE(3424), - [sym__primary_expression] = STATE(3424), - [sym_parenthesized_expression] = STATE(3424), - [sym_collection_literal] = STATE(3424), - [sym__literal_constant] = STATE(3424), - [sym_string_literal] = STATE(3424), - [sym_lambda_literal] = STATE(3424), - [sym_anonymous_function] = STATE(3424), - [sym__function_literal] = STATE(3424), - [sym_object_literal] = STATE(3424), - [sym_this_expression] = STATE(3424), - [sym_super_expression] = STATE(3424), - [sym_if_expression] = STATE(3424), - [sym_when_expression] = STATE(3424), - [sym_try_expression] = STATE(3424), - [sym_jump_expression] = STATE(3424), - [sym_callable_reference] = STATE(3424), - [sym__prefix_unary_operator] = STATE(1841), - [sym_annotation] = STATE(1841), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3420), - [sym__return_at] = STATE(323), - [sym__continue_at] = STATE(3427), - [sym__break_at] = STATE(3427), - [sym_unsigned_literal] = STATE(3424), - [sym_long_literal] = STATE(3424), - [sym_boolean_literal] = STATE(3424), - [sym_character_literal] = STATE(3424), - [sym__lexical_identifier] = STATE(2834), - [sym__alpha_identifier] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_fun] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(495), - [anon_sym_set] = ACTIONS(495), - [anon_sym_this] = ACTIONS(519), - [anon_sym_super] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(741), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(735), - [anon_sym_when] = ACTIONS(537), - [anon_sym_try] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_return] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(545), - [anon_sym_break] = ACTIONS(545), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_data] = ACTIONS(495), - [anon_sym_inner] = ACTIONS(495), - [anon_sym_value] = ACTIONS(495), - [anon_sym_expect] = ACTIONS(495), - [anon_sym_actual] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(557), - [anon_sym_break_AT] = ACTIONS(559), - [sym_real_literal] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(563), - [sym_hex_literal] = ACTIONS(565), - [sym_bin_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(569), - [sym__backtick_identifier] = ACTIONS(571), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(573), + [sym_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, [2218] = { - [sym__expression] = STATE(4283), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4796), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2289), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, [2219] = { - [sym__expression] = STATE(709), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_class_body] = STATE(1043), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, [2220] = { - [sym__expression] = STATE(4444), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4794), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2288), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, [2221] = { - [sym__expression] = STATE(707), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_primary_constructor] = STATE(3375), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2279), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), }, [2222] = { - [sym__expression] = STATE(4394), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_property_delegate] = STATE(2352), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, [2223] = { - [sym__expression] = STATE(4393), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4931), + [sym_class_body] = STATE(5323), + [sym__class_parameters] = STATE(5111), + [sym_type_parameters] = STATE(2380), + [sym_type_constraints] = STATE(5301), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3200), + [anon_sym_super] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_when] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_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), }, [2224] = { - [sym__expression] = STATE(3048), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2225] = { - [sym__expression] = STATE(710), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [2226] = { - [sym__expression] = STATE(3712), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2227] = { - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_property_delegate] = STATE(2373), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, [2228] = { - [sym__expression] = STATE(4383), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2229] = { - [sym__expression] = STATE(3045), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4755), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2268), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [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), }, [2230] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_fun] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_this] = ACTIONS(3005), - [anon_sym_super] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_when] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_throw] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3007), - [anon_sym_continue_AT] = ACTIONS(3007), - [anon_sym_break_AT] = ACTIONS(3007), - [sym_real_literal] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(3005), - [sym_hex_literal] = ACTIONS(3007), - [sym_bin_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3007), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3007), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2231] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(5832), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, [2232] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2233] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(2994), - [anon_sym_fun] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_when] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(5877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2996), - [anon_sym_continue_AT] = ACTIONS(2996), - [anon_sym_break_AT] = ACTIONS(2996), - [sym_real_literal] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [sym_hex_literal] = ACTIONS(2996), - [sym_bin_literal] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2996), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [2234] = { - [sym__expression] = STATE(703), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2235] = { - [sym__expression] = STATE(3044), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2236] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(5863), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3047), - [anon_sym_super] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_when] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_throw] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_EQ] = ACTIONS(5881), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3049), - [anon_sym_continue_AT] = ACTIONS(3049), - [anon_sym_break_AT] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [sym_hex_literal] = ACTIONS(3049), - [sym_bin_literal] = ACTIONS(3049), - [anon_sym_true] = ACTIONS(3047), - [anon_sym_false] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3049), + [sym_primary_constructor] = STATE(3394), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2261), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5834), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(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), }, [2237] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_object] = ACTIONS(3023), - [anon_sym_fun] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3023), - [anon_sym_super] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(5867), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_when] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(5883), - [anon_sym_is] = ACTIONS(4635), - [anon_sym_BANGis] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3025), - [anon_sym_continue_AT] = ACTIONS(3025), - [anon_sym_break_AT] = ACTIONS(3025), - [sym_real_literal] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [sym_hex_literal] = ACTIONS(3025), - [sym_bin_literal] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3025), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5081), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [2238] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, [2239] = { - [sym__expression] = STATE(700), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_primary_constructor] = STATE(3384), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2260), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2240] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_object] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_when] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3000), - [anon_sym_continue_AT] = ACTIONS(3000), - [anon_sym_break_AT] = ACTIONS(3000), - [sym_real_literal] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [sym_hex_literal] = ACTIONS(3000), - [sym_bin_literal] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3000), + [sym_primary_constructor] = STATE(3381), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2276), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, [2241] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_fun] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3089), - [anon_sym_super] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_null] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_when] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3091), - [anon_sym_continue_AT] = ACTIONS(3091), - [anon_sym_break_AT] = ACTIONS(3091), - [sym_real_literal] = ACTIONS(3091), - [sym_integer_literal] = ACTIONS(3089), - [sym_hex_literal] = ACTIONS(3091), - [sym_bin_literal] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3091), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3091), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [2242] = { - [sym_property_delegate] = STATE(2473), - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5959), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_property_delegate] = STATE(2360), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -284689,3571 +291748,16887 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, [2243] = { - [sym__expression] = STATE(3043), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), + [anon_sym_LT_EQ] = ACTIONS(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2244] = { - [sym_indexing_suffix] = STATE(3409), - [sym_navigation_suffix] = STATE(3408), - [sym_call_suffix] = STATE(3407), - [sym_annotated_lambda] = STATE(3406), - [sym_type_arguments] = STATE(7965), - [sym_value_arguments] = STATE(2781), - [sym_lambda_literal] = STATE(3405), - [sym__equality_operator] = STATE(2172), - [sym__comparison_operator] = STATE(2173), - [sym__in_operator] = STATE(2174), - [sym__is_operator] = STATE(6248), - [sym__additive_operator] = STATE(2175), - [sym__multiplicative_operator] = STATE(2176), - [sym__as_operator] = STATE(6249), - [sym__postfix_unary_operator] = STATE(3404), - [sym__member_access_operator] = STATE(7553), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2178), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_as] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_fun] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_super] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(5865), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(5869), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_as_QMARK] = ACTIONS(4641), - [anon_sym_PLUS_PLUS] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_BANG_BANG] = ACTIONS(4643), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3080), - [anon_sym_continue_AT] = ACTIONS(3080), - [anon_sym_break_AT] = ACTIONS(3080), - [sym_real_literal] = ACTIONS(3080), - [sym_integer_literal] = ACTIONS(3078), - [sym_hex_literal] = ACTIONS(3080), - [sym_bin_literal] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3080), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(4625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3080), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5848), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, [2245] = { - [sym__expression] = STATE(701), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1965), - [sym_annotation] = STATE(1965), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1265), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, [2246] = { - [sym_primary_constructor] = STATE(5109), - [sym_class_body] = STATE(4705), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2412), - [sym_type_constraints] = STATE(4582), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5961), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1764), + [sym__in_operator] = STATE(1763), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1761), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1760), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, [2247] = { - [sym__expression] = STATE(4401), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3577), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2250), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2248] = { - [sym__expression] = STATE(3042), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_property_delegate] = STATE(2363), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, [2249] = { - [sym__expression] = STATE(4445), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5852), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [2250] = { - [sym__expression] = STATE(4448), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3580), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [2251] = { - [sym__expression] = STATE(4452), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3173), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [2252] = { - [sym__expression] = STATE(3125), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3709), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2359), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, [2253] = { - [sym__expression] = STATE(4381), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [2254] = { - [sym__expression] = STATE(4382), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [2255] = { - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [2256] = { - [sym__expression] = STATE(4462), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, [2257] = { - [sym__expression] = STATE(4481), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [2258] = { - [sym__expression] = STATE(4484), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3579), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [2259] = { - [sym__expression] = STATE(4489), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3700), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2344), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, [2260] = { - [sym__expression] = STATE(4486), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3377), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [2261] = { - [sym__expression] = STATE(4473), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(3390), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, [2262] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4941), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2318), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, [2263] = { - [sym__expression] = STATE(4467), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), }, [2264] = { - [sym__expression] = STATE(4459), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_when] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3096), + [anon_sym_continue_AT] = ACTIONS(3096), + [anon_sym_break_AT] = ACTIONS(3096), + [anon_sym_this_AT] = ACTIONS(3096), + [anon_sym_super_AT] = ACTIONS(3096), + [sym_real_literal] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [sym_hex_literal] = ACTIONS(3096), + [sym_bin_literal] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, [2265] = { - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_super] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3127), + [anon_sym_continue_AT] = ACTIONS(3127), + [anon_sym_break_AT] = ACTIONS(3127), + [anon_sym_this_AT] = ACTIONS(3127), + [anon_sym_super_AT] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [sym_hex_literal] = ACTIONS(3127), + [sym_bin_literal] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3127), }, [2266] = { - [sym__expression] = STATE(3121), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_when] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3119), + [anon_sym_continue_AT] = ACTIONS(3119), + [anon_sym_break_AT] = ACTIONS(3119), + [anon_sym_this_AT] = ACTIONS(3119), + [anon_sym_super_AT] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [sym_hex_literal] = ACTIONS(3119), + [sym_bin_literal] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, [2267] = { - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2190), - [sym_annotation] = STATE(2190), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1628), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1255), - [sym_label] = ACTIONS(469), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(455), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_return] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_fun] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3136), + [anon_sym_super] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_null] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_when] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3138), + [anon_sym_continue_AT] = ACTIONS(3138), + [anon_sym_break_AT] = ACTIONS(3138), + [anon_sym_this_AT] = ACTIONS(3138), + [anon_sym_super_AT] = ACTIONS(3138), + [sym_real_literal] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(3136), + [sym_hex_literal] = ACTIONS(3138), + [sym_bin_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3138), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3138), }, [2268] = { - [sym__expression] = STATE(4446), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_primary_constructor] = STATE(4766), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, [2269] = { - [sym__expression] = STATE(4443), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_type_constraints] = STATE(2389), + [sym_property_delegate] = STATE(2592), + [sym_getter] = STATE(5335), + [sym_setter] = STATE(5335), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_EQ] = ACTIONS(5902), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_fun] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5906), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3358), + [anon_sym_super] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [anon_sym_this_AT] = ACTIONS(3360), + [anon_sym_super_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, [2270] = { - [sym__expression] = STATE(4436), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [2271] = { - [sym__expression] = STATE(4054), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_when] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3146), + [anon_sym_continue_AT] = ACTIONS(3146), + [anon_sym_break_AT] = ACTIONS(3146), + [anon_sym_this_AT] = ACTIONS(3146), + [anon_sym_super_AT] = ACTIONS(3146), + [sym_real_literal] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(3144), + [sym_hex_literal] = ACTIONS(3146), + [sym_bin_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), }, [2272] = { - [sym__expression] = STATE(4415), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, [2273] = { - [sym__expression] = STATE(3716), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, [2274] = { - [sym__expression] = STATE(787), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_super] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3195), + [anon_sym_continue_AT] = ACTIONS(3195), + [anon_sym_break_AT] = ACTIONS(3195), + [anon_sym_this_AT] = ACTIONS(3195), + [anon_sym_super_AT] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_hex_literal] = ACTIONS(3195), + [sym_bin_literal] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), }, [2275] = { - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_super] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_when] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3188), + [anon_sym_continue_AT] = ACTIONS(3188), + [anon_sym_break_AT] = ACTIONS(3188), + [anon_sym_this_AT] = ACTIONS(3188), + [anon_sym_super_AT] = ACTIONS(3188), + [sym_real_literal] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [sym_hex_literal] = ACTIONS(3188), + [sym_bin_literal] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), }, [2276] = { - [sym__expression] = STATE(3718), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [sym_primary_constructor] = STATE(3376), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2277] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2278] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3175), + [anon_sym_super] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_when] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3177), + [anon_sym_continue_AT] = ACTIONS(3177), + [anon_sym_break_AT] = ACTIONS(3177), + [anon_sym_this_AT] = ACTIONS(3177), + [anon_sym_super_AT] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3177), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3177), + }, + [2279] = { + [sym_primary_constructor] = STATE(3374), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2280] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2281] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [2282] = { + [sym_primary_constructor] = STATE(3701), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2354), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2283] = { + [sym_type_constraints] = STATE(2418), + [sym_property_delegate] = STATE(2554), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [2284] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2285] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_fun] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3132), + [anon_sym_super] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_when] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3134), + [anon_sym_continue_AT] = ACTIONS(3134), + [anon_sym_break_AT] = ACTIONS(3134), + [anon_sym_this_AT] = ACTIONS(3134), + [anon_sym_super_AT] = ACTIONS(3134), + [sym_real_literal] = ACTIONS(3134), + [sym_integer_literal] = ACTIONS(3132), + [sym_hex_literal] = ACTIONS(3134), + [sym_bin_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3134), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3134), + }, + [2286] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_super] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_when] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3103), + [anon_sym_continue_AT] = ACTIONS(3103), + [anon_sym_break_AT] = ACTIONS(3103), + [anon_sym_this_AT] = ACTIONS(3103), + [anon_sym_super_AT] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [sym_hex_literal] = ACTIONS(3103), + [sym_bin_literal] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3103), + }, + [2287] = { + [sym_type_constraints] = STATE(2396), + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [2288] = { + [sym_primary_constructor] = STATE(4801), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2289] = { + [sym_primary_constructor] = STATE(4803), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2290] = { + [sym_primary_constructor] = STATE(4934), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2345), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + }, + [2291] = { + [sym_primary_constructor] = STATE(3685), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2343), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2292] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2293] = { + [sym_primary_constructor] = STATE(4903), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2378), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_STAR_EQ] = ACTIONS(3248), + [anon_sym_SLASH_EQ] = ACTIONS(3248), + [anon_sym_PERCENT_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2294] = { + [sym_primary_constructor] = STATE(3575), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2295] = { + [sym_primary_constructor] = STATE(4799), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2296] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2297] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [2298] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2299] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2300] = { + [sym_primary_constructor] = STATE(4783), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2301] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2302] = { + [sym_primary_constructor] = STATE(3586), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2303] = { + [sym_primary_constructor] = STATE(4828), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2304] = { + [sym_type_constraints] = STATE(2400), + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), + }, + [2305] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2306] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3169), + [anon_sym_continue_AT] = ACTIONS(3169), + [anon_sym_break_AT] = ACTIONS(3169), + [anon_sym_this_AT] = ACTIONS(3169), + [anon_sym_super_AT] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [2307] = { + [sym_primary_constructor] = STATE(4781), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2308] = { + [sym_primary_constructor] = STATE(4898), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2365), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2309] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4082), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2310] = { + [sym_primary_constructor] = STATE(4776), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2311] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2312] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2313] = { + [sym_indexing_suffix] = STATE(3148), + [sym_navigation_suffix] = STATE(3151), + [sym_call_suffix] = STATE(3155), + [sym_annotated_lambda] = STATE(3170), + [sym_type_arguments] = STATE(8139), + [sym_value_arguments] = STATE(2748), + [sym_lambda_literal] = STATE(3174), + [sym__equality_operator] = STATE(2179), + [sym__comparison_operator] = STATE(2178), + [sym__in_operator] = STATE(2177), + [sym__is_operator] = STATE(6348), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2175), + [sym__as_operator] = STATE(6367), + [sym__postfix_unary_operator] = STATE(3144), + [sym__member_access_operator] = STATE(7722), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2174), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(5876), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_DOT_DOT] = ACTIONS(5880), + [anon_sym_QMARK_COLON] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_BANG_EQ] = ACTIONS(5888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5890), + [anon_sym_EQ_EQ] = ACTIONS(5888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5890), + [anon_sym_LT_EQ] = ACTIONS(5892), + [anon_sym_GT_EQ] = ACTIONS(5892), + [anon_sym_BANGin] = ACTIONS(5894), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(5896), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_SLASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5876), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3184), + [anon_sym_continue_AT] = ACTIONS(3184), + [anon_sym_break_AT] = ACTIONS(3184), + [anon_sym_this_AT] = ACTIONS(3184), + [anon_sym_super_AT] = ACTIONS(3184), + [sym_real_literal] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3184), + [sym_bin_literal] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), + }, + [2314] = { + [sym_type_constraints] = STATE(2388), + [sym_property_delegate] = STATE(2537), + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(5904), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [2315] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1717), + [sym__in_operator] = STATE(1716), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1710), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2316] = { + [sym_primary_constructor] = STATE(4965), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5271), + [sym_enum_class_body] = STATE(5391), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2317] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [2318] = { + [sym_primary_constructor] = STATE(4950), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2319] = { + [sym_type_constraints] = STATE(2452), + [sym_property_delegate] = STATE(2541), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2320] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2321] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2322] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2323] = { + [sym_type_constraints] = STATE(2454), + [sym_property_delegate] = STATE(2561), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2324] = { + [sym_type_constraints] = STATE(2458), + [sym_property_delegate] = STATE(2569), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2325] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2326] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2327] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2328] = { + [sym_primary_constructor] = STATE(4943), + [sym_class_body] = STATE(5391), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5295), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2329] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2330] = { + [sym_type_constraints] = STATE(2461), + [sym_property_delegate] = STATE(2534), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2331] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2332] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2333] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2334] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2335] = { + [sym_type_constraints] = STATE(2401), + [sym_property_delegate] = STATE(2509), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2336] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2337] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2338] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2339] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2340] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + }, + [2341] = { + [sym_type_constraints] = STATE(2407), + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2342] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9282), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5734), + [anon_sym_set] = ACTIONS(5736), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2343] = { + [sym_primary_constructor] = STATE(3683), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2344] = { + [sym_primary_constructor] = STATE(3686), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2345] = { + [sym_primary_constructor] = STATE(4942), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2346] = { + [sym_type_constraints] = STATE(2398), + [sym_property_delegate] = STATE(2499), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2347] = { + [sym_type_constraints] = STATE(2413), + [sym_property_delegate] = STATE(2522), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2348] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2349] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6000), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), + }, + [2350] = { + [sym_type_constraints] = STATE(2394), + [sym_property_delegate] = STATE(2473), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6004), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2351] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2352] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2353] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2354] = { + [sym_primary_constructor] = STATE(3692), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2355] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + }, + [2356] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6008), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [2357] = { + [sym_type_constraints] = STATE(2414), + [sym_property_delegate] = STATE(2515), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6010), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6012), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2358] = { + [sym_type_constraints] = STATE(2441), + [sym_property_delegate] = STATE(2579), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2359] = { + [sym_primary_constructor] = STATE(3702), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2360] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2361] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2362] = { + [sym_type_constraints] = STATE(2411), + [sym_property_delegate] = STATE(2505), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2363] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2364] = { + [sym_type_constraints] = STATE(2408), + [sym_property_delegate] = STATE(2489), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2365] = { + [sym_primary_constructor] = STATE(4901), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2366] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2367] = { + [sym_type_constraints] = STATE(2404), + [sym_property_delegate] = STATE(2484), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2368] = { + [sym_primary_constructor] = STATE(4895), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5314), + [sym_enum_class_body] = STATE(5353), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6036), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5758), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [2369] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6038), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2370] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6042), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2371] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2372] = { + [sym_type_constraints] = STATE(2424), + [sym_property_delegate] = STATE(2581), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2373] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9249), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5711), + [anon_sym_set] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2374] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6048), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), + }, + [2375] = { + [sym_type_constraints] = STATE(2397), + [sym_property_delegate] = STATE(2483), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2376] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [2377] = { + [sym_type_constraints] = STATE(2420), + [sym_property_delegate] = STATE(2586), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2378] = { + [sym_primary_constructor] = STATE(4930), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2379] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6052), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), + }, + [2380] = { + [sym_primary_constructor] = STATE(4960), + [sym_class_body] = STATE(5316), + [sym__class_parameters] = STATE(5111), + [sym_type_constraints] = STATE(5270), + [sym_modifiers] = STATE(9675), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_constructor] = ACTIONS(5756), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5764), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [2381] = { + [sym_type_constraints] = STATE(2453), + [sym_property_delegate] = STATE(2588), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2382] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), + }, + [2383] = { + [sym_type_constraints] = STATE(2465), + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2384] = { + [sym_type_constraints] = STATE(2428), + [sym_property_delegate] = STATE(2591), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6072), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2385] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [2386] = { + [sym_primary_constructor] = STATE(4009), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2427), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2387] = { + [sym_primary_constructor] = STATE(4015), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2421), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), + }, + [2388] = { + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [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), + }, + [2389] = { + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [2390] = { + [sym_type_constraints] = STATE(2495), + [sym_property_delegate] = STATE(2634), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2391] = { + [sym_type_constraints] = STATE(2525), + [sym_property_delegate] = STATE(2644), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6088), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2392] = { + [sym_type_constraints] = STATE(2488), + [sym_property_delegate] = STATE(2632), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2393] = { + [sym_type_constraints] = STATE(2469), + [sym_property_delegate] = STATE(2669), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6096), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2394] = { + [sym_property_delegate] = STATE(2499), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2395] = { + [sym_type_constraints] = STATE(2490), + [sym_property_delegate] = STATE(2666), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2396] = { + [sym_property_delegate] = STATE(2537), + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [2397] = { + [sym_property_delegate] = STATE(2477), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6100), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2398] = { + [sym_property_delegate] = STATE(2509), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2399] = { + [sym_primary_constructor] = STATE(5207), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2443), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), + }, + [2400] = { + [sym_property_delegate] = STATE(2554), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), + }, + [2401] = { + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2402] = { + [sym_primary_constructor] = STATE(5234), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2462), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6104), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2403] = { + [sym_type_constraints] = STATE(2485), + [sym_property_delegate] = STATE(2630), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6106), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2404] = { + [sym_property_delegate] = STATE(2483), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6050), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2405] = { + [sym_primary_constructor] = STATE(5212), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2451), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2406] = { + [sym_type_constraints] = STATE(2498), + [sym_property_delegate] = STATE(2636), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2407] = { + [sym_property_delegate] = STATE(2522), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2408] = { + [sym_property_delegate] = STATE(2484), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + }, + [2409] = { + [sym_primary_constructor] = STATE(5229), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2438), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2410] = { + [sym_type_constraints] = STATE(2521), + [sym_property_delegate] = STATE(2648), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6116), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2411] = { + [sym_property_delegate] = STATE(2489), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [2412] = { + [sym_type_constraints] = STATE(2481), + [sym_property_delegate] = STATE(2628), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6120), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6122), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3358), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_PLUS_EQ] = ACTIONS(3360), + [anon_sym_DASH_EQ] = ACTIONS(3360), + [anon_sym_STAR_EQ] = ACTIONS(3360), + [anon_sym_SLASH_EQ] = ACTIONS(3360), + [anon_sym_PERCENT_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), + }, + [2413] = { + [sym_property_delegate] = STATE(2524), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, - [2277] = { - [sym__expression] = STATE(4371), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2278] = { - [sym__expression] = STATE(4373), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2279] = { - [sym_property_delegate] = STATE(2469), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5742), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2414] = { + [sym_property_delegate] = STATE(2505), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -288278,758 +308653,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2280] = { - [sym__expression] = STATE(4419), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2281] = { - [sym__expression] = STATE(4368), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2282] = { - [sym__expression] = STATE(4412), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2283] = { - [sym__expression] = STATE(4390), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2284] = { - [sym__expression] = STATE(4369), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2285] = { - [sym__expression] = STATE(4449), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [2415] = { + [sym_primary_constructor] = STATE(4004), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2431), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_DASH_GT] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, - [2286] = { - [sym__expression] = STATE(812), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [2416] = { + [sym_primary_constructor] = STATE(4011), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2422), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6128), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), }, - [2287] = { - [sym_property_delegate] = STATE(2466), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5847), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2417] = { + [sym_type_constraints] = STATE(2474), + [sym_property_delegate] = STATE(2673), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -289054,855 +308944,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2288] = { - [sym__expression] = STATE(4438), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2289] = { - [sym__expression] = STATE(814), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2290] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2291] = { - [sym__expression] = STATE(815), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2292] = { - [sym__expression] = STATE(4488), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2293] = { - [sym__expression] = STATE(828), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2294] = { - [sym__expression] = STATE(816), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), + [2418] = { + [sym_property_delegate] = STATE(2560), + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(6132), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [2295] = { - [sym__expression] = STATE(4479), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), + [2419] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [2296] = { - [sym_property_delegate] = STATE(2464), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5718), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2420] = { + [sym_property_delegate] = STATE(2581), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -289927,2504 +309234,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2297] = { - [sym__expression] = STATE(817), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2298] = { - [sym__expression] = STATE(793), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2299] = { - [sym__expression] = STATE(1312), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2300] = { - [sym__expression] = STATE(4478), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2301] = { - [sym__expression] = STATE(4457), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2302] = { - [sym__expression] = STATE(4296), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2303] = { - [sym__expression] = STATE(803), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2304] = { - [sym__expression] = STATE(4442), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2305] = { - [sym__expression] = STATE(827), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2306] = { - [sym__expression] = STATE(4441), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2307] = { - [sym_primary_constructor] = STATE(5136), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2400), - [sym_type_constraints] = STATE(4601), - [sym_enum_class_body] = STATE(4757), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5963), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), + [2421] = { + [sym_primary_constructor] = STATE(4016), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2308] = { - [sym__expression] = STATE(4403), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2309] = { - [sym__expression] = STATE(4402), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2310] = { - [sym__expression] = STATE(4379), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2311] = { - [sym__expression] = STATE(4374), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2312] = { - [sym__expression] = STATE(4375), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2313] = { - [sym__expression] = STATE(4409), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2314] = { - [sym__expression] = STATE(4411), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2315] = { - [sym__expression] = STATE(4461), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2316] = { - [sym__expression] = STATE(4476), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2317] = { - [sym__expression] = STATE(4477), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2318] = { - [sym__expression] = STATE(4293), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2319] = { - [sym__expression] = STATE(4385), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2320] = { - [sym__expression] = STATE(4397), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2321] = { - [sym__expression] = STATE(4485), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2322] = { - [sym_property_delegate] = STATE(2455), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2422] = { + [sym_primary_constructor] = STATE(4013), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5781), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5718), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5783), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2423] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2424] = { + [sym_property_delegate] = STATE(2579), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292449,6772 +309618,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2323] = { - [sym__expression] = STATE(824), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(1823), - [sym_annotation] = STATE(1823), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2324] = { - [sym__expression] = STATE(305), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2325] = { - [sym__expression] = STATE(4276), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2326] = { - [sym__expression] = STATE(4430), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2327] = { - [sym__expression] = STATE(4405), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2328] = { - [sym__expression] = STATE(4404), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2329] = { - [sym__expression] = STATE(304), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2330] = { - [sym__expression] = STATE(298), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2331] = { - [sym__expression] = STATE(306), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2332] = { - [sym__expression] = STATE(303), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2333] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2334] = { - [sym__expression] = STATE(4290), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2335] = { - [sym__expression] = STATE(4413), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2336] = { - [sym__expression] = STATE(3128), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(2252), - [sym_annotation] = STATE(2252), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(241), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(237), - [anon_sym_return] = ACTIONS(239), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2337] = { - [sym__expression] = STATE(4416), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2338] = { - [sym__expression] = STATE(4472), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2339] = { - [sym__expression] = STATE(4292), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2340] = { - [sym__expression] = STATE(4386), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2341] = { - [sym__expression] = STATE(4493), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2342] = { - [sym__expression] = STATE(299), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2343] = { - [sym__expression] = STATE(300), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2344] = { - [sym__expression] = STATE(4492), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2345] = { - [sym__expression] = STATE(4463), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2346] = { - [sym__expression] = STATE(4281), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2347] = { - [sym__expression] = STATE(1340), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2348] = { - [sym__expression] = STATE(4427), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2349] = { - [sym__expression] = STATE(307), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2350] = { - [sym__expression] = STATE(4425), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2351] = { - [sym__expression] = STATE(309), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2352] = { - [sym__expression] = STATE(476), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2353] = { - [sym__expression] = STATE(4380), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2354] = { - [sym__expression] = STATE(4279), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2355] = { - [sym__expression] = STATE(886), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2356] = { - [sym__expression] = STATE(888), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2357] = { - [sym__expression] = STATE(889), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2358] = { - [sym__expression] = STATE(4388), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2359] = { - [sym__expression] = STATE(890), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2360] = { - [sym__expression] = STATE(297), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2361] = { - [sym__expression] = STATE(4421), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2362] = { - [sym__expression] = STATE(4423), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2363] = { - [sym__expression] = STATE(904), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2364] = { - [sym__expression] = STATE(4432), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2365] = { - [sym__expression] = STATE(918), - [sym__unary_expression] = STATE(3959), - [sym_postfix_expression] = STATE(3959), - [sym_call_expression] = STATE(3959), - [sym_indexing_expression] = STATE(3959), - [sym_navigation_expression] = STATE(3959), - [sym_prefix_expression] = STATE(3959), - [sym_as_expression] = STATE(3959), - [sym_spread_expression] = STATE(3959), - [sym__binary_expression] = STATE(3959), - [sym_multiplicative_expression] = STATE(3959), - [sym_additive_expression] = STATE(3959), - [sym_range_expression] = STATE(3959), - [sym_infix_expression] = STATE(3959), - [sym_elvis_expression] = STATE(3959), - [sym_check_expression] = STATE(3959), - [sym_comparison_expression] = STATE(3959), - [sym_equality_expression] = STATE(3959), - [sym_conjunction_expression] = STATE(3959), - [sym_disjunction_expression] = STATE(3959), - [sym__primary_expression] = STATE(3959), - [sym_parenthesized_expression] = STATE(3959), - [sym_collection_literal] = STATE(3959), - [sym__literal_constant] = STATE(3959), - [sym_string_literal] = STATE(3959), - [sym_lambda_literal] = STATE(3959), - [sym_anonymous_function] = STATE(3959), - [sym__function_literal] = STATE(3959), - [sym_object_literal] = STATE(3959), - [sym_this_expression] = STATE(3959), - [sym_super_expression] = STATE(3959), - [sym_if_expression] = STATE(3959), - [sym_when_expression] = STATE(3959), - [sym_try_expression] = STATE(3959), - [sym_jump_expression] = STATE(3959), - [sym_callable_reference] = STATE(3959), - [sym__prefix_unary_operator] = STATE(2136), - [sym_annotation] = STATE(2136), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3946), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3920), - [sym__break_at] = STATE(3920), - [sym_unsigned_literal] = STATE(3959), - [sym_long_literal] = STATE(3959), - [sym_boolean_literal] = STATE(3959), - [sym_character_literal] = STATE(3959), - [sym__lexical_identifier] = STATE(3077), - [sym__alpha_identifier] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_object] = ACTIONS(1626), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(415), - [anon_sym_set] = ACTIONS(415), - [anon_sym_this] = ACTIONS(439), - [anon_sym_super] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(1093), - [sym_label] = ACTIONS(1101), - [anon_sym_null] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_when] = ACTIONS(457), - [anon_sym_try] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_data] = ACTIONS(415), - [anon_sym_inner] = ACTIONS(415), - [anon_sym_value] = ACTIONS(415), - [anon_sym_expect] = ACTIONS(415), - [anon_sym_actual] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(477), - [anon_sym_break_AT] = ACTIONS(479), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(483), - [sym_hex_literal] = ACTIONS(485), - [sym_bin_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [sym__backtick_identifier] = ACTIONS(491), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(493), - }, - [2366] = { - [sym__expression] = STATE(4278), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2367] = { - [sym__expression] = STATE(4450), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2368] = { - [sym__expression] = STATE(4454), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2369] = { - [sym__expression] = STATE(4468), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1995), - [sym_annotation] = STATE(1995), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1047), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2370] = { - [sym__expression] = STATE(4282), - [sym__unary_expression] = STATE(4699), - [sym_postfix_expression] = STATE(4699), - [sym_call_expression] = STATE(4699), - [sym_indexing_expression] = STATE(4699), - [sym_navigation_expression] = STATE(4699), - [sym_prefix_expression] = STATE(4699), - [sym_as_expression] = STATE(4699), - [sym_spread_expression] = STATE(4699), - [sym__binary_expression] = STATE(4699), - [sym_multiplicative_expression] = STATE(4699), - [sym_additive_expression] = STATE(4699), - [sym_range_expression] = STATE(4699), - [sym_infix_expression] = STATE(4699), - [sym_elvis_expression] = STATE(4699), - [sym_check_expression] = STATE(4699), - [sym_comparison_expression] = STATE(4699), - [sym_equality_expression] = STATE(4699), - [sym_conjunction_expression] = STATE(4699), - [sym_disjunction_expression] = STATE(4699), - [sym__primary_expression] = STATE(4699), - [sym_parenthesized_expression] = STATE(4699), - [sym_collection_literal] = STATE(4699), - [sym__literal_constant] = STATE(4699), - [sym_string_literal] = STATE(4699), - [sym_lambda_literal] = STATE(4699), - [sym_anonymous_function] = STATE(4699), - [sym__function_literal] = STATE(4699), - [sym_object_literal] = STATE(4699), - [sym_this_expression] = STATE(4699), - [sym_super_expression] = STATE(4699), - [sym_if_expression] = STATE(4699), - [sym_when_expression] = STATE(4699), - [sym_try_expression] = STATE(4699), - [sym_jump_expression] = STATE(4699), - [sym_callable_reference] = STATE(4699), - [sym__prefix_unary_operator] = STATE(1870), - [sym_annotation] = STATE(1870), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4810), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4729), - [sym__break_at] = STATE(4729), - [sym_unsigned_literal] = STATE(4699), - [sym_long_literal] = STATE(4699), - [sym_boolean_literal] = STATE(4699), - [sym_character_literal] = STATE(4699), - [sym__lexical_identifier] = STATE(4511), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_fun] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(143), - [anon_sym_super] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_value] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(189), - [sym_hex_literal] = ACTIONS(191), - [sym_bin_literal] = ACTIONS(191), - [anon_sym_true] = ACTIONS(193), - [anon_sym_false] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(195), - [sym__backtick_identifier] = ACTIONS(197), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [2371] = { - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2372] = { - [sym__expression] = STATE(677), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2373] = { - [sym__expression] = STATE(695), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2374] = { - [sym__expression] = STATE(692), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2375] = { - [sym__expression] = STATE(685), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2376] = { - [sym__expression] = STATE(683), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2377] = { - [sym__expression] = STATE(681), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2378] = { - [sym__expression] = STATE(694), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2379] = { - [sym__expression] = STATE(301), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2380] = { - [sym__expression] = STATE(302), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_indexing_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_spread_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_elvis_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym__primary_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_collection_literal] = STATE(1187), - [sym__literal_constant] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_anonymous_function] = STATE(1187), - [sym__function_literal] = STATE(1187), - [sym_object_literal] = STATE(1187), - [sym_this_expression] = STATE(1187), - [sym_super_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_when_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_jump_expression] = STATE(1187), - [sym_callable_reference] = STATE(1187), - [sym__prefix_unary_operator] = STATE(2151), - [sym_annotation] = STATE(2151), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(1178), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(1192), - [sym__break_at] = STATE(1192), - [sym_unsigned_literal] = STATE(1187), - [sym_long_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym_character_literal] = STATE(1187), - [sym__lexical_identifier] = STATE(832), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1616), - [anon_sym_fun] = ACTIONS(1656), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_value] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(395), - [anon_sym_continue_AT] = ACTIONS(397), - [anon_sym_break_AT] = ACTIONS(399), - [sym_real_literal] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(403), - [sym_hex_literal] = ACTIONS(405), - [sym_bin_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(409), - [sym__backtick_identifier] = ACTIONS(411), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(413), - }, - [2381] = { - [sym__expression] = STATE(680), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2382] = { - [sym__expression] = STATE(678), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2383] = { - [sym_primary_constructor] = STATE(3812), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2399), - [sym_type_constraints] = STATE(3132), - [sym_enum_class_body] = STATE(3493), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5965), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - }, - [2384] = { - [sym__expression] = STATE(3722), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(2196), - [sym_annotation] = STATE(2196), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(308), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(605), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_return] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [2385] = { - [sym__expression] = STATE(676), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2386] = { - [sym_primary_constructor] = STATE(3846), - [sym_class_body] = STATE(3415), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2395), - [sym_type_constraints] = STATE(3140), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5967), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2387] = { - [sym_primary_constructor] = STATE(3857), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2394), - [sym_type_constraints] = STATE(3097), - [sym_enum_class_body] = STATE(3415), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5969), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), + [2425] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), [anon_sym_sealed] = ACTIONS(3132), [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2388] = { - [sym__expression] = STATE(661), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2389] = { - [sym__expression] = STATE(691), - [sym__unary_expression] = STATE(3520), - [sym_postfix_expression] = STATE(3520), - [sym_call_expression] = STATE(3520), - [sym_indexing_expression] = STATE(3520), - [sym_navigation_expression] = STATE(3520), - [sym_prefix_expression] = STATE(3520), - [sym_as_expression] = STATE(3520), - [sym_spread_expression] = STATE(3520), - [sym__binary_expression] = STATE(3520), - [sym_multiplicative_expression] = STATE(3520), - [sym_additive_expression] = STATE(3520), - [sym_range_expression] = STATE(3520), - [sym_infix_expression] = STATE(3520), - [sym_elvis_expression] = STATE(3520), - [sym_check_expression] = STATE(3520), - [sym_comparison_expression] = STATE(3520), - [sym_equality_expression] = STATE(3520), - [sym_conjunction_expression] = STATE(3520), - [sym_disjunction_expression] = STATE(3520), - [sym__primary_expression] = STATE(3520), - [sym_parenthesized_expression] = STATE(3520), - [sym_collection_literal] = STATE(3520), - [sym__literal_constant] = STATE(3520), - [sym_string_literal] = STATE(3520), - [sym_lambda_literal] = STATE(3520), - [sym_anonymous_function] = STATE(3520), - [sym__function_literal] = STATE(3520), - [sym_object_literal] = STATE(3520), - [sym_this_expression] = STATE(3520), - [sym_super_expression] = STATE(3520), - [sym_if_expression] = STATE(3520), - [sym_when_expression] = STATE(3520), - [sym_try_expression] = STATE(3520), - [sym_jump_expression] = STATE(3520), - [sym_callable_reference] = STATE(3520), - [sym__prefix_unary_operator] = STATE(1991), - [sym_annotation] = STATE(1991), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(3516), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3523), - [sym__break_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3520), - [sym_long_literal] = STATE(3520), - [sym_boolean_literal] = STATE(3520), - [sym_character_literal] = STATE(3520), - [sym__lexical_identifier] = STATE(2868), - [sym__alpha_identifier] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_object] = ACTIONS(1586), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_this] = ACTIONS(275), - [anon_sym_super] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(1235), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(301), - [anon_sym_break] = ACTIONS(301), - [anon_sym_COLON_COLON] = ACTIONS(303), - [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(251), - [anon_sym_inner] = ACTIONS(251), - [anon_sym_value] = ACTIONS(251), - [anon_sym_expect] = ACTIONS(251), - [anon_sym_actual] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(313), - [anon_sym_continue_AT] = ACTIONS(315), - [anon_sym_break_AT] = ACTIONS(317), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(321), - [sym_hex_literal] = ACTIONS(323), - [sym_bin_literal] = ACTIONS(323), - [anon_sym_true] = ACTIONS(325), - [anon_sym_false] = ACTIONS(325), - [anon_sym_SQUOTE] = ACTIONS(327), - [sym__backtick_identifier] = ACTIONS(329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(331), - }, - [2390] = { - [sym__expression] = STATE(4190), - [sym__unary_expression] = STATE(5012), - [sym_postfix_expression] = STATE(5012), - [sym_call_expression] = STATE(5012), - [sym_indexing_expression] = STATE(5012), - [sym_navigation_expression] = STATE(5012), - [sym_prefix_expression] = STATE(5012), - [sym_as_expression] = STATE(5012), - [sym_spread_expression] = STATE(5012), - [sym__binary_expression] = STATE(5012), - [sym_multiplicative_expression] = STATE(5012), - [sym_additive_expression] = STATE(5012), - [sym_range_expression] = STATE(5012), - [sym_infix_expression] = STATE(5012), - [sym_elvis_expression] = STATE(5012), - [sym_check_expression] = STATE(5012), - [sym_comparison_expression] = STATE(5012), - [sym_equality_expression] = STATE(5012), - [sym_conjunction_expression] = STATE(5012), - [sym_disjunction_expression] = STATE(5012), - [sym__primary_expression] = STATE(5012), - [sym_parenthesized_expression] = STATE(5012), - [sym_collection_literal] = STATE(5012), - [sym__literal_constant] = STATE(5012), - [sym_string_literal] = STATE(5012), - [sym_lambda_literal] = STATE(5012), - [sym_anonymous_function] = STATE(5012), - [sym__function_literal] = STATE(5012), - [sym_object_literal] = STATE(5012), - [sym_this_expression] = STATE(5012), - [sym_super_expression] = STATE(5012), - [sym_if_expression] = STATE(5012), - [sym_when_expression] = STATE(5012), - [sym_try_expression] = STATE(5012), - [sym_jump_expression] = STATE(5012), - [sym_callable_reference] = STATE(5012), - [sym__prefix_unary_operator] = STATE(1717), - [sym_annotation] = STATE(1717), - [sym__single_annotation] = STATE(5569), - [sym__multi_annotation] = STATE(5569), - [sym_simple_identifier] = STATE(4988), - [sym__return_at] = STATE(371), - [sym__continue_at] = STATE(5002), - [sym__break_at] = STATE(5002), - [sym_unsigned_literal] = STATE(5012), - [sym_long_literal] = STATE(5012), - [sym_boolean_literal] = STATE(5012), - [sym_character_literal] = STATE(5012), - [sym__lexical_identifier] = STATE(4561), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1932), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(969), - [sym_label] = ACTIONS(977), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_value] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), }, - [2391] = { - [sym_primary_constructor] = STATE(3865), - [sym_class_body] = STATE(3312), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2426), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5971), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [2426] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2392] = { - [sym_type_constraints] = STATE(2453), - [sym_property_delegate] = STATE(2659), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2427] = { + [sym_primary_constructor] = STATE(4012), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5973), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5975), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5977), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2428] = { + [sym_property_delegate] = STATE(2588), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299239,78 +310002,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2393] = { - [sym_property_delegate] = STATE(2549), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5740), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2429] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2430] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2431] = { + [sym_primary_constructor] = STATE(4008), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2432] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2433] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2434] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2435] = { + [sym_type_constraints] = STATE(2467), + [sym_property_delegate] = STATE(2684), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6146), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299335,366 +310674,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), - }, - [2394] = { - [sym_primary_constructor] = STATE(3821), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [2395] = { - [sym_primary_constructor] = STATE(3816), - [sym_class_body] = STATE(3182), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3135), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5985), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2396] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3598), + [2436] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2397] = { - [sym_property_delegate] = STATE(2537), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5724), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2437] = { + [sym_type_constraints] = STATE(2475), + [sym_property_delegate] = STATE(2720), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299719,78 +310866,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2398] = { - [sym_property_delegate] = STATE(2533), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2438] = { + [sym_primary_constructor] = STATE(5239), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5825), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5726), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5827), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2439] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2440] = { + [sym_type_constraints] = STATE(2471), + [sym_property_delegate] = STATE(2730), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299815,270 +311154,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2399] = { - [sym_primary_constructor] = STATE(3794), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [2441] = { + [sym_property_delegate] = STATE(2574), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6158), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2400] = { - [sym_primary_constructor] = STATE(5149), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4613), - [sym_enum_class_body] = STATE(4723), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(5989), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2442] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2401] = { - [sym_type_constraints] = STATE(2454), - [sym_property_delegate] = STATE(2699), - [sym_getter] = STATE(4656), - [sym_setter] = STATE(4656), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2443] = { + [sym_primary_constructor] = STATE(5263), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6160), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5975), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), [anon_sym_LT] = ACTIONS(3270), [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_DASH_GT] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), [anon_sym_in] = ACTIONS(3270), [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3274), [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3274), [anon_sym_PLUS] = ACTIONS(3270), [anon_sym_DASH] = ACTIONS(3270), [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2444] = { + [sym_type_constraints] = STATE(2518), + [sym_property_delegate] = STATE(2685), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6162), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300103,78 +311538,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2402] = { - [sym_type_constraints] = STATE(2520), - [sym_property_delegate] = STATE(2679), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5995), - [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(5975), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3814), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2445] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2446] = { + [sym_type_constraints] = STATE(2504), + [sym_property_delegate] = STATE(2700), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300199,174 +311730,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), - }, - [2403] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2404] = { - [sym_type_constraints] = STATE(2485), - [sym_property_delegate] = STATE(2698), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6001), - [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(5975), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2447] = { + [sym_type_constraints] = STATE(2501), + [sym_property_delegate] = STATE(2705), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300391,462 +311826,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2405] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(3598), + [2448] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_annotation] = ACTIONS(3121), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_lateinit] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_tailrec] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_infix] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_external] = ACTIONS(3121), + [sym_property_modifier] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3121), + [anon_sym_vararg] = ACTIONS(3121), + [anon_sym_noinline] = ACTIONS(3121), + [anon_sym_crossinline] = ACTIONS(3121), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2406] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(3598), + [2449] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2407] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [2450] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), }, - [2408] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(6007), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [2451] = { + [sym_primary_constructor] = STATE(5223), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6172), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, - [2409] = { - [sym_type_constraints] = STATE(2522), - [sym_property_delegate] = STATE(2709), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6009), - [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(5975), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2452] = { + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300871,366 +312306,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2410] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2411] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(6011), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(6007), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), - }, - [2412] = { - [sym_primary_constructor] = STATE(5135), - [sym_class_body] = STATE(4822), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4599), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [2453] = { + [sym_property_delegate] = STATE(2586), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2413] = { - [sym_type_constraints] = STATE(2498), - [sym_property_delegate] = STATE(2716), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6017), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2454] = { + [sym_property_delegate] = STATE(2534), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301255,174 +312498,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2414] = { - [sym_primary_constructor] = STATE(5019), - [sym_class_body] = STATE(5393), - [sym__class_parameters] = STATE(5246), - [sym_type_constraints] = STATE(5342), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6019), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5793), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [2455] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2456] = { + [sym_type_constraints] = STATE(2528), + [sym_property_delegate] = STATE(2693), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6176), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), }, - [2415] = { - [sym_type_constraints] = STATE(2484), - [sym_property_delegate] = STATE(2701), - [sym_getter] = STATE(3319), - [sym_setter] = STATE(3319), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_RBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6021), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6023), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_DASH_GT] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [2457] = { + [sym_type_constraints] = STATE(2503), + [sym_property_delegate] = STATE(2732), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301447,174 +312786,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2416] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2417] = { - [sym_type_constraints] = STATE(2515), - [sym_property_delegate] = STATE(2683), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6025), - [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(5975), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3816), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2458] = { + [sym_property_delegate] = STATE(2561), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301639,366 +312882,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2418] = { - [sym_primary_constructor] = STATE(5096), - [sym_class_body] = STATE(4695), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4589), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6027), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [2459] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2419] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), - }, - [2420] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), - }, - [2421] = { - [sym_property_delegate] = STATE(2529), - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6033), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2460] = { + [sym_type_constraints] = STATE(2494), + [sym_property_delegate] = STATE(2711), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6180), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302023,78 +313074,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2422] = { + [2461] = { [sym_property_delegate] = STATE(2541), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302119,78 +313170,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2423] = { - [sym_type_constraints] = STATE(2505), - [sym_property_delegate] = STATE(2703), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2462] = { + [sym_primary_constructor] = STATE(5233), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2463] = { + [sym_type_constraints] = STATE(2491), + [sym_property_delegate] = STATE(2722), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302215,462 +313362,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [2424] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2425] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2426] = { - [sym_primary_constructor] = STATE(3863), - [sym_class_body] = STATE(3392), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3092), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2427] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(3598), + [2464] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1568), + [sym__in_operator] = STATE(1569), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1571), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1572), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4385), + [anon_sym_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4385), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_BANGin] = ACTIONS(4389), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2428] = { - [sym_type_constraints] = STATE(2514), - [sym_property_delegate] = STATE(2675), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2465] = { + [sym_property_delegate] = STATE(2552), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6190), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302695,654 +313554,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [2429] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), - }, - [2430] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2431] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2432] = { - [sym_primary_constructor] = STATE(5016), - [sym__class_parameters] = STATE(5246), - [sym_type_constraints] = STATE(5320), - [sym_enum_class_body] = STATE(5393), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6043), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [2433] = { - [sym_primary_constructor] = STATE(5009), - [sym_class_body] = STATE(5451), - [sym__class_parameters] = STATE(5246), - [sym_type_constraints] = STATE(5305), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5793), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [2434] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(5266), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [2435] = { - [sym_property_delegate] = STATE(2526), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5811), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2466] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303367,174 +313648,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2436] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [2437] = { - [sym_property_delegate] = STATE(2551), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5835), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2467] = { + [sym_property_delegate] = STATE(2732), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303559,558 +313744,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2438] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2439] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2440] = { - [sym_primary_constructor] = STATE(5083), - [sym__class_parameters] = STATE(5246), - [sym_type_constraints] = STATE(5293), - [sym_enum_class_body] = STATE(5368), - [sym_modifiers] = STATE(9646), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6047), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_constructor] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5795), - [anon_sym_where] = ACTIONS(5799), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [2441] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2442] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [2443] = { - [sym_property_delegate] = STATE(2553), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5837), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2468] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304135,366 +313838,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [2444] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), - }, - [2445] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2446] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2447] = { - [sym_property_delegate] = STATE(2565), - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2469] = { + [sym_property_delegate] = STATE(2642), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6192), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304519,366 +313933,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2448] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4051), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), - [anon_sym_EQ_EQ] = ACTIONS(4053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3055), - [anon_sym_sealed] = ACTIONS(3055), - [anon_sym_annotation] = ACTIONS(3055), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3055), - [anon_sym_lateinit] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_internal] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_tailrec] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_infix] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym_external] = ACTIONS(3055), - [sym_property_modifier] = ACTIONS(3055), - [anon_sym_abstract] = ACTIONS(3055), - [anon_sym_final] = ACTIONS(3055), - [anon_sym_open] = ACTIONS(3055), - [anon_sym_vararg] = ACTIONS(3055), - [anon_sym_noinline] = ACTIONS(3055), - [anon_sym_crossinline] = ACTIONS(3055), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2449] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_QMARK_COLON] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(4057), - [anon_sym_GT_EQ] = ACTIONS(4057), - [anon_sym_BANGin] = ACTIONS(4059), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4061), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2450] = { - [sym_primary_constructor] = STATE(5119), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4607), - [sym_enum_class_body] = STATE(4822), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2451] = { - [sym_property_delegate] = STATE(2556), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5841), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5726), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5843), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2470] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304903,173 +314028,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2452] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1862), - [sym__in_operator] = STATE(1885), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(1886), - [sym__multiplicative_operator] = STATE(1902), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1903), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2453] = { - [sym_property_delegate] = STATE(2675), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2471] = { + [sym_property_delegate] = STATE(2729), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6194), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305094,77 +314124,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2454] = { - [sym_property_delegate] = STATE(2659), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5973), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5977), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2472] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305189,76 +314218,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2455] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2473] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305283,172 +314313,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [2456] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2457] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2474] = { + [sym_property_delegate] = STATE(2669), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6096), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305473,67 +314408,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2458] = { - [sym_property_delegate] = STATE(2672), - [sym_getter] = STATE(5459), - [sym_setter] = STATE(5459), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2475] = { + [sym_property_delegate] = STATE(2730), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305558,182 +314504,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [2459] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2460] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), + [2476] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305758,77 +314598,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2461] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2477] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305853,77 +314693,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2462] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2478] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2479] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2480] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2481] = { + [sym_property_delegate] = STATE(2630), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6106), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305948,77 +315073,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2463] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2482] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306043,77 +315168,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2464] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2483] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306138,77 +315263,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2465] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2484] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306233,77 +315358,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2466] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2485] = { + [sym_property_delegate] = STATE(2632), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306328,77 +315453,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2467] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2486] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2487] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306423,77 +315643,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2468] = { - [sym_property_delegate] = STATE(2630), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5931), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5933), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2488] = { + [sym_property_delegate] = STATE(2634), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306518,77 +315738,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2469] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [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), + [2489] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306613,77 +315833,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2470] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2490] = { + [sym_property_delegate] = STATE(2673), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306708,267 +315928,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - }, - [2471] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [2472] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2473] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2491] = { + [sym_property_delegate] = STATE(2711), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6180), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306993,32 +316024,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2474] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2492] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -307031,8 +316061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -307088,77 +316118,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2475] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), + [2493] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2494] = { + [sym_property_delegate] = STATE(2705), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307183,67 +316309,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2476] = { - [sym_property_delegate] = STATE(2692), - [sym_getter] = STATE(5366), - [sym_setter] = STATE(5366), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(5925), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), + [2495] = { + [sym_property_delegate] = STATE(2636), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6112), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307268,87 +316403,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, - [2477] = { - [sym_property_delegate] = STATE(2631), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5907), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2496] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307373,77 +316498,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2478] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), + [2497] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2498] = { + [sym_property_delegate] = STATE(2638), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6196), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307468,77 +316688,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2479] = { - [sym_getter] = STATE(4998), - [sym_setter] = STATE(4998), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2499] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307563,77 +316783,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2480] = { - [sym_property_delegate] = STATE(2623), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5889), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5891), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2500] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2501] = { + [sym_property_delegate] = STATE(2700), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307658,77 +316974,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2481] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), + [2502] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2503] = { + [sym_property_delegate] = STATE(2720), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307753,67 +317164,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2482] = { - [sym_property_delegate] = STATE(2669), - [sym_getter] = STATE(5434), - [sym_setter] = STATE(5434), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(5921), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5923), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), + [2504] = { + [sym_property_delegate] = STATE(2685), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6162), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307838,87 +317259,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [2483] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), + [2505] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307943,78 +317353,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2484] = { - [sym_property_delegate] = STATE(2716), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6017), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2506] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308039,77 +317448,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2485] = { - [sym_property_delegate] = STATE(2670), - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6061), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3802), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2507] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308134,76 +317543,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2486] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9088), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5783), - [anon_sym_get] = ACTIONS(5744), - [anon_sym_set] = ACTIONS(5746), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2508] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2509] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308228,67 +317733,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2487] = { - [sym_property_delegate] = STATE(2673), - [sym_getter] = STATE(5404), - [sym_setter] = STATE(5404), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2510] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308313,277 +317828,932 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, - [2488] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [2511] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2489] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [2512] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2490] = { - [sym_property_delegate] = STATE(2643), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5905), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2513] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [2514] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2515] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9170), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + }, + [2516] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2517] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2518] = { + [sym_property_delegate] = STATE(2686), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + }, + [2519] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2520] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308608,77 +318778,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2491] = { - [sym_property_delegate] = STATE(2618), - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6063), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2521] = { + [sym_property_delegate] = STATE(2666), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308703,77 +318873,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2492] = { - [sym_property_delegate] = STATE(2592), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5903), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2522] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308798,77 +318968,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2493] = { - [sym_property_delegate] = STATE(2604), - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6065), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3748), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2523] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308893,77 +319063,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2494] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2524] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308988,77 +319158,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2495] = { - [sym_getter] = STATE(3853), - [sym_setter] = STATE(3853), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2525] = { + [sym_property_delegate] = STATE(2648), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6116), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6080), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309083,268 +319253,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2496] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [2497] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [2498] = { - [sym_property_delegate] = STATE(2703), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2526] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309369,76 +319348,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2499] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [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), + [2527] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5982), + [anon_sym_set] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309463,77 +319443,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2500] = { - [sym_property_delegate] = STATE(2637), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5901), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2528] = { + [sym_property_delegate] = STATE(2684), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6144), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6146), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309558,172 +319539,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2501] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [2529] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2502] = { - [sym_property_delegate] = STATE(2628), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(5909), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2530] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2531] = { + [sym_indexing_suffix] = STATE(3593), + [sym_navigation_suffix] = STATE(3594), + [sym_call_suffix] = STATE(3596), + [sym_annotated_lambda] = STATE(3601), + [sym_type_arguments] = STATE(8044), + [sym_value_arguments] = STATE(2767), + [sym_lambda_literal] = STATE(3370), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1837), + [sym__in_operator] = STATE(1838), + [sym__is_operator] = STATE(5939), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1840), + [sym__as_operator] = STATE(5936), + [sym__postfix_unary_operator] = STATE(3590), + [sym__member_access_operator] = STATE(7639), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1842), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2532] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309748,144 +319918,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2503] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [2533] = { + [sym_primary_constructor] = STATE(5462), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2676), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2504] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2534] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -309938,78 +320106,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2505] = { - [sym_property_delegate] = STATE(2683), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6025), - [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(5975), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3816), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2535] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3171), + [anon_sym_sealed] = ACTIONS(3171), + [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_lateinit] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_internal] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_tailrec] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_infix] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_external] = ACTIONS(3171), + [sym_property_modifier] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_final] = ACTIONS(3171), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_vararg] = ACTIONS(3171), + [anon_sym_noinline] = ACTIONS(3171), + [anon_sym_crossinline] = ACTIONS(3171), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3173), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2536] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310034,161 +320294,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2506] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [2507] = { - [sym_property_delegate] = STATE(2664), - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(5937), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1754), - [anon_sym_fun] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2537] = { + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310213,87 +320375,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [2508] = { - [sym_property_delegate] = STATE(2639), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(5855), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2538] = { + [sym_primary_constructor] = STATE(4160), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2610), + [sym_type_constraints] = STATE(3284), + [sym_enum_class_body] = STATE(3521), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6202), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2539] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3175), + [anon_sym_sealed] = ACTIONS(3175), + [anon_sym_annotation] = ACTIONS(3175), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_lateinit] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_internal] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_tailrec] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_infix] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_external] = ACTIONS(3175), + [sym_property_modifier] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_final] = ACTIONS(3175), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_vararg] = ACTIONS(3175), + [anon_sym_noinline] = ACTIONS(3175), + [anon_sym_crossinline] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2540] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310318,267 +320657,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [2509] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [2510] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), - [sym_multiline_comment] = ACTIONS(3), - }, - [2511] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2541] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310603,268 +320764,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - }, - [2512] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3408), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2513] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3408), + [2542] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3186), + [anon_sym_sealed] = ACTIONS(3186), + [anon_sym_annotation] = ACTIONS(3186), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_lateinit] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_internal] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_tailrec] = ACTIONS(3186), + [anon_sym_operator] = ACTIONS(3186), + [anon_sym_infix] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_external] = ACTIONS(3186), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_open] = ACTIONS(3186), + [anon_sym_vararg] = ACTIONS(3186), + [anon_sym_noinline] = ACTIONS(3186), + [anon_sym_crossinline] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2514] = { - [sym_property_delegate] = STATE(2709), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6009), - [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(5975), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2543] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310889,77 +320952,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2515] = { - [sym_property_delegate] = STATE(2679), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5995), - [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(5975), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3814), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2544] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310984,76 +321046,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2516] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2545] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_annotation] = ACTIONS(3193), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_lateinit] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_tailrec] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_infix] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym_external] = ACTIONS(3193), + [sym_property_modifier] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_final] = ACTIONS(3193), + [anon_sym_open] = ACTIONS(3193), + [anon_sym_vararg] = ACTIONS(3193), + [anon_sym_noinline] = ACTIONS(3193), + [anon_sym_crossinline] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2546] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2547] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3144), + [anon_sym_sealed] = ACTIONS(3144), + [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_lateinit] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_internal] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_tailrec] = ACTIONS(3144), + [anon_sym_operator] = ACTIONS(3144), + [anon_sym_infix] = ACTIONS(3144), + [anon_sym_inline] = ACTIONS(3144), + [anon_sym_external] = ACTIONS(3144), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_open] = ACTIONS(3144), + [anon_sym_vararg] = ACTIONS(3144), + [anon_sym_noinline] = ACTIONS(3144), + [anon_sym_crossinline] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2548] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2549] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311078,267 +321516,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2517] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3408), + [2550] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3136), + [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_lateinit] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_internal] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_tailrec] = ACTIONS(3136), + [anon_sym_operator] = ACTIONS(3136), + [anon_sym_infix] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_external] = ACTIONS(3136), + [sym_property_modifier] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_final] = ACTIONS(3136), + [anon_sym_open] = ACTIONS(3136), + [anon_sym_vararg] = ACTIONS(3136), + [anon_sym_noinline] = ACTIONS(3136), + [anon_sym_crossinline] = ACTIONS(3136), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2518] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [2551] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3117), + [anon_sym_sealed] = ACTIONS(3117), + [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_lateinit] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_internal] = ACTIONS(3117), + [anon_sym_protected] = ACTIONS(3117), + [anon_sym_tailrec] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_infix] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_external] = ACTIONS(3117), + [sym_property_modifier] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3117), + [anon_sym_vararg] = ACTIONS(3117), + [anon_sym_noinline] = ACTIONS(3117), + [anon_sym_crossinline] = ACTIONS(3117), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2519] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5831), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2552] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311363,78 +321798,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2520] = { - [sym_property_delegate] = STATE(2667), - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6067), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3812), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2553] = { + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311459,76 +321879,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), }, - [2521] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9179), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5720), - [anon_sym_set] = ACTIONS(5722), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2554] = { + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311553,78 +321973,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [2522] = { - [sym_property_delegate] = STATE(2698), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6001), - [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(5975), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2555] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311649,359 +322080,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2523] = { - [sym_indexing_suffix] = STATE(3505), - [sym_navigation_suffix] = STATE(3504), - [sym_call_suffix] = STATE(3503), - [sym_annotated_lambda] = STATE(3501), - [sym_type_arguments] = STATE(8137), - [sym_value_arguments] = STATE(2788), - [sym_lambda_literal] = STATE(3500), - [sym__equality_operator] = STATE(1808), - [sym__comparison_operator] = STATE(1809), - [sym__in_operator] = STATE(1810), - [sym__is_operator] = STATE(6082), - [sym__additive_operator] = STATE(1811), - [sym__multiplicative_operator] = STATE(1812), - [sym__as_operator] = STATE(6083), - [sym__postfix_unary_operator] = STATE(3468), - [sym__member_access_operator] = STATE(7596), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1814), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_as] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4191), - [sym_label] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [anon_sym_QMARK_COLON] = ACTIONS(4197), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4201), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(4203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4205), - [anon_sym_EQ_EQ] = ACTIONS(4203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4205), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_BANGin] = ACTIONS(4209), - [anon_sym_is] = ACTIONS(3418), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(4211), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4191), - [anon_sym_as_QMARK] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_BANG_BANG] = ACTIONS(3426), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(3408), + [2556] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3125), + [anon_sym_sealed] = ACTIONS(3125), + [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_lateinit] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_internal] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_tailrec] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_infix] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_external] = ACTIONS(3125), + [sym_property_modifier] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3125), + [anon_sym_vararg] = ACTIONS(3125), + [anon_sym_noinline] = ACTIONS(3125), + [anon_sym_crossinline] = ACTIONS(3125), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2524] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), + [2557] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_lateinit] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_internal] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_tailrec] = ACTIONS(3094), + [anon_sym_operator] = ACTIONS(3094), + [anon_sym_infix] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_external] = ACTIONS(3094), + [sym_property_modifier] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_open] = ACTIONS(3094), + [anon_sym_vararg] = ACTIONS(3094), + [anon_sym_noinline] = ACTIONS(3094), + [anon_sym_crossinline] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2525] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3027), - [anon_sym_sealed] = ACTIONS(3027), - [anon_sym_annotation] = ACTIONS(3027), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_lateinit] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_protected] = ACTIONS(3027), - [anon_sym_tailrec] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym_external] = ACTIONS(3027), - [sym_property_modifier] = ACTIONS(3027), - [anon_sym_abstract] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_vararg] = ACTIONS(3027), - [anon_sym_noinline] = ACTIONS(3027), - [anon_sym_crossinline] = ACTIONS(3027), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(3598), + [2558] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_lateinit] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_internal] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_tailrec] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_infix] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_external] = ACTIONS(3167), + [sym_property_modifier] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_final] = ACTIONS(3167), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_vararg] = ACTIONS(3167), + [anon_sym_noinline] = ACTIONS(3167), + [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2526] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2559] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3132), + [anon_sym_sealed] = ACTIONS(3132), + [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_lateinit] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_internal] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_tailrec] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_infix] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym_external] = ACTIONS(3132), + [sym_property_modifier] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_final] = ACTIONS(3132), + [anon_sym_open] = ACTIONS(3132), + [anon_sym_vararg] = ACTIONS(3132), + [anon_sym_noinline] = ACTIONS(3132), + [anon_sym_crossinline] = ACTIONS(3132), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2560] = { + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312026,76 +322537,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(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), }, - [2527] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2561] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312120,76 +322644,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2528] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2562] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312214,76 +322738,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2529] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2563] = { + [sym_primary_constructor] = STATE(5459), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2623), + [sym_type_constraints] = STATE(4626), + [sym_enum_class_body] = STATE(4745), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2564] = { + [sym_primary_constructor] = STATE(4181), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2657), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2565] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3182), + [anon_sym_sealed] = ACTIONS(3182), + [anon_sym_annotation] = ACTIONS(3182), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_internal] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_tailrec] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_infix] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_external] = ACTIONS(3182), + [sym_property_modifier] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_open] = ACTIONS(3182), + [anon_sym_vararg] = ACTIONS(3182), + [anon_sym_noinline] = ACTIONS(3182), + [anon_sym_crossinline] = ACTIONS(3182), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2566] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3101), + [anon_sym_sealed] = ACTIONS(3101), + [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_lateinit] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_internal] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_tailrec] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_infix] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_external] = ACTIONS(3101), + [sym_property_modifier] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_vararg] = ACTIONS(3101), + [anon_sym_noinline] = ACTIONS(3101), + [anon_sym_crossinline] = ACTIONS(3101), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2567] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312308,76 +323208,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2530] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5827), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2568] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312402,76 +323302,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2531] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2569] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312496,76 +323396,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2532] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2570] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2571] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312590,76 +323584,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2533] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2572] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312684,170 +323678,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2534] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3005), - [anon_sym_sealed] = ACTIONS(3005), - [anon_sym_annotation] = ACTIONS(3005), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_override] = ACTIONS(3005), - [anon_sym_lateinit] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_private] = ACTIONS(3005), - [anon_sym_internal] = ACTIONS(3005), - [anon_sym_protected] = ACTIONS(3005), - [anon_sym_tailrec] = ACTIONS(3005), - [anon_sym_operator] = ACTIONS(3005), - [anon_sym_infix] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_external] = ACTIONS(3005), - [sym_property_modifier] = ACTIONS(3005), - [anon_sym_abstract] = ACTIONS(3005), - [anon_sym_final] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_vararg] = ACTIONS(3005), - [anon_sym_noinline] = ACTIONS(3005), - [anon_sym_crossinline] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(3598), + [2573] = { + [sym_primary_constructor] = STATE(5446), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2675), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, - [2535] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2574] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312872,76 +323866,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2536] = { - [sym_getter] = STATE(4673), - [sym_setter] = STATE(4673), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2575] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9401), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312966,76 +323960,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2537] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2576] = { + [sym_primary_constructor] = STATE(5445), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2663), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2577] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313060,76 +324148,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2538] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2578] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3682), + [sym_multiline_comment] = ACTIONS(3), + }, + [2579] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313154,264 +324336,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2539] = { - [sym_primary_constructor] = STATE(4130), - [sym_class_body] = STATE(3312), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2598), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6069), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - }, - [2540] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2541] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2580] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313436,170 +324430,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2542] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3051), - [anon_sym_sealed] = ACTIONS(3051), - [anon_sym_annotation] = ACTIONS(3051), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3051), - [anon_sym_lateinit] = ACTIONS(3051), - [anon_sym_public] = ACTIONS(3051), - [anon_sym_private] = ACTIONS(3051), - [anon_sym_internal] = ACTIONS(3051), - [anon_sym_protected] = ACTIONS(3051), - [anon_sym_tailrec] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_infix] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym_external] = ACTIONS(3051), - [sym_property_modifier] = ACTIONS(3051), - [anon_sym_abstract] = ACTIONS(3051), - [anon_sym_final] = ACTIONS(3051), - [anon_sym_open] = ACTIONS(3051), - [anon_sym_vararg] = ACTIONS(3051), - [anon_sym_noinline] = ACTIONS(3051), - [anon_sym_crossinline] = ACTIONS(3051), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2543] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2581] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313624,546 +324524,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2544] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3035), - [anon_sym_sealed] = ACTIONS(3035), - [anon_sym_annotation] = ACTIONS(3035), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_lateinit] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_tailrec] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym_external] = ACTIONS(3035), - [sym_property_modifier] = ACTIONS(3035), - [anon_sym_abstract] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_vararg] = ACTIONS(3035), - [anon_sym_noinline] = ACTIONS(3035), - [anon_sym_crossinline] = ACTIONS(3035), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2545] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2994), - [anon_sym_sealed] = ACTIONS(2994), - [anon_sym_annotation] = ACTIONS(2994), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_lateinit] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_internal] = ACTIONS(2994), - [anon_sym_protected] = ACTIONS(2994), - [anon_sym_tailrec] = ACTIONS(2994), - [anon_sym_operator] = ACTIONS(2994), - [anon_sym_infix] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_external] = ACTIONS(2994), - [sym_property_modifier] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2994), - [anon_sym_vararg] = ACTIONS(2994), - [anon_sym_noinline] = ACTIONS(2994), - [anon_sym_crossinline] = ACTIONS(2994), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2546] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3047), - [anon_sym_sealed] = ACTIONS(3047), - [anon_sym_annotation] = ACTIONS(3047), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_lateinit] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_protected] = ACTIONS(3047), - [anon_sym_tailrec] = ACTIONS(3047), - [anon_sym_operator] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_inline] = ACTIONS(3047), - [anon_sym_external] = ACTIONS(3047), - [sym_property_modifier] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_vararg] = ACTIONS(3047), - [anon_sym_noinline] = ACTIONS(3047), - [anon_sym_crossinline] = ACTIONS(3047), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2547] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3031), - [anon_sym_sealed] = ACTIONS(3031), - [anon_sym_annotation] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_lateinit] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_tailrec] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym_external] = ACTIONS(3031), - [sym_property_modifier] = ACTIONS(3031), - [anon_sym_abstract] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_vararg] = ACTIONS(3031), - [anon_sym_noinline] = ACTIONS(3031), - [anon_sym_crossinline] = ACTIONS(3031), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2548] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3023), - [anon_sym_sealed] = ACTIONS(3023), - [anon_sym_annotation] = ACTIONS(3023), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_lateinit] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_tailrec] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_external] = ACTIONS(3023), - [sym_property_modifier] = ACTIONS(3023), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_vararg] = ACTIONS(3023), - [anon_sym_noinline] = ACTIONS(3023), - [anon_sym_crossinline] = ACTIONS(3023), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(3598), + [2582] = { + [sym_primary_constructor] = STATE(4157), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2651), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2549] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2583] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314188,170 +324712,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2550] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3598), + [2584] = { + [sym_primary_constructor] = STATE(4156), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2650), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2551] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2585] = { + [sym_primary_constructor] = STATE(5429), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2655), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2586] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314376,76 +324994,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2552] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2587] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314470,76 +325088,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2553] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2588] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314564,76 +325182,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2554] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [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), + [2589] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314658,170 +325276,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2555] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2998), - [anon_sym_sealed] = ACTIONS(2998), - [anon_sym_annotation] = ACTIONS(2998), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_lateinit] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_internal] = ACTIONS(2998), - [anon_sym_protected] = ACTIONS(2998), - [anon_sym_tailrec] = ACTIONS(2998), - [anon_sym_operator] = ACTIONS(2998), - [anon_sym_infix] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_external] = ACTIONS(2998), - [sym_property_modifier] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_vararg] = ACTIONS(2998), - [anon_sym_noinline] = ACTIONS(2998), - [anon_sym_crossinline] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(3598), + [2590] = { + [sym_primary_constructor] = STATE(4152), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2649), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2556] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2591] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym_get] = ACTIONS(6020), + [anon_sym_set] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314846,76 +325464,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2557] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2592] = { + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314940,170 +325545,745 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [2593] = { + [sym_indexing_suffix] = STATE(4043), + [sym_navigation_suffix] = STATE(4042), + [sym_call_suffix] = STATE(4041), + [sym_annotated_lambda] = STATE(4040), + [sym_type_arguments] = STATE(8033), + [sym_value_arguments] = STATE(2978), + [sym_lambda_literal] = STATE(4039), + [sym__equality_operator] = STATE(1440), + [sym__comparison_operator] = STATE(1441), + [sym__in_operator] = STATE(1442), + [sym__is_operator] = STATE(5904), + [sym__additive_operator] = STATE(1443), + [sym__multiplicative_operator] = STATE(1444), + [sym__as_operator] = STATE(5903), + [sym__postfix_unary_operator] = STATE(4038), + [sym__member_access_operator] = STATE(7676), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1446), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(3692), + [anon_sym_BANGis] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_as_QMARK] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_BANG_BANG] = ACTIONS(3700), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3682), [sym_multiline_comment] = ACTIONS(3), }, - [2558] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3598), + [2594] = { + [sym_primary_constructor] = STATE(4179), + [sym_class_body] = STATE(3602), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2614), + [sym_type_constraints] = STATE(3342), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, - [2559] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2595] = { + [sym_primary_constructor] = STATE(5475), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2645), + [sym_type_constraints] = STATE(4650), + [sym_enum_class_body] = STATE(4770), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2596] = { + [sym_primary_constructor] = STATE(4161), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2606), + [sym_type_constraints] = STATE(3311), + [sym_enum_class_body] = STATE(3562), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6224), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2597] = { + [sym_primary_constructor] = STATE(5449), + [sym_class_body] = STATE(4812), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2605), + [sym_type_constraints] = STATE(4660), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), + }, + [2598] = { + [sym_primary_constructor] = STATE(4194), + [sym_class_body] = STATE(3562), + [sym__class_parameters] = STATE(3293), + [sym_type_parameters] = STATE(2603), + [sym_type_constraints] = STATE(3352), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2599] = { + [sym_primary_constructor] = STATE(5460), + [sym_class_body] = STATE(4745), + [sym__class_parameters] = STATE(4662), + [sym_type_parameters] = STATE(2643), + [sym_type_constraints] = STATE(4677), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2600] = { + [sym_type_constraints] = STATE(2721), + [sym_property_delegate] = STATE(2784), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315128,170 +326308,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - }, - [2560] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3089), - [anon_sym_sealed] = ACTIONS(3089), - [anon_sym_annotation] = ACTIONS(3089), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_lateinit] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_tailrec] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym_external] = ACTIONS(3089), - [sym_property_modifier] = ACTIONS(3089), - [anon_sym_abstract] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_vararg] = ACTIONS(3089), - [anon_sym_noinline] = ACTIONS(3089), - [anon_sym_crossinline] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2561] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5843), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2601] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315316,264 +326401,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2562] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3043), - [anon_sym_sealed] = ACTIONS(3043), - [anon_sym_annotation] = ACTIONS(3043), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_lateinit] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_tailrec] = ACTIONS(3043), - [anon_sym_operator] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_external] = ACTIONS(3043), - [sym_property_modifier] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_vararg] = ACTIONS(3043), - [anon_sym_noinline] = ACTIONS(3043), - [anon_sym_crossinline] = ACTIONS(3043), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3045), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2563] = { - [sym_primary_constructor] = STATE(5307), - [sym_class_body] = STATE(4763), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2601), - [sym_type_constraints] = STATE(4631), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6071), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - }, - [2564] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2602] = { + [sym_type_constraints] = STATE(2712), + [sym_property_delegate] = STATE(2808), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6240), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315598,76 +326494,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2565] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2603] = { + [sym_primary_constructor] = STATE(4155), + [sym_class_body] = STATE(3539), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3280), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2604] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315692,452 +326680,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - }, - [2566] = { - [sym_primary_constructor] = STATE(5286), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2600), - [sym_type_constraints] = STATE(4588), - [sym_enum_class_body] = STATE(4705), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6073), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2567] = { - [sym_primary_constructor] = STATE(5282), - [sym_class_body] = STATE(4705), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2596), - [sym_type_constraints] = STATE(4582), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [2605] = { + [sym_primary_constructor] = STATE(5455), + [sym_class_body] = STATE(4759), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4624), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2568] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3012), - [anon_sym_sealed] = ACTIONS(3012), - [anon_sym_annotation] = ACTIONS(3012), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_lateinit] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_tailrec] = ACTIONS(3012), - [anon_sym_operator] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_inline] = ACTIONS(3012), - [anon_sym_external] = ACTIONS(3012), - [sym_property_modifier] = ACTIONS(3012), - [anon_sym_abstract] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_vararg] = ACTIONS(3012), - [anon_sym_noinline] = ACTIONS(3012), - [anon_sym_crossinline] = ACTIONS(3012), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(3598), + [2606] = { + [sym_primary_constructor] = STATE(4188), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2569] = { - [sym_primary_constructor] = STATE(5334), - [sym__class_parameters] = STATE(4632), - [sym_type_parameters] = STATE(2595), - [sym_type_constraints] = STATE(4601), - [sym_enum_class_body] = STATE(4757), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [2607] = { + [sym_type_constraints] = STATE(2738), + [sym_property_delegate] = STATE(2877), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2570] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [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), + [2608] = { + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), + }, + [2609] = { + [sym_type_constraints] = STATE(2742), + [sym_property_delegate] = STATE(2828), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316162,640 +327146,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2571] = { - [sym_primary_constructor] = STATE(4123), - [sym_class_body] = STATE(3925), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2594), - [sym_type_constraints] = STATE(3639), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6079), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), - }, - [2572] = { - [sym_primary_constructor] = STATE(4107), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2655), - [sym_type_constraints] = STATE(3652), - [sym_enum_class_body] = STATE(3897), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6081), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2573] = { - [sym_primary_constructor] = STATE(4108), - [sym_class_body] = STATE(3897), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2620), - [sym_type_constraints] = STATE(3701), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6083), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2574] = { - [sym_primary_constructor] = STATE(4120), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2632), - [sym_type_constraints] = STATE(3619), - [sym_enum_class_body] = STATE(3918), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6085), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - }, - [2575] = { - [sym_primary_constructor] = STATE(5321), - [sym_class_body] = STATE(5116), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2654), - [sym_type_constraints] = STATE(4964), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6087), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2576] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3078), - [anon_sym_sealed] = ACTIONS(3078), - [anon_sym_annotation] = ACTIONS(3078), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_lateinit] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_internal] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_tailrec] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_infix] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_external] = ACTIONS(3078), - [sym_property_modifier] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3078), - [anon_sym_vararg] = ACTIONS(3078), - [anon_sym_noinline] = ACTIONS(3078), - [anon_sym_crossinline] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(3598), + [2610] = { + [sym_primary_constructor] = STATE(4171), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, - [2577] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9371), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5813), - [anon_sym_set] = ACTIONS(5815), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2611] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316820,640 +327331,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2578] = { - [sym_indexing_suffix] = STATE(3799), - [sym_navigation_suffix] = STATE(3836), - [sym_call_suffix] = STATE(3834), - [sym_annotated_lambda] = STATE(3824), - [sym_type_arguments] = STATE(8014), - [sym_value_arguments] = STATE(2927), - [sym_lambda_literal] = STATE(3819), - [sym__equality_operator] = STATE(2091), - [sym__comparison_operator] = STATE(2090), - [sym__in_operator] = STATE(2088), - [sym__is_operator] = STATE(6086), - [sym__additive_operator] = STATE(2087), - [sym__multiplicative_operator] = STATE(2086), - [sym__as_operator] = STATE(6085), - [sym__postfix_unary_operator] = STATE(3803), - [sym__member_access_operator] = STATE(7610), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2085), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(4370), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(4374), - [anon_sym_QMARK_COLON] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4378), - [anon_sym_PIPE_PIPE] = ACTIONS(4380), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [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(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4388), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3085), - [anon_sym_sealed] = ACTIONS(3085), - [anon_sym_annotation] = ACTIONS(3085), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_lateinit] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_tailrec] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_inline] = ACTIONS(3085), - [anon_sym_external] = ACTIONS(3085), - [sym_property_modifier] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_vararg] = ACTIONS(3085), - [anon_sym_noinline] = ACTIONS(3085), - [anon_sym_crossinline] = ACTIONS(3085), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2579] = { - [sym_primary_constructor] = STATE(5318), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2642), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5120), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6089), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2580] = { - [sym_primary_constructor] = STATE(5328), - [sym_class_body] = STATE(5120), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2626), - [sym_type_constraints] = STATE(4934), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6091), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2581] = { - [sym_primary_constructor] = STATE(4146), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2636), - [sym_type_constraints] = STATE(3132), - [sym_enum_class_body] = STATE(3493), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6093), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - }, - [2582] = { - [sym_primary_constructor] = STATE(5332), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2606), - [sym_type_constraints] = STATE(4905), - [sym_enum_class_body] = STATE(5063), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6095), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), - [sym_multiline_comment] = ACTIONS(3), - }, - [2583] = { - [sym_primary_constructor] = STATE(4121), - [sym_class_body] = STATE(3415), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2625), - [sym_type_constraints] = STATE(3140), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6097), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2584] = { - [sym_getter] = STATE(3295), - [sym_setter] = STATE(3295), - [sym_modifiers] = STATE(9323), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5728), - [anon_sym_set] = ACTIONS(5730), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2612] = { + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317478,168 +327412,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - }, - [2585] = { - [sym_primary_constructor] = STATE(4110), - [sym__class_parameters] = STATE(3058), - [sym_type_parameters] = STATE(2617), - [sym_type_constraints] = STATE(3097), - [sym_enum_class_body] = STATE(3415), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6099), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), }, - [2586] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2613] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317664,169 +327517,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2587] = { - [sym_primary_constructor] = STATE(5477), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2662), - [sym_type_constraints] = STATE(4905), - [sym_enum_class_body] = STATE(5063), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6101), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), + [2614] = { + [sym_primary_constructor] = STATE(4158), + [sym_class_body] = STATE(3565), + [sym__class_parameters] = STATE(3293), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(9792), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5484), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2588] = { - [sym_type_constraints] = STATE(2736), - [sym_property_delegate] = STATE(2813), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6103), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2615] = { + [sym_type_constraints] = STATE(2747), + [sym_property_delegate] = STATE(2822), + [sym_getter] = STATE(3600), + [sym_setter] = STATE(3600), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6276), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317851,74 +327704,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2589] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2616] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317943,75 +327796,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2590] = { - [sym_getter] = STATE(4998), - [sym_setter] = STATE(4998), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2617] = { + [sym_type_constraints] = STATE(2749), + [sym_property_delegate] = STATE(2863), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318036,76 +327890,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2591] = { - [sym_type_constraints] = STATE(2723), - [sym_property_delegate] = STATE(2801), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2618] = { + [sym_primary_constructor] = STATE(5518), + [sym_class_body] = STATE(5123), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2710), + [sym_type_constraints] = STATE(5069), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), + }, + [2619] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318130,74 +328063,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, - [2592] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3748), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2620] = { + [sym_type_constraints] = STATE(2745), + [sym_property_delegate] = STATE(2873), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318222,76 +328169,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2593] = { - [sym_type_constraints] = STATE(2741), - [sym_property_delegate] = STATE(2793), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6117), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2621] = { + [sym_getter] = STATE(5347), + [sym_setter] = STATE(5347), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318316,354 +328249,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2594] = { - [sym_primary_constructor] = STATE(4122), - [sym_class_body] = STATE(3784), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3696), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6119), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [2595] = { - [sym_primary_constructor] = STATE(5340), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4613), - [sym_enum_class_body] = STATE(4723), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [2596] = { - [sym_primary_constructor] = STATE(5317), - [sym_class_body] = STATE(4822), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4599), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6123), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [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), }, - [2597] = { - [sym_type_constraints] = STATE(2733), - [sym_property_delegate] = STATE(2807), - [sym_getter] = STATE(3319), - [sym_setter] = STATE(3319), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6127), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [2622] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318688,167 +328354,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - }, - [2598] = { - [sym_primary_constructor] = STATE(4113), - [sym_class_body] = STATE(3392), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3092), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2599] = { - [sym_type_constraints] = STATE(2713), - [sym_property_delegate] = STATE(2772), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2623] = { + [sym_primary_constructor] = STATE(5468), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4659), + [sym_enum_class_body] = STATE(4748), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6284), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6133), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6135), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2624] = { + [sym_getter] = STATE(5416), + [sym_setter] = STATE(5416), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [2625] = { + [sym_type_constraints] = STATE(2691), + [sym_property_delegate] = STATE(2781), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318873,261 +328633,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2600] = { - [sym_primary_constructor] = STATE(5301), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4607), - [sym_enum_class_body] = STATE(4822), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [2626] = { + [sym_type_constraints] = STATE(2713), + [sym_property_delegate] = STATE(2790), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6292), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2601] = { - [sym_primary_constructor] = STATE(5284), - [sym_class_body] = STATE(4695), - [sym__class_parameters] = STATE(4632), - [sym_type_constraints] = STATE(4589), - [sym_modifiers] = STATE(9676), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6143), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [2627] = { + [sym_primary_constructor] = STATE(5529), + [sym_class_body] = STATE(5131), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2706), + [sym_type_constraints] = STATE(5038), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), }, - [2602] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2628] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319152,76 +328912,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2603] = { - [sym_type_constraints] = STATE(2737), - [sym_property_delegate] = STATE(2806), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6145), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6147), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2629] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319246,74 +329005,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2604] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2630] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319338,75 +329098,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2605] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5891), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2631] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319431,125 +329191,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2606] = { - [sym_primary_constructor] = STATE(5333), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4973), - [sym_enum_class_body] = STATE(5046), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2607] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2632] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), @@ -319559,9 +329226,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -319617,75 +329284,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2608] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2633] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319710,75 +329377,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2609] = { - [sym_getter] = STATE(3853), - [sym_setter] = STATE(3853), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2634] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319803,75 +329470,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2610] = { - [sym_type_constraints] = STATE(2691), - [sym_property_delegate] = STATE(2755), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2635] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319896,76 +329563,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2611] = { - [sym_type_constraints] = STATE(2722), - [sym_property_delegate] = STATE(2821), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4332), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2636] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319990,74 +329656,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2612] = { - [sym_type_constraints] = STATE(2693), - [sym_property_delegate] = STATE(2758), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2637] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320082,168 +329749,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2613] = { - [sym_primary_constructor] = STATE(4179), - [sym_class_body] = STATE(3925), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2674), - [sym_type_constraints] = STATE(3639), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [2638] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2614] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2639] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2640] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + }, + [2641] = { + [sym_primary_constructor] = STATE(4221), + [sym_class_body] = STATE(3847), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2699), + [sym_type_constraints] = STATE(3737), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6296), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), + [sym_multiline_comment] = ACTIONS(3), + }, + [2642] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2643] = { + [sym_primary_constructor] = STATE(5471), + [sym_class_body] = STATE(4748), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4621), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2644] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320268,75 +330400,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2615] = { - [sym_type_constraints] = STATE(2700), - [sym_property_delegate] = STATE(2764), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4157), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2645] = { + [sym_primary_constructor] = STATE(5476), + [sym__class_parameters] = STATE(4662), + [sym_type_constraints] = STATE(4694), + [sym_enum_class_body] = STATE(4786), + [sym_modifiers] = STATE(9699), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6300), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2646] = { + [sym_type_constraints] = STATE(2703), + [sym_property_delegate] = STATE(2794), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6302), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320361,75 +330586,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2616] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2647] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320454,168 +330679,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2617] = { - [sym_primary_constructor] = STATE(4124), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2618] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2648] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320640,261 +330772,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2619] = { - [sym_primary_constructor] = STATE(4169), - [sym_class_body] = STATE(3897), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2665), - [sym_type_constraints] = STATE(3701), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6163), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [2649] = { + [sym_primary_constructor] = STATE(4154), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6304), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2620] = { - [sym_primary_constructor] = STATE(4117), - [sym_class_body] = STATE(3859), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3615), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [2650] = { + [sym_primary_constructor] = STATE(4164), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6306), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2621] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2651] = { + [sym_primary_constructor] = STATE(4172), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6308), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2652] = { + [sym_type_constraints] = STATE(2750), + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320919,76 +331145,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2622] = { - [sym_type_constraints] = STATE(2732), - [sym_property_delegate] = STATE(2811), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2653] = { + [sym_primary_constructor] = STATE(4205), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2725), + [sym_type_constraints] = STATE(3723), + [sym_enum_class_body] = STATE(3847), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [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), + }, + [2654] = { + [sym_primary_constructor] = STATE(5530), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2701), + [sym_type_constraints] = STATE(5024), + [sym_enum_class_body] = STATE(5155), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6314), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2655] = { + [sym_primary_constructor] = STATE(5430), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2656] = { + [sym_type_constraints] = STATE(2733), + [sym_property_delegate] = STATE(2802), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6320), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321013,74 +331516,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2623] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2657] = { + [sym_primary_constructor] = STATE(4182), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2658] = { + [sym_type_constraints] = STATE(2698), + [sym_property_delegate] = STATE(2792), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321105,75 +331702,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2624] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2659] = { + [sym_type_constraints] = STATE(2709), + [sym_property_delegate] = STATE(2770), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321198,261 +331795,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2625] = { - [sym_primary_constructor] = STATE(4147), - [sym_class_body] = STATE(3182), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3135), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [2626] = { - [sym_primary_constructor] = STATE(5331), - [sym_class_body] = STATE(5089), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4914), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6171), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [2627] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2660] = { + [sym_type_constraints] = STATE(2743), + [sym_property_delegate] = STATE(2875), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321477,75 +331889,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2628] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2661] = { + [sym_type_constraints] = STATE(2740), + [sym_property_delegate] = STATE(2879), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321570,75 +331982,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2629] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2662] = { + [sym_primary_constructor] = STATE(4215), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2723), + [sym_type_constraints] = STATE(3795), + [sym_enum_class_body] = STATE(3932), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3248), + [sym_label] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_QMARK_COLON] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_is] = ACTIONS(3244), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_as_QMARK] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_BANG_BANG] = ACTIONS(3248), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), + [sym_multiline_comment] = ACTIONS(3), + }, + [2663] = { + [sym_primary_constructor] = STATE(5428), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5933), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2664] = { + [sym_type_constraints] = STATE(2752), + [sym_property_delegate] = STATE(2858), + [sym_getter] = STATE(4797), + [sym_setter] = STATE(4797), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6340), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321663,75 +332261,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2630] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2665] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321756,75 +332353,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2631] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2666] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321849,168 +332446,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2632] = { - [sym_primary_constructor] = STATE(4129), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2667] = { + [sym_primary_constructor] = STATE(5515), + [sym__class_parameters] = STATE(5039), + [sym_type_parameters] = STATE(2726), + [sym_type_constraints] = STATE(5056), + [sym_enum_class_body] = STATE(5123), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6342), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3238), + [sym_label] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_QMARK_COLON] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_as_QMARK] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_BANG_BANG] = ACTIONS(3238), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2633] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2668] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9302), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6082), + [anon_sym_set] = ACTIONS(6084), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322035,76 +332632,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2634] = { - [sym_type_constraints] = STATE(2738), - [sym_property_delegate] = STATE(2818), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4340), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2669] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322129,74 +332725,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2635] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2670] = { + [sym_primary_constructor] = STATE(4216), + [sym_class_body] = STATE(3968), + [sym__class_parameters] = STATE(3769), + [sym_type_parameters] = STATE(2704), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3206), + [sym_label] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3200), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_QMARK_COLON] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3200), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_as_QMARK] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_BANG_BANG] = ACTIONS(3206), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), + [sym_multiline_comment] = ACTIONS(3), + }, + [2671] = { + [sym_type_constraints] = STATE(2746), + [sym_property_delegate] = STATE(2841), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322221,168 +332912,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2636] = { - [sym_primary_constructor] = STATE(4132), - [sym__class_parameters] = STATE(3058), - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym_modifiers] = STATE(9733), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2637] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2672] = { + [sym_type_constraints] = STATE(2683), + [sym_property_delegate] = STATE(2788), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322407,75 +333004,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2638] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2673] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9185), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6090), + [anon_sym_set] = ACTIONS(6092), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322500,75 +333097,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2639] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2674] = { + [sym_getter] = STATE(5349), + [sym_setter] = STATE(5349), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322593,169 +333178,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), }, - [2640] = { - [sym_type_constraints] = STATE(2727), - [sym_property_delegate] = STATE(2799), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2675] = { + [sym_primary_constructor] = STATE(5480), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6105), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(5776), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6181), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2641] = { - [sym_type_constraints] = STATE(2728), - [sym_property_delegate] = STATE(2797), - [sym_getter] = STATE(4656), - [sym_setter] = STATE(4656), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2676] = { + [sym_primary_constructor] = STATE(5447), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(3274), [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(6105), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(3274), [anon_sym_LT] = ACTIONS(3270), [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(5776), [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6185), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), [anon_sym_in] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3274), [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3274), [anon_sym_PLUS] = ACTIONS(3270), [anon_sym_DASH] = ACTIONS(3270), [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + }, + [2677] = { + [sym_type_constraints] = STATE(2714), + [sym_property_delegate] = STATE(2786), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322780,167 +333469,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - }, - [2642] = { - [sym_primary_constructor] = STATE(5330), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4967), - [sym_enum_class_body] = STATE(5089), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6187), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2643] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9085), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(5893), - [anon_sym_set] = ACTIONS(5895), - [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), + [2678] = { + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322965,168 +333550,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2644] = { - [sym_primary_constructor] = STATE(5442), - [sym_class_body] = STATE(5116), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2689), - [sym_type_constraints] = STATE(4964), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3112), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_get] = ACTIONS(3112), - [anon_sym_set] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3118), - [sym_label] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3112), - [anon_sym_DOT_DOT] = ACTIONS(3118), - [anon_sym_QMARK_COLON] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3112), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_as_QMARK] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_BANG_BANG] = ACTIONS(3118), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3118), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_safe_nav] = ACTIONS(3118), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), }, - [2645] = { - [sym_type_constraints] = STATE(2688), - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6193), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [2679] = { + [sym_getter] = STATE(5368), + [sym_setter] = STATE(5368), + [sym_modifiers] = STATE(9137), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(5908), + [anon_sym_set] = ACTIONS(5910), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323151,168 +333643,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - }, - [2646] = { - [sym_primary_constructor] = STATE(5458), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2682), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5120), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6199), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, - [2647] = { - [sym_type_constraints] = STATE(2678), - [sym_property_delegate] = STATE(2773), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6203), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2680] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323337,75 +333748,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2648] = { - [sym_type_constraints] = STATE(2696), - [sym_property_delegate] = STATE(2774), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6205), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2681] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323430,168 +333840,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2649] = { - [sym_primary_constructor] = STATE(5466), - [sym_class_body] = STATE(5120), - [sym__class_parameters] = STATE(4971), - [sym_type_parameters] = STATE(2671), - [sym_type_constraints] = STATE(4934), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6207), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2650] = { - [sym_type_constraints] = STATE(2663), - [sym_property_delegate] = STATE(2767), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6209), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4153), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2682] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323616,75 +333932,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2651] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9203), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5859), - [anon_sym_set] = ACTIONS(5861), - [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), + [2683] = { + [sym_property_delegate] = STATE(2783), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6356), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323709,168 +334023,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2652] = { - [sym_primary_constructor] = STATE(4176), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2711), - [sym_type_constraints] = STATE(3652), - [sym_enum_class_body] = STATE(3897), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6211), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2653] = { - [sym_type_constraints] = STATE(2717), - [sym_property_delegate] = STATE(2782), - [sym_getter] = STATE(3860), - [sym_setter] = STATE(3860), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6213), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6215), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [2684] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323895,261 +334116,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), - [sym_multiline_comment] = ACTIONS(3), - }, - [2654] = { - [sym_primary_constructor] = STATE(5310), - [sym_class_body] = STATE(5123), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4959), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [2655] = { - [sym_primary_constructor] = STATE(4114), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6219), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2656] = { - [sym_type_constraints] = STATE(2676), - [sym_property_delegate] = STATE(2776), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6221), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4155), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2685] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324174,168 +334208,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2657] = { - [sym_primary_constructor] = STATE(4173), - [sym__class_parameters] = STATE(3620), - [sym_type_parameters] = STATE(2714), - [sym_type_constraints] = STATE(3619), - [sym_enum_class_body] = STATE(3918), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6223), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_as] = ACTIONS(3164), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(5414), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3168), - [sym_label] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3164), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [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(3164), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_as_QMARK] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_BANG_BANG] = ACTIONS(3168), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3168), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2658] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2686] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324360,74 +334300,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2659] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2687] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324452,73 +334392,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2660] = { - [sym_type_constraints] = STATE(2746), - [sym_property_delegate] = STATE(2855), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6225), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2688] = { + [sym_type_constraints] = STATE(2755), + [sym_property_delegate] = STATE(2894), + [sym_getter] = STATE(3907), + [sym_setter] = STATE(3907), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6362), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324543,75 +334483,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2661] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2689] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324636,165 +334576,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), - [sym_multiline_comment] = ACTIONS(3), - }, - [2662] = { - [sym_primary_constructor] = STATE(5465), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4973), - [sym_enum_class_body] = STATE(5046), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2663] = { - [sym_property_delegate] = STATE(2776), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6221), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4155), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2690] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324819,64 +334668,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2664] = { - [sym_getter] = STATE(5459), - [sym_setter] = STATE(5459), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2691] = { + [sym_property_delegate] = STATE(2770), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324901,176 +334759,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [2665] = { - [sym_primary_constructor] = STATE(4178), - [sym_class_body] = STATE(3859), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3615), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2666] = { - [sym_type_constraints] = STATE(2745), - [sym_property_delegate] = STATE(2862), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4518), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2692] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325095,75 +334852,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2667] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3810), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2693] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6146), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325188,74 +334944,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2668] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2694] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325280,63 +335036,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2669] = { - [sym_getter] = STATE(5366), - [sym_setter] = STATE(5366), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), + [2695] = { + [sym_type_constraints] = STATE(2762), + [sym_property_delegate] = STATE(2943), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6368), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325361,85 +335127,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, - [2670] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(3804), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2696] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325464,155 +335220,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - }, - [2671] = { - [sym_primary_constructor] = STATE(5476), - [sym_class_body] = STATE(5089), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4914), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6239), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2672] = { - [sym_getter] = STATE(5440), - [sym_setter] = STATE(5440), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), + [2697] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325637,74 +335312,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), }, - [2673] = { - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [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(2012), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2698] = { + [sym_property_delegate] = STATE(2788), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6348), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325729,177 +335403,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), - }, - [2674] = { - [sym_primary_constructor] = STATE(4171), - [sym_class_body] = STATE(3784), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3696), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2675] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2699] = { + [sym_primary_constructor] = STATE(4203), + [sym_class_body] = STATE(3953), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3786), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2700] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325924,73 +335588,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2676] = { - [sym_property_delegate] = STATE(2774), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6205), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2701] = { + [sym_primary_constructor] = STATE(5516), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(4981), + [sym_enum_class_body] = STATE(5246), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6372), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2702] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326015,52 +335772,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2677] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2703] = { + [sym_property_delegate] = STATE(2792), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6324), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), [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), @@ -326108,166 +335863,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2678] = { - [sym_property_delegate] = STATE(2767), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6209), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4153), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [2704] = { + [sym_primary_constructor] = STATE(4209), + [sym_class_body] = STATE(3956), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3721), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6374), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2679] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3812), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2705] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326292,166 +336048,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2680] = { - [sym_type_constraints] = STATE(2742), - [sym_property_delegate] = STATE(2846), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [2706] = { + [sym_primary_constructor] = STATE(5506), + [sym_class_body] = STATE(5175), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5030), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6376), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, - [2681] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2707] = { + [sym_type_constraints] = STATE(2764), + [sym_property_delegate] = STATE(2959), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326476,166 +336231,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2682] = { - [sym_primary_constructor] = STATE(5355), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4967), - [sym_enum_class_body] = STATE(5089), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6251), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2683] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3814), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2708] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326660,73 +336324,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2684] = { - [sym_type_constraints] = STATE(2749), - [sym_property_delegate] = STATE(2841), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6253), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2709] = { + [sym_property_delegate] = STATE(2786), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326751,75 +336415,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2685] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2710] = { + [sym_primary_constructor] = STATE(5528), + [sym_class_body] = STATE(5118), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5029), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6384), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2711] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326844,73 +336600,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2686] = { - [sym_type_constraints] = STATE(2753), - [sym_property_delegate] = STATE(2858), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2712] = { + [sym_property_delegate] = STATE(2794), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6302), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326935,75 +336691,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2687] = { - [sym_getter] = STATE(3295), - [sym_setter] = STATE(3295), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_DASH_GT] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2713] = { + [sym_property_delegate] = STATE(2781), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327028,73 +336783,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2688] = { - [sym_property_delegate] = STATE(2773), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6203), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2714] = { + [sym_property_delegate] = STATE(2784), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327119,167 +336875,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2689] = { - [sym_primary_constructor] = STATE(5453), - [sym_class_body] = STATE(5123), - [sym__class_parameters] = STATE(4971), - [sym_type_constraints] = STATE(4959), - [sym_modifiers] = STATE(9622), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_constructor] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5449), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2690] = { - [sym_getter] = STATE(4673), - [sym_setter] = STATE(4673), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_DASH_GT] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2715] = { + [sym_type_constraints] = STATE(2766), + [sym_property_delegate] = STATE(2929), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327304,73 +336967,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2691] = { - [sym_property_delegate] = STATE(2783), - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2716] = { + [sym_type_constraints] = STATE(2758), + [sym_property_delegate] = STATE(2912), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327395,64 +337059,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2692] = { - [sym_getter] = STATE(5404), - [sym_setter] = STATE(5404), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [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(1998), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2717] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327477,84 +337152,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, - [2693] = { - [sym_property_delegate] = STATE(2755), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2718] = { + [sym_type_constraints] = STATE(2760), + [sym_property_delegate] = STATE(2954), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6390), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327579,74 +337243,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2694] = { - [sym_type_constraints] = STATE(2748), - [sym_property_delegate] = STATE(2849), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6261), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2719] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327671,64 +337336,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2695] = { - [sym_getter] = STATE(5434), - [sym_setter] = STATE(5434), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5923), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), + [2720] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327753,84 +337428,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [2696] = { - [sym_property_delegate] = STATE(2763), - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2721] = { + [sym_property_delegate] = STATE(2799), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6392), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327855,75 +337519,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2697] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2722] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9368), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_get] = ACTIONS(6164), + [anon_sym_set] = ACTIONS(6166), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327948,74 +337612,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2698] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3802), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2723] = { + [sym_primary_constructor] = STATE(4212), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6394), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [2724] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328040,165 +337796,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2699] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2725] = { + [sym_primary_constructor] = STATE(4218), + [sym__class_parameters] = STATE(3769), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym_modifiers] = STATE(9751), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_constructor] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5822), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5977), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, - [2700] = { - [sym_property_delegate] = STATE(2758), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2726] = { + [sym_primary_constructor] = STATE(5522), + [sym__class_parameters] = STATE(5039), + [sym_type_constraints] = STATE(5049), + [sym_enum_class_body] = STATE(5118), + [sym_modifiers] = STATE(9715), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6398), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_constructor] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5776), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3220), + [anon_sym_annotation] = ACTIONS(3220), + [anon_sym_data] = ACTIONS(3220), + [anon_sym_inner] = ACTIONS(3220), + [anon_sym_value] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_lateinit] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_internal] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3230), + [anon_sym_noinline] = ACTIONS(3230), + [anon_sym_crossinline] = ACTIONS(3230), + [anon_sym_expect] = ACTIONS(3232), + [anon_sym_actual] = ACTIONS(3232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2727] = { + [sym_type_constraints] = STATE(2756), + [sym_property_delegate] = STATE(2939), + [sym_getter] = STATE(5144), + [sym_setter] = STATE(5144), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(6402), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_QMARK_COLON] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG_BANG] = ACTIONS(3360), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328223,75 +338071,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), [sym_multiline_comment] = ACTIONS(3), }, - [2701] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6017), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2728] = { + [sym_type_constraints] = STATE(2754), + [sym_property_delegate] = STATE(2967), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6404), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328316,74 +338163,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2702] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2729] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328408,74 +338256,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2703] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3816), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2730] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328500,73 +338348,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2704] = { - [sym_type_constraints] = STATE(2751), - [sym_property_delegate] = STATE(2823), - [sym_getter] = STATE(3860), - [sym_setter] = STATE(3860), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6265), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [2731] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328591,32 +338440,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2705] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2732] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9403), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_RBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), @@ -328629,9 +338477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6148), + [anon_sym_set] = ACTIONS(6150), [anon_sym_STAR] = ACTIONS(1792), [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), @@ -328684,73 +338532,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2706] = { - [sym_type_constraints] = STATE(2743), - [sym_property_delegate] = STATE(2837), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6269), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4488), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2733] = { + [sym_property_delegate] = STATE(2808), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6240), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328775,75 +338623,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2707] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2734] = { + [sym_type_constraints] = STATE(2761), + [sym_property_delegate] = STATE(2932), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6408), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328868,74 +338715,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2708] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2735] = { + [sym_type_constraints] = STATE(2757), + [sym_property_delegate] = STATE(2948), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6412), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328960,74 +338807,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2709] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2736] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4023), + [anon_sym_sealed] = ACTIONS(4023), + [anon_sym_annotation] = ACTIONS(4023), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4023), + [anon_sym_lateinit] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_private] = ACTIONS(4023), + [anon_sym_internal] = ACTIONS(4023), + [anon_sym_protected] = ACTIONS(4023), + [anon_sym_tailrec] = ACTIONS(4023), + [anon_sym_operator] = ACTIONS(4023), + [anon_sym_infix] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_external] = ACTIONS(4023), + [sym_property_modifier] = ACTIONS(4023), + [anon_sym_abstract] = ACTIONS(4023), + [anon_sym_final] = ACTIONS(4023), + [anon_sym_open] = ACTIONS(4023), + [anon_sym_vararg] = ACTIONS(4023), + [anon_sym_noinline] = ACTIONS(4023), + [anon_sym_crossinline] = ACTIONS(4023), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2737] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4013), + [anon_sym_sealed] = ACTIONS(4013), + [anon_sym_annotation] = ACTIONS(4013), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_lateinit] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_private] = ACTIONS(4013), + [anon_sym_internal] = ACTIONS(4013), + [anon_sym_protected] = ACTIONS(4013), + [anon_sym_tailrec] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_infix] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_external] = ACTIONS(4013), + [sym_property_modifier] = ACTIONS(4013), + [anon_sym_abstract] = ACTIONS(4013), + [anon_sym_final] = ACTIONS(4013), + [anon_sym_open] = ACTIONS(4013), + [anon_sym_vararg] = ACTIONS(4013), + [anon_sym_noinline] = ACTIONS(4013), + [anon_sym_crossinline] = ACTIONS(4013), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2738] = { + [sym_property_delegate] = STATE(2875), + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329052,74 +339081,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2710] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [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), + [2739] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2740] = { + [sym_property_delegate] = STATE(2877), + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329144,166 +339263,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2711] = { - [sym_primary_constructor] = STATE(4157), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [2741] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, - [2712] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9095), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5979), - [anon_sym_set] = ACTIONS(5981), - [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), + [2742] = { + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329328,73 +339445,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2713] = { - [sym_property_delegate] = STATE(2764), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4157), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2743] = { + [sym_property_delegate] = STATE(2873), + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329419,166 +339536,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2714] = { - [sym_primary_constructor] = STATE(4177), - [sym__class_parameters] = STATE(3620), - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym_modifiers] = STATE(9705), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), - [anon_sym_data] = ACTIONS(3132), - [anon_sym_inner] = ACTIONS(3132), - [anon_sym_value] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_lateinit] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_internal] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [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(3138), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_final] = ACTIONS(3140), - [anon_sym_open] = ACTIONS(3140), - [anon_sym_vararg] = ACTIONS(3142), - [anon_sym_noinline] = ACTIONS(3142), - [anon_sym_crossinline] = ACTIONS(3142), - [anon_sym_expect] = ACTIONS(3144), - [anon_sym_actual] = ACTIONS(3144), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2744] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, - [2715] = { - [sym_type_constraints] = STATE(2747), - [sym_property_delegate] = STATE(2842), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6277), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2745] = { + [sym_property_delegate] = STATE(2871), + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329603,75 +339718,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2716] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2746] = { + [sym_property_delegate] = STATE(2863), + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329696,73 +339809,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2717] = { - [sym_property_delegate] = STATE(2772), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6135), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2747] = { + [sym_property_delegate] = STATE(2828), + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329787,74 +339900,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2718] = { - [sym_type_constraints] = STATE(2744), - [sym_property_delegate] = STATE(2835), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(6281), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(3272), - [sym_label] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3272), - [anon_sym_QMARK_COLON] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_as_QMARK] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_BANG_BANG] = ACTIONS(3272), + [2748] = { + [sym_annotated_lambda] = STATE(3161), + [sym_lambda_literal] = STATE(3174), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [2749] = { + [sym_property_delegate] = STATE(2820), + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6416), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329879,75 +340082,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3272), - [sym__automatic_semicolon] = ACTIONS(3272), - [sym_safe_nav] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2719] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9074), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(5997), - [anon_sym_set] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2750] = { + [sym_property_delegate] = STATE(2841), + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329972,153 +340173,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2720] = { - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [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(5917), - [anon_sym_set] = ACTIONS(5919), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1756), - [anon_sym_continue_AT] = ACTIONS(1756), - [anon_sym_break_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), + [2751] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, - [2721] = { - [sym_getter] = STATE(5434), - [sym_setter] = STATE(5434), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), + [2752] = { + [sym_property_delegate] = STATE(2879), + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330143,84 +340355,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [2722] = { - [sym_property_delegate] = STATE(2813), - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6103), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2753] = { + [sym_annotated_lambda] = STATE(3072), + [sym_lambda_literal] = STATE(3174), + [sym_annotation] = STATE(8336), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [2754] = { + [sym_property_delegate] = STATE(2943), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6368), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330245,73 +340535,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2723] = { - [sym_property_delegate] = STATE(2794), - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6283), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4232), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2755] = { + [sym_property_delegate] = STATE(2967), + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6404), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330336,62 +340625,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2724] = { - [sym_getter] = STATE(5404), - [sym_setter] = STATE(5404), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [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(5917), - [anon_sym_set] = ACTIONS(5919), - [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), + [2756] = { + [sym_property_delegate] = STATE(2948), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6412), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330416,266 +340715,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [2725] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_interface] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3825), - [anon_sym_var] = ACTIONS(3825), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3825), - [anon_sym_fun] = ACTIONS(3825), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3825), - [anon_sym_sealed] = ACTIONS(3825), - [anon_sym_annotation] = ACTIONS(3825), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3825), - [anon_sym_lateinit] = ACTIONS(3825), - [anon_sym_public] = ACTIONS(3825), - [anon_sym_private] = ACTIONS(3825), - [anon_sym_internal] = ACTIONS(3825), - [anon_sym_protected] = ACTIONS(3825), - [anon_sym_tailrec] = ACTIONS(3825), - [anon_sym_operator] = ACTIONS(3825), - [anon_sym_infix] = ACTIONS(3825), - [anon_sym_inline] = ACTIONS(3825), - [anon_sym_external] = ACTIONS(3825), - [sym_property_modifier] = ACTIONS(3825), - [anon_sym_abstract] = ACTIONS(3825), - [anon_sym_final] = ACTIONS(3825), - [anon_sym_open] = ACTIONS(3825), - [anon_sym_vararg] = ACTIONS(3825), - [anon_sym_noinline] = ACTIONS(3825), - [anon_sym_crossinline] = ACTIONS(3825), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2726] = { - [sym_getter] = STATE(5440), - [sym_setter] = STATE(5440), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), - }, - [2727] = { - [sym_property_delegate] = STATE(2811), - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2757] = { + [sym_property_delegate] = STATE(2932), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(6408), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330700,73 +340805,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2728] = { - [sym_property_delegate] = STATE(2799), - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6181), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2758] = { + [sym_property_delegate] = STATE(2891), + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6418), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330791,244 +340895,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2729] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3867), - [anon_sym_var] = ACTIONS(3867), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3867), - [anon_sym_fun] = ACTIONS(3867), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3867), - [anon_sym_sealed] = ACTIONS(3867), - [anon_sym_annotation] = ACTIONS(3867), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3867), - [anon_sym_lateinit] = ACTIONS(3867), - [anon_sym_public] = ACTIONS(3867), - [anon_sym_private] = ACTIONS(3867), - [anon_sym_internal] = ACTIONS(3867), - [anon_sym_protected] = ACTIONS(3867), - [anon_sym_tailrec] = ACTIONS(3867), - [anon_sym_operator] = ACTIONS(3867), - [anon_sym_infix] = ACTIONS(3867), - [anon_sym_inline] = ACTIONS(3867), - [anon_sym_external] = ACTIONS(3867), - [sym_property_modifier] = ACTIONS(3867), - [anon_sym_abstract] = ACTIONS(3867), - [anon_sym_final] = ACTIONS(3867), - [anon_sym_open] = ACTIONS(3867), - [anon_sym_vararg] = ACTIONS(3867), - [anon_sym_noinline] = ACTIONS(3867), - [anon_sym_crossinline] = ACTIONS(3867), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [2759] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, - [2730] = { - [sym_getter] = STATE(5459), - [sym_setter] = STATE(5459), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [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(5917), - [anon_sym_set] = ACTIONS(5919), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [2731] = { - [sym_getter] = STATE(5366), - [sym_setter] = STATE(5366), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), + [2760] = { + [sym_property_delegate] = STATE(2959), + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331053,84 +341075,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, - [2732] = { - [sym_property_delegate] = STATE(2793), - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6117), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2761] = { + [sym_property_delegate] = STATE(2954), + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6390), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331155,73 +341165,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2733] = { - [sym_property_delegate] = STATE(2806), - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6145), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6147), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2762] = { + [sym_property_delegate] = STATE(2929), + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331246,255 +341255,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2734] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_interface] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3825), - [anon_sym_var] = ACTIONS(3825), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3825), - [anon_sym_fun] = ACTIONS(3825), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3827), - [anon_sym_sealed] = ACTIONS(3827), - [anon_sym_annotation] = ACTIONS(3827), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3827), - [anon_sym_lateinit] = ACTIONS(3827), - [anon_sym_public] = ACTIONS(3827), - [anon_sym_private] = ACTIONS(3827), - [anon_sym_internal] = ACTIONS(3827), - [anon_sym_protected] = ACTIONS(3827), - [anon_sym_tailrec] = ACTIONS(3827), - [anon_sym_operator] = ACTIONS(3827), - [anon_sym_infix] = ACTIONS(3827), - [anon_sym_inline] = ACTIONS(3827), - [anon_sym_external] = ACTIONS(3827), - [sym_property_modifier] = ACTIONS(3827), - [anon_sym_abstract] = ACTIONS(3827), - [anon_sym_final] = ACTIONS(3827), - [anon_sym_open] = ACTIONS(3827), - [anon_sym_vararg] = ACTIONS(3827), - [anon_sym_noinline] = ACTIONS(3827), - [anon_sym_crossinline] = ACTIONS(3827), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2735] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3867), - [anon_sym_var] = ACTIONS(3867), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3867), - [anon_sym_fun] = ACTIONS(3867), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3869), - [anon_sym_sealed] = ACTIONS(3869), - [anon_sym_annotation] = ACTIONS(3869), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3869), - [anon_sym_lateinit] = ACTIONS(3869), - [anon_sym_public] = ACTIONS(3869), - [anon_sym_private] = ACTIONS(3869), - [anon_sym_internal] = ACTIONS(3869), - [anon_sym_protected] = ACTIONS(3869), - [anon_sym_tailrec] = ACTIONS(3869), - [anon_sym_operator] = ACTIONS(3869), - [anon_sym_infix] = ACTIONS(3869), - [anon_sym_inline] = ACTIONS(3869), - [anon_sym_external] = ACTIONS(3869), - [sym_property_modifier] = ACTIONS(3869), - [anon_sym_abstract] = ACTIONS(3869), - [anon_sym_final] = ACTIONS(3869), - [anon_sym_open] = ACTIONS(3869), - [anon_sym_vararg] = ACTIONS(3869), - [anon_sym_noinline] = ACTIONS(3869), - [anon_sym_crossinline] = ACTIONS(3869), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [2763] = { + [sym_catch_block] = STATE(2809), + [sym_finally_block] = STATE(3190), + [aux_sym_try_expression_repeat1] = STATE(2809), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(6420), + [anon_sym_finally] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), }, - [2736] = { - [sym_property_delegate] = STATE(2818), - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4340), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2764] = { + [sym_property_delegate] = STATE(2961), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(6424), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331519,164 +341435,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2737] = { - [sym_property_delegate] = STATE(2821), - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4332), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [2765] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, - [2738] = { - [sym_property_delegate] = STATE(2800), - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6285), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2766] = { + [sym_property_delegate] = STATE(2912), + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331701,62 +341615,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2739] = { - [sym_getter] = STATE(5411), - [sym_setter] = STATE(5411), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), + [2767] = { + [sym_annotated_lambda] = STATE(3476), + [sym_lambda_literal] = STATE(3370), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [2768] = { + [sym_type_constraints] = STATE(2882), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6426), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [2769] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331781,73 +341882,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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, - [2740] = { - [sym_getter] = STATE(5432), - [sym_setter] = STATE(5432), - [sym_modifiers] = STATE(9051), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2770] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_get] = ACTIONS(5917), - [anon_sym_set] = ACTIONS(5919), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), + [anon_sym_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_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), [anon_sym_BANGin] = ACTIONS(1792), [anon_sym_is] = ACTIONS(1790), [anon_sym_BANGis] = ACTIONS(1792), [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), [anon_sym_PLUS_PLUS] = ACTIONS(1792), [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331872,84 +341971,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [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), + }, + [2771] = { + [sym_type_constraints] = STATE(2890), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6432), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [2772] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(4181), }, - [2741] = { - [sym_property_delegate] = STATE(2801), - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6105), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2773] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [2774] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [2775] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331974,71 +342416,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2742] = { - [sym_property_delegate] = STATE(2837), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6269), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4488), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2776] = { + [sym_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332063,72 +342505,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2743] = { - [sym_property_delegate] = STATE(2841), - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6253), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2777] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332153,72 +342594,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2744] = { - [sym_property_delegate] = STATE(2842), - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6277), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2778] = { + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332243,72 +342683,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2745] = { - [sym_property_delegate] = STATE(2869), - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6287), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2779] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332333,72 +342772,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2746] = { - [sym_property_delegate] = STATE(2862), - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4518), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2780] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332423,72 +342861,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2747] = { - [sym_property_delegate] = STATE(2849), - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(6261), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2781] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332513,72 +342950,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2748] = { - [sym_property_delegate] = STATE(2855), - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(6225), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2782] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332603,72 +343039,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2749] = { - [sym_property_delegate] = STATE(2858), - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2783] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_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), @@ -332693,162 +343128,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [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), - }, - [2750] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_interface] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3825), - [anon_sym_var] = ACTIONS(3825), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3825), - [anon_sym_fun] = ACTIONS(3825), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3825), - [anon_sym_sealed] = ACTIONS(3825), - [anon_sym_annotation] = ACTIONS(3825), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3825), - [anon_sym_lateinit] = ACTIONS(3825), - [anon_sym_public] = ACTIONS(3825), - [anon_sym_private] = ACTIONS(3825), - [anon_sym_internal] = ACTIONS(3825), - [anon_sym_protected] = ACTIONS(3825), - [anon_sym_tailrec] = ACTIONS(3825), - [anon_sym_operator] = ACTIONS(3825), - [anon_sym_infix] = ACTIONS(3825), - [anon_sym_inline] = ACTIONS(3825), - [anon_sym_external] = ACTIONS(3825), - [sym_property_modifier] = ACTIONS(3825), - [anon_sym_abstract] = ACTIONS(3825), - [anon_sym_final] = ACTIONS(3825), - [anon_sym_open] = ACTIONS(3825), - [anon_sym_vararg] = ACTIONS(3825), - [anon_sym_noinline] = ACTIONS(3825), - [anon_sym_crossinline] = ACTIONS(3825), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2751] = { - [sym_property_delegate] = STATE(2846), - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2784] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332873,162 +343217,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2752] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3867), - [anon_sym_var] = ACTIONS(3867), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3867), - [anon_sym_fun] = ACTIONS(3867), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3867), - [anon_sym_sealed] = ACTIONS(3867), - [anon_sym_annotation] = ACTIONS(3867), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3867), - [anon_sym_lateinit] = ACTIONS(3867), - [anon_sym_public] = ACTIONS(3867), - [anon_sym_private] = ACTIONS(3867), - [anon_sym_internal] = ACTIONS(3867), - [anon_sym_protected] = ACTIONS(3867), - [anon_sym_tailrec] = ACTIONS(3867), - [anon_sym_operator] = ACTIONS(3867), - [anon_sym_infix] = ACTIONS(3867), - [anon_sym_inline] = ACTIONS(3867), - [anon_sym_external] = ACTIONS(3867), - [sym_property_modifier] = ACTIONS(3867), - [anon_sym_abstract] = ACTIONS(3867), - [anon_sym_final] = ACTIONS(3867), - [anon_sym_open] = ACTIONS(3867), - [anon_sym_vararg] = ACTIONS(3867), - [anon_sym_noinline] = ACTIONS(3867), - [anon_sym_crossinline] = ACTIONS(3867), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2753] = { - [sym_property_delegate] = STATE(2826), - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6289), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4419), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2785] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333053,71 +343306,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2754] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2786] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333142,71 +343395,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2755] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2787] = { + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333231,71 +343484,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2756] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2788] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333320,160 +343573,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2757] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [2789] = { + [sym_type_constraints] = STATE(2908), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6434), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [2758] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2790] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333498,71 +343751,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2759] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2791] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2792] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333587,71 +343929,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2760] = { - [sym_getter] = STATE(4998), - [sym_setter] = STATE(4998), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2793] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333676,160 +344018,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - }, - [2761] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_RBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_RPAREN] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(3844), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_while] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(4000), - [anon_sym_STAR_EQ] = ACTIONS(4000), - [anon_sym_SLASH_EQ] = ACTIONS(4000), - [anon_sym_PERCENT_EQ] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2762] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2794] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333854,71 +344107,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2763] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2795] = { + [sym_annotated_lambda] = STATE(3438), + [sym_lambda_literal] = STATE(3370), + [sym_annotation] = STATE(8350), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8350), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + }, + [2796] = { + [aux_sym_user_type_repeat1] = STATE(2807), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6436), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [2797] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333943,71 +344374,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2764] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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), + [2798] = { + [sym_type_constraints] = STATE(2911), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6439), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2799] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334032,71 +344552,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2765] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2800] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334121,160 +344641,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2766] = { - [sym_annotated_lambda] = STATE(3350), - [sym_lambda_literal] = STATE(3405), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_this] = ACTIONS(4015), - [anon_sym_super] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_null] = ACTIONS(4015), - [anon_sym_if] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_try] = ACTIONS(4015), - [anon_sym_throw] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4017), - [anon_sym_continue_AT] = ACTIONS(4017), - [anon_sym_break_AT] = ACTIONS(4017), - [sym_real_literal] = ACTIONS(4017), - [sym_integer_literal] = ACTIONS(4015), - [sym_hex_literal] = ACTIONS(4017), - [sym_bin_literal] = ACTIONS(4017), - [anon_sym_true] = ACTIONS(4015), - [anon_sym_false] = ACTIONS(4015), - [anon_sym_SQUOTE] = ACTIONS(4017), - [sym__backtick_identifier] = ACTIONS(4017), - [sym__automatic_semicolon] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4017), - }, - [2767] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4155), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2801] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9415), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334299,71 +344730,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2768] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2802] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334388,160 +344819,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2769] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3842), - [anon_sym_fun] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_this] = ACTIONS(3842), - [anon_sym_super] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3842), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_if] = ACTIONS(3842), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_when] = ACTIONS(3842), - [anon_sym_try] = ACTIONS(3842), - [anon_sym_throw] = ACTIONS(3842), - [anon_sym_return] = ACTIONS(3842), - [anon_sym_continue] = ACTIONS(3842), - [anon_sym_break] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(4000), - [anon_sym_STAR_EQ] = ACTIONS(4000), - [anon_sym_SLASH_EQ] = ACTIONS(4000), - [anon_sym_PERCENT_EQ] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3842), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3844), - [anon_sym_continue_AT] = ACTIONS(3844), - [anon_sym_break_AT] = ACTIONS(3844), - [sym_real_literal] = ACTIONS(3844), - [sym_integer_literal] = ACTIONS(3842), - [sym_hex_literal] = ACTIONS(3844), - [sym_bin_literal] = ACTIONS(3844), - [anon_sym_true] = ACTIONS(3842), - [anon_sym_false] = ACTIONS(3842), - [anon_sym_SQUOTE] = ACTIONS(3844), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3844), + [2803] = { + [sym_type_arguments] = STATE(2821), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6441), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [sym_label] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), }, - [2770] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2804] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334566,160 +344997,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2771] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_RBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_RPAREN] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(3844), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_while] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(3857), - [anon_sym_DASH_EQ] = ACTIONS(3857), - [anon_sym_STAR_EQ] = ACTIONS(3857), - [anon_sym_SLASH_EQ] = ACTIONS(3857), - [anon_sym_PERCENT_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), + [2805] = { + [sym_type_constraints] = STATE(2920), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6443), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [2772] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4157), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2806] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334744,71 +345175,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2773] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4153), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2807] = { + [aux_sym_user_type_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6445), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [sym_label] = ACTIONS(4153), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), + }, + [2808] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334833,71 +345353,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2774] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2809] = { + [sym_catch_block] = STATE(2809), + [aux_sym_try_expression_repeat1] = STATE(2809), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_object] = ACTIONS(4130), + [anon_sym_fun] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_this] = ACTIONS(4130), + [anon_sym_super] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [sym_label] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_when] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(6448), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4132), + [anon_sym_continue_AT] = ACTIONS(4132), + [anon_sym_break_AT] = ACTIONS(4132), + [anon_sym_this_AT] = ACTIONS(4132), + [anon_sym_super_AT] = ACTIONS(4132), + [sym_real_literal] = ACTIONS(4132), + [sym_integer_literal] = ACTIONS(4130), + [sym_hex_literal] = ACTIONS(4132), + [sym_bin_literal] = ACTIONS(4132), + [anon_sym_true] = ACTIONS(4130), + [anon_sym_false] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4132), + [sym__backtick_identifier] = ACTIONS(4132), + [sym__automatic_semicolon] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4132), + }, + [2810] = { + [aux_sym_user_type_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6451), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [2811] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6454), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), + }, + [2812] = { + [aux_sym_nullable_type_repeat1] = STATE(2838), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [sym__quest] = ACTIONS(6456), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), + }, + [2813] = { + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), + }, + [2814] = { + [sym_type_constraints] = STATE(3158), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6458), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2815] = { + [sym_getter] = STATE(3464), + [sym_setter] = STATE(3464), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334922,160 +345972,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2775] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [2816] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [sym_label] = ACTIONS(4317), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [2817] = { + [sym_type_constraints] = STATE(3267), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6462), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [2776] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [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), + [2818] = { + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [2819] = { + [sym_type_constraints] = STATE(2920), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2820] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335100,249 +346412,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [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), - }, - [2777] = { - [sym_annotated_lambda] = STATE(3442), - [sym_lambda_literal] = STATE(3500), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4017), - [sym_label] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_while] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_suspend] = ACTIONS(4015), - [anon_sym_sealed] = ACTIONS(4015), - [anon_sym_annotation] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_override] = ACTIONS(4015), - [anon_sym_lateinit] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4015), - [anon_sym_private] = ACTIONS(4015), - [anon_sym_internal] = ACTIONS(4015), - [anon_sym_protected] = ACTIONS(4015), - [anon_sym_tailrec] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(4015), - [anon_sym_infix] = ACTIONS(4015), - [anon_sym_inline] = ACTIONS(4015), - [anon_sym_external] = ACTIONS(4015), - [sym_property_modifier] = ACTIONS(4015), - [anon_sym_abstract] = ACTIONS(4015), - [anon_sym_final] = ACTIONS(4015), - [anon_sym_open] = ACTIONS(4015), - [anon_sym_vararg] = ACTIONS(4015), - [anon_sym_noinline] = ACTIONS(4015), - [anon_sym_crossinline] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2778] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3842), - [anon_sym_fun] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_this] = ACTIONS(3842), - [anon_sym_super] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3842), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_if] = ACTIONS(3842), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_when] = ACTIONS(3842), - [anon_sym_try] = ACTIONS(3842), - [anon_sym_throw] = ACTIONS(3842), - [anon_sym_return] = ACTIONS(3842), - [anon_sym_continue] = ACTIONS(3842), - [anon_sym_break] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(3857), - [anon_sym_DASH_EQ] = ACTIONS(3857), - [anon_sym_STAR_EQ] = ACTIONS(3857), - [anon_sym_SLASH_EQ] = ACTIONS(3857), - [anon_sym_PERCENT_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3842), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3844), - [anon_sym_continue_AT] = ACTIONS(3844), - [anon_sym_break_AT] = ACTIONS(3844), - [sym_real_literal] = ACTIONS(3844), - [sym_integer_literal] = ACTIONS(3842), - [sym_hex_literal] = ACTIONS(3844), - [sym_bin_literal] = ACTIONS(3844), - [anon_sym_true] = ACTIONS(3842), - [anon_sym_false] = ACTIONS(3842), - [anon_sym_SQUOTE] = ACTIONS(3844), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3844), + [2821] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, - [2779] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2822] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335367,71 +346588,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2780] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2823] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335456,160 +346676,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2781] = { - [sym_annotated_lambda] = STATE(3372), - [sym_lambda_literal] = STATE(3405), - [sym_annotation] = STATE(8291), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8291), - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_fun] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_this] = ACTIONS(4011), - [anon_sym_super] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [sym_label] = ACTIONS(4011), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_when] = ACTIONS(4011), - [anon_sym_try] = ACTIONS(4011), - [anon_sym_throw] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4013), - [anon_sym_continue_AT] = ACTIONS(4013), - [anon_sym_break_AT] = ACTIONS(4013), - [sym_real_literal] = ACTIONS(4013), - [sym_integer_literal] = ACTIONS(4011), - [sym_hex_literal] = ACTIONS(4013), - [sym_bin_literal] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4011), - [anon_sym_false] = ACTIONS(4011), - [anon_sym_SQUOTE] = ACTIONS(4013), - [sym__backtick_identifier] = ACTIONS(4013), - [sym__automatic_semicolon] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4013), + [2824] = { + [sym_type_constraints] = STATE(2911), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [2782] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6135), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2825] = { + [sym_type_constraints] = STATE(2923), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2826] = { + [sym_type_arguments] = STATE(3030), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_EQ] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6464), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4189), + [sym__quest] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4189), + [sym_label] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), + }, + [2827] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335634,71 +347028,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2783] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2828] = { + [sym_getter] = STATE(3536), + [sym_setter] = STATE(3536), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335723,71 +347116,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2784] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9358), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6203), - [anon_sym_get] = ACTIONS(6195), - [anon_sym_set] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2829] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335812,48 +347204,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2785] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2830] = { + [sym_type_constraints] = STATE(2908), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2831] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), [anon_sym_QMARK_COLON] = ACTIONS(1792), [anon_sym_AMP_AMP] = ACTIONS(1792), @@ -335901,564 +347380,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2786] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2787] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2788] = { - [sym_annotated_lambda] = STATE(3477), - [sym_lambda_literal] = STATE(3500), - [sym_annotation] = STATE(8274), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8274), - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_RBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_RPAREN] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4013), - [sym_label] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_while] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_suspend] = ACTIONS(4011), - [anon_sym_sealed] = ACTIONS(4011), - [anon_sym_annotation] = ACTIONS(4011), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_override] = ACTIONS(4011), - [anon_sym_lateinit] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4011), - [anon_sym_private] = ACTIONS(4011), - [anon_sym_internal] = ACTIONS(4011), - [anon_sym_protected] = ACTIONS(4011), - [anon_sym_tailrec] = ACTIONS(4011), - [anon_sym_operator] = ACTIONS(4011), - [anon_sym_infix] = ACTIONS(4011), - [anon_sym_inline] = ACTIONS(4011), - [anon_sym_external] = ACTIONS(4011), - [sym_property_modifier] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4011), - [anon_sym_final] = ACTIONS(4011), - [anon_sym_open] = ACTIONS(4011), - [anon_sym_vararg] = ACTIONS(4011), - [anon_sym_noinline] = ACTIONS(4011), - [anon_sym_crossinline] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), + [2832] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, - [2789] = { - [sym_getter] = STATE(3853), - [sym_setter] = STATE(3853), - [sym_modifiers] = STATE(9344), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(6137), - [anon_sym_set] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), + [2833] = { + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6466), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, - [2790] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [2834] = { + [sym_catch_block] = STATE(2889), + [sym_finally_block] = STATE(3439), + [aux_sym_try_expression_repeat1] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_while] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(6468), + [anon_sym_finally] = ACTIONS(6470), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), }, - [2791] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [2835] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6472), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, - [2792] = { - [sym_getter] = STATE(4698), - [sym_setter] = STATE(4698), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2836] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -336468,9 +347766,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -336522,158 +347820,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2793] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [2837] = { + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6474), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), + }, + [2838] = { + [aux_sym_nullable_type_repeat1] = STATE(2862), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [sym__quest] = ACTIONS(6476), + [anon_sym_STAR] = ACTIONS(4247), + [sym_label] = ACTIONS(4247), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_when] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_throw] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4249), + [anon_sym_continue_AT] = ACTIONS(4249), + [anon_sym_break_AT] = ACTIONS(4249), + [anon_sym_this_AT] = ACTIONS(4249), + [anon_sym_super_AT] = ACTIONS(4249), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4247), + [anon_sym_false] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4249), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), + }, + [2839] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [2794] = { - [sym_getter] = STATE(4719), - [sym_setter] = STATE(4719), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(4215), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2840] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6478), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), + }, + [2841] = { + [sym_getter] = STATE(3492), + [sym_setter] = STATE(3492), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336698,246 +348260,1478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2795] = { - [sym_catch_block] = STATE(2844), - [sym_finally_block] = STATE(3463), - [aux_sym_try_expression_repeat1] = STATE(2844), - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [anon_sym_DASH_GT] = ACTIONS(4027), - [sym_label] = ACTIONS(4027), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_while] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_catch] = ACTIONS(6291), - [anon_sym_finally] = ACTIONS(6293), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), - [sym_multiline_comment] = ACTIONS(3), + [2842] = { + [aux_sym_nullable_type_repeat1] = STATE(2838), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [sym__quest] = ACTIONS(6456), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, - [2796] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2843] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6480), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [2844] = { + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [2797] = { - [sym_getter] = STATE(4713), - [sym_setter] = STATE(4713), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2845] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4181), + [sym__quest] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), + }, + [2846] = { + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6181), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2847] = { + [sym_type_constraints] = STATE(2927), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2848] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_null] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [2849] = { + [sym_type_constraints] = STATE(3231), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6482), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [2850] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_RBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_DASH_GT] = ACTIONS(4255), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [2851] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6484), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2852] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6486), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2853] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_EQ] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4009), + [sym__quest] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2854] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [2855] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6488), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [2856] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_interface] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4021), + [anon_sym_var] = ACTIONS(4021), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4021), + [anon_sym_fun] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4023), + [anon_sym_sealed] = ACTIONS(4023), + [anon_sym_annotation] = ACTIONS(4023), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4023), + [anon_sym_lateinit] = ACTIONS(4023), + [anon_sym_public] = ACTIONS(4023), + [anon_sym_private] = ACTIONS(4023), + [anon_sym_internal] = ACTIONS(4023), + [anon_sym_protected] = ACTIONS(4023), + [anon_sym_tailrec] = ACTIONS(4023), + [anon_sym_operator] = ACTIONS(4023), + [anon_sym_infix] = ACTIONS(4023), + [anon_sym_inline] = ACTIONS(4023), + [anon_sym_external] = ACTIONS(4023), + [sym_property_modifier] = ACTIONS(4023), + [anon_sym_abstract] = ACTIONS(4023), + [anon_sym_final] = ACTIONS(4023), + [anon_sym_open] = ACTIONS(4023), + [anon_sym_vararg] = ACTIONS(4023), + [anon_sym_noinline] = ACTIONS(4023), + [anon_sym_crossinline] = ACTIONS(4023), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2857] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_typealias] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4011), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_fun] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4013), + [anon_sym_sealed] = ACTIONS(4013), + [anon_sym_annotation] = ACTIONS(4013), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4013), + [anon_sym_lateinit] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_private] = ACTIONS(4013), + [anon_sym_internal] = ACTIONS(4013), + [anon_sym_protected] = ACTIONS(4013), + [anon_sym_tailrec] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_infix] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_external] = ACTIONS(4013), + [sym_property_modifier] = ACTIONS(4013), + [anon_sym_abstract] = ACTIONS(4013), + [anon_sym_final] = ACTIONS(4013), + [anon_sym_open] = ACTIONS(4013), + [anon_sym_vararg] = ACTIONS(4013), + [anon_sym_noinline] = ACTIONS(4013), + [anon_sym_crossinline] = ACTIONS(4013), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + }, + [2858] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336962,31 +349756,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2798] = { - [sym_getter] = STATE(3303), - [sym_setter] = STATE(3303), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2859] = { + [sym_getter] = STATE(3510), + [sym_setter] = STATE(3510), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -336997,8 +349791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1790), [anon_sym_DOT] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -337050,70 +349844,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2799] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2860] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6490), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2861] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6494), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [2862] = { + [aux_sym_nullable_type_repeat1] = STATE(2862), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [sym__quest] = ACTIONS(6498), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [2863] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337138,70 +350196,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2800] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(4354), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2864] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337226,70 +350284,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2801] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4232), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2865] = { + [sym_getter] = STATE(4728), + [sym_setter] = STATE(4728), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337314,70 +350372,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2802] = { - [sym_getter] = STATE(4673), - [sym_setter] = STATE(4673), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2866] = { + [sym_type_constraints] = STATE(3224), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6501), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2867] = { + [sym_type_constraints] = STATE(3194), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), + }, + [2868] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337402,70 +350636,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2803] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2869] = { + [sym_getter] = STATE(4827), + [sym_setter] = STATE(4827), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337490,70 +350724,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2804] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2870] = { + [sym_getter] = STATE(3477), + [sym_setter] = STATE(3477), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337578,70 +350812,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2805] = { - [sym_getter] = STATE(4779), - [sym_setter] = STATE(4779), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2871] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337666,70 +350900,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2806] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4332), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2872] = { + [sym_getter] = STATE(4842), + [sym_setter] = STATE(4842), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337754,70 +350988,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2807] = { - [sym_getter] = STATE(3433), - [sym_setter] = STATE(3433), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6147), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2873] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337842,158 +351076,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2808] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_interface] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(3825), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3825), - [anon_sym_var] = ACTIONS(3825), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3825), - [anon_sym_fun] = ACTIONS(3825), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3827), - [anon_sym_sealed] = ACTIONS(3827), - [anon_sym_annotation] = ACTIONS(3827), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3827), - [anon_sym_lateinit] = ACTIONS(3827), - [anon_sym_public] = ACTIONS(3827), - [anon_sym_private] = ACTIONS(3827), - [anon_sym_internal] = ACTIONS(3827), - [anon_sym_protected] = ACTIONS(3827), - [anon_sym_tailrec] = ACTIONS(3827), - [anon_sym_operator] = ACTIONS(3827), - [anon_sym_infix] = ACTIONS(3827), - [anon_sym_inline] = ACTIONS(3827), - [anon_sym_external] = ACTIONS(3827), - [sym_property_modifier] = ACTIONS(3827), - [anon_sym_abstract] = ACTIONS(3827), - [anon_sym_final] = ACTIONS(3827), - [anon_sym_open] = ACTIONS(3827), - [anon_sym_vararg] = ACTIONS(3827), - [anon_sym_noinline] = ACTIONS(3827), - [anon_sym_crossinline] = ACTIONS(3827), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2809] = { - [sym_getter] = STATE(3295), - [sym_setter] = STATE(3295), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2874] = { + [sym_getter] = STATE(4769), + [sym_setter] = STATE(4769), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338018,158 +351164,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - }, - [2810] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_typealias] = ACTIONS(3867), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3867), - [anon_sym_var] = ACTIONS(3867), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3867), - [anon_sym_fun] = ACTIONS(3867), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3869), - [anon_sym_sealed] = ACTIONS(3869), - [anon_sym_annotation] = ACTIONS(3869), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3869), - [anon_sym_lateinit] = ACTIONS(3869), - [anon_sym_public] = ACTIONS(3869), - [anon_sym_private] = ACTIONS(3869), - [anon_sym_internal] = ACTIONS(3869), - [anon_sym_protected] = ACTIONS(3869), - [anon_sym_tailrec] = ACTIONS(3869), - [anon_sym_operator] = ACTIONS(3869), - [anon_sym_infix] = ACTIONS(3869), - [anon_sym_inline] = ACTIONS(3869), - [anon_sym_external] = ACTIONS(3869), - [sym_property_modifier] = ACTIONS(3869), - [anon_sym_abstract] = ACTIONS(3869), - [anon_sym_final] = ACTIONS(3869), - [anon_sym_open] = ACTIONS(3869), - [anon_sym_vararg] = ACTIONS(3869), - [anon_sym_noinline] = ACTIONS(3869), - [anon_sym_crossinline] = ACTIONS(3869), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2811] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2875] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338194,70 +351252,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2812] = { - [sym_getter] = STATE(3210), - [sym_setter] = STATE(3210), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2876] = { + [sym_getter] = STATE(4734), + [sym_setter] = STATE(4734), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338282,70 +351340,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2813] = { - [sym_getter] = STATE(3361), - [sym_setter] = STATE(3361), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4340), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2877] = { + [sym_getter] = STATE(4867), + [sym_setter] = STATE(4867), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338370,70 +351428,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2814] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2878] = { + [sym_getter] = STATE(3458), + [sym_setter] = STATE(3458), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338458,70 +351516,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2815] = { - [sym_getter] = STATE(4801), - [sym_setter] = STATE(4801), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [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), + [2879] = { + [sym_getter] = STATE(4710), + [sym_setter] = STATE(4710), + [sym_modifiers] = STATE(9194), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6258), + [anon_sym_set] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338546,70 +351604,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2816] = { - [sym_getter] = STATE(4652), - [sym_setter] = STATE(4652), - [sym_modifiers] = STATE(9100), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(6113), - [anon_sym_set] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2880] = { + [sym_getter] = STATE(3498), + [sym_setter] = STATE(3498), + [sym_modifiers] = STATE(9117), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6266), + [anon_sym_set] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338634,70 +351692,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2817] = { - [sym_getter] = STATE(3313), - [sym_setter] = STATE(3313), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2881] = { + [aux_sym_user_type_repeat1] = STATE(2928), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6505), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [sym__quest] = ACTIONS(4195), + [anon_sym_STAR] = ACTIONS(4195), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [2882] = { + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [2883] = { + [sym_type_constraints] = STATE(3184), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6507), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [2884] = { + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [2885] = { + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [sym_label] = ACTIONS(4181), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_QMARK_COLON] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_as_QMARK] = ACTIONS(4181), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4181), + [sym_safe_nav] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + }, + [2886] = { + [sym_getter] = STATE(4034), + [sym_setter] = STATE(4034), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338722,70 +352213,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2818] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2887] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338810,158 +352300,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2819] = { - [sym_catch_block] = STATE(2851), - [sym_finally_block] = STATE(3351), - [aux_sym_try_expression_repeat1] = STATE(2851), - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_this] = ACTIONS(4025), - [anon_sym_super] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_null] = ACTIONS(4025), - [anon_sym_if] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(4025), - [anon_sym_catch] = ACTIONS(6295), - [anon_sym_finally] = ACTIONS(6297), - [anon_sym_throw] = ACTIONS(4025), - [anon_sym_return] = ACTIONS(4025), - [anon_sym_continue] = ACTIONS(4025), - [anon_sym_break] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4027), - [anon_sym_continue_AT] = ACTIONS(4027), - [anon_sym_break_AT] = ACTIONS(4027), - [sym_real_literal] = ACTIONS(4027), - [sym_integer_literal] = ACTIONS(4025), - [sym_hex_literal] = ACTIONS(4027), - [sym_bin_literal] = ACTIONS(4027), - [anon_sym_true] = ACTIONS(4025), - [anon_sym_false] = ACTIONS(4025), - [anon_sym_SQUOTE] = ACTIONS(4027), - [sym__backtick_identifier] = ACTIONS(4027), - [sym__automatic_semicolon] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4027), + [2888] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, - [2820] = { - [sym_getter] = STATE(3320), - [sym_setter] = STATE(3320), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2889] = { + [sym_catch_block] = STATE(2889), + [aux_sym_try_expression_repeat1] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_DASH_GT] = ACTIONS(4132), + [sym_label] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(6513), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_suspend] = ACTIONS(4130), + [anon_sym_sealed] = ACTIONS(4130), + [anon_sym_annotation] = ACTIONS(4130), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_override] = ACTIONS(4130), + [anon_sym_lateinit] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_internal] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_tailrec] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_infix] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym_external] = ACTIONS(4130), + [sym_property_modifier] = ACTIONS(4130), + [anon_sym_abstract] = ACTIONS(4130), + [anon_sym_final] = ACTIONS(4130), + [anon_sym_open] = ACTIONS(4130), + [anon_sym_vararg] = ACTIONS(4130), + [anon_sym_noinline] = ACTIONS(4130), + [anon_sym_crossinline] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), + }, + [2890] = { + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [2891] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338986,70 +352648,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2821] = { - [sym_getter] = STATE(3431), - [sym_setter] = STATE(3431), - [sym_modifiers] = STATE(9284), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_get] = ACTIONS(6107), - [anon_sym_set] = ACTIONS(6109), - [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), + [2892] = { + [sym_type_constraints] = STATE(3147), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [2893] = { + [sym_getter] = STATE(4018), + [sym_setter] = STATE(4018), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339074,68 +352822,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, - [2822] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2894] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6406), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339160,1113 +352909,765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2823] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), + [2895] = { + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2824] = { - [sym_getter] = STATE(3853), - [sym_setter] = STATE(3853), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - }, - [2825] = { - [sym_getter] = STATE(3823), - [sym_setter] = STATE(3823), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [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), - }, - [2826] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - }, - [2827] = { - [sym_type_arguments] = STATE(2909), - [sym__alpha_identifier] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_RBRACK] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_EQ] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_RPAREN] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(6299), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_get] = ACTIONS(4108), - [anon_sym_set] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [sym__quest] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_DASH_GT] = ACTIONS(4110), - [sym_label] = ACTIONS(4110), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_QMARK_COLON] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_else] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_PLUS_EQ] = ACTIONS(4110), - [anon_sym_DASH_EQ] = ACTIONS(4110), - [anon_sym_STAR_EQ] = ACTIONS(4110), - [anon_sym_SLASH_EQ] = ACTIONS(4110), - [anon_sym_PERCENT_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_BANGin] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4108), - [anon_sym_BANGis] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_as_QMARK] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_BANG_BANG] = ACTIONS(4110), - [anon_sym_suspend] = ACTIONS(4108), - [anon_sym_sealed] = ACTIONS(4108), - [anon_sym_annotation] = ACTIONS(4108), - [anon_sym_data] = ACTIONS(4108), - [anon_sym_inner] = ACTIONS(4108), - [anon_sym_value] = ACTIONS(4108), - [anon_sym_override] = ACTIONS(4108), - [anon_sym_lateinit] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_internal] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_tailrec] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_infix] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_external] = ACTIONS(4108), - [sym_property_modifier] = ACTIONS(4108), - [anon_sym_abstract] = ACTIONS(4108), - [anon_sym_final] = ACTIONS(4108), - [anon_sym_open] = ACTIONS(4108), - [anon_sym_vararg] = ACTIONS(4108), - [anon_sym_noinline] = ACTIONS(4108), - [anon_sym_crossinline] = ACTIONS(4108), - [anon_sym_expect] = ACTIONS(4108), - [anon_sym_actual] = ACTIONS(4108), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4110), - [sym_safe_nav] = ACTIONS(4110), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, - [2828] = { - [aux_sym_user_type_repeat1] = STATE(2856), - [sym__alpha_identifier] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_as] = ACTIONS(4075), - [anon_sym_EQ] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_COMMA] = ACTIONS(4077), - [anon_sym_by] = ACTIONS(4075), - [anon_sym_LT] = ACTIONS(4075), - [anon_sym_GT] = ACTIONS(4075), - [anon_sym_where] = ACTIONS(4075), - [anon_sym_object] = ACTIONS(4075), - [anon_sym_fun] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(6301), - [anon_sym_SEMI] = ACTIONS(4077), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_this] = ACTIONS(4075), - [anon_sym_super] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [sym__quest] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4075), - [sym_label] = ACTIONS(4075), - [anon_sym_in] = ACTIONS(4075), - [anon_sym_DOT_DOT] = ACTIONS(4077), - [anon_sym_QMARK_COLON] = ACTIONS(4077), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_PIPE_PIPE] = ACTIONS(4077), - [anon_sym_null] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_else] = ACTIONS(4075), - [anon_sym_when] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_throw] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_PLUS_EQ] = ACTIONS(4077), - [anon_sym_DASH_EQ] = ACTIONS(4077), - [anon_sym_STAR_EQ] = ACTIONS(4077), - [anon_sym_SLASH_EQ] = ACTIONS(4077), - [anon_sym_PERCENT_EQ] = ACTIONS(4077), - [anon_sym_BANG_EQ] = ACTIONS(4075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4077), - [anon_sym_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4077), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4077), - [anon_sym_is] = ACTIONS(4075), - [anon_sym_BANGis] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_SLASH] = ACTIONS(4075), - [anon_sym_PERCENT] = ACTIONS(4075), - [anon_sym_as_QMARK] = ACTIONS(4077), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_BANG] = ACTIONS(4075), - [anon_sym_BANG_BANG] = ACTIONS(4077), - [anon_sym_data] = ACTIONS(4075), - [anon_sym_inner] = ACTIONS(4075), - [anon_sym_value] = ACTIONS(4075), - [anon_sym_expect] = ACTIONS(4075), - [anon_sym_actual] = ACTIONS(4075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4077), - [anon_sym_continue_AT] = ACTIONS(4077), - [anon_sym_break_AT] = ACTIONS(4077), - [sym_real_literal] = ACTIONS(4077), - [sym_integer_literal] = ACTIONS(4075), - [sym_hex_literal] = ACTIONS(4077), - [sym_bin_literal] = ACTIONS(4077), - [anon_sym_true] = ACTIONS(4075), - [anon_sym_false] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [sym__backtick_identifier] = ACTIONS(4077), - [sym__automatic_semicolon] = ACTIONS(4077), - [sym_safe_nav] = ACTIONS(4077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4077), + [2896] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6518), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [2829] = { - [sym_getter] = STATE(3751), - [sym_setter] = STATE(3751), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [2897] = { + [sym_type_constraints] = STATE(3136), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6520), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [2830] = { - [sym_type_constraints] = STATE(3003), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6304), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [2831] = { - [sym_type_constraints] = STATE(2997), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6310), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [2898] = { + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, - [2832] = { - [aux_sym_user_type_repeat1] = STATE(2832), - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_RBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_RPAREN] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(6312), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [anon_sym_DASH_GT] = ACTIONS(4103), - [sym_label] = ACTIONS(4103), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_while] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), + [2899] = { + [sym_type_arguments] = STATE(3025), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_RBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_RPAREN] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_DASH_GT] = ACTIONS(4189), + [sym_label] = ACTIONS(4189), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), [sym_multiline_comment] = ACTIONS(3), }, - [2833] = { - [sym_type_constraints] = STATE(2993), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6315), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [2900] = { + [sym_value_arguments] = STATE(3237), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, - [2834] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_by] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3818), - [sym__quest] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [2901] = { + [sym_type_constraints] = STATE(3224), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, - [2835] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6277), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2902] = { + [sym_class_body] = STATE(3247), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [2903] = { + [sym_getter] = STATE(4033), + [sym_setter] = STATE(4033), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340291,417 +353692,765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2836] = { - [sym_type_constraints] = STATE(2991), - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [2904] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, - [2837] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [2905] = { + [aux_sym_user_type_repeat1] = STATE(2905), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6526), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4168), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), [sym_multiline_comment] = ACTIONS(3), }, - [2838] = { - [sym_getter] = STATE(3872), - [sym_setter] = STATE(3872), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [2906] = { + [sym_type_constraints] = STATE(3119), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6529), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, - [2839] = { - [aux_sym_user_type_repeat1] = STATE(2832), - [sym__alpha_identifier] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_RBRACK] = ACTIONS(4077), - [anon_sym_as] = ACTIONS(4075), - [anon_sym_EQ] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_COMMA] = ACTIONS(4077), - [anon_sym_RPAREN] = ACTIONS(4077), - [anon_sym_by] = ACTIONS(4075), - [anon_sym_LT] = ACTIONS(4075), - [anon_sym_GT] = ACTIONS(4075), - [anon_sym_where] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_SEMI] = ACTIONS(4077), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [sym__quest] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4075), - [anon_sym_DASH_GT] = ACTIONS(4077), - [sym_label] = ACTIONS(4077), - [anon_sym_in] = ACTIONS(4075), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_DOT_DOT] = ACTIONS(4077), - [anon_sym_QMARK_COLON] = ACTIONS(4077), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_PIPE_PIPE] = ACTIONS(4077), - [anon_sym_else] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_PLUS_EQ] = ACTIONS(4077), - [anon_sym_DASH_EQ] = ACTIONS(4077), - [anon_sym_STAR_EQ] = ACTIONS(4077), - [anon_sym_SLASH_EQ] = ACTIONS(4077), - [anon_sym_PERCENT_EQ] = ACTIONS(4077), - [anon_sym_BANG_EQ] = ACTIONS(4075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4077), - [anon_sym_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4077), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4077), - [anon_sym_is] = ACTIONS(4075), - [anon_sym_BANGis] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_SLASH] = ACTIONS(4075), - [anon_sym_PERCENT] = ACTIONS(4075), - [anon_sym_as_QMARK] = ACTIONS(4077), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_BANG_BANG] = ACTIONS(4077), - [anon_sym_suspend] = ACTIONS(4075), - [anon_sym_sealed] = ACTIONS(4075), - [anon_sym_annotation] = ACTIONS(4075), - [anon_sym_data] = ACTIONS(4075), - [anon_sym_inner] = ACTIONS(4075), - [anon_sym_value] = ACTIONS(4075), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_lateinit] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_internal] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_tailrec] = ACTIONS(4075), - [anon_sym_operator] = ACTIONS(4075), - [anon_sym_infix] = ACTIONS(4075), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_external] = ACTIONS(4075), - [sym_property_modifier] = ACTIONS(4075), - [anon_sym_abstract] = ACTIONS(4075), - [anon_sym_final] = ACTIONS(4075), - [anon_sym_open] = ACTIONS(4075), - [anon_sym_vararg] = ACTIONS(4075), - [anon_sym_noinline] = ACTIONS(4075), - [anon_sym_crossinline] = ACTIONS(4075), - [anon_sym_expect] = ACTIONS(4075), - [anon_sym_actual] = ACTIONS(4075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4077), - [sym_safe_nav] = ACTIONS(4077), + [2907] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6531), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2908] = { + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [2909] = { + [sym_type_constraints] = STATE(3107), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6533), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_RBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, - [2840] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2910] = { + [aux_sym_user_type_repeat1] = STATE(2905), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_RBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_RPAREN] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6535), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [anon_sym_DASH_GT] = ACTIONS(4155), + [sym_label] = ACTIONS(4155), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + }, + [2911] = { + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2912] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340726,69 +354475,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2841] = { - [sym_getter] = STATE(3900), - [sym_setter] = STATE(3900), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2913] = { + [sym_getter] = STATE(3978), + [sym_setter] = STATE(3978), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340813,133 +354562,1083 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2842] = { - [sym_getter] = STATE(5078), - [sym_setter] = STATE(5078), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [2914] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [aux_sym_unsigned_literal_token1] = ACTIONS(6538), + [anon_sym_L] = ACTIONS(6540), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), + }, + [2915] = { + [aux_sym_user_type_repeat1] = STATE(2807), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6542), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [2916] = { + [sym_type_constraints] = STATE(3267), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [2843] = { - [sym_type_constraints] = STATE(2990), - [sym_function_body] = STATE(3208), - [sym__block] = STATE(3353), + [2917] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2918] = { + [aux_sym_user_type_repeat1] = STATE(2918), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4168), + [sym__quest] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [2919] = { + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6548), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), + }, + [2920] = { + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2921] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), + }, + [2922] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [2923] = { + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2924] = { + [sym_class_body] = STATE(3241), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), + }, + [2925] = { + [sym_type_constraints] = STATE(3001), + [sym_enum_class_body] = STATE(3239), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), + }, + [2926] = { + [sym_type_arguments] = STATE(6538), [sym__alpha_identifier] = ACTIONS(4122), [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6550), [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), + [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_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(3128), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(6552), + [anon_sym_where] = ACTIONS(4122), [anon_sym_object] = ACTIONS(4122), [anon_sym_fun] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4128), [anon_sym_SEMI] = ACTIONS(4124), [anon_sym_get] = ACTIONS(4122), [anon_sym_set] = ACTIONS(4122), [anon_sym_this] = ACTIONS(4122), [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), + [sym__quest] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4124), [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), @@ -340950,38 +355649,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -340991,239 +355698,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2844] = { - [sym_catch_block] = STATE(2844), - [aux_sym_try_expression_repeat1] = STATE(2844), - [sym__alpha_identifier] = ACTIONS(4094), - [anon_sym_AT] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_RBRACK] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4094), - [anon_sym_EQ] = ACTIONS(4094), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_where] = ACTIONS(4094), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(4094), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4094), - [anon_sym_DASH_GT] = ACTIONS(4096), - [sym_label] = ACTIONS(4096), - [anon_sym_in] = ACTIONS(4094), - [anon_sym_while] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_QMARK_COLON] = ACTIONS(4096), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_else] = ACTIONS(4094), - [anon_sym_catch] = ACTIONS(6324), - [anon_sym_finally] = ACTIONS(4094), - [anon_sym_COLON_COLON] = ACTIONS(4096), - [anon_sym_PLUS_EQ] = ACTIONS(4096), - [anon_sym_DASH_EQ] = ACTIONS(4096), - [anon_sym_STAR_EQ] = ACTIONS(4096), - [anon_sym_SLASH_EQ] = ACTIONS(4096), - [anon_sym_PERCENT_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4094), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4094), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_BANGin] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4094), - [anon_sym_BANGis] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4094), - [anon_sym_as_QMARK] = ACTIONS(4096), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_BANG_BANG] = ACTIONS(4096), - [anon_sym_suspend] = ACTIONS(4094), - [anon_sym_sealed] = ACTIONS(4094), - [anon_sym_annotation] = ACTIONS(4094), - [anon_sym_data] = ACTIONS(4094), - [anon_sym_inner] = ACTIONS(4094), - [anon_sym_value] = ACTIONS(4094), - [anon_sym_override] = ACTIONS(4094), - [anon_sym_lateinit] = ACTIONS(4094), - [anon_sym_public] = ACTIONS(4094), - [anon_sym_private] = ACTIONS(4094), - [anon_sym_internal] = ACTIONS(4094), - [anon_sym_protected] = ACTIONS(4094), - [anon_sym_tailrec] = ACTIONS(4094), - [anon_sym_operator] = ACTIONS(4094), - [anon_sym_infix] = ACTIONS(4094), - [anon_sym_inline] = ACTIONS(4094), - [anon_sym_external] = ACTIONS(4094), - [sym_property_modifier] = ACTIONS(4094), - [anon_sym_abstract] = ACTIONS(4094), - [anon_sym_final] = ACTIONS(4094), - [anon_sym_open] = ACTIONS(4094), - [anon_sym_vararg] = ACTIONS(4094), - [anon_sym_noinline] = ACTIONS(4094), - [anon_sym_crossinline] = ACTIONS(4094), - [anon_sym_expect] = ACTIONS(4094), - [anon_sym_actual] = ACTIONS(4094), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4096), - [sym_safe_nav] = ACTIONS(4096), - [sym_multiline_comment] = ACTIONS(3), + [2927] = { + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, - [2845] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [2928] = { + [aux_sym_user_type_repeat1] = STATE(2918), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6554), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4155), + [sym__quest] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(4155), + [sym_label] = ACTIONS(4153), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), }, - [2846] = { - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(4488), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [2929] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341248,69 +355954,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2847] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2930] = { + [sym_getter] = STATE(3902), + [sym_setter] = STATE(3902), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341335,156 +356041,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2848] = { - [aux_sym_user_type_repeat1] = STATE(2839), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_RBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_RPAREN] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6327), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [sym__quest] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_DASH_GT] = ACTIONS(4142), - [sym_label] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), + [2931] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_RBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6556), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_DASH_GT] = ACTIONS(4195), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), [sym_multiline_comment] = ACTIONS(3), }, - [2849] = { - [sym_getter] = STATE(5056), - [sym_setter] = STATE(5056), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2932] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341509,243 +356215,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2850] = { - [sym_type_arguments] = STATE(2930), - [sym__alpha_identifier] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_EQ] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(6330), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_object] = ACTIONS(4108), - [anon_sym_fun] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_get] = ACTIONS(4108), - [anon_sym_set] = ACTIONS(4108), - [anon_sym_this] = ACTIONS(4108), - [anon_sym_super] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [sym__quest] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [sym_label] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_QMARK_COLON] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_null] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_else] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_PLUS_EQ] = ACTIONS(4110), - [anon_sym_DASH_EQ] = ACTIONS(4110), - [anon_sym_STAR_EQ] = ACTIONS(4110), - [anon_sym_SLASH_EQ] = ACTIONS(4110), - [anon_sym_PERCENT_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_BANGin] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4108), - [anon_sym_BANGis] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_as_QMARK] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_BANG_BANG] = ACTIONS(4110), - [anon_sym_data] = ACTIONS(4108), - [anon_sym_inner] = ACTIONS(4108), - [anon_sym_value] = ACTIONS(4108), - [anon_sym_expect] = ACTIONS(4108), - [anon_sym_actual] = ACTIONS(4108), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4110), - [anon_sym_continue_AT] = ACTIONS(4110), - [anon_sym_break_AT] = ACTIONS(4110), - [sym_real_literal] = ACTIONS(4110), - [sym_integer_literal] = ACTIONS(4108), - [sym_hex_literal] = ACTIONS(4110), - [sym_bin_literal] = ACTIONS(4110), - [anon_sym_true] = ACTIONS(4108), - [anon_sym_false] = ACTIONS(4108), - [anon_sym_SQUOTE] = ACTIONS(4110), - [sym__backtick_identifier] = ACTIONS(4110), - [sym__automatic_semicolon] = ACTIONS(4110), - [sym_safe_nav] = ACTIONS(4110), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4110), + [2933] = { + [sym_class_body] = STATE(3239), + [sym_type_constraints] = STATE(2997), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, - [2851] = { - [sym_catch_block] = STATE(2851), - [aux_sym_try_expression_repeat1] = STATE(2851), - [sym__alpha_identifier] = ACTIONS(4094), - [anon_sym_AT] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4094), - [anon_sym_EQ] = ACTIONS(4094), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_where] = ACTIONS(4094), - [anon_sym_object] = ACTIONS(4094), - [anon_sym_fun] = ACTIONS(4094), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(4094), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_this] = ACTIONS(4094), - [anon_sym_super] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4094), - [sym_label] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_QMARK_COLON] = ACTIONS(4096), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_null] = ACTIONS(4094), - [anon_sym_if] = ACTIONS(4094), - [anon_sym_else] = ACTIONS(4094), - [anon_sym_when] = ACTIONS(4094), - [anon_sym_try] = ACTIONS(4094), - [anon_sym_catch] = ACTIONS(6332), - [anon_sym_finally] = ACTIONS(4094), - [anon_sym_throw] = ACTIONS(4094), - [anon_sym_return] = ACTIONS(4094), - [anon_sym_continue] = ACTIONS(4094), - [anon_sym_break] = ACTIONS(4094), - [anon_sym_COLON_COLON] = ACTIONS(4096), - [anon_sym_PLUS_EQ] = ACTIONS(4096), - [anon_sym_DASH_EQ] = ACTIONS(4096), - [anon_sym_STAR_EQ] = ACTIONS(4096), - [anon_sym_SLASH_EQ] = ACTIONS(4096), - [anon_sym_PERCENT_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4094), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4094), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_BANGin] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4094), - [anon_sym_BANGis] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4094), - [anon_sym_as_QMARK] = ACTIONS(4096), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_BANG_BANG] = ACTIONS(4096), - [anon_sym_data] = ACTIONS(4094), - [anon_sym_inner] = ACTIONS(4094), - [anon_sym_value] = ACTIONS(4094), - [anon_sym_expect] = ACTIONS(4094), - [anon_sym_actual] = ACTIONS(4094), + [2934] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_object] = ACTIONS(4345), + [anon_sym_fun] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_this] = ACTIONS(4345), + [anon_sym_super] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_if] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_when] = ACTIONS(4345), + [anon_sym_try] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_throw] = ACTIONS(4345), + [anon_sym_return] = ACTIONS(4345), + [anon_sym_continue] = ACTIONS(4345), + [anon_sym_break] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4347), + [anon_sym_continue_AT] = ACTIONS(4347), + [anon_sym_break_AT] = ACTIONS(4347), + [anon_sym_this_AT] = ACTIONS(4347), + [anon_sym_super_AT] = ACTIONS(4347), + [sym_real_literal] = ACTIONS(4347), + [sym_integer_literal] = ACTIONS(4345), + [sym_hex_literal] = ACTIONS(4347), + [sym_bin_literal] = ACTIONS(4347), + [anon_sym_true] = ACTIONS(4345), + [anon_sym_false] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4347), + [sym__automatic_semicolon] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4347), + }, + [2935] = { + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_object] = ACTIONS(4485), + [anon_sym_fun] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_this] = ACTIONS(4485), + [anon_sym_super] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [sym_label] = ACTIONS(4485), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_null] = ACTIONS(4485), + [anon_sym_if] = ACTIONS(4485), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_when] = ACTIONS(4485), + [anon_sym_try] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_throw] = ACTIONS(4485), + [anon_sym_return] = ACTIONS(4485), + [anon_sym_continue] = ACTIONS(4485), + [anon_sym_break] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4485), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4487), + [anon_sym_continue_AT] = ACTIONS(4487), + [anon_sym_break_AT] = ACTIONS(4487), + [anon_sym_this_AT] = ACTIONS(4487), + [anon_sym_super_AT] = ACTIONS(4487), + [sym_real_literal] = ACTIONS(4487), + [sym_integer_literal] = ACTIONS(4485), + [sym_hex_literal] = ACTIONS(4487), + [sym_bin_literal] = ACTIONS(4487), + [anon_sym_true] = ACTIONS(4485), + [anon_sym_false] = ACTIONS(4485), + [anon_sym_SQUOTE] = ACTIONS(4487), + [sym__backtick_identifier] = ACTIONS(4487), + [sym__automatic_semicolon] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4487), + }, + [2936] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [2937] = { + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), + }, + [2938] = { + [sym_type_arguments] = STATE(6538), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_RBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_RPAREN] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4124), + [sym_label] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4096), - [anon_sym_continue_AT] = ACTIONS(4096), - [anon_sym_break_AT] = ACTIONS(4096), - [sym_real_literal] = ACTIONS(4096), - [sym_integer_literal] = ACTIONS(4094), - [sym_hex_literal] = ACTIONS(4096), - [sym_bin_literal] = ACTIONS(4096), - [anon_sym_true] = ACTIONS(4094), - [anon_sym_false] = ACTIONS(4094), - [anon_sym_SQUOTE] = ACTIONS(4096), - [sym__backtick_identifier] = ACTIONS(4096), - [sym__automatic_semicolon] = ACTIONS(4096), - [sym_safe_nav] = ACTIONS(4096), + [sym__backtick_identifier] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4096), }, - [2852] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2939] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(6412), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341770,243 +356824,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym_safe_nav] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, - [2853] = { - [sym_type_constraints] = STATE(2978), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6335), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), + [2940] = { + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6563), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, - [2854] = { - [aux_sym_user_type_repeat1] = STATE(2828), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6341), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [sym__quest] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [sym_label] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), + [2941] = { + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, - [2855] = { - [sym_getter] = STATE(5028), - [sym_setter] = STATE(5028), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(4518), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2942] = { + [sym_type_constraints] = STATE(2995), + [sym_enum_class_body] = STATE(3167), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [2943] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342031,243 +357172,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [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), - }, - [2856] = { - [aux_sym_user_type_repeat1] = STATE(2856), - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(6344), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), - }, - [2857] = { - [sym_type_constraints] = STATE(2977), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2858] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4419), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2944] = { + [sym_getter] = STATE(3849), + [sym_setter] = STATE(3849), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342292,69 +357259,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2859] = { - [sym_getter] = STATE(3809), - [sym_setter] = STATE(3809), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [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), + [2945] = { + [sym_type_constraints] = STATE(3158), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2946] = { + [sym_class_body] = STATE(3167), + [sym_type_constraints] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [2947] = { + [sym_type_constraints] = STATE(2989), + [sym_enum_class_body] = STATE(3150), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [2948] = { + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5018), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342379,69 +357607,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, - [2860] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2949] = { + [sym_type_constraints] = STATE(3124), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2950] = { + [sym_type_constraints] = STATE(2985), + [sym_enum_class_body] = STATE(3118), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [2951] = { + [sym_type_constraints] = STATE(3112), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2952] = { + [sym_getter] = STATE(5152), + [sym_setter] = STATE(5152), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342466,69 +357955,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2861] = { - [sym_getter] = STATE(3931), - [sym_setter] = STATE(3931), - [sym_modifiers] = STATE(9272), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6247), - [anon_sym_set] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2953] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342553,69 +358042,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2862] = { - [sym_getter] = STATE(5005), - [sym_setter] = STATE(5005), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2954] = { + [sym_getter] = STATE(5244), + [sym_setter] = STATE(5244), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342640,156 +358129,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2863] = { - [sym_type_constraints] = STATE(2975), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [2955] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, - [2864] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2956] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [2957] = { + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [2958] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342812,419 +358475,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(85), [anon_sym_open] = ACTIONS(85), [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - }, - [2865] = { - [sym_type_constraints] = STATE(2965), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6351), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_RBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [anon_sym_DASH_GT] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - }, - [2866] = { - [sym_type_arguments] = STATE(6509), - [sym__alpha_identifier] = ACTIONS(4147), - [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_RBRACK] = ACTIONS(4149), - [anon_sym_as] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4149), - [anon_sym_RBRACE] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_COMMA] = ACTIONS(4149), - [anon_sym_RPAREN] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4147), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_where] = ACTIONS(4147), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4149), - [anon_sym_get] = ACTIONS(4147), - [anon_sym_set] = ACTIONS(4147), - [sym__quest] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_DASH_GT] = ACTIONS(4149), - [sym_label] = ACTIONS(4149), - [anon_sym_in] = ACTIONS(4147), - [anon_sym_while] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(4149), - [anon_sym_QMARK_COLON] = ACTIONS(4149), - [anon_sym_AMP_AMP] = ACTIONS(4149), - [anon_sym_PIPE_PIPE] = ACTIONS(4149), - [anon_sym_else] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4149), - [anon_sym_PLUS_EQ] = ACTIONS(4149), - [anon_sym_DASH_EQ] = ACTIONS(4149), - [anon_sym_STAR_EQ] = ACTIONS(4149), - [anon_sym_SLASH_EQ] = ACTIONS(4149), - [anon_sym_PERCENT_EQ] = ACTIONS(4149), - [anon_sym_BANG_EQ] = ACTIONS(4147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4147), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), - [anon_sym_LT_EQ] = ACTIONS(4149), - [anon_sym_GT_EQ] = ACTIONS(4149), - [anon_sym_BANGin] = ACTIONS(4149), - [anon_sym_is] = ACTIONS(4147), - [anon_sym_BANGis] = ACTIONS(4149), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_as_QMARK] = ACTIONS(4149), - [anon_sym_PLUS_PLUS] = ACTIONS(4149), - [anon_sym_DASH_DASH] = ACTIONS(4149), - [anon_sym_BANG_BANG] = ACTIONS(4149), - [anon_sym_suspend] = ACTIONS(4147), - [anon_sym_sealed] = ACTIONS(4147), - [anon_sym_annotation] = ACTIONS(4147), - [anon_sym_data] = ACTIONS(4147), - [anon_sym_inner] = ACTIONS(4147), - [anon_sym_value] = ACTIONS(4147), - [anon_sym_override] = ACTIONS(4147), - [anon_sym_lateinit] = ACTIONS(4147), - [anon_sym_public] = ACTIONS(4147), - [anon_sym_private] = ACTIONS(4147), - [anon_sym_internal] = ACTIONS(4147), - [anon_sym_protected] = ACTIONS(4147), - [anon_sym_tailrec] = ACTIONS(4147), - [anon_sym_operator] = ACTIONS(4147), - [anon_sym_infix] = ACTIONS(4147), - [anon_sym_inline] = ACTIONS(4147), - [anon_sym_external] = ACTIONS(4147), - [sym_property_modifier] = ACTIONS(4147), - [anon_sym_abstract] = ACTIONS(4147), - [anon_sym_final] = ACTIONS(4147), - [anon_sym_open] = ACTIONS(4147), - [anon_sym_vararg] = ACTIONS(4147), - [anon_sym_noinline] = ACTIONS(4147), - [anon_sym_crossinline] = ACTIONS(4147), - [anon_sym_expect] = ACTIONS(4147), - [anon_sym_actual] = ACTIONS(4147), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4149), - [sym_safe_nav] = ACTIONS(4149), - [sym_multiline_comment] = ACTIONS(3), - }, - [2867] = { - [sym_type_constraints] = STATE(2964), - [sym_function_body] = STATE(3509), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6355), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_RBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [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(5194), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4124), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2868] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_by] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3818), - [sym__quest] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - }, - [2869] = { - [sym_getter] = STATE(4990), - [sym_setter] = STATE(4990), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(4486), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), + [2959] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343249,69 +358564,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, - [2870] = { - [sym_getter] = STATE(4994), - [sym_setter] = STATE(4994), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [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), + [2960] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343336,69 +358651,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2871] = { - [sym_getter] = STATE(5114), - [sym_setter] = STATE(5114), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2961] = { + [sym_getter] = STATE(5198), + [sym_setter] = STATE(5198), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343423,69 +358738,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(3244), - [anon_sym_actual] = ACTIONS(3244), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2872] = { - [sym_getter] = STATE(4998), - [sym_setter] = STATE(4998), - [sym_modifiers] = STATE(9128), - [sym__modifier] = STATE(5553), - [sym_class_modifier] = STATE(5553), - [sym_member_modifier] = STATE(5553), - [sym_visibility_modifier] = STATE(5553), - [sym_function_modifier] = STATE(5553), - [sym_inheritance_modifier] = STATE(5553), - [sym_parameter_modifier] = STATE(5553), - [sym_platform_modifier] = STATE(5553), - [sym_annotation] = STATE(5553), - [sym__single_annotation] = STATE(5749), - [sym__multi_annotation] = STATE(5749), - [aux_sym_modifiers_repeat1] = STATE(5553), - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(6229), - [anon_sym_set] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), + [2962] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6428), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [2963] = { + [sym_getter] = STATE(3851), + [sym_setter] = STATE(3851), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343510,12763 +358912,7434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3244), - [anon_sym_actual] = ACTIONS(3244), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - }, - [2873] = { - [sym_type_constraints] = STATE(3209), - [sym_function_body] = STATE(3208), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_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), - [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), - }, - [2874] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_RBRACK] = ACTIONS(4236), - [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_DOT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4236), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(6361), - [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(4236), - [sym_safe_nav] = ACTIONS(4236), - [sym_multiline_comment] = ACTIONS(3), - }, - [2875] = { - [sym_type_constraints] = STATE(2979), - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_RBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - }, - [2876] = { - [aux_sym_nullable_type_repeat1] = STATE(2891), - [sym__alpha_identifier] = ACTIONS(4165), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_RBRACK] = ACTIONS(4167), - [anon_sym_as] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [anon_sym_RPAREN] = ACTIONS(4167), - [anon_sym_by] = ACTIONS(4165), - [anon_sym_LT] = ACTIONS(4165), - [anon_sym_GT] = ACTIONS(4165), - [anon_sym_where] = ACTIONS(4165), - [anon_sym_DOT] = ACTIONS(4165), - [anon_sym_SEMI] = ACTIONS(4167), - [anon_sym_get] = ACTIONS(4165), - [anon_sym_set] = ACTIONS(4165), - [sym__quest] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(4165), - [anon_sym_DASH_GT] = ACTIONS(4167), - [sym_label] = ACTIONS(4167), - [anon_sym_in] = ACTIONS(4165), - [anon_sym_while] = ACTIONS(4165), - [anon_sym_DOT_DOT] = ACTIONS(4167), - [anon_sym_QMARK_COLON] = ACTIONS(4167), - [anon_sym_AMP_AMP] = ACTIONS(4167), - [anon_sym_PIPE_PIPE] = ACTIONS(4167), - [anon_sym_else] = ACTIONS(4165), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_PLUS_EQ] = ACTIONS(4167), - [anon_sym_DASH_EQ] = ACTIONS(4167), - [anon_sym_STAR_EQ] = ACTIONS(4167), - [anon_sym_SLASH_EQ] = ACTIONS(4167), - [anon_sym_PERCENT_EQ] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), - [anon_sym_EQ_EQ] = ACTIONS(4165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), - [anon_sym_LT_EQ] = ACTIONS(4167), - [anon_sym_GT_EQ] = ACTIONS(4167), - [anon_sym_BANGin] = ACTIONS(4167), - [anon_sym_is] = ACTIONS(4165), - [anon_sym_BANGis] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4165), - [anon_sym_DASH] = ACTIONS(4165), - [anon_sym_SLASH] = ACTIONS(4165), - [anon_sym_PERCENT] = ACTIONS(4165), - [anon_sym_as_QMARK] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_BANG_BANG] = ACTIONS(4167), - [anon_sym_suspend] = ACTIONS(4165), - [anon_sym_sealed] = ACTIONS(4165), - [anon_sym_annotation] = ACTIONS(4165), - [anon_sym_data] = ACTIONS(4165), - [anon_sym_inner] = ACTIONS(4165), - [anon_sym_value] = ACTIONS(4165), - [anon_sym_override] = ACTIONS(4165), - [anon_sym_lateinit] = ACTIONS(4165), - [anon_sym_public] = ACTIONS(4165), - [anon_sym_private] = ACTIONS(4165), - [anon_sym_internal] = ACTIONS(4165), - [anon_sym_protected] = ACTIONS(4165), - [anon_sym_tailrec] = ACTIONS(4165), - [anon_sym_operator] = ACTIONS(4165), - [anon_sym_infix] = ACTIONS(4165), - [anon_sym_inline] = ACTIONS(4165), - [anon_sym_external] = ACTIONS(4165), - [sym_property_modifier] = ACTIONS(4165), - [anon_sym_abstract] = ACTIONS(4165), - [anon_sym_final] = ACTIONS(4165), - [anon_sym_open] = ACTIONS(4165), - [anon_sym_vararg] = ACTIONS(4165), - [anon_sym_noinline] = ACTIONS(4165), - [anon_sym_crossinline] = ACTIONS(4165), - [anon_sym_expect] = ACTIONS(4165), - [anon_sym_actual] = ACTIONS(4165), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4167), - [sym_safe_nav] = ACTIONS(4167), - [sym_multiline_comment] = ACTIONS(3), - }, - [2877] = { - [sym_type_constraints] = STATE(2978), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - }, - [2878] = { - [sym_type_constraints] = STATE(2975), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - }, - [2879] = { - [sym_type_constraints] = STATE(2977), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - }, - [2880] = { - [aux_sym_nullable_type_repeat1] = STATE(2931), - [sym__alpha_identifier] = ACTIONS(4165), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_as] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [anon_sym_by] = ACTIONS(4165), - [anon_sym_LT] = ACTIONS(4165), - [anon_sym_GT] = ACTIONS(4165), - [anon_sym_where] = ACTIONS(4165), - [anon_sym_object] = ACTIONS(4165), - [anon_sym_fun] = ACTIONS(4165), - [anon_sym_DOT] = ACTIONS(4165), - [anon_sym_SEMI] = ACTIONS(4167), - [anon_sym_get] = ACTIONS(4165), - [anon_sym_set] = ACTIONS(4165), - [anon_sym_this] = ACTIONS(4165), - [anon_sym_super] = ACTIONS(4165), - [sym__quest] = ACTIONS(6365), - [anon_sym_STAR] = ACTIONS(4165), - [sym_label] = ACTIONS(4165), - [anon_sym_in] = ACTIONS(4165), - [anon_sym_DOT_DOT] = ACTIONS(4167), - [anon_sym_QMARK_COLON] = ACTIONS(4167), - [anon_sym_AMP_AMP] = ACTIONS(4167), - [anon_sym_PIPE_PIPE] = ACTIONS(4167), - [anon_sym_null] = ACTIONS(4165), - [anon_sym_if] = ACTIONS(4165), - [anon_sym_else] = ACTIONS(4165), - [anon_sym_when] = ACTIONS(4165), - [anon_sym_try] = ACTIONS(4165), - [anon_sym_throw] = ACTIONS(4165), - [anon_sym_return] = ACTIONS(4165), - [anon_sym_continue] = ACTIONS(4165), - [anon_sym_break] = ACTIONS(4165), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_PLUS_EQ] = ACTIONS(4167), - [anon_sym_DASH_EQ] = ACTIONS(4167), - [anon_sym_STAR_EQ] = ACTIONS(4167), - [anon_sym_SLASH_EQ] = ACTIONS(4167), - [anon_sym_PERCENT_EQ] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), - [anon_sym_EQ_EQ] = ACTIONS(4165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), - [anon_sym_LT_EQ] = ACTIONS(4167), - [anon_sym_GT_EQ] = ACTIONS(4167), - [anon_sym_BANGin] = ACTIONS(4167), - [anon_sym_is] = ACTIONS(4165), - [anon_sym_BANGis] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4165), - [anon_sym_DASH] = ACTIONS(4165), - [anon_sym_SLASH] = ACTIONS(4165), - [anon_sym_PERCENT] = ACTIONS(4165), - [anon_sym_as_QMARK] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_BANG] = ACTIONS(4165), - [anon_sym_BANG_BANG] = ACTIONS(4167), - [anon_sym_data] = ACTIONS(4165), - [anon_sym_inner] = ACTIONS(4165), - [anon_sym_value] = ACTIONS(4165), - [anon_sym_expect] = ACTIONS(4165), - [anon_sym_actual] = ACTIONS(4165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4167), - [anon_sym_continue_AT] = ACTIONS(4167), - [anon_sym_break_AT] = ACTIONS(4167), - [sym_real_literal] = ACTIONS(4167), - [sym_integer_literal] = ACTIONS(4165), - [sym_hex_literal] = ACTIONS(4167), - [sym_bin_literal] = ACTIONS(4167), - [anon_sym_true] = ACTIONS(4165), - [anon_sym_false] = ACTIONS(4165), - [anon_sym_SQUOTE] = ACTIONS(4167), - [sym__backtick_identifier] = ACTIONS(4167), - [sym__automatic_semicolon] = ACTIONS(4167), - [sym_safe_nav] = ACTIONS(4167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4167), - }, - [2881] = { - [aux_sym_nullable_type_repeat1] = STATE(2891), - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [sym__quest] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(4221), - [anon_sym_DASH_GT] = ACTIONS(4223), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4221), - [anon_sym_while] = ACTIONS(4221), - [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(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [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(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - }, - [2882] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [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_DOT] = 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(6367), - [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), - [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), - }, - [2883] = { - [aux_sym_nullable_type_repeat1] = STATE(2883), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_RBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_RPAREN] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [sym__quest] = ACTIONS(6369), - [anon_sym_STAR] = ACTIONS(4225), - [anon_sym_DASH_GT] = ACTIONS(4227), - [sym_label] = ACTIONS(4227), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_while] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - }, - [2884] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6372), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4324), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [2885] = { - [sym_type_constraints] = STATE(2999), - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), - }, - [2886] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_RBRACK] = ACTIONS(4236), - [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_DOT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4236), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(6376), - [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(4236), - [sym_safe_nav] = ACTIONS(4236), - [sym_multiline_comment] = ACTIONS(3), - }, - [2887] = { - [sym_type_constraints] = STATE(3194), - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6378), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [2888] = { - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [2889] = { - [sym_type_constraints] = STATE(3223), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6380), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [2890] = { - [sym_type_constraints] = STATE(2980), - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_RBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [anon_sym_DASH_GT] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - }, - [2891] = { - [aux_sym_nullable_type_repeat1] = STATE(2883), - [sym__alpha_identifier] = ACTIONS(4278), - [anon_sym_AT] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4280), - [anon_sym_RBRACK] = ACTIONS(4280), - [anon_sym_as] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(4280), - [anon_sym_COMMA] = ACTIONS(4280), - [anon_sym_RPAREN] = ACTIONS(4280), - [anon_sym_by] = ACTIONS(4278), - [anon_sym_LT] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4278), - [anon_sym_where] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym_get] = ACTIONS(4278), - [anon_sym_set] = ACTIONS(4278), - [sym__quest] = ACTIONS(6382), - [anon_sym_STAR] = ACTIONS(4278), - [anon_sym_DASH_GT] = ACTIONS(4280), - [sym_label] = ACTIONS(4280), - [anon_sym_in] = ACTIONS(4278), - [anon_sym_while] = ACTIONS(4278), - [anon_sym_DOT_DOT] = ACTIONS(4280), - [anon_sym_QMARK_COLON] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4280), - [anon_sym_else] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_PLUS_EQ] = ACTIONS(4280), - [anon_sym_DASH_EQ] = ACTIONS(4280), - [anon_sym_STAR_EQ] = ACTIONS(4280), - [anon_sym_SLASH_EQ] = ACTIONS(4280), - [anon_sym_PERCENT_EQ] = ACTIONS(4280), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), - [anon_sym_LT_EQ] = ACTIONS(4280), - [anon_sym_GT_EQ] = ACTIONS(4280), - [anon_sym_BANGin] = ACTIONS(4280), - [anon_sym_is] = ACTIONS(4278), - [anon_sym_BANGis] = ACTIONS(4280), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_SLASH] = ACTIONS(4278), - [anon_sym_PERCENT] = ACTIONS(4278), - [anon_sym_as_QMARK] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_BANG_BANG] = ACTIONS(4280), - [anon_sym_suspend] = ACTIONS(4278), - [anon_sym_sealed] = ACTIONS(4278), - [anon_sym_annotation] = ACTIONS(4278), - [anon_sym_data] = ACTIONS(4278), - [anon_sym_inner] = ACTIONS(4278), - [anon_sym_value] = ACTIONS(4278), - [anon_sym_override] = ACTIONS(4278), - [anon_sym_lateinit] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_internal] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_tailrec] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_infix] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym_external] = ACTIONS(4278), - [sym_property_modifier] = ACTIONS(4278), - [anon_sym_abstract] = ACTIONS(4278), - [anon_sym_final] = ACTIONS(4278), - [anon_sym_open] = ACTIONS(4278), - [anon_sym_vararg] = ACTIONS(4278), - [anon_sym_noinline] = ACTIONS(4278), - [anon_sym_crossinline] = ACTIONS(4278), - [anon_sym_expect] = ACTIONS(4278), - [anon_sym_actual] = ACTIONS(4278), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4280), - [sym_safe_nav] = ACTIONS(4280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2892] = { - [sym_class_body] = STATE(3392), - [sym_type_constraints] = STATE(3092), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(5238), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [2893] = { - [aux_sym_nullable_type_repeat1] = STATE(2931), - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_object] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_this] = ACTIONS(4221), - [anon_sym_super] = ACTIONS(4221), - [sym__quest] = ACTIONS(6365), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4221), - [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(4221), - [anon_sym_if] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4221), - [anon_sym_when] = ACTIONS(4221), - [anon_sym_try] = ACTIONS(4221), - [anon_sym_throw] = ACTIONS(4221), - [anon_sym_return] = ACTIONS(4221), - [anon_sym_continue] = ACTIONS(4221), - [anon_sym_break] = ACTIONS(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [anon_sym_as_QMARK] = ACTIONS(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4221), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [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), - }, - [2894] = { - [sym_type_constraints] = STATE(3253), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6384), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [2895] = { - [sym_type_arguments] = STATE(3038), - [sym__alpha_identifier] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_EQ] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(6386), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_object] = ACTIONS(4108), - [anon_sym_fun] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_get] = ACTIONS(4108), - [anon_sym_set] = ACTIONS(4108), - [anon_sym_this] = ACTIONS(4108), - [anon_sym_super] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4110), - [sym__quest] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4110), - [sym_label] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_null] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_else] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_BANGin] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4108), - [anon_sym_BANGis] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_suspend] = ACTIONS(4108), - [anon_sym_sealed] = ACTIONS(4108), - [anon_sym_annotation] = ACTIONS(4108), - [anon_sym_data] = ACTIONS(4108), - [anon_sym_inner] = ACTIONS(4108), - [anon_sym_value] = ACTIONS(4108), - [anon_sym_override] = ACTIONS(4108), - [anon_sym_lateinit] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_internal] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_tailrec] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_infix] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_external] = ACTIONS(4108), - [sym_property_modifier] = ACTIONS(4108), - [anon_sym_abstract] = ACTIONS(4108), - [anon_sym_final] = ACTIONS(4108), - [anon_sym_open] = ACTIONS(4108), - [anon_sym_vararg] = ACTIONS(4108), - [anon_sym_noinline] = ACTIONS(4108), - [anon_sym_crossinline] = ACTIONS(4108), - [anon_sym_expect] = ACTIONS(4108), - [anon_sym_actual] = ACTIONS(4108), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4110), - [anon_sym_continue_AT] = ACTIONS(4110), - [anon_sym_break_AT] = ACTIONS(4110), - [sym_real_literal] = ACTIONS(4110), - [sym_integer_literal] = ACTIONS(4108), - [sym_hex_literal] = ACTIONS(4110), - [sym_bin_literal] = ACTIONS(4110), - [anon_sym_true] = ACTIONS(4108), - [anon_sym_false] = ACTIONS(4108), - [anon_sym_SQUOTE] = ACTIONS(4110), - [sym__backtick_identifier] = ACTIONS(4110), - [sym__automatic_semicolon] = ACTIONS(4110), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4110), - }, - [2896] = { - [sym_class_body] = STATE(3267), - [sym_type_constraints] = STATE(3172), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_DASH_GT] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - }, - [2897] = { - [sym_function_body] = STATE(3386), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [2898] = { - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [2899] = { - [sym_class_body] = STATE(3182), - [sym_type_constraints] = STATE(3135), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5242), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [2900] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6392), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - }, - [2901] = { - [sym_type_constraints] = STATE(3088), - [sym_enum_class_body] = STATE(3262), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6394), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), - }, - [2902] = { - [sym_function_body] = STATE(3494), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_DASH_GT] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_while] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - }, - [2903] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [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_DOT] = 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(6398), - [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), - [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), - }, - [2904] = { - [sym_type_constraints] = STATE(2993), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [2905] = { - [sym_class_body] = STATE(3453), - [sym_type_constraints] = STATE(3087), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6400), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - }, - [2906] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_EQ] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_by] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3823), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3823), - [sym__quest] = ACTIONS(3823), - [anon_sym_STAR] = ACTIONS(3823), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [2907] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6402), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_DASH_GT] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - }, - [2908] = { - [sym__alpha_identifier] = ACTIONS(4358), - [anon_sym_AT] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4360), - [anon_sym_RBRACK] = ACTIONS(4360), - [anon_sym_as] = ACTIONS(4358), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4360), - [anon_sym_RBRACE] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_RPAREN] = ACTIONS(4360), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_GT] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_object] = ACTIONS(4358), - [anon_sym_fun] = ACTIONS(4358), - [anon_sym_DOT] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_get] = ACTIONS(4358), - [anon_sym_set] = ACTIONS(4358), - [anon_sym_this] = ACTIONS(4358), - [anon_sym_super] = ACTIONS(4358), - [anon_sym_STAR] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4360), - [sym_label] = ACTIONS(4358), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_while] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4360), - [anon_sym_AMP_AMP] = ACTIONS(4360), - [anon_sym_PIPE_PIPE] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_else] = ACTIONS(4358), - [anon_sym_when] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_throw] = ACTIONS(4358), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_continue] = ACTIONS(4358), - [anon_sym_break] = ACTIONS(4358), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PLUS_EQ] = ACTIONS(4360), - [anon_sym_DASH_EQ] = ACTIONS(4360), - [anon_sym_STAR_EQ] = ACTIONS(4360), - [anon_sym_SLASH_EQ] = ACTIONS(4360), - [anon_sym_PERCENT_EQ] = ACTIONS(4360), - [anon_sym_BANG_EQ] = ACTIONS(4358), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4360), - [anon_sym_EQ_EQ] = ACTIONS(4358), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4360), - [anon_sym_LT_EQ] = ACTIONS(4360), - [anon_sym_GT_EQ] = ACTIONS(4360), - [anon_sym_BANGin] = ACTIONS(4360), - [anon_sym_is] = ACTIONS(4358), - [anon_sym_BANGis] = ACTIONS(4360), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_SLASH] = ACTIONS(4358), - [anon_sym_PERCENT] = ACTIONS(4358), - [anon_sym_as_QMARK] = ACTIONS(4360), - [anon_sym_PLUS_PLUS] = ACTIONS(4360), - [anon_sym_DASH_DASH] = ACTIONS(4360), - [anon_sym_BANG] = ACTIONS(4358), - [anon_sym_BANG_BANG] = ACTIONS(4360), - [anon_sym_data] = ACTIONS(4358), - [anon_sym_inner] = ACTIONS(4358), - [anon_sym_value] = ACTIONS(4358), - [anon_sym_expect] = ACTIONS(4358), - [anon_sym_actual] = ACTIONS(4358), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4360), - [anon_sym_continue_AT] = ACTIONS(4360), - [anon_sym_break_AT] = ACTIONS(4360), - [sym_real_literal] = ACTIONS(4360), - [sym_integer_literal] = ACTIONS(4358), - [sym_hex_literal] = ACTIONS(4360), - [sym_bin_literal] = ACTIONS(4360), - [anon_sym_true] = ACTIONS(4358), - [anon_sym_false] = ACTIONS(4358), - [anon_sym_SQUOTE] = ACTIONS(4360), - [sym__backtick_identifier] = ACTIONS(4360), - [sym_safe_nav] = ACTIONS(4360), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4360), - }, - [2909] = { - [sym__alpha_identifier] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_RBRACK] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4314), - [anon_sym_EQ] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_RPAREN] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_get] = ACTIONS(4314), - [anon_sym_set] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [sym__quest] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4314), - [anon_sym_DASH_GT] = ACTIONS(4316), - [sym_label] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_while] = ACTIONS(4314), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_QMARK_COLON] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [anon_sym_else] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_PLUS_EQ] = ACTIONS(4316), - [anon_sym_DASH_EQ] = ACTIONS(4316), - [anon_sym_STAR_EQ] = ACTIONS(4316), - [anon_sym_SLASH_EQ] = ACTIONS(4316), - [anon_sym_PERCENT_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_BANGin] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4314), - [anon_sym_BANGis] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4314), - [anon_sym_as_QMARK] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_BANG_BANG] = ACTIONS(4316), - [anon_sym_suspend] = ACTIONS(4314), - [anon_sym_sealed] = ACTIONS(4314), - [anon_sym_annotation] = ACTIONS(4314), - [anon_sym_data] = ACTIONS(4314), - [anon_sym_inner] = ACTIONS(4314), - [anon_sym_value] = ACTIONS(4314), - [anon_sym_override] = ACTIONS(4314), - [anon_sym_lateinit] = ACTIONS(4314), - [anon_sym_public] = ACTIONS(4314), - [anon_sym_private] = ACTIONS(4314), - [anon_sym_internal] = ACTIONS(4314), - [anon_sym_protected] = ACTIONS(4314), - [anon_sym_tailrec] = ACTIONS(4314), - [anon_sym_operator] = ACTIONS(4314), - [anon_sym_infix] = ACTIONS(4314), - [anon_sym_inline] = ACTIONS(4314), - [anon_sym_external] = ACTIONS(4314), - [sym_property_modifier] = ACTIONS(4314), - [anon_sym_abstract] = ACTIONS(4314), - [anon_sym_final] = ACTIONS(4314), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_vararg] = ACTIONS(4314), - [anon_sym_noinline] = ACTIONS(4314), - [anon_sym_crossinline] = ACTIONS(4314), - [anon_sym_expect] = ACTIONS(4314), - [anon_sym_actual] = ACTIONS(4314), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4316), - [sym_safe_nav] = ACTIONS(4316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2910] = { - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [2911] = { - [sym_type_constraints] = STATE(3040), - [sym_enum_class_body] = STATE(3331), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_RBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - }, - [2912] = { - [sym_function_body] = STATE(3339), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6406), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [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_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), - }, - [2913] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6408), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [2914] = { - [sym_type_constraints] = STATE(3003), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [2915] = { - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_RBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_RPAREN] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [anon_sym_DASH_GT] = ACTIONS(4103), - [sym_label] = ACTIONS(4103), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_while] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - }, - [2916] = { - [sym_class_body] = STATE(3234), - [sym_type_constraints] = STATE(3130), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), - }, - [2917] = { - [sym_type_constraints] = STATE(2997), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), - }, - [2918] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(3857), - [anon_sym_DASH_EQ] = ACTIONS(3857), - [anon_sym_STAR_EQ] = ACTIONS(3857), - [anon_sym_SLASH_EQ] = ACTIONS(3857), - [anon_sym_PERCENT_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), - }, - [2919] = { - [sym_type_constraints] = STATE(3276), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6410), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), - }, - [2920] = { - [sym_class_body] = STATE(3179), - [sym_type_constraints] = STATE(3163), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6412), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), - }, - [2921] = { - [sym__alpha_identifier] = ACTIONS(4171), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(4173), - [anon_sym_as] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_COMMA] = ACTIONS(4173), - [anon_sym_by] = ACTIONS(4171), - [anon_sym_LT] = ACTIONS(4171), - [anon_sym_GT] = ACTIONS(4171), - [anon_sym_where] = ACTIONS(4171), - [anon_sym_object] = ACTIONS(4171), - [anon_sym_fun] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4173), - [anon_sym_get] = ACTIONS(4171), - [anon_sym_set] = ACTIONS(4171), - [anon_sym_this] = ACTIONS(4171), - [anon_sym_super] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - [sym__quest] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4171), - [sym_label] = ACTIONS(4171), - [anon_sym_in] = ACTIONS(4171), - [anon_sym_DOT_DOT] = ACTIONS(4173), - [anon_sym_QMARK_COLON] = ACTIONS(4173), - [anon_sym_AMP_AMP] = ACTIONS(4173), - [anon_sym_PIPE_PIPE] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4171), - [anon_sym_if] = ACTIONS(4171), - [anon_sym_else] = ACTIONS(4171), - [anon_sym_when] = ACTIONS(4171), - [anon_sym_try] = ACTIONS(4171), - [anon_sym_throw] = ACTIONS(4171), - [anon_sym_return] = ACTIONS(4171), - [anon_sym_continue] = ACTIONS(4171), - [anon_sym_break] = ACTIONS(4171), - [anon_sym_COLON_COLON] = ACTIONS(4173), - [anon_sym_PLUS_EQ] = ACTIONS(4173), - [anon_sym_DASH_EQ] = ACTIONS(4173), - [anon_sym_STAR_EQ] = ACTIONS(4173), - [anon_sym_SLASH_EQ] = ACTIONS(4173), - [anon_sym_PERCENT_EQ] = ACTIONS(4173), - [anon_sym_BANG_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), - [anon_sym_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), - [anon_sym_LT_EQ] = ACTIONS(4173), - [anon_sym_GT_EQ] = ACTIONS(4173), - [anon_sym_BANGin] = ACTIONS(4173), - [anon_sym_is] = ACTIONS(4171), - [anon_sym_BANGis] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4171), - [anon_sym_PERCENT] = ACTIONS(4171), - [anon_sym_as_QMARK] = ACTIONS(4173), - [anon_sym_PLUS_PLUS] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(4171), - [anon_sym_BANG_BANG] = ACTIONS(4173), - [anon_sym_data] = ACTIONS(4171), - [anon_sym_inner] = ACTIONS(4171), - [anon_sym_value] = ACTIONS(4171), - [anon_sym_expect] = ACTIONS(4171), - [anon_sym_actual] = ACTIONS(4171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4173), - [anon_sym_continue_AT] = ACTIONS(4173), - [anon_sym_break_AT] = ACTIONS(4173), - [sym_real_literal] = ACTIONS(4173), - [sym_integer_literal] = ACTIONS(4171), - [sym_hex_literal] = ACTIONS(4173), - [sym_bin_literal] = ACTIONS(4173), - [anon_sym_true] = ACTIONS(4171), - [anon_sym_false] = ACTIONS(4171), - [anon_sym_SQUOTE] = ACTIONS(4173), - [sym__backtick_identifier] = ACTIONS(4173), - [sym__automatic_semicolon] = ACTIONS(4173), - [sym_safe_nav] = ACTIONS(4173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4173), - }, - [2922] = { - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [2923] = { - [sym__alpha_identifier] = ACTIONS(4308), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_RBRACK] = ACTIONS(4310), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_COMMA] = ACTIONS(4310), - [anon_sym_RPAREN] = ACTIONS(4310), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_SEMI] = ACTIONS(4310), - [anon_sym_get] = ACTIONS(4308), - [anon_sym_set] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [sym__quest] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_label] = ACTIONS(4310), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_while] = ACTIONS(4308), - [anon_sym_DOT_DOT] = ACTIONS(4310), - [anon_sym_QMARK_COLON] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4310), - [anon_sym_PIPE_PIPE] = ACTIONS(4310), - [anon_sym_else] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(4310), - [anon_sym_PLUS_EQ] = ACTIONS(4310), - [anon_sym_DASH_EQ] = ACTIONS(4310), - [anon_sym_STAR_EQ] = ACTIONS(4310), - [anon_sym_SLASH_EQ] = ACTIONS(4310), - [anon_sym_PERCENT_EQ] = ACTIONS(4310), - [anon_sym_BANG_EQ] = ACTIONS(4308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), - [anon_sym_EQ_EQ] = ACTIONS(4308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), - [anon_sym_LT_EQ] = ACTIONS(4310), - [anon_sym_GT_EQ] = ACTIONS(4310), - [anon_sym_BANGin] = ACTIONS(4310), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_BANGis] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4308), - [anon_sym_as_QMARK] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4310), - [anon_sym_DASH_DASH] = ACTIONS(4310), - [anon_sym_BANG_BANG] = ACTIONS(4310), - [anon_sym_suspend] = ACTIONS(4308), - [anon_sym_sealed] = ACTIONS(4308), - [anon_sym_annotation] = ACTIONS(4308), - [anon_sym_data] = ACTIONS(4308), - [anon_sym_inner] = ACTIONS(4308), - [anon_sym_value] = ACTIONS(4308), - [anon_sym_override] = ACTIONS(4308), - [anon_sym_lateinit] = ACTIONS(4308), - [anon_sym_public] = ACTIONS(4308), - [anon_sym_private] = ACTIONS(4308), - [anon_sym_internal] = ACTIONS(4308), - [anon_sym_protected] = ACTIONS(4308), - [anon_sym_tailrec] = ACTIONS(4308), - [anon_sym_operator] = ACTIONS(4308), - [anon_sym_infix] = ACTIONS(4308), - [anon_sym_inline] = ACTIONS(4308), - [anon_sym_external] = ACTIONS(4308), - [sym_property_modifier] = ACTIONS(4308), - [anon_sym_abstract] = ACTIONS(4308), - [anon_sym_final] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4308), - [anon_sym_vararg] = ACTIONS(4308), - [anon_sym_noinline] = ACTIONS(4308), - [anon_sym_crossinline] = ACTIONS(4308), - [anon_sym_expect] = ACTIONS(4308), - [anon_sym_actual] = ACTIONS(4308), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4310), - [sym_safe_nav] = ACTIONS(4310), - [sym_multiline_comment] = ACTIONS(3), - }, - [2924] = { - [sym_class_body] = STATE(3181), - [sym_type_constraints] = STATE(3173), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [2925] = { - [sym__alpha_identifier] = ACTIONS(4308), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_COMMA] = ACTIONS(4310), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_object] = ACTIONS(4308), - [anon_sym_fun] = ACTIONS(4308), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_SEMI] = ACTIONS(4310), - [anon_sym_get] = ACTIONS(4308), - [anon_sym_set] = ACTIONS(4308), - [anon_sym_this] = ACTIONS(4308), - [anon_sym_super] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [sym__quest] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4308), - [sym_label] = ACTIONS(4308), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_DOT_DOT] = ACTIONS(4310), - [anon_sym_QMARK_COLON] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4310), - [anon_sym_PIPE_PIPE] = ACTIONS(4310), - [anon_sym_null] = ACTIONS(4308), - [anon_sym_if] = ACTIONS(4308), - [anon_sym_else] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [anon_sym_try] = ACTIONS(4308), - [anon_sym_throw] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4308), - [anon_sym_continue] = ACTIONS(4308), - [anon_sym_break] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(4310), - [anon_sym_PLUS_EQ] = ACTIONS(4310), - [anon_sym_DASH_EQ] = ACTIONS(4310), - [anon_sym_STAR_EQ] = ACTIONS(4310), - [anon_sym_SLASH_EQ] = ACTIONS(4310), - [anon_sym_PERCENT_EQ] = ACTIONS(4310), - [anon_sym_BANG_EQ] = ACTIONS(4308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), - [anon_sym_EQ_EQ] = ACTIONS(4308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), - [anon_sym_LT_EQ] = ACTIONS(4310), - [anon_sym_GT_EQ] = ACTIONS(4310), - [anon_sym_BANGin] = ACTIONS(4310), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_BANGis] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4308), - [anon_sym_as_QMARK] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4310), - [anon_sym_DASH_DASH] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_BANG_BANG] = ACTIONS(4310), - [anon_sym_data] = ACTIONS(4308), - [anon_sym_inner] = ACTIONS(4308), - [anon_sym_value] = ACTIONS(4308), - [anon_sym_expect] = ACTIONS(4308), - [anon_sym_actual] = ACTIONS(4308), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4310), - [anon_sym_continue_AT] = ACTIONS(4310), - [anon_sym_break_AT] = ACTIONS(4310), - [sym_real_literal] = ACTIONS(4310), - [sym_integer_literal] = ACTIONS(4308), - [sym_hex_literal] = ACTIONS(4310), - [sym_bin_literal] = ACTIONS(4310), - [anon_sym_true] = ACTIONS(4308), - [anon_sym_false] = ACTIONS(4308), - [anon_sym_SQUOTE] = ACTIONS(4310), - [sym__backtick_identifier] = ACTIONS(4310), - [sym__automatic_semicolon] = ACTIONS(4310), - [sym_safe_nav] = ACTIONS(4310), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4310), - }, - [2926] = { - [sym_type_constraints] = STATE(3146), - [sym_enum_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [2927] = { - [sym_annotated_lambda] = STATE(3773), - [sym_lambda_literal] = STATE(3819), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [sym_label] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_suspend] = ACTIONS(4011), - [anon_sym_sealed] = ACTIONS(4011), - [anon_sym_annotation] = ACTIONS(4011), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_override] = ACTIONS(4011), - [anon_sym_lateinit] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4011), - [anon_sym_private] = ACTIONS(4011), - [anon_sym_internal] = ACTIONS(4011), - [anon_sym_protected] = ACTIONS(4011), - [anon_sym_tailrec] = ACTIONS(4011), - [anon_sym_operator] = ACTIONS(4011), - [anon_sym_infix] = ACTIONS(4011), - [anon_sym_inline] = ACTIONS(4011), - [anon_sym_external] = ACTIONS(4011), - [sym_property_modifier] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4011), - [anon_sym_final] = ACTIONS(4011), - [anon_sym_open] = ACTIONS(4011), - [anon_sym_vararg] = ACTIONS(4011), - [anon_sym_noinline] = ACTIONS(4011), - [anon_sym_crossinline] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4013), - [sym__automatic_semicolon] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), - [sym_multiline_comment] = ACTIONS(3), - }, - [2928] = { - [sym__alpha_identifier] = ACTIONS(4171), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(4173), - [anon_sym_RBRACK] = ACTIONS(4173), - [anon_sym_as] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_COMMA] = ACTIONS(4173), - [anon_sym_RPAREN] = ACTIONS(4173), - [anon_sym_by] = ACTIONS(4171), - [anon_sym_LT] = ACTIONS(4171), - [anon_sym_GT] = ACTIONS(4171), - [anon_sym_where] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4173), - [anon_sym_get] = ACTIONS(4171), - [anon_sym_set] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - [sym__quest] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_DASH_GT] = ACTIONS(4173), - [sym_label] = ACTIONS(4173), - [anon_sym_in] = ACTIONS(4171), - [anon_sym_while] = ACTIONS(4171), - [anon_sym_DOT_DOT] = ACTIONS(4173), - [anon_sym_QMARK_COLON] = ACTIONS(4173), - [anon_sym_AMP_AMP] = ACTIONS(4173), - [anon_sym_PIPE_PIPE] = ACTIONS(4173), - [anon_sym_else] = ACTIONS(4171), - [anon_sym_COLON_COLON] = ACTIONS(4173), - [anon_sym_PLUS_EQ] = ACTIONS(4173), - [anon_sym_DASH_EQ] = ACTIONS(4173), - [anon_sym_STAR_EQ] = ACTIONS(4173), - [anon_sym_SLASH_EQ] = ACTIONS(4173), - [anon_sym_PERCENT_EQ] = ACTIONS(4173), - [anon_sym_BANG_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), - [anon_sym_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), - [anon_sym_LT_EQ] = ACTIONS(4173), - [anon_sym_GT_EQ] = ACTIONS(4173), - [anon_sym_BANGin] = ACTIONS(4173), - [anon_sym_is] = ACTIONS(4171), - [anon_sym_BANGis] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4171), - [anon_sym_PERCENT] = ACTIONS(4171), - [anon_sym_as_QMARK] = ACTIONS(4173), - [anon_sym_PLUS_PLUS] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(4173), - [anon_sym_BANG_BANG] = ACTIONS(4173), - [anon_sym_suspend] = ACTIONS(4171), - [anon_sym_sealed] = ACTIONS(4171), - [anon_sym_annotation] = ACTIONS(4171), - [anon_sym_data] = ACTIONS(4171), - [anon_sym_inner] = ACTIONS(4171), - [anon_sym_value] = ACTIONS(4171), - [anon_sym_override] = ACTIONS(4171), - [anon_sym_lateinit] = ACTIONS(4171), - [anon_sym_public] = ACTIONS(4171), - [anon_sym_private] = ACTIONS(4171), - [anon_sym_internal] = ACTIONS(4171), - [anon_sym_protected] = ACTIONS(4171), - [anon_sym_tailrec] = ACTIONS(4171), - [anon_sym_operator] = ACTIONS(4171), - [anon_sym_infix] = ACTIONS(4171), - [anon_sym_inline] = ACTIONS(4171), - [anon_sym_external] = ACTIONS(4171), - [sym_property_modifier] = ACTIONS(4171), - [anon_sym_abstract] = ACTIONS(4171), - [anon_sym_final] = ACTIONS(4171), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_vararg] = ACTIONS(4171), - [anon_sym_noinline] = ACTIONS(4171), - [anon_sym_crossinline] = ACTIONS(4171), - [anon_sym_expect] = ACTIONS(4171), - [anon_sym_actual] = ACTIONS(4171), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4173), - [sym_safe_nav] = ACTIONS(4173), - [sym_multiline_comment] = ACTIONS(3), - }, - [2929] = { - [sym_type_constraints] = STATE(3000), - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), - }, - [2930] = { - [sym__alpha_identifier] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4314), - [anon_sym_EQ] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_object] = ACTIONS(4314), - [anon_sym_fun] = ACTIONS(4314), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_get] = ACTIONS(4314), - [anon_sym_set] = ACTIONS(4314), - [anon_sym_this] = ACTIONS(4314), - [anon_sym_super] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [sym__quest] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4314), - [sym_label] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_QMARK_COLON] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_else] = ACTIONS(4314), - [anon_sym_when] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_continue] = ACTIONS(4314), - [anon_sym_break] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_PLUS_EQ] = ACTIONS(4316), - [anon_sym_DASH_EQ] = ACTIONS(4316), - [anon_sym_STAR_EQ] = ACTIONS(4316), - [anon_sym_SLASH_EQ] = ACTIONS(4316), - [anon_sym_PERCENT_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_BANGin] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4314), - [anon_sym_BANGis] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4314), - [anon_sym_as_QMARK] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_BANG_BANG] = ACTIONS(4316), - [anon_sym_data] = ACTIONS(4314), - [anon_sym_inner] = ACTIONS(4314), - [anon_sym_value] = ACTIONS(4314), - [anon_sym_expect] = ACTIONS(4314), - [anon_sym_actual] = ACTIONS(4314), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4316), - [anon_sym_continue_AT] = ACTIONS(4316), - [anon_sym_break_AT] = ACTIONS(4316), - [sym_real_literal] = ACTIONS(4316), - [sym_integer_literal] = ACTIONS(4314), - [sym_hex_literal] = ACTIONS(4316), - [sym_bin_literal] = ACTIONS(4316), - [anon_sym_true] = ACTIONS(4314), - [anon_sym_false] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4316), - [sym__backtick_identifier] = ACTIONS(4316), - [sym__automatic_semicolon] = ACTIONS(4316), - [sym_safe_nav] = ACTIONS(4316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4316), - }, - [2931] = { - [aux_sym_nullable_type_repeat1] = STATE(2934), - [sym__alpha_identifier] = ACTIONS(4278), - [anon_sym_AT] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4280), - [anon_sym_as] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(4280), - [anon_sym_COMMA] = ACTIONS(4280), - [anon_sym_by] = ACTIONS(4278), - [anon_sym_LT] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4278), - [anon_sym_where] = ACTIONS(4278), - [anon_sym_object] = ACTIONS(4278), - [anon_sym_fun] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym_get] = ACTIONS(4278), - [anon_sym_set] = ACTIONS(4278), - [anon_sym_this] = ACTIONS(4278), - [anon_sym_super] = ACTIONS(4278), - [sym__quest] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(4278), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4278), - [anon_sym_DOT_DOT] = ACTIONS(4280), - [anon_sym_QMARK_COLON] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4280), - [anon_sym_null] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4278), - [anon_sym_when] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_PLUS_EQ] = ACTIONS(4280), - [anon_sym_DASH_EQ] = ACTIONS(4280), - [anon_sym_STAR_EQ] = ACTIONS(4280), - [anon_sym_SLASH_EQ] = ACTIONS(4280), - [anon_sym_PERCENT_EQ] = ACTIONS(4280), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), - [anon_sym_LT_EQ] = ACTIONS(4280), - [anon_sym_GT_EQ] = ACTIONS(4280), - [anon_sym_BANGin] = ACTIONS(4280), - [anon_sym_is] = ACTIONS(4278), - [anon_sym_BANGis] = ACTIONS(4280), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_SLASH] = ACTIONS(4278), - [anon_sym_PERCENT] = ACTIONS(4278), - [anon_sym_as_QMARK] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4278), - [anon_sym_BANG_BANG] = ACTIONS(4280), - [anon_sym_data] = ACTIONS(4278), - [anon_sym_inner] = ACTIONS(4278), - [anon_sym_value] = ACTIONS(4278), - [anon_sym_expect] = ACTIONS(4278), - [anon_sym_actual] = ACTIONS(4278), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4280), - [anon_sym_continue_AT] = ACTIONS(4280), - [anon_sym_break_AT] = ACTIONS(4280), - [sym_real_literal] = ACTIONS(4280), - [sym_integer_literal] = ACTIONS(4278), - [sym_hex_literal] = ACTIONS(4280), - [sym_bin_literal] = ACTIONS(4280), - [anon_sym_true] = ACTIONS(4278), - [anon_sym_false] = ACTIONS(4278), - [anon_sym_SQUOTE] = ACTIONS(4280), - [sym__backtick_identifier] = ACTIONS(4280), - [sym__automatic_semicolon] = ACTIONS(4280), - [sym_safe_nav] = ACTIONS(4280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4280), - }, - [2932] = { - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), - }, - [2933] = { - [sym__alpha_identifier] = ACTIONS(4346), - [anon_sym_AT] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_as] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(4346), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4346), - [anon_sym_GT] = ACTIONS(4346), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_object] = ACTIONS(4346), - [anon_sym_fun] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(4346), - [anon_sym_SEMI] = ACTIONS(4348), - [anon_sym_get] = ACTIONS(4346), - [anon_sym_set] = ACTIONS(4346), - [anon_sym_this] = ACTIONS(4346), - [anon_sym_super] = ACTIONS(4346), - [sym__quest] = ACTIONS(4346), - [anon_sym_STAR] = ACTIONS(4346), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_QMARK_COLON] = ACTIONS(4348), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_null] = ACTIONS(4346), - [anon_sym_if] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4346), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_try] = ACTIONS(4346), - [anon_sym_throw] = ACTIONS(4346), - [anon_sym_return] = ACTIONS(4346), - [anon_sym_continue] = ACTIONS(4346), - [anon_sym_break] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(4348), - [anon_sym_PLUS_EQ] = ACTIONS(4348), - [anon_sym_DASH_EQ] = ACTIONS(4348), - [anon_sym_STAR_EQ] = ACTIONS(4348), - [anon_sym_SLASH_EQ] = ACTIONS(4348), - [anon_sym_PERCENT_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4348), - [anon_sym_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_BANGin] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4346), - [anon_sym_BANGis] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4346), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_SLASH] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_as_QMARK] = ACTIONS(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_BANG] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4348), - [anon_sym_data] = ACTIONS(4346), - [anon_sym_inner] = ACTIONS(4346), - [anon_sym_value] = ACTIONS(4346), - [anon_sym_expect] = ACTIONS(4346), - [anon_sym_actual] = ACTIONS(4346), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4348), - [anon_sym_continue_AT] = ACTIONS(4348), - [anon_sym_break_AT] = ACTIONS(4348), - [sym_real_literal] = ACTIONS(4348), - [sym_integer_literal] = ACTIONS(4346), - [sym_hex_literal] = ACTIONS(4348), - [sym_bin_literal] = ACTIONS(4348), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_SQUOTE] = ACTIONS(4348), - [sym__backtick_identifier] = ACTIONS(4348), - [sym__automatic_semicolon] = ACTIONS(4348), - [sym_safe_nav] = ACTIONS(4348), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4348), - }, - [2934] = { - [aux_sym_nullable_type_repeat1] = STATE(2934), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [sym__quest] = ACTIONS(6418), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), - }, - [2935] = { - [sym_class_body] = STATE(3211), - [sym_type_constraints] = STATE(3137), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [2936] = { - [sym_annotated_lambda] = STATE(3896), - [sym_lambda_literal] = STATE(3819), - [sym_annotation] = STATE(8289), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8289), - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_suspend] = ACTIONS(4015), - [anon_sym_sealed] = ACTIONS(4015), - [anon_sym_annotation] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_override] = ACTIONS(4015), - [anon_sym_lateinit] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4015), - [anon_sym_private] = ACTIONS(4015), - [anon_sym_internal] = ACTIONS(4015), - [anon_sym_protected] = ACTIONS(4015), - [anon_sym_tailrec] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(4015), - [anon_sym_infix] = ACTIONS(4015), - [anon_sym_inline] = ACTIONS(4015), - [anon_sym_external] = ACTIONS(4015), - [sym_property_modifier] = ACTIONS(4015), - [anon_sym_abstract] = ACTIONS(4015), - [anon_sym_final] = ACTIONS(4015), - [anon_sym_open] = ACTIONS(4015), - [anon_sym_vararg] = ACTIONS(4015), - [anon_sym_noinline] = ACTIONS(4015), - [anon_sym_crossinline] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4017), - [sym__automatic_semicolon] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), - [sym_multiline_comment] = ACTIONS(3), - }, - [2937] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), - }, - [2938] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(4000), - [anon_sym_STAR_EQ] = ACTIONS(4000), - [anon_sym_SLASH_EQ] = ACTIONS(4000), - [anon_sym_PERCENT_EQ] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), - [sym_multiline_comment] = ACTIONS(3), - }, - [2939] = { - [sym_function_body] = STATE(3447), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6427), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - }, - [2940] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_object] = ACTIONS(4458), - [anon_sym_fun] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_this] = ACTIONS(4458), - [anon_sym_super] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [sym_label] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_null] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_when] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_value] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4460), - [anon_sym_continue_AT] = ACTIONS(4460), - [anon_sym_break_AT] = ACTIONS(4460), - [sym_real_literal] = ACTIONS(4460), - [sym_integer_literal] = ACTIONS(4458), - [sym_hex_literal] = ACTIONS(4460), - [sym_bin_literal] = ACTIONS(4460), - [aux_sym_unsigned_literal_token1] = ACTIONS(6429), - [anon_sym_L] = ACTIONS(6431), - [anon_sym_true] = ACTIONS(4458), - [anon_sym_false] = ACTIONS(4458), - [anon_sym_SQUOTE] = ACTIONS(4460), - [sym__backtick_identifier] = ACTIONS(4460), - [sym__automatic_semicolon] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4460), - }, - [2941] = { - [sym__alpha_identifier] = ACTIONS(4498), - [anon_sym_AT] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_as] = ACTIONS(4498), - [anon_sym_EQ] = ACTIONS(4498), - [anon_sym_LBRACE] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4500), - [anon_sym_LPAREN] = ACTIONS(4500), - [anon_sym_COMMA] = ACTIONS(4500), - [anon_sym_LT] = ACTIONS(4498), - [anon_sym_GT] = ACTIONS(4498), - [anon_sym_where] = ACTIONS(4498), - [anon_sym_object] = ACTIONS(4498), - [anon_sym_fun] = ACTIONS(4498), - [anon_sym_DOT] = ACTIONS(4498), - [anon_sym_SEMI] = ACTIONS(4500), - [anon_sym_get] = ACTIONS(4498), - [anon_sym_set] = ACTIONS(4498), - [anon_sym_this] = ACTIONS(4498), - [anon_sym_super] = ACTIONS(4498), - [anon_sym_STAR] = ACTIONS(4498), - [sym_label] = ACTIONS(4498), - [anon_sym_in] = ACTIONS(4498), - [anon_sym_DOT_DOT] = ACTIONS(4500), - [anon_sym_QMARK_COLON] = ACTIONS(4500), - [anon_sym_AMP_AMP] = ACTIONS(4500), - [anon_sym_PIPE_PIPE] = ACTIONS(4500), - [anon_sym_null] = ACTIONS(4498), - [anon_sym_if] = ACTIONS(4498), - [anon_sym_else] = ACTIONS(4498), - [anon_sym_when] = ACTIONS(4498), - [anon_sym_try] = ACTIONS(4498), - [anon_sym_catch] = ACTIONS(4498), - [anon_sym_finally] = ACTIONS(4498), - [anon_sym_throw] = ACTIONS(4498), - [anon_sym_return] = ACTIONS(4498), - [anon_sym_continue] = ACTIONS(4498), - [anon_sym_break] = ACTIONS(4498), - [anon_sym_COLON_COLON] = ACTIONS(4500), - [anon_sym_PLUS_EQ] = ACTIONS(4500), - [anon_sym_DASH_EQ] = ACTIONS(4500), - [anon_sym_STAR_EQ] = ACTIONS(4500), - [anon_sym_SLASH_EQ] = ACTIONS(4500), - [anon_sym_PERCENT_EQ] = ACTIONS(4500), - [anon_sym_BANG_EQ] = ACTIONS(4498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), - [anon_sym_EQ_EQ] = ACTIONS(4498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), - [anon_sym_LT_EQ] = ACTIONS(4500), - [anon_sym_GT_EQ] = ACTIONS(4500), - [anon_sym_BANGin] = ACTIONS(4500), - [anon_sym_is] = ACTIONS(4498), - [anon_sym_BANGis] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4498), - [anon_sym_SLASH] = ACTIONS(4498), - [anon_sym_PERCENT] = ACTIONS(4498), - [anon_sym_as_QMARK] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_BANG] = ACTIONS(4498), - [anon_sym_BANG_BANG] = ACTIONS(4500), - [anon_sym_data] = ACTIONS(4498), - [anon_sym_inner] = ACTIONS(4498), - [anon_sym_value] = ACTIONS(4498), - [anon_sym_expect] = ACTIONS(4498), - [anon_sym_actual] = ACTIONS(4498), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4500), - [anon_sym_continue_AT] = ACTIONS(4500), - [anon_sym_break_AT] = ACTIONS(4500), - [sym_real_literal] = ACTIONS(4500), - [sym_integer_literal] = ACTIONS(4498), - [sym_hex_literal] = ACTIONS(4500), - [sym_bin_literal] = ACTIONS(4500), - [anon_sym_true] = ACTIONS(4498), - [anon_sym_false] = ACTIONS(4498), - [anon_sym_SQUOTE] = ACTIONS(4500), - [sym__backtick_identifier] = ACTIONS(4500), - [sym__automatic_semicolon] = ACTIONS(4500), - [sym_safe_nav] = ACTIONS(4500), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4500), - }, - [2942] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - }, - [2943] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_RBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_RPAREN] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [anon_sym_DASH_GT] = ACTIONS(4396), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_catch] = ACTIONS(4394), - [anon_sym_finally] = 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), - }, - [2944] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_RBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [anon_sym_DASH_GT] = ACTIONS(4506), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_catch] = ACTIONS(4504), - [anon_sym_finally] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - }, - [2945] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_constructor] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - }, - [2946] = { - [sym_type_constraints] = STATE(3146), - [sym_enum_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [2947] = { - [sym_type_constraints] = STATE(3223), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [2948] = { - [sym_class_body] = STATE(3211), - [sym_type_constraints] = STATE(3137), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [2949] = { - [sym_type_constraints] = STATE(3146), - [sym_enum_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [2950] = { - [sym_class_body] = STATE(3203), - [sym_type_constraints] = STATE(3150), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4490), - [anon_sym_fun] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_this] = ACTIONS(4490), - [anon_sym_super] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4490), - [anon_sym_if] = ACTIONS(4490), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_when] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4490), - [anon_sym_throw] = ACTIONS(4490), - [anon_sym_return] = ACTIONS(4490), - [anon_sym_continue] = ACTIONS(4490), - [anon_sym_break] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4492), - [anon_sym_continue_AT] = ACTIONS(4492), - [anon_sym_break_AT] = ACTIONS(4492), - [sym_real_literal] = ACTIONS(4492), - [sym_integer_literal] = ACTIONS(4490), - [sym_hex_literal] = ACTIONS(4492), - [sym_bin_literal] = ACTIONS(4492), - [anon_sym_true] = ACTIONS(4490), - [anon_sym_false] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4492), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4492), - }, - [2951] = { - [aux_sym_type_constraints_repeat1] = STATE(2955), - [sym__alpha_identifier] = ACTIONS(4398), - [anon_sym_AT] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [anon_sym_RBRACK] = ACTIONS(4400), - [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(6435), - [anon_sym_RPAREN] = ACTIONS(4400), - [anon_sym_by] = ACTIONS(4398), - [anon_sym_LT] = ACTIONS(4398), - [anon_sym_GT] = ACTIONS(4398), - [anon_sym_where] = ACTIONS(4398), - [anon_sym_DOT] = 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_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), - }, - [2952] = { - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [2953] = { - [sym_class_body] = STATE(3211), - [sym_type_constraints] = STATE(3137), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [2954] = { - [sym_class_body] = STATE(3181), - [sym_type_constraints] = STATE(3173), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [2955] = { - [aux_sym_type_constraints_repeat1] = STATE(2955), - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_RBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(4412), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [anon_sym_DASH_GT] = ACTIONS(4412), - [sym_label] = ACTIONS(4412), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_while] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - }, - [2956] = { - [sym__alpha_identifier] = ACTIONS(4478), - [anon_sym_AT] = ACTIONS(4480), - [anon_sym_COLON] = ACTIONS(4478), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_RBRACK] = ACTIONS(4480), - [anon_sym_as] = ACTIONS(4478), - [anon_sym_EQ] = ACTIONS(4478), - [anon_sym_constructor] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(4480), - [anon_sym_RBRACE] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4480), - [anon_sym_COMMA] = ACTIONS(4480), - [anon_sym_RPAREN] = ACTIONS(4480), - [anon_sym_LT] = ACTIONS(4478), - [anon_sym_GT] = ACTIONS(4478), - [anon_sym_where] = ACTIONS(4478), - [anon_sym_DOT] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(4480), - [anon_sym_get] = ACTIONS(4478), - [anon_sym_set] = ACTIONS(4478), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_DASH_GT] = ACTIONS(4480), - [sym_label] = ACTIONS(4480), - [anon_sym_in] = ACTIONS(4478), - [anon_sym_while] = ACTIONS(4478), - [anon_sym_DOT_DOT] = ACTIONS(4480), - [anon_sym_QMARK_COLON] = ACTIONS(4480), - [anon_sym_AMP_AMP] = ACTIONS(4480), - [anon_sym_PIPE_PIPE] = ACTIONS(4480), - [anon_sym_else] = ACTIONS(4478), - [anon_sym_COLON_COLON] = ACTIONS(4480), - [anon_sym_PLUS_EQ] = ACTIONS(4480), - [anon_sym_DASH_EQ] = ACTIONS(4480), - [anon_sym_STAR_EQ] = ACTIONS(4480), - [anon_sym_SLASH_EQ] = ACTIONS(4480), - [anon_sym_PERCENT_EQ] = ACTIONS(4480), - [anon_sym_BANG_EQ] = ACTIONS(4478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4480), - [anon_sym_EQ_EQ] = ACTIONS(4478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4480), - [anon_sym_LT_EQ] = ACTIONS(4480), - [anon_sym_GT_EQ] = ACTIONS(4480), - [anon_sym_BANGin] = ACTIONS(4480), - [anon_sym_is] = ACTIONS(4478), - [anon_sym_BANGis] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_as_QMARK] = ACTIONS(4480), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_BANG_BANG] = ACTIONS(4480), - [anon_sym_suspend] = ACTIONS(4478), - [anon_sym_sealed] = ACTIONS(4478), - [anon_sym_annotation] = ACTIONS(4478), - [anon_sym_data] = ACTIONS(4478), - [anon_sym_inner] = ACTIONS(4478), - [anon_sym_value] = ACTIONS(4478), - [anon_sym_override] = ACTIONS(4478), - [anon_sym_lateinit] = ACTIONS(4478), - [anon_sym_public] = ACTIONS(4478), - [anon_sym_private] = ACTIONS(4478), - [anon_sym_internal] = ACTIONS(4478), - [anon_sym_protected] = ACTIONS(4478), - [anon_sym_tailrec] = ACTIONS(4478), - [anon_sym_operator] = ACTIONS(4478), - [anon_sym_infix] = ACTIONS(4478), - [anon_sym_inline] = ACTIONS(4478), - [anon_sym_external] = ACTIONS(4478), - [sym_property_modifier] = ACTIONS(4478), - [anon_sym_abstract] = ACTIONS(4478), - [anon_sym_final] = ACTIONS(4478), - [anon_sym_open] = ACTIONS(4478), - [anon_sym_vararg] = ACTIONS(4478), - [anon_sym_noinline] = ACTIONS(4478), - [anon_sym_crossinline] = ACTIONS(4478), - [anon_sym_expect] = ACTIONS(4478), - [anon_sym_actual] = ACTIONS(4478), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4480), - [sym_safe_nav] = ACTIONS(4480), - [sym_multiline_comment] = ACTIONS(3), - }, - [2957] = { - [sym_class_body] = STATE(3242), - [sym_type_constraints] = STATE(3116), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_this] = ACTIONS(4508), - [anon_sym_super] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_throw] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4510), - [anon_sym_continue_AT] = ACTIONS(4510), - [anon_sym_break_AT] = ACTIONS(4510), - [sym_real_literal] = ACTIONS(4510), - [sym_integer_literal] = ACTIONS(4508), - [sym_hex_literal] = ACTIONS(4510), - [sym_bin_literal] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_SQUOTE] = ACTIONS(4510), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4510), - }, - [2958] = { - [sym_type_constraints] = STATE(3115), - [sym_enum_class_body] = STATE(3244), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3152), - [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(3128), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), - }, - [2959] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [2960] = { - [sym_class_body] = STATE(3333), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(6442), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_RBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_DASH_GT] = ACTIONS(4522), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_while] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - }, - [2961] = { - [sym_class_body] = STATE(3459), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(6444), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_RBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_RPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - }, - [2962] = { - [sym_type_constraints] = STATE(3253), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [2963] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [anon_sym_DASH_GT] = ACTIONS(4460), - [sym_label] = ACTIONS(4460), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_value] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6446), - [anon_sym_L] = ACTIONS(6448), - [sym__backtick_identifier] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, [2964] = { - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_RBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [anon_sym_DASH_GT] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [2965] = { - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_getter] = STATE(5183), + [sym_setter] = STATE(5183), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, [2966] = { - [sym_class_body] = STATE(3453), - [sym_type_constraints] = STATE(3087), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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_getter] = STATE(5177), + [sym_setter] = STATE(5177), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, [2967] = { - [sym_class_body] = STATE(3244), - [sym_type_constraints] = STATE(3093), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3122), - [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(3128), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, [2968] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_catch] = ACTIONS(4394), - [anon_sym_finally] = 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), - [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), + [sym_getter] = STATE(3958), + [sym_setter] = STATE(3958), + [sym_modifiers] = STATE(9392), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6364), + [anon_sym_set] = ACTIONS(6366), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, [2969] = { - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_getter] = STATE(5134), + [sym_setter] = STATE(5134), + [sym_modifiers] = STATE(9310), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5789), + [sym__multi_annotation] = STATE(5789), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(6380), + [anon_sym_set] = ACTIONS(6382), + [anon_sym_STAR] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3326), + [anon_sym_actual] = ACTIONS(3326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), }, [2970] = { - [sym_catch_block] = STATE(3159), - [sym_finally_block] = STATE(3886), - [aux_sym_try_expression_repeat1] = STATE(3159), - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [sym_label] = ACTIONS(4027), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_catch] = ACTIONS(6450), - [anon_sym_finally] = ACTIONS(6452), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4027), - [sym__automatic_semicolon] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [2971] = { - [sym_class_body] = STATE(3179), - [sym_type_constraints] = STATE(3163), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6454), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4672), + [anon_sym_continue_AT] = ACTIONS(4672), + [anon_sym_break_AT] = ACTIONS(4672), + [anon_sym_this_AT] = ACTIONS(4672), + [anon_sym_super_AT] = ACTIONS(4672), + [sym_real_literal] = ACTIONS(4672), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4672), + [sym_bin_literal] = ACTIONS(4672), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4672), }, [2972] = { - [sym_type_constraints] = STATE(3088), - [sym_enum_class_body] = STATE(3262), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_object] = ACTIONS(4543), + [anon_sym_fun] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_this] = ACTIONS(4543), + [anon_sym_super] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4543), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4543), + [anon_sym_if] = ACTIONS(4543), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_throw] = ACTIONS(4543), + [anon_sym_return] = ACTIONS(4543), + [anon_sym_continue] = ACTIONS(4543), + [anon_sym_break] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4545), + [anon_sym_continue_AT] = ACTIONS(4545), + [anon_sym_break_AT] = ACTIONS(4545), + [anon_sym_this_AT] = ACTIONS(4545), + [anon_sym_super_AT] = ACTIONS(4545), + [sym_real_literal] = ACTIONS(4545), + [sym_integer_literal] = ACTIONS(4543), + [sym_hex_literal] = ACTIONS(4545), + [sym_bin_literal] = ACTIONS(4545), + [anon_sym_true] = ACTIONS(4543), + [anon_sym_false] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4545), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4545), }, [2973] = { - [aux_sym_type_constraints_repeat1] = STATE(2951), - [sym__alpha_identifier] = ACTIONS(4433), - [anon_sym_AT] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_as] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_by] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_where] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4433), - [anon_sym_SEMI] = ACTIONS(4435), - [anon_sym_get] = ACTIONS(4433), - [anon_sym_set] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_DASH_GT] = ACTIONS(4435), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4433), - [anon_sym_while] = ACTIONS(4433), - [anon_sym_DOT_DOT] = ACTIONS(4435), - [anon_sym_QMARK_COLON] = ACTIONS(4435), - [anon_sym_AMP_AMP] = ACTIONS(4435), - [anon_sym_PIPE_PIPE] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4433), - [anon_sym_COLON_COLON] = ACTIONS(4435), - [anon_sym_PLUS_EQ] = ACTIONS(4435), - [anon_sym_DASH_EQ] = ACTIONS(4435), - [anon_sym_STAR_EQ] = ACTIONS(4435), - [anon_sym_SLASH_EQ] = ACTIONS(4435), - [anon_sym_PERCENT_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), - [anon_sym_LT_EQ] = ACTIONS(4435), - [anon_sym_GT_EQ] = ACTIONS(4435), - [anon_sym_BANGin] = ACTIONS(4435), - [anon_sym_is] = ACTIONS(4433), - [anon_sym_BANGis] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_PERCENT] = ACTIONS(4433), - [anon_sym_as_QMARK] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4435), - [anon_sym_suspend] = ACTIONS(4433), - [anon_sym_sealed] = ACTIONS(4433), - [anon_sym_annotation] = ACTIONS(4433), - [anon_sym_data] = ACTIONS(4433), - [anon_sym_inner] = ACTIONS(4433), - [anon_sym_value] = ACTIONS(4433), - [anon_sym_override] = ACTIONS(4433), - [anon_sym_lateinit] = ACTIONS(4433), - [anon_sym_public] = ACTIONS(4433), - [anon_sym_private] = ACTIONS(4433), - [anon_sym_internal] = ACTIONS(4433), - [anon_sym_protected] = ACTIONS(4433), - [anon_sym_tailrec] = ACTIONS(4433), - [anon_sym_operator] = ACTIONS(4433), - [anon_sym_infix] = ACTIONS(4433), - [anon_sym_inline] = ACTIONS(4433), - [anon_sym_external] = ACTIONS(4433), - [sym_property_modifier] = ACTIONS(4433), - [anon_sym_abstract] = ACTIONS(4433), - [anon_sym_final] = ACTIONS(4433), - [anon_sym_open] = ACTIONS(4433), - [anon_sym_vararg] = ACTIONS(4433), - [anon_sym_noinline] = ACTIONS(4433), - [anon_sym_crossinline] = ACTIONS(4433), - [anon_sym_expect] = ACTIONS(4433), - [anon_sym_actual] = ACTIONS(4433), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4435), - [sym_safe_nav] = ACTIONS(4435), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6567), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_DASH_GT] = ACTIONS(4239), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_while] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), }, [2974] = { - [sym_class_body] = STATE(3179), - [sym_type_constraints] = STATE(3163), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [anon_sym_AT2] = ACTIONS(6569), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), }, [2975] = { - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6571), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [2976] = { - [sym_type_constraints] = STATE(3088), - [sym_enum_class_body] = STATE(3262), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6456), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym_annotated_lambda] = STATE(3935), + [sym_lambda_literal] = STATE(4039), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), }, [2977] = { - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [aux_sym_nullable_type_repeat1] = STATE(3043), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [sym__quest] = ACTIONS(6573), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_DASH_GT] = ACTIONS(4305), + [sym_label] = ACTIONS(4305), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_while] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, [2978] = { - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_RBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym_annotated_lambda] = STATE(3981), + [sym_lambda_literal] = STATE(4039), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), [sym_multiline_comment] = ACTIONS(3), }, [2979] = { - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_RBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [anon_sym_DASH_GT] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6575), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_DASH_GT] = ACTIONS(4239), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_while] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), }, [2980] = { - [sym_function_body] = STATE(3291), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_RBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_DASH_GT] = ACTIONS(4514), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6577), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [2981] = { - [sym_class_body] = STATE(3380), - [sym_type_constraints] = STATE(3069), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_RBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_RPAREN] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [anon_sym_DASH_GT] = ACTIONS(4510), - [sym_label] = ACTIONS(4510), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_while] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(3034), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(6579), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, [2982] = { - [sym_type_constraints] = STATE(3080), - [sym_enum_class_body] = STATE(3269), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3152), - [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(3128), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), }, [2983] = { - [sym__alpha_identifier] = ACTIONS(4346), - [anon_sym_AT] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_RBRACK] = ACTIONS(4348), - [anon_sym_as] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(4346), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4346), - [anon_sym_GT] = ACTIONS(4346), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(4346), - [anon_sym_SEMI] = ACTIONS(4348), - [anon_sym_get] = ACTIONS(4346), - [anon_sym_set] = ACTIONS(4346), - [sym__quest] = ACTIONS(4346), - [anon_sym_STAR] = ACTIONS(4346), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4348), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_while] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_QMARK_COLON] = ACTIONS(4348), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_else] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(4348), - [anon_sym_PLUS_EQ] = ACTIONS(4348), - [anon_sym_DASH_EQ] = ACTIONS(4348), - [anon_sym_STAR_EQ] = ACTIONS(4348), - [anon_sym_SLASH_EQ] = ACTIONS(4348), - [anon_sym_PERCENT_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4348), - [anon_sym_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_BANGin] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4346), - [anon_sym_BANGis] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4346), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_SLASH] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_as_QMARK] = ACTIONS(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_BANG_BANG] = ACTIONS(4348), - [anon_sym_suspend] = ACTIONS(4346), - [anon_sym_sealed] = ACTIONS(4346), - [anon_sym_annotation] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4346), - [anon_sym_inner] = ACTIONS(4346), - [anon_sym_value] = ACTIONS(4346), - [anon_sym_override] = ACTIONS(4346), - [anon_sym_lateinit] = ACTIONS(4346), - [anon_sym_public] = ACTIONS(4346), - [anon_sym_private] = ACTIONS(4346), - [anon_sym_internal] = ACTIONS(4346), - [anon_sym_protected] = ACTIONS(4346), - [anon_sym_tailrec] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(4346), - [anon_sym_infix] = ACTIONS(4346), - [anon_sym_inline] = ACTIONS(4346), - [anon_sym_external] = ACTIONS(4346), - [sym_property_modifier] = ACTIONS(4346), - [anon_sym_abstract] = ACTIONS(4346), - [anon_sym_final] = ACTIONS(4346), - [anon_sym_open] = ACTIONS(4346), - [anon_sym_vararg] = ACTIONS(4346), - [anon_sym_noinline] = ACTIONS(4346), - [anon_sym_crossinline] = ACTIONS(4346), - [anon_sym_expect] = ACTIONS(4346), - [anon_sym_actual] = ACTIONS(4346), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4348), - [sym_safe_nav] = ACTIONS(4348), + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [2984] = { - [aux_sym_user_type_repeat1] = STATE(2839), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_RBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_RPAREN] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6458), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_DASH_GT] = ACTIONS(4142), - [sym_label] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6581), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [2985] = { - [sym_type_constraints] = STATE(3063), - [sym_enum_class_body] = STATE(3370), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5188), - [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(5194), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_while] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), }, [2986] = { - [sym_value_arguments] = STATE(3362), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(6461), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [2987] = { - [sym__alpha_identifier] = ACTIONS(4494), - [anon_sym_AT] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4496), - [anon_sym_RBRACK] = ACTIONS(4496), - [anon_sym_as] = ACTIONS(4494), - [anon_sym_EQ] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(4496), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_COMMA] = ACTIONS(4496), - [anon_sym_RPAREN] = ACTIONS(4496), - [anon_sym_LT] = ACTIONS(4494), - [anon_sym_GT] = ACTIONS(4494), - [anon_sym_where] = ACTIONS(4494), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_SEMI] = ACTIONS(4496), - [anon_sym_get] = ACTIONS(4494), - [anon_sym_set] = ACTIONS(4494), - [anon_sym_STAR] = ACTIONS(4494), - [anon_sym_DASH_GT] = ACTIONS(4496), - [sym_label] = ACTIONS(4496), - [anon_sym_in] = ACTIONS(4494), - [anon_sym_while] = ACTIONS(4494), - [anon_sym_DOT_DOT] = ACTIONS(4496), - [anon_sym_QMARK_COLON] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4496), - [anon_sym_PIPE_PIPE] = ACTIONS(4496), - [anon_sym_else] = ACTIONS(4494), - [anon_sym_catch] = ACTIONS(4494), - [anon_sym_finally] = ACTIONS(4494), - [anon_sym_COLON_COLON] = ACTIONS(4496), - [anon_sym_PLUS_EQ] = ACTIONS(4496), - [anon_sym_DASH_EQ] = ACTIONS(4496), - [anon_sym_STAR_EQ] = ACTIONS(4496), - [anon_sym_SLASH_EQ] = ACTIONS(4496), - [anon_sym_PERCENT_EQ] = ACTIONS(4496), - [anon_sym_BANG_EQ] = ACTIONS(4494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), - [anon_sym_EQ_EQ] = ACTIONS(4494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), - [anon_sym_LT_EQ] = ACTIONS(4496), - [anon_sym_GT_EQ] = ACTIONS(4496), - [anon_sym_BANGin] = ACTIONS(4496), - [anon_sym_is] = ACTIONS(4494), - [anon_sym_BANGis] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4494), - [anon_sym_DASH] = ACTIONS(4494), - [anon_sym_SLASH] = ACTIONS(4494), - [anon_sym_PERCENT] = ACTIONS(4494), - [anon_sym_as_QMARK] = ACTIONS(4496), - [anon_sym_PLUS_PLUS] = ACTIONS(4496), - [anon_sym_DASH_DASH] = ACTIONS(4496), - [anon_sym_BANG_BANG] = ACTIONS(4496), - [anon_sym_suspend] = ACTIONS(4494), - [anon_sym_sealed] = ACTIONS(4494), - [anon_sym_annotation] = ACTIONS(4494), - [anon_sym_data] = ACTIONS(4494), - [anon_sym_inner] = ACTIONS(4494), - [anon_sym_value] = ACTIONS(4494), - [anon_sym_override] = ACTIONS(4494), - [anon_sym_lateinit] = ACTIONS(4494), - [anon_sym_public] = ACTIONS(4494), - [anon_sym_private] = ACTIONS(4494), - [anon_sym_internal] = ACTIONS(4494), - [anon_sym_protected] = ACTIONS(4494), - [anon_sym_tailrec] = ACTIONS(4494), - [anon_sym_operator] = ACTIONS(4494), - [anon_sym_infix] = ACTIONS(4494), - [anon_sym_inline] = ACTIONS(4494), - [anon_sym_external] = ACTIONS(4494), - [sym_property_modifier] = ACTIONS(4494), - [anon_sym_abstract] = ACTIONS(4494), - [anon_sym_final] = ACTIONS(4494), - [anon_sym_open] = ACTIONS(4494), - [anon_sym_vararg] = ACTIONS(4494), - [anon_sym_noinline] = ACTIONS(4494), - [anon_sym_crossinline] = ACTIONS(4494), - [anon_sym_expect] = ACTIONS(4494), - [anon_sym_actual] = ACTIONS(4494), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4496), - [sym_safe_nav] = ACTIONS(4496), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, [2988] = { - [sym__alpha_identifier] = ACTIONS(4482), - [anon_sym_AT] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_RBRACK] = ACTIONS(4484), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_EQ] = ACTIONS(4482), - [anon_sym_constructor] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_RPAREN] = ACTIONS(4484), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_SEMI] = ACTIONS(4484), - [anon_sym_get] = ACTIONS(4482), - [anon_sym_set] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4482), - [anon_sym_DASH_GT] = ACTIONS(4484), - [sym_label] = ACTIONS(4484), - [anon_sym_in] = ACTIONS(4482), - [anon_sym_while] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_QMARK_COLON] = ACTIONS(4484), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [anon_sym_else] = ACTIONS(4482), - [anon_sym_COLON_COLON] = ACTIONS(4484), - [anon_sym_PLUS_EQ] = ACTIONS(4484), - [anon_sym_DASH_EQ] = ACTIONS(4484), - [anon_sym_STAR_EQ] = ACTIONS(4484), - [anon_sym_SLASH_EQ] = ACTIONS(4484), - [anon_sym_PERCENT_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_BANGin] = ACTIONS(4484), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_BANGis] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4482), - [anon_sym_as_QMARK] = ACTIONS(4484), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_BANG_BANG] = ACTIONS(4484), - [anon_sym_suspend] = ACTIONS(4482), - [anon_sym_sealed] = ACTIONS(4482), - [anon_sym_annotation] = ACTIONS(4482), - [anon_sym_data] = ACTIONS(4482), - [anon_sym_inner] = ACTIONS(4482), - [anon_sym_value] = ACTIONS(4482), - [anon_sym_override] = ACTIONS(4482), - [anon_sym_lateinit] = ACTIONS(4482), - [anon_sym_public] = ACTIONS(4482), - [anon_sym_private] = ACTIONS(4482), - [anon_sym_internal] = ACTIONS(4482), - [anon_sym_protected] = ACTIONS(4482), - [anon_sym_tailrec] = ACTIONS(4482), - [anon_sym_operator] = ACTIONS(4482), - [anon_sym_infix] = ACTIONS(4482), - [anon_sym_inline] = ACTIONS(4482), - [anon_sym_external] = ACTIONS(4482), - [sym_property_modifier] = ACTIONS(4482), - [anon_sym_abstract] = ACTIONS(4482), - [anon_sym_final] = ACTIONS(4482), - [anon_sym_open] = ACTIONS(4482), - [anon_sym_vararg] = ACTIONS(4482), - [anon_sym_noinline] = ACTIONS(4482), - [anon_sym_crossinline] = ACTIONS(4482), - [anon_sym_expect] = ACTIONS(4482), - [anon_sym_actual] = ACTIONS(4482), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4484), - [sym_safe_nav] = ACTIONS(4484), - [sym_multiline_comment] = ACTIONS(3), - }, - [2989] = { - [sym__alpha_identifier] = ACTIONS(4498), - [anon_sym_AT] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_RBRACK] = ACTIONS(4500), - [anon_sym_as] = ACTIONS(4498), - [anon_sym_EQ] = ACTIONS(4498), - [anon_sym_LBRACE] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4500), - [anon_sym_LPAREN] = ACTIONS(4500), - [anon_sym_COMMA] = ACTIONS(4500), - [anon_sym_RPAREN] = ACTIONS(4500), - [anon_sym_LT] = ACTIONS(4498), - [anon_sym_GT] = ACTIONS(4498), - [anon_sym_where] = ACTIONS(4498), - [anon_sym_DOT] = ACTIONS(4498), - [anon_sym_SEMI] = ACTIONS(4500), - [anon_sym_get] = ACTIONS(4498), - [anon_sym_set] = ACTIONS(4498), - [anon_sym_STAR] = ACTIONS(4498), - [anon_sym_DASH_GT] = ACTIONS(4500), - [sym_label] = ACTIONS(4500), - [anon_sym_in] = ACTIONS(4498), - [anon_sym_while] = ACTIONS(4498), - [anon_sym_DOT_DOT] = ACTIONS(4500), - [anon_sym_QMARK_COLON] = ACTIONS(4500), - [anon_sym_AMP_AMP] = ACTIONS(4500), - [anon_sym_PIPE_PIPE] = ACTIONS(4500), - [anon_sym_else] = ACTIONS(4498), - [anon_sym_catch] = ACTIONS(4498), - [anon_sym_finally] = ACTIONS(4498), - [anon_sym_COLON_COLON] = ACTIONS(4500), - [anon_sym_PLUS_EQ] = ACTIONS(4500), - [anon_sym_DASH_EQ] = ACTIONS(4500), - [anon_sym_STAR_EQ] = ACTIONS(4500), - [anon_sym_SLASH_EQ] = ACTIONS(4500), - [anon_sym_PERCENT_EQ] = ACTIONS(4500), - [anon_sym_BANG_EQ] = ACTIONS(4498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), - [anon_sym_EQ_EQ] = ACTIONS(4498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), - [anon_sym_LT_EQ] = ACTIONS(4500), - [anon_sym_GT_EQ] = ACTIONS(4500), - [anon_sym_BANGin] = ACTIONS(4500), - [anon_sym_is] = ACTIONS(4498), - [anon_sym_BANGis] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4498), - [anon_sym_SLASH] = ACTIONS(4498), - [anon_sym_PERCENT] = ACTIONS(4498), - [anon_sym_as_QMARK] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_BANG_BANG] = ACTIONS(4500), - [anon_sym_suspend] = ACTIONS(4498), - [anon_sym_sealed] = ACTIONS(4498), - [anon_sym_annotation] = ACTIONS(4498), - [anon_sym_data] = ACTIONS(4498), - [anon_sym_inner] = ACTIONS(4498), - [anon_sym_value] = ACTIONS(4498), - [anon_sym_override] = ACTIONS(4498), - [anon_sym_lateinit] = ACTIONS(4498), - [anon_sym_public] = ACTIONS(4498), - [anon_sym_private] = ACTIONS(4498), - [anon_sym_internal] = ACTIONS(4498), - [anon_sym_protected] = ACTIONS(4498), - [anon_sym_tailrec] = ACTIONS(4498), - [anon_sym_operator] = ACTIONS(4498), - [anon_sym_infix] = ACTIONS(4498), - [anon_sym_inline] = ACTIONS(4498), - [anon_sym_external] = ACTIONS(4498), - [sym_property_modifier] = ACTIONS(4498), - [anon_sym_abstract] = ACTIONS(4498), - [anon_sym_final] = ACTIONS(4498), - [anon_sym_open] = ACTIONS(4498), - [anon_sym_vararg] = ACTIONS(4498), - [anon_sym_noinline] = ACTIONS(4498), - [anon_sym_crossinline] = ACTIONS(4498), - [anon_sym_expect] = ACTIONS(4498), - [anon_sym_actual] = ACTIONS(4498), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4500), - [sym_safe_nav] = ACTIONS(4500), - [sym_multiline_comment] = ACTIONS(3), - }, - [2990] = { - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [2991] = { - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [2992] = { - [sym_type_arguments] = STATE(6509), - [sym__alpha_identifier] = ACTIONS(4147), - [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(6463), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4149), - [anon_sym_LBRACE] = ACTIONS(4149), - [anon_sym_RBRACE] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_where] = ACTIONS(4147), - [anon_sym_object] = ACTIONS(4147), - [anon_sym_fun] = ACTIONS(4147), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4149), - [anon_sym_get] = ACTIONS(4147), - [anon_sym_set] = ACTIONS(4147), - [anon_sym_this] = ACTIONS(4147), - [anon_sym_super] = ACTIONS(4147), - [sym__quest] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4149), - [sym_label] = ACTIONS(4147), - [anon_sym_in] = ACTIONS(4147), - [anon_sym_null] = ACTIONS(4147), - [anon_sym_if] = ACTIONS(4147), - [anon_sym_else] = ACTIONS(4147), - [anon_sym_when] = ACTIONS(4147), - [anon_sym_try] = ACTIONS(4147), - [anon_sym_throw] = ACTIONS(4147), - [anon_sym_return] = ACTIONS(4147), - [anon_sym_continue] = ACTIONS(4147), - [anon_sym_break] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4149), - [anon_sym_BANGin] = ACTIONS(4149), - [anon_sym_is] = ACTIONS(4147), - [anon_sym_BANGis] = ACTIONS(4149), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS_PLUS] = ACTIONS(4149), - [anon_sym_DASH_DASH] = ACTIONS(4149), - [anon_sym_BANG] = ACTIONS(4147), - [anon_sym_suspend] = ACTIONS(4147), - [anon_sym_sealed] = ACTIONS(4147), - [anon_sym_annotation] = ACTIONS(4147), - [anon_sym_data] = ACTIONS(4147), - [anon_sym_inner] = ACTIONS(4147), - [anon_sym_value] = ACTIONS(4147), - [anon_sym_override] = ACTIONS(4147), - [anon_sym_lateinit] = ACTIONS(4147), - [anon_sym_public] = ACTIONS(4147), - [anon_sym_private] = ACTIONS(4147), - [anon_sym_internal] = ACTIONS(4147), - [anon_sym_protected] = ACTIONS(4147), - [anon_sym_tailrec] = ACTIONS(4147), - [anon_sym_operator] = ACTIONS(4147), - [anon_sym_infix] = ACTIONS(4147), - [anon_sym_inline] = ACTIONS(4147), - [anon_sym_external] = ACTIONS(4147), - [sym_property_modifier] = ACTIONS(4147), - [anon_sym_abstract] = ACTIONS(4147), - [anon_sym_final] = ACTIONS(4147), - [anon_sym_open] = ACTIONS(4147), - [anon_sym_vararg] = ACTIONS(4147), - [anon_sym_noinline] = ACTIONS(4147), - [anon_sym_crossinline] = ACTIONS(4147), - [anon_sym_expect] = ACTIONS(4147), - [anon_sym_actual] = ACTIONS(4147), + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4149), - [anon_sym_continue_AT] = ACTIONS(4149), - [anon_sym_break_AT] = ACTIONS(4149), - [sym_real_literal] = ACTIONS(4149), - [sym_integer_literal] = ACTIONS(4147), - [sym_hex_literal] = ACTIONS(4149), - [sym_bin_literal] = ACTIONS(4149), - [anon_sym_true] = ACTIONS(4147), - [anon_sym_false] = ACTIONS(4147), - [anon_sym_SQUOTE] = ACTIONS(4149), - [sym__backtick_identifier] = ACTIONS(4149), - [sym__automatic_semicolon] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [2989] = { + [sym_enum_class_body] = STATE(3118), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [2990] = { + [sym_class_body] = STATE(3133), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), + }, + [2991] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6583), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4149), + }, + [2992] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), }, [2993] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_object] = ACTIONS(4696), + [anon_sym_fun] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_this] = ACTIONS(4696), + [anon_sym_super] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_null] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_when] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_continue] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4698), + [anon_sym_continue_AT] = ACTIONS(4698), + [anon_sym_break_AT] = ACTIONS(4698), + [anon_sym_this_AT] = ACTIONS(4698), + [anon_sym_super_AT] = ACTIONS(4698), + [sym_real_literal] = ACTIONS(4698), + [sym_integer_literal] = ACTIONS(4696), + [sym_hex_literal] = ACTIONS(4698), + [sym_bin_literal] = ACTIONS(4698), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4698), }, [2994] = { - [sym_function_body] = STATE(3334), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_object] = ACTIONS(4674), + [anon_sym_fun] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_this] = ACTIONS(4674), + [anon_sym_super] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_when] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4674), + [anon_sym_throw] = ACTIONS(4674), + [anon_sym_return] = ACTIONS(4674), + [anon_sym_continue] = ACTIONS(4674), + [anon_sym_break] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4676), + [anon_sym_continue_AT] = ACTIONS(4676), + [anon_sym_break_AT] = ACTIONS(4676), + [anon_sym_this_AT] = ACTIONS(4676), + [anon_sym_super_AT] = ACTIONS(4676), + [sym_real_literal] = ACTIONS(4676), + [sym_integer_literal] = ACTIONS(4674), + [sym_hex_literal] = ACTIONS(4676), + [sym_bin_literal] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4674), + [anon_sym_false] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4676), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4676), }, [2995] = { - [sym_type_constraints] = STATE(3276), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_enum_class_body] = STATE(3133), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, [2996] = { - [sym_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(6467), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym_enum_class_body] = STATE(3150), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), }, [2997] = { - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym_class_body] = STATE(3167), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [2998] = { - [sym_class_body] = STATE(3234), - [sym_type_constraints] = STATE(3130), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), }, [2999] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_object] = ACTIONS(4559), + [anon_sym_fun] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_this] = ACTIONS(4559), + [anon_sym_super] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_when] = ACTIONS(4559), + [anon_sym_try] = ACTIONS(4559), + [anon_sym_throw] = ACTIONS(4559), + [anon_sym_return] = ACTIONS(4559), + [anon_sym_continue] = ACTIONS(4559), + [anon_sym_break] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4561), + [anon_sym_continue_AT] = ACTIONS(4561), + [anon_sym_break_AT] = ACTIONS(4561), + [anon_sym_this_AT] = ACTIONS(4561), + [anon_sym_super_AT] = ACTIONS(4561), + [sym_real_literal] = ACTIONS(4561), + [sym_integer_literal] = ACTIONS(4559), + [sym_hex_literal] = ACTIONS(4561), + [sym_bin_literal] = ACTIONS(4561), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_SQUOTE] = ACTIONS(4561), + [sym__backtick_identifier] = ACTIONS(4561), + [sym__automatic_semicolon] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4561), }, [3000] = { - [sym_function_body] = STATE(3298), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6585), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), }, [3001] = { - [sym_class_body] = STATE(3269), - [sym_type_constraints] = STATE(3074), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3122), - [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(3128), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [sym_enum_class_body] = STATE(3167), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [3002] = { - [sym_type_constraints] = STATE(3073), - [sym_enum_class_body] = STATE(3279), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4474), - [anon_sym_fun] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_this] = ACTIONS(4474), - [anon_sym_super] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4474), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_when] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_throw] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4476), - [anon_sym_continue_AT] = ACTIONS(4476), - [anon_sym_break_AT] = ACTIONS(4476), - [sym_real_literal] = ACTIONS(4476), - [sym_integer_literal] = ACTIONS(4474), - [sym_hex_literal] = ACTIONS(4476), - [sym_bin_literal] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4476), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4476), + [sym_class_body] = STATE(3171), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), }, [3003] = { - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_object] = ACTIONS(4758), + [anon_sym_fun] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_this] = ACTIONS(4758), + [anon_sym_super] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4758), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4758), + [anon_sym_if] = ACTIONS(4758), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_when] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4758), + [anon_sym_throw] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4758), + [anon_sym_continue] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_AT] = ACTIONS(4760), + [anon_sym_this_AT] = ACTIONS(4760), + [anon_sym_super_AT] = ACTIONS(4760), + [sym_real_literal] = ACTIONS(4760), + [sym_integer_literal] = ACTIONS(4758), + [sym_hex_literal] = ACTIONS(4760), + [sym_bin_literal] = ACTIONS(4760), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [anon_sym_SQUOTE] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4760), }, [3004] = { - [sym_class_body] = STATE(3370), - [sym_type_constraints] = STATE(3039), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5218), - [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(5194), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_while] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), [sym_multiline_comment] = ACTIONS(3), }, [3005] = { - [sym_type_constraints] = STATE(3040), - [sym_enum_class_body] = STATE(3331), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_RBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [3006] = { - [sym_function_body] = STATE(3337), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym_class_body] = STATE(3239), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [3007] = { - [sym__alpha_identifier] = ACTIONS(4494), - [anon_sym_AT] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4496), - [anon_sym_as] = ACTIONS(4494), - [anon_sym_EQ] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(4496), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_COMMA] = ACTIONS(4496), - [anon_sym_LT] = ACTIONS(4494), - [anon_sym_GT] = ACTIONS(4494), - [anon_sym_where] = ACTIONS(4494), - [anon_sym_object] = ACTIONS(4494), - [anon_sym_fun] = ACTIONS(4494), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_SEMI] = ACTIONS(4496), - [anon_sym_get] = ACTIONS(4494), - [anon_sym_set] = ACTIONS(4494), - [anon_sym_this] = ACTIONS(4494), - [anon_sym_super] = ACTIONS(4494), - [anon_sym_STAR] = ACTIONS(4494), - [sym_label] = ACTIONS(4494), - [anon_sym_in] = ACTIONS(4494), - [anon_sym_DOT_DOT] = ACTIONS(4496), - [anon_sym_QMARK_COLON] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4496), - [anon_sym_PIPE_PIPE] = ACTIONS(4496), - [anon_sym_null] = ACTIONS(4494), - [anon_sym_if] = ACTIONS(4494), - [anon_sym_else] = ACTIONS(4494), - [anon_sym_when] = ACTIONS(4494), - [anon_sym_try] = ACTIONS(4494), - [anon_sym_catch] = ACTIONS(4494), - [anon_sym_finally] = ACTIONS(4494), - [anon_sym_throw] = ACTIONS(4494), - [anon_sym_return] = ACTIONS(4494), - [anon_sym_continue] = ACTIONS(4494), - [anon_sym_break] = ACTIONS(4494), - [anon_sym_COLON_COLON] = ACTIONS(4496), - [anon_sym_PLUS_EQ] = ACTIONS(4496), - [anon_sym_DASH_EQ] = ACTIONS(4496), - [anon_sym_STAR_EQ] = ACTIONS(4496), - [anon_sym_SLASH_EQ] = ACTIONS(4496), - [anon_sym_PERCENT_EQ] = ACTIONS(4496), - [anon_sym_BANG_EQ] = ACTIONS(4494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), - [anon_sym_EQ_EQ] = ACTIONS(4494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), - [anon_sym_LT_EQ] = ACTIONS(4496), - [anon_sym_GT_EQ] = ACTIONS(4496), - [anon_sym_BANGin] = ACTIONS(4496), - [anon_sym_is] = ACTIONS(4494), - [anon_sym_BANGis] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4494), - [anon_sym_DASH] = ACTIONS(4494), - [anon_sym_SLASH] = ACTIONS(4494), - [anon_sym_PERCENT] = ACTIONS(4494), - [anon_sym_as_QMARK] = ACTIONS(4496), - [anon_sym_PLUS_PLUS] = ACTIONS(4496), - [anon_sym_DASH_DASH] = ACTIONS(4496), - [anon_sym_BANG] = ACTIONS(4494), - [anon_sym_BANG_BANG] = ACTIONS(4496), - [anon_sym_data] = ACTIONS(4494), - [anon_sym_inner] = ACTIONS(4494), - [anon_sym_value] = ACTIONS(4494), - [anon_sym_expect] = ACTIONS(4494), - [anon_sym_actual] = ACTIONS(4494), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4496), - [anon_sym_continue_AT] = ACTIONS(4496), - [anon_sym_break_AT] = ACTIONS(4496), - [sym_real_literal] = ACTIONS(4496), - [sym_integer_literal] = ACTIONS(4494), - [sym_hex_literal] = ACTIONS(4496), - [sym_bin_literal] = ACTIONS(4496), - [anon_sym_true] = ACTIONS(4494), - [anon_sym_false] = ACTIONS(4494), - [anon_sym_SQUOTE] = ACTIONS(4496), - [sym__backtick_identifier] = ACTIONS(4496), - [sym__automatic_semicolon] = ACTIONS(4496), - [sym_safe_nav] = ACTIONS(4496), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4496), + [sym_enum_class_body] = STATE(3239), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [3008] = { - [sym_value_arguments] = STATE(3418), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_RPAREN] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(6469), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [anon_sym_DASH_GT] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_while] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_EQ] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [sym__quest] = ACTIONS(4315), + [anon_sym_STAR] = ACTIONS(4315), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), }, [3009] = { - [sym_class_body] = STATE(3176), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(6471), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym_class_body] = STATE(3241), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), }, [3010] = { - [sym_type_constraints] = STATE(3287), - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_object] = ACTIONS(4551), + [anon_sym_fun] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_this] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_null] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_when] = ACTIONS(4551), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_throw] = ACTIONS(4551), + [anon_sym_return] = ACTIONS(4551), + [anon_sym_continue] = ACTIONS(4551), + [anon_sym_break] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4553), + [anon_sym_continue_AT] = ACTIONS(4553), + [anon_sym_break_AT] = ACTIONS(4553), + [anon_sym_this_AT] = ACTIONS(4553), + [anon_sym_super_AT] = ACTIONS(4553), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_SQUOTE] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4553), + [sym__automatic_semicolon] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4553), }, [3011] = { - [aux_sym_user_type_repeat1] = STATE(2828), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6473), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [sym_label] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), + [sym_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_object] = ACTIONS(4547), + [anon_sym_fun] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_this] = ACTIONS(4547), + [anon_sym_super] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [sym_label] = ACTIONS(4547), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_if] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_when] = ACTIONS(4547), + [anon_sym_try] = ACTIONS(4547), + [anon_sym_throw] = ACTIONS(4547), + [anon_sym_return] = ACTIONS(4547), + [anon_sym_continue] = ACTIONS(4547), + [anon_sym_break] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG] = ACTIONS(4547), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4549), + [anon_sym_continue_AT] = ACTIONS(4549), + [anon_sym_break_AT] = ACTIONS(4549), + [anon_sym_this_AT] = ACTIONS(4549), + [anon_sym_super_AT] = ACTIONS(4549), + [sym_real_literal] = ACTIONS(4549), + [sym_integer_literal] = ACTIONS(4547), + [sym_hex_literal] = ACTIONS(4549), + [sym_bin_literal] = ACTIONS(4549), + [anon_sym_true] = ACTIONS(4547), + [anon_sym_false] = ACTIONS(4547), + [anon_sym_SQUOTE] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4549), + [sym__automatic_semicolon] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4549), }, [3012] = { - [sym_type_constraints] = STATE(3070), - [sym_enum_class_body] = STATE(3289), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4429), - [anon_sym_fun] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_this] = ACTIONS(4429), - [anon_sym_super] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_when] = ACTIONS(4429), - [anon_sym_try] = ACTIONS(4429), - [anon_sym_throw] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4431), - [anon_sym_continue_AT] = ACTIONS(4431), - [anon_sym_break_AT] = ACTIONS(4431), - [sym_real_literal] = ACTIONS(4431), - [sym_integer_literal] = ACTIONS(4429), - [sym_hex_literal] = ACTIONS(4431), - [sym_bin_literal] = ACTIONS(4431), - [anon_sym_true] = ACTIONS(4429), - [anon_sym_false] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4431), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [3013] = { - [sym_class_body] = STATE(3267), - [sym_type_constraints] = STATE(3172), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_DASH_GT] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4319), + [sym__quest] = ACTIONS(4319), + [anon_sym_STAR] = ACTIONS(4319), + [sym_label] = ACTIONS(4317), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), }, [3014] = { - [sym_type_constraints] = STATE(3296), - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4168), + [sym__quest] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, [3015] = { - [aux_sym_user_type_repeat1] = STATE(3026), - [sym__alpha_identifier] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_EQ] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_COMMA] = ACTIONS(4077), - [anon_sym_by] = ACTIONS(4075), - [anon_sym_where] = ACTIONS(4075), - [anon_sym_object] = ACTIONS(4075), - [anon_sym_fun] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(6476), - [anon_sym_SEMI] = ACTIONS(4077), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_this] = ACTIONS(4075), - [anon_sym_super] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4077), - [sym__quest] = ACTIONS(4077), - [anon_sym_STAR] = ACTIONS(4077), - [sym_label] = ACTIONS(4075), - [anon_sym_in] = ACTIONS(4075), - [anon_sym_null] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_else] = ACTIONS(4075), - [anon_sym_when] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_throw] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4077), - [anon_sym_is] = ACTIONS(4075), - [anon_sym_BANGis] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_BANG] = ACTIONS(4075), - [anon_sym_suspend] = ACTIONS(4075), - [anon_sym_sealed] = ACTIONS(4075), - [anon_sym_annotation] = ACTIONS(4075), - [anon_sym_data] = ACTIONS(4075), - [anon_sym_inner] = ACTIONS(4075), - [anon_sym_value] = ACTIONS(4075), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_lateinit] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_internal] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_tailrec] = ACTIONS(4075), - [anon_sym_operator] = ACTIONS(4075), - [anon_sym_infix] = ACTIONS(4075), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_external] = ACTIONS(4075), - [sym_property_modifier] = ACTIONS(4075), - [anon_sym_abstract] = ACTIONS(4075), - [anon_sym_final] = ACTIONS(4075), - [anon_sym_open] = ACTIONS(4075), - [anon_sym_vararg] = ACTIONS(4075), - [anon_sym_noinline] = ACTIONS(4075), - [anon_sym_crossinline] = ACTIONS(4075), - [anon_sym_expect] = ACTIONS(4075), - [anon_sym_actual] = ACTIONS(4075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4077), - [anon_sym_continue_AT] = ACTIONS(4077), - [anon_sym_break_AT] = ACTIONS(4077), - [sym_real_literal] = ACTIONS(4077), - [sym_integer_literal] = ACTIONS(4075), - [sym_hex_literal] = ACTIONS(4077), - [sym_bin_literal] = ACTIONS(4077), - [anon_sym_true] = ACTIONS(4075), - [anon_sym_false] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [sym__backtick_identifier] = ACTIONS(4077), - [sym__automatic_semicolon] = ACTIONS(4077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4077), + [sym_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3016] = { - [sym_function_body] = STATE(3438), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_RBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_RPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_DASH_GT] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_type_constraints_repeat1] = STATE(3046), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6587), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_object] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_this] = ACTIONS(4339), + [anon_sym_super] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [sym_label] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_QMARK_COLON] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_PLUS_EQ] = ACTIONS(4341), + [anon_sym_DASH_EQ] = ACTIONS(4341), + [anon_sym_STAR_EQ] = ACTIONS(4341), + [anon_sym_SLASH_EQ] = ACTIONS(4341), + [anon_sym_PERCENT_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_BANG_BANG] = ACTIONS(4341), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4341), + [anon_sym_continue_AT] = ACTIONS(4341), + [anon_sym_break_AT] = ACTIONS(4341), + [anon_sym_this_AT] = ACTIONS(4341), + [anon_sym_super_AT] = ACTIONS(4341), + [sym_real_literal] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(4339), + [sym_hex_literal] = ACTIONS(4341), + [sym_bin_literal] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_safe_nav] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4341), }, [3017] = { - [sym_function_body] = STATE(3443), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_RBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_RPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_DASH_GT] = ACTIONS(4472), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_while] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(6589), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, [3018] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6337), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_DASH_GT] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_RBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_RPAREN] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [anon_sym_DASH_GT] = ACTIONS(4315), + [sym_label] = ACTIONS(4315), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), [sym_multiline_comment] = ACTIONS(3), }, [3019] = { - [sym_type_constraints] = STATE(3046), - [sym_enum_class_body] = STATE(3324), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5188), - [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(5194), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_DASH_GT] = ACTIONS(4319), + [sym_label] = ACTIONS(4319), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, [3020] = { - [sym_class_body] = STATE(3456), - [sym_type_constraints] = STATE(3117), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_RBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_RPAREN] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [anon_sym_DASH_GT] = ACTIONS(4492), - [sym_label] = ACTIONS(4492), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_while] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3021] = { - [sym_type_constraints] = STATE(3062), - [sym_enum_class_body] = STATE(3307), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [anon_sym_DASH_GT] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_while] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4168), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), [sym_multiline_comment] = ACTIONS(3), }, [3022] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_object] = ACTIONS(4750), + [anon_sym_fun] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_this] = ACTIONS(4750), + [anon_sym_super] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4750), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4750), + [anon_sym_if] = ACTIONS(4750), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_when] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4750), + [anon_sym_throw] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4750), + [anon_sym_continue] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4752), + [anon_sym_continue_AT] = ACTIONS(4752), + [anon_sym_break_AT] = ACTIONS(4752), + [anon_sym_this_AT] = ACTIONS(4752), + [anon_sym_super_AT] = ACTIONS(4752), + [sym_real_literal] = ACTIONS(4752), + [sym_integer_literal] = ACTIONS(4750), + [sym_hex_literal] = ACTIONS(4752), + [sym_bin_literal] = ACTIONS(4752), + [anon_sym_true] = ACTIONS(4750), + [anon_sym_false] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4752), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4752), + }, + [3023] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4754), + [anon_sym_if] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_when] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_throw] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_continue] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_AT] = ACTIONS(4756), + [anon_sym_this_AT] = ACTIONS(4756), + [anon_sym_super_AT] = ACTIONS(4756), + [sym_real_literal] = ACTIONS(4756), + [sym_integer_literal] = ACTIONS(4754), + [sym_hex_literal] = ACTIONS(4756), + [sym_bin_literal] = ACTIONS(4756), + [anon_sym_true] = ACTIONS(4754), + [anon_sym_false] = ACTIONS(4754), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4756), + }, + [3024] = { + [sym_class_body] = STATE(3247), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [3025] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3026] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_RBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_DASH_GT] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + }, + [3027] = { + [sym_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [3028] = { + [sym_class_body] = STATE(3228), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_object] = ACTIONS(4555), + [anon_sym_fun] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_this] = ACTIONS(4555), + [anon_sym_super] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4555), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_null] = ACTIONS(4555), + [anon_sym_if] = ACTIONS(4555), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_when] = ACTIONS(4555), + [anon_sym_try] = ACTIONS(4555), + [anon_sym_throw] = ACTIONS(4555), + [anon_sym_return] = ACTIONS(4555), + [anon_sym_continue] = ACTIONS(4555), + [anon_sym_break] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4557), + [anon_sym_continue_AT] = ACTIONS(4557), + [anon_sym_break_AT] = ACTIONS(4557), + [anon_sym_this_AT] = ACTIONS(4557), + [anon_sym_super_AT] = ACTIONS(4557), + [sym_real_literal] = ACTIONS(4557), + [sym_integer_literal] = ACTIONS(4555), + [sym_hex_literal] = ACTIONS(4557), + [sym_bin_literal] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(4555), + [anon_sym_false] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4557), + [sym__automatic_semicolon] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4557), + }, + [3029] = { + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_object] = ACTIONS(4571), + [anon_sym_fun] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_this] = ACTIONS(4571), + [anon_sym_super] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [sym_label] = ACTIONS(4571), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_null] = ACTIONS(4571), + [anon_sym_if] = ACTIONS(4571), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_try] = ACTIONS(4571), + [anon_sym_throw] = ACTIONS(4571), + [anon_sym_return] = ACTIONS(4571), + [anon_sym_continue] = ACTIONS(4571), + [anon_sym_break] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4573), + [anon_sym_continue_AT] = ACTIONS(4573), + [anon_sym_break_AT] = ACTIONS(4573), + [anon_sym_this_AT] = ACTIONS(4573), + [anon_sym_super_AT] = ACTIONS(4573), + [sym_real_literal] = ACTIONS(4573), + [sym_integer_literal] = ACTIONS(4571), + [sym_hex_literal] = ACTIONS(4573), + [sym_bin_literal] = ACTIONS(4573), + [anon_sym_true] = ACTIONS(4571), + [anon_sym_false] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4573), + }, + [3030] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4337), + [sym__quest] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [3031] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4681), + [anon_sym_continue_AT] = ACTIONS(4681), + [anon_sym_break_AT] = ACTIONS(4681), + [anon_sym_this_AT] = ACTIONS(4681), + [anon_sym_super_AT] = ACTIONS(4681), + [sym_real_literal] = ACTIONS(4681), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4681), + [sym_bin_literal] = ACTIONS(4681), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4681), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4681), + }, + [3032] = { + [aux_sym_nullable_type_repeat1] = STATE(3032), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_RPAREN] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [sym__quest] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4224), + [sym_label] = ACTIONS(4224), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + }, + [3033] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), + }, + [3034] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(6579), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [3035] = { + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6597), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + }, + [3036] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_object] = ACTIONS(4581), + [anon_sym_fun] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_this] = ACTIONS(4581), + [anon_sym_super] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4581), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4581), + [anon_sym_if] = ACTIONS(4581), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_when] = ACTIONS(4581), + [anon_sym_try] = ACTIONS(4581), + [anon_sym_throw] = ACTIONS(4581), + [anon_sym_return] = ACTIONS(4581), + [anon_sym_continue] = ACTIONS(4581), + [anon_sym_break] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4581), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4583), + [anon_sym_continue_AT] = ACTIONS(4583), + [anon_sym_break_AT] = ACTIONS(4583), + [anon_sym_this_AT] = ACTIONS(4583), + [anon_sym_super_AT] = ACTIONS(4583), + [sym_real_literal] = ACTIONS(4583), + [sym_integer_literal] = ACTIONS(4581), + [sym_hex_literal] = ACTIONS(4583), + [sym_bin_literal] = ACTIONS(4583), + [anon_sym_true] = ACTIONS(4581), + [anon_sym_false] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4583), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4583), + }, + [3037] = { + [aux_sym_nullable_type_repeat1] = STATE(3043), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_RBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [sym__quest] = ACTIONS(6573), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4206), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + }, + [3038] = { + [sym_type_constraints] = STATE(3189), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [3039] = { + [sym_class_body] = STATE(3206), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [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), + }, + [3040] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_object] = ACTIONS(4585), + [anon_sym_fun] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_this] = ACTIONS(4585), + [anon_sym_super] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_null] = ACTIONS(4585), + [anon_sym_if] = ACTIONS(4585), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_when] = ACTIONS(4585), + [anon_sym_try] = ACTIONS(4585), + [anon_sym_throw] = ACTIONS(4585), + [anon_sym_return] = ACTIONS(4585), + [anon_sym_continue] = ACTIONS(4585), + [anon_sym_break] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4587), + [anon_sym_continue_AT] = ACTIONS(4587), + [anon_sym_break_AT] = ACTIONS(4587), + [anon_sym_this_AT] = ACTIONS(4587), + [anon_sym_super_AT] = ACTIONS(4587), + [sym_real_literal] = ACTIONS(4587), + [sym_integer_literal] = ACTIONS(4585), + [sym_hex_literal] = ACTIONS(4587), + [sym_bin_literal] = ACTIONS(4587), + [anon_sym_true] = ACTIONS(4585), + [anon_sym_false] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4587), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4587), + }, + [3041] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_object] = ACTIONS(4577), + [anon_sym_fun] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_this] = ACTIONS(4577), + [anon_sym_super] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4577), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_when] = ACTIONS(4577), + [anon_sym_try] = ACTIONS(4577), + [anon_sym_throw] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4579), + [anon_sym_continue_AT] = ACTIONS(4579), + [anon_sym_break_AT] = ACTIONS(4579), + [anon_sym_this_AT] = ACTIONS(4579), + [anon_sym_super_AT] = ACTIONS(4579), + [sym_real_literal] = ACTIONS(4579), + [sym_integer_literal] = ACTIONS(4577), + [sym_hex_literal] = ACTIONS(4579), + [sym_bin_literal] = ACTIONS(4579), + [anon_sym_true] = ACTIONS(4577), + [anon_sym_false] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4579), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4579), + }, + [3042] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [3043] = { + [aux_sym_nullable_type_repeat1] = STATE(3032), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_RBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_RPAREN] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [sym__quest] = ACTIONS(6599), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_DASH_GT] = ACTIONS(4249), + [sym_label] = ACTIONS(4249), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_while] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + }, + [3044] = { + [sym_type_constraints] = STATE(3184), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3045] = { + [sym_type_constraints] = STATE(3147), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3046] = { + [aux_sym_type_constraints_repeat1] = STATE(3056), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6587), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_object] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_this] = ACTIONS(4424), + [anon_sym_super] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [sym_label] = ACTIONS(4424), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_when] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_throw] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4426), + [anon_sym_continue_AT] = ACTIONS(4426), + [anon_sym_break_AT] = ACTIONS(4426), + [anon_sym_this_AT] = ACTIONS(4426), + [anon_sym_super_AT] = ACTIONS(4426), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4426), + }, + [3047] = { + [sym_class_body] = STATE(3173), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [3048] = { + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_object] = ACTIONS(4563), + [anon_sym_fun] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_this] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4563), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_throw] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4565), + [anon_sym_continue_AT] = ACTIONS(4565), + [anon_sym_break_AT] = ACTIONS(4565), + [anon_sym_this_AT] = ACTIONS(4565), + [anon_sym_super_AT] = ACTIONS(4565), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_SQUOTE] = ACTIONS(4565), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4565), + }, + [3049] = { + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [3050] = { + [sym_type_constraints] = STATE(3136), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4147), [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(6353), [anon_sym_LBRACK] = ACTIONS(4149), [anon_sym_RBRACK] = ACTIONS(4149), [anon_sym_as] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(4149), [anon_sym_COMMA] = ACTIONS(4149), [anon_sym_RPAREN] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), [anon_sym_LT] = ACTIONS(4147), [anon_sym_GT] = ACTIONS(4147), - [anon_sym_where] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(4147), [anon_sym_SEMI] = ACTIONS(4149), [anon_sym_get] = ACTIONS(4147), @@ -356335,6923 +366408,4886 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [3023] = { - [sym_class_body] = STATE(3324), - [sym_type_constraints] = STATE(3052), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5218), - [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(5194), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3024] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_catch] = ACTIONS(4504), - [anon_sym_finally] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), - }, - [3025] = { - [aux_sym_user_type_repeat1] = STATE(3015), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_EQ] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4142), - [sym__quest] = ACTIONS(4142), - [anon_sym_STAR] = ACTIONS(4142), - [sym_label] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), - }, - [3026] = { - [aux_sym_user_type_repeat1] = STATE(3026), - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_EQ] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(6480), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4103), - [sym__quest] = ACTIONS(4103), - [anon_sym_STAR] = ACTIONS(4103), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), - }, - [3027] = { - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3316), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_RBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_RPAREN] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_DASH_GT] = ACTIONS(4476), - [sym_label] = ACTIONS(4476), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_while] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - }, - [3028] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3080), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3029] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_object] = ACTIONS(4705), - [anon_sym_fun] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_this] = ACTIONS(4705), - [anon_sym_super] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4705), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_null] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_when] = ACTIONS(4705), - [anon_sym_try] = ACTIONS(4705), - [anon_sym_throw] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4707), - [anon_sym_continue_AT] = ACTIONS(4707), - [anon_sym_break_AT] = ACTIONS(4707), - [sym_real_literal] = ACTIONS(4707), - [sym_integer_literal] = ACTIONS(4705), - [sym_hex_literal] = ACTIONS(4707), - [sym_bin_literal] = ACTIONS(4707), - [anon_sym_true] = ACTIONS(4705), - [anon_sym_false] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4707), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4707), - }, - [3030] = { - [sym__alpha_identifier] = ACTIONS(4548), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_object] = ACTIONS(4548), - [anon_sym_fun] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4548), - [anon_sym_set] = ACTIONS(4548), - [anon_sym_this] = ACTIONS(4548), - [anon_sym_super] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [sym_label] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4548), - [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(4548), - [anon_sym_if] = ACTIONS(4548), - [anon_sym_else] = ACTIONS(4548), - [anon_sym_when] = ACTIONS(4548), - [anon_sym_try] = ACTIONS(4548), - [anon_sym_throw] = ACTIONS(4548), - [anon_sym_return] = ACTIONS(4548), - [anon_sym_continue] = ACTIONS(4548), - [anon_sym_break] = ACTIONS(4548), - [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(4548), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [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(4548), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_as_QMARK] = ACTIONS(4551), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_BANG_BANG] = ACTIONS(4551), - [anon_sym_data] = ACTIONS(4548), - [anon_sym_inner] = ACTIONS(4548), - [anon_sym_value] = ACTIONS(4548), - [anon_sym_expect] = ACTIONS(4548), - [anon_sym_actual] = ACTIONS(4548), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4551), - [anon_sym_continue_AT] = ACTIONS(4551), - [anon_sym_break_AT] = ACTIONS(4551), - [sym_real_literal] = ACTIONS(4551), - [sym_integer_literal] = ACTIONS(4548), - [sym_hex_literal] = ACTIONS(4551), - [sym_bin_literal] = ACTIONS(4551), - [anon_sym_true] = ACTIONS(4548), - [anon_sym_false] = ACTIONS(4548), - [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), - }, - [3031] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [3032] = { - [aux_sym_type_constraints_repeat1] = STATE(3089), - [sym__alpha_identifier] = ACTIONS(4433), - [anon_sym_AT] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_as] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_where] = ACTIONS(4433), - [anon_sym_object] = ACTIONS(4433), - [anon_sym_fun] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4433), - [anon_sym_SEMI] = ACTIONS(4435), - [anon_sym_get] = ACTIONS(4433), - [anon_sym_set] = ACTIONS(4433), - [anon_sym_this] = ACTIONS(4433), - [anon_sym_super] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4433), - [anon_sym_DOT_DOT] = ACTIONS(4435), - [anon_sym_QMARK_COLON] = ACTIONS(4435), - [anon_sym_AMP_AMP] = ACTIONS(4435), - [anon_sym_PIPE_PIPE] = ACTIONS(4435), - [anon_sym_null] = ACTIONS(4433), - [anon_sym_if] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4433), - [anon_sym_when] = ACTIONS(4433), - [anon_sym_try] = ACTIONS(4433), - [anon_sym_throw] = ACTIONS(4433), - [anon_sym_return] = ACTIONS(4433), - [anon_sym_continue] = ACTIONS(4433), - [anon_sym_break] = ACTIONS(4433), - [anon_sym_COLON_COLON] = ACTIONS(4435), - [anon_sym_PLUS_EQ] = ACTIONS(4435), - [anon_sym_DASH_EQ] = ACTIONS(4435), - [anon_sym_STAR_EQ] = ACTIONS(4435), - [anon_sym_SLASH_EQ] = ACTIONS(4435), - [anon_sym_PERCENT_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), - [anon_sym_LT_EQ] = ACTIONS(4435), - [anon_sym_GT_EQ] = ACTIONS(4435), - [anon_sym_BANGin] = ACTIONS(4435), - [anon_sym_is] = ACTIONS(4433), - [anon_sym_BANGis] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_PERCENT] = ACTIONS(4433), - [anon_sym_as_QMARK] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_BANG_BANG] = ACTIONS(4435), - [anon_sym_data] = ACTIONS(4433), - [anon_sym_inner] = ACTIONS(4433), - [anon_sym_value] = ACTIONS(4433), - [anon_sym_expect] = ACTIONS(4433), - [anon_sym_actual] = ACTIONS(4433), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4435), - [anon_sym_continue_AT] = ACTIONS(4435), - [anon_sym_break_AT] = ACTIONS(4435), - [sym_real_literal] = ACTIONS(4435), - [sym_integer_literal] = ACTIONS(4433), - [sym_hex_literal] = ACTIONS(4435), - [sym_bin_literal] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4433), - [anon_sym_false] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4435), - [sym__backtick_identifier] = ACTIONS(4435), - [sym__automatic_semicolon] = ACTIONS(4435), - [sym_safe_nav] = ACTIONS(4435), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4435), - }, - [3033] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_RBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_RPAREN] = ACTIONS(4687), - [anon_sym_by] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_DASH_GT] = ACTIONS(4687), - [sym_label] = ACTIONS(4687), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), - }, - [3034] = { - [sym_function_body] = STATE(3339), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), - }, - [3035] = { - [sym__alpha_identifier] = ACTIONS(4669), - [anon_sym_AT] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_where] = ACTIONS(4669), - [anon_sym_object] = ACTIONS(4669), - [anon_sym_fun] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4671), - [anon_sym_get] = ACTIONS(4669), - [anon_sym_set] = ACTIONS(4669), - [anon_sym_this] = ACTIONS(4669), - [anon_sym_super] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [sym_label] = ACTIONS(4669), - [anon_sym_in] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4671), - [anon_sym_QMARK_COLON] = ACTIONS(4671), - [anon_sym_AMP_AMP] = ACTIONS(4671), - [anon_sym_PIPE_PIPE] = ACTIONS(4671), - [anon_sym_null] = ACTIONS(4669), - [anon_sym_if] = ACTIONS(4669), - [anon_sym_else] = ACTIONS(4669), - [anon_sym_when] = ACTIONS(4669), - [anon_sym_try] = ACTIONS(4669), - [anon_sym_throw] = ACTIONS(4669), - [anon_sym_return] = ACTIONS(4669), - [anon_sym_continue] = ACTIONS(4669), - [anon_sym_break] = ACTIONS(4669), - [anon_sym_COLON_COLON] = ACTIONS(4671), - [anon_sym_PLUS_EQ] = ACTIONS(4671), - [anon_sym_DASH_EQ] = ACTIONS(4671), - [anon_sym_STAR_EQ] = ACTIONS(4671), - [anon_sym_SLASH_EQ] = ACTIONS(4671), - [anon_sym_PERCENT_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4671), - [anon_sym_LT_EQ] = ACTIONS(4671), - [anon_sym_GT_EQ] = ACTIONS(4671), - [anon_sym_BANGin] = ACTIONS(4671), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_BANGis] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_as_QMARK] = ACTIONS(4671), - [anon_sym_PLUS_PLUS] = ACTIONS(4671), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_BANG_BANG] = ACTIONS(4671), - [anon_sym_data] = ACTIONS(4669), - [anon_sym_inner] = ACTIONS(4669), - [anon_sym_value] = ACTIONS(4669), - [anon_sym_expect] = ACTIONS(4669), - [anon_sym_actual] = ACTIONS(4669), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4671), - [anon_sym_continue_AT] = ACTIONS(4671), - [anon_sym_break_AT] = ACTIONS(4671), - [sym_real_literal] = ACTIONS(4671), - [sym_integer_literal] = ACTIONS(4669), - [sym_hex_literal] = ACTIONS(4671), - [sym_bin_literal] = ACTIONS(4671), - [anon_sym_true] = ACTIONS(4669), - [anon_sym_false] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4671), - [sym__backtick_identifier] = ACTIONS(4671), - [sym__automatic_semicolon] = ACTIONS(4671), - [sym_safe_nav] = ACTIONS(4671), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4671), - }, - [3036] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3029), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3037] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3071), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(6533), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_object] = ACTIONS(4576), - [anon_sym_fun] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_this] = ACTIONS(4576), - [anon_sym_super] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4576), - [sym_label] = ACTIONS(4576), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_null] = ACTIONS(4576), - [anon_sym_if] = ACTIONS(4576), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_when] = ACTIONS(4576), - [anon_sym_try] = ACTIONS(4576), - [anon_sym_throw] = ACTIONS(4576), - [anon_sym_return] = ACTIONS(4576), - [anon_sym_continue] = ACTIONS(4576), - [anon_sym_break] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_PLUS_EQ] = ACTIONS(4578), - [anon_sym_DASH_EQ] = ACTIONS(4578), - [anon_sym_STAR_EQ] = ACTIONS(4578), - [anon_sym_SLASH_EQ] = ACTIONS(4578), - [anon_sym_PERCENT_EQ] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4576), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG] = ACTIONS(4576), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4578), - [anon_sym_continue_AT] = ACTIONS(4578), - [anon_sym_break_AT] = ACTIONS(4578), - [sym_real_literal] = ACTIONS(4578), - [sym_integer_literal] = ACTIONS(4576), - [sym_hex_literal] = ACTIONS(4578), - [sym_bin_literal] = ACTIONS(4578), - [anon_sym_true] = ACTIONS(4576), - [anon_sym_false] = ACTIONS(4576), - [anon_sym_SQUOTE] = ACTIONS(4578), - [sym__backtick_identifier] = ACTIONS(4578), - [sym__automatic_semicolon] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4578), - }, - [3038] = { - [sym__alpha_identifier] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_EQ] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_object] = ACTIONS(4314), - [anon_sym_fun] = ACTIONS(4314), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_get] = ACTIONS(4314), - [anon_sym_set] = ACTIONS(4314), - [anon_sym_this] = ACTIONS(4314), - [anon_sym_super] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4316), - [sym__quest] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4316), - [sym_label] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_null] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_else] = ACTIONS(4314), - [anon_sym_when] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_continue] = ACTIONS(4314), - [anon_sym_break] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_BANGin] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4314), - [anon_sym_BANGis] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_suspend] = ACTIONS(4314), - [anon_sym_sealed] = ACTIONS(4314), - [anon_sym_annotation] = ACTIONS(4314), - [anon_sym_data] = ACTIONS(4314), - [anon_sym_inner] = ACTIONS(4314), - [anon_sym_value] = ACTIONS(4314), - [anon_sym_override] = ACTIONS(4314), - [anon_sym_lateinit] = ACTIONS(4314), - [anon_sym_public] = ACTIONS(4314), - [anon_sym_private] = ACTIONS(4314), - [anon_sym_internal] = ACTIONS(4314), - [anon_sym_protected] = ACTIONS(4314), - [anon_sym_tailrec] = ACTIONS(4314), - [anon_sym_operator] = ACTIONS(4314), - [anon_sym_infix] = ACTIONS(4314), - [anon_sym_inline] = ACTIONS(4314), - [anon_sym_external] = ACTIONS(4314), - [sym_property_modifier] = ACTIONS(4314), - [anon_sym_abstract] = ACTIONS(4314), - [anon_sym_final] = ACTIONS(4314), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_vararg] = ACTIONS(4314), - [anon_sym_noinline] = ACTIONS(4314), - [anon_sym_crossinline] = ACTIONS(4314), - [anon_sym_expect] = ACTIONS(4314), - [anon_sym_actual] = ACTIONS(4314), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4316), - [anon_sym_continue_AT] = ACTIONS(4316), - [anon_sym_break_AT] = ACTIONS(4316), - [sym_real_literal] = ACTIONS(4316), - [sym_integer_literal] = ACTIONS(4314), - [sym_hex_literal] = ACTIONS(4316), - [sym_bin_literal] = ACTIONS(4316), - [anon_sym_true] = ACTIONS(4314), - [anon_sym_false] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4316), - [sym__backtick_identifier] = ACTIONS(4316), - [sym__automatic_semicolon] = ACTIONS(4316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4316), - }, - [3039] = { - [sym_class_body] = STATE(3324), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3040] = { - [sym_enum_class_body] = STATE(3316), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_RBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_RPAREN] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_DASH_GT] = ACTIONS(4476), - [sym_label] = ACTIONS(4476), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_while] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - }, - [3041] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3041), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3042] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3007), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3043] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3044] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3045] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(2996), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3046] = { - [sym_enum_class_body] = STATE(3314), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_RBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [anon_sym_DASH_GT] = ACTIONS(4731), - [sym_label] = ACTIONS(4731), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_while] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - }, - [3047] = { - [sym__alpha_identifier] = ACTIONS(4538), - [anon_sym_AT] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_object] = ACTIONS(4538), - [anon_sym_fun] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_get] = ACTIONS(4538), - [anon_sym_set] = ACTIONS(4538), - [anon_sym_this] = ACTIONS(4538), - [anon_sym_super] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [sym_label] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_QMARK_COLON] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [anon_sym_null] = ACTIONS(4538), - [anon_sym_if] = ACTIONS(4538), - [anon_sym_else] = ACTIONS(4538), - [anon_sym_when] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4538), - [anon_sym_throw] = ACTIONS(4538), - [anon_sym_return] = ACTIONS(4538), - [anon_sym_continue] = ACTIONS(4538), - [anon_sym_break] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_BANGin] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_BANGis] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_as_QMARK] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_BANG_BANG] = ACTIONS(4540), - [anon_sym_data] = ACTIONS(4538), - [anon_sym_inner] = ACTIONS(4538), - [anon_sym_value] = ACTIONS(4538), - [anon_sym_expect] = ACTIONS(4538), - [anon_sym_actual] = ACTIONS(4538), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4540), - [anon_sym_continue_AT] = ACTIONS(4540), - [anon_sym_break_AT] = ACTIONS(4540), - [sym_real_literal] = ACTIONS(4540), - [sym_integer_literal] = ACTIONS(4538), - [sym_hex_literal] = ACTIONS(4540), - [sym_bin_literal] = ACTIONS(4540), - [anon_sym_true] = ACTIONS(4538), - [anon_sym_false] = ACTIONS(4538), - [anon_sym_SQUOTE] = ACTIONS(4540), - [sym__backtick_identifier] = ACTIONS(4540), - [sym__automatic_semicolon] = ACTIONS(4540), - [sym_safe_nav] = ACTIONS(4540), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4540), - }, - [3048] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3049), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3049] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3025), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3050] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3018), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, [3051] = { - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_EQ] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4103), - [sym__quest] = ACTIONS(4103), - [anon_sym_STAR] = ACTIONS(4103), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_object] = ACTIONS(4740), + [anon_sym_fun] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_this] = ACTIONS(4740), + [anon_sym_super] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [sym_label] = ACTIONS(4740), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_null] = ACTIONS(4740), + [anon_sym_if] = ACTIONS(4740), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_when] = ACTIONS(4740), + [anon_sym_try] = ACTIONS(4740), + [anon_sym_throw] = ACTIONS(4740), + [anon_sym_return] = ACTIONS(4740), + [anon_sym_continue] = ACTIONS(4740), + [anon_sym_break] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG] = ACTIONS(4740), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4742), + [anon_sym_continue_AT] = ACTIONS(4742), + [anon_sym_break_AT] = ACTIONS(4742), + [anon_sym_this_AT] = ACTIONS(4742), + [anon_sym_super_AT] = ACTIONS(4742), + [sym_real_literal] = ACTIONS(4742), + [sym_integer_literal] = ACTIONS(4740), + [sym_hex_literal] = ACTIONS(4742), + [sym_bin_literal] = ACTIONS(4742), + [anon_sym_L] = ACTIONS(6603), + [anon_sym_true] = ACTIONS(4740), + [anon_sym_false] = ACTIONS(4740), + [anon_sym_SQUOTE] = ACTIONS(4742), + [sym__backtick_identifier] = ACTIONS(4742), + [sym__automatic_semicolon] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4742), }, [3052] = { - [sym_class_body] = STATE(3314), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_RBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [anon_sym_DASH_GT] = ACTIONS(4731), - [sym_label] = ACTIONS(4731), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_while] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [3053] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3000), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym_import_list] = STATE(3053), + [sym_import_header] = STATE(8751), + [aux_sym_source_file_repeat2] = STATE(3053), + [aux_sym_import_list_repeat1] = STATE(8751), + [ts_builtin_sym_end] = ACTIONS(6607), + [sym__alpha_identifier] = ACTIONS(6609), + [anon_sym_AT] = ACTIONS(6607), + [anon_sym_LBRACK] = ACTIONS(6607), + [anon_sym_import] = ACTIONS(6611), + [anon_sym_typealias] = ACTIONS(6609), + [anon_sym_class] = ACTIONS(6609), + [anon_sym_interface] = ACTIONS(6609), + [anon_sym_enum] = ACTIONS(6609), + [anon_sym_LBRACE] = ACTIONS(6607), + [anon_sym_LPAREN] = ACTIONS(6607), + [anon_sym_val] = ACTIONS(6609), + [anon_sym_var] = ACTIONS(6609), + [anon_sym_object] = ACTIONS(6609), + [anon_sym_fun] = ACTIONS(6609), + [anon_sym_get] = ACTIONS(6609), + [anon_sym_set] = ACTIONS(6609), + [anon_sym_this] = ACTIONS(6609), + [anon_sym_super] = ACTIONS(6609), + [anon_sym_STAR] = ACTIONS(6607), + [sym_label] = ACTIONS(6609), + [anon_sym_for] = ACTIONS(6609), + [anon_sym_while] = ACTIONS(6609), + [anon_sym_do] = ACTIONS(6609), + [anon_sym_null] = ACTIONS(6609), + [anon_sym_if] = ACTIONS(6609), + [anon_sym_when] = ACTIONS(6609), + [anon_sym_try] = ACTIONS(6609), + [anon_sym_throw] = ACTIONS(6609), + [anon_sym_return] = ACTIONS(6609), + [anon_sym_continue] = ACTIONS(6609), + [anon_sym_break] = ACTIONS(6609), + [anon_sym_COLON_COLON] = ACTIONS(6607), + [anon_sym_PLUS] = ACTIONS(6609), + [anon_sym_DASH] = ACTIONS(6609), + [anon_sym_PLUS_PLUS] = ACTIONS(6607), + [anon_sym_DASH_DASH] = ACTIONS(6607), + [anon_sym_BANG] = ACTIONS(6607), + [anon_sym_suspend] = ACTIONS(6609), + [anon_sym_sealed] = ACTIONS(6609), + [anon_sym_annotation] = ACTIONS(6609), + [anon_sym_data] = ACTIONS(6609), + [anon_sym_inner] = ACTIONS(6609), + [anon_sym_value] = ACTIONS(6609), + [anon_sym_override] = ACTIONS(6609), + [anon_sym_lateinit] = ACTIONS(6609), + [anon_sym_public] = ACTIONS(6609), + [anon_sym_private] = ACTIONS(6609), + [anon_sym_internal] = ACTIONS(6609), + [anon_sym_protected] = ACTIONS(6609), + [anon_sym_tailrec] = ACTIONS(6609), + [anon_sym_operator] = ACTIONS(6609), + [anon_sym_infix] = ACTIONS(6609), + [anon_sym_inline] = ACTIONS(6609), + [anon_sym_external] = ACTIONS(6609), + [sym_property_modifier] = ACTIONS(6609), + [anon_sym_abstract] = ACTIONS(6609), + [anon_sym_final] = ACTIONS(6609), + [anon_sym_open] = ACTIONS(6609), + [anon_sym_vararg] = ACTIONS(6609), + [anon_sym_noinline] = ACTIONS(6609), + [anon_sym_crossinline] = ACTIONS(6609), + [anon_sym_expect] = ACTIONS(6609), + [anon_sym_actual] = ACTIONS(6609), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6607), + [anon_sym_continue_AT] = ACTIONS(6607), + [anon_sym_break_AT] = ACTIONS(6607), + [anon_sym_this_AT] = ACTIONS(6607), + [anon_sym_super_AT] = ACTIONS(6607), + [sym_real_literal] = ACTIONS(6607), + [sym_integer_literal] = ACTIONS(6609), + [sym_hex_literal] = ACTIONS(6607), + [sym_bin_literal] = ACTIONS(6607), + [anon_sym_true] = ACTIONS(6609), + [anon_sym_false] = ACTIONS(6609), + [anon_sym_SQUOTE] = ACTIONS(6607), + [sym__backtick_identifier] = ACTIONS(6607), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6607), }, [3054] = { - [sym_enum_class_body] = STATE(3307), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [anon_sym_DASH_GT] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_while] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), + [sym_type_constraints] = STATE(3192), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3055] = { - [sym_class_body] = STATE(3392), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_object] = ACTIONS(4746), + [anon_sym_fun] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_this] = ACTIONS(4746), + [anon_sym_super] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4746), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4746), + [anon_sym_if] = ACTIONS(4746), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_when] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4746), + [anon_sym_throw] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4746), + [anon_sym_continue] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4748), + [anon_sym_continue_AT] = ACTIONS(4748), + [anon_sym_break_AT] = ACTIONS(4748), + [anon_sym_this_AT] = ACTIONS(4748), + [anon_sym_super_AT] = ACTIONS(4748), + [sym_real_literal] = ACTIONS(4748), + [sym_integer_literal] = ACTIONS(4746), + [sym_hex_literal] = ACTIONS(4748), + [sym_bin_literal] = ACTIONS(4748), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4748), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4748), }, [3056] = { - [sym__alpha_identifier] = ACTIONS(4308), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_EQ] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_COMMA] = ACTIONS(4310), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_object] = ACTIONS(4308), - [anon_sym_fun] = ACTIONS(4308), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_SEMI] = ACTIONS(4310), - [anon_sym_get] = ACTIONS(4308), - [anon_sym_set] = ACTIONS(4308), - [anon_sym_this] = ACTIONS(4308), - [anon_sym_super] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4310), - [sym__quest] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4310), - [sym_label] = ACTIONS(4308), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_null] = ACTIONS(4308), - [anon_sym_if] = ACTIONS(4308), - [anon_sym_else] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [anon_sym_try] = ACTIONS(4308), - [anon_sym_throw] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4308), - [anon_sym_continue] = ACTIONS(4308), - [anon_sym_break] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(4310), - [anon_sym_BANGin] = ACTIONS(4310), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_BANGis] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4310), - [anon_sym_DASH_DASH] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_suspend] = ACTIONS(4308), - [anon_sym_sealed] = ACTIONS(4308), - [anon_sym_annotation] = ACTIONS(4308), - [anon_sym_data] = ACTIONS(4308), - [anon_sym_inner] = ACTIONS(4308), - [anon_sym_value] = ACTIONS(4308), - [anon_sym_override] = ACTIONS(4308), - [anon_sym_lateinit] = ACTIONS(4308), - [anon_sym_public] = ACTIONS(4308), - [anon_sym_private] = ACTIONS(4308), - [anon_sym_internal] = ACTIONS(4308), - [anon_sym_protected] = ACTIONS(4308), - [anon_sym_tailrec] = ACTIONS(4308), - [anon_sym_operator] = ACTIONS(4308), - [anon_sym_infix] = ACTIONS(4308), - [anon_sym_inline] = ACTIONS(4308), - [anon_sym_external] = ACTIONS(4308), - [sym_property_modifier] = ACTIONS(4308), - [anon_sym_abstract] = ACTIONS(4308), - [anon_sym_final] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4308), - [anon_sym_vararg] = ACTIONS(4308), - [anon_sym_noinline] = ACTIONS(4308), - [anon_sym_crossinline] = ACTIONS(4308), - [anon_sym_expect] = ACTIONS(4308), - [anon_sym_actual] = ACTIONS(4308), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4310), - [anon_sym_continue_AT] = ACTIONS(4310), - [anon_sym_break_AT] = ACTIONS(4310), - [sym_real_literal] = ACTIONS(4310), - [sym_integer_literal] = ACTIONS(4308), - [sym_hex_literal] = ACTIONS(4310), - [sym_bin_literal] = ACTIONS(4310), - [anon_sym_true] = ACTIONS(4308), - [anon_sym_false] = ACTIONS(4308), - [anon_sym_SQUOTE] = ACTIONS(4310), - [sym__backtick_identifier] = ACTIONS(4310), - [sym__automatic_semicolon] = ACTIONS(4310), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4310), + [aux_sym_type_constraints_repeat1] = STATE(3056), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, [3057] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_DASH_GT] = ACTIONS(3091), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_object] = ACTIONS(4728), + [anon_sym_fun] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_this] = ACTIONS(4728), + [anon_sym_super] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_null] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4728), + [anon_sym_throw] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4728), + [anon_sym_continue] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4730), + [anon_sym_continue_AT] = ACTIONS(4730), + [anon_sym_break_AT] = ACTIONS(4730), + [anon_sym_this_AT] = ACTIONS(4730), + [anon_sym_super_AT] = ACTIONS(4730), + [sym_real_literal] = ACTIONS(4730), + [sym_integer_literal] = ACTIONS(4728), + [sym_hex_literal] = ACTIONS(4730), + [sym_bin_literal] = ACTIONS(4730), + [anon_sym_true] = ACTIONS(4728), + [anon_sym_false] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4730), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4730), }, [3058] = { - [sym__alpha_identifier] = ACTIONS(4673), - [anon_sym_AT] = ACTIONS(4675), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4675), - [anon_sym_as] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_RBRACE] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4673), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4675), - [anon_sym_get] = ACTIONS(4673), - [anon_sym_set] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_DASH_GT] = ACTIONS(4675), - [sym_label] = ACTIONS(4675), - [anon_sym_in] = ACTIONS(4673), - [anon_sym_while] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(4675), - [anon_sym_QMARK_COLON] = ACTIONS(4675), - [anon_sym_AMP_AMP] = ACTIONS(4675), - [anon_sym_PIPE_PIPE] = ACTIONS(4675), - [anon_sym_else] = ACTIONS(4673), - [anon_sym_COLON_COLON] = ACTIONS(4675), - [anon_sym_PLUS_EQ] = ACTIONS(4675), - [anon_sym_DASH_EQ] = ACTIONS(4675), - [anon_sym_STAR_EQ] = ACTIONS(4675), - [anon_sym_SLASH_EQ] = ACTIONS(4675), - [anon_sym_PERCENT_EQ] = ACTIONS(4675), - [anon_sym_BANG_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4675), - [anon_sym_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4675), - [anon_sym_LT_EQ] = ACTIONS(4675), - [anon_sym_GT_EQ] = ACTIONS(4675), - [anon_sym_BANGin] = ACTIONS(4675), - [anon_sym_is] = ACTIONS(4673), - [anon_sym_BANGis] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4675), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_BANG_BANG] = ACTIONS(4675), - [anon_sym_suspend] = ACTIONS(4673), - [anon_sym_sealed] = ACTIONS(4673), - [anon_sym_annotation] = ACTIONS(4673), - [anon_sym_data] = ACTIONS(4673), - [anon_sym_inner] = ACTIONS(4673), - [anon_sym_value] = ACTIONS(4673), - [anon_sym_override] = ACTIONS(4673), - [anon_sym_lateinit] = ACTIONS(4673), - [anon_sym_public] = ACTIONS(4673), - [anon_sym_private] = ACTIONS(4673), - [anon_sym_internal] = ACTIONS(4673), - [anon_sym_protected] = ACTIONS(4673), - [anon_sym_tailrec] = ACTIONS(4673), - [anon_sym_operator] = ACTIONS(4673), - [anon_sym_infix] = ACTIONS(4673), - [anon_sym_inline] = ACTIONS(4673), - [anon_sym_external] = ACTIONS(4673), - [sym_property_modifier] = ACTIONS(4673), - [anon_sym_abstract] = ACTIONS(4673), - [anon_sym_final] = ACTIONS(4673), - [anon_sym_open] = ACTIONS(4673), - [anon_sym_vararg] = ACTIONS(4673), - [anon_sym_noinline] = ACTIONS(4673), - [anon_sym_crossinline] = ACTIONS(4673), - [anon_sym_expect] = ACTIONS(4673), - [anon_sym_actual] = ACTIONS(4673), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4675), - [sym_safe_nav] = ACTIONS(4675), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_null] = ACTIONS(4762), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4765), + [anon_sym_continue_AT] = ACTIONS(4765), + [anon_sym_break_AT] = ACTIONS(4765), + [anon_sym_this_AT] = ACTIONS(4765), + [anon_sym_super_AT] = ACTIONS(4765), + [sym_real_literal] = ACTIONS(4765), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4765), + [sym_bin_literal] = ACTIONS(4765), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4765), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4765), }, [3059] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3087), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6617), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [3060] = { - [sym__alpha_identifier] = ACTIONS(4171), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(4173), - [anon_sym_EQ] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_COMMA] = ACTIONS(4173), - [anon_sym_by] = ACTIONS(4171), - [anon_sym_where] = ACTIONS(4171), - [anon_sym_object] = ACTIONS(4171), - [anon_sym_fun] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4173), - [anon_sym_get] = ACTIONS(4171), - [anon_sym_set] = ACTIONS(4171), - [anon_sym_this] = ACTIONS(4171), - [anon_sym_super] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4173), - [sym__quest] = ACTIONS(4173), - [anon_sym_STAR] = ACTIONS(4173), - [sym_label] = ACTIONS(4171), - [anon_sym_in] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4171), - [anon_sym_if] = ACTIONS(4171), - [anon_sym_else] = ACTIONS(4171), - [anon_sym_when] = ACTIONS(4171), - [anon_sym_try] = ACTIONS(4171), - [anon_sym_throw] = ACTIONS(4171), - [anon_sym_return] = ACTIONS(4171), - [anon_sym_continue] = ACTIONS(4171), - [anon_sym_break] = ACTIONS(4171), - [anon_sym_COLON_COLON] = ACTIONS(4173), - [anon_sym_BANGin] = ACTIONS(4173), - [anon_sym_is] = ACTIONS(4171), - [anon_sym_BANGis] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_PLUS_PLUS] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(4171), - [anon_sym_suspend] = ACTIONS(4171), - [anon_sym_sealed] = ACTIONS(4171), - [anon_sym_annotation] = ACTIONS(4171), - [anon_sym_data] = ACTIONS(4171), - [anon_sym_inner] = ACTIONS(4171), - [anon_sym_value] = ACTIONS(4171), - [anon_sym_override] = ACTIONS(4171), - [anon_sym_lateinit] = ACTIONS(4171), - [anon_sym_public] = ACTIONS(4171), - [anon_sym_private] = ACTIONS(4171), - [anon_sym_internal] = ACTIONS(4171), - [anon_sym_protected] = ACTIONS(4171), - [anon_sym_tailrec] = ACTIONS(4171), - [anon_sym_operator] = ACTIONS(4171), - [anon_sym_infix] = ACTIONS(4171), - [anon_sym_inline] = ACTIONS(4171), - [anon_sym_external] = ACTIONS(4171), - [sym_property_modifier] = ACTIONS(4171), - [anon_sym_abstract] = ACTIONS(4171), - [anon_sym_final] = ACTIONS(4171), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_vararg] = ACTIONS(4171), - [anon_sym_noinline] = ACTIONS(4171), - [anon_sym_crossinline] = ACTIONS(4171), - [anon_sym_expect] = ACTIONS(4171), - [anon_sym_actual] = ACTIONS(4171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4173), - [anon_sym_continue_AT] = ACTIONS(4173), - [anon_sym_break_AT] = ACTIONS(4173), - [sym_real_literal] = ACTIONS(4173), - [sym_integer_literal] = ACTIONS(4171), - [sym_hex_literal] = ACTIONS(4173), - [sym_bin_literal] = ACTIONS(4173), - [anon_sym_true] = ACTIONS(4171), - [anon_sym_false] = ACTIONS(4171), - [anon_sym_SQUOTE] = ACTIONS(4173), - [sym__backtick_identifier] = ACTIONS(4173), - [sym__automatic_semicolon] = ACTIONS(4173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4173), + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_object] = ACTIONS(5199), + [anon_sym_fun] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_this] = ACTIONS(5199), + [anon_sym_super] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [sym_label] = ACTIONS(5199), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_null] = ACTIONS(5199), + [anon_sym_if] = ACTIONS(5199), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_when] = ACTIONS(5199), + [anon_sym_try] = ACTIONS(5199), + [anon_sym_throw] = ACTIONS(5199), + [anon_sym_return] = ACTIONS(5199), + [anon_sym_continue] = ACTIONS(5199), + [anon_sym_break] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5199), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5201), + [anon_sym_continue_AT] = ACTIONS(5201), + [anon_sym_break_AT] = ACTIONS(5201), + [anon_sym_this_AT] = ACTIONS(5201), + [anon_sym_super_AT] = ACTIONS(5201), + [sym_real_literal] = ACTIONS(5201), + [sym_integer_literal] = ACTIONS(5199), + [sym_hex_literal] = ACTIONS(5201), + [sym_bin_literal] = ACTIONS(5201), + [anon_sym_true] = ACTIONS(5199), + [anon_sym_false] = ACTIONS(5199), + [anon_sym_SQUOTE] = ACTIONS(5201), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5201), }, [3061] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3061), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(6535), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_object] = ACTIONS(4580), - [anon_sym_fun] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_this] = ACTIONS(4580), - [anon_sym_super] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [sym_label] = ACTIONS(4580), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_when] = ACTIONS(4580), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_throw] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4582), - [anon_sym_continue_AT] = ACTIONS(4582), - [anon_sym_break_AT] = ACTIONS(4582), - [sym_real_literal] = ACTIONS(4582), - [sym_integer_literal] = ACTIONS(4580), - [sym_hex_literal] = ACTIONS(4582), - [sym_bin_literal] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_SQUOTE] = ACTIONS(4582), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4582), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3062] = { - [sym_enum_class_body] = STATE(3299), - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_RBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_RPAREN] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_DASH_GT] = ACTIONS(4703), - [sym_label] = ACTIONS(4703), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_while] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_suspend] = ACTIONS(4701), - [anon_sym_sealed] = ACTIONS(4701), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_override] = ACTIONS(4701), - [anon_sym_lateinit] = ACTIONS(4701), - [anon_sym_public] = ACTIONS(4701), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_internal] = ACTIONS(4701), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_tailrec] = ACTIONS(4701), - [anon_sym_operator] = ACTIONS(4701), - [anon_sym_infix] = ACTIONS(4701), - [anon_sym_inline] = ACTIONS(4701), - [anon_sym_external] = ACTIONS(4701), - [sym_property_modifier] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_final] = ACTIONS(4701), - [anon_sym_open] = ACTIONS(4701), - [anon_sym_vararg] = ACTIONS(4701), - [anon_sym_noinline] = ACTIONS(4701), - [anon_sym_crossinline] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4934), + [anon_sym_AT] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_where] = ACTIONS(4934), + [anon_sym_object] = ACTIONS(4934), + [anon_sym_fun] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_get] = ACTIONS(4934), + [anon_sym_set] = ACTIONS(4934), + [anon_sym_this] = ACTIONS(4934), + [anon_sym_super] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [sym_label] = ACTIONS(4934), + [anon_sym_in] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4936), + [anon_sym_QMARK_COLON] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_when] = ACTIONS(4934), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_throw] = ACTIONS(4934), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_continue] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym_PLUS_EQ] = ACTIONS(4936), + [anon_sym_DASH_EQ] = ACTIONS(4936), + [anon_sym_STAR_EQ] = ACTIONS(4936), + [anon_sym_SLASH_EQ] = ACTIONS(4936), + [anon_sym_PERCENT_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4936), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_BANGin] = ACTIONS(4936), + [anon_sym_is] = ACTIONS(4934), + [anon_sym_BANGis] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_as_QMARK] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4934), + [anon_sym_BANG_BANG] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4934), + [anon_sym_inner] = ACTIONS(4934), + [anon_sym_value] = ACTIONS(4934), + [anon_sym_expect] = ACTIONS(4934), + [anon_sym_actual] = ACTIONS(4934), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4936), + [anon_sym_continue_AT] = ACTIONS(4936), + [anon_sym_break_AT] = ACTIONS(4936), + [anon_sym_this_AT] = ACTIONS(4936), + [anon_sym_super_AT] = ACTIONS(4936), + [sym_real_literal] = ACTIONS(4936), + [sym_integer_literal] = ACTIONS(4934), + [sym_hex_literal] = ACTIONS(4936), + [sym_bin_literal] = ACTIONS(4936), + [anon_sym_true] = ACTIONS(4934), + [anon_sym_false] = ACTIONS(4934), + [anon_sym_SQUOTE] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(4936), + [sym__automatic_semicolon] = ACTIONS(4936), + [sym_safe_nav] = ACTIONS(4936), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4936), }, [3063] = { - [sym_enum_class_body] = STATE(3324), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_object] = ACTIONS(4938), + [anon_sym_fun] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_this] = ACTIONS(4938), + [anon_sym_super] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_if] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_when] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4938), + [anon_sym_throw] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4938), + [anon_sym_continue] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4940), + [anon_sym_continue_AT] = ACTIONS(4940), + [anon_sym_break_AT] = ACTIONS(4940), + [anon_sym_this_AT] = ACTIONS(4940), + [anon_sym_super_AT] = ACTIONS(4940), + [sym_real_literal] = ACTIONS(4940), + [sym_integer_literal] = ACTIONS(4938), + [sym_hex_literal] = ACTIONS(4940), + [sym_bin_literal] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [anon_sym_SQUOTE] = ACTIONS(4940), + [sym__backtick_identifier] = ACTIONS(4940), + [sym__automatic_semicolon] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4940), }, [3064] = { - [sym__alpha_identifier] = ACTIONS(4709), - [anon_sym_AT] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4711), - [anon_sym_RBRACK] = ACTIONS(4711), - [anon_sym_as] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4711), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_RPAREN] = ACTIONS(4711), - [anon_sym_by] = ACTIONS(4709), - [anon_sym_LT] = ACTIONS(4709), - [anon_sym_GT] = ACTIONS(4709), - [anon_sym_where] = ACTIONS(4709), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_SEMI] = ACTIONS(4711), - [anon_sym_get] = ACTIONS(4709), - [anon_sym_set] = ACTIONS(4709), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_DASH_GT] = ACTIONS(4711), - [sym_label] = ACTIONS(4711), - [anon_sym_in] = ACTIONS(4709), - [anon_sym_while] = ACTIONS(4709), - [anon_sym_DOT_DOT] = ACTIONS(4711), - [anon_sym_QMARK_COLON] = ACTIONS(4711), - [anon_sym_AMP_AMP] = ACTIONS(4711), - [anon_sym_PIPE_PIPE] = ACTIONS(4711), - [anon_sym_else] = ACTIONS(4709), - [anon_sym_COLON_COLON] = ACTIONS(4711), - [anon_sym_PLUS_EQ] = ACTIONS(4711), - [anon_sym_DASH_EQ] = ACTIONS(4711), - [anon_sym_STAR_EQ] = ACTIONS(4711), - [anon_sym_SLASH_EQ] = ACTIONS(4711), - [anon_sym_PERCENT_EQ] = ACTIONS(4711), - [anon_sym_BANG_EQ] = ACTIONS(4709), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4711), - [anon_sym_EQ_EQ] = ACTIONS(4709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4711), - [anon_sym_LT_EQ] = ACTIONS(4711), - [anon_sym_GT_EQ] = ACTIONS(4711), - [anon_sym_BANGin] = ACTIONS(4711), - [anon_sym_is] = ACTIONS(4709), - [anon_sym_BANGis] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_as_QMARK] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_BANG_BANG] = ACTIONS(4711), - [anon_sym_suspend] = ACTIONS(4709), - [anon_sym_sealed] = ACTIONS(4709), - [anon_sym_annotation] = ACTIONS(4709), - [anon_sym_data] = ACTIONS(4709), - [anon_sym_inner] = ACTIONS(4709), - [anon_sym_value] = ACTIONS(4709), - [anon_sym_override] = ACTIONS(4709), - [anon_sym_lateinit] = ACTIONS(4709), - [anon_sym_public] = ACTIONS(4709), - [anon_sym_private] = ACTIONS(4709), - [anon_sym_internal] = ACTIONS(4709), - [anon_sym_protected] = ACTIONS(4709), - [anon_sym_tailrec] = ACTIONS(4709), - [anon_sym_operator] = ACTIONS(4709), - [anon_sym_infix] = ACTIONS(4709), - [anon_sym_inline] = ACTIONS(4709), - [anon_sym_external] = ACTIONS(4709), - [sym_property_modifier] = ACTIONS(4709), - [anon_sym_abstract] = ACTIONS(4709), - [anon_sym_final] = ACTIONS(4709), - [anon_sym_open] = ACTIONS(4709), - [anon_sym_vararg] = ACTIONS(4709), - [anon_sym_noinline] = ACTIONS(4709), - [anon_sym_crossinline] = ACTIONS(4709), - [anon_sym_expect] = ACTIONS(4709), - [anon_sym_actual] = ACTIONS(4709), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4711), - [sym_safe_nav] = ACTIONS(4711), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6619), + [sym__quest] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), }, [3065] = { - [sym__alpha_identifier] = ACTIONS(4713), - [anon_sym_AT] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4715), - [anon_sym_RBRACK] = ACTIONS(4715), - [anon_sym_as] = ACTIONS(4713), - [anon_sym_EQ] = ACTIONS(4713), - [anon_sym_LBRACE] = ACTIONS(4715), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_COMMA] = ACTIONS(4715), - [anon_sym_RPAREN] = ACTIONS(4715), - [anon_sym_by] = ACTIONS(4713), - [anon_sym_LT] = ACTIONS(4713), - [anon_sym_GT] = ACTIONS(4713), - [anon_sym_where] = ACTIONS(4713), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_SEMI] = ACTIONS(4715), - [anon_sym_get] = ACTIONS(4713), - [anon_sym_set] = ACTIONS(4713), - [anon_sym_STAR] = ACTIONS(4713), - [anon_sym_DASH_GT] = ACTIONS(4715), - [sym_label] = ACTIONS(4715), - [anon_sym_in] = ACTIONS(4713), - [anon_sym_while] = ACTIONS(4713), - [anon_sym_DOT_DOT] = ACTIONS(4715), - [anon_sym_QMARK_COLON] = ACTIONS(4715), - [anon_sym_AMP_AMP] = ACTIONS(4715), - [anon_sym_PIPE_PIPE] = ACTIONS(4715), - [anon_sym_else] = ACTIONS(4713), - [anon_sym_COLON_COLON] = ACTIONS(4715), - [anon_sym_PLUS_EQ] = ACTIONS(4715), - [anon_sym_DASH_EQ] = ACTIONS(4715), - [anon_sym_STAR_EQ] = ACTIONS(4715), - [anon_sym_SLASH_EQ] = ACTIONS(4715), - [anon_sym_PERCENT_EQ] = ACTIONS(4715), - [anon_sym_BANG_EQ] = ACTIONS(4713), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4715), - [anon_sym_EQ_EQ] = ACTIONS(4713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4715), - [anon_sym_LT_EQ] = ACTIONS(4715), - [anon_sym_GT_EQ] = ACTIONS(4715), - [anon_sym_BANGin] = ACTIONS(4715), - [anon_sym_is] = ACTIONS(4713), - [anon_sym_BANGis] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4713), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_SLASH] = ACTIONS(4713), - [anon_sym_PERCENT] = ACTIONS(4713), - [anon_sym_as_QMARK] = ACTIONS(4715), - [anon_sym_PLUS_PLUS] = ACTIONS(4715), - [anon_sym_DASH_DASH] = ACTIONS(4715), - [anon_sym_BANG_BANG] = ACTIONS(4715), - [anon_sym_suspend] = ACTIONS(4713), - [anon_sym_sealed] = ACTIONS(4713), - [anon_sym_annotation] = ACTIONS(4713), - [anon_sym_data] = ACTIONS(4713), - [anon_sym_inner] = ACTIONS(4713), - [anon_sym_value] = ACTIONS(4713), - [anon_sym_override] = ACTIONS(4713), - [anon_sym_lateinit] = ACTIONS(4713), - [anon_sym_public] = ACTIONS(4713), - [anon_sym_private] = ACTIONS(4713), - [anon_sym_internal] = ACTIONS(4713), - [anon_sym_protected] = ACTIONS(4713), - [anon_sym_tailrec] = ACTIONS(4713), - [anon_sym_operator] = ACTIONS(4713), - [anon_sym_infix] = ACTIONS(4713), - [anon_sym_inline] = ACTIONS(4713), - [anon_sym_external] = ACTIONS(4713), - [sym_property_modifier] = ACTIONS(4713), - [anon_sym_abstract] = ACTIONS(4713), - [anon_sym_final] = ACTIONS(4713), - [anon_sym_open] = ACTIONS(4713), - [anon_sym_vararg] = ACTIONS(4713), - [anon_sym_noinline] = ACTIONS(4713), - [anon_sym_crossinline] = ACTIONS(4713), - [anon_sym_expect] = ACTIONS(4713), - [anon_sym_actual] = ACTIONS(4713), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4715), - [sym_safe_nav] = ACTIONS(4715), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_object] = ACTIONS(4942), + [anon_sym_fun] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_this] = ACTIONS(4942), + [anon_sym_super] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4942), + [anon_sym_if] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_when] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4942), + [anon_sym_throw] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4942), + [anon_sym_continue] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4944), + [anon_sym_continue_AT] = ACTIONS(4944), + [anon_sym_break_AT] = ACTIONS(4944), + [anon_sym_this_AT] = ACTIONS(4944), + [anon_sym_super_AT] = ACTIONS(4944), + [sym_real_literal] = ACTIONS(4944), + [sym_integer_literal] = ACTIONS(4942), + [sym_hex_literal] = ACTIONS(4944), + [sym_bin_literal] = ACTIONS(4944), + [anon_sym_true] = ACTIONS(4942), + [anon_sym_false] = ACTIONS(4942), + [anon_sym_SQUOTE] = ACTIONS(4944), + [sym__backtick_identifier] = ACTIONS(4944), + [sym__automatic_semicolon] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4944), }, [3066] = { - [sym__alpha_identifier] = ACTIONS(4669), - [anon_sym_AT] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_where] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4671), - [anon_sym_get] = ACTIONS(4669), - [anon_sym_set] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4671), - [sym_label] = ACTIONS(4671), - [anon_sym_in] = ACTIONS(4669), - [anon_sym_while] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4671), - [anon_sym_QMARK_COLON] = ACTIONS(4671), - [anon_sym_AMP_AMP] = ACTIONS(4671), - [anon_sym_PIPE_PIPE] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4669), - [anon_sym_COLON_COLON] = ACTIONS(4671), - [anon_sym_PLUS_EQ] = ACTIONS(4671), - [anon_sym_DASH_EQ] = ACTIONS(4671), - [anon_sym_STAR_EQ] = ACTIONS(4671), - [anon_sym_SLASH_EQ] = ACTIONS(4671), - [anon_sym_PERCENT_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4671), - [anon_sym_LT_EQ] = ACTIONS(4671), - [anon_sym_GT_EQ] = ACTIONS(4671), - [anon_sym_BANGin] = ACTIONS(4671), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_BANGis] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_as_QMARK] = ACTIONS(4671), - [anon_sym_PLUS_PLUS] = ACTIONS(4671), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_BANG_BANG] = ACTIONS(4671), - [anon_sym_suspend] = ACTIONS(4669), - [anon_sym_sealed] = ACTIONS(4669), - [anon_sym_annotation] = ACTIONS(4669), - [anon_sym_data] = ACTIONS(4669), - [anon_sym_inner] = ACTIONS(4669), - [anon_sym_value] = ACTIONS(4669), - [anon_sym_override] = ACTIONS(4669), - [anon_sym_lateinit] = ACTIONS(4669), - [anon_sym_public] = ACTIONS(4669), - [anon_sym_private] = ACTIONS(4669), - [anon_sym_internal] = ACTIONS(4669), - [anon_sym_protected] = ACTIONS(4669), - [anon_sym_tailrec] = ACTIONS(4669), - [anon_sym_operator] = ACTIONS(4669), - [anon_sym_infix] = ACTIONS(4669), - [anon_sym_inline] = ACTIONS(4669), - [anon_sym_external] = ACTIONS(4669), - [sym_property_modifier] = ACTIONS(4669), - [anon_sym_abstract] = ACTIONS(4669), - [anon_sym_final] = ACTIONS(4669), - [anon_sym_open] = ACTIONS(4669), - [anon_sym_vararg] = ACTIONS(4669), - [anon_sym_noinline] = ACTIONS(4669), - [anon_sym_crossinline] = ACTIONS(4669), - [anon_sym_expect] = ACTIONS(4669), - [anon_sym_actual] = ACTIONS(4669), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4671), - [sym_safe_nav] = ACTIONS(4671), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(3154), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_EQ] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [sym__quest] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4305), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), }, [3067] = { - [sym__alpha_identifier] = ACTIONS(4570), - [anon_sym_AT] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_RBRACK] = ACTIONS(4573), - [anon_sym_as] = ACTIONS(4570), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4573), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_RPAREN] = ACTIONS(4573), - [anon_sym_by] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_where] = ACTIONS(4570), - [anon_sym_DOT] = ACTIONS(4570), - [anon_sym_SEMI] = ACTIONS(4573), - [anon_sym_get] = ACTIONS(4570), - [anon_sym_set] = ACTIONS(4570), - [anon_sym_STAR] = ACTIONS(4570), - [anon_sym_DASH_GT] = ACTIONS(4573), - [sym_label] = ACTIONS(4573), - [anon_sym_in] = ACTIONS(4570), - [anon_sym_while] = ACTIONS(4570), - [anon_sym_DOT_DOT] = ACTIONS(4573), - [anon_sym_QMARK_COLON] = ACTIONS(4573), - [anon_sym_AMP_AMP] = ACTIONS(4573), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_else] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_BANG_EQ] = ACTIONS(4570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), - [anon_sym_EQ_EQ] = ACTIONS(4570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4570), - [anon_sym_BANGis] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_SLASH] = ACTIONS(4570), - [anon_sym_PERCENT] = ACTIONS(4570), - [anon_sym_as_QMARK] = ACTIONS(4573), - [anon_sym_PLUS_PLUS] = ACTIONS(4573), - [anon_sym_DASH_DASH] = ACTIONS(4573), - [anon_sym_BANG_BANG] = ACTIONS(4573), - [anon_sym_suspend] = ACTIONS(4570), - [anon_sym_sealed] = ACTIONS(4570), - [anon_sym_annotation] = ACTIONS(4570), - [anon_sym_data] = ACTIONS(4570), - [anon_sym_inner] = ACTIONS(4570), - [anon_sym_value] = ACTIONS(4570), - [anon_sym_override] = ACTIONS(4570), - [anon_sym_lateinit] = ACTIONS(4570), - [anon_sym_public] = ACTIONS(4570), - [anon_sym_private] = ACTIONS(4570), - [anon_sym_internal] = ACTIONS(4570), - [anon_sym_protected] = ACTIONS(4570), - [anon_sym_tailrec] = ACTIONS(4570), - [anon_sym_operator] = ACTIONS(4570), - [anon_sym_infix] = ACTIONS(4570), - [anon_sym_inline] = ACTIONS(4570), - [anon_sym_external] = ACTIONS(4570), - [sym_property_modifier] = ACTIONS(4570), - [anon_sym_abstract] = ACTIONS(4570), - [anon_sym_final] = ACTIONS(4570), - [anon_sym_open] = ACTIONS(4570), - [anon_sym_vararg] = ACTIONS(4570), - [anon_sym_noinline] = ACTIONS(4570), - [anon_sym_crossinline] = ACTIONS(4570), - [anon_sym_expect] = ACTIONS(4570), - [anon_sym_actual] = ACTIONS(4570), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4573), - [sym_safe_nav] = ACTIONS(4573), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [3068] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3057), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_constraints] = STATE(3356), + [sym_enum_class_body] = STATE(3478), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3069] = { - [sym_class_body] = STATE(3326), - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_RBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_DASH_GT] = ACTIONS(4723), - [sym_label] = ACTIONS(4723), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_while] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_suspend] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_annotation] = ACTIONS(4721), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_lateinit] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_tailrec] = ACTIONS(4721), - [anon_sym_operator] = ACTIONS(4721), - [anon_sym_infix] = ACTIONS(4721), - [anon_sym_inline] = ACTIONS(4721), - [anon_sym_external] = ACTIONS(4721), - [sym_property_modifier] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_final] = ACTIONS(4721), - [anon_sym_open] = ACTIONS(4721), - [anon_sym_vararg] = ACTIONS(4721), - [anon_sym_noinline] = ACTIONS(4721), - [anon_sym_crossinline] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), + [sym_value_arguments] = STATE(3531), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6623), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [3070] = { - [sym_enum_class_body] = STATE(3294), - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_object] = ACTIONS(4701), - [anon_sym_fun] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_this] = ACTIONS(4701), - [anon_sym_super] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [sym_label] = ACTIONS(4701), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_null] = ACTIONS(4701), - [anon_sym_if] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_when] = ACTIONS(4701), - [anon_sym_try] = ACTIONS(4701), - [anon_sym_throw] = ACTIONS(4701), - [anon_sym_return] = ACTIONS(4701), - [anon_sym_continue] = ACTIONS(4701), - [anon_sym_break] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4703), - [anon_sym_continue_AT] = ACTIONS(4703), - [anon_sym_break_AT] = ACTIONS(4703), - [sym_real_literal] = ACTIONS(4703), - [sym_integer_literal] = ACTIONS(4701), - [sym_hex_literal] = ACTIONS(4703), - [sym_bin_literal] = ACTIONS(4703), - [anon_sym_true] = ACTIONS(4701), - [anon_sym_false] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4703), - [sym__backtick_identifier] = ACTIONS(4703), - [sym__automatic_semicolon] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4703), + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), }, [3071] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3061), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(6533), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_object] = ACTIONS(4970), + [anon_sym_fun] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_this] = ACTIONS(4970), + [anon_sym_super] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_if] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_when] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4970), + [anon_sym_throw] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4970), + [anon_sym_continue] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4972), + [anon_sym_continue_AT] = ACTIONS(4972), + [anon_sym_break_AT] = ACTIONS(4972), + [anon_sym_this_AT] = ACTIONS(4972), + [anon_sym_super_AT] = ACTIONS(4972), + [sym_real_literal] = ACTIONS(4972), + [sym_integer_literal] = ACTIONS(4970), + [sym_hex_literal] = ACTIONS(4972), + [sym_bin_literal] = ACTIONS(4972), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4972), }, [3072] = { - [sym__alpha_identifier] = ACTIONS(4538), - [anon_sym_AT] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_RPAREN] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_get] = ACTIONS(4538), - [anon_sym_set] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4540), - [sym_label] = ACTIONS(4540), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_while] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_QMARK_COLON] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [anon_sym_else] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_BANGin] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_BANGis] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_as_QMARK] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_BANG_BANG] = ACTIONS(4540), - [anon_sym_suspend] = ACTIONS(4538), - [anon_sym_sealed] = ACTIONS(4538), - [anon_sym_annotation] = ACTIONS(4538), - [anon_sym_data] = ACTIONS(4538), - [anon_sym_inner] = ACTIONS(4538), - [anon_sym_value] = ACTIONS(4538), - [anon_sym_override] = ACTIONS(4538), - [anon_sym_lateinit] = ACTIONS(4538), - [anon_sym_public] = ACTIONS(4538), - [anon_sym_private] = ACTIONS(4538), - [anon_sym_internal] = ACTIONS(4538), - [anon_sym_protected] = ACTIONS(4538), - [anon_sym_tailrec] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_infix] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym_external] = ACTIONS(4538), - [sym_property_modifier] = ACTIONS(4538), - [anon_sym_abstract] = ACTIONS(4538), - [anon_sym_final] = ACTIONS(4538), - [anon_sym_open] = ACTIONS(4538), - [anon_sym_vararg] = ACTIONS(4538), - [anon_sym_noinline] = ACTIONS(4538), - [anon_sym_crossinline] = ACTIONS(4538), - [anon_sym_expect] = ACTIONS(4538), - [anon_sym_actual] = ACTIONS(4538), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4540), - [sym_safe_nav] = ACTIONS(4540), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_object] = ACTIONS(4950), + [anon_sym_fun] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_this] = ACTIONS(4950), + [anon_sym_super] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4950), + [anon_sym_if] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_when] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4950), + [anon_sym_throw] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4950), + [anon_sym_continue] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4952), + [anon_sym_continue_AT] = ACTIONS(4952), + [anon_sym_break_AT] = ACTIONS(4952), + [anon_sym_this_AT] = ACTIONS(4952), + [anon_sym_super_AT] = ACTIONS(4952), + [sym_real_literal] = ACTIONS(4952), + [sym_integer_literal] = ACTIONS(4950), + [sym_hex_literal] = ACTIONS(4952), + [sym_bin_literal] = ACTIONS(4952), + [anon_sym_true] = ACTIONS(4950), + [anon_sym_false] = ACTIONS(4950), + [anon_sym_SQUOTE] = ACTIONS(4952), + [sym__backtick_identifier] = ACTIONS(4952), + [sym__automatic_semicolon] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4952), }, [3073] = { - [sym_enum_class_body] = STATE(3289), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_object] = ACTIONS(4429), - [anon_sym_fun] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_this] = ACTIONS(4429), - [anon_sym_super] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_when] = ACTIONS(4429), - [anon_sym_try] = ACTIONS(4429), - [anon_sym_throw] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4431), - [anon_sym_continue_AT] = ACTIONS(4431), - [anon_sym_break_AT] = ACTIONS(4431), - [sym_real_literal] = ACTIONS(4431), - [sym_integer_literal] = ACTIONS(4429), - [sym_hex_literal] = ACTIONS(4431), - [sym_bin_literal] = ACTIONS(4431), - [anon_sym_true] = ACTIONS(4429), - [anon_sym_false] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4431), + [sym__alpha_identifier] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_object] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_get] = ACTIONS(5020), + [anon_sym_set] = ACTIONS(5020), + [anon_sym_this] = ACTIONS(5020), + [anon_sym_super] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [sym_label] = ACTIONS(5020), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_when] = ACTIONS(5020), + [anon_sym_try] = ACTIONS(5020), + [anon_sym_throw] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_continue] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_BANGis] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5020), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(5020), + [anon_sym_inner] = ACTIONS(5020), + [anon_sym_value] = ACTIONS(5020), + [anon_sym_expect] = ACTIONS(5020), + [anon_sym_actual] = ACTIONS(5020), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5022), + [anon_sym_continue_AT] = ACTIONS(5022), + [anon_sym_break_AT] = ACTIONS(5022), + [anon_sym_this_AT] = ACTIONS(5022), + [anon_sym_super_AT] = ACTIONS(5022), + [sym_real_literal] = ACTIONS(5022), + [sym_integer_literal] = ACTIONS(5020), + [sym_hex_literal] = ACTIONS(5022), + [sym_bin_literal] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(5022), + [sym__automatic_semicolon] = ACTIONS(5022), + [sym_safe_nav] = ACTIONS(5022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5022), }, [3074] = { - [sym_class_body] = STATE(3284), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_object] = ACTIONS(4729), - [anon_sym_fun] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_this] = ACTIONS(4729), - [anon_sym_super] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_null] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_when] = ACTIONS(4729), - [anon_sym_try] = ACTIONS(4729), - [anon_sym_throw] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4731), - [anon_sym_continue_AT] = ACTIONS(4731), - [anon_sym_break_AT] = ACTIONS(4731), - [sym_real_literal] = ACTIONS(4731), - [sym_integer_literal] = ACTIONS(4729), - [sym_hex_literal] = ACTIONS(4731), - [sym_bin_literal] = ACTIONS(4731), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4731), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6625), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), }, [3075] = { - [sym__alpha_identifier] = ACTIONS(4548), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_RBRACK] = ACTIONS(4551), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4548), - [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(4548), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4548), - [anon_sym_set] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4551), - [sym_label] = ACTIONS(4551), - [anon_sym_in] = ACTIONS(4548), - [anon_sym_while] = ACTIONS(4548), - [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(4548), - [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(4548), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [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(4548), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [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(4548), - [anon_sym_sealed] = ACTIONS(4548), - [anon_sym_annotation] = ACTIONS(4548), - [anon_sym_data] = ACTIONS(4548), - [anon_sym_inner] = ACTIONS(4548), - [anon_sym_value] = ACTIONS(4548), - [anon_sym_override] = ACTIONS(4548), - [anon_sym_lateinit] = ACTIONS(4548), - [anon_sym_public] = ACTIONS(4548), - [anon_sym_private] = ACTIONS(4548), - [anon_sym_internal] = ACTIONS(4548), - [anon_sym_protected] = ACTIONS(4548), - [anon_sym_tailrec] = ACTIONS(4548), - [anon_sym_operator] = ACTIONS(4548), - [anon_sym_infix] = ACTIONS(4548), - [anon_sym_inline] = ACTIONS(4548), - [anon_sym_external] = ACTIONS(4548), - [sym_property_modifier] = ACTIONS(4548), - [anon_sym_abstract] = ACTIONS(4548), - [anon_sym_final] = ACTIONS(4548), - [anon_sym_open] = ACTIONS(4548), - [anon_sym_vararg] = ACTIONS(4548), - [anon_sym_noinline] = ACTIONS(4548), - [anon_sym_crossinline] = ACTIONS(4548), - [anon_sym_expect] = ACTIONS(4548), - [anon_sym_actual] = ACTIONS(4548), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4551), - [sym_safe_nav] = ACTIONS(4551), + [sym_catch_block] = STATE(3347), + [sym_finally_block] = STATE(3912), + [aux_sym_try_expression_repeat1] = STATE(3347), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(6628), + [anon_sym_finally] = ACTIONS(6630), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), }, [3076] = { - [sym__alpha_identifier] = ACTIONS(4554), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_RBRACK] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(4554), - [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(4554), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4554), - [anon_sym_set] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_DASH_GT] = ACTIONS(4556), - [sym_label] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4554), - [anon_sym_while] = ACTIONS(4554), - [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(4554), - [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(4554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [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(4554), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [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(4554), - [anon_sym_sealed] = ACTIONS(4554), - [anon_sym_annotation] = ACTIONS(4554), - [anon_sym_data] = ACTIONS(4554), - [anon_sym_inner] = ACTIONS(4554), - [anon_sym_value] = ACTIONS(4554), - [anon_sym_override] = ACTIONS(4554), - [anon_sym_lateinit] = ACTIONS(4554), - [anon_sym_public] = ACTIONS(4554), - [anon_sym_private] = ACTIONS(4554), - [anon_sym_internal] = ACTIONS(4554), - [anon_sym_protected] = ACTIONS(4554), - [anon_sym_tailrec] = ACTIONS(4554), - [anon_sym_operator] = ACTIONS(4554), - [anon_sym_infix] = ACTIONS(4554), - [anon_sym_inline] = ACTIONS(4554), - [anon_sym_external] = ACTIONS(4554), - [sym_property_modifier] = ACTIONS(4554), - [anon_sym_abstract] = ACTIONS(4554), - [anon_sym_final] = ACTIONS(4554), - [anon_sym_open] = ACTIONS(4554), - [anon_sym_vararg] = ACTIONS(4554), - [anon_sym_noinline] = ACTIONS(4554), - [anon_sym_crossinline] = ACTIONS(4554), - [anon_sym_expect] = ACTIONS(4554), - [anon_sym_actual] = ACTIONS(4554), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4556), - [sym_safe_nav] = ACTIONS(4556), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_object] = ACTIONS(4954), + [anon_sym_fun] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_this] = ACTIONS(4954), + [anon_sym_super] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4954), + [anon_sym_if] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_when] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4954), + [anon_sym_throw] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4954), + [anon_sym_continue] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4956), + [anon_sym_continue_AT] = ACTIONS(4956), + [anon_sym_break_AT] = ACTIONS(4956), + [anon_sym_this_AT] = ACTIONS(4956), + [anon_sym_super_AT] = ACTIONS(4956), + [sym_real_literal] = ACTIONS(4956), + [sym_integer_literal] = ACTIONS(4954), + [sym_hex_literal] = ACTIONS(4956), + [sym_bin_literal] = ACTIONS(4956), + [anon_sym_true] = ACTIONS(4954), + [anon_sym_false] = ACTIONS(4954), + [anon_sym_SQUOTE] = ACTIONS(4956), + [sym__backtick_identifier] = ACTIONS(4956), + [sym__automatic_semicolon] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4956), }, [3077] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_by] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3818), - [sym__quest] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_object] = ACTIONS(5089), + [anon_sym_fun] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_this] = ACTIONS(5089), + [anon_sym_super] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5089), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_null] = ACTIONS(5089), + [anon_sym_if] = ACTIONS(5089), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_when] = ACTIONS(5089), + [anon_sym_try] = ACTIONS(5089), + [anon_sym_throw] = ACTIONS(5089), + [anon_sym_return] = ACTIONS(5089), + [anon_sym_continue] = ACTIONS(5089), + [anon_sym_break] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5091), + [anon_sym_continue_AT] = ACTIONS(5091), + [anon_sym_break_AT] = ACTIONS(5091), + [anon_sym_this_AT] = ACTIONS(5091), + [anon_sym_super_AT] = ACTIONS(5091), + [sym_real_literal] = ACTIONS(5091), + [sym_integer_literal] = ACTIONS(5089), + [sym_hex_literal] = ACTIONS(5091), + [sym_bin_literal] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5089), + [anon_sym_false] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5091), }, [3078] = { - [sym__alpha_identifier] = ACTIONS(4717), - [anon_sym_AT] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4717), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4717), - [anon_sym_EQ] = ACTIONS(4717), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4717), - [anon_sym_GT] = ACTIONS(4717), - [anon_sym_where] = ACTIONS(4717), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_get] = ACTIONS(4717), - [anon_sym_set] = ACTIONS(4717), - [anon_sym_STAR] = ACTIONS(4717), - [anon_sym_DASH_GT] = ACTIONS(4719), - [sym_label] = ACTIONS(4719), - [anon_sym_in] = ACTIONS(4717), - [anon_sym_while] = ACTIONS(4717), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_QMARK_COLON] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_else] = ACTIONS(4717), - [anon_sym_COLON_COLON] = ACTIONS(4719), - [anon_sym_PLUS_EQ] = ACTIONS(4719), - [anon_sym_DASH_EQ] = ACTIONS(4719), - [anon_sym_STAR_EQ] = ACTIONS(4719), - [anon_sym_SLASH_EQ] = ACTIONS(4719), - [anon_sym_PERCENT_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_BANGin] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4717), - [anon_sym_BANGis] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4717), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_SLASH] = ACTIONS(4717), - [anon_sym_PERCENT] = ACTIONS(4717), - [anon_sym_as_QMARK] = ACTIONS(4719), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_BANG_BANG] = ACTIONS(4719), - [anon_sym_suspend] = ACTIONS(4717), - [anon_sym_sealed] = ACTIONS(4717), - [anon_sym_annotation] = ACTIONS(4717), - [anon_sym_data] = ACTIONS(4717), - [anon_sym_inner] = ACTIONS(4717), - [anon_sym_value] = ACTIONS(4717), - [anon_sym_override] = ACTIONS(4717), - [anon_sym_lateinit] = ACTIONS(4717), - [anon_sym_public] = ACTIONS(4717), - [anon_sym_private] = ACTIONS(4717), - [anon_sym_internal] = ACTIONS(4717), - [anon_sym_protected] = ACTIONS(4717), - [anon_sym_tailrec] = ACTIONS(4717), - [anon_sym_operator] = ACTIONS(4717), - [anon_sym_infix] = ACTIONS(4717), - [anon_sym_inline] = ACTIONS(4717), - [anon_sym_external] = ACTIONS(4717), - [sym_property_modifier] = ACTIONS(4717), - [anon_sym_abstract] = ACTIONS(4717), - [anon_sym_final] = ACTIONS(4717), - [anon_sym_open] = ACTIONS(4717), - [anon_sym_vararg] = ACTIONS(4717), - [anon_sym_noinline] = ACTIONS(4717), - [anon_sym_crossinline] = ACTIONS(4717), - [anon_sym_expect] = ACTIONS(4717), - [anon_sym_actual] = ACTIONS(4717), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4719), - [sym_safe_nav] = ACTIONS(4719), + [sym_class_body] = STATE(3478), + [sym_type_constraints] = STATE(3354), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3079] = { - [sym_type_constraints] = STATE(3598), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6538), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_object] = ACTIONS(5024), + [anon_sym_fun] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_this] = ACTIONS(5024), + [anon_sym_super] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_throw] = ACTIONS(5024), + [anon_sym_return] = ACTIONS(5024), + [anon_sym_continue] = ACTIONS(5024), + [anon_sym_break] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6625), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5026), + [anon_sym_continue_AT] = ACTIONS(5026), + [anon_sym_break_AT] = ACTIONS(5026), + [anon_sym_this_AT] = ACTIONS(5026), + [anon_sym_super_AT] = ACTIONS(5026), + [sym_real_literal] = ACTIONS(5026), + [sym_integer_literal] = ACTIONS(5024), + [sym_hex_literal] = ACTIONS(5026), + [sym_bin_literal] = ACTIONS(5026), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [anon_sym_SQUOTE] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5026), }, [3080] = { - [sym_enum_class_body] = STATE(3284), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_object] = ACTIONS(4729), - [anon_sym_fun] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_this] = ACTIONS(4729), - [anon_sym_super] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_null] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_when] = ACTIONS(4729), - [anon_sym_try] = ACTIONS(4729), - [anon_sym_throw] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4731), - [anon_sym_continue_AT] = ACTIONS(4731), - [anon_sym_break_AT] = ACTIONS(4731), - [sym_real_literal] = ACTIONS(4731), - [sym_integer_literal] = ACTIONS(4729), - [sym_hex_literal] = ACTIONS(4731), - [sym_bin_literal] = ACTIONS(4731), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4731), + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_object] = ACTIONS(4914), + [anon_sym_fun] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_this] = ACTIONS(4914), + [anon_sym_super] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_if] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_when] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4914), + [anon_sym_throw] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4914), + [anon_sym_continue] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4916), + [anon_sym_continue_AT] = ACTIONS(4916), + [anon_sym_break_AT] = ACTIONS(4916), + [anon_sym_this_AT] = ACTIONS(4916), + [anon_sym_super_AT] = ACTIONS(4916), + [sym_real_literal] = ACTIONS(4916), + [sym_integer_literal] = ACTIONS(4914), + [sym_hex_literal] = ACTIONS(4916), + [sym_bin_literal] = ACTIONS(4916), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [anon_sym_SQUOTE] = ACTIONS(4916), + [sym__backtick_identifier] = ACTIONS(4916), + [sym__automatic_semicolon] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4916), }, [3081] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_RBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_RPAREN] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [anon_sym_DASH_GT] = ACTIONS(4707), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_while] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), + [sym_type_constraints] = STATE(3351), + [sym_enum_class_body] = STATE(3472), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_DASH_GT] = ACTIONS(4469), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_while] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3082] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_RBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_RPAREN] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [anon_sym_DASH_GT] = ACTIONS(4593), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_while] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_suspend] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_annotation] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_lateinit] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_tailrec] = ACTIONS(4591), - [anon_sym_operator] = ACTIONS(4591), - [anon_sym_infix] = ACTIONS(4591), - [anon_sym_inline] = ACTIONS(4591), - [anon_sym_external] = ACTIONS(4591), - [sym_property_modifier] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_open] = ACTIONS(4591), - [anon_sym_vararg] = ACTIONS(4591), - [anon_sym_noinline] = ACTIONS(4591), - [anon_sym_crossinline] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4593), - [sym_safe_nav] = ACTIONS(4593), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_object] = ACTIONS(5095), + [anon_sym_fun] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_this] = ACTIONS(5095), + [anon_sym_super] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_null] = ACTIONS(5095), + [anon_sym_if] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_when] = ACTIONS(5095), + [anon_sym_try] = ACTIONS(5095), + [anon_sym_throw] = ACTIONS(5095), + [anon_sym_return] = ACTIONS(5095), + [anon_sym_continue] = ACTIONS(5095), + [anon_sym_break] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5097), + [anon_sym_continue_AT] = ACTIONS(5097), + [anon_sym_break_AT] = ACTIONS(5097), + [anon_sym_this_AT] = ACTIONS(5097), + [anon_sym_super_AT] = ACTIONS(5097), + [sym_real_literal] = ACTIONS(5097), + [sym_integer_literal] = ACTIONS(5095), + [sym_hex_literal] = ACTIONS(5097), + [sym_bin_literal] = ACTIONS(5097), + [anon_sym_true] = ACTIONS(5095), + [anon_sym_false] = ACTIONS(5095), + [anon_sym_SQUOTE] = ACTIONS(5097), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5097), }, [3083] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_RPAREN] = ACTIONS(4589), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_DASH_GT] = ACTIONS(4589), - [sym_label] = ACTIONS(4589), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_while] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4589), - [sym_safe_nav] = ACTIONS(4589), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_object] = ACTIONS(5043), + [anon_sym_fun] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_this] = ACTIONS(5043), + [anon_sym_super] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5043), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5043), + [anon_sym_if] = ACTIONS(5043), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_try] = ACTIONS(5043), + [anon_sym_throw] = ACTIONS(5043), + [anon_sym_return] = ACTIONS(5043), + [anon_sym_continue] = ACTIONS(5043), + [anon_sym_break] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5043), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5045), + [anon_sym_continue_AT] = ACTIONS(5045), + [anon_sym_break_AT] = ACTIONS(5045), + [anon_sym_this_AT] = ACTIONS(5045), + [anon_sym_super_AT] = ACTIONS(5045), + [sym_real_literal] = ACTIONS(5045), + [sym_integer_literal] = ACTIONS(5043), + [sym_hex_literal] = ACTIONS(5045), + [sym_bin_literal] = ACTIONS(5045), + [anon_sym_true] = ACTIONS(5043), + [anon_sym_false] = ACTIONS(5043), + [anon_sym_SQUOTE] = ACTIONS(5045), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5045), }, [3084] = { - [sym_type_constraints] = STATE(3614), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6542), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, [3085] = { - [sym_enum_class_body] = STATE(3331), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_RBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_object] = ACTIONS(4028), + [anon_sym_fun] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4028), + [anon_sym_super] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4028), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4030), + [anon_sym_continue_AT] = ACTIONS(4030), + [anon_sym_break_AT] = ACTIONS(4030), + [anon_sym_this_AT] = ACTIONS(4030), + [anon_sym_super_AT] = ACTIONS(4030), + [sym_real_literal] = ACTIONS(4030), + [sym_integer_literal] = ACTIONS(4028), + [sym_hex_literal] = ACTIONS(4030), + [sym_bin_literal] = ACTIONS(4030), + [anon_sym_true] = ACTIONS(4028), + [anon_sym_false] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4030), }, [3086] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_RBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_RPAREN] = ACTIONS(4597), - [anon_sym_by] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4597), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_while] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), }, [3087] = { - [sym_class_body] = STATE(3370), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_while] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_RBRACK] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_RPAREN] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4489), + [anon_sym_GT] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [anon_sym_DASH_GT] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_while] = ACTIONS(4489), + [anon_sym_DOT_DOT] = ACTIONS(4491), + [anon_sym_QMARK_COLON] = ACTIONS(4491), + [anon_sym_AMP_AMP] = ACTIONS(4491), + [anon_sym_PIPE_PIPE] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ] = ACTIONS(4489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ] = ACTIONS(4489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4491), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4491), + [sym_safe_nav] = ACTIONS(4491), [sym_multiline_comment] = ACTIONS(3), }, [3088] = { - [sym_enum_class_body] = STATE(3279), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_object] = ACTIONS(4474), - [anon_sym_fun] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_this] = ACTIONS(4474), - [anon_sym_super] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4474), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_when] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_throw] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4476), - [anon_sym_continue_AT] = ACTIONS(4476), - [anon_sym_break_AT] = ACTIONS(4476), - [sym_real_literal] = ACTIONS(4476), - [sym_integer_literal] = ACTIONS(4474), - [sym_hex_literal] = ACTIONS(4476), - [sym_bin_literal] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4476), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4476), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6632), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6634), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [3089] = { - [aux_sym_type_constraints_repeat1] = STATE(3104), - [sym__alpha_identifier] = ACTIONS(4398), - [anon_sym_AT] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [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(6507), - [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_DOT] = 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_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), - [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), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, [3090] = { - [sym_type_constraints] = STATE(3613), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6544), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_object] = ACTIONS(4846), + [anon_sym_fun] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_this] = ACTIONS(4846), + [anon_sym_super] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_when] = ACTIONS(4846), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_throw] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4848), + [anon_sym_continue_AT] = ACTIONS(4848), + [anon_sym_break_AT] = ACTIONS(4848), + [anon_sym_this_AT] = ACTIONS(4848), + [anon_sym_super_AT] = ACTIONS(4848), + [sym_real_literal] = ACTIONS(4848), + [sym_integer_literal] = ACTIONS(4846), + [sym_hex_literal] = ACTIONS(4848), + [sym_bin_literal] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4848), }, [3091] = { - [sym_type_constraints] = STATE(3611), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6546), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_object] = ACTIONS(5067), + [anon_sym_fun] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_this] = ACTIONS(5067), + [anon_sym_super] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [sym_label] = ACTIONS(5067), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_null] = ACTIONS(5067), + [anon_sym_if] = ACTIONS(5067), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_when] = ACTIONS(5067), + [anon_sym_try] = ACTIONS(5067), + [anon_sym_throw] = ACTIONS(5067), + [anon_sym_return] = ACTIONS(5067), + [anon_sym_continue] = ACTIONS(5067), + [anon_sym_break] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5067), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5069), + [anon_sym_continue_AT] = ACTIONS(5069), + [anon_sym_break_AT] = ACTIONS(5069), + [anon_sym_this_AT] = ACTIONS(5069), + [anon_sym_super_AT] = ACTIONS(5069), + [sym_real_literal] = ACTIONS(5069), + [sym_integer_literal] = ACTIONS(5067), + [sym_hex_literal] = ACTIONS(5069), + [sym_bin_literal] = ACTIONS(5069), + [anon_sym_true] = ACTIONS(5067), + [anon_sym_false] = ACTIONS(5067), + [anon_sym_SQUOTE] = ACTIONS(5069), + [sym__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5069), }, [3092] = { - [sym_class_body] = STATE(3267), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_DASH_GT] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, [3093] = { - [sym_class_body] = STATE(3269), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3122), - [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_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6634), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [3094] = { - [sym__alpha_identifier] = ACTIONS(4673), - [anon_sym_AT] = ACTIONS(4675), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_as] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_RBRACE] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4673), - [anon_sym_object] = ACTIONS(4673), - [anon_sym_fun] = ACTIONS(4673), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4675), - [anon_sym_get] = ACTIONS(4673), - [anon_sym_set] = ACTIONS(4673), - [anon_sym_this] = ACTIONS(4673), - [anon_sym_super] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(4675), - [anon_sym_QMARK_COLON] = ACTIONS(4675), - [anon_sym_AMP_AMP] = ACTIONS(4675), - [anon_sym_PIPE_PIPE] = ACTIONS(4675), - [anon_sym_null] = ACTIONS(4673), - [anon_sym_if] = ACTIONS(4673), - [anon_sym_else] = ACTIONS(4673), - [anon_sym_when] = ACTIONS(4673), - [anon_sym_try] = ACTIONS(4673), - [anon_sym_throw] = ACTIONS(4673), - [anon_sym_return] = ACTIONS(4673), - [anon_sym_continue] = ACTIONS(4673), - [anon_sym_break] = ACTIONS(4673), - [anon_sym_COLON_COLON] = ACTIONS(4675), - [anon_sym_PLUS_EQ] = ACTIONS(4675), - [anon_sym_DASH_EQ] = ACTIONS(4675), - [anon_sym_STAR_EQ] = ACTIONS(4675), - [anon_sym_SLASH_EQ] = ACTIONS(4675), - [anon_sym_PERCENT_EQ] = ACTIONS(4675), - [anon_sym_BANG_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4675), - [anon_sym_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4675), - [anon_sym_LT_EQ] = ACTIONS(4675), - [anon_sym_GT_EQ] = ACTIONS(4675), - [anon_sym_BANGin] = ACTIONS(4675), - [anon_sym_is] = ACTIONS(4673), - [anon_sym_BANGis] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4675), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_BANG_BANG] = ACTIONS(4675), - [anon_sym_data] = ACTIONS(4673), - [anon_sym_inner] = ACTIONS(4673), - [anon_sym_value] = ACTIONS(4673), - [anon_sym_expect] = ACTIONS(4673), - [anon_sym_actual] = ACTIONS(4673), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4675), - [anon_sym_continue_AT] = ACTIONS(4675), - [anon_sym_break_AT] = ACTIONS(4675), - [sym_real_literal] = ACTIONS(4675), - [sym_integer_literal] = ACTIONS(4673), - [sym_hex_literal] = ACTIONS(4675), - [sym_bin_literal] = ACTIONS(4675), - [anon_sym_true] = ACTIONS(4673), - [anon_sym_false] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4675), - [sym__backtick_identifier] = ACTIONS(4675), - [sym__automatic_semicolon] = ACTIONS(4675), - [sym_safe_nav] = ACTIONS(4675), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4675), + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_this] = ACTIONS(1584), + [anon_sym_super] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [sym_label] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_null] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(1584), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_throw] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1582), + [anon_sym_continue_AT] = ACTIONS(1582), + [anon_sym_break_AT] = ACTIONS(1582), + [anon_sym_this_AT] = ACTIONS(1582), + [anon_sym_super_AT] = ACTIONS(1582), + [sym_real_literal] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1584), + [sym_hex_literal] = ACTIONS(1582), + [sym_bin_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1582), + [sym__backtick_identifier] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1582), }, [3095] = { - [sym_class_body] = STATE(3234), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_object] = ACTIONS(5059), + [anon_sym_fun] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_this] = ACTIONS(5059), + [anon_sym_super] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [sym_label] = ACTIONS(5059), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_null] = ACTIONS(5059), + [anon_sym_if] = ACTIONS(5059), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_try] = ACTIONS(5059), + [anon_sym_throw] = ACTIONS(5059), + [anon_sym_return] = ACTIONS(5059), + [anon_sym_continue] = ACTIONS(5059), + [anon_sym_break] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5059), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5061), + [anon_sym_continue_AT] = ACTIONS(5061), + [anon_sym_break_AT] = ACTIONS(5061), + [anon_sym_this_AT] = ACTIONS(5061), + [anon_sym_super_AT] = ACTIONS(5061), + [sym_real_literal] = ACTIONS(5061), + [sym_integer_literal] = ACTIONS(5059), + [sym_hex_literal] = ACTIONS(5061), + [sym_bin_literal] = ACTIONS(5061), + [anon_sym_true] = ACTIONS(5059), + [anon_sym_false] = ACTIONS(5059), + [anon_sym_SQUOTE] = ACTIONS(5061), + [sym__backtick_identifier] = ACTIONS(5061), + [sym__automatic_semicolon] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5061), }, [3096] = { - [sym_type_constraints] = STATE(3609), - [sym_function_body] = STATE(3509), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6548), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_RPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_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_type_constraints] = STATE(3345), + [sym_enum_class_body] = STATE(3466), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_RBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_DASH_GT] = ACTIONS(4483), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_while] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, [3097] = { - [sym_enum_class_body] = STATE(3182), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6636), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [3098] = { - [aux_sym_user_type_repeat1] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6550), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [sym__quest] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [sym_label] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(6640), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_object] = ACTIONS(5051), + [anon_sym_fun] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_this] = ACTIONS(5051), + [anon_sym_super] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_if] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_try] = ACTIONS(5051), + [anon_sym_throw] = ACTIONS(5051), + [anon_sym_return] = ACTIONS(5051), + [anon_sym_continue] = ACTIONS(5051), + [anon_sym_break] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5053), + [anon_sym_continue_AT] = ACTIONS(5053), + [anon_sym_break_AT] = ACTIONS(5053), + [anon_sym_this_AT] = ACTIONS(5053), + [anon_sym_super_AT] = ACTIONS(5053), + [sym_real_literal] = ACTIONS(5053), + [sym_integer_literal] = ACTIONS(5051), + [sym_hex_literal] = ACTIONS(5053), + [sym_bin_literal] = ACTIONS(5053), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [anon_sym_SQUOTE] = ACTIONS(5053), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5053), }, [3099] = { - [sym__alpha_identifier] = ACTIONS(4693), - [anon_sym_AT] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_as] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4693), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_where] = ACTIONS(4693), - [anon_sym_object] = ACTIONS(4693), - [anon_sym_fun] = ACTIONS(4693), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4695), - [anon_sym_get] = ACTIONS(4693), - [anon_sym_set] = ACTIONS(4693), - [anon_sym_this] = ACTIONS(4693), - [anon_sym_super] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [sym_label] = ACTIONS(4693), - [anon_sym_in] = ACTIONS(4693), - [anon_sym_DOT_DOT] = ACTIONS(4695), - [anon_sym_QMARK_COLON] = ACTIONS(4695), - [anon_sym_AMP_AMP] = ACTIONS(4695), - [anon_sym_PIPE_PIPE] = ACTIONS(4695), - [anon_sym_null] = ACTIONS(4693), - [anon_sym_if] = ACTIONS(4693), - [anon_sym_else] = ACTIONS(4693), - [anon_sym_when] = ACTIONS(4693), - [anon_sym_try] = ACTIONS(4693), - [anon_sym_throw] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4693), - [anon_sym_continue] = ACTIONS(4693), - [anon_sym_break] = ACTIONS(4693), - [anon_sym_COLON_COLON] = ACTIONS(4695), - [anon_sym_PLUS_EQ] = ACTIONS(4695), - [anon_sym_DASH_EQ] = ACTIONS(4695), - [anon_sym_STAR_EQ] = ACTIONS(4695), - [anon_sym_SLASH_EQ] = ACTIONS(4695), - [anon_sym_PERCENT_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4695), - [anon_sym_LT_EQ] = ACTIONS(4695), - [anon_sym_GT_EQ] = ACTIONS(4695), - [anon_sym_BANGin] = ACTIONS(4695), - [anon_sym_is] = ACTIONS(4693), - [anon_sym_BANGis] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_as_QMARK] = ACTIONS(4695), - [anon_sym_PLUS_PLUS] = ACTIONS(4695), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_BANG_BANG] = ACTIONS(4695), - [anon_sym_data] = ACTIONS(4693), - [anon_sym_inner] = ACTIONS(4693), - [anon_sym_value] = ACTIONS(4693), - [anon_sym_expect] = ACTIONS(4693), - [anon_sym_actual] = ACTIONS(4693), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4695), - [anon_sym_continue_AT] = ACTIONS(4695), - [anon_sym_break_AT] = ACTIONS(4695), - [sym_real_literal] = ACTIONS(4695), - [sym_integer_literal] = ACTIONS(4693), - [sym_hex_literal] = ACTIONS(4695), - [sym_bin_literal] = ACTIONS(4695), - [anon_sym_L] = ACTIONS(6553), - [anon_sym_true] = ACTIONS(4693), - [anon_sym_false] = ACTIONS(4693), - [anon_sym_SQUOTE] = ACTIONS(4695), - [sym__backtick_identifier] = ACTIONS(4695), - [sym__automatic_semicolon] = ACTIONS(4695), - [sym_safe_nav] = ACTIONS(4695), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4695), + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_object] = ACTIONS(5073), + [anon_sym_fun] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_this] = ACTIONS(5073), + [anon_sym_super] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5073), + [anon_sym_if] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_when] = ACTIONS(5073), + [anon_sym_try] = ACTIONS(5073), + [anon_sym_throw] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5073), + [anon_sym_continue] = ACTIONS(5073), + [anon_sym_break] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5075), + [anon_sym_continue_AT] = ACTIONS(5075), + [anon_sym_break_AT] = ACTIONS(5075), + [anon_sym_this_AT] = ACTIONS(5075), + [anon_sym_super_AT] = ACTIONS(5075), + [sym_real_literal] = ACTIONS(5075), + [sym_integer_literal] = ACTIONS(5073), + [sym_hex_literal] = ACTIONS(5075), + [sym_bin_literal] = ACTIONS(5075), + [anon_sym_true] = ACTIONS(5073), + [anon_sym_false] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5075), + [sym__backtick_identifier] = ACTIONS(5075), + [sym__automatic_semicolon] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5075), }, [3100] = { - [sym_function_body] = STATE(3386), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6642), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [3101] = { - [sym__alpha_identifier] = ACTIONS(4554), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_object] = ACTIONS(4554), - [anon_sym_fun] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4554), - [anon_sym_set] = ACTIONS(4554), - [anon_sym_this] = ACTIONS(4554), - [anon_sym_super] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [sym_label] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4554), - [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(4554), - [anon_sym_if] = ACTIONS(4554), - [anon_sym_else] = ACTIONS(4554), - [anon_sym_when] = ACTIONS(4554), - [anon_sym_try] = ACTIONS(4554), - [anon_sym_throw] = ACTIONS(4554), - [anon_sym_return] = ACTIONS(4554), - [anon_sym_continue] = ACTIONS(4554), - [anon_sym_break] = ACTIONS(4554), - [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(4554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [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(4554), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_as_QMARK] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_BANG_BANG] = ACTIONS(4556), - [anon_sym_data] = ACTIONS(4554), - [anon_sym_inner] = ACTIONS(4554), - [anon_sym_value] = ACTIONS(4554), - [anon_sym_expect] = ACTIONS(4554), - [anon_sym_actual] = ACTIONS(4554), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4556), - [anon_sym_continue_AT] = ACTIONS(4556), - [anon_sym_break_AT] = ACTIONS(4556), - [sym_real_literal] = ACTIONS(4556), - [sym_integer_literal] = ACTIONS(4554), - [sym_hex_literal] = ACTIONS(4556), - [sym_bin_literal] = ACTIONS(4556), - [anon_sym_true] = ACTIONS(4554), - [anon_sym_false] = ACTIONS(4554), - [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(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6646), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [3102] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_RBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_RPAREN] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_DASH_GT] = ACTIONS(4679), - [sym_label] = ACTIONS(4679), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_while] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_suspend] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4677), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_lateinit] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_tailrec] = ACTIONS(4677), - [anon_sym_operator] = ACTIONS(4677), - [anon_sym_infix] = ACTIONS(4677), - [anon_sym_inline] = ACTIONS(4677), - [anon_sym_external] = ACTIONS(4677), - [sym_property_modifier] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_final] = ACTIONS(4677), - [anon_sym_open] = ACTIONS(4677), - [anon_sym_vararg] = ACTIONS(4677), - [anon_sym_noinline] = ACTIONS(4677), - [anon_sym_crossinline] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [3103] = { - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_object] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_this] = ACTIONS(4221), - [anon_sym_super] = ACTIONS(4221), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4221), - [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(4221), - [anon_sym_if] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4221), - [anon_sym_when] = ACTIONS(4221), - [anon_sym_try] = ACTIONS(4221), - [anon_sym_throw] = ACTIONS(4221), - [anon_sym_return] = ACTIONS(4221), - [anon_sym_continue] = ACTIONS(4221), - [anon_sym_break] = ACTIONS(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [anon_sym_as_QMARK] = ACTIONS(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4221), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [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(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_object] = ACTIONS(4946), + [anon_sym_fun] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_this] = ACTIONS(4946), + [anon_sym_super] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4946), + [anon_sym_if] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_when] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4946), + [anon_sym_throw] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4946), + [anon_sym_continue] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4948), + [anon_sym_continue_AT] = ACTIONS(4948), + [anon_sym_break_AT] = ACTIONS(4948), + [anon_sym_this_AT] = ACTIONS(4948), + [anon_sym_super_AT] = ACTIONS(4948), + [sym_real_literal] = ACTIONS(4948), + [sym_integer_literal] = ACTIONS(4946), + [sym_hex_literal] = ACTIONS(4948), + [sym_bin_literal] = ACTIONS(4948), + [anon_sym_true] = ACTIONS(4946), + [anon_sym_false] = ACTIONS(4946), + [anon_sym_SQUOTE] = ACTIONS(4948), + [sym__backtick_identifier] = ACTIONS(4948), + [sym__automatic_semicolon] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4948), }, [3104] = { - [aux_sym_type_constraints_repeat1] = STATE(3104), - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(6557), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_object] = ACTIONS(4410), - [anon_sym_fun] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_this] = ACTIONS(4410), - [anon_sym_super] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_throw] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4412), - [anon_sym_continue_AT] = ACTIONS(4412), - [anon_sym_break_AT] = ACTIONS(4412), - [sym_real_literal] = ACTIONS(4412), - [sym_integer_literal] = ACTIONS(4410), - [sym_hex_literal] = ACTIONS(4412), - [sym_bin_literal] = ACTIONS(4412), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [anon_sym_SQUOTE] = ACTIONS(4412), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4412), + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_RBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_RPAREN] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [anon_sym_DASH_GT] = ACTIONS(4487), + [sym_label] = ACTIONS(4487), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_while] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_suspend] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_annotation] = ACTIONS(4485), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_lateinit] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_tailrec] = ACTIONS(4485), + [anon_sym_operator] = ACTIONS(4485), + [anon_sym_infix] = ACTIONS(4485), + [anon_sym_inline] = ACTIONS(4485), + [anon_sym_external] = ACTIONS(4485), + [sym_property_modifier] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_final] = ACTIONS(4485), + [anon_sym_open] = ACTIONS(4485), + [anon_sym_vararg] = ACTIONS(4485), + [anon_sym_noinline] = ACTIONS(4485), + [anon_sym_crossinline] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), + [sym_multiline_comment] = ACTIONS(3), }, [3105] = { - [sym_type_constraints] = STATE(3577), - [sym_function_body] = STATE(3828), - [sym__block] = STATE(3927), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6650), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3106] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_RBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_RPAREN] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_DASH_GT] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_while] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4345), + [anon_sym_sealed] = ACTIONS(4345), + [anon_sym_annotation] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_override] = ACTIONS(4345), + [anon_sym_lateinit] = ACTIONS(4345), + [anon_sym_public] = ACTIONS(4345), + [anon_sym_private] = ACTIONS(4345), + [anon_sym_internal] = ACTIONS(4345), + [anon_sym_protected] = ACTIONS(4345), + [anon_sym_tailrec] = ACTIONS(4345), + [anon_sym_operator] = ACTIONS(4345), + [anon_sym_infix] = ACTIONS(4345), + [anon_sym_inline] = ACTIONS(4345), + [anon_sym_external] = ACTIONS(4345), + [sym_property_modifier] = ACTIONS(4345), + [anon_sym_abstract] = ACTIONS(4345), + [anon_sym_final] = ACTIONS(4345), + [anon_sym_open] = ACTIONS(4345), + [anon_sym_vararg] = ACTIONS(4345), + [anon_sym_noinline] = ACTIONS(4345), + [anon_sym_crossinline] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), + [sym_multiline_comment] = ACTIONS(3), + }, + [3107] = { + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3108] = { [sym__alpha_identifier] = ACTIONS(4122), [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6560), + [anon_sym_COLON] = ACTIONS(6561), [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_RBRACK] = ACTIONS(4124), [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), + [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(5416), + [anon_sym_where] = ACTIONS(4122), [anon_sym_DOT] = ACTIONS(4122), [anon_sym_SEMI] = ACTIONS(4124), [anon_sym_get] = ACTIONS(4122), [anon_sym_set] = ACTIONS(4122), [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4124), [sym_label] = ACTIONS(4124), [anon_sym_in] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), [anon_sym_DOT_DOT] = ACTIONS(4124), [anon_sym_QMARK_COLON] = ACTIONS(4124), [anon_sym_AMP_AMP] = ACTIONS(4124), @@ -363308,2543 +371344,873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4122), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), [sym_safe_nav] = ACTIONS(4124), [sym_multiline_comment] = ACTIONS(3), }, - [3106] = { - [sym__alpha_identifier] = ACTIONS(4649), - [anon_sym_AT] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_RBRACK] = ACTIONS(4651), - [anon_sym_as] = ACTIONS(4649), - [anon_sym_EQ] = ACTIONS(4649), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [anon_sym_by] = ACTIONS(4649), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_get] = ACTIONS(4649), - [anon_sym_set] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4649), - [anon_sym_DASH_GT] = ACTIONS(4651), - [sym_label] = ACTIONS(4651), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_while] = ACTIONS(4649), - [anon_sym_DOT_DOT] = ACTIONS(4651), - [anon_sym_QMARK_COLON] = ACTIONS(4651), - [anon_sym_AMP_AMP] = ACTIONS(4651), - [anon_sym_PIPE_PIPE] = ACTIONS(4651), - [anon_sym_else] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4651), - [anon_sym_PLUS_EQ] = ACTIONS(4651), - [anon_sym_DASH_EQ] = ACTIONS(4651), - [anon_sym_STAR_EQ] = ACTIONS(4651), - [anon_sym_SLASH_EQ] = ACTIONS(4651), - [anon_sym_PERCENT_EQ] = ACTIONS(4651), - [anon_sym_BANG_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4651), - [anon_sym_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4651), - [anon_sym_LT_EQ] = ACTIONS(4651), - [anon_sym_GT_EQ] = ACTIONS(4651), - [anon_sym_BANGin] = ACTIONS(4651), - [anon_sym_is] = ACTIONS(4649), - [anon_sym_BANGis] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4649), - [anon_sym_as_QMARK] = ACTIONS(4651), - [anon_sym_PLUS_PLUS] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4651), - [anon_sym_BANG_BANG] = ACTIONS(4651), - [anon_sym_suspend] = ACTIONS(4649), - [anon_sym_sealed] = ACTIONS(4649), - [anon_sym_annotation] = ACTIONS(4649), - [anon_sym_data] = ACTIONS(4649), - [anon_sym_inner] = ACTIONS(4649), - [anon_sym_value] = ACTIONS(4649), - [anon_sym_override] = ACTIONS(4649), - [anon_sym_lateinit] = ACTIONS(4649), - [anon_sym_public] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4649), - [anon_sym_internal] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4649), - [anon_sym_tailrec] = ACTIONS(4649), - [anon_sym_operator] = ACTIONS(4649), - [anon_sym_infix] = ACTIONS(4649), - [anon_sym_inline] = ACTIONS(4649), - [anon_sym_external] = ACTIONS(4649), - [sym_property_modifier] = ACTIONS(4649), - [anon_sym_abstract] = ACTIONS(4649), - [anon_sym_final] = ACTIONS(4649), - [anon_sym_open] = ACTIONS(4649), - [anon_sym_vararg] = ACTIONS(4649), - [anon_sym_noinline] = ACTIONS(4649), - [anon_sym_crossinline] = ACTIONS(4649), - [anon_sym_expect] = ACTIONS(4649), - [anon_sym_actual] = ACTIONS(4649), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4651), - [sym_safe_nav] = ACTIONS(4651), - [sym_multiline_comment] = ACTIONS(3), - }, - [3107] = { - [sym__alpha_identifier] = ACTIONS(4657), - [anon_sym_AT] = ACTIONS(4659), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_RBRACK] = ACTIONS(4659), - [anon_sym_as] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4659), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4659), - [anon_sym_RPAREN] = ACTIONS(4659), - [anon_sym_by] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4657), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_where] = ACTIONS(4657), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(4657), - [anon_sym_set] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_DASH_GT] = ACTIONS(4659), - [sym_label] = ACTIONS(4659), - [anon_sym_in] = ACTIONS(4657), - [anon_sym_while] = ACTIONS(4657), - [anon_sym_DOT_DOT] = ACTIONS(4659), - [anon_sym_QMARK_COLON] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_PIPE_PIPE] = ACTIONS(4659), - [anon_sym_else] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4659), - [anon_sym_PLUS_EQ] = ACTIONS(4659), - [anon_sym_DASH_EQ] = ACTIONS(4659), - [anon_sym_STAR_EQ] = ACTIONS(4659), - [anon_sym_SLASH_EQ] = ACTIONS(4659), - [anon_sym_PERCENT_EQ] = ACTIONS(4659), - [anon_sym_BANG_EQ] = ACTIONS(4657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), - [anon_sym_EQ_EQ] = ACTIONS(4657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), - [anon_sym_LT_EQ] = ACTIONS(4659), - [anon_sym_GT_EQ] = ACTIONS(4659), - [anon_sym_BANGin] = ACTIONS(4659), - [anon_sym_is] = ACTIONS(4657), - [anon_sym_BANGis] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_as_QMARK] = ACTIONS(4659), - [anon_sym_PLUS_PLUS] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_BANG_BANG] = ACTIONS(4659), - [anon_sym_suspend] = ACTIONS(4657), - [anon_sym_sealed] = ACTIONS(4657), - [anon_sym_annotation] = ACTIONS(4657), - [anon_sym_data] = ACTIONS(4657), - [anon_sym_inner] = ACTIONS(4657), - [anon_sym_value] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_lateinit] = ACTIONS(4657), - [anon_sym_public] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4657), - [anon_sym_internal] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4657), - [anon_sym_tailrec] = ACTIONS(4657), - [anon_sym_operator] = ACTIONS(4657), - [anon_sym_infix] = ACTIONS(4657), - [anon_sym_inline] = ACTIONS(4657), - [anon_sym_external] = ACTIONS(4657), - [sym_property_modifier] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_final] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_vararg] = ACTIONS(4657), - [anon_sym_noinline] = ACTIONS(4657), - [anon_sym_crossinline] = ACTIONS(4657), - [anon_sym_expect] = ACTIONS(4657), - [anon_sym_actual] = ACTIONS(4657), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4659), - [sym_safe_nav] = ACTIONS(4659), - [sym_multiline_comment] = ACTIONS(3), - }, - [3108] = { - [sym__alpha_identifier] = ACTIONS(4661), - [anon_sym_AT] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_RBRACK] = ACTIONS(4663), - [anon_sym_as] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_RPAREN] = ACTIONS(4663), - [anon_sym_by] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4661), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_where] = ACTIONS(4661), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_DASH_GT] = ACTIONS(4663), - [sym_label] = ACTIONS(4663), - [anon_sym_in] = ACTIONS(4661), - [anon_sym_while] = ACTIONS(4661), - [anon_sym_DOT_DOT] = ACTIONS(4663), - [anon_sym_QMARK_COLON] = ACTIONS(4663), - [anon_sym_AMP_AMP] = ACTIONS(4663), - [anon_sym_PIPE_PIPE] = ACTIONS(4663), - [anon_sym_else] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4663), - [anon_sym_PLUS_EQ] = ACTIONS(4663), - [anon_sym_DASH_EQ] = ACTIONS(4663), - [anon_sym_STAR_EQ] = ACTIONS(4663), - [anon_sym_SLASH_EQ] = ACTIONS(4663), - [anon_sym_PERCENT_EQ] = ACTIONS(4663), - [anon_sym_BANG_EQ] = ACTIONS(4661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), - [anon_sym_EQ_EQ] = ACTIONS(4661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), - [anon_sym_LT_EQ] = ACTIONS(4663), - [anon_sym_GT_EQ] = ACTIONS(4663), - [anon_sym_BANGin] = ACTIONS(4663), - [anon_sym_is] = ACTIONS(4661), - [anon_sym_BANGis] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_as_QMARK] = ACTIONS(4663), - [anon_sym_PLUS_PLUS] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_BANG_BANG] = ACTIONS(4663), - [anon_sym_suspend] = ACTIONS(4661), - [anon_sym_sealed] = ACTIONS(4661), - [anon_sym_annotation] = ACTIONS(4661), - [anon_sym_data] = ACTIONS(4661), - [anon_sym_inner] = ACTIONS(4661), - [anon_sym_value] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_lateinit] = ACTIONS(4661), - [anon_sym_public] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4661), - [anon_sym_internal] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4661), - [anon_sym_tailrec] = ACTIONS(4661), - [anon_sym_operator] = ACTIONS(4661), - [anon_sym_infix] = ACTIONS(4661), - [anon_sym_inline] = ACTIONS(4661), - [anon_sym_external] = ACTIONS(4661), - [sym_property_modifier] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_final] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_vararg] = ACTIONS(4661), - [anon_sym_noinline] = ACTIONS(4661), - [anon_sym_crossinline] = ACTIONS(4661), - [anon_sym_expect] = ACTIONS(4661), - [anon_sym_actual] = ACTIONS(4661), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4663), - [sym_safe_nav] = ACTIONS(4663), - [sym_multiline_comment] = ACTIONS(3), - }, [3109] = { - [sym_type_constraints] = STATE(3586), - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6566), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6654), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_RBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [anon_sym_DASH_GT] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [3110] = { - [sym__alpha_identifier] = ACTIONS(4570), - [anon_sym_AT] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_as] = ACTIONS(4570), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4573), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_by] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_where] = ACTIONS(4570), - [anon_sym_object] = ACTIONS(4570), - [anon_sym_fun] = ACTIONS(4570), - [anon_sym_DOT] = ACTIONS(4570), - [anon_sym_SEMI] = ACTIONS(4573), - [anon_sym_get] = ACTIONS(4570), - [anon_sym_set] = ACTIONS(4570), - [anon_sym_this] = ACTIONS(4570), - [anon_sym_super] = ACTIONS(4570), - [anon_sym_STAR] = ACTIONS(4570), - [sym_label] = ACTIONS(4570), - [anon_sym_in] = ACTIONS(4570), - [anon_sym_DOT_DOT] = ACTIONS(4573), - [anon_sym_QMARK_COLON] = ACTIONS(4573), - [anon_sym_AMP_AMP] = ACTIONS(4573), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(4570), - [anon_sym_if] = ACTIONS(4570), - [anon_sym_else] = ACTIONS(4570), - [anon_sym_when] = ACTIONS(4570), - [anon_sym_try] = ACTIONS(4570), - [anon_sym_throw] = ACTIONS(4570), - [anon_sym_return] = ACTIONS(4570), - [anon_sym_continue] = ACTIONS(4570), - [anon_sym_break] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_BANG_EQ] = ACTIONS(4570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), - [anon_sym_EQ_EQ] = ACTIONS(4570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4570), - [anon_sym_BANGis] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_SLASH] = ACTIONS(4570), - [anon_sym_PERCENT] = ACTIONS(4570), - [anon_sym_as_QMARK] = ACTIONS(4573), - [anon_sym_PLUS_PLUS] = ACTIONS(4573), - [anon_sym_DASH_DASH] = ACTIONS(4573), - [anon_sym_BANG] = ACTIONS(4570), - [anon_sym_BANG_BANG] = ACTIONS(4573), - [anon_sym_data] = ACTIONS(4570), - [anon_sym_inner] = ACTIONS(4570), - [anon_sym_value] = ACTIONS(4570), - [anon_sym_expect] = ACTIONS(4570), - [anon_sym_actual] = ACTIONS(4570), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4573), - [anon_sym_continue_AT] = ACTIONS(4573), - [anon_sym_break_AT] = ACTIONS(4573), - [sym_real_literal] = ACTIONS(4573), - [sym_integer_literal] = ACTIONS(4570), - [sym_hex_literal] = ACTIONS(4573), - [sym_bin_literal] = ACTIONS(4573), - [anon_sym_true] = ACTIONS(4570), - [anon_sym_false] = ACTIONS(4570), - [anon_sym_SQUOTE] = ACTIONS(4573), - [sym__backtick_identifier] = ACTIONS(4573), - [sym__automatic_semicolon] = ACTIONS(4573), - [sym_safe_nav] = ACTIONS(4573), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4573), + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4974), + [anon_sym_if] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_when] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4974), + [anon_sym_throw] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4974), + [anon_sym_continue] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4976), + [anon_sym_continue_AT] = ACTIONS(4976), + [anon_sym_break_AT] = ACTIONS(4976), + [anon_sym_this_AT] = ACTIONS(4976), + [anon_sym_super_AT] = ACTIONS(4976), + [sym_real_literal] = ACTIONS(4976), + [sym_integer_literal] = ACTIONS(4974), + [sym_hex_literal] = ACTIONS(4976), + [sym_bin_literal] = ACTIONS(4976), + [anon_sym_true] = ACTIONS(4974), + [anon_sym_false] = ACTIONS(4974), + [anon_sym_SQUOTE] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4976), }, [3111] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(6461), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_object] = ACTIONS(5039), + [anon_sym_fun] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_this] = ACTIONS(5039), + [anon_sym_super] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5039), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_null] = ACTIONS(5039), + [anon_sym_if] = ACTIONS(5039), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_try] = ACTIONS(5039), + [anon_sym_throw] = ACTIONS(5039), + [anon_sym_return] = ACTIONS(5039), + [anon_sym_continue] = ACTIONS(5039), + [anon_sym_break] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5039), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5041), + [anon_sym_continue_AT] = ACTIONS(5041), + [anon_sym_break_AT] = ACTIONS(5041), + [anon_sym_this_AT] = ACTIONS(5041), + [anon_sym_super_AT] = ACTIONS(5041), + [sym_real_literal] = ACTIONS(5041), + [sym_integer_literal] = ACTIONS(5039), + [sym_hex_literal] = ACTIONS(5041), + [sym_bin_literal] = ACTIONS(5041), + [anon_sym_true] = ACTIONS(5039), + [anon_sym_false] = ACTIONS(5039), + [anon_sym_SQUOTE] = ACTIONS(5041), + [sym__backtick_identifier] = ACTIONS(5041), + [sym__automatic_semicolon] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5041), }, [3112] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_by] = ACTIONS(4595), - [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_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_this] = ACTIONS(4595), - [anon_sym_super] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_if] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_try] = ACTIONS(4595), - [anon_sym_throw] = ACTIONS(4595), - [anon_sym_return] = ACTIONS(4595), - [anon_sym_continue] = ACTIONS(4595), - [anon_sym_break] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4597), - [anon_sym_continue_AT] = ACTIONS(4597), - [anon_sym_break_AT] = ACTIONS(4597), - [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), + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [3113] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3014), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [3114] = { - [sym_enum_class_body] = STATE(3370), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_while] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_object] = ACTIONS(5085), + [anon_sym_fun] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_this] = ACTIONS(5085), + [anon_sym_super] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_null] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_when] = ACTIONS(5085), + [anon_sym_try] = ACTIONS(5085), + [anon_sym_throw] = ACTIONS(5085), + [anon_sym_return] = ACTIONS(5085), + [anon_sym_continue] = ACTIONS(5085), + [anon_sym_break] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5087), + [anon_sym_continue_AT] = ACTIONS(5087), + [anon_sym_break_AT] = ACTIONS(5087), + [anon_sym_this_AT] = ACTIONS(5087), + [anon_sym_super_AT] = ACTIONS(5087), + [sym_real_literal] = ACTIONS(5087), + [sym_integer_literal] = ACTIONS(5085), + [sym_hex_literal] = ACTIONS(5087), + [sym_bin_literal] = ACTIONS(5087), + [anon_sym_true] = ACTIONS(5085), + [anon_sym_false] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5087), }, [3115] = { - [sym_enum_class_body] = STATE(3269), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3152), - [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_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [3116] = { - [sym_class_body] = STATE(3174), - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_object] = ACTIONS(4721), - [anon_sym_fun] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_this] = ACTIONS(4721), - [anon_sym_super] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [sym_label] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_null] = ACTIONS(4721), - [anon_sym_if] = ACTIONS(4721), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_when] = ACTIONS(4721), - [anon_sym_try] = ACTIONS(4721), - [anon_sym_throw] = ACTIONS(4721), - [anon_sym_return] = ACTIONS(4721), - [anon_sym_continue] = ACTIONS(4721), - [anon_sym_break] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4723), - [anon_sym_continue_AT] = ACTIONS(4723), - [anon_sym_break_AT] = ACTIONS(4723), - [sym_real_literal] = ACTIONS(4723), - [sym_integer_literal] = ACTIONS(4721), - [sym_hex_literal] = ACTIONS(4723), - [sym_bin_literal] = ACTIONS(4723), - [anon_sym_true] = ACTIONS(4721), - [anon_sym_false] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4723), - [sym__backtick_identifier] = ACTIONS(4723), - [sym__automatic_semicolon] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4723), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_object] = ACTIONS(3420), + [anon_sym_fun] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_super] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3422), + [anon_sym_continue_AT] = ACTIONS(3422), + [anon_sym_break_AT] = ACTIONS(3422), + [anon_sym_this_AT] = ACTIONS(3422), + [anon_sym_super_AT] = ACTIONS(3422), + [sym_real_literal] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_hex_literal] = ACTIONS(3422), + [sym_bin_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3422), }, [3117] = { - [sym_class_body] = STATE(3380), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_RBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_RPAREN] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [anon_sym_DASH_GT] = ACTIONS(4510), - [sym_label] = ACTIONS(4510), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_while] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), + [sym_class_body] = STATE(3517), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_RPAREN] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4357), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_while] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), }, [3118] = { - [sym_class_body] = STATE(3229), - [sym__alpha_identifier] = ACTIONS(4562), - [anon_sym_AT] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_RBRACK] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_RPAREN] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_get] = ACTIONS(4562), - [anon_sym_set] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_DASH_GT] = ACTIONS(4564), - [sym_label] = ACTIONS(4564), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_while] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_QMARK_COLON] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [anon_sym_else] = ACTIONS(4562), - [anon_sym_COLON_COLON] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_BANGin] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_BANGis] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_as_QMARK] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_BANG_BANG] = ACTIONS(4564), - [anon_sym_suspend] = ACTIONS(4562), - [anon_sym_sealed] = ACTIONS(4562), - [anon_sym_annotation] = ACTIONS(4562), - [anon_sym_data] = ACTIONS(4562), - [anon_sym_inner] = ACTIONS(4562), - [anon_sym_value] = ACTIONS(4562), - [anon_sym_override] = ACTIONS(4562), - [anon_sym_lateinit] = ACTIONS(4562), - [anon_sym_public] = ACTIONS(4562), - [anon_sym_private] = ACTIONS(4562), - [anon_sym_internal] = ACTIONS(4562), - [anon_sym_protected] = ACTIONS(4562), - [anon_sym_tailrec] = ACTIONS(4562), - [anon_sym_operator] = ACTIONS(4562), - [anon_sym_infix] = ACTIONS(4562), - [anon_sym_inline] = ACTIONS(4562), - [anon_sym_external] = ACTIONS(4562), - [sym_property_modifier] = ACTIONS(4562), - [anon_sym_abstract] = ACTIONS(4562), - [anon_sym_final] = ACTIONS(4562), - [anon_sym_open] = ACTIONS(4562), - [anon_sym_vararg] = ACTIONS(4562), - [anon_sym_noinline] = ACTIONS(4562), - [anon_sym_crossinline] = ACTIONS(4562), - [anon_sym_expect] = ACTIONS(4562), - [anon_sym_actual] = ACTIONS(4562), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4564), - [sym_safe_nav] = ACTIONS(4564), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), }, [3119] = { - [sym__alpha_identifier] = ACTIONS(4558), - [anon_sym_AT] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_RBRACK] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACE] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_RPAREN] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_get] = ACTIONS(4558), - [anon_sym_set] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4560), - [sym_label] = ACTIONS(4560), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_while] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_QMARK_COLON] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [anon_sym_else] = ACTIONS(4558), - [anon_sym_COLON_COLON] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_BANGin] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_BANGis] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_as_QMARK] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_BANG_BANG] = ACTIONS(4560), - [anon_sym_suspend] = ACTIONS(4558), - [anon_sym_sealed] = ACTIONS(4558), - [anon_sym_annotation] = ACTIONS(4558), - [anon_sym_data] = ACTIONS(4558), - [anon_sym_inner] = ACTIONS(4558), - [anon_sym_value] = ACTIONS(4558), - [anon_sym_override] = ACTIONS(4558), - [anon_sym_lateinit] = ACTIONS(4558), - [anon_sym_public] = ACTIONS(4558), - [anon_sym_private] = ACTIONS(4558), - [anon_sym_internal] = ACTIONS(4558), - [anon_sym_protected] = ACTIONS(4558), - [anon_sym_tailrec] = ACTIONS(4558), - [anon_sym_operator] = ACTIONS(4558), - [anon_sym_infix] = ACTIONS(4558), - [anon_sym_inline] = ACTIONS(4558), - [anon_sym_external] = ACTIONS(4558), - [sym_property_modifier] = ACTIONS(4558), - [anon_sym_abstract] = ACTIONS(4558), - [anon_sym_final] = ACTIONS(4558), - [anon_sym_open] = ACTIONS(4558), - [anon_sym_vararg] = ACTIONS(4558), - [anon_sym_noinline] = ACTIONS(4558), - [anon_sym_crossinline] = ACTIONS(4558), - [anon_sym_expect] = ACTIONS(4558), - [anon_sym_actual] = ACTIONS(4558), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4560), - [sym_safe_nav] = ACTIONS(4560), - [sym_multiline_comment] = ACTIONS(3), - }, - [3120] = { - [sym__alpha_identifier] = ACTIONS(4717), - [anon_sym_AT] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4717), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4717), - [anon_sym_EQ] = ACTIONS(4717), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4717), - [anon_sym_GT] = ACTIONS(4717), - [anon_sym_where] = ACTIONS(4717), - [anon_sym_object] = ACTIONS(4717), - [anon_sym_fun] = ACTIONS(4717), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_get] = ACTIONS(4717), - [anon_sym_set] = ACTIONS(4717), - [anon_sym_this] = ACTIONS(4717), - [anon_sym_super] = ACTIONS(4717), - [anon_sym_STAR] = ACTIONS(4717), - [sym_label] = ACTIONS(4717), - [anon_sym_in] = ACTIONS(4717), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_QMARK_COLON] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_null] = ACTIONS(4717), - [anon_sym_if] = ACTIONS(4717), - [anon_sym_else] = ACTIONS(4717), - [anon_sym_when] = ACTIONS(4717), - [anon_sym_try] = ACTIONS(4717), - [anon_sym_throw] = ACTIONS(4717), - [anon_sym_return] = ACTIONS(4717), - [anon_sym_continue] = ACTIONS(4717), - [anon_sym_break] = ACTIONS(4717), - [anon_sym_COLON_COLON] = ACTIONS(4719), - [anon_sym_PLUS_EQ] = ACTIONS(4719), - [anon_sym_DASH_EQ] = ACTIONS(4719), - [anon_sym_STAR_EQ] = ACTIONS(4719), - [anon_sym_SLASH_EQ] = ACTIONS(4719), - [anon_sym_PERCENT_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_BANGin] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4717), - [anon_sym_BANGis] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4717), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_SLASH] = ACTIONS(4717), - [anon_sym_PERCENT] = ACTIONS(4717), - [anon_sym_as_QMARK] = ACTIONS(4719), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(4717), - [anon_sym_BANG_BANG] = ACTIONS(4719), - [anon_sym_data] = ACTIONS(4717), - [anon_sym_inner] = ACTIONS(4717), - [anon_sym_value] = ACTIONS(4717), - [anon_sym_expect] = ACTIONS(4717), - [anon_sym_actual] = ACTIONS(4717), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4719), - [anon_sym_continue_AT] = ACTIONS(4719), - [anon_sym_break_AT] = ACTIONS(4719), - [sym_real_literal] = ACTIONS(4719), - [sym_integer_literal] = ACTIONS(4717), - [sym_hex_literal] = ACTIONS(4719), - [sym_bin_literal] = ACTIONS(4719), - [anon_sym_true] = ACTIONS(4717), - [anon_sym_false] = ACTIONS(4717), - [anon_sym_SQUOTE] = ACTIONS(4719), - [sym__backtick_identifier] = ACTIONS(4719), - [sym__automatic_semicolon] = ACTIONS(4719), - [sym_safe_nav] = ACTIONS(4719), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4719), - }, - [3121] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3053), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3122] = { - [sym__alpha_identifier] = ACTIONS(4725), - [anon_sym_AT] = ACTIONS(4727), - [anon_sym_COLON] = ACTIONS(4725), - [anon_sym_LBRACK] = ACTIONS(4727), - [anon_sym_as] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(4727), - [anon_sym_RBRACE] = ACTIONS(4727), - [anon_sym_LPAREN] = ACTIONS(4727), - [anon_sym_COMMA] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_where] = ACTIONS(4725), - [anon_sym_object] = ACTIONS(4725), - [anon_sym_fun] = ACTIONS(4725), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_get] = ACTIONS(4725), - [anon_sym_set] = ACTIONS(4725), - [anon_sym_this] = ACTIONS(4725), - [anon_sym_super] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4725), - [sym_label] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_DOT_DOT] = ACTIONS(4727), - [anon_sym_QMARK_COLON] = ACTIONS(4727), - [anon_sym_AMP_AMP] = ACTIONS(4727), - [anon_sym_PIPE_PIPE] = ACTIONS(4727), - [anon_sym_null] = ACTIONS(4725), - [anon_sym_if] = ACTIONS(4725), - [anon_sym_else] = ACTIONS(4725), - [anon_sym_when] = ACTIONS(4725), - [anon_sym_try] = ACTIONS(4725), - [anon_sym_throw] = ACTIONS(4725), - [anon_sym_return] = ACTIONS(4725), - [anon_sym_continue] = ACTIONS(4725), - [anon_sym_break] = ACTIONS(4725), - [anon_sym_COLON_COLON] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4727), - [anon_sym_STAR_EQ] = ACTIONS(4727), - [anon_sym_SLASH_EQ] = ACTIONS(4727), - [anon_sym_PERCENT_EQ] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4727), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4727), - [anon_sym_LT_EQ] = ACTIONS(4727), - [anon_sym_GT_EQ] = ACTIONS(4727), - [anon_sym_BANGin] = ACTIONS(4727), - [anon_sym_is] = ACTIONS(4725), - [anon_sym_BANGis] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4725), - [anon_sym_as_QMARK] = ACTIONS(4727), - [anon_sym_PLUS_PLUS] = ACTIONS(4727), - [anon_sym_DASH_DASH] = ACTIONS(4727), - [anon_sym_BANG] = ACTIONS(4725), - [anon_sym_BANG_BANG] = ACTIONS(4727), - [anon_sym_data] = ACTIONS(4725), - [anon_sym_inner] = ACTIONS(4725), - [anon_sym_value] = ACTIONS(4725), - [anon_sym_expect] = ACTIONS(4725), - [anon_sym_actual] = ACTIONS(4725), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4727), - [anon_sym_continue_AT] = ACTIONS(4727), - [anon_sym_break_AT] = ACTIONS(4727), - [sym_real_literal] = ACTIONS(4727), - [sym_integer_literal] = ACTIONS(4725), - [sym_hex_literal] = ACTIONS(4727), - [sym_bin_literal] = ACTIONS(4727), - [anon_sym_true] = ACTIONS(4725), - [anon_sym_false] = ACTIONS(4725), - [anon_sym_SQUOTE] = ACTIONS(4727), - [sym__backtick_identifier] = ACTIONS(4727), - [sym__automatic_semicolon] = ACTIONS(4727), - [sym_safe_nav] = ACTIONS(4727), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4727), - }, - [3123] = { - [sym__alpha_identifier] = ACTIONS(4689), - [anon_sym_AT] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4691), - [anon_sym_RBRACK] = ACTIONS(4691), - [anon_sym_as] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4691), - [anon_sym_RBRACE] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_RPAREN] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(4689), - [anon_sym_where] = ACTIONS(4689), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_get] = ACTIONS(4689), - [anon_sym_set] = ACTIONS(4689), - [anon_sym_STAR] = ACTIONS(4689), - [anon_sym_DASH_GT] = ACTIONS(4691), - [sym_label] = ACTIONS(4691), - [anon_sym_in] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_DOT_DOT] = ACTIONS(4691), - [anon_sym_QMARK_COLON] = ACTIONS(4691), - [anon_sym_AMP_AMP] = ACTIONS(4691), - [anon_sym_PIPE_PIPE] = ACTIONS(4691), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4691), - [anon_sym_PLUS_EQ] = ACTIONS(4691), - [anon_sym_DASH_EQ] = ACTIONS(4691), - [anon_sym_STAR_EQ] = ACTIONS(4691), - [anon_sym_SLASH_EQ] = ACTIONS(4691), - [anon_sym_PERCENT_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ] = ACTIONS(4689), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ] = ACTIONS(4689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4691), - [anon_sym_LT_EQ] = ACTIONS(4691), - [anon_sym_GT_EQ] = ACTIONS(4691), - [anon_sym_BANGin] = ACTIONS(4691), - [anon_sym_is] = ACTIONS(4689), - [anon_sym_BANGis] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_SLASH] = ACTIONS(4689), - [anon_sym_PERCENT] = ACTIONS(4689), - [anon_sym_as_QMARK] = ACTIONS(4691), - [anon_sym_PLUS_PLUS] = ACTIONS(4691), - [anon_sym_DASH_DASH] = ACTIONS(4691), - [anon_sym_BANG_BANG] = ACTIONS(4691), - [anon_sym_suspend] = ACTIONS(4689), - [anon_sym_sealed] = ACTIONS(4689), - [anon_sym_annotation] = ACTIONS(4689), - [anon_sym_data] = ACTIONS(4689), - [anon_sym_inner] = ACTIONS(4689), - [anon_sym_value] = ACTIONS(4689), - [anon_sym_override] = ACTIONS(4689), - [anon_sym_lateinit] = ACTIONS(4689), - [anon_sym_public] = ACTIONS(4689), - [anon_sym_private] = ACTIONS(4689), - [anon_sym_internal] = ACTIONS(4689), - [anon_sym_protected] = ACTIONS(4689), - [anon_sym_tailrec] = ACTIONS(4689), - [anon_sym_operator] = ACTIONS(4689), - [anon_sym_infix] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_external] = ACTIONS(4689), - [sym_property_modifier] = ACTIONS(4689), - [anon_sym_abstract] = ACTIONS(4689), - [anon_sym_final] = ACTIONS(4689), - [anon_sym_open] = ACTIONS(4689), - [anon_sym_vararg] = ACTIONS(4689), - [anon_sym_noinline] = ACTIONS(4689), - [anon_sym_crossinline] = ACTIONS(4689), - [anon_sym_expect] = ACTIONS(4689), - [anon_sym_actual] = ACTIONS(4689), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4691), - [sym_safe_nav] = ACTIONS(4691), - [sym_multiline_comment] = ACTIONS(3), - }, - [3124] = { - [sym_enum_class_body] = STATE(3262), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), - }, - [3125] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3037), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3126] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_object] = ACTIONS(4591), - [anon_sym_fun] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_this] = ACTIONS(4591), - [anon_sym_super] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [sym_label] = ACTIONS(4591), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4591), - [anon_sym_if] = ACTIONS(4591), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_when] = ACTIONS(4591), - [anon_sym_try] = ACTIONS(4591), - [anon_sym_throw] = ACTIONS(4591), - [anon_sym_return] = ACTIONS(4591), - [anon_sym_continue] = ACTIONS(4591), - [anon_sym_break] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4593), - [anon_sym_continue_AT] = ACTIONS(4593), - [anon_sym_break_AT] = ACTIONS(4593), - [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), - }, - [3127] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_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_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_this] = ACTIONS(4587), - [anon_sym_super] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [sym_label] = ACTIONS(4587), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), - [anon_sym_if] = ACTIONS(4587), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_try] = ACTIONS(4587), - [anon_sym_throw] = ACTIONS(4587), - [anon_sym_return] = ACTIONS(4587), - [anon_sym_continue] = ACTIONS(4587), - [anon_sym_break] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4589), - [anon_sym_continue_AT] = ACTIONS(4589), - [anon_sym_break_AT] = ACTIONS(4589), - [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), - }, - [3128] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(2224), - [sym__comparison_operator] = STATE(2213), - [sym__in_operator] = STATE(2212), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(2209), - [sym__multiplicative_operator] = STATE(2208), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2207), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6511), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_DASH_GT] = ACTIONS(3033), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6513), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(6495), - [anon_sym_QMARK_COLON] = ACTIONS(6515), - [anon_sym_AMP_AMP] = ACTIONS(6517), - [anon_sym_PIPE_PIPE] = ACTIONS(6519), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(6521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_BANGin] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_PERCENT] = ACTIONS(6491), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), - }, - [3129] = { - [sym_class_body] = STATE(3388), - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_RBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_RPAREN] = ACTIONS(4683), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4683), - [sym_label] = ACTIONS(4683), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_while] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), - [sym_multiline_comment] = ACTIONS(3), - }, - [3130] = { - [sym_class_body] = STATE(3179), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), - }, - [3131] = { - [sym_import_list] = STATE(3131), - [sym_import_header] = STATE(8701), - [aux_sym_source_file_repeat2] = STATE(3131), - [aux_sym_import_list_repeat1] = STATE(8701), - [ts_builtin_sym_end] = ACTIONS(6568), - [sym__alpha_identifier] = ACTIONS(6570), - [anon_sym_AT] = ACTIONS(6568), - [anon_sym_LBRACK] = ACTIONS(6568), - [anon_sym_import] = ACTIONS(6572), - [anon_sym_typealias] = ACTIONS(6570), - [anon_sym_class] = ACTIONS(6570), - [anon_sym_interface] = ACTIONS(6570), - [anon_sym_enum] = ACTIONS(6570), - [anon_sym_LBRACE] = ACTIONS(6568), - [anon_sym_LPAREN] = ACTIONS(6568), - [anon_sym_val] = ACTIONS(6570), - [anon_sym_var] = ACTIONS(6570), - [anon_sym_object] = ACTIONS(6570), - [anon_sym_fun] = ACTIONS(6570), - [anon_sym_get] = ACTIONS(6570), - [anon_sym_set] = ACTIONS(6570), - [anon_sym_this] = ACTIONS(6570), - [anon_sym_super] = ACTIONS(6570), - [anon_sym_STAR] = ACTIONS(6568), - [sym_label] = ACTIONS(6570), - [anon_sym_for] = ACTIONS(6570), - [anon_sym_while] = ACTIONS(6570), - [anon_sym_do] = ACTIONS(6570), - [anon_sym_null] = ACTIONS(6570), - [anon_sym_if] = ACTIONS(6570), - [anon_sym_when] = ACTIONS(6570), - [anon_sym_try] = ACTIONS(6570), - [anon_sym_throw] = ACTIONS(6570), - [anon_sym_return] = ACTIONS(6570), - [anon_sym_continue] = ACTIONS(6570), - [anon_sym_break] = ACTIONS(6570), - [anon_sym_COLON_COLON] = ACTIONS(6568), - [anon_sym_PLUS] = ACTIONS(6570), - [anon_sym_DASH] = ACTIONS(6570), - [anon_sym_PLUS_PLUS] = ACTIONS(6568), - [anon_sym_DASH_DASH] = ACTIONS(6568), - [anon_sym_BANG] = ACTIONS(6568), - [anon_sym_suspend] = ACTIONS(6570), - [anon_sym_sealed] = ACTIONS(6570), - [anon_sym_annotation] = ACTIONS(6570), - [anon_sym_data] = ACTIONS(6570), - [anon_sym_inner] = ACTIONS(6570), - [anon_sym_value] = ACTIONS(6570), - [anon_sym_override] = ACTIONS(6570), - [anon_sym_lateinit] = ACTIONS(6570), - [anon_sym_public] = ACTIONS(6570), - [anon_sym_private] = ACTIONS(6570), - [anon_sym_internal] = ACTIONS(6570), - [anon_sym_protected] = ACTIONS(6570), - [anon_sym_tailrec] = ACTIONS(6570), - [anon_sym_operator] = ACTIONS(6570), - [anon_sym_infix] = ACTIONS(6570), - [anon_sym_inline] = ACTIONS(6570), - [anon_sym_external] = ACTIONS(6570), - [sym_property_modifier] = ACTIONS(6570), - [anon_sym_abstract] = ACTIONS(6570), - [anon_sym_final] = ACTIONS(6570), - [anon_sym_open] = ACTIONS(6570), - [anon_sym_vararg] = ACTIONS(6570), - [anon_sym_noinline] = ACTIONS(6570), - [anon_sym_crossinline] = ACTIONS(6570), - [anon_sym_expect] = ACTIONS(6570), - [anon_sym_actual] = ACTIONS(6570), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6568), - [anon_sym_continue_AT] = ACTIONS(6568), - [anon_sym_break_AT] = ACTIONS(6568), - [sym_real_literal] = ACTIONS(6568), - [sym_integer_literal] = ACTIONS(6570), - [sym_hex_literal] = ACTIONS(6568), - [sym_bin_literal] = ACTIONS(6568), - [anon_sym_true] = ACTIONS(6570), - [anon_sym_false] = ACTIONS(6570), - [anon_sym_SQUOTE] = ACTIONS(6568), - [sym__backtick_identifier] = ACTIONS(6568), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6568), - }, - [3132] = { - [sym_enum_class_body] = STATE(3390), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [3133] = { - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, - [3134] = { - [sym__alpha_identifier] = ACTIONS(4693), - [anon_sym_AT] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_as] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4693), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_where] = ACTIONS(4693), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4695), - [anon_sym_get] = ACTIONS(4693), - [anon_sym_set] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_DASH_GT] = ACTIONS(4695), - [sym_label] = ACTIONS(4695), - [anon_sym_in] = ACTIONS(4693), - [anon_sym_while] = ACTIONS(4693), - [anon_sym_DOT_DOT] = ACTIONS(4695), - [anon_sym_QMARK_COLON] = ACTIONS(4695), - [anon_sym_AMP_AMP] = ACTIONS(4695), - [anon_sym_PIPE_PIPE] = ACTIONS(4695), - [anon_sym_else] = ACTIONS(4693), - [anon_sym_COLON_COLON] = ACTIONS(4695), - [anon_sym_PLUS_EQ] = ACTIONS(4695), - [anon_sym_DASH_EQ] = ACTIONS(4695), - [anon_sym_STAR_EQ] = ACTIONS(4695), - [anon_sym_SLASH_EQ] = ACTIONS(4695), - [anon_sym_PERCENT_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4695), - [anon_sym_LT_EQ] = ACTIONS(4695), - [anon_sym_GT_EQ] = ACTIONS(4695), - [anon_sym_BANGin] = ACTIONS(4695), - [anon_sym_is] = ACTIONS(4693), - [anon_sym_BANGis] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_as_QMARK] = ACTIONS(4695), - [anon_sym_PLUS_PLUS] = ACTIONS(4695), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_BANG_BANG] = ACTIONS(4695), - [anon_sym_suspend] = ACTIONS(4693), - [anon_sym_sealed] = ACTIONS(4693), - [anon_sym_annotation] = ACTIONS(4693), - [anon_sym_data] = ACTIONS(4693), - [anon_sym_inner] = ACTIONS(4693), - [anon_sym_value] = ACTIONS(4693), - [anon_sym_override] = ACTIONS(4693), - [anon_sym_lateinit] = ACTIONS(4693), - [anon_sym_public] = ACTIONS(4693), - [anon_sym_private] = ACTIONS(4693), - [anon_sym_internal] = ACTIONS(4693), - [anon_sym_protected] = ACTIONS(4693), - [anon_sym_tailrec] = ACTIONS(4693), - [anon_sym_operator] = ACTIONS(4693), - [anon_sym_infix] = ACTIONS(4693), - [anon_sym_inline] = ACTIONS(4693), - [anon_sym_external] = ACTIONS(4693), - [sym_property_modifier] = ACTIONS(4693), - [anon_sym_abstract] = ACTIONS(4693), - [anon_sym_final] = ACTIONS(4693), - [anon_sym_open] = ACTIONS(4693), - [anon_sym_vararg] = ACTIONS(4693), - [anon_sym_noinline] = ACTIONS(4693), - [anon_sym_crossinline] = ACTIONS(4693), - [anon_sym_expect] = ACTIONS(4693), - [anon_sym_actual] = ACTIONS(4693), - [sym_line_comment] = ACTIONS(3), - [anon_sym_L] = ACTIONS(6575), - [sym__backtick_identifier] = ACTIONS(4695), - [sym_safe_nav] = ACTIONS(4695), - [sym_multiline_comment] = ACTIONS(3), - }, - [3135] = { - [sym_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - }, - [3136] = { - [sym_type_arguments] = STATE(6509), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), [sym__alpha_identifier] = ACTIONS(4147), [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(6577), [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), [anon_sym_as] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_RBRACE] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(4149), [anon_sym_COMMA] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), + [anon_sym_RPAREN] = ACTIONS(4149), [anon_sym_LT] = ACTIONS(4147), [anon_sym_GT] = ACTIONS(4147), [anon_sym_where] = ACTIONS(4147), @@ -365852,10 +372218,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4149), [anon_sym_get] = ACTIONS(4147), [anon_sym_set] = ACTIONS(4147), - [sym__quest] = ACTIONS(4108), [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), [sym_label] = ACTIONS(4149), [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), [anon_sym_DOT_DOT] = ACTIONS(4149), [anon_sym_QMARK_COLON] = ACTIONS(4149), [anon_sym_AMP_AMP] = ACTIONS(4149), @@ -365912,1861 +372279,9360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4149), - [sym__automatic_semicolon] = ACTIONS(4149), [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, - [3137] = { - [sym_class_body] = STATE(3244), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), + [3120] = { + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_object] = ACTIONS(4930), + [anon_sym_fun] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_this] = ACTIONS(4930), + [anon_sym_super] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_when] = ACTIONS(4930), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_throw] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_continue] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4932), + [anon_sym_continue_AT] = ACTIONS(4932), + [anon_sym_break_AT] = ACTIONS(4932), + [anon_sym_this_AT] = ACTIONS(4932), + [anon_sym_super_AT] = ACTIONS(4932), + [sym_real_literal] = ACTIONS(4932), + [sym_integer_literal] = ACTIONS(4930), + [sym_hex_literal] = ACTIONS(4932), + [sym_bin_literal] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4930), + [anon_sym_false] = ACTIONS(4930), + [anon_sym_SQUOTE] = ACTIONS(4932), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4932), + }, + [3121] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [3122] = { + [sym_file_annotation] = STATE(3122), + [aux_sym_source_file_repeat1] = STATE(3122), + [ts_builtin_sym_end] = ACTIONS(6658), + [sym__alpha_identifier] = ACTIONS(6660), + [anon_sym_AT] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(6658), + [anon_sym_package] = ACTIONS(6660), + [anon_sym_import] = ACTIONS(6660), + [anon_sym_typealias] = ACTIONS(6660), + [anon_sym_class] = ACTIONS(6660), + [anon_sym_interface] = ACTIONS(6660), + [anon_sym_enum] = ACTIONS(6660), + [anon_sym_LBRACE] = ACTIONS(6658), + [anon_sym_LPAREN] = ACTIONS(6658), + [anon_sym_val] = ACTIONS(6660), + [anon_sym_var] = ACTIONS(6660), + [anon_sym_object] = ACTIONS(6660), + [anon_sym_fun] = ACTIONS(6660), + [anon_sym_get] = ACTIONS(6660), + [anon_sym_set] = ACTIONS(6660), + [anon_sym_this] = ACTIONS(6660), + [anon_sym_super] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6658), + [sym_label] = ACTIONS(6660), + [anon_sym_for] = ACTIONS(6660), + [anon_sym_while] = ACTIONS(6660), + [anon_sym_do] = ACTIONS(6660), + [anon_sym_null] = ACTIONS(6660), + [anon_sym_if] = ACTIONS(6660), + [anon_sym_when] = ACTIONS(6660), + [anon_sym_try] = ACTIONS(6660), + [anon_sym_throw] = ACTIONS(6660), + [anon_sym_return] = ACTIONS(6660), + [anon_sym_continue] = ACTIONS(6660), + [anon_sym_break] = ACTIONS(6660), + [anon_sym_COLON_COLON] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS_PLUS] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6658), + [anon_sym_BANG] = ACTIONS(6658), + [anon_sym_suspend] = ACTIONS(6660), + [anon_sym_sealed] = ACTIONS(6660), + [anon_sym_annotation] = ACTIONS(6660), + [anon_sym_data] = ACTIONS(6660), + [anon_sym_inner] = ACTIONS(6660), + [anon_sym_value] = ACTIONS(6660), + [anon_sym_override] = ACTIONS(6660), + [anon_sym_lateinit] = ACTIONS(6660), + [anon_sym_public] = ACTIONS(6660), + [anon_sym_private] = ACTIONS(6660), + [anon_sym_internal] = ACTIONS(6660), + [anon_sym_protected] = ACTIONS(6660), + [anon_sym_tailrec] = ACTIONS(6660), + [anon_sym_operator] = ACTIONS(6660), + [anon_sym_infix] = ACTIONS(6660), + [anon_sym_inline] = ACTIONS(6660), + [anon_sym_external] = ACTIONS(6660), + [sym_property_modifier] = ACTIONS(6660), + [anon_sym_abstract] = ACTIONS(6660), + [anon_sym_final] = ACTIONS(6660), + [anon_sym_open] = ACTIONS(6660), + [anon_sym_vararg] = ACTIONS(6660), + [anon_sym_noinline] = ACTIONS(6660), + [anon_sym_crossinline] = ACTIONS(6660), + [anon_sym_expect] = ACTIONS(6660), + [anon_sym_actual] = ACTIONS(6660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6658), + [anon_sym_continue_AT] = ACTIONS(6658), + [anon_sym_break_AT] = ACTIONS(6658), + [anon_sym_this_AT] = ACTIONS(6658), + [anon_sym_super_AT] = ACTIONS(6658), + [sym_real_literal] = ACTIONS(6658), + [sym_integer_literal] = ACTIONS(6660), + [sym_hex_literal] = ACTIONS(6658), + [sym_bin_literal] = ACTIONS(6658), + [anon_sym_true] = ACTIONS(6660), + [anon_sym_false] = ACTIONS(6660), + [anon_sym_SQUOTE] = ACTIONS(6658), + [sym__backtick_identifier] = ACTIONS(6658), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6658), + }, + [3123] = { + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4926), + [anon_sym_object] = ACTIONS(4926), + [anon_sym_fun] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_get] = ACTIONS(4926), + [anon_sym_set] = ACTIONS(4926), + [anon_sym_this] = ACTIONS(4926), + [anon_sym_super] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_QMARK_COLON] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_when] = ACTIONS(4926), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_throw] = ACTIONS(4926), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_continue] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_BANGin] = ACTIONS(4928), + [anon_sym_is] = ACTIONS(4926), + [anon_sym_BANGis] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_as_QMARK] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4926), + [anon_sym_inner] = ACTIONS(4926), + [anon_sym_value] = ACTIONS(4926), + [anon_sym_expect] = ACTIONS(4926), + [anon_sym_actual] = ACTIONS(4926), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4928), + [anon_sym_continue_AT] = ACTIONS(4928), + [anon_sym_break_AT] = ACTIONS(4928), + [anon_sym_this_AT] = ACTIONS(4928), + [anon_sym_super_AT] = ACTIONS(4928), + [sym_real_literal] = ACTIONS(4928), + [sym_integer_literal] = ACTIONS(4926), + [sym_hex_literal] = ACTIONS(4928), + [sym_bin_literal] = ACTIONS(4928), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [anon_sym_SQUOTE] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4928), + [sym__automatic_semicolon] = ACTIONS(4928), + [sym_safe_nav] = ACTIONS(4928), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4928), + }, + [3124] = { + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [3125] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3126] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1814), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_when] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1816), + [anon_sym_continue_AT] = ACTIONS(1816), + [anon_sym_break_AT] = ACTIONS(1816), + [anon_sym_this_AT] = ACTIONS(1816), + [anon_sym_super_AT] = ACTIONS(1816), + [sym_real_literal] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [sym_hex_literal] = ACTIONS(1816), + [sym_bin_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1816), + }, + [3127] = { + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6665), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), + }, + [3128] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_object] = ACTIONS(4798), + [anon_sym_fun] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_this] = ACTIONS(4798), + [anon_sym_super] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4798), + [anon_sym_throw] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_continue] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4800), + [anon_sym_continue_AT] = ACTIONS(4800), + [anon_sym_break_AT] = ACTIONS(4800), + [anon_sym_this_AT] = ACTIONS(4800), + [anon_sym_super_AT] = ACTIONS(4800), + [sym_real_literal] = ACTIONS(4800), + [sym_integer_literal] = ACTIONS(4798), + [sym_hex_literal] = ACTIONS(4800), + [sym_bin_literal] = ACTIONS(4800), + [anon_sym_true] = ACTIONS(4798), + [anon_sym_false] = ACTIONS(4798), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4800), + }, + [3129] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [sym__quest] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4212), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_null] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [3130] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_object] = ACTIONS(5167), + [anon_sym_fun] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_this] = ACTIONS(5167), + [anon_sym_super] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(5167), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5167), + [anon_sym_if] = ACTIONS(5167), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_when] = ACTIONS(5167), + [anon_sym_try] = ACTIONS(5167), + [anon_sym_throw] = ACTIONS(5167), + [anon_sym_return] = ACTIONS(5167), + [anon_sym_continue] = ACTIONS(5167), + [anon_sym_break] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5167), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5169), + [anon_sym_continue_AT] = ACTIONS(5169), + [anon_sym_break_AT] = ACTIONS(5169), + [anon_sym_this_AT] = ACTIONS(5169), + [anon_sym_super_AT] = ACTIONS(5169), + [sym_real_literal] = ACTIONS(5169), + [sym_integer_literal] = ACTIONS(5167), + [sym_hex_literal] = ACTIONS(5169), + [sym_bin_literal] = ACTIONS(5169), + [anon_sym_true] = ACTIONS(5167), + [anon_sym_false] = ACTIONS(5167), + [anon_sym_SQUOTE] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(5169), + [sym__automatic_semicolon] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5169), + }, + [3131] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_object] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_super] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [sym_label] = ACTIONS(3113), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_when] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3115), + [anon_sym_continue_AT] = ACTIONS(3115), + [anon_sym_break_AT] = ACTIONS(3115), + [anon_sym_this_AT] = ACTIONS(3115), + [anon_sym_super_AT] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [sym_hex_literal] = ACTIONS(3115), + [sym_bin_literal] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym__backtick_identifier] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3115), + }, + [3132] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), + }, + [3133] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_object] = ACTIONS(4966), + [anon_sym_fun] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_this] = ACTIONS(4966), + [anon_sym_super] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_if] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_when] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4966), + [anon_sym_throw] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4966), + [anon_sym_continue] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4968), + [anon_sym_continue_AT] = ACTIONS(4968), + [anon_sym_break_AT] = ACTIONS(4968), + [anon_sym_this_AT] = ACTIONS(4968), + [anon_sym_super_AT] = ACTIONS(4968), + [sym_real_literal] = ACTIONS(4968), + [sym_integer_literal] = ACTIONS(4966), + [sym_hex_literal] = ACTIONS(4968), + [sym_bin_literal] = ACTIONS(4968), + [anon_sym_true] = ACTIONS(4966), + [anon_sym_false] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4968), + }, + [3134] = { + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_object] = ACTIONS(5063), + [anon_sym_fun] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_this] = ACTIONS(5063), + [anon_sym_super] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [sym_label] = ACTIONS(5063), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_if] = ACTIONS(5063), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_when] = ACTIONS(5063), + [anon_sym_try] = ACTIONS(5063), + [anon_sym_throw] = ACTIONS(5063), + [anon_sym_return] = ACTIONS(5063), + [anon_sym_continue] = ACTIONS(5063), + [anon_sym_break] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5063), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5065), + [anon_sym_continue_AT] = ACTIONS(5065), + [anon_sym_break_AT] = ACTIONS(5065), + [anon_sym_this_AT] = ACTIONS(5065), + [anon_sym_super_AT] = ACTIONS(5065), + [sym_real_literal] = ACTIONS(5065), + [sym_integer_literal] = ACTIONS(5063), + [sym_hex_literal] = ACTIONS(5065), + [sym_bin_literal] = ACTIONS(5065), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [anon_sym_SQUOTE] = ACTIONS(5065), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5065), + }, + [3135] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_object] = ACTIONS(4910), + [anon_sym_fun] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_this] = ACTIONS(4910), + [anon_sym_super] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_when] = ACTIONS(4910), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_throw] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_continue] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4912), + [anon_sym_continue_AT] = ACTIONS(4912), + [anon_sym_break_AT] = ACTIONS(4912), + [anon_sym_this_AT] = ACTIONS(4912), + [anon_sym_super_AT] = ACTIONS(4912), + [sym_real_literal] = ACTIONS(4912), + [sym_integer_literal] = ACTIONS(4910), + [sym_hex_literal] = ACTIONS(4912), + [sym_bin_literal] = ACTIONS(4912), + [anon_sym_true] = ACTIONS(4910), + [anon_sym_false] = ACTIONS(4910), + [anon_sym_SQUOTE] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(4912), + [sym__automatic_semicolon] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4912), + }, + [3136] = { + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3137] = { + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [3138] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_object] = ACTIONS(5099), + [anon_sym_fun] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_this] = ACTIONS(5099), + [anon_sym_super] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_null] = ACTIONS(5099), + [anon_sym_if] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_when] = ACTIONS(5099), + [anon_sym_try] = ACTIONS(5099), + [anon_sym_throw] = ACTIONS(5099), + [anon_sym_return] = ACTIONS(5099), + [anon_sym_continue] = ACTIONS(5099), + [anon_sym_break] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5101), + [anon_sym_continue_AT] = ACTIONS(5101), + [anon_sym_break_AT] = ACTIONS(5101), + [anon_sym_this_AT] = ACTIONS(5101), + [anon_sym_super_AT] = ACTIONS(5101), + [sym_real_literal] = ACTIONS(5101), + [sym_integer_literal] = ACTIONS(5099), + [sym_hex_literal] = ACTIONS(5101), + [sym_bin_literal] = ACTIONS(5101), + [anon_sym_true] = ACTIONS(5099), + [anon_sym_false] = ACTIONS(5099), + [anon_sym_SQUOTE] = ACTIONS(5101), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5101), + }, + [3139] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [3140] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_object] = ACTIONS(5035), + [anon_sym_fun] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_this] = ACTIONS(5035), + [anon_sym_super] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5035), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_null] = ACTIONS(5035), + [anon_sym_if] = ACTIONS(5035), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_throw] = ACTIONS(5035), + [anon_sym_return] = ACTIONS(5035), + [anon_sym_continue] = ACTIONS(5035), + [anon_sym_break] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5035), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5037), + [anon_sym_continue_AT] = ACTIONS(5037), + [anon_sym_break_AT] = ACTIONS(5037), + [anon_sym_this_AT] = ACTIONS(5037), + [anon_sym_super_AT] = ACTIONS(5037), + [sym_real_literal] = ACTIONS(5037), + [sym_integer_literal] = ACTIONS(5035), + [sym_hex_literal] = ACTIONS(5037), + [sym_bin_literal] = ACTIONS(5037), + [anon_sym_true] = ACTIONS(5035), + [anon_sym_false] = ACTIONS(5035), + [anon_sym_SQUOTE] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5037), + }, + [3141] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6667), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), + }, + [3142] = { + [sym_class_body] = STATE(3494), + [sym_type_constraints] = STATE(3362), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + }, + [3143] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6669), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), + }, + [3144] = { + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_object] = ACTIONS(4842), + [anon_sym_fun] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_this] = ACTIONS(4842), + [anon_sym_super] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_when] = ACTIONS(4842), + [anon_sym_try] = ACTIONS(4842), + [anon_sym_throw] = ACTIONS(4842), + [anon_sym_return] = ACTIONS(4842), + [anon_sym_continue] = ACTIONS(4842), + [anon_sym_break] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4844), + [anon_sym_continue_AT] = ACTIONS(4844), + [anon_sym_break_AT] = ACTIONS(4844), + [anon_sym_this_AT] = ACTIONS(4844), + [anon_sym_super_AT] = ACTIONS(4844), + [sym_real_literal] = ACTIONS(4844), + [sym_integer_literal] = ACTIONS(4842), + [sym_hex_literal] = ACTIONS(4844), + [sym_bin_literal] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_SQUOTE] = ACTIONS(4844), + [sym__backtick_identifier] = ACTIONS(4844), + [sym__automatic_semicolon] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4844), + }, + [3145] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6671), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), + }, + [3146] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6673), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), + }, + [3147] = { + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3148] = { + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_object] = ACTIONS(4888), + [anon_sym_fun] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_this] = ACTIONS(4888), + [anon_sym_super] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4888), + [anon_sym_if] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_when] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4888), + [anon_sym_throw] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4888), + [anon_sym_continue] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4890), + [anon_sym_continue_AT] = ACTIONS(4890), + [anon_sym_break_AT] = ACTIONS(4890), + [anon_sym_this_AT] = ACTIONS(4890), + [anon_sym_super_AT] = ACTIONS(4890), + [sym_real_literal] = ACTIONS(4890), + [sym_integer_literal] = ACTIONS(4888), + [sym_hex_literal] = ACTIONS(4890), + [sym_bin_literal] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4888), + [anon_sym_false] = ACTIONS(4888), + [anon_sym_SQUOTE] = ACTIONS(4890), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4890), + }, + [3149] = { + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_super] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_when] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3346), + [anon_sym_continue_AT] = ACTIONS(3346), + [anon_sym_break_AT] = ACTIONS(3346), + [anon_sym_this_AT] = ACTIONS(3346), + [anon_sym_super_AT] = ACTIONS(3346), + [sym_real_literal] = ACTIONS(3346), + [sym_integer_literal] = ACTIONS(3344), + [sym_hex_literal] = ACTIONS(3346), + [sym_bin_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3346), + }, + [3150] = { + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_object] = ACTIONS(4481), + [anon_sym_fun] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_this] = ACTIONS(4481), + [anon_sym_super] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_null] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_try] = ACTIONS(4481), + [anon_sym_throw] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4483), + [anon_sym_continue_AT] = ACTIONS(4483), + [anon_sym_break_AT] = ACTIONS(4483), + [anon_sym_this_AT] = ACTIONS(4483), + [anon_sym_super_AT] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4483), + [sym_integer_literal] = ACTIONS(4481), + [sym_hex_literal] = ACTIONS(4483), + [sym_bin_literal] = ACTIONS(4483), + [anon_sym_true] = ACTIONS(4481), + [anon_sym_false] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4483), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4483), + }, + [3151] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), + }, + [3152] = { + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3162), + [anon_sym_continue_AT] = ACTIONS(3162), + [anon_sym_break_AT] = ACTIONS(3162), + [anon_sym_this_AT] = ACTIONS(3162), + [anon_sym_super_AT] = ACTIONS(3162), + [sym_real_literal] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3162), + [sym_bin_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3162), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [3153] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), + }, + [3154] = { + [aux_sym_nullable_type_repeat1] = STATE(3177), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_EQ] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [sym__quest] = ACTIONS(6675), + [anon_sym_STAR] = ACTIONS(4249), + [sym_label] = ACTIONS(4247), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_when] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_throw] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4249), + [anon_sym_continue_AT] = ACTIONS(4249), + [anon_sym_break_AT] = ACTIONS(4249), + [anon_sym_this_AT] = ACTIONS(4249), + [anon_sym_super_AT] = ACTIONS(4249), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4247), + [anon_sym_false] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4249), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), + }, + [3155] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_object] = ACTIONS(4870), + [anon_sym_fun] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_this] = ACTIONS(4870), + [anon_sym_super] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4870), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_if] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_when] = ACTIONS(4870), + [anon_sym_try] = ACTIONS(4870), + [anon_sym_throw] = ACTIONS(4870), + [anon_sym_return] = ACTIONS(4870), + [anon_sym_continue] = ACTIONS(4870), + [anon_sym_break] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG] = ACTIONS(4870), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4872), + [anon_sym_continue_AT] = ACTIONS(4872), + [anon_sym_break_AT] = ACTIONS(4872), + [anon_sym_this_AT] = ACTIONS(4872), + [anon_sym_super_AT] = ACTIONS(4872), + [sym_real_literal] = ACTIONS(4872), + [sym_integer_literal] = ACTIONS(4870), + [sym_hex_literal] = ACTIONS(4872), + [sym_bin_literal] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [anon_sym_SQUOTE] = ACTIONS(4872), + [sym__backtick_identifier] = ACTIONS(4872), + [sym__automatic_semicolon] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4872), + }, + [3156] = { + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_object] = ACTIONS(4898), + [anon_sym_fun] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_this] = ACTIONS(4898), + [anon_sym_super] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_throw] = ACTIONS(4898), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_continue] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4900), + [anon_sym_continue_AT] = ACTIONS(4900), + [anon_sym_break_AT] = ACTIONS(4900), + [anon_sym_this_AT] = ACTIONS(4900), + [anon_sym_super_AT] = ACTIONS(4900), + [sym_real_literal] = ACTIONS(4900), + [sym_integer_literal] = ACTIONS(4898), + [sym_hex_literal] = ACTIONS(4900), + [sym_bin_literal] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(4900), + [sym__automatic_semicolon] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4900), + }, + [3157] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), + }, + [3158] = { + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [3159] = { + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [3160] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_object] = ACTIONS(4866), + [anon_sym_fun] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_this] = ACTIONS(4866), + [anon_sym_super] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4866), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_if] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_when] = ACTIONS(4866), + [anon_sym_try] = ACTIONS(4866), + [anon_sym_throw] = ACTIONS(4866), + [anon_sym_return] = ACTIONS(4866), + [anon_sym_continue] = ACTIONS(4866), + [anon_sym_break] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4868), + [anon_sym_continue_AT] = ACTIONS(4868), + [anon_sym_break_AT] = ACTIONS(4868), + [anon_sym_this_AT] = ACTIONS(4868), + [anon_sym_super_AT] = ACTIONS(4868), + [sym_real_literal] = ACTIONS(4868), + [sym_integer_literal] = ACTIONS(4866), + [sym_hex_literal] = ACTIONS(4868), + [sym_bin_literal] = ACTIONS(4868), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [anon_sym_SQUOTE] = ACTIONS(4868), + [sym__backtick_identifier] = ACTIONS(4868), + [sym__automatic_semicolon] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4868), + }, + [3161] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [3162] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_when] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1810), + [anon_sym_continue_AT] = ACTIONS(1810), + [anon_sym_break_AT] = ACTIONS(1810), + [anon_sym_this_AT] = ACTIONS(1810), + [anon_sym_super_AT] = ACTIONS(1810), + [sym_real_literal] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [sym_hex_literal] = ACTIONS(1810), + [sym_bin_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1810), + }, + [3163] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_RBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_RPAREN] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4212), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + }, + [3164] = { + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6677), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), + }, + [3165] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4778), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [3166] = { + [sym__alpha_identifier] = ACTIONS(4253), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4253), + [anon_sym_where] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_fun] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_get] = ACTIONS(4253), + [anon_sym_set] = ACTIONS(4253), + [anon_sym_this] = ACTIONS(4253), + [anon_sym_super] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4253), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_QMARK_COLON] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_PIPE_PIPE] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_PLUS_EQ] = ACTIONS(4255), + [anon_sym_DASH_EQ] = ACTIONS(4255), + [anon_sym_STAR_EQ] = ACTIONS(4255), + [anon_sym_SLASH_EQ] = ACTIONS(4255), + [anon_sym_PERCENT_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_BANGin] = ACTIONS(4255), + [anon_sym_is] = ACTIONS(4253), + [anon_sym_BANGis] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4253), + [anon_sym_inner] = ACTIONS(4253), + [anon_sym_value] = ACTIONS(4253), + [anon_sym_expect] = ACTIONS(4253), + [anon_sym_actual] = ACTIONS(4253), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4255), + [anon_sym_continue_AT] = ACTIONS(4255), + [anon_sym_break_AT] = ACTIONS(4255), + [anon_sym_this_AT] = ACTIONS(4255), + [anon_sym_super_AT] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4255), + [sym_integer_literal] = ACTIONS(4253), + [sym_hex_literal] = ACTIONS(4255), + [sym_bin_literal] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [sym__backtick_identifier] = ACTIONS(4255), + [sym__automatic_semicolon] = ACTIONS(4255), + [sym_safe_nav] = ACTIONS(4255), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4255), + }, + [3167] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), + }, + [3168] = { + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_object] = ACTIONS(4902), + [anon_sym_fun] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_this] = ACTIONS(4902), + [anon_sym_super] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_null] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_when] = ACTIONS(4902), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_throw] = ACTIONS(4902), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_continue] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4904), + [anon_sym_continue_AT] = ACTIONS(4904), + [anon_sym_break_AT] = ACTIONS(4904), + [anon_sym_this_AT] = ACTIONS(4904), + [anon_sym_super_AT] = ACTIONS(4904), + [sym_real_literal] = ACTIONS(4904), + [sym_integer_literal] = ACTIONS(4902), + [sym_hex_literal] = ACTIONS(4904), + [sym_bin_literal] = ACTIONS(4904), + [anon_sym_true] = ACTIONS(4902), + [anon_sym_false] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4904), + [sym__backtick_identifier] = ACTIONS(4904), + [sym__automatic_semicolon] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4904), + }, + [3169] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3170] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [3171] = { + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_object] = ACTIONS(4906), + [anon_sym_fun] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_this] = ACTIONS(4906), + [anon_sym_super] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_when] = ACTIONS(4906), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_throw] = ACTIONS(4906), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_continue] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4908), + [anon_sym_continue_AT] = ACTIONS(4908), + [anon_sym_break_AT] = ACTIONS(4908), + [anon_sym_this_AT] = ACTIONS(4908), + [anon_sym_super_AT] = ACTIONS(4908), + [sym_real_literal] = ACTIONS(4908), + [sym_integer_literal] = ACTIONS(4906), + [sym_hex_literal] = ACTIONS(4908), + [sym_bin_literal] = ACTIONS(4908), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [anon_sym_SQUOTE] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(4908), + [sym__automatic_semicolon] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4908), + }, + [3172] = { + [aux_sym_type_constraints_repeat1] = STATE(3209), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_RBRACK] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6679), + [anon_sym_RPAREN] = ACTIONS(4341), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [anon_sym_DASH_GT] = ACTIONS(4341), + [sym_label] = ACTIONS(4341), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_QMARK_COLON] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_PLUS_EQ] = ACTIONS(4341), + [anon_sym_DASH_EQ] = ACTIONS(4341), + [anon_sym_STAR_EQ] = ACTIONS(4341), + [anon_sym_SLASH_EQ] = ACTIONS(4341), + [anon_sym_PERCENT_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG_BANG] = ACTIONS(4341), + [anon_sym_suspend] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_annotation] = ACTIONS(4339), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_lateinit] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_tailrec] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_infix] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym_external] = ACTIONS(4339), + [sym_property_modifier] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_final] = ACTIONS(4339), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_vararg] = ACTIONS(4339), + [anon_sym_noinline] = ACTIONS(4339), + [anon_sym_crossinline] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4341), + [sym_safe_nav] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), + }, + [3173] = { + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), + }, + [3174] = { + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_object] = ACTIONS(4854), + [anon_sym_fun] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_this] = ACTIONS(4854), + [anon_sym_super] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [sym_label] = ACTIONS(4854), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_null] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_when] = ACTIONS(4854), + [anon_sym_try] = ACTIONS(4854), + [anon_sym_throw] = ACTIONS(4854), + [anon_sym_return] = ACTIONS(4854), + [anon_sym_continue] = ACTIONS(4854), + [anon_sym_break] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG] = ACTIONS(4854), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4856), + [anon_sym_continue_AT] = ACTIONS(4856), + [anon_sym_break_AT] = ACTIONS(4856), + [anon_sym_this_AT] = ACTIONS(4856), + [anon_sym_super_AT] = ACTIONS(4856), + [sym_real_literal] = ACTIONS(4856), + [sym_integer_literal] = ACTIONS(4854), + [sym_hex_literal] = ACTIONS(4856), + [sym_bin_literal] = ACTIONS(4856), + [anon_sym_true] = ACTIONS(4854), + [anon_sym_false] = ACTIONS(4854), + [anon_sym_SQUOTE] = ACTIONS(4856), + [sym__backtick_identifier] = ACTIONS(4856), + [sym__automatic_semicolon] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4856), + }, + [3175] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3176] = { + [aux_sym_nullable_type_repeat1] = STATE(3154), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [sym__quest] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4206), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), + }, + [3177] = { + [aux_sym_nullable_type_repeat1] = STATE(3177), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_EQ] = ACTIONS(4224), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [sym__quest] = ACTIONS(6681), + [anon_sym_STAR] = ACTIONS(4224), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [3178] = { + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), + }, + [3179] = { + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_object] = ACTIONS(5171), + [anon_sym_fun] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(5171), + [anon_sym_set] = ACTIONS(5171), + [anon_sym_this] = ACTIONS(5171), + [anon_sym_super] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [sym_label] = ACTIONS(5171), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5173), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_if] = ACTIONS(5171), + [anon_sym_else] = ACTIONS(5171), + [anon_sym_when] = ACTIONS(5171), + [anon_sym_try] = ACTIONS(5171), + [anon_sym_throw] = ACTIONS(5171), + [anon_sym_return] = ACTIONS(5171), + [anon_sym_continue] = ACTIONS(5171), + [anon_sym_break] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_PLUS_EQ] = ACTIONS(5173), + [anon_sym_DASH_EQ] = ACTIONS(5173), + [anon_sym_STAR_EQ] = ACTIONS(5173), + [anon_sym_SLASH_EQ] = ACTIONS(5173), + [anon_sym_PERCENT_EQ] = ACTIONS(5173), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), + [anon_sym_LT_EQ] = ACTIONS(5173), + [anon_sym_GT_EQ] = ACTIONS(5173), + [anon_sym_BANGin] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_BANGis] = ACTIONS(5173), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_as_QMARK] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5173), + [anon_sym_DASH_DASH] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5171), + [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_data] = ACTIONS(5171), + [anon_sym_inner] = ACTIONS(5171), + [anon_sym_value] = ACTIONS(5171), + [anon_sym_expect] = ACTIONS(5171), + [anon_sym_actual] = ACTIONS(5171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5173), + [anon_sym_continue_AT] = ACTIONS(5173), + [anon_sym_break_AT] = ACTIONS(5173), + [anon_sym_this_AT] = ACTIONS(5173), + [anon_sym_super_AT] = ACTIONS(5173), + [sym_real_literal] = ACTIONS(5173), + [sym_integer_literal] = ACTIONS(5171), + [sym_hex_literal] = ACTIONS(5173), + [sym_bin_literal] = ACTIONS(5173), + [anon_sym_true] = ACTIONS(5171), + [anon_sym_false] = ACTIONS(5171), + [anon_sym_SQUOTE] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(5173), + [sym__automatic_semicolon] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5173), + }, + [3180] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3181] = { + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_object] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_this] = ACTIONS(4838), + [anon_sym_super] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [sym_label] = ACTIONS(4838), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_null] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_when] = ACTIONS(4838), + [anon_sym_try] = ACTIONS(4838), + [anon_sym_throw] = ACTIONS(4838), + [anon_sym_return] = ACTIONS(4838), + [anon_sym_continue] = ACTIONS(4838), + [anon_sym_break] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4838), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4840), + [anon_sym_continue_AT] = ACTIONS(4840), + [anon_sym_break_AT] = ACTIONS(4840), + [anon_sym_this_AT] = ACTIONS(4840), + [anon_sym_super_AT] = ACTIONS(4840), + [sym_real_literal] = ACTIONS(4840), + [sym_integer_literal] = ACTIONS(4838), + [sym_hex_literal] = ACTIONS(4840), + [sym_bin_literal] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_SQUOTE] = ACTIONS(4840), + [sym__backtick_identifier] = ACTIONS(4840), + [sym__automatic_semicolon] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4840), }, - [3138] = { - [sym__alpha_identifier] = ACTIONS(4725), - [anon_sym_AT] = ACTIONS(4727), - [anon_sym_COLON] = ACTIONS(4725), - [anon_sym_LBRACK] = ACTIONS(4727), - [anon_sym_RBRACK] = ACTIONS(4727), - [anon_sym_as] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(4727), - [anon_sym_RBRACE] = ACTIONS(4727), - [anon_sym_LPAREN] = ACTIONS(4727), - [anon_sym_COMMA] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_where] = ACTIONS(4725), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_get] = ACTIONS(4725), - [anon_sym_set] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4725), - [anon_sym_DASH_GT] = ACTIONS(4727), - [sym_label] = ACTIONS(4727), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_while] = ACTIONS(4725), - [anon_sym_DOT_DOT] = ACTIONS(4727), - [anon_sym_QMARK_COLON] = ACTIONS(4727), - [anon_sym_AMP_AMP] = ACTIONS(4727), - [anon_sym_PIPE_PIPE] = ACTIONS(4727), - [anon_sym_else] = ACTIONS(4725), - [anon_sym_COLON_COLON] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4727), - [anon_sym_STAR_EQ] = ACTIONS(4727), - [anon_sym_SLASH_EQ] = ACTIONS(4727), - [anon_sym_PERCENT_EQ] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4727), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4727), - [anon_sym_LT_EQ] = ACTIONS(4727), - [anon_sym_GT_EQ] = ACTIONS(4727), - [anon_sym_BANGin] = ACTIONS(4727), - [anon_sym_is] = ACTIONS(4725), - [anon_sym_BANGis] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4725), - [anon_sym_as_QMARK] = ACTIONS(4727), - [anon_sym_PLUS_PLUS] = ACTIONS(4727), - [anon_sym_DASH_DASH] = ACTIONS(4727), - [anon_sym_BANG_BANG] = ACTIONS(4727), - [anon_sym_suspend] = ACTIONS(4725), - [anon_sym_sealed] = ACTIONS(4725), - [anon_sym_annotation] = ACTIONS(4725), - [anon_sym_data] = ACTIONS(4725), - [anon_sym_inner] = ACTIONS(4725), - [anon_sym_value] = ACTIONS(4725), - [anon_sym_override] = ACTIONS(4725), - [anon_sym_lateinit] = ACTIONS(4725), - [anon_sym_public] = ACTIONS(4725), - [anon_sym_private] = ACTIONS(4725), - [anon_sym_internal] = ACTIONS(4725), - [anon_sym_protected] = ACTIONS(4725), - [anon_sym_tailrec] = ACTIONS(4725), - [anon_sym_operator] = ACTIONS(4725), - [anon_sym_infix] = ACTIONS(4725), - [anon_sym_inline] = ACTIONS(4725), - [anon_sym_external] = ACTIONS(4725), - [sym_property_modifier] = ACTIONS(4725), - [anon_sym_abstract] = ACTIONS(4725), - [anon_sym_final] = ACTIONS(4725), - [anon_sym_open] = ACTIONS(4725), - [anon_sym_vararg] = ACTIONS(4725), - [anon_sym_noinline] = ACTIONS(4725), - [anon_sym_crossinline] = ACTIONS(4725), - [anon_sym_expect] = ACTIONS(4725), - [anon_sym_actual] = ACTIONS(4725), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4727), - [sym_safe_nav] = ACTIONS(4727), - [sym_multiline_comment] = ACTIONS(3), + [3182] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, - [3139] = { - [sym_type_constraints] = STATE(3587), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6579), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [3183] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, - [3140] = { - [sym_class_body] = STATE(3182), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [3184] = { + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, - [3141] = { - [aux_sym_user_type_repeat1] = STATE(3143), - [sym__alpha_identifier] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_as] = ACTIONS(4075), - [anon_sym_EQ] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_COMMA] = ACTIONS(4077), - [anon_sym_by] = ACTIONS(4075), - [anon_sym_LT] = ACTIONS(4075), - [anon_sym_GT] = ACTIONS(4075), - [anon_sym_where] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(6581), - [anon_sym_SEMI] = ACTIONS(4077), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [sym__quest] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4075), - [sym_label] = ACTIONS(4077), - [anon_sym_in] = ACTIONS(4075), - [anon_sym_DOT_DOT] = ACTIONS(4077), - [anon_sym_QMARK_COLON] = ACTIONS(4077), - [anon_sym_AMP_AMP] = ACTIONS(4077), - [anon_sym_PIPE_PIPE] = ACTIONS(4077), - [anon_sym_else] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_PLUS_EQ] = ACTIONS(4077), - [anon_sym_DASH_EQ] = ACTIONS(4077), - [anon_sym_STAR_EQ] = ACTIONS(4077), - [anon_sym_SLASH_EQ] = ACTIONS(4077), - [anon_sym_PERCENT_EQ] = ACTIONS(4077), - [anon_sym_BANG_EQ] = ACTIONS(4075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4077), - [anon_sym_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4077), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4077), - [anon_sym_is] = ACTIONS(4075), - [anon_sym_BANGis] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_SLASH] = ACTIONS(4075), - [anon_sym_PERCENT] = ACTIONS(4075), - [anon_sym_as_QMARK] = ACTIONS(4077), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_BANG_BANG] = ACTIONS(4077), - [anon_sym_suspend] = ACTIONS(4075), - [anon_sym_sealed] = ACTIONS(4075), - [anon_sym_annotation] = ACTIONS(4075), - [anon_sym_data] = ACTIONS(4075), - [anon_sym_inner] = ACTIONS(4075), - [anon_sym_value] = ACTIONS(4075), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_lateinit] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_internal] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_tailrec] = ACTIONS(4075), - [anon_sym_operator] = ACTIONS(4075), - [anon_sym_infix] = ACTIONS(4075), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_external] = ACTIONS(4075), - [sym_property_modifier] = ACTIONS(4075), - [anon_sym_abstract] = ACTIONS(4075), - [anon_sym_final] = ACTIONS(4075), - [anon_sym_open] = ACTIONS(4075), - [anon_sym_vararg] = ACTIONS(4075), - [anon_sym_noinline] = ACTIONS(4075), - [anon_sym_crossinline] = ACTIONS(4075), - [anon_sym_expect] = ACTIONS(4075), - [anon_sym_actual] = ACTIONS(4075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4077), - [sym__automatic_semicolon] = ACTIONS(4077), - [sym_safe_nav] = ACTIONS(4077), + [3185] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6636), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [3186] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6642), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3187] = { + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1796), + [anon_sym_fun] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_this] = ACTIONS(1796), + [anon_sym_super] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_throw] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1798), + [anon_sym_continue_AT] = ACTIONS(1798), + [anon_sym_break_AT] = ACTIONS(1798), + [anon_sym_this_AT] = ACTIONS(1798), + [anon_sym_super_AT] = ACTIONS(1798), + [sym_real_literal] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [sym_hex_literal] = ACTIONS(1798), + [sym_bin_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1798), + }, + [3188] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_object] = ACTIONS(4958), + [anon_sym_fun] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_this] = ACTIONS(4958), + [anon_sym_super] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4958), + [anon_sym_if] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_when] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4958), + [anon_sym_throw] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4958), + [anon_sym_continue] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4960), + [anon_sym_continue_AT] = ACTIONS(4960), + [anon_sym_break_AT] = ACTIONS(4960), + [anon_sym_this_AT] = ACTIONS(4960), + [anon_sym_super_AT] = ACTIONS(4960), + [sym_real_literal] = ACTIONS(4960), + [sym_integer_literal] = ACTIONS(4958), + [sym_hex_literal] = ACTIONS(4960), + [sym_bin_literal] = ACTIONS(4960), + [anon_sym_true] = ACTIONS(4958), + [anon_sym_false] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4960), + }, + [3189] = { + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, - [3142] = { - [sym_type_constraints] = STATE(3590), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6584), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [3190] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_object] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_this] = ACTIONS(5131), + [anon_sym_super] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_when] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_throw] = ACTIONS(5131), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_continue] = ACTIONS(5131), + [anon_sym_break] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5133), + [anon_sym_continue_AT] = ACTIONS(5133), + [anon_sym_break_AT] = ACTIONS(5133), + [anon_sym_this_AT] = ACTIONS(5133), + [anon_sym_super_AT] = ACTIONS(5133), + [sym_real_literal] = ACTIONS(5133), + [sym_integer_literal] = ACTIONS(5131), + [sym_hex_literal] = ACTIONS(5133), + [sym_bin_literal] = ACTIONS(5133), + [anon_sym_true] = ACTIONS(5131), + [anon_sym_false] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5133), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5133), + }, + [3191] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3143] = { - [aux_sym_user_type_repeat1] = STATE(3143), - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(6586), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4103), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), + [3192] = { + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, - [3144] = { - [sym_type_arguments] = STATE(3357), - [sym__alpha_identifier] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_EQ] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(6589), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_get] = ACTIONS(4108), - [anon_sym_set] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [sym__quest] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [sym_label] = ACTIONS(4110), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_QMARK_COLON] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_else] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_PLUS_EQ] = ACTIONS(4110), - [anon_sym_DASH_EQ] = ACTIONS(4110), - [anon_sym_STAR_EQ] = ACTIONS(4110), - [anon_sym_SLASH_EQ] = ACTIONS(4110), - [anon_sym_PERCENT_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_BANGin] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4108), - [anon_sym_BANGis] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_as_QMARK] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_BANG_BANG] = ACTIONS(4110), - [anon_sym_suspend] = ACTIONS(4108), - [anon_sym_sealed] = ACTIONS(4108), - [anon_sym_annotation] = ACTIONS(4108), - [anon_sym_data] = ACTIONS(4108), - [anon_sym_inner] = ACTIONS(4108), - [anon_sym_value] = ACTIONS(4108), - [anon_sym_override] = ACTIONS(4108), - [anon_sym_lateinit] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_internal] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_tailrec] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_infix] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_external] = ACTIONS(4108), - [sym_property_modifier] = ACTIONS(4108), - [anon_sym_abstract] = ACTIONS(4108), - [anon_sym_final] = ACTIONS(4108), - [anon_sym_open] = ACTIONS(4108), - [anon_sym_vararg] = ACTIONS(4108), - [anon_sym_noinline] = ACTIONS(4108), - [anon_sym_crossinline] = ACTIONS(4108), - [anon_sym_expect] = ACTIONS(4108), - [anon_sym_actual] = ACTIONS(4108), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4110), - [sym__automatic_semicolon] = ACTIONS(4110), - [sym_safe_nav] = ACTIONS(4110), + [3193] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_DASH_GT] = ACTIONS(4009), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), [sym_multiline_comment] = ACTIONS(3), }, - [3145] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3145), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_RBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(6591), - [anon_sym_RPAREN] = ACTIONS(4582), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [anon_sym_DASH_GT] = ACTIONS(4582), - [sym_label] = ACTIONS(4582), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_while] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), + [3194] = { + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [3195] = { + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), + }, + [3196] = { + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_object] = ACTIONS(4962), + [anon_sym_fun] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_this] = ACTIONS(4962), + [anon_sym_super] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_when] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4962), + [anon_sym_throw] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4962), + [anon_sym_continue] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4964), + [anon_sym_continue_AT] = ACTIONS(4964), + [anon_sym_break_AT] = ACTIONS(4964), + [anon_sym_this_AT] = ACTIONS(4964), + [anon_sym_super_AT] = ACTIONS(4964), + [sym_real_literal] = ACTIONS(4964), + [sym_integer_literal] = ACTIONS(4962), + [sym_hex_literal] = ACTIONS(4964), + [sym_bin_literal] = ACTIONS(4964), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4964), + [sym__automatic_semicolon] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4964), + }, + [3197] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_object] = ACTIONS(4826), + [anon_sym_fun] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_this] = ACTIONS(4826), + [anon_sym_super] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [sym_label] = ACTIONS(4826), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_when] = ACTIONS(4826), + [anon_sym_try] = ACTIONS(4826), + [anon_sym_throw] = ACTIONS(4826), + [anon_sym_return] = ACTIONS(4826), + [anon_sym_continue] = ACTIONS(4826), + [anon_sym_break] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG] = ACTIONS(4826), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4828), + [anon_sym_continue_AT] = ACTIONS(4828), + [anon_sym_break_AT] = ACTIONS(4828), + [anon_sym_this_AT] = ACTIONS(4828), + [anon_sym_super_AT] = ACTIONS(4828), + [sym_real_literal] = ACTIONS(4828), + [sym_integer_literal] = ACTIONS(4826), + [sym_hex_literal] = ACTIONS(4828), + [sym_bin_literal] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [anon_sym_SQUOTE] = ACTIONS(4828), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4828), + }, + [3198] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6684), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [3199] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_object] = ACTIONS(4237), + [anon_sym_fun] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_this] = ACTIONS(4237), + [anon_sym_super] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6688), + [sym__quest] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [sym_label] = ACTIONS(4237), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_when] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_throw] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4239), + [anon_sym_continue_AT] = ACTIONS(4239), + [anon_sym_break_AT] = ACTIONS(4239), + [anon_sym_this_AT] = ACTIONS(4239), + [anon_sym_super_AT] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4239), + [sym_integer_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4239), + [sym_bin_literal] = ACTIONS(4239), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4239), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4239), + }, + [3200] = { + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_object] = ACTIONS(4467), + [anon_sym_fun] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_this] = ACTIONS(4467), + [anon_sym_super] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_null] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_when] = ACTIONS(4467), + [anon_sym_try] = ACTIONS(4467), + [anon_sym_throw] = ACTIONS(4467), + [anon_sym_return] = ACTIONS(4467), + [anon_sym_continue] = ACTIONS(4467), + [anon_sym_break] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4469), + [anon_sym_continue_AT] = ACTIONS(4469), + [anon_sym_break_AT] = ACTIONS(4469), + [anon_sym_this_AT] = ACTIONS(4469), + [anon_sym_super_AT] = ACTIONS(4469), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4467), + [anon_sym_false] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4469), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4469), + }, + [3201] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_object] = ACTIONS(4782), + [anon_sym_fun] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_this] = ACTIONS(4782), + [anon_sym_super] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [sym_label] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4782), + [anon_sym_if] = ACTIONS(4782), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_when] = ACTIONS(4782), + [anon_sym_try] = ACTIONS(4782), + [anon_sym_throw] = ACTIONS(4782), + [anon_sym_return] = ACTIONS(4782), + [anon_sym_continue] = ACTIONS(4782), + [anon_sym_break] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG] = ACTIONS(4782), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4784), + [anon_sym_continue_AT] = ACTIONS(4784), + [anon_sym_break_AT] = ACTIONS(4784), + [anon_sym_this_AT] = ACTIONS(4784), + [anon_sym_super_AT] = ACTIONS(4784), + [sym_real_literal] = ACTIONS(4784), + [sym_integer_literal] = ACTIONS(4782), + [sym_hex_literal] = ACTIONS(4784), + [sym_bin_literal] = ACTIONS(4784), + [anon_sym_true] = ACTIONS(4782), + [anon_sym_false] = ACTIONS(4782), + [anon_sym_SQUOTE] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4784), + [sym__automatic_semicolon] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4784), + }, + [3202] = { + [sym_type_constraints] = STATE(3366), + [sym_enum_class_body] = STATE(3494), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, - [3146] = { - [sym_enum_class_body] = STATE(3244), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), + [3203] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_object] = ACTIONS(5103), + [anon_sym_fun] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_this] = ACTIONS(5103), + [anon_sym_super] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_null] = ACTIONS(5103), + [anon_sym_if] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_when] = ACTIONS(5103), + [anon_sym_try] = ACTIONS(5103), + [anon_sym_throw] = ACTIONS(5103), + [anon_sym_return] = ACTIONS(5103), + [anon_sym_continue] = ACTIONS(5103), + [anon_sym_break] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5105), + [anon_sym_continue_AT] = ACTIONS(5105), + [anon_sym_break_AT] = ACTIONS(5105), + [anon_sym_this_AT] = ACTIONS(5105), + [anon_sym_super_AT] = ACTIONS(5105), + [sym_real_literal] = ACTIONS(5105), + [sym_integer_literal] = ACTIONS(5103), + [sym_hex_literal] = ACTIONS(5105), + [sym_bin_literal] = ACTIONS(5105), + [anon_sym_true] = ACTIONS(5103), + [anon_sym_false] = ACTIONS(5103), + [anon_sym_SQUOTE] = ACTIONS(5105), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5105), }, - [3147] = { - [sym_class_body] = STATE(3191), - [sym__alpha_identifier] = ACTIONS(4562), - [anon_sym_AT] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_object] = ACTIONS(4562), - [anon_sym_fun] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_get] = ACTIONS(4562), - [anon_sym_set] = ACTIONS(4562), - [anon_sym_this] = ACTIONS(4562), - [anon_sym_super] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [sym_label] = ACTIONS(4562), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_QMARK_COLON] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [anon_sym_null] = ACTIONS(4562), - [anon_sym_if] = ACTIONS(4562), - [anon_sym_else] = ACTIONS(4562), - [anon_sym_when] = ACTIONS(4562), - [anon_sym_try] = ACTIONS(4562), - [anon_sym_throw] = ACTIONS(4562), - [anon_sym_return] = ACTIONS(4562), - [anon_sym_continue] = ACTIONS(4562), - [anon_sym_break] = ACTIONS(4562), - [anon_sym_COLON_COLON] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_BANGin] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_BANGis] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_as_QMARK] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_BANG_BANG] = ACTIONS(4564), - [anon_sym_data] = ACTIONS(4562), - [anon_sym_inner] = ACTIONS(4562), - [anon_sym_value] = ACTIONS(4562), - [anon_sym_expect] = ACTIONS(4562), - [anon_sym_actual] = ACTIONS(4562), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4564), - [anon_sym_continue_AT] = ACTIONS(4564), - [anon_sym_break_AT] = ACTIONS(4564), - [sym_real_literal] = ACTIONS(4564), - [sym_integer_literal] = ACTIONS(4562), - [sym_hex_literal] = ACTIONS(4564), - [sym_bin_literal] = ACTIONS(4564), - [anon_sym_true] = ACTIONS(4562), - [anon_sym_false] = ACTIONS(4562), - [anon_sym_SQUOTE] = ACTIONS(4564), - [sym__backtick_identifier] = ACTIONS(4564), - [sym__automatic_semicolon] = ACTIONS(4564), - [sym_safe_nav] = ACTIONS(4564), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4564), + [3204] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_object] = ACTIONS(4722), + [anon_sym_fun] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), }, - [3148] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_RPAREN] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(6469), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [anon_sym_DASH_GT] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_while] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), + [3205] = { + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_object] = ACTIONS(5107), + [anon_sym_fun] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_this] = ACTIONS(5107), + [anon_sym_super] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [sym_label] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_null] = ACTIONS(5107), + [anon_sym_if] = ACTIONS(5107), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_when] = ACTIONS(5107), + [anon_sym_try] = ACTIONS(5107), + [anon_sym_throw] = ACTIONS(5107), + [anon_sym_return] = ACTIONS(5107), + [anon_sym_continue] = ACTIONS(5107), + [anon_sym_break] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5109), + [anon_sym_continue_AT] = ACTIONS(5109), + [anon_sym_break_AT] = ACTIONS(5109), + [anon_sym_this_AT] = ACTIONS(5109), + [anon_sym_super_AT] = ACTIONS(5109), + [sym_real_literal] = ACTIONS(5109), + [sym_integer_literal] = ACTIONS(5107), + [sym_hex_literal] = ACTIONS(5109), + [sym_bin_literal] = ACTIONS(5109), + [anon_sym_true] = ACTIONS(5107), + [anon_sym_false] = ACTIONS(5107), + [anon_sym_SQUOTE] = ACTIONS(5109), + [sym__backtick_identifier] = ACTIONS(5109), + [sym__automatic_semicolon] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5109), + }, + [3206] = { + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_object] = ACTIONS(4355), + [anon_sym_fun] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_this] = ACTIONS(4355), + [anon_sym_super] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_null] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_try] = ACTIONS(4355), + [anon_sym_throw] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4357), + [anon_sym_continue_AT] = ACTIONS(4357), + [anon_sym_break_AT] = ACTIONS(4357), + [anon_sym_this_AT] = ACTIONS(4357), + [anon_sym_super_AT] = ACTIONS(4357), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(4355), + [anon_sym_false] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4357), + }, + [3207] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_object] = ACTIONS(4786), + [anon_sym_fun] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_this] = ACTIONS(4786), + [anon_sym_super] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [sym_label] = ACTIONS(4786), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4786), + [anon_sym_if] = ACTIONS(4786), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_when] = ACTIONS(4786), + [anon_sym_try] = ACTIONS(4786), + [anon_sym_throw] = ACTIONS(4786), + [anon_sym_return] = ACTIONS(4786), + [anon_sym_continue] = ACTIONS(4786), + [anon_sym_break] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG] = ACTIONS(4786), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4788), + [anon_sym_continue_AT] = ACTIONS(4788), + [anon_sym_break_AT] = ACTIONS(4788), + [anon_sym_this_AT] = ACTIONS(4788), + [anon_sym_super_AT] = ACTIONS(4788), + [sym_real_literal] = ACTIONS(4788), + [sym_integer_literal] = ACTIONS(4786), + [sym_hex_literal] = ACTIONS(4788), + [sym_bin_literal] = ACTIONS(4788), + [anon_sym_true] = ACTIONS(4786), + [anon_sym_false] = ACTIONS(4786), + [anon_sym_SQUOTE] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4788), + }, + [3208] = { + [sym_class_body] = STATE(3495), + [sym_type_constraints] = STATE(3368), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_DASH_GT] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_while] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), [sym_multiline_comment] = ACTIONS(3), }, - [3149] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_object] = ACTIONS(4677), - [anon_sym_fun] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_this] = ACTIONS(4677), - [anon_sym_super] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [sym_label] = ACTIONS(4677), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_null] = ACTIONS(4677), - [anon_sym_if] = ACTIONS(4677), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_when] = ACTIONS(4677), - [anon_sym_try] = ACTIONS(4677), - [anon_sym_throw] = ACTIONS(4677), - [anon_sym_return] = ACTIONS(4677), - [anon_sym_continue] = ACTIONS(4677), - [anon_sym_break] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4679), - [anon_sym_continue_AT] = ACTIONS(4679), - [anon_sym_break_AT] = ACTIONS(4679), - [sym_real_literal] = ACTIONS(4679), - [sym_integer_literal] = ACTIONS(4677), - [sym_hex_literal] = ACTIONS(4679), - [sym_bin_literal] = ACTIONS(4679), - [anon_sym_true] = ACTIONS(4677), - [anon_sym_false] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4679), - [sym__backtick_identifier] = ACTIONS(4679), - [sym__automatic_semicolon] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4679), + [3209] = { + [aux_sym_type_constraints_repeat1] = STATE(3250), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_RBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6679), + [anon_sym_RPAREN] = ACTIONS(4426), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_DASH_GT] = ACTIONS(4426), + [sym_label] = ACTIONS(4426), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), }, - [3150] = { - [sym_class_body] = STATE(3242), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_object] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_this] = ACTIONS(4508), - [anon_sym_super] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_throw] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4510), - [anon_sym_continue_AT] = ACTIONS(4510), - [anon_sym_break_AT] = ACTIONS(4510), - [sym_real_literal] = ACTIONS(4510), - [sym_integer_literal] = ACTIONS(4508), - [sym_hex_literal] = ACTIONS(4510), - [sym_bin_literal] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_SQUOTE] = ACTIONS(4510), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4510), + [3210] = { + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_object] = ACTIONS(5183), + [anon_sym_fun] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_this] = ACTIONS(5183), + [anon_sym_super] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [sym_label] = ACTIONS(5183), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_null] = ACTIONS(5183), + [anon_sym_if] = ACTIONS(5183), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_try] = ACTIONS(5183), + [anon_sym_throw] = ACTIONS(5183), + [anon_sym_return] = ACTIONS(5183), + [anon_sym_continue] = ACTIONS(5183), + [anon_sym_break] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5183), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5185), + [anon_sym_continue_AT] = ACTIONS(5185), + [anon_sym_break_AT] = ACTIONS(5185), + [anon_sym_this_AT] = ACTIONS(5185), + [anon_sym_super_AT] = ACTIONS(5185), + [sym_real_literal] = ACTIONS(5185), + [sym_integer_literal] = ACTIONS(5183), + [sym_hex_literal] = ACTIONS(5185), + [sym_bin_literal] = ACTIONS(5185), + [anon_sym_true] = ACTIONS(5183), + [anon_sym_false] = ACTIONS(5183), + [anon_sym_SQUOTE] = ACTIONS(5185), + [sym__backtick_identifier] = ACTIONS(5185), + [sym__automatic_semicolon] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5185), }, - [3151] = { - [sym__alpha_identifier] = ACTIONS(4645), - [anon_sym_AT] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4647), - [anon_sym_RBRACK] = ACTIONS(4647), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_RBRACE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4645), - [anon_sym_GT] = ACTIONS(4645), - [anon_sym_where] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_get] = ACTIONS(4645), - [anon_sym_set] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4647), - [sym_label] = ACTIONS(4647), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_while] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4647), - [anon_sym_QMARK_COLON] = ACTIONS(4647), - [anon_sym_AMP_AMP] = ACTIONS(4647), - [anon_sym_PIPE_PIPE] = ACTIONS(4647), - [anon_sym_else] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4647), - [anon_sym_PLUS_EQ] = ACTIONS(4647), - [anon_sym_DASH_EQ] = ACTIONS(4647), - [anon_sym_STAR_EQ] = ACTIONS(4647), - [anon_sym_SLASH_EQ] = ACTIONS(4647), - [anon_sym_PERCENT_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4647), - [anon_sym_LT_EQ] = ACTIONS(4647), - [anon_sym_GT_EQ] = ACTIONS(4647), - [anon_sym_BANGin] = ACTIONS(4647), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_BANGis] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4645), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_as_QMARK] = ACTIONS(4647), - [anon_sym_PLUS_PLUS] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4647), - [anon_sym_BANG_BANG] = ACTIONS(4647), - [anon_sym_suspend] = ACTIONS(4645), - [anon_sym_sealed] = ACTIONS(4645), - [anon_sym_annotation] = ACTIONS(4645), - [anon_sym_data] = ACTIONS(4645), - [anon_sym_inner] = ACTIONS(4645), - [anon_sym_value] = ACTIONS(4645), - [anon_sym_override] = ACTIONS(4645), - [anon_sym_lateinit] = ACTIONS(4645), - [anon_sym_public] = ACTIONS(4645), - [anon_sym_private] = ACTIONS(4645), - [anon_sym_internal] = ACTIONS(4645), - [anon_sym_protected] = ACTIONS(4645), - [anon_sym_tailrec] = ACTIONS(4645), - [anon_sym_operator] = ACTIONS(4645), - [anon_sym_infix] = ACTIONS(4645), - [anon_sym_inline] = ACTIONS(4645), - [anon_sym_external] = ACTIONS(4645), - [sym_property_modifier] = ACTIONS(4645), - [anon_sym_abstract] = ACTIONS(4645), - [anon_sym_final] = ACTIONS(4645), - [anon_sym_open] = ACTIONS(4645), - [anon_sym_vararg] = ACTIONS(4645), - [anon_sym_noinline] = ACTIONS(4645), - [anon_sym_crossinline] = ACTIONS(4645), - [anon_sym_expect] = ACTIONS(4645), - [anon_sym_actual] = ACTIONS(4645), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4647), - [sym_safe_nav] = ACTIONS(4647), + [3211] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6690), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [3212] = { + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_object] = ACTIONS(4834), + [anon_sym_fun] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_this] = ACTIONS(4834), + [anon_sym_super] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_null] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_when] = ACTIONS(4834), + [anon_sym_try] = ACTIONS(4834), + [anon_sym_throw] = ACTIONS(4834), + [anon_sym_return] = ACTIONS(4834), + [anon_sym_continue] = ACTIONS(4834), + [anon_sym_break] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4836), + [anon_sym_continue_AT] = ACTIONS(4836), + [anon_sym_break_AT] = ACTIONS(4836), + [anon_sym_this_AT] = ACTIONS(4836), + [anon_sym_super_AT] = ACTIONS(4836), + [sym_real_literal] = ACTIONS(4836), + [sym_integer_literal] = ACTIONS(4834), + [sym_hex_literal] = ACTIONS(4836), + [sym_bin_literal] = ACTIONS(4836), + [anon_sym_true] = ACTIONS(4834), + [anon_sym_false] = ACTIONS(4834), + [anon_sym_SQUOTE] = ACTIONS(4836), + [sym__backtick_identifier] = ACTIONS(4836), + [sym__automatic_semicolon] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4836), + }, + [3213] = { + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_object] = ACTIONS(4918), + [anon_sym_fun] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_this] = ACTIONS(4918), + [anon_sym_super] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4918), + [anon_sym_if] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_when] = ACTIONS(4918), + [anon_sym_try] = ACTIONS(4918), + [anon_sym_throw] = ACTIONS(4918), + [anon_sym_return] = ACTIONS(4918), + [anon_sym_continue] = ACTIONS(4918), + [anon_sym_break] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4920), + [anon_sym_continue_AT] = ACTIONS(4920), + [anon_sym_break_AT] = ACTIONS(4920), + [anon_sym_this_AT] = ACTIONS(4920), + [anon_sym_super_AT] = ACTIONS(4920), + [sym_real_literal] = ACTIONS(4920), + [sym_integer_literal] = ACTIONS(4918), + [sym_hex_literal] = ACTIONS(4920), + [sym_bin_literal] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4918), + [anon_sym_false] = ACTIONS(4918), + [anon_sym_SQUOTE] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4920), + [sym__automatic_semicolon] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4920), + }, + [3214] = { + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, - [3152] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3145), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4536), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [3215] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_this] = ACTIONS(123), + [anon_sym_super] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(123), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(121), + [anon_sym_continue_AT] = ACTIONS(121), + [anon_sym_break_AT] = ACTIONS(121), + [anon_sym_this_AT] = ACTIONS(121), + [anon_sym_super_AT] = ACTIONS(121), + [sym_real_literal] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(123), + [sym_hex_literal] = ACTIONS(121), + [sym_bin_literal] = ACTIONS(121), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(121), + }, + [3216] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4774), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [anon_sym_this_AT] = ACTIONS(4776), + [anon_sym_super_AT] = ACTIONS(4776), + [sym_real_literal] = ACTIONS(4776), + [sym_integer_literal] = ACTIONS(4774), + [sym_hex_literal] = ACTIONS(4776), + [sym_bin_literal] = ACTIONS(4776), + [anon_sym_true] = ACTIONS(4774), + [anon_sym_false] = ACTIONS(4774), + [anon_sym_SQUOTE] = ACTIONS(4776), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4776), + }, + [3217] = { + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_object] = ACTIONS(5179), + [anon_sym_fun] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_this] = ACTIONS(5179), + [anon_sym_super] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [sym_label] = ACTIONS(5179), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_null] = ACTIONS(5179), + [anon_sym_if] = ACTIONS(5179), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_throw] = ACTIONS(5179), + [anon_sym_return] = ACTIONS(5179), + [anon_sym_continue] = ACTIONS(5179), + [anon_sym_break] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5179), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5181), + [anon_sym_continue_AT] = ACTIONS(5181), + [anon_sym_break_AT] = ACTIONS(5181), + [anon_sym_this_AT] = ACTIONS(5181), + [anon_sym_super_AT] = ACTIONS(5181), + [sym_real_literal] = ACTIONS(5181), + [sym_integer_literal] = ACTIONS(5179), + [sym_hex_literal] = ACTIONS(5181), + [sym_bin_literal] = ACTIONS(5181), + [anon_sym_true] = ACTIONS(5179), + [anon_sym_false] = ACTIONS(5179), + [anon_sym_SQUOTE] = ACTIONS(5181), + [sym__backtick_identifier] = ACTIONS(5181), + [sym__automatic_semicolon] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5181), + }, + [3218] = { + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4471), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_DASH_GT] = ACTIONS(4473), + [sym_label] = ACTIONS(4473), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_while] = ACTIONS(4471), + [anon_sym_DOT_DOT] = ACTIONS(4473), + [anon_sym_QMARK_COLON] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4473), + [anon_sym_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4473), + [anon_sym_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_EQ] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_as_QMARK] = ACTIONS(4473), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG_BANG] = ACTIONS(4473), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4473), + [sym_safe_nav] = ACTIONS(4473), [sym_multiline_comment] = ACTIONS(3), }, - [3153] = { - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_STAR] = ACTIONS(4221), - [anon_sym_DASH_GT] = ACTIONS(4223), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4221), - [anon_sym_while] = ACTIONS(4221), - [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(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [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(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), + [3219] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_object] = ACTIONS(5163), + [anon_sym_fun] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_this] = ACTIONS(5163), + [anon_sym_super] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_null] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_try] = ACTIONS(5163), + [anon_sym_throw] = ACTIONS(5163), + [anon_sym_return] = ACTIONS(5163), + [anon_sym_continue] = ACTIONS(5163), + [anon_sym_break] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5165), + [anon_sym_continue_AT] = ACTIONS(5165), + [anon_sym_break_AT] = ACTIONS(5165), + [anon_sym_this_AT] = ACTIONS(5165), + [anon_sym_super_AT] = ACTIONS(5165), + [sym_real_literal] = ACTIONS(5165), + [sym_integer_literal] = ACTIONS(5163), + [sym_hex_literal] = ACTIONS(5165), + [sym_bin_literal] = ACTIONS(5165), + [anon_sym_true] = ACTIONS(5163), + [anon_sym_false] = ACTIONS(5163), + [anon_sym_SQUOTE] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5165), + }, + [3220] = { + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3221] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_object] = ACTIONS(5159), + [anon_sym_fun] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [sym_label] = ACTIONS(5159), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_if] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_try] = ACTIONS(5159), + [anon_sym_throw] = ACTIONS(5159), + [anon_sym_return] = ACTIONS(5159), + [anon_sym_continue] = ACTIONS(5159), + [anon_sym_break] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5159), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5161), + [anon_sym_continue_AT] = ACTIONS(5161), + [anon_sym_break_AT] = ACTIONS(5161), + [anon_sym_this_AT] = ACTIONS(5161), + [anon_sym_super_AT] = ACTIONS(5161), + [sym_real_literal] = ACTIONS(5161), + [sym_integer_literal] = ACTIONS(5159), + [sym_hex_literal] = ACTIONS(5161), + [sym_bin_literal] = ACTIONS(5161), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5161), + }, + [3222] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_RBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6694), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_DASH_GT] = ACTIONS(4195), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), [sym_multiline_comment] = ACTIONS(3), }, - [3154] = { - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_RBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(4412), - [anon_sym_RPAREN] = ACTIONS(4412), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [anon_sym_DASH_GT] = ACTIONS(4412), - [sym_label] = ACTIONS(4412), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_while] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), + [3223] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_RBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6697), + [anon_sym_L] = ACTIONS(6699), + [sym__backtick_identifier] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), [sym_multiline_comment] = ACTIONS(3), }, - [3155] = { - [sym__alpha_identifier] = ACTIONS(4689), - [anon_sym_AT] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4691), - [anon_sym_as] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4691), - [anon_sym_RBRACE] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(4689), - [anon_sym_where] = ACTIONS(4689), - [anon_sym_object] = ACTIONS(4689), - [anon_sym_fun] = ACTIONS(4689), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_get] = ACTIONS(4689), - [anon_sym_set] = ACTIONS(4689), - [anon_sym_this] = ACTIONS(4689), - [anon_sym_super] = ACTIONS(4689), - [anon_sym_STAR] = ACTIONS(4689), - [sym_label] = ACTIONS(4689), - [anon_sym_in] = ACTIONS(4689), - [anon_sym_DOT_DOT] = ACTIONS(4691), - [anon_sym_QMARK_COLON] = ACTIONS(4691), - [anon_sym_AMP_AMP] = ACTIONS(4691), - [anon_sym_PIPE_PIPE] = ACTIONS(4691), - [anon_sym_null] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_when] = ACTIONS(4689), - [anon_sym_try] = ACTIONS(4689), - [anon_sym_throw] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4691), - [anon_sym_PLUS_EQ] = ACTIONS(4691), - [anon_sym_DASH_EQ] = ACTIONS(4691), - [anon_sym_STAR_EQ] = ACTIONS(4691), - [anon_sym_SLASH_EQ] = ACTIONS(4691), - [anon_sym_PERCENT_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ] = ACTIONS(4689), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ] = ACTIONS(4689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4691), - [anon_sym_LT_EQ] = ACTIONS(4691), - [anon_sym_GT_EQ] = ACTIONS(4691), - [anon_sym_BANGin] = ACTIONS(4691), - [anon_sym_is] = ACTIONS(4689), - [anon_sym_BANGis] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_SLASH] = ACTIONS(4689), - [anon_sym_PERCENT] = ACTIONS(4689), - [anon_sym_as_QMARK] = ACTIONS(4691), - [anon_sym_PLUS_PLUS] = ACTIONS(4691), - [anon_sym_DASH_DASH] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4689), - [anon_sym_BANG_BANG] = ACTIONS(4691), - [anon_sym_data] = ACTIONS(4689), - [anon_sym_inner] = ACTIONS(4689), - [anon_sym_value] = ACTIONS(4689), - [anon_sym_expect] = ACTIONS(4689), - [anon_sym_actual] = ACTIONS(4689), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4691), - [anon_sym_continue_AT] = ACTIONS(4691), - [anon_sym_break_AT] = ACTIONS(4691), - [sym_real_literal] = ACTIONS(4691), - [sym_integer_literal] = ACTIONS(4689), - [sym_hex_literal] = ACTIONS(4691), - [sym_bin_literal] = ACTIONS(4691), - [anon_sym_true] = ACTIONS(4689), - [anon_sym_false] = ACTIONS(4689), - [anon_sym_SQUOTE] = ACTIONS(4691), - [sym__backtick_identifier] = ACTIONS(4691), - [sym__automatic_semicolon] = ACTIONS(4691), - [sym_safe_nav] = ACTIONS(4691), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4691), + [3224] = { + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [3156] = { - [sym_type_constraints] = STATE(3594), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [3225] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_when] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1792), + [anon_sym_continue_AT] = ACTIONS(1792), + [anon_sym_break_AT] = ACTIONS(1792), + [anon_sym_this_AT] = ACTIONS(1792), + [anon_sym_super_AT] = ACTIONS(1792), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [sym_hex_literal] = ACTIONS(1792), + [sym_bin_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [3157] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3061), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [3226] = { + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, - [3158] = { - [sym_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [3227] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_this] = ACTIONS(5047), + [anon_sym_super] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_if] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_try] = ACTIONS(5047), + [anon_sym_throw] = ACTIONS(5047), + [anon_sym_return] = ACTIONS(5047), + [anon_sym_continue] = ACTIONS(5047), + [anon_sym_break] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5049), + [anon_sym_continue_AT] = ACTIONS(5049), + [anon_sym_break_AT] = ACTIONS(5049), + [anon_sym_this_AT] = ACTIONS(5049), + [anon_sym_super_AT] = ACTIONS(5049), + [sym_real_literal] = ACTIONS(5049), + [sym_integer_literal] = ACTIONS(5047), + [sym_hex_literal] = ACTIONS(5049), + [sym_bin_literal] = ACTIONS(5049), + [anon_sym_true] = ACTIONS(5047), + [anon_sym_false] = ACTIONS(5047), + [anon_sym_SQUOTE] = ACTIONS(5049), + [sym__backtick_identifier] = ACTIONS(5049), + [sym__automatic_semicolon] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5049), }, - [3159] = { - [sym_catch_block] = STATE(3159), - [aux_sym_try_expression_repeat1] = STATE(3159), + [3228] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_as] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_object] = ACTIONS(5219), + [anon_sym_fun] = ACTIONS(5219), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_this] = ACTIONS(5219), + [anon_sym_super] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [sym_label] = ACTIONS(5219), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_QMARK_COLON] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_null] = ACTIONS(5219), + [anon_sym_if] = ACTIONS(5219), + [anon_sym_else] = ACTIONS(5219), + [anon_sym_when] = ACTIONS(5219), + [anon_sym_try] = ACTIONS(5219), + [anon_sym_throw] = ACTIONS(5219), + [anon_sym_return] = ACTIONS(5219), + [anon_sym_continue] = ACTIONS(5219), + [anon_sym_break] = ACTIONS(5219), + [anon_sym_COLON_COLON] = ACTIONS(5221), + [anon_sym_PLUS_EQ] = ACTIONS(5221), + [anon_sym_DASH_EQ] = ACTIONS(5221), + [anon_sym_STAR_EQ] = ACTIONS(5221), + [anon_sym_SLASH_EQ] = ACTIONS(5221), + [anon_sym_PERCENT_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5221), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_BANGin] = ACTIONS(5221), + [anon_sym_is] = ACTIONS(5219), + [anon_sym_BANGis] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_as_QMARK] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_BANG_BANG] = ACTIONS(5221), + [anon_sym_data] = ACTIONS(5219), + [anon_sym_inner] = ACTIONS(5219), + [anon_sym_value] = ACTIONS(5219), + [anon_sym_expect] = ACTIONS(5219), + [anon_sym_actual] = ACTIONS(5219), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5221), + [anon_sym_continue_AT] = ACTIONS(5221), + [anon_sym_break_AT] = ACTIONS(5221), + [anon_sym_this_AT] = ACTIONS(5221), + [anon_sym_super_AT] = ACTIONS(5221), + [sym_real_literal] = ACTIONS(5221), + [sym_integer_literal] = ACTIONS(5219), + [sym_hex_literal] = ACTIONS(5221), + [sym_bin_literal] = ACTIONS(5221), + [anon_sym_true] = ACTIONS(5219), + [anon_sym_false] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5221), + [sym__backtick_identifier] = ACTIONS(5221), + [sym__automatic_semicolon] = ACTIONS(5221), + [sym_safe_nav] = ACTIONS(5221), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5221), + }, + [3229] = { + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_fun] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1732), + [anon_sym_super] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_when] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1734), + [anon_sym_continue_AT] = ACTIONS(1734), + [anon_sym_break_AT] = ACTIONS(1734), + [anon_sym_this_AT] = ACTIONS(1734), + [anon_sym_super_AT] = ACTIONS(1734), + [sym_real_literal] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [sym_hex_literal] = ACTIONS(1734), + [sym_bin_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1734), + }, + [3230] = { [sym__alpha_identifier] = ACTIONS(4094), [anon_sym_AT] = ACTIONS(4096), [anon_sym_LBRACK] = ACTIONS(4096), @@ -367779,20 +381645,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(4094), [anon_sym_GT] = ACTIONS(4094), [anon_sym_where] = ACTIONS(4094), + [anon_sym_object] = ACTIONS(4094), + [anon_sym_fun] = ACTIONS(4094), [anon_sym_DOT] = ACTIONS(4094), [anon_sym_SEMI] = ACTIONS(4096), [anon_sym_get] = ACTIONS(4094), [anon_sym_set] = ACTIONS(4094), + [anon_sym_this] = ACTIONS(4094), + [anon_sym_super] = ACTIONS(4094), [anon_sym_STAR] = ACTIONS(4094), - [sym_label] = ACTIONS(4096), + [sym_label] = ACTIONS(4094), [anon_sym_in] = ACTIONS(4094), [anon_sym_DOT_DOT] = ACTIONS(4096), [anon_sym_QMARK_COLON] = ACTIONS(4096), [anon_sym_AMP_AMP] = ACTIONS(4096), [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_null] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4094), [anon_sym_else] = ACTIONS(4094), - [anon_sym_catch] = ACTIONS(6596), - [anon_sym_finally] = ACTIONS(4094), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_try] = ACTIONS(4094), + [anon_sym_throw] = ACTIONS(4094), + [anon_sym_return] = ACTIONS(4094), + [anon_sym_continue] = ACTIONS(4094), + [anon_sym_break] = ACTIONS(4094), [anon_sym_COLON_COLON] = ACTIONS(4096), [anon_sym_PLUS_EQ] = ACTIONS(4096), [anon_sym_DASH_EQ] = ACTIONS(4096), @@ -367815,1985 +381691,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4096), [anon_sym_PLUS_PLUS] = ACTIONS(4096), [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4094), [anon_sym_BANG_BANG] = ACTIONS(4096), - [anon_sym_suspend] = ACTIONS(4094), - [anon_sym_sealed] = ACTIONS(4094), - [anon_sym_annotation] = ACTIONS(4094), [anon_sym_data] = ACTIONS(4094), [anon_sym_inner] = ACTIONS(4094), [anon_sym_value] = ACTIONS(4094), - [anon_sym_override] = ACTIONS(4094), - [anon_sym_lateinit] = ACTIONS(4094), - [anon_sym_public] = ACTIONS(4094), - [anon_sym_private] = ACTIONS(4094), - [anon_sym_internal] = ACTIONS(4094), - [anon_sym_protected] = ACTIONS(4094), - [anon_sym_tailrec] = ACTIONS(4094), - [anon_sym_operator] = ACTIONS(4094), - [anon_sym_infix] = ACTIONS(4094), - [anon_sym_inline] = ACTIONS(4094), - [anon_sym_external] = ACTIONS(4094), - [sym_property_modifier] = ACTIONS(4094), - [anon_sym_abstract] = ACTIONS(4094), - [anon_sym_final] = ACTIONS(4094), - [anon_sym_open] = ACTIONS(4094), - [anon_sym_vararg] = ACTIONS(4094), - [anon_sym_noinline] = ACTIONS(4094), - [anon_sym_crossinline] = ACTIONS(4094), [anon_sym_expect] = ACTIONS(4094), [anon_sym_actual] = ACTIONS(4094), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4096), + [anon_sym_continue_AT] = ACTIONS(4096), + [anon_sym_break_AT] = ACTIONS(4096), + [anon_sym_this_AT] = ACTIONS(4096), + [anon_sym_super_AT] = ACTIONS(4096), + [sym_real_literal] = ACTIONS(4096), + [sym_integer_literal] = ACTIONS(4094), + [sym_hex_literal] = ACTIONS(4096), + [sym_bin_literal] = ACTIONS(4096), + [anon_sym_true] = ACTIONS(4094), + [anon_sym_false] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4096), [sym__backtick_identifier] = ACTIONS(4096), [sym__automatic_semicolon] = ACTIONS(4096), [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4096), }, - [3160] = { - [sym__alpha_identifier] = ACTIONS(4649), - [anon_sym_AT] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_as] = ACTIONS(4649), - [anon_sym_EQ] = ACTIONS(4649), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_by] = ACTIONS(4649), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4649), - [anon_sym_object] = ACTIONS(4649), - [anon_sym_fun] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_get] = ACTIONS(4649), - [anon_sym_set] = ACTIONS(4649), - [anon_sym_this] = ACTIONS(4649), - [anon_sym_super] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4649), - [sym_label] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_DOT_DOT] = ACTIONS(4651), - [anon_sym_QMARK_COLON] = ACTIONS(4651), - [anon_sym_AMP_AMP] = ACTIONS(4651), - [anon_sym_PIPE_PIPE] = ACTIONS(4651), - [anon_sym_null] = ACTIONS(4649), - [anon_sym_if] = ACTIONS(4649), - [anon_sym_else] = ACTIONS(4649), - [anon_sym_when] = ACTIONS(4649), - [anon_sym_try] = ACTIONS(4649), - [anon_sym_throw] = ACTIONS(4649), - [anon_sym_return] = ACTIONS(4649), - [anon_sym_continue] = ACTIONS(4649), - [anon_sym_break] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4651), - [anon_sym_PLUS_EQ] = ACTIONS(4651), - [anon_sym_DASH_EQ] = ACTIONS(4651), - [anon_sym_STAR_EQ] = ACTIONS(4651), - [anon_sym_SLASH_EQ] = ACTIONS(4651), - [anon_sym_PERCENT_EQ] = ACTIONS(4651), - [anon_sym_BANG_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4651), - [anon_sym_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4651), - [anon_sym_LT_EQ] = ACTIONS(4651), - [anon_sym_GT_EQ] = ACTIONS(4651), - [anon_sym_BANGin] = ACTIONS(4651), - [anon_sym_is] = ACTIONS(4649), - [anon_sym_BANGis] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4649), - [anon_sym_as_QMARK] = ACTIONS(4651), - [anon_sym_PLUS_PLUS] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4651), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_BANG_BANG] = ACTIONS(4651), - [anon_sym_data] = ACTIONS(4649), - [anon_sym_inner] = ACTIONS(4649), - [anon_sym_value] = ACTIONS(4649), - [anon_sym_expect] = ACTIONS(4649), - [anon_sym_actual] = ACTIONS(4649), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4651), - [anon_sym_continue_AT] = ACTIONS(4651), - [anon_sym_break_AT] = ACTIONS(4651), - [sym_real_literal] = ACTIONS(4651), - [sym_integer_literal] = ACTIONS(4649), - [sym_hex_literal] = ACTIONS(4651), - [sym_bin_literal] = ACTIONS(4651), - [anon_sym_true] = ACTIONS(4649), - [anon_sym_false] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4651), - [sym__backtick_identifier] = ACTIONS(4651), - [sym__automatic_semicolon] = ACTIONS(4651), - [sym_safe_nav] = ACTIONS(4651), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4651), - }, - [3161] = { - [sym_enum_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [3162] = { - [sym_class_body] = STATE(3238), - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_object] = ACTIONS(4681), - [anon_sym_fun] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_this] = ACTIONS(4681), - [anon_sym_super] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [sym_label] = ACTIONS(4681), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_null] = ACTIONS(4681), - [anon_sym_if] = ACTIONS(4681), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_when] = ACTIONS(4681), - [anon_sym_try] = ACTIONS(4681), - [anon_sym_throw] = ACTIONS(4681), - [anon_sym_return] = ACTIONS(4681), - [anon_sym_continue] = ACTIONS(4681), - [anon_sym_break] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4683), - [anon_sym_continue_AT] = ACTIONS(4683), - [anon_sym_break_AT] = ACTIONS(4683), - [sym_real_literal] = ACTIONS(4683), - [sym_integer_literal] = ACTIONS(4681), - [sym_hex_literal] = ACTIONS(4683), - [sym_bin_literal] = ACTIONS(4683), - [anon_sym_true] = ACTIONS(4681), - [anon_sym_false] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4683), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4683), - }, - [3163] = { - [sym_class_body] = STATE(3203), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_object] = ACTIONS(4490), - [anon_sym_fun] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_this] = ACTIONS(4490), - [anon_sym_super] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4490), - [anon_sym_if] = ACTIONS(4490), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_when] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4490), - [anon_sym_throw] = ACTIONS(4490), - [anon_sym_return] = ACTIONS(4490), - [anon_sym_continue] = ACTIONS(4490), - [anon_sym_break] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4492), - [anon_sym_continue_AT] = ACTIONS(4492), - [anon_sym_break_AT] = ACTIONS(4492), - [sym_real_literal] = ACTIONS(4492), - [sym_integer_literal] = ACTIONS(4490), - [sym_hex_literal] = ACTIONS(4492), - [sym_bin_literal] = ACTIONS(4492), - [anon_sym_true] = ACTIONS(4490), - [anon_sym_false] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4492), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4492), - }, - [3164] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_object] = ACTIONS(4653), - [anon_sym_fun] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_this] = ACTIONS(4653), - [anon_sym_super] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [sym_label] = ACTIONS(4653), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_null] = ACTIONS(4653), - [anon_sym_if] = ACTIONS(4653), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_when] = ACTIONS(4653), - [anon_sym_try] = ACTIONS(4653), - [anon_sym_throw] = ACTIONS(4653), - [anon_sym_return] = ACTIONS(4653), - [anon_sym_continue] = ACTIONS(4653), - [anon_sym_break] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4655), - [anon_sym_continue_AT] = ACTIONS(4655), - [anon_sym_break_AT] = ACTIONS(4655), - [sym_real_literal] = ACTIONS(4655), - [sym_integer_literal] = ACTIONS(4653), - [sym_hex_literal] = ACTIONS(4655), - [sym_bin_literal] = ACTIONS(4655), - [anon_sym_true] = ACTIONS(4653), - [anon_sym_false] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4655), - [sym__backtick_identifier] = ACTIONS(4655), - [sym__automatic_semicolon] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4655), - }, - [3165] = { - [sym__alpha_identifier] = ACTIONS(4657), - [anon_sym_AT] = ACTIONS(4659), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_as] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4659), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4659), - [anon_sym_by] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4657), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_where] = ACTIONS(4657), - [anon_sym_object] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(4657), - [anon_sym_set] = ACTIONS(4657), - [anon_sym_this] = ACTIONS(4657), - [anon_sym_super] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [sym_label] = ACTIONS(4657), - [anon_sym_in] = ACTIONS(4657), - [anon_sym_DOT_DOT] = ACTIONS(4659), - [anon_sym_QMARK_COLON] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_PIPE_PIPE] = ACTIONS(4659), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_else] = ACTIONS(4657), - [anon_sym_when] = ACTIONS(4657), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_throw] = ACTIONS(4657), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_continue] = ACTIONS(4657), - [anon_sym_break] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4659), - [anon_sym_PLUS_EQ] = ACTIONS(4659), - [anon_sym_DASH_EQ] = ACTIONS(4659), - [anon_sym_STAR_EQ] = ACTIONS(4659), - [anon_sym_SLASH_EQ] = ACTIONS(4659), - [anon_sym_PERCENT_EQ] = ACTIONS(4659), - [anon_sym_BANG_EQ] = ACTIONS(4657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), - [anon_sym_EQ_EQ] = ACTIONS(4657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), - [anon_sym_LT_EQ] = ACTIONS(4659), - [anon_sym_GT_EQ] = ACTIONS(4659), - [anon_sym_BANGin] = ACTIONS(4659), - [anon_sym_is] = ACTIONS(4657), - [anon_sym_BANGis] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_as_QMARK] = ACTIONS(4659), - [anon_sym_PLUS_PLUS] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_BANG_BANG] = ACTIONS(4659), - [anon_sym_data] = ACTIONS(4657), - [anon_sym_inner] = ACTIONS(4657), - [anon_sym_value] = ACTIONS(4657), - [anon_sym_expect] = ACTIONS(4657), - [anon_sym_actual] = ACTIONS(4657), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4659), - [anon_sym_continue_AT] = ACTIONS(4659), - [anon_sym_break_AT] = ACTIONS(4659), - [sym_real_literal] = ACTIONS(4659), - [sym_integer_literal] = ACTIONS(4657), - [sym_hex_literal] = ACTIONS(4659), - [sym_bin_literal] = ACTIONS(4659), - [anon_sym_true] = ACTIONS(4657), - [anon_sym_false] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4659), - [sym__backtick_identifier] = ACTIONS(4659), - [sym__automatic_semicolon] = ACTIONS(4659), - [sym_safe_nav] = ACTIONS(4659), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4659), - }, - [3166] = { - [sym__alpha_identifier] = ACTIONS(4661), - [anon_sym_AT] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_as] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_by] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4661), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_where] = ACTIONS(4661), - [anon_sym_object] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4661), - [anon_sym_this] = ACTIONS(4661), - [anon_sym_super] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [sym_label] = ACTIONS(4661), - [anon_sym_in] = ACTIONS(4661), - [anon_sym_DOT_DOT] = ACTIONS(4663), - [anon_sym_QMARK_COLON] = ACTIONS(4663), - [anon_sym_AMP_AMP] = ACTIONS(4663), - [anon_sym_PIPE_PIPE] = ACTIONS(4663), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_else] = ACTIONS(4661), - [anon_sym_when] = ACTIONS(4661), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_throw] = ACTIONS(4661), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_continue] = ACTIONS(4661), - [anon_sym_break] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4663), - [anon_sym_PLUS_EQ] = ACTIONS(4663), - [anon_sym_DASH_EQ] = ACTIONS(4663), - [anon_sym_STAR_EQ] = ACTIONS(4663), - [anon_sym_SLASH_EQ] = ACTIONS(4663), - [anon_sym_PERCENT_EQ] = ACTIONS(4663), - [anon_sym_BANG_EQ] = ACTIONS(4661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), - [anon_sym_EQ_EQ] = ACTIONS(4661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), - [anon_sym_LT_EQ] = ACTIONS(4663), - [anon_sym_GT_EQ] = ACTIONS(4663), - [anon_sym_BANGin] = ACTIONS(4663), - [anon_sym_is] = ACTIONS(4661), - [anon_sym_BANGis] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_as_QMARK] = ACTIONS(4663), - [anon_sym_PLUS_PLUS] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_BANG_BANG] = ACTIONS(4663), - [anon_sym_data] = ACTIONS(4661), - [anon_sym_inner] = ACTIONS(4661), - [anon_sym_value] = ACTIONS(4661), - [anon_sym_expect] = ACTIONS(4661), - [anon_sym_actual] = ACTIONS(4661), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4663), - [anon_sym_continue_AT] = ACTIONS(4663), - [anon_sym_break_AT] = ACTIONS(4663), - [sym_real_literal] = ACTIONS(4663), - [sym_integer_literal] = ACTIONS(4661), - [sym_hex_literal] = ACTIONS(4663), - [sym_bin_literal] = ACTIONS(4663), - [anon_sym_true] = ACTIONS(4661), - [anon_sym_false] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4663), - [sym__backtick_identifier] = ACTIONS(4663), - [sym__automatic_semicolon] = ACTIONS(4663), - [sym_safe_nav] = ACTIONS(4663), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4663), - }, - [3167] = { - [sym__alpha_identifier] = ACTIONS(4665), - [anon_sym_AT] = ACTIONS(4667), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_as] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4667), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_LPAREN] = ACTIONS(4667), - [anon_sym_COMMA] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4665), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_where] = ACTIONS(4665), - [anon_sym_object] = ACTIONS(4665), - [anon_sym_fun] = ACTIONS(4665), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4667), - [anon_sym_get] = ACTIONS(4665), - [anon_sym_set] = ACTIONS(4665), - [anon_sym_this] = ACTIONS(4665), - [anon_sym_super] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [sym_label] = ACTIONS(4665), - [anon_sym_in] = ACTIONS(4665), - [anon_sym_DOT_DOT] = ACTIONS(4667), - [anon_sym_QMARK_COLON] = ACTIONS(4667), - [anon_sym_AMP_AMP] = ACTIONS(4667), - [anon_sym_PIPE_PIPE] = ACTIONS(4667), - [anon_sym_null] = ACTIONS(4665), - [anon_sym_if] = ACTIONS(4665), - [anon_sym_else] = ACTIONS(4665), - [anon_sym_when] = ACTIONS(4665), - [anon_sym_try] = ACTIONS(4665), - [anon_sym_throw] = ACTIONS(4665), - [anon_sym_return] = ACTIONS(4665), - [anon_sym_continue] = ACTIONS(4665), - [anon_sym_break] = ACTIONS(4665), - [anon_sym_COLON_COLON] = ACTIONS(4667), - [anon_sym_PLUS_EQ] = ACTIONS(4667), - [anon_sym_DASH_EQ] = ACTIONS(4667), - [anon_sym_STAR_EQ] = ACTIONS(4667), - [anon_sym_SLASH_EQ] = ACTIONS(4667), - [anon_sym_PERCENT_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ] = ACTIONS(4665), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ] = ACTIONS(4665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), - [anon_sym_LT_EQ] = ACTIONS(4667), - [anon_sym_GT_EQ] = ACTIONS(4667), - [anon_sym_BANGin] = ACTIONS(4667), - [anon_sym_is] = ACTIONS(4665), - [anon_sym_BANGis] = ACTIONS(4667), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_as_QMARK] = ACTIONS(4667), - [anon_sym_PLUS_PLUS] = ACTIONS(4667), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_BANG_BANG] = ACTIONS(4667), - [anon_sym_data] = ACTIONS(4665), - [anon_sym_inner] = ACTIONS(4665), - [anon_sym_value] = ACTIONS(4665), - [anon_sym_expect] = ACTIONS(4665), - [anon_sym_actual] = ACTIONS(4665), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4667), - [anon_sym_continue_AT] = ACTIONS(4667), - [anon_sym_break_AT] = ACTIONS(4667), - [sym_real_literal] = ACTIONS(4667), - [sym_integer_literal] = ACTIONS(4665), - [sym_hex_literal] = ACTIONS(4667), - [sym_bin_literal] = ACTIONS(4667), - [anon_sym_true] = ACTIONS(4665), - [anon_sym_false] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4667), - [sym__backtick_identifier] = ACTIONS(4667), - [sym__automatic_semicolon] = ACTIONS(4667), - [sym_safe_nav] = ACTIONS(4667), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4667), - }, - [3168] = { - [sym_enum_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - }, - [3169] = { - [sym__alpha_identifier] = ACTIONS(4665), - [anon_sym_AT] = ACTIONS(4667), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_RBRACK] = ACTIONS(4667), - [anon_sym_as] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4667), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_LPAREN] = ACTIONS(4667), - [anon_sym_COMMA] = ACTIONS(4667), - [anon_sym_RPAREN] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4665), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_where] = ACTIONS(4665), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4667), - [anon_sym_get] = ACTIONS(4665), - [anon_sym_set] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_DASH_GT] = ACTIONS(4667), - [sym_label] = ACTIONS(4667), - [anon_sym_in] = ACTIONS(4665), - [anon_sym_while] = ACTIONS(4665), - [anon_sym_DOT_DOT] = ACTIONS(4667), - [anon_sym_QMARK_COLON] = ACTIONS(4667), - [anon_sym_AMP_AMP] = ACTIONS(4667), - [anon_sym_PIPE_PIPE] = ACTIONS(4667), - [anon_sym_else] = ACTIONS(4665), - [anon_sym_COLON_COLON] = ACTIONS(4667), - [anon_sym_PLUS_EQ] = ACTIONS(4667), - [anon_sym_DASH_EQ] = ACTIONS(4667), - [anon_sym_STAR_EQ] = ACTIONS(4667), - [anon_sym_SLASH_EQ] = ACTIONS(4667), - [anon_sym_PERCENT_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ] = ACTIONS(4665), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ] = ACTIONS(4665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), - [anon_sym_LT_EQ] = ACTIONS(4667), - [anon_sym_GT_EQ] = ACTIONS(4667), - [anon_sym_BANGin] = ACTIONS(4667), - [anon_sym_is] = ACTIONS(4665), - [anon_sym_BANGis] = ACTIONS(4667), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_as_QMARK] = ACTIONS(4667), - [anon_sym_PLUS_PLUS] = ACTIONS(4667), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_BANG_BANG] = ACTIONS(4667), - [anon_sym_suspend] = ACTIONS(4665), - [anon_sym_sealed] = ACTIONS(4665), - [anon_sym_annotation] = ACTIONS(4665), - [anon_sym_data] = ACTIONS(4665), - [anon_sym_inner] = ACTIONS(4665), - [anon_sym_value] = ACTIONS(4665), - [anon_sym_override] = ACTIONS(4665), - [anon_sym_lateinit] = ACTIONS(4665), - [anon_sym_public] = ACTIONS(4665), - [anon_sym_private] = ACTIONS(4665), - [anon_sym_internal] = ACTIONS(4665), - [anon_sym_protected] = ACTIONS(4665), - [anon_sym_tailrec] = ACTIONS(4665), - [anon_sym_operator] = ACTIONS(4665), - [anon_sym_infix] = ACTIONS(4665), - [anon_sym_inline] = ACTIONS(4665), - [anon_sym_external] = ACTIONS(4665), - [sym_property_modifier] = ACTIONS(4665), - [anon_sym_abstract] = ACTIONS(4665), - [anon_sym_final] = ACTIONS(4665), - [anon_sym_open] = ACTIONS(4665), - [anon_sym_vararg] = ACTIONS(4665), - [anon_sym_noinline] = ACTIONS(4665), - [anon_sym_crossinline] = ACTIONS(4665), - [anon_sym_expect] = ACTIONS(4665), - [anon_sym_actual] = ACTIONS(4665), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4667), - [sym_safe_nav] = ACTIONS(4667), - [sym_multiline_comment] = ACTIONS(3), - }, - [3170] = { - [sym_enum_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [3171] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_RBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_RPAREN] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_DASH_GT] = ACTIONS(4655), - [sym_label] = ACTIONS(4655), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_while] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_suspend] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4653), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_lateinit] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_tailrec] = ACTIONS(4653), - [anon_sym_operator] = ACTIONS(4653), - [anon_sym_infix] = ACTIONS(4653), - [anon_sym_inline] = ACTIONS(4653), - [anon_sym_external] = ACTIONS(4653), - [sym_property_modifier] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_final] = ACTIONS(4653), - [anon_sym_open] = ACTIONS(4653), - [anon_sym_vararg] = ACTIONS(4653), - [anon_sym_noinline] = ACTIONS(4653), - [anon_sym_crossinline] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), - }, - [3172] = { - [sym_class_body] = STATE(3456), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_RBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_RPAREN] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [anon_sym_DASH_GT] = ACTIONS(4492), - [sym_label] = ACTIONS(4492), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_while] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - }, - [3173] = { - [sym_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [3174] = { - [sym__alpha_identifier] = ACTIONS(4755), - [anon_sym_AT] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4757), - [anon_sym_as] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(4755), - [anon_sym_LBRACE] = ACTIONS(4757), - [anon_sym_RBRACE] = ACTIONS(4757), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym_COMMA] = ACTIONS(4757), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_where] = ACTIONS(4755), - [anon_sym_object] = ACTIONS(4755), - [anon_sym_fun] = ACTIONS(4755), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4757), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_this] = ACTIONS(4755), - [anon_sym_super] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4755), - [sym_label] = ACTIONS(4755), - [anon_sym_in] = ACTIONS(4755), - [anon_sym_DOT_DOT] = ACTIONS(4757), - [anon_sym_QMARK_COLON] = ACTIONS(4757), - [anon_sym_AMP_AMP] = ACTIONS(4757), - [anon_sym_PIPE_PIPE] = ACTIONS(4757), - [anon_sym_null] = ACTIONS(4755), - [anon_sym_if] = ACTIONS(4755), - [anon_sym_else] = ACTIONS(4755), - [anon_sym_when] = ACTIONS(4755), - [anon_sym_try] = ACTIONS(4755), - [anon_sym_throw] = ACTIONS(4755), - [anon_sym_return] = ACTIONS(4755), - [anon_sym_continue] = ACTIONS(4755), - [anon_sym_break] = ACTIONS(4755), - [anon_sym_COLON_COLON] = ACTIONS(4757), - [anon_sym_PLUS_EQ] = ACTIONS(4757), - [anon_sym_DASH_EQ] = ACTIONS(4757), - [anon_sym_STAR_EQ] = ACTIONS(4757), - [anon_sym_SLASH_EQ] = ACTIONS(4757), - [anon_sym_PERCENT_EQ] = ACTIONS(4757), - [anon_sym_BANG_EQ] = ACTIONS(4755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4757), - [anon_sym_EQ_EQ] = ACTIONS(4755), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4757), - [anon_sym_LT_EQ] = ACTIONS(4757), - [anon_sym_GT_EQ] = ACTIONS(4757), - [anon_sym_BANGin] = ACTIONS(4757), - [anon_sym_is] = ACTIONS(4755), - [anon_sym_BANGis] = ACTIONS(4757), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4755), - [anon_sym_as_QMARK] = ACTIONS(4757), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_BANG] = ACTIONS(4755), - [anon_sym_BANG_BANG] = ACTIONS(4757), - [anon_sym_data] = ACTIONS(4755), - [anon_sym_inner] = ACTIONS(4755), - [anon_sym_value] = ACTIONS(4755), - [anon_sym_expect] = ACTIONS(4755), - [anon_sym_actual] = ACTIONS(4755), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4757), - [anon_sym_continue_AT] = ACTIONS(4757), - [anon_sym_break_AT] = ACTIONS(4757), - [sym_real_literal] = ACTIONS(4757), - [sym_integer_literal] = ACTIONS(4755), - [sym_hex_literal] = ACTIONS(4757), - [sym_bin_literal] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4755), - [anon_sym_false] = ACTIONS(4755), - [anon_sym_SQUOTE] = ACTIONS(4757), - [sym__backtick_identifier] = ACTIONS(4757), - [sym__automatic_semicolon] = ACTIONS(4757), - [sym_safe_nav] = ACTIONS(4757), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4757), - }, - [3175] = { - [sym__alpha_identifier] = ACTIONS(4825), - [anon_sym_AT] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_as] = ACTIONS(4825), - [anon_sym_EQ] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_where] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_get] = ACTIONS(4825), - [anon_sym_set] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_DASH_GT] = ACTIONS(4827), - [sym_label] = ACTIONS(4827), - [anon_sym_in] = ACTIONS(4825), - [anon_sym_while] = ACTIONS(4825), - [anon_sym_DOT_DOT] = ACTIONS(4827), - [anon_sym_QMARK_COLON] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_else] = ACTIONS(4825), - [anon_sym_COLON_COLON] = ACTIONS(4827), - [anon_sym_PLUS_EQ] = ACTIONS(4827), - [anon_sym_DASH_EQ] = ACTIONS(4827), - [anon_sym_STAR_EQ] = ACTIONS(4827), - [anon_sym_SLASH_EQ] = ACTIONS(4827), - [anon_sym_PERCENT_EQ] = ACTIONS(4827), - [anon_sym_BANG_EQ] = ACTIONS(4825), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4827), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4827), - [anon_sym_BANGin] = ACTIONS(4827), - [anon_sym_is] = ACTIONS(4825), - [anon_sym_BANGis] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4825), - [anon_sym_as_QMARK] = ACTIONS(4827), - [anon_sym_PLUS_PLUS] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4827), - [anon_sym_BANG_BANG] = ACTIONS(4827), - [anon_sym_suspend] = ACTIONS(4825), - [anon_sym_sealed] = ACTIONS(4825), - [anon_sym_annotation] = ACTIONS(4825), - [anon_sym_data] = ACTIONS(4825), - [anon_sym_inner] = ACTIONS(4825), - [anon_sym_value] = ACTIONS(4825), - [anon_sym_override] = ACTIONS(4825), - [anon_sym_lateinit] = ACTIONS(4825), - [anon_sym_public] = ACTIONS(4825), - [anon_sym_private] = ACTIONS(4825), - [anon_sym_internal] = ACTIONS(4825), - [anon_sym_protected] = ACTIONS(4825), - [anon_sym_tailrec] = ACTIONS(4825), - [anon_sym_operator] = ACTIONS(4825), - [anon_sym_infix] = ACTIONS(4825), - [anon_sym_inline] = ACTIONS(4825), - [anon_sym_external] = ACTIONS(4825), - [sym_property_modifier] = ACTIONS(4825), - [anon_sym_abstract] = ACTIONS(4825), - [anon_sym_final] = ACTIONS(4825), - [anon_sym_open] = ACTIONS(4825), - [anon_sym_vararg] = ACTIONS(4825), - [anon_sym_noinline] = ACTIONS(4825), - [anon_sym_crossinline] = ACTIONS(4825), - [anon_sym_expect] = ACTIONS(4825), - [anon_sym_actual] = ACTIONS(4825), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4827), - [sym_safe_nav] = ACTIONS(4827), - [sym_multiline_comment] = ACTIONS(3), - }, - [3176] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(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_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_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), - [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), - }, - [3177] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_DASH_GT] = ACTIONS(4295), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_while] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [3231] = { + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [3178] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_object] = ACTIONS(4995), - [anon_sym_fun] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_this] = ACTIONS(4995), - [anon_sym_super] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [sym_label] = ACTIONS(4995), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_null] = ACTIONS(4995), - [anon_sym_if] = ACTIONS(4995), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_try] = ACTIONS(4995), - [anon_sym_throw] = ACTIONS(4995), - [anon_sym_return] = ACTIONS(4995), - [anon_sym_continue] = ACTIONS(4995), - [anon_sym_break] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_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), - [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), - }, - [3179] = { - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(4492), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_object] = ACTIONS(4490), - [anon_sym_fun] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_this] = ACTIONS(4490), - [anon_sym_super] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_null] = ACTIONS(4490), - [anon_sym_if] = ACTIONS(4490), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_when] = ACTIONS(4490), - [anon_sym_try] = ACTIONS(4490), - [anon_sym_throw] = ACTIONS(4490), - [anon_sym_return] = ACTIONS(4490), - [anon_sym_continue] = ACTIONS(4490), - [anon_sym_break] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4492), - [anon_sym_continue_AT] = ACTIONS(4492), - [anon_sym_break_AT] = ACTIONS(4492), - [sym_real_literal] = ACTIONS(4492), - [sym_integer_literal] = ACTIONS(4490), - [sym_hex_literal] = ACTIONS(4492), - [sym_bin_literal] = ACTIONS(4492), - [anon_sym_true] = ACTIONS(4490), - [anon_sym_false] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4492), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4492), - }, - [3180] = { - [sym__alpha_identifier] = ACTIONS(5132), - [anon_sym_AT] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5132), - [anon_sym_LBRACE] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5132), - [anon_sym_object] = ACTIONS(5132), - [anon_sym_fun] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_SEMI] = ACTIONS(5134), - [anon_sym_get] = ACTIONS(5132), - [anon_sym_set] = ACTIONS(5132), - [anon_sym_this] = ACTIONS(5132), - [anon_sym_super] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5132), - [sym_label] = ACTIONS(5132), - [anon_sym_in] = ACTIONS(5132), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_QMARK_COLON] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_null] = ACTIONS(5132), - [anon_sym_if] = ACTIONS(5132), - [anon_sym_else] = ACTIONS(5132), - [anon_sym_when] = ACTIONS(5132), - [anon_sym_try] = ACTIONS(5132), - [anon_sym_throw] = ACTIONS(5132), - [anon_sym_return] = ACTIONS(5132), - [anon_sym_continue] = ACTIONS(5132), - [anon_sym_break] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5134), - [anon_sym_PLUS_EQ] = ACTIONS(5134), - [anon_sym_DASH_EQ] = ACTIONS(5134), - [anon_sym_STAR_EQ] = ACTIONS(5134), - [anon_sym_SLASH_EQ] = ACTIONS(5134), - [anon_sym_PERCENT_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_BANGin] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5132), - [anon_sym_BANGis] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5132), - [anon_sym_as_QMARK] = ACTIONS(5134), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(5132), - [anon_sym_BANG_BANG] = ACTIONS(5134), - [anon_sym_data] = ACTIONS(5132), - [anon_sym_inner] = ACTIONS(5132), - [anon_sym_value] = ACTIONS(5132), - [anon_sym_expect] = ACTIONS(5132), - [anon_sym_actual] = ACTIONS(5132), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5134), - [anon_sym_continue_AT] = ACTIONS(5134), - [anon_sym_break_AT] = ACTIONS(5134), - [sym_real_literal] = ACTIONS(5134), - [sym_integer_literal] = ACTIONS(5132), - [sym_hex_literal] = ACTIONS(5134), - [sym_bin_literal] = ACTIONS(5134), - [anon_sym_true] = ACTIONS(5132), - [anon_sym_false] = ACTIONS(5132), - [anon_sym_SQUOTE] = ACTIONS(5134), - [sym__backtick_identifier] = ACTIONS(5134), - [sym__automatic_semicolon] = ACTIONS(5134), - [sym_safe_nav] = ACTIONS(5134), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5134), - }, - [3181] = { - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [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), - [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), - }, - [3182] = { - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), + [3232] = { + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, - [3183] = { - [sym_type_constraints] = STATE(3589), - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), + [3233] = { [sym__alpha_identifier] = ACTIONS(4179), [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), [anon_sym_RBRACE] = ACTIONS(4181), [anon_sym_LPAREN] = ACTIONS(4181), [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), [anon_sym_LT] = ACTIONS(4179), [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5416), + [anon_sym_where] = ACTIONS(4179), [anon_sym_DOT] = ACTIONS(4179), [anon_sym_SEMI] = ACTIONS(4181), [anon_sym_get] = ACTIONS(4179), [anon_sym_set] = ACTIONS(4179), [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), [sym_label] = ACTIONS(4181), [anon_sym_in] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), [anon_sym_DOT_DOT] = ACTIONS(4181), [anon_sym_QMARK_COLON] = ACTIONS(4181), [anon_sym_AMP_AMP] = ACTIONS(4181), @@ -369850,11267 +381969,6569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4179), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), }, - [3184] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [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), - [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), - }, - [3185] = { - [sym_class_body] = STATE(3784), - [sym_type_constraints] = STATE(3696), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [3186] = { - [aux_sym_nullable_type_repeat1] = STATE(3186), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(4227), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_object] = ACTIONS(4225), - [anon_sym_fun] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [anon_sym_this] = ACTIONS(4225), - [anon_sym_super] = ACTIONS(4225), - [sym__quest] = ACTIONS(6599), - [anon_sym_STAR] = ACTIONS(4227), - [sym_label] = ACTIONS(4225), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_if] = ACTIONS(4225), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_when] = ACTIONS(4225), - [anon_sym_try] = ACTIONS(4225), - [anon_sym_throw] = ACTIONS(4225), - [anon_sym_return] = ACTIONS(4225), - [anon_sym_continue] = ACTIONS(4225), - [anon_sym_break] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4227), - [anon_sym_continue_AT] = ACTIONS(4227), - [anon_sym_break_AT] = ACTIONS(4227), - [sym_real_literal] = ACTIONS(4227), - [sym_integer_literal] = ACTIONS(4225), - [sym_hex_literal] = ACTIONS(4227), - [sym_bin_literal] = ACTIONS(4227), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(4227), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4227), - }, - [3187] = { - [sym_class_body] = STATE(3820), - [sym_type_constraints] = STATE(3667), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6602), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - }, - [3188] = { - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5625), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3189] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_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), - [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), - }, - [3190] = { - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(4582), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_object] = ACTIONS(4580), - [anon_sym_fun] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_this] = ACTIONS(4580), - [anon_sym_super] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [sym_label] = ACTIONS(4580), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_when] = ACTIONS(4580), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_throw] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4582), - [anon_sym_continue_AT] = ACTIONS(4582), - [anon_sym_break_AT] = ACTIONS(4582), - [sym_real_literal] = ACTIONS(4582), - [sym_integer_literal] = ACTIONS(4580), - [sym_hex_literal] = ACTIONS(4582), - [sym_bin_literal] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_SQUOTE] = ACTIONS(4582), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4582), - }, - [3191] = { - [sym__alpha_identifier] = ACTIONS(5104), - [anon_sym_AT] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5104), - [anon_sym_EQ] = ACTIONS(5104), - [anon_sym_LBRACE] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5104), - [anon_sym_object] = ACTIONS(5104), - [anon_sym_fun] = ACTIONS(5104), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_get] = ACTIONS(5104), - [anon_sym_set] = ACTIONS(5104), - [anon_sym_this] = ACTIONS(5104), - [anon_sym_super] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5104), - [sym_label] = ACTIONS(5104), - [anon_sym_in] = ACTIONS(5104), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_QMARK_COLON] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_null] = ACTIONS(5104), - [anon_sym_if] = ACTIONS(5104), - [anon_sym_else] = ACTIONS(5104), - [anon_sym_when] = ACTIONS(5104), - [anon_sym_try] = ACTIONS(5104), - [anon_sym_throw] = ACTIONS(5104), - [anon_sym_return] = ACTIONS(5104), - [anon_sym_continue] = ACTIONS(5104), - [anon_sym_break] = ACTIONS(5104), - [anon_sym_COLON_COLON] = ACTIONS(5106), - [anon_sym_PLUS_EQ] = ACTIONS(5106), - [anon_sym_DASH_EQ] = ACTIONS(5106), - [anon_sym_STAR_EQ] = ACTIONS(5106), - [anon_sym_SLASH_EQ] = ACTIONS(5106), - [anon_sym_PERCENT_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_BANGin] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5104), - [anon_sym_BANGis] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5104), - [anon_sym_as_QMARK] = ACTIONS(5106), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_BANG] = ACTIONS(5104), - [anon_sym_BANG_BANG] = ACTIONS(5106), - [anon_sym_data] = ACTIONS(5104), - [anon_sym_inner] = ACTIONS(5104), - [anon_sym_value] = ACTIONS(5104), - [anon_sym_expect] = ACTIONS(5104), - [anon_sym_actual] = ACTIONS(5104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5106), - [anon_sym_continue_AT] = ACTIONS(5106), - [anon_sym_break_AT] = ACTIONS(5106), - [sym_real_literal] = ACTIONS(5106), - [sym_integer_literal] = ACTIONS(5104), - [sym_hex_literal] = ACTIONS(5106), - [sym_bin_literal] = ACTIONS(5106), - [anon_sym_true] = ACTIONS(5104), - [anon_sym_false] = ACTIONS(5104), - [anon_sym_SQUOTE] = ACTIONS(5106), - [sym__backtick_identifier] = ACTIONS(5106), - [sym__automatic_semicolon] = ACTIONS(5106), - [sym_safe_nav] = ACTIONS(5106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5106), - }, - [3192] = { - [sym_class_body] = STATE(3859), - [sym_type_constraints] = STATE(3615), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3193] = { - [sym_type_constraints] = STATE(3594), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - }, - [3194] = { - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [3195] = { - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4065), - [anon_sym_LBRACE] = ACTIONS(4067), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [3196] = { - [sym__alpha_identifier] = ACTIONS(5074), - [anon_sym_AT] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5074), - [anon_sym_EQ] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_where] = ACTIONS(5074), - [anon_sym_object] = ACTIONS(5074), - [anon_sym_fun] = ACTIONS(5074), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_SEMI] = ACTIONS(5076), - [anon_sym_get] = ACTIONS(5074), - [anon_sym_set] = ACTIONS(5074), - [anon_sym_this] = ACTIONS(5074), - [anon_sym_super] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5074), - [sym_label] = ACTIONS(5074), - [anon_sym_in] = ACTIONS(5074), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_QMARK_COLON] = ACTIONS(5076), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(5074), - [anon_sym_if] = ACTIONS(5074), - [anon_sym_else] = ACTIONS(5074), - [anon_sym_when] = ACTIONS(5074), - [anon_sym_try] = ACTIONS(5074), - [anon_sym_throw] = ACTIONS(5074), - [anon_sym_return] = ACTIONS(5074), - [anon_sym_continue] = ACTIONS(5074), - [anon_sym_break] = ACTIONS(5074), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_PLUS_EQ] = ACTIONS(5076), - [anon_sym_DASH_EQ] = ACTIONS(5076), - [anon_sym_STAR_EQ] = ACTIONS(5076), - [anon_sym_SLASH_EQ] = ACTIONS(5076), - [anon_sym_PERCENT_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5074), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_BANGin] = ACTIONS(5076), - [anon_sym_is] = ACTIONS(5074), - [anon_sym_BANGis] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_as_QMARK] = ACTIONS(5076), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_BANG_BANG] = ACTIONS(5076), - [anon_sym_data] = ACTIONS(5074), - [anon_sym_inner] = ACTIONS(5074), - [anon_sym_value] = ACTIONS(5074), - [anon_sym_expect] = ACTIONS(5074), - [anon_sym_actual] = ACTIONS(5074), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5076), - [anon_sym_continue_AT] = ACTIONS(5076), - [anon_sym_break_AT] = ACTIONS(5076), - [sym_real_literal] = ACTIONS(5076), - [sym_integer_literal] = ACTIONS(5074), - [sym_hex_literal] = ACTIONS(5076), - [sym_bin_literal] = ACTIONS(5076), - [anon_sym_true] = ACTIONS(5074), - [anon_sym_false] = ACTIONS(5074), - [anon_sym_SQUOTE] = ACTIONS(5076), - [sym__backtick_identifier] = ACTIONS(5076), - [sym__automatic_semicolon] = ACTIONS(5076), - [sym_safe_nav] = ACTIONS(5076), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5076), - }, - [3197] = { - [sym__alpha_identifier] = ACTIONS(5070), - [anon_sym_AT] = ACTIONS(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5070), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_where] = ACTIONS(5070), - [anon_sym_object] = ACTIONS(5070), - [anon_sym_fun] = ACTIONS(5070), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym_get] = ACTIONS(5070), - [anon_sym_set] = ACTIONS(5070), - [anon_sym_this] = ACTIONS(5070), - [anon_sym_super] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [sym_label] = ACTIONS(5070), - [anon_sym_in] = ACTIONS(5070), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_QMARK_COLON] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(5070), - [anon_sym_if] = ACTIONS(5070), - [anon_sym_else] = ACTIONS(5070), - [anon_sym_when] = ACTIONS(5070), - [anon_sym_try] = ACTIONS(5070), - [anon_sym_throw] = ACTIONS(5070), - [anon_sym_return] = ACTIONS(5070), - [anon_sym_continue] = ACTIONS(5070), - [anon_sym_break] = ACTIONS(5070), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5070), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5070), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_BANGin] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5070), - [anon_sym_BANGis] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_as_QMARK] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_BANG] = ACTIONS(5070), - [anon_sym_BANG_BANG] = ACTIONS(5072), - [anon_sym_data] = ACTIONS(5070), - [anon_sym_inner] = ACTIONS(5070), - [anon_sym_value] = ACTIONS(5070), - [anon_sym_expect] = ACTIONS(5070), - [anon_sym_actual] = ACTIONS(5070), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5072), - [anon_sym_continue_AT] = ACTIONS(5072), - [anon_sym_break_AT] = ACTIONS(5072), - [sym_real_literal] = ACTIONS(5072), - [sym_integer_literal] = ACTIONS(5070), - [sym_hex_literal] = ACTIONS(5072), - [sym_bin_literal] = ACTIONS(5072), - [anon_sym_true] = ACTIONS(5070), - [anon_sym_false] = ACTIONS(5070), - [anon_sym_SQUOTE] = ACTIONS(5072), - [sym__backtick_identifier] = ACTIONS(5072), - [sym__automatic_semicolon] = ACTIONS(5072), - [sym_safe_nav] = ACTIONS(5072), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5072), - }, - [3198] = { - [sym_type_constraints] = STATE(3640), - [sym_enum_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6604), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - [sym_multiline_comment] = ACTIONS(3), - }, - [3199] = { - [aux_sym_nullable_type_repeat1] = STATE(3222), - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_EQ] = ACTIONS(4223), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_object] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_this] = ACTIONS(4221), - [anon_sym_super] = ACTIONS(4221), - [sym__quest] = ACTIONS(6606), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4221), - [anon_sym_if] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4221), - [anon_sym_when] = ACTIONS(4221), - [anon_sym_try] = ACTIONS(4221), - [anon_sym_throw] = ACTIONS(4221), - [anon_sym_return] = ACTIONS(4221), - [anon_sym_continue] = ACTIONS(4221), - [anon_sym_break] = ACTIONS(4221), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4221), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [3200] = { - [sym__alpha_identifier] = ACTIONS(5066), - [anon_sym_AT] = ACTIONS(5068), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5066), - [anon_sym_EQ] = ACTIONS(5066), - [anon_sym_LBRACE] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_where] = ACTIONS(5066), - [anon_sym_object] = ACTIONS(5066), - [anon_sym_fun] = ACTIONS(5066), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(5068), - [anon_sym_get] = ACTIONS(5066), - [anon_sym_set] = ACTIONS(5066), - [anon_sym_this] = ACTIONS(5066), - [anon_sym_super] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5066), - [sym_label] = ACTIONS(5066), - [anon_sym_in] = ACTIONS(5066), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_QMARK_COLON] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_null] = ACTIONS(5066), - [anon_sym_if] = ACTIONS(5066), - [anon_sym_else] = ACTIONS(5066), - [anon_sym_when] = ACTIONS(5066), - [anon_sym_try] = ACTIONS(5066), - [anon_sym_throw] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5066), - [anon_sym_continue] = ACTIONS(5066), - [anon_sym_break] = ACTIONS(5066), - [anon_sym_COLON_COLON] = ACTIONS(5068), - [anon_sym_PLUS_EQ] = ACTIONS(5068), - [anon_sym_DASH_EQ] = ACTIONS(5068), - [anon_sym_STAR_EQ] = ACTIONS(5068), - [anon_sym_SLASH_EQ] = ACTIONS(5068), - [anon_sym_PERCENT_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5066), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5066), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_BANGin] = ACTIONS(5068), - [anon_sym_is] = ACTIONS(5066), - [anon_sym_BANGis] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5066), - [anon_sym_as_QMARK] = ACTIONS(5068), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_BANG_BANG] = ACTIONS(5068), - [anon_sym_data] = ACTIONS(5066), - [anon_sym_inner] = ACTIONS(5066), - [anon_sym_value] = ACTIONS(5066), - [anon_sym_expect] = ACTIONS(5066), - [anon_sym_actual] = ACTIONS(5066), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5068), - [anon_sym_continue_AT] = ACTIONS(5068), - [anon_sym_break_AT] = ACTIONS(5068), - [sym_real_literal] = ACTIONS(5068), - [sym_integer_literal] = ACTIONS(5066), - [sym_hex_literal] = ACTIONS(5068), - [sym_bin_literal] = ACTIONS(5068), - [anon_sym_true] = ACTIONS(5066), - [anon_sym_false] = ACTIONS(5066), - [anon_sym_SQUOTE] = ACTIONS(5068), - [sym__backtick_identifier] = ACTIONS(5068), - [sym__automatic_semicolon] = ACTIONS(5068), - [sym_safe_nav] = ACTIONS(5068), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5068), - }, - [3201] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [3202] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_object] = ACTIONS(5037), - [anon_sym_fun] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_this] = ACTIONS(5037), - [anon_sym_super] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [sym_label] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(5037), - [anon_sym_if] = ACTIONS(5037), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_when] = ACTIONS(5037), - [anon_sym_try] = ACTIONS(5037), - [anon_sym_throw] = ACTIONS(5037), - [anon_sym_return] = ACTIONS(5037), - [anon_sym_continue] = ACTIONS(5037), - [anon_sym_break] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_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), - [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), - }, - [3203] = { - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_object] = ACTIONS(4508), - [anon_sym_fun] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_this] = ACTIONS(4508), - [anon_sym_super] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4508), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4508), - [anon_sym_if] = ACTIONS(4508), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4508), - [anon_sym_throw] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4508), - [anon_sym_continue] = ACTIONS(4508), - [anon_sym_break] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG] = ACTIONS(4508), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4510), - [anon_sym_continue_AT] = ACTIONS(4510), - [anon_sym_break_AT] = ACTIONS(4510), - [sym_real_literal] = ACTIONS(4510), - [sym_integer_literal] = ACTIONS(4508), - [sym_hex_literal] = ACTIONS(4510), - [sym_bin_literal] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4508), - [anon_sym_false] = ACTIONS(4508), - [anon_sym_SQUOTE] = ACTIONS(4510), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4510), - }, - [3204] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(6608), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [3205] = { - [sym_class_body] = STATE(3880), - [sym_type_constraints] = STATE(3695), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - [sym_multiline_comment] = ACTIONS(3), - }, - [3206] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [3207] = { - [sym__alpha_identifier] = ACTIONS(4919), - [anon_sym_AT] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_as] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4919), - [anon_sym_GT] = ACTIONS(4919), - [anon_sym_where] = ACTIONS(4919), - [anon_sym_object] = ACTIONS(4919), - [anon_sym_fun] = ACTIONS(4919), - [anon_sym_DOT] = ACTIONS(4919), - [anon_sym_SEMI] = ACTIONS(4921), - [anon_sym_get] = ACTIONS(4919), - [anon_sym_set] = ACTIONS(4919), - [anon_sym_this] = ACTIONS(4919), - [anon_sym_super] = ACTIONS(4919), - [anon_sym_STAR] = ACTIONS(4919), - [sym_label] = ACTIONS(4919), - [anon_sym_in] = ACTIONS(4919), - [anon_sym_DOT_DOT] = ACTIONS(4921), - [anon_sym_QMARK_COLON] = ACTIONS(4921), - [anon_sym_AMP_AMP] = ACTIONS(4921), - [anon_sym_PIPE_PIPE] = ACTIONS(4921), - [anon_sym_null] = ACTIONS(4919), - [anon_sym_if] = ACTIONS(4919), - [anon_sym_else] = ACTIONS(4919), - [anon_sym_when] = ACTIONS(4919), - [anon_sym_try] = ACTIONS(4919), - [anon_sym_throw] = ACTIONS(4919), - [anon_sym_return] = ACTIONS(4919), - [anon_sym_continue] = ACTIONS(4919), - [anon_sym_break] = ACTIONS(4919), - [anon_sym_COLON_COLON] = ACTIONS(4921), - [anon_sym_PLUS_EQ] = ACTIONS(4921), - [anon_sym_DASH_EQ] = ACTIONS(4921), - [anon_sym_STAR_EQ] = ACTIONS(4921), - [anon_sym_SLASH_EQ] = ACTIONS(4921), - [anon_sym_PERCENT_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4921), - [anon_sym_LT_EQ] = ACTIONS(4921), - [anon_sym_GT_EQ] = ACTIONS(4921), - [anon_sym_BANGin] = ACTIONS(4921), - [anon_sym_is] = ACTIONS(4919), - [anon_sym_BANGis] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4919), - [anon_sym_DASH] = ACTIONS(4919), - [anon_sym_SLASH] = ACTIONS(4919), - [anon_sym_PERCENT] = ACTIONS(4919), - [anon_sym_as_QMARK] = ACTIONS(4921), - [anon_sym_PLUS_PLUS] = ACTIONS(4921), - [anon_sym_DASH_DASH] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4919), - [anon_sym_BANG_BANG] = ACTIONS(4921), - [anon_sym_data] = ACTIONS(4919), - [anon_sym_inner] = ACTIONS(4919), - [anon_sym_value] = ACTIONS(4919), - [anon_sym_expect] = ACTIONS(4919), - [anon_sym_actual] = ACTIONS(4919), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4921), - [anon_sym_continue_AT] = ACTIONS(4921), - [anon_sym_break_AT] = ACTIONS(4921), - [sym_real_literal] = ACTIONS(4921), - [sym_integer_literal] = ACTIONS(4919), - [sym_hex_literal] = ACTIONS(4921), - [sym_bin_literal] = ACTIONS(4921), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [anon_sym_SQUOTE] = ACTIONS(4921), - [sym__backtick_identifier] = ACTIONS(4921), - [sym__automatic_semicolon] = ACTIONS(4921), - [sym_safe_nav] = ACTIONS(4921), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4921), - }, - [3208] = { - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [3209] = { - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [3210] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(1770), - [anon_sym_sealed] = ACTIONS(1770), - [anon_sym_annotation] = ACTIONS(1770), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_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), - }, - [3211] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_this] = ACTIONS(4442), - [anon_sym_super] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [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), - }, - [3212] = { - [sym__alpha_identifier] = ACTIONS(4889), - [anon_sym_AT] = ACTIONS(4891), - [anon_sym_LBRACK] = ACTIONS(4891), - [anon_sym_as] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4891), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [anon_sym_COMMA] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4889), - [anon_sym_GT] = ACTIONS(4889), - [anon_sym_where] = ACTIONS(4889), - [anon_sym_object] = ACTIONS(4889), - [anon_sym_fun] = ACTIONS(4889), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_get] = ACTIONS(4889), - [anon_sym_set] = ACTIONS(4889), - [anon_sym_this] = ACTIONS(4889), - [anon_sym_super] = ACTIONS(4889), - [anon_sym_STAR] = ACTIONS(4889), - [sym_label] = ACTIONS(4889), - [anon_sym_in] = ACTIONS(4889), - [anon_sym_DOT_DOT] = ACTIONS(4891), - [anon_sym_QMARK_COLON] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_null] = ACTIONS(4889), - [anon_sym_if] = ACTIONS(4889), - [anon_sym_else] = ACTIONS(4889), - [anon_sym_when] = ACTIONS(4889), - [anon_sym_try] = ACTIONS(4889), - [anon_sym_throw] = ACTIONS(4889), - [anon_sym_return] = ACTIONS(4889), - [anon_sym_continue] = ACTIONS(4889), - [anon_sym_break] = ACTIONS(4889), - [anon_sym_COLON_COLON] = ACTIONS(4891), - [anon_sym_PLUS_EQ] = ACTIONS(4891), - [anon_sym_DASH_EQ] = ACTIONS(4891), - [anon_sym_STAR_EQ] = ACTIONS(4891), - [anon_sym_SLASH_EQ] = ACTIONS(4891), - [anon_sym_PERCENT_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4891), - [anon_sym_LT_EQ] = ACTIONS(4891), - [anon_sym_GT_EQ] = ACTIONS(4891), - [anon_sym_BANGin] = ACTIONS(4891), - [anon_sym_is] = ACTIONS(4889), - [anon_sym_BANGis] = ACTIONS(4891), - [anon_sym_PLUS] = ACTIONS(4889), - [anon_sym_DASH] = ACTIONS(4889), - [anon_sym_SLASH] = ACTIONS(4889), - [anon_sym_PERCENT] = ACTIONS(4889), - [anon_sym_as_QMARK] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4891), - [anon_sym_DASH_DASH] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4889), - [anon_sym_BANG_BANG] = ACTIONS(4891), - [anon_sym_data] = ACTIONS(4889), - [anon_sym_inner] = ACTIONS(4889), - [anon_sym_value] = ACTIONS(4889), - [anon_sym_expect] = ACTIONS(4889), - [anon_sym_actual] = ACTIONS(4889), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4891), - [anon_sym_continue_AT] = ACTIONS(4891), - [anon_sym_break_AT] = ACTIONS(4891), - [sym_real_literal] = ACTIONS(4891), - [sym_integer_literal] = ACTIONS(4889), - [sym_hex_literal] = ACTIONS(4891), - [sym_bin_literal] = ACTIONS(4891), - [anon_sym_true] = ACTIONS(4889), - [anon_sym_false] = ACTIONS(4889), - [anon_sym_SQUOTE] = ACTIONS(4891), - [sym__backtick_identifier] = ACTIONS(4891), - [sym__automatic_semicolon] = ACTIONS(4891), - [sym_safe_nav] = ACTIONS(4891), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4891), - }, - [3213] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), - }, - [3214] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [3215] = { - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_RBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(4582), - [anon_sym_RPAREN] = ACTIONS(4582), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [anon_sym_DASH_GT] = ACTIONS(4582), - [sym_label] = ACTIONS(4582), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_while] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - }, - [3216] = { - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [3217] = { - [sym_type_constraints] = STATE(3648), - [sym_enum_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - }, - [3218] = { - [sym_type_constraints] = STATE(3579), - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - }, - [3219] = { - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1780), - [anon_sym_fun] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1780), - [anon_sym_set] = ACTIONS(1780), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_super] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_when] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_data] = ACTIONS(1780), - [anon_sym_inner] = ACTIONS(1780), - [anon_sym_value] = ACTIONS(1780), - [anon_sym_expect] = ACTIONS(1780), - [anon_sym_actual] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1782), - [anon_sym_continue_AT] = ACTIONS(1782), - [anon_sym_break_AT] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1782), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1782), - }, - [3220] = { - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = 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), - [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), - }, - [3221] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(6624), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [3222] = { - [aux_sym_nullable_type_repeat1] = STATE(3186), - [sym__alpha_identifier] = ACTIONS(4278), - [anon_sym_AT] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(4280), - [anon_sym_COMMA] = ACTIONS(4280), - [anon_sym_by] = ACTIONS(4278), - [anon_sym_where] = ACTIONS(4278), - [anon_sym_object] = ACTIONS(4278), - [anon_sym_fun] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym_get] = ACTIONS(4278), - [anon_sym_set] = ACTIONS(4278), - [anon_sym_this] = ACTIONS(4278), - [anon_sym_super] = ACTIONS(4278), - [sym__quest] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(4280), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4278), - [anon_sym_null] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4278), - [anon_sym_when] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_BANGin] = ACTIONS(4280), - [anon_sym_is] = ACTIONS(4278), - [anon_sym_BANGis] = ACTIONS(4280), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4278), - [anon_sym_sealed] = ACTIONS(4278), - [anon_sym_annotation] = ACTIONS(4278), - [anon_sym_data] = ACTIONS(4278), - [anon_sym_inner] = ACTIONS(4278), - [anon_sym_value] = ACTIONS(4278), - [anon_sym_override] = ACTIONS(4278), - [anon_sym_lateinit] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_internal] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_tailrec] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_infix] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym_external] = ACTIONS(4278), - [sym_property_modifier] = ACTIONS(4278), - [anon_sym_abstract] = ACTIONS(4278), - [anon_sym_final] = ACTIONS(4278), - [anon_sym_open] = ACTIONS(4278), - [anon_sym_vararg] = ACTIONS(4278), - [anon_sym_noinline] = ACTIONS(4278), - [anon_sym_crossinline] = ACTIONS(4278), - [anon_sym_expect] = ACTIONS(4278), - [anon_sym_actual] = ACTIONS(4278), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4280), - [anon_sym_continue_AT] = ACTIONS(4280), - [anon_sym_break_AT] = ACTIONS(4280), - [sym_real_literal] = ACTIONS(4280), - [sym_integer_literal] = ACTIONS(4278), - [sym_hex_literal] = ACTIONS(4280), - [sym_bin_literal] = ACTIONS(4280), - [anon_sym_true] = ACTIONS(4278), - [anon_sym_false] = ACTIONS(4278), - [anon_sym_SQUOTE] = ACTIONS(4280), - [sym__backtick_identifier] = ACTIONS(4280), - [sym__automatic_semicolon] = ACTIONS(4280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4280), - }, - [3223] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [3224] = { - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [3225] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5344), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_DASH_GT] = ACTIONS(4295), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_while] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - }, - [3226] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [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_DOT] = 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), - [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), - }, - [3227] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_RBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5338), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_RPAREN] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4321), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - }, - [3228] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [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_DOT] = 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), - [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), - }, - [3229] = { - [sym__alpha_identifier] = ACTIONS(5104), - [anon_sym_AT] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_RBRACK] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5104), - [anon_sym_EQ] = ACTIONS(5104), - [anon_sym_LBRACE] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5104), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_get] = ACTIONS(5104), - [anon_sym_set] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5104), - [anon_sym_DASH_GT] = ACTIONS(5106), - [sym_label] = ACTIONS(5106), - [anon_sym_in] = ACTIONS(5104), - [anon_sym_while] = ACTIONS(5104), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_QMARK_COLON] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_else] = ACTIONS(5104), - [anon_sym_COLON_COLON] = ACTIONS(5106), - [anon_sym_PLUS_EQ] = ACTIONS(5106), - [anon_sym_DASH_EQ] = ACTIONS(5106), - [anon_sym_STAR_EQ] = ACTIONS(5106), - [anon_sym_SLASH_EQ] = ACTIONS(5106), - [anon_sym_PERCENT_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_BANGin] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5104), - [anon_sym_BANGis] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5104), - [anon_sym_as_QMARK] = ACTIONS(5106), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_BANG_BANG] = ACTIONS(5106), - [anon_sym_suspend] = ACTIONS(5104), - [anon_sym_sealed] = ACTIONS(5104), - [anon_sym_annotation] = ACTIONS(5104), - [anon_sym_data] = ACTIONS(5104), - [anon_sym_inner] = ACTIONS(5104), - [anon_sym_value] = ACTIONS(5104), - [anon_sym_override] = ACTIONS(5104), - [anon_sym_lateinit] = ACTIONS(5104), - [anon_sym_public] = ACTIONS(5104), - [anon_sym_private] = ACTIONS(5104), - [anon_sym_internal] = ACTIONS(5104), - [anon_sym_protected] = ACTIONS(5104), - [anon_sym_tailrec] = ACTIONS(5104), - [anon_sym_operator] = ACTIONS(5104), - [anon_sym_infix] = ACTIONS(5104), - [anon_sym_inline] = ACTIONS(5104), - [anon_sym_external] = ACTIONS(5104), - [sym_property_modifier] = ACTIONS(5104), - [anon_sym_abstract] = ACTIONS(5104), - [anon_sym_final] = ACTIONS(5104), - [anon_sym_open] = ACTIONS(5104), - [anon_sym_vararg] = ACTIONS(5104), - [anon_sym_noinline] = ACTIONS(5104), - [anon_sym_crossinline] = ACTIONS(5104), - [anon_sym_expect] = ACTIONS(5104), - [anon_sym_actual] = ACTIONS(5104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5106), - [sym_safe_nav] = ACTIONS(5106), - [sym_multiline_comment] = ACTIONS(3), - }, - [3230] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_where] = ACTIONS(4967), - [anon_sym_object] = ACTIONS(4967), - [anon_sym_fun] = ACTIONS(4967), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4969), - [anon_sym_get] = ACTIONS(4967), - [anon_sym_set] = ACTIONS(4967), - [anon_sym_this] = ACTIONS(4967), - [anon_sym_super] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [sym_label] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_QMARK_COLON] = ACTIONS(4969), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_null] = ACTIONS(4967), - [anon_sym_if] = ACTIONS(4967), - [anon_sym_else] = ACTIONS(4967), - [anon_sym_when] = ACTIONS(4967), - [anon_sym_try] = ACTIONS(4967), - [anon_sym_throw] = ACTIONS(4967), - [anon_sym_return] = ACTIONS(4967), - [anon_sym_continue] = ACTIONS(4967), - [anon_sym_break] = ACTIONS(4967), - [anon_sym_COLON_COLON] = ACTIONS(4969), - [anon_sym_PLUS_EQ] = ACTIONS(4969), - [anon_sym_DASH_EQ] = ACTIONS(4969), - [anon_sym_STAR_EQ] = ACTIONS(4969), - [anon_sym_SLASH_EQ] = ACTIONS(4969), - [anon_sym_PERCENT_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_BANGin] = ACTIONS(4969), - [anon_sym_is] = ACTIONS(4967), - [anon_sym_BANGis] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_as_QMARK] = ACTIONS(4969), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_BANG_BANG] = ACTIONS(4969), - [anon_sym_data] = ACTIONS(4967), - [anon_sym_inner] = ACTIONS(4967), - [anon_sym_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), - [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), - }, - [3231] = { - [sym__alpha_identifier] = ACTIONS(4795), - [anon_sym_AT] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4797), - [anon_sym_RBRACK] = ACTIONS(4797), - [anon_sym_as] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_where] = ACTIONS(4795), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_get] = ACTIONS(4795), - [anon_sym_set] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4795), - [anon_sym_DASH_GT] = ACTIONS(4797), - [sym_label] = ACTIONS(4797), - [anon_sym_in] = ACTIONS(4795), - [anon_sym_while] = ACTIONS(4795), - [anon_sym_DOT_DOT] = ACTIONS(4797), - [anon_sym_QMARK_COLON] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_else] = ACTIONS(4795), - [anon_sym_COLON_COLON] = ACTIONS(4797), - [anon_sym_PLUS_EQ] = ACTIONS(4797), - [anon_sym_DASH_EQ] = ACTIONS(4797), - [anon_sym_STAR_EQ] = ACTIONS(4797), - [anon_sym_SLASH_EQ] = ACTIONS(4797), - [anon_sym_PERCENT_EQ] = ACTIONS(4797), - [anon_sym_BANG_EQ] = ACTIONS(4795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4797), - [anon_sym_EQ_EQ] = ACTIONS(4795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4797), - [anon_sym_LT_EQ] = ACTIONS(4797), - [anon_sym_GT_EQ] = ACTIONS(4797), - [anon_sym_BANGin] = ACTIONS(4797), - [anon_sym_is] = ACTIONS(4795), - [anon_sym_BANGis] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4795), - [anon_sym_as_QMARK] = ACTIONS(4797), - [anon_sym_PLUS_PLUS] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4797), - [anon_sym_BANG_BANG] = ACTIONS(4797), - [anon_sym_suspend] = ACTIONS(4795), - [anon_sym_sealed] = ACTIONS(4795), - [anon_sym_annotation] = ACTIONS(4795), - [anon_sym_data] = ACTIONS(4795), - [anon_sym_inner] = ACTIONS(4795), - [anon_sym_value] = ACTIONS(4795), - [anon_sym_override] = ACTIONS(4795), - [anon_sym_lateinit] = ACTIONS(4795), - [anon_sym_public] = ACTIONS(4795), - [anon_sym_private] = ACTIONS(4795), - [anon_sym_internal] = ACTIONS(4795), - [anon_sym_protected] = ACTIONS(4795), - [anon_sym_tailrec] = ACTIONS(4795), - [anon_sym_operator] = ACTIONS(4795), - [anon_sym_infix] = ACTIONS(4795), - [anon_sym_inline] = ACTIONS(4795), - [anon_sym_external] = ACTIONS(4795), - [sym_property_modifier] = ACTIONS(4795), - [anon_sym_abstract] = ACTIONS(4795), - [anon_sym_final] = ACTIONS(4795), - [anon_sym_open] = ACTIONS(4795), - [anon_sym_vararg] = ACTIONS(4795), - [anon_sym_noinline] = ACTIONS(4795), - [anon_sym_crossinline] = ACTIONS(4795), - [anon_sym_expect] = ACTIONS(4795), - [anon_sym_actual] = ACTIONS(4795), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4797), - [sym_safe_nav] = ACTIONS(4797), - [sym_multiline_comment] = ACTIONS(3), - }, - [3232] = { - [sym_type_constraints] = STATE(3738), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - }, - [3233] = { - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), - }, [3234] = { - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_object] = ACTIONS(5213), + [anon_sym_fun] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_this] = ACTIONS(5213), + [anon_sym_super] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [sym_label] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_null] = ACTIONS(5213), + [anon_sym_if] = ACTIONS(5213), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_when] = ACTIONS(5213), + [anon_sym_try] = ACTIONS(5213), + [anon_sym_throw] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5213), + [anon_sym_continue] = ACTIONS(5213), + [anon_sym_break] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5215), + [anon_sym_continue_AT] = ACTIONS(5215), + [anon_sym_break_AT] = ACTIONS(5215), + [anon_sym_this_AT] = ACTIONS(5215), + [anon_sym_super_AT] = ACTIONS(5215), + [sym_real_literal] = ACTIONS(5215), + [sym_integer_literal] = ACTIONS(5213), + [sym_hex_literal] = ACTIONS(5215), + [sym_bin_literal] = ACTIONS(5215), + [anon_sym_true] = ACTIONS(5213), + [anon_sym_false] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5215), + [sym__backtick_identifier] = ACTIONS(5215), + [sym__automatic_semicolon] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5215), }, [3235] = { - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_object] = ACTIONS(5209), + [anon_sym_fun] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_this] = ACTIONS(5209), + [anon_sym_super] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [sym_label] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_null] = ACTIONS(5209), + [anon_sym_if] = ACTIONS(5209), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_when] = ACTIONS(5209), + [anon_sym_try] = ACTIONS(5209), + [anon_sym_throw] = ACTIONS(5209), + [anon_sym_return] = ACTIONS(5209), + [anon_sym_continue] = ACTIONS(5209), + [anon_sym_break] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5211), + [anon_sym_continue_AT] = ACTIONS(5211), + [anon_sym_break_AT] = ACTIONS(5211), + [anon_sym_this_AT] = ACTIONS(5211), + [anon_sym_super_AT] = ACTIONS(5211), + [sym_real_literal] = ACTIONS(5211), + [sym_integer_literal] = ACTIONS(5209), + [sym_hex_literal] = ACTIONS(5211), + [sym_bin_literal] = ACTIONS(5211), + [anon_sym_true] = ACTIONS(5209), + [anon_sym_false] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5211), + [sym__backtick_identifier] = ACTIONS(5211), + [sym__automatic_semicolon] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5211), }, [3236] = { - [sym__alpha_identifier] = ACTIONS(4861), - [anon_sym_AT] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_as] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_object] = ACTIONS(4861), - [anon_sym_fun] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_get] = ACTIONS(4861), - [anon_sym_set] = ACTIONS(4861), - [anon_sym_this] = ACTIONS(4861), - [anon_sym_super] = ACTIONS(4861), - [anon_sym_STAR] = ACTIONS(4861), - [sym_label] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4863), - [anon_sym_QMARK_COLON] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_null] = ACTIONS(4861), - [anon_sym_if] = ACTIONS(4861), - [anon_sym_else] = ACTIONS(4861), - [anon_sym_when] = ACTIONS(4861), - [anon_sym_try] = ACTIONS(4861), - [anon_sym_throw] = ACTIONS(4861), - [anon_sym_return] = ACTIONS(4861), - [anon_sym_continue] = ACTIONS(4861), - [anon_sym_break] = ACTIONS(4861), - [anon_sym_COLON_COLON] = ACTIONS(4863), - [anon_sym_PLUS_EQ] = ACTIONS(4863), - [anon_sym_DASH_EQ] = ACTIONS(4863), - [anon_sym_STAR_EQ] = ACTIONS(4863), - [anon_sym_SLASH_EQ] = ACTIONS(4863), - [anon_sym_PERCENT_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4863), - [anon_sym_LT_EQ] = ACTIONS(4863), - [anon_sym_GT_EQ] = ACTIONS(4863), - [anon_sym_BANGin] = ACTIONS(4863), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_BANGis] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4861), - [anon_sym_DASH] = ACTIONS(4861), - [anon_sym_SLASH] = ACTIONS(4861), - [anon_sym_PERCENT] = ACTIONS(4861), - [anon_sym_as_QMARK] = ACTIONS(4863), - [anon_sym_PLUS_PLUS] = ACTIONS(4863), - [anon_sym_DASH_DASH] = ACTIONS(4863), - [anon_sym_BANG] = ACTIONS(4861), - [anon_sym_BANG_BANG] = ACTIONS(4863), - [anon_sym_data] = ACTIONS(4861), - [anon_sym_inner] = ACTIONS(4861), - [anon_sym_value] = ACTIONS(4861), - [anon_sym_expect] = ACTIONS(4861), - [anon_sym_actual] = ACTIONS(4861), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4863), - [anon_sym_continue_AT] = ACTIONS(4863), - [anon_sym_break_AT] = ACTIONS(4863), - [sym_real_literal] = ACTIONS(4863), - [sym_integer_literal] = ACTIONS(4861), - [sym_hex_literal] = ACTIONS(4863), - [sym_bin_literal] = ACTIONS(4863), - [anon_sym_true] = ACTIONS(4861), - [anon_sym_false] = ACTIONS(4861), - [anon_sym_SQUOTE] = ACTIONS(4863), - [sym__backtick_identifier] = ACTIONS(4863), - [sym__automatic_semicolon] = ACTIONS(4863), - [sym_safe_nav] = ACTIONS(4863), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4863), + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [anon_sym_this_AT] = ACTIONS(5079), + [anon_sym_super_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), }, [3237] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_DASH_GT] = ACTIONS(5035), - [sym_label] = ACTIONS(5035), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_while] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_suspend] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_annotation] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_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), + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_object] = ACTIONS(5187), + [anon_sym_fun] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_this] = ACTIONS(5187), + [anon_sym_super] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [sym_label] = ACTIONS(5187), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_null] = ACTIONS(5187), + [anon_sym_if] = ACTIONS(5187), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_try] = ACTIONS(5187), + [anon_sym_throw] = ACTIONS(5187), + [anon_sym_return] = ACTIONS(5187), + [anon_sym_continue] = ACTIONS(5187), + [anon_sym_break] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5187), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5189), + [anon_sym_continue_AT] = ACTIONS(5189), + [anon_sym_break_AT] = ACTIONS(5189), + [anon_sym_this_AT] = ACTIONS(5189), + [anon_sym_super_AT] = ACTIONS(5189), + [sym_real_literal] = ACTIONS(5189), + [sym_integer_literal] = ACTIONS(5187), + [sym_hex_literal] = ACTIONS(5189), + [sym_bin_literal] = ACTIONS(5189), + [anon_sym_true] = ACTIONS(5187), + [anon_sym_false] = ACTIONS(5187), + [anon_sym_SQUOTE] = ACTIONS(5189), + [sym__backtick_identifier] = ACTIONS(5189), + [sym__automatic_semicolon] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5189), }, [3238] = { - [sym__alpha_identifier] = ACTIONS(4885), - [anon_sym_AT] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4887), - [anon_sym_as] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4887), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4887), - [anon_sym_COMMA] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_where] = ACTIONS(4885), - [anon_sym_object] = ACTIONS(4885), - [anon_sym_fun] = ACTIONS(4885), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4887), - [anon_sym_get] = ACTIONS(4885), - [anon_sym_set] = ACTIONS(4885), - [anon_sym_this] = ACTIONS(4885), - [anon_sym_super] = ACTIONS(4885), - [anon_sym_STAR] = ACTIONS(4885), - [sym_label] = ACTIONS(4885), - [anon_sym_in] = ACTIONS(4885), - [anon_sym_DOT_DOT] = ACTIONS(4887), - [anon_sym_QMARK_COLON] = ACTIONS(4887), - [anon_sym_AMP_AMP] = ACTIONS(4887), - [anon_sym_PIPE_PIPE] = ACTIONS(4887), - [anon_sym_null] = ACTIONS(4885), - [anon_sym_if] = ACTIONS(4885), - [anon_sym_else] = ACTIONS(4885), - [anon_sym_when] = ACTIONS(4885), - [anon_sym_try] = ACTIONS(4885), - [anon_sym_throw] = ACTIONS(4885), - [anon_sym_return] = ACTIONS(4885), - [anon_sym_continue] = ACTIONS(4885), - [anon_sym_break] = ACTIONS(4885), - [anon_sym_COLON_COLON] = ACTIONS(4887), - [anon_sym_PLUS_EQ] = ACTIONS(4887), - [anon_sym_DASH_EQ] = ACTIONS(4887), - [anon_sym_STAR_EQ] = ACTIONS(4887), - [anon_sym_SLASH_EQ] = ACTIONS(4887), - [anon_sym_PERCENT_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), - [anon_sym_LT_EQ] = ACTIONS(4887), - [anon_sym_GT_EQ] = ACTIONS(4887), - [anon_sym_BANGin] = ACTIONS(4887), - [anon_sym_is] = ACTIONS(4885), - [anon_sym_BANGis] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(4885), - [anon_sym_DASH] = ACTIONS(4885), - [anon_sym_SLASH] = ACTIONS(4885), - [anon_sym_PERCENT] = ACTIONS(4885), - [anon_sym_as_QMARK] = ACTIONS(4887), - [anon_sym_PLUS_PLUS] = ACTIONS(4887), - [anon_sym_DASH_DASH] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4885), - [anon_sym_BANG_BANG] = ACTIONS(4887), - [anon_sym_data] = ACTIONS(4885), - [anon_sym_inner] = ACTIONS(4885), - [anon_sym_value] = ACTIONS(4885), - [anon_sym_expect] = ACTIONS(4885), - [anon_sym_actual] = ACTIONS(4885), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4887), - [anon_sym_continue_AT] = ACTIONS(4887), - [anon_sym_break_AT] = ACTIONS(4887), - [sym_real_literal] = ACTIONS(4887), - [sym_integer_literal] = ACTIONS(4885), - [sym_hex_literal] = ACTIONS(4887), - [sym_bin_literal] = ACTIONS(4887), - [anon_sym_true] = ACTIONS(4885), - [anon_sym_false] = ACTIONS(4885), - [anon_sym_SQUOTE] = ACTIONS(4887), - [sym__backtick_identifier] = ACTIONS(4887), - [sym__automatic_semicolon] = ACTIONS(4887), - [sym_safe_nav] = ACTIONS(4887), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4887), + [sym__alpha_identifier] = ACTIONS(5205), + [anon_sym_AT] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5205), + [anon_sym_object] = ACTIONS(5205), + [anon_sym_fun] = ACTIONS(5205), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_get] = ACTIONS(5205), + [anon_sym_set] = ACTIONS(5205), + [anon_sym_this] = ACTIONS(5205), + [anon_sym_super] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [sym_label] = ACTIONS(5205), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_null] = ACTIONS(5205), + [anon_sym_if] = ACTIONS(5205), + [anon_sym_else] = ACTIONS(5205), + [anon_sym_when] = ACTIONS(5205), + [anon_sym_try] = ACTIONS(5205), + [anon_sym_throw] = ACTIONS(5205), + [anon_sym_return] = ACTIONS(5205), + [anon_sym_continue] = ACTIONS(5205), + [anon_sym_break] = ACTIONS(5205), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [anon_sym_PLUS_EQ] = ACTIONS(5207), + [anon_sym_DASH_EQ] = ACTIONS(5207), + [anon_sym_STAR_EQ] = ACTIONS(5207), + [anon_sym_SLASH_EQ] = ACTIONS(5207), + [anon_sym_PERCENT_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_BANGin] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5205), + [anon_sym_BANGis] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5205), + [anon_sym_as_QMARK] = ACTIONS(5207), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_BANG_BANG] = ACTIONS(5207), + [anon_sym_data] = ACTIONS(5205), + [anon_sym_inner] = ACTIONS(5205), + [anon_sym_value] = ACTIONS(5205), + [anon_sym_expect] = ACTIONS(5205), + [anon_sym_actual] = ACTIONS(5205), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5207), + [anon_sym_continue_AT] = ACTIONS(5207), + [anon_sym_break_AT] = ACTIONS(5207), + [anon_sym_this_AT] = ACTIONS(5207), + [anon_sym_super_AT] = ACTIONS(5207), + [sym_real_literal] = ACTIONS(5207), + [sym_integer_literal] = ACTIONS(5205), + [sym_hex_literal] = ACTIONS(5207), + [sym_bin_literal] = ACTIONS(5207), + [anon_sym_true] = ACTIONS(5205), + [anon_sym_false] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5207), + [sym__backtick_identifier] = ACTIONS(5207), + [sym__automatic_semicolon] = ACTIONS(5207), + [sym_safe_nav] = ACTIONS(5207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5207), }, [3239] = { - [sym__alpha_identifier] = ACTIONS(4881), - [anon_sym_AT] = ACTIONS(4883), - [anon_sym_LBRACK] = ACTIONS(4883), - [anon_sym_as] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4883), - [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4883), - [anon_sym_COMMA] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4881), - [anon_sym_object] = ACTIONS(4881), - [anon_sym_fun] = ACTIONS(4881), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4883), - [anon_sym_get] = ACTIONS(4881), - [anon_sym_set] = ACTIONS(4881), - [anon_sym_this] = ACTIONS(4881), - [anon_sym_super] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4881), - [sym_label] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4881), - [anon_sym_DOT_DOT] = ACTIONS(4883), - [anon_sym_QMARK_COLON] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_null] = ACTIONS(4881), - [anon_sym_if] = ACTIONS(4881), - [anon_sym_else] = ACTIONS(4881), - [anon_sym_when] = ACTIONS(4881), - [anon_sym_try] = ACTIONS(4881), - [anon_sym_throw] = ACTIONS(4881), - [anon_sym_return] = ACTIONS(4881), - [anon_sym_continue] = ACTIONS(4881), - [anon_sym_break] = ACTIONS(4881), - [anon_sym_COLON_COLON] = ACTIONS(4883), - [anon_sym_PLUS_EQ] = ACTIONS(4883), - [anon_sym_DASH_EQ] = ACTIONS(4883), - [anon_sym_STAR_EQ] = ACTIONS(4883), - [anon_sym_SLASH_EQ] = ACTIONS(4883), - [anon_sym_PERCENT_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4883), - [anon_sym_LT_EQ] = ACTIONS(4883), - [anon_sym_GT_EQ] = ACTIONS(4883), - [anon_sym_BANGin] = ACTIONS(4883), - [anon_sym_is] = ACTIONS(4881), - [anon_sym_BANGis] = ACTIONS(4883), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4881), - [anon_sym_as_QMARK] = ACTIONS(4883), - [anon_sym_PLUS_PLUS] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4883), - [anon_sym_BANG] = ACTIONS(4881), - [anon_sym_BANG_BANG] = ACTIONS(4883), - [anon_sym_data] = ACTIONS(4881), - [anon_sym_inner] = ACTIONS(4881), - [anon_sym_value] = ACTIONS(4881), - [anon_sym_expect] = ACTIONS(4881), - [anon_sym_actual] = ACTIONS(4881), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4883), - [anon_sym_continue_AT] = ACTIONS(4883), - [anon_sym_break_AT] = ACTIONS(4883), - [sym_real_literal] = ACTIONS(4883), - [sym_integer_literal] = ACTIONS(4881), - [sym_hex_literal] = ACTIONS(4883), - [sym_bin_literal] = ACTIONS(4883), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [anon_sym_SQUOTE] = ACTIONS(4883), - [sym__backtick_identifier] = ACTIONS(4883), - [sym__automatic_semicolon] = ACTIONS(4883), - [sym_safe_nav] = ACTIONS(4883), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4883), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [3240] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_RBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_RPAREN] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [anon_sym_DASH_GT] = ACTIONS(4396), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_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), + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_object] = ACTIONS(5195), + [anon_sym_fun] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_this] = ACTIONS(5195), + [anon_sym_super] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [sym_label] = ACTIONS(5195), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_null] = ACTIONS(5195), + [anon_sym_if] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_when] = ACTIONS(5195), + [anon_sym_try] = ACTIONS(5195), + [anon_sym_throw] = ACTIONS(5195), + [anon_sym_return] = ACTIONS(5195), + [anon_sym_continue] = ACTIONS(5195), + [anon_sym_break] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5195), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5197), + [anon_sym_continue_AT] = ACTIONS(5197), + [anon_sym_break_AT] = ACTIONS(5197), + [anon_sym_this_AT] = ACTIONS(5197), + [anon_sym_super_AT] = ACTIONS(5197), + [sym_real_literal] = ACTIONS(5197), + [sym_integer_literal] = ACTIONS(5195), + [sym_hex_literal] = ACTIONS(5197), + [sym_bin_literal] = ACTIONS(5197), + [anon_sym_true] = ACTIONS(5195), + [anon_sym_false] = ACTIONS(5195), + [anon_sym_SQUOTE] = ACTIONS(5197), + [sym__backtick_identifier] = ACTIONS(5197), + [sym__automatic_semicolon] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5197), }, [3241] = { - [sym_class_body] = STATE(3176), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_object] = ACTIONS(4644), + [anon_sym_fun] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_this] = ACTIONS(4644), + [anon_sym_super] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_when] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4646), + [anon_sym_continue_AT] = ACTIONS(4646), + [anon_sym_break_AT] = ACTIONS(4646), + [anon_sym_this_AT] = ACTIONS(4646), + [anon_sym_super_AT] = ACTIONS(4646), + [sym_real_literal] = ACTIONS(4646), + [sym_integer_literal] = ACTIONS(4644), + [sym_hex_literal] = ACTIONS(4646), + [sym_bin_literal] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4644), + [anon_sym_false] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4646), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4646), }, [3242] = { - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_object] = ACTIONS(4721), - [anon_sym_fun] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_this] = ACTIONS(4721), - [anon_sym_super] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [sym_label] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_null] = ACTIONS(4721), - [anon_sym_if] = ACTIONS(4721), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_when] = ACTIONS(4721), - [anon_sym_try] = ACTIONS(4721), - [anon_sym_throw] = ACTIONS(4721), - [anon_sym_return] = ACTIONS(4721), - [anon_sym_continue] = ACTIONS(4721), - [anon_sym_break] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4723), - [anon_sym_continue_AT] = ACTIONS(4723), - [anon_sym_break_AT] = ACTIONS(4723), - [sym_real_literal] = ACTIONS(4723), - [sym_integer_literal] = ACTIONS(4721), - [sym_hex_literal] = ACTIONS(4723), - [sym_bin_literal] = ACTIONS(4723), - [anon_sym_true] = ACTIONS(4721), - [anon_sym_false] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4723), - [sym__backtick_identifier] = ACTIONS(4723), - [sym__automatic_semicolon] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4723), + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_object] = ACTIONS(4790), + [anon_sym_fun] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_this] = ACTIONS(4790), + [anon_sym_super] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4790), + [anon_sym_if] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_when] = ACTIONS(4790), + [anon_sym_try] = ACTIONS(4790), + [anon_sym_throw] = ACTIONS(4790), + [anon_sym_return] = ACTIONS(4790), + [anon_sym_continue] = ACTIONS(4790), + [anon_sym_break] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4792), + [anon_sym_continue_AT] = ACTIONS(4792), + [anon_sym_break_AT] = ACTIONS(4792), + [anon_sym_this_AT] = ACTIONS(4792), + [anon_sym_super_AT] = ACTIONS(4792), + [sym_real_literal] = ACTIONS(4792), + [sym_integer_literal] = ACTIONS(4790), + [sym_hex_literal] = ACTIONS(4792), + [sym_bin_literal] = ACTIONS(4792), + [anon_sym_true] = ACTIONS(4790), + [anon_sym_false] = ACTIONS(4790), + [anon_sym_SQUOTE] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4792), + [sym__automatic_semicolon] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4792), }, [3243] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [anon_sym_DASH_GT] = ACTIONS(5011), - [sym_label] = ACTIONS(5011), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_while] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [anon_sym_PLUS_EQ] = ACTIONS(5011), - [anon_sym_DASH_EQ] = ACTIONS(5011), - [anon_sym_STAR_EQ] = ACTIONS(5011), - [anon_sym_SLASH_EQ] = ACTIONS(5011), - [anon_sym_PERCENT_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ] = ACTIONS(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_suspend] = ACTIONS(5009), - [anon_sym_sealed] = ACTIONS(5009), - [anon_sym_annotation] = ACTIONS(5009), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_value] = ACTIONS(5009), - [anon_sym_override] = ACTIONS(5009), - [anon_sym_lateinit] = ACTIONS(5009), - [anon_sym_public] = ACTIONS(5009), - [anon_sym_private] = ACTIONS(5009), - [anon_sym_internal] = ACTIONS(5009), - [anon_sym_protected] = ACTIONS(5009), - [anon_sym_tailrec] = ACTIONS(5009), - [anon_sym_operator] = ACTIONS(5009), - [anon_sym_infix] = ACTIONS(5009), - [anon_sym_inline] = ACTIONS(5009), - [anon_sym_external] = ACTIONS(5009), - [sym_property_modifier] = ACTIONS(5009), - [anon_sym_abstract] = ACTIONS(5009), - [anon_sym_final] = ACTIONS(5009), - [anon_sym_open] = ACTIONS(5009), - [anon_sym_vararg] = ACTIONS(5009), - [anon_sym_noinline] = ACTIONS(5009), - [anon_sym_crossinline] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4812), + [anon_sym_fun] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_this] = ACTIONS(4812), + [anon_sym_super] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_null] = ACTIONS(4812), + [anon_sym_if] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_when] = ACTIONS(4812), + [anon_sym_try] = ACTIONS(4812), + [anon_sym_throw] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_continue] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4814), + [anon_sym_continue_AT] = ACTIONS(4814), + [anon_sym_break_AT] = ACTIONS(4814), + [anon_sym_this_AT] = ACTIONS(4814), + [anon_sym_super_AT] = ACTIONS(4814), + [sym_real_literal] = ACTIONS(4814), + [sym_integer_literal] = ACTIONS(4812), + [sym_hex_literal] = ACTIONS(4814), + [sym_bin_literal] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4814), }, [3244] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [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__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [3245] = { - [sym__alpha_identifier] = ACTIONS(4857), - [anon_sym_AT] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_as] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_COMMA] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_where] = ACTIONS(4857), - [anon_sym_object] = ACTIONS(4857), - [anon_sym_fun] = ACTIONS(4857), - [anon_sym_DOT] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4859), - [anon_sym_get] = ACTIONS(4857), - [anon_sym_set] = ACTIONS(4857), - [anon_sym_this] = ACTIONS(4857), - [anon_sym_super] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [sym_label] = ACTIONS(4857), - [anon_sym_in] = ACTIONS(4857), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_QMARK_COLON] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_null] = ACTIONS(4857), - [anon_sym_if] = ACTIONS(4857), - [anon_sym_else] = ACTIONS(4857), - [anon_sym_when] = ACTIONS(4857), - [anon_sym_try] = ACTIONS(4857), - [anon_sym_throw] = ACTIONS(4857), - [anon_sym_return] = ACTIONS(4857), - [anon_sym_continue] = ACTIONS(4857), - [anon_sym_break] = ACTIONS(4857), - [anon_sym_COLON_COLON] = ACTIONS(4859), - [anon_sym_PLUS_EQ] = ACTIONS(4859), - [anon_sym_DASH_EQ] = ACTIONS(4859), - [anon_sym_STAR_EQ] = ACTIONS(4859), - [anon_sym_SLASH_EQ] = ACTIONS(4859), - [anon_sym_PERCENT_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4859), - [anon_sym_LT_EQ] = ACTIONS(4859), - [anon_sym_GT_EQ] = ACTIONS(4859), - [anon_sym_BANGin] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4857), - [anon_sym_BANGis] = ACTIONS(4859), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_as_QMARK] = ACTIONS(4859), - [anon_sym_PLUS_PLUS] = ACTIONS(4859), - [anon_sym_DASH_DASH] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_BANG_BANG] = ACTIONS(4859), - [anon_sym_data] = ACTIONS(4857), - [anon_sym_inner] = ACTIONS(4857), - [anon_sym_value] = ACTIONS(4857), - [anon_sym_expect] = ACTIONS(4857), - [anon_sym_actual] = ACTIONS(4857), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4859), - [anon_sym_continue_AT] = ACTIONS(4859), - [anon_sym_break_AT] = ACTIONS(4859), - [sym_real_literal] = ACTIONS(4859), - [sym_integer_literal] = ACTIONS(4857), - [sym_hex_literal] = ACTIONS(4859), - [sym_bin_literal] = ACTIONS(4859), - [anon_sym_true] = ACTIONS(4857), - [anon_sym_false] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4859), - [sym__backtick_identifier] = ACTIONS(4859), - [sym__automatic_semicolon] = ACTIONS(4859), - [sym_safe_nav] = ACTIONS(4859), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4859), + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_object] = ACTIONS(4804), + [anon_sym_fun] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_this] = ACTIONS(4804), + [anon_sym_super] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_null] = ACTIONS(4804), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_when] = ACTIONS(4804), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_throw] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4806), + [anon_sym_continue_AT] = ACTIONS(4806), + [anon_sym_break_AT] = ACTIONS(4806), + [anon_sym_this_AT] = ACTIONS(4806), + [anon_sym_super_AT] = ACTIONS(4806), + [sym_real_literal] = ACTIONS(4806), + [sym_integer_literal] = ACTIONS(4804), + [sym_hex_literal] = ACTIONS(4806), + [sym_bin_literal] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4806), }, [3246] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6636), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_object] = ACTIONS(5191), + [anon_sym_fun] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_this] = ACTIONS(5191), + [anon_sym_super] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [sym_label] = ACTIONS(5191), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_null] = ACTIONS(5191), + [anon_sym_if] = ACTIONS(5191), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_when] = ACTIONS(5191), + [anon_sym_try] = ACTIONS(5191), + [anon_sym_throw] = ACTIONS(5191), + [anon_sym_return] = ACTIONS(5191), + [anon_sym_continue] = ACTIONS(5191), + [anon_sym_break] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5191), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5193), + [anon_sym_continue_AT] = ACTIONS(5193), + [anon_sym_break_AT] = ACTIONS(5193), + [anon_sym_this_AT] = ACTIONS(5193), + [anon_sym_super_AT] = ACTIONS(5193), + [sym_real_literal] = ACTIONS(5193), + [sym_integer_literal] = ACTIONS(5191), + [sym_hex_literal] = ACTIONS(5193), + [sym_bin_literal] = ACTIONS(5193), + [anon_sym_true] = ACTIONS(5191), + [anon_sym_false] = ACTIONS(5191), + [anon_sym_SQUOTE] = ACTIONS(5193), + [sym__backtick_identifier] = ACTIONS(5193), + [sym__automatic_semicolon] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5193), }, [3247] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6640), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_object] = ACTIONS(4493), + [anon_sym_fun] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_this] = ACTIONS(4493), + [anon_sym_super] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_try] = ACTIONS(4493), + [anon_sym_throw] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4495), + [anon_sym_continue_AT] = ACTIONS(4495), + [anon_sym_break_AT] = ACTIONS(4495), + [anon_sym_this_AT] = ACTIONS(4495), + [anon_sym_super_AT] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4495), + [sym_integer_literal] = ACTIONS(4493), + [sym_hex_literal] = ACTIONS(4495), + [sym_bin_literal] = ACTIONS(4495), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4495), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4495), }, [3248] = { - [sym__alpha_identifier] = ACTIONS(5124), - [anon_sym_AT] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5124), - [anon_sym_object] = ACTIONS(5124), - [anon_sym_fun] = ACTIONS(5124), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_get] = ACTIONS(5124), - [anon_sym_set] = ACTIONS(5124), - [anon_sym_this] = ACTIONS(5124), - [anon_sym_super] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [sym_label] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_QMARK_COLON] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5124), - [anon_sym_if] = ACTIONS(5124), - [anon_sym_else] = ACTIONS(5124), - [anon_sym_when] = ACTIONS(5124), - [anon_sym_try] = ACTIONS(5124), - [anon_sym_throw] = ACTIONS(5124), - [anon_sym_return] = ACTIONS(5124), - [anon_sym_continue] = ACTIONS(5124), - [anon_sym_break] = ACTIONS(5124), - [anon_sym_COLON_COLON] = ACTIONS(5126), - [anon_sym_PLUS_EQ] = ACTIONS(5126), - [anon_sym_DASH_EQ] = ACTIONS(5126), - [anon_sym_STAR_EQ] = ACTIONS(5126), - [anon_sym_SLASH_EQ] = ACTIONS(5126), - [anon_sym_PERCENT_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5124), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5124), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_BANGin] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5124), - [anon_sym_BANGis] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_as_QMARK] = ACTIONS(5126), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_BANG_BANG] = ACTIONS(5126), - [anon_sym_data] = ACTIONS(5124), - [anon_sym_inner] = ACTIONS(5124), - [anon_sym_value] = ACTIONS(5124), - [anon_sym_expect] = ACTIONS(5124), - [anon_sym_actual] = ACTIONS(5124), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5126), - [anon_sym_continue_AT] = ACTIONS(5126), - [anon_sym_break_AT] = ACTIONS(5126), - [sym_real_literal] = ACTIONS(5126), - [sym_integer_literal] = ACTIONS(5124), - [sym_hex_literal] = ACTIONS(5126), - [sym_bin_literal] = ACTIONS(5126), - [anon_sym_true] = ACTIONS(5124), - [anon_sym_false] = ACTIONS(5124), - [anon_sym_SQUOTE] = ACTIONS(5126), - [sym__backtick_identifier] = ACTIONS(5126), - [sym__automatic_semicolon] = ACTIONS(5126), - [sym_safe_nav] = ACTIONS(5126), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5126), + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_object] = ACTIONS(5135), + [anon_sym_fun] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_this] = ACTIONS(5135), + [anon_sym_super] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_null] = ACTIONS(5135), + [anon_sym_if] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_try] = ACTIONS(5135), + [anon_sym_throw] = ACTIONS(5135), + [anon_sym_return] = ACTIONS(5135), + [anon_sym_continue] = ACTIONS(5135), + [anon_sym_break] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5137), + [anon_sym_continue_AT] = ACTIONS(5137), + [anon_sym_break_AT] = ACTIONS(5137), + [anon_sym_this_AT] = ACTIONS(5137), + [anon_sym_super_AT] = ACTIONS(5137), + [sym_real_literal] = ACTIONS(5137), + [sym_integer_literal] = ACTIONS(5135), + [sym_hex_literal] = ACTIONS(5137), + [sym_bin_literal] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5135), + [anon_sym_false] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5137), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5137), }, [3249] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_object] = ACTIONS(5117), + [anon_sym_fun] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_this] = ACTIONS(5117), + [anon_sym_super] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_try] = ACTIONS(5117), + [anon_sym_throw] = ACTIONS(5117), + [anon_sym_return] = ACTIONS(5117), + [anon_sym_continue] = ACTIONS(5117), + [anon_sym_break] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5119), + [anon_sym_continue_AT] = ACTIONS(5119), + [anon_sym_break_AT] = ACTIONS(5119), + [anon_sym_this_AT] = ACTIONS(5119), + [anon_sym_super_AT] = ACTIONS(5119), + [sym_real_literal] = ACTIONS(5119), + [sym_integer_literal] = ACTIONS(5117), + [sym_hex_literal] = ACTIONS(5119), + [sym_bin_literal] = ACTIONS(5119), + [anon_sym_true] = ACTIONS(5117), + [anon_sym_false] = ACTIONS(5117), + [anon_sym_SQUOTE] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5119), }, [3250] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_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), - [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), + [aux_sym_type_constraints_repeat1] = STATE(3250), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_RBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6701), + [anon_sym_RPAREN] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_DASH_GT] = ACTIONS(4432), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_while] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), }, [3251] = { - [sym__alpha_identifier] = ACTIONS(5120), - [anon_sym_AT] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5120), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_get] = ACTIONS(5120), - [anon_sym_set] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [anon_sym_DASH_GT] = ACTIONS(5122), - [sym_label] = ACTIONS(5122), - [anon_sym_in] = ACTIONS(5120), - [anon_sym_while] = ACTIONS(5120), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_QMARK_COLON] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_else] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_BANGin] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5120), - [anon_sym_BANGis] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_as_QMARK] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_BANG_BANG] = ACTIONS(5122), - [anon_sym_suspend] = ACTIONS(5120), - [anon_sym_sealed] = ACTIONS(5120), - [anon_sym_annotation] = ACTIONS(5120), - [anon_sym_data] = ACTIONS(5120), - [anon_sym_inner] = ACTIONS(5120), - [anon_sym_value] = ACTIONS(5120), - [anon_sym_override] = ACTIONS(5120), - [anon_sym_lateinit] = ACTIONS(5120), - [anon_sym_public] = ACTIONS(5120), - [anon_sym_private] = ACTIONS(5120), - [anon_sym_internal] = ACTIONS(5120), - [anon_sym_protected] = ACTIONS(5120), - [anon_sym_tailrec] = ACTIONS(5120), - [anon_sym_operator] = ACTIONS(5120), - [anon_sym_infix] = ACTIONS(5120), - [anon_sym_inline] = ACTIONS(5120), - [anon_sym_external] = ACTIONS(5120), - [sym_property_modifier] = ACTIONS(5120), - [anon_sym_abstract] = ACTIONS(5120), - [anon_sym_final] = ACTIONS(5120), - [anon_sym_open] = ACTIONS(5120), - [anon_sym_vararg] = ACTIONS(5120), - [anon_sym_noinline] = ACTIONS(5120), - [anon_sym_crossinline] = ACTIONS(5120), - [anon_sym_expect] = ACTIONS(5120), - [anon_sym_actual] = ACTIONS(5120), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5122), - [sym_safe_nav] = ACTIONS(5122), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_object] = ACTIONS(5121), + [anon_sym_fun] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_this] = ACTIONS(5121), + [anon_sym_super] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_try] = ACTIONS(5121), + [anon_sym_throw] = ACTIONS(5121), + [anon_sym_return] = ACTIONS(5121), + [anon_sym_continue] = ACTIONS(5121), + [anon_sym_break] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5123), + [anon_sym_continue_AT] = ACTIONS(5123), + [anon_sym_break_AT] = ACTIONS(5123), + [anon_sym_this_AT] = ACTIONS(5123), + [anon_sym_super_AT] = ACTIONS(5123), + [sym_real_literal] = ACTIONS(5123), + [sym_integer_literal] = ACTIONS(5121), + [sym_hex_literal] = ACTIONS(5123), + [sym_bin_literal] = ACTIONS(5123), + [anon_sym_true] = ACTIONS(5121), + [anon_sym_false] = ACTIONS(5121), + [anon_sym_SQUOTE] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5123), }, [3252] = { - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_when] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3278), - [anon_sym_inner] = ACTIONS(3278), - [anon_sym_value] = ACTIONS(3278), - [anon_sym_expect] = ACTIONS(3278), - [anon_sym_actual] = ACTIONS(3278), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_when] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4794), + [anon_sym_throw] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4794), + [anon_sym_continue] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4796), + [anon_sym_continue_AT] = ACTIONS(4796), + [anon_sym_break_AT] = ACTIONS(4796), + [anon_sym_this_AT] = ACTIONS(4796), + [anon_sym_super_AT] = ACTIONS(4796), + [sym_real_literal] = ACTIONS(4796), + [sym_integer_literal] = ACTIONS(4794), + [sym_hex_literal] = ACTIONS(4796), + [sym_bin_literal] = ACTIONS(4796), + [anon_sym_true] = ACTIONS(4794), + [anon_sym_false] = ACTIONS(4794), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), }, [3253] = { - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, [3254] = { - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [3255] = { - [sym__alpha_identifier] = ACTIONS(4869), - [anon_sym_AT] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(4871), - [anon_sym_RBRACK] = ACTIONS(4871), - [anon_sym_as] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_LPAREN] = ACTIONS(4871), - [anon_sym_COMMA] = ACTIONS(4871), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(4869), - [anon_sym_GT] = ACTIONS(4869), - [anon_sym_where] = ACTIONS(4869), - [anon_sym_DOT] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym_get] = ACTIONS(4869), - [anon_sym_set] = ACTIONS(4869), - [anon_sym_STAR] = ACTIONS(4869), - [anon_sym_DASH_GT] = ACTIONS(4871), - [sym_label] = ACTIONS(4871), - [anon_sym_in] = ACTIONS(4869), - [anon_sym_while] = ACTIONS(4869), - [anon_sym_DOT_DOT] = ACTIONS(4871), - [anon_sym_QMARK_COLON] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_else] = ACTIONS(4869), - [anon_sym_COLON_COLON] = ACTIONS(4871), - [anon_sym_PLUS_EQ] = ACTIONS(4871), - [anon_sym_DASH_EQ] = ACTIONS(4871), - [anon_sym_STAR_EQ] = ACTIONS(4871), - [anon_sym_SLASH_EQ] = ACTIONS(4871), - [anon_sym_PERCENT_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), - [anon_sym_LT_EQ] = ACTIONS(4871), - [anon_sym_GT_EQ] = ACTIONS(4871), - [anon_sym_BANGin] = ACTIONS(4871), - [anon_sym_is] = ACTIONS(4869), - [anon_sym_BANGis] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(4869), - [anon_sym_DASH] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4869), - [anon_sym_PERCENT] = ACTIONS(4869), - [anon_sym_as_QMARK] = ACTIONS(4871), - [anon_sym_PLUS_PLUS] = ACTIONS(4871), - [anon_sym_DASH_DASH] = ACTIONS(4871), - [anon_sym_BANG_BANG] = ACTIONS(4871), - [anon_sym_suspend] = ACTIONS(4869), - [anon_sym_sealed] = ACTIONS(4869), - [anon_sym_annotation] = ACTIONS(4869), - [anon_sym_data] = ACTIONS(4869), - [anon_sym_inner] = ACTIONS(4869), - [anon_sym_value] = ACTIONS(4869), - [anon_sym_override] = ACTIONS(4869), - [anon_sym_lateinit] = ACTIONS(4869), - [anon_sym_public] = ACTIONS(4869), - [anon_sym_private] = ACTIONS(4869), - [anon_sym_internal] = ACTIONS(4869), - [anon_sym_protected] = ACTIONS(4869), - [anon_sym_tailrec] = ACTIONS(4869), - [anon_sym_operator] = ACTIONS(4869), - [anon_sym_infix] = ACTIONS(4869), - [anon_sym_inline] = ACTIONS(4869), - [anon_sym_external] = ACTIONS(4869), - [sym_property_modifier] = ACTIONS(4869), - [anon_sym_abstract] = ACTIONS(4869), - [anon_sym_final] = ACTIONS(4869), - [anon_sym_open] = ACTIONS(4869), - [anon_sym_vararg] = ACTIONS(4869), - [anon_sym_noinline] = ACTIONS(4869), - [anon_sym_crossinline] = ACTIONS(4869), - [anon_sym_expect] = ACTIONS(4869), - [anon_sym_actual] = ACTIONS(4869), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4871), - [sym_safe_nav] = ACTIONS(4871), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_object] = ACTIONS(4463), + [anon_sym_fun] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_this] = ACTIONS(4463), + [anon_sym_super] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4463), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_null] = ACTIONS(4463), + [anon_sym_if] = ACTIONS(4463), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_when] = ACTIONS(4463), + [anon_sym_try] = ACTIONS(4463), + [anon_sym_throw] = ACTIONS(4463), + [anon_sym_return] = ACTIONS(4463), + [anon_sym_continue] = ACTIONS(4463), + [anon_sym_break] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4463), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4465), + [anon_sym_continue_AT] = ACTIONS(4465), + [anon_sym_break_AT] = ACTIONS(4465), + [anon_sym_this_AT] = ACTIONS(4465), + [anon_sym_super_AT] = ACTIONS(4465), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(4463), + [anon_sym_false] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4465), }, [3256] = { - [sym__alpha_identifier] = ACTIONS(4829), - [anon_sym_AT] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4831), - [anon_sym_RBRACE] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_object] = ACTIONS(4829), - [anon_sym_fun] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4831), - [anon_sym_get] = ACTIONS(4829), - [anon_sym_set] = ACTIONS(4829), - [anon_sym_this] = ACTIONS(4829), - [anon_sym_super] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [sym_label] = ACTIONS(4829), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4831), - [anon_sym_QMARK_COLON] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_null] = ACTIONS(4829), - [anon_sym_if] = ACTIONS(4829), - [anon_sym_else] = ACTIONS(4829), - [anon_sym_when] = ACTIONS(4829), - [anon_sym_try] = ACTIONS(4829), - [anon_sym_throw] = ACTIONS(4829), - [anon_sym_return] = ACTIONS(4829), - [anon_sym_continue] = ACTIONS(4829), - [anon_sym_break] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4831), - [anon_sym_PLUS_EQ] = ACTIONS(4831), - [anon_sym_DASH_EQ] = ACTIONS(4831), - [anon_sym_STAR_EQ] = ACTIONS(4831), - [anon_sym_SLASH_EQ] = ACTIONS(4831), - [anon_sym_PERCENT_EQ] = ACTIONS(4831), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4831), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4831), - [anon_sym_LT_EQ] = ACTIONS(4831), - [anon_sym_GT_EQ] = ACTIONS(4831), - [anon_sym_BANGin] = ACTIONS(4831), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_BANGis] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_as_QMARK] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_BANG_BANG] = ACTIONS(4831), - [anon_sym_data] = ACTIONS(4829), - [anon_sym_inner] = ACTIONS(4829), - [anon_sym_value] = ACTIONS(4829), - [anon_sym_expect] = ACTIONS(4829), - [anon_sym_actual] = ACTIONS(4829), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4831), - [anon_sym_continue_AT] = ACTIONS(4831), - [anon_sym_break_AT] = ACTIONS(4831), - [sym_real_literal] = ACTIONS(4831), - [sym_integer_literal] = ACTIONS(4829), - [sym_hex_literal] = ACTIONS(4831), - [sym_bin_literal] = ACTIONS(4831), - [anon_sym_true] = ACTIONS(4829), - [anon_sym_false] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4831), - [sym__backtick_identifier] = ACTIONS(4831), - [sym__automatic_semicolon] = ACTIONS(4831), - [sym_safe_nav] = ACTIONS(4831), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4831), + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_object] = ACTIONS(5175), + [anon_sym_fun] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_this] = ACTIONS(5175), + [anon_sym_super] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5175), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(5175), + [anon_sym_if] = ACTIONS(5175), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_throw] = ACTIONS(5175), + [anon_sym_return] = ACTIONS(5175), + [anon_sym_continue] = ACTIONS(5175), + [anon_sym_break] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5175), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5177), + [anon_sym_continue_AT] = ACTIONS(5177), + [anon_sym_break_AT] = ACTIONS(5177), + [anon_sym_this_AT] = ACTIONS(5177), + [anon_sym_super_AT] = ACTIONS(5177), + [sym_real_literal] = ACTIONS(5177), + [sym_integer_literal] = ACTIONS(5175), + [sym_hex_literal] = ACTIONS(5177), + [sym_bin_literal] = ACTIONS(5177), + [anon_sym_true] = ACTIONS(5175), + [anon_sym_false] = ACTIONS(5175), + [anon_sym_SQUOTE] = ACTIONS(5177), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5177), }, [3257] = { - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_object] = ACTIONS(203), - [anon_sym_fun] = ACTIONS(203), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(203), - [anon_sym_super] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(203), - [sym_label] = ACTIONS(203), - [anon_sym_in] = ACTIONS(203), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_null] = ACTIONS(203), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(203), - [anon_sym_when] = ACTIONS(203), - [anon_sym_try] = ACTIONS(203), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_return] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(203), - [anon_sym_break] = ACTIONS(203), - [anon_sym_COLON_COLON] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(201), - [anon_sym_DASH_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_BANG_BANG] = ACTIONS(201), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_value] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(201), - [anon_sym_continue_AT] = ACTIONS(201), - [anon_sym_break_AT] = ACTIONS(201), - [sym_real_literal] = ACTIONS(201), - [sym_integer_literal] = ACTIONS(203), - [sym_hex_literal] = ACTIONS(201), - [sym_bin_literal] = ACTIONS(201), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_SQUOTE] = ACTIONS(201), - [sym__backtick_identifier] = ACTIONS(201), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(201), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [3258] = { - [sym_type_constraints] = STATE(3590), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [3259] = { - [sym_type_constraints] = STATE(3745), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6644), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_object] = ACTIONS(5125), + [anon_sym_fun] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_this] = ACTIONS(5125), + [anon_sym_super] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_try] = ACTIONS(5125), + [anon_sym_throw] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5125), + [anon_sym_continue] = ACTIONS(5125), + [anon_sym_break] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5127), + [anon_sym_continue_AT] = ACTIONS(5127), + [anon_sym_break_AT] = ACTIONS(5127), + [anon_sym_this_AT] = ACTIONS(5127), + [anon_sym_super_AT] = ACTIONS(5127), + [sym_real_literal] = ACTIONS(5127), + [sym_integer_literal] = ACTIONS(5125), + [sym_hex_literal] = ACTIONS(5127), + [sym_bin_literal] = ACTIONS(5127), + [anon_sym_true] = ACTIONS(5125), + [anon_sym_false] = ACTIONS(5125), + [anon_sym_SQUOTE] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5127), }, [3260] = { - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_object] = ACTIONS(5139), + [anon_sym_fun] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_null] = ACTIONS(5139), + [anon_sym_if] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_try] = ACTIONS(5139), + [anon_sym_throw] = ACTIONS(5139), + [anon_sym_return] = ACTIONS(5139), + [anon_sym_continue] = ACTIONS(5139), + [anon_sym_break] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5141), + [anon_sym_continue_AT] = ACTIONS(5141), + [anon_sym_break_AT] = ACTIONS(5141), + [anon_sym_this_AT] = ACTIONS(5141), + [anon_sym_super_AT] = ACTIONS(5141), + [sym_real_literal] = ACTIONS(5141), + [sym_integer_literal] = ACTIONS(5139), + [sym_hex_literal] = ACTIONS(5141), + [sym_bin_literal] = ACTIONS(5141), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5141), }, [3261] = { - [sym_type_constraints] = STATE(3040), - [sym_enum_class_body] = STATE(3331), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6646), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_user_type_repeat1] = STATE(2928), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6554), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4195), + [sym_label] = ACTIONS(4193), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), }, [3262] = { - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(4476), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_object] = ACTIONS(4474), - [anon_sym_fun] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_this] = ACTIONS(4474), - [anon_sym_super] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4474), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_when] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_throw] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4476), - [anon_sym_continue_AT] = ACTIONS(4476), - [anon_sym_break_AT] = ACTIONS(4476), - [sym_real_literal] = ACTIONS(4476), - [sym_integer_literal] = ACTIONS(4474), - [sym_hex_literal] = ACTIONS(4476), - [sym_bin_literal] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4476), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4476), + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4884), + [anon_sym_fun] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_this] = ACTIONS(4884), + [anon_sym_super] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4884), + [anon_sym_if] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4884), + [anon_sym_throw] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4884), + [anon_sym_continue] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4886), + [anon_sym_continue_AT] = ACTIONS(4886), + [anon_sym_break_AT] = ACTIONS(4886), + [anon_sym_this_AT] = ACTIONS(4886), + [anon_sym_super_AT] = ACTIONS(4886), + [sym_real_literal] = ACTIONS(4886), + [sym_integer_literal] = ACTIONS(4884), + [sym_hex_literal] = ACTIONS(4886), + [sym_bin_literal] = ACTIONS(4886), + [anon_sym_true] = ACTIONS(4884), + [anon_sym_false] = ACTIONS(4884), + [anon_sym_SQUOTE] = ACTIONS(4886), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4886), }, [3263] = { - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5575), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_object] = ACTIONS(4922), + [anon_sym_fun] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_this] = ACTIONS(4922), + [anon_sym_super] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_when] = ACTIONS(4922), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_throw] = ACTIONS(4922), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_continue] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4924), + [anon_sym_continue_AT] = ACTIONS(4924), + [anon_sym_break_AT] = ACTIONS(4924), + [anon_sym_this_AT] = ACTIONS(4924), + [anon_sym_super_AT] = ACTIONS(4924), + [sym_real_literal] = ACTIONS(4924), + [sym_integer_literal] = ACTIONS(4922), + [sym_hex_literal] = ACTIONS(4924), + [sym_bin_literal] = ACTIONS(4924), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [anon_sym_SQUOTE] = ACTIONS(4924), + [sym__backtick_identifier] = ACTIONS(4924), + [sym__automatic_semicolon] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4924), }, [3264] = { - [sym__alpha_identifier] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_object] = ACTIONS(3039), - [anon_sym_fun] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(3039), - [anon_sym_set] = ACTIONS(3039), - [anon_sym_this] = ACTIONS(3039), - [anon_sym_super] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [sym_label] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3041), - [anon_sym_QMARK_COLON] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_null] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_when] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_as_QMARK] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_BANG_BANG] = ACTIONS(3041), - [anon_sym_data] = ACTIONS(3039), - [anon_sym_inner] = ACTIONS(3039), - [anon_sym_value] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(3039), - [anon_sym_actual] = ACTIONS(3039), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3041), - [anon_sym_continue_AT] = ACTIONS(3041), - [anon_sym_break_AT] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [sym_hex_literal] = ACTIONS(3041), - [sym_bin_literal] = ACTIONS(3041), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [sym__backtick_identifier] = ACTIONS(3041), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3041), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3041), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_when] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1804), + [anon_sym_continue_AT] = ACTIONS(1804), + [anon_sym_break_AT] = ACTIONS(1804), + [anon_sym_this_AT] = ACTIONS(1804), + [anon_sym_super_AT] = ACTIONS(1804), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [sym_hex_literal] = ACTIONS(1804), + [sym_bin_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1804), }, [3265] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_object] = ACTIONS(5033), - [anon_sym_fun] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_this] = ACTIONS(5033), - [anon_sym_super] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [sym_label] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_null] = ACTIONS(5033), - [anon_sym_if] = ACTIONS(5033), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_when] = ACTIONS(5033), - [anon_sym_try] = ACTIONS(5033), - [anon_sym_throw] = ACTIONS(5033), - [anon_sym_return] = ACTIONS(5033), - [anon_sym_continue] = ACTIONS(5033), - [anon_sym_break] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_object] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_this] = ACTIONS(5031), + [anon_sym_super] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_null] = ACTIONS(5031), + [anon_sym_if] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_try] = ACTIONS(5031), + [anon_sym_throw] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_continue] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5033), + [anon_sym_continue_AT] = ACTIONS(5033), + [anon_sym_break_AT] = ACTIONS(5033), + [anon_sym_this_AT] = ACTIONS(5033), + [anon_sym_super_AT] = ACTIONS(5033), + [sym_real_literal] = ACTIONS(5033), + [sym_integer_literal] = ACTIONS(5031), + [sym_hex_literal] = ACTIONS(5033), + [sym_bin_literal] = ACTIONS(5033), + [anon_sym_true] = ACTIONS(5031), + [anon_sym_false] = ACTIONS(5031), + [anon_sym_SQUOTE] = ACTIONS(5033), + [sym__backtick_identifier] = ACTIONS(5033), + [sym__automatic_semicolon] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5033), }, [3266] = { - [sym__alpha_identifier] = ACTIONS(4759), - [anon_sym_AT] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4761), - [anon_sym_as] = ACTIONS(4759), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_LBRACE] = ACTIONS(4761), - [anon_sym_RBRACE] = ACTIONS(4761), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym_COMMA] = ACTIONS(4761), - [anon_sym_LT] = ACTIONS(4759), - [anon_sym_GT] = ACTIONS(4759), - [anon_sym_where] = ACTIONS(4759), - [anon_sym_object] = ACTIONS(4759), - [anon_sym_fun] = ACTIONS(4759), - [anon_sym_DOT] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_get] = ACTIONS(4759), - [anon_sym_set] = ACTIONS(4759), - [anon_sym_this] = ACTIONS(4759), - [anon_sym_super] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(4759), - [sym_label] = ACTIONS(4759), - [anon_sym_in] = ACTIONS(4759), - [anon_sym_DOT_DOT] = ACTIONS(4761), - [anon_sym_QMARK_COLON] = ACTIONS(4761), - [anon_sym_AMP_AMP] = ACTIONS(4761), - [anon_sym_PIPE_PIPE] = ACTIONS(4761), - [anon_sym_null] = ACTIONS(4759), - [anon_sym_if] = ACTIONS(4759), - [anon_sym_else] = ACTIONS(4759), - [anon_sym_when] = ACTIONS(4759), - [anon_sym_try] = ACTIONS(4759), - [anon_sym_throw] = ACTIONS(4759), - [anon_sym_return] = ACTIONS(4759), - [anon_sym_continue] = ACTIONS(4759), - [anon_sym_break] = ACTIONS(4759), - [anon_sym_COLON_COLON] = ACTIONS(4761), - [anon_sym_PLUS_EQ] = ACTIONS(4761), - [anon_sym_DASH_EQ] = ACTIONS(4761), - [anon_sym_STAR_EQ] = ACTIONS(4761), - [anon_sym_SLASH_EQ] = ACTIONS(4761), - [anon_sym_PERCENT_EQ] = ACTIONS(4761), - [anon_sym_BANG_EQ] = ACTIONS(4759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4761), - [anon_sym_EQ_EQ] = ACTIONS(4759), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4761), - [anon_sym_LT_EQ] = ACTIONS(4761), - [anon_sym_GT_EQ] = ACTIONS(4761), - [anon_sym_BANGin] = ACTIONS(4761), - [anon_sym_is] = ACTIONS(4759), - [anon_sym_BANGis] = ACTIONS(4761), - [anon_sym_PLUS] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4759), - [anon_sym_SLASH] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_as_QMARK] = ACTIONS(4761), - [anon_sym_PLUS_PLUS] = ACTIONS(4761), - [anon_sym_DASH_DASH] = ACTIONS(4761), - [anon_sym_BANG] = ACTIONS(4759), - [anon_sym_BANG_BANG] = ACTIONS(4761), - [anon_sym_data] = ACTIONS(4759), - [anon_sym_inner] = ACTIONS(4759), - [anon_sym_value] = ACTIONS(4759), - [anon_sym_expect] = ACTIONS(4759), - [anon_sym_actual] = ACTIONS(4759), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4761), - [anon_sym_continue_AT] = ACTIONS(4761), - [anon_sym_break_AT] = ACTIONS(4761), - [sym_real_literal] = ACTIONS(4761), - [sym_integer_literal] = ACTIONS(4759), - [sym_hex_literal] = ACTIONS(4761), - [sym_bin_literal] = ACTIONS(4761), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [anon_sym_SQUOTE] = ACTIONS(4761), - [sym__backtick_identifier] = ACTIONS(4761), - [sym__automatic_semicolon] = ACTIONS(4761), - [sym_safe_nav] = ACTIONS(4761), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4761), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [3267] = { - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_RBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(4492), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_RPAREN] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [anon_sym_DASH_GT] = ACTIONS(4492), - [sym_label] = ACTIONS(4492), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_while] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [3268] = { - [sym__alpha_identifier] = ACTIONS(4751), - [anon_sym_AT] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4751), - [anon_sym_GT] = ACTIONS(4751), - [anon_sym_where] = ACTIONS(4751), - [anon_sym_object] = ACTIONS(4751), - [anon_sym_fun] = ACTIONS(4751), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_get] = ACTIONS(4751), - [anon_sym_set] = ACTIONS(4751), - [anon_sym_this] = ACTIONS(4751), - [anon_sym_super] = ACTIONS(4751), - [anon_sym_STAR] = ACTIONS(4751), - [sym_label] = ACTIONS(4751), - [anon_sym_in] = ACTIONS(4751), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_QMARK_COLON] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_null] = ACTIONS(4751), - [anon_sym_if] = ACTIONS(4751), - [anon_sym_else] = ACTIONS(4751), - [anon_sym_when] = ACTIONS(4751), - [anon_sym_try] = ACTIONS(4751), - [anon_sym_throw] = ACTIONS(4751), - [anon_sym_return] = ACTIONS(4751), - [anon_sym_continue] = ACTIONS(4751), - [anon_sym_break] = ACTIONS(4751), - [anon_sym_COLON_COLON] = ACTIONS(4753), - [anon_sym_PLUS_EQ] = ACTIONS(4753), - [anon_sym_DASH_EQ] = ACTIONS(4753), - [anon_sym_STAR_EQ] = ACTIONS(4753), - [anon_sym_SLASH_EQ] = ACTIONS(4753), - [anon_sym_PERCENT_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4751), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_BANGin] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4751), - [anon_sym_BANGis] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4751), - [anon_sym_SLASH] = ACTIONS(4751), - [anon_sym_PERCENT] = ACTIONS(4751), - [anon_sym_as_QMARK] = ACTIONS(4753), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4751), - [anon_sym_BANG_BANG] = ACTIONS(4753), - [anon_sym_data] = ACTIONS(4751), - [anon_sym_inner] = ACTIONS(4751), - [anon_sym_value] = ACTIONS(4751), - [anon_sym_expect] = ACTIONS(4751), - [anon_sym_actual] = ACTIONS(4751), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4753), - [anon_sym_continue_AT] = ACTIONS(4753), - [anon_sym_break_AT] = ACTIONS(4753), - [sym_real_literal] = ACTIONS(4753), - [sym_integer_literal] = ACTIONS(4751), - [sym_hex_literal] = ACTIONS(4753), - [sym_bin_literal] = ACTIONS(4753), - [anon_sym_true] = ACTIONS(4751), - [anon_sym_false] = ACTIONS(4751), - [anon_sym_SQUOTE] = ACTIONS(4753), - [sym__backtick_identifier] = ACTIONS(4753), - [sym__automatic_semicolon] = ACTIONS(4753), - [sym_safe_nav] = ACTIONS(4753), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4753), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [3269] = { - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4731), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_object] = ACTIONS(4729), - [anon_sym_fun] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_this] = ACTIONS(4729), - [anon_sym_super] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4729), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_null] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_when] = ACTIONS(4729), - [anon_sym_try] = ACTIONS(4729), - [anon_sym_throw] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4731), - [anon_sym_continue_AT] = ACTIONS(4731), - [anon_sym_break_AT] = ACTIONS(4731), - [sym_real_literal] = ACTIONS(4731), - [sym_integer_literal] = ACTIONS(4729), - [sym_hex_literal] = ACTIONS(4731), - [sym_bin_literal] = ACTIONS(4731), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4731), + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_object] = ACTIONS(5145), + [anon_sym_fun] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_this] = ACTIONS(5145), + [anon_sym_super] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_throw] = ACTIONS(5145), + [anon_sym_return] = ACTIONS(5145), + [anon_sym_continue] = ACTIONS(5145), + [anon_sym_break] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5147), + [anon_sym_continue_AT] = ACTIONS(5147), + [anon_sym_break_AT] = ACTIONS(5147), + [anon_sym_this_AT] = ACTIONS(5147), + [anon_sym_super_AT] = ACTIONS(5147), + [sym_real_literal] = ACTIONS(5147), + [sym_integer_literal] = ACTIONS(5145), + [sym_hex_literal] = ACTIONS(5147), + [sym_bin_literal] = ACTIONS(5147), + [anon_sym_true] = ACTIONS(5145), + [anon_sym_false] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5147), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5147), }, [3270] = { - [sym_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(6648), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5155), }, [3271] = { - [sym_class_body] = STATE(3453), - [sym_type_constraints] = STATE(3087), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4248), - [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), + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [3272] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_RBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [anon_sym_DASH_GT] = ACTIONS(4506), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_null] = ACTIONS(5149), + [anon_sym_if] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_try] = ACTIONS(5149), + [anon_sym_throw] = ACTIONS(5149), + [anon_sym_return] = ACTIONS(5149), + [anon_sym_continue] = ACTIONS(5149), + [anon_sym_break] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5151), + [anon_sym_continue_AT] = ACTIONS(5151), + [anon_sym_break_AT] = ACTIONS(5151), + [anon_sym_this_AT] = ACTIONS(5151), + [anon_sym_super_AT] = ACTIONS(5151), + [sym_real_literal] = ACTIONS(5151), + [sym_integer_literal] = ACTIONS(5149), + [sym_hex_literal] = ACTIONS(5151), + [sym_bin_literal] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5151), }, [3273] = { - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(1696), - [anon_sym_set] = ACTIONS(1696), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_super] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_data] = ACTIONS(1696), - [anon_sym_inner] = ACTIONS(1696), - [anon_sym_value] = ACTIONS(1696), - [anon_sym_expect] = ACTIONS(1696), - [anon_sym_actual] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1698), - [anon_sym_continue_AT] = ACTIONS(1698), - [anon_sym_break_AT] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [sym_hex_literal] = ACTIONS(1698), - [sym_bin_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1698), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1698), + [sym_type_constraints] = STATE(3646), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6704), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3274] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_RBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [anon_sym_DASH_GT] = ACTIONS(4506), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3645), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [3275] = { - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4179), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym_type_constraints] = STATE(3656), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6710), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), }, [3276] = { - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_RBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [anon_sym_DASH_GT] = ACTIONS(4583), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_while] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), }, [3277] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [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_DOT] = 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), - [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_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3278] = { - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_DASH_GT] = ACTIONS(201), - [sym_label] = ACTIONS(201), - [anon_sym_in] = ACTIONS(203), - [anon_sym_while] = ACTIONS(203), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_else] = ACTIONS(203), - [anon_sym_COLON_COLON] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(201), - [anon_sym_DASH_DASH] = ACTIONS(201), - [anon_sym_BANG_BANG] = ACTIONS(201), - [anon_sym_suspend] = ACTIONS(203), - [anon_sym_sealed] = ACTIONS(203), - [anon_sym_annotation] = ACTIONS(203), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_value] = ACTIONS(203), - [anon_sym_override] = ACTIONS(203), - [anon_sym_lateinit] = ACTIONS(203), - [anon_sym_public] = ACTIONS(203), - [anon_sym_private] = ACTIONS(203), - [anon_sym_internal] = ACTIONS(203), - [anon_sym_protected] = ACTIONS(203), - [anon_sym_tailrec] = ACTIONS(203), - [anon_sym_operator] = ACTIONS(203), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(203), - [anon_sym_external] = ACTIONS(203), - [sym_property_modifier] = ACTIONS(203), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_final] = ACTIONS(203), - [anon_sym_open] = ACTIONS(203), - [anon_sym_vararg] = ACTIONS(203), - [anon_sym_noinline] = ACTIONS(203), - [anon_sym_crossinline] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3279] = { - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_object] = ACTIONS(4429), - [anon_sym_fun] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_this] = ACTIONS(4429), - [anon_sym_super] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_when] = ACTIONS(4429), - [anon_sym_try] = ACTIONS(4429), - [anon_sym_throw] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4431), - [anon_sym_continue_AT] = ACTIONS(4431), - [anon_sym_break_AT] = ACTIONS(4431), - [sym_real_literal] = ACTIONS(4431), - [sym_integer_literal] = ACTIONS(4429), - [sym_hex_literal] = ACTIONS(4431), - [sym_bin_literal] = ACTIONS(4431), - [anon_sym_true] = ACTIONS(4429), - [anon_sym_false] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4431), + [aux_sym_user_type_repeat1] = STATE(3319), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6760), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [sym__quest] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), }, [3280] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_RBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_RPAREN] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [anon_sym_DASH_GT] = ACTIONS(4396), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_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_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3281] = { - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4065), - [anon_sym_LBRACE] = ACTIONS(4067), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - }, - [3282] = { - [sym__alpha_identifier] = ACTIONS(5128), - [anon_sym_AT] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_RBRACK] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5128), - [anon_sym_EQ] = ACTIONS(5128), - [anon_sym_LBRACE] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5128), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_get] = ACTIONS(5128), - [anon_sym_set] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5128), - [anon_sym_DASH_GT] = ACTIONS(5130), - [sym_label] = ACTIONS(5130), - [anon_sym_in] = ACTIONS(5128), - [anon_sym_while] = ACTIONS(5128), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_QMARK_COLON] = ACTIONS(5130), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_else] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(5130), - [anon_sym_PLUS_EQ] = ACTIONS(5130), - [anon_sym_DASH_EQ] = ACTIONS(5130), - [anon_sym_STAR_EQ] = ACTIONS(5130), - [anon_sym_SLASH_EQ] = ACTIONS(5130), - [anon_sym_PERCENT_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5128), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5128), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_BANGin] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5128), - [anon_sym_BANGis] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5128), - [anon_sym_as_QMARK] = ACTIONS(5130), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_BANG_BANG] = ACTIONS(5130), - [anon_sym_suspend] = ACTIONS(5128), - [anon_sym_sealed] = ACTIONS(5128), - [anon_sym_annotation] = ACTIONS(5128), - [anon_sym_data] = ACTIONS(5128), - [anon_sym_inner] = ACTIONS(5128), - [anon_sym_value] = ACTIONS(5128), - [anon_sym_override] = ACTIONS(5128), - [anon_sym_lateinit] = ACTIONS(5128), - [anon_sym_public] = ACTIONS(5128), - [anon_sym_private] = ACTIONS(5128), - [anon_sym_internal] = ACTIONS(5128), - [anon_sym_protected] = ACTIONS(5128), - [anon_sym_tailrec] = ACTIONS(5128), - [anon_sym_operator] = ACTIONS(5128), - [anon_sym_infix] = ACTIONS(5128), - [anon_sym_inline] = ACTIONS(5128), - [anon_sym_external] = ACTIONS(5128), - [sym_property_modifier] = ACTIONS(5128), - [anon_sym_abstract] = ACTIONS(5128), - [anon_sym_final] = ACTIONS(5128), - [anon_sym_open] = ACTIONS(5128), - [anon_sym_vararg] = ACTIONS(5128), - [anon_sym_noinline] = ACTIONS(5128), - [anon_sym_crossinline] = ACTIONS(5128), - [anon_sym_expect] = ACTIONS(5128), - [anon_sym_actual] = ACTIONS(5128), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5130), - [sym_safe_nav] = ACTIONS(5130), - [sym_multiline_comment] = ACTIONS(3), - }, - [3283] = { - [sym__alpha_identifier] = ACTIONS(4893), - [anon_sym_AT] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_as] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(4893), - [anon_sym_where] = ACTIONS(4893), - [anon_sym_object] = ACTIONS(4893), - [anon_sym_fun] = ACTIONS(4893), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_get] = ACTIONS(4893), - [anon_sym_set] = ACTIONS(4893), - [anon_sym_this] = ACTIONS(4893), - [anon_sym_super] = ACTIONS(4893), - [anon_sym_STAR] = ACTIONS(4893), - [sym_label] = ACTIONS(4893), - [anon_sym_in] = ACTIONS(4893), - [anon_sym_DOT_DOT] = ACTIONS(4895), - [anon_sym_QMARK_COLON] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_null] = ACTIONS(4893), - [anon_sym_if] = ACTIONS(4893), - [anon_sym_else] = ACTIONS(4893), - [anon_sym_when] = ACTIONS(4893), - [anon_sym_try] = ACTIONS(4893), - [anon_sym_throw] = ACTIONS(4893), - [anon_sym_return] = ACTIONS(4893), - [anon_sym_continue] = ACTIONS(4893), - [anon_sym_break] = ACTIONS(4893), - [anon_sym_COLON_COLON] = ACTIONS(4895), - [anon_sym_PLUS_EQ] = ACTIONS(4895), - [anon_sym_DASH_EQ] = ACTIONS(4895), - [anon_sym_STAR_EQ] = ACTIONS(4895), - [anon_sym_SLASH_EQ] = ACTIONS(4895), - [anon_sym_PERCENT_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), - [anon_sym_LT_EQ] = ACTIONS(4895), - [anon_sym_GT_EQ] = ACTIONS(4895), - [anon_sym_BANGin] = ACTIONS(4895), - [anon_sym_is] = ACTIONS(4893), - [anon_sym_BANGis] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4893), - [anon_sym_DASH] = ACTIONS(4893), - [anon_sym_SLASH] = ACTIONS(4893), - [anon_sym_PERCENT] = ACTIONS(4893), - [anon_sym_as_QMARK] = ACTIONS(4895), - [anon_sym_PLUS_PLUS] = ACTIONS(4895), - [anon_sym_DASH_DASH] = ACTIONS(4895), - [anon_sym_BANG] = ACTIONS(4893), - [anon_sym_BANG_BANG] = ACTIONS(4895), - [anon_sym_data] = ACTIONS(4893), - [anon_sym_inner] = ACTIONS(4893), - [anon_sym_value] = ACTIONS(4893), - [anon_sym_expect] = ACTIONS(4893), - [anon_sym_actual] = ACTIONS(4893), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4895), - [anon_sym_continue_AT] = ACTIONS(4895), - [anon_sym_break_AT] = ACTIONS(4895), - [sym_real_literal] = ACTIONS(4895), - [sym_integer_literal] = ACTIONS(4893), - [sym_hex_literal] = ACTIONS(4895), - [sym_bin_literal] = ACTIONS(4895), - [anon_sym_true] = ACTIONS(4893), - [anon_sym_false] = ACTIONS(4893), - [anon_sym_SQUOTE] = ACTIONS(4895), - [sym__backtick_identifier] = ACTIONS(4895), - [sym__automatic_semicolon] = ACTIONS(4895), - [sym_safe_nav] = ACTIONS(4895), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4895), - }, - [3284] = { - [sym__alpha_identifier] = ACTIONS(4915), - [anon_sym_AT] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4917), - [anon_sym_as] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4917), - [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4917), - [anon_sym_COMMA] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4915), - [anon_sym_GT] = ACTIONS(4915), - [anon_sym_where] = ACTIONS(4915), - [anon_sym_object] = ACTIONS(4915), - [anon_sym_fun] = ACTIONS(4915), - [anon_sym_DOT] = ACTIONS(4915), - [anon_sym_SEMI] = ACTIONS(4917), - [anon_sym_get] = ACTIONS(4915), - [anon_sym_set] = ACTIONS(4915), - [anon_sym_this] = ACTIONS(4915), - [anon_sym_super] = ACTIONS(4915), - [anon_sym_STAR] = ACTIONS(4915), - [sym_label] = ACTIONS(4915), - [anon_sym_in] = ACTIONS(4915), - [anon_sym_DOT_DOT] = ACTIONS(4917), - [anon_sym_QMARK_COLON] = ACTIONS(4917), - [anon_sym_AMP_AMP] = ACTIONS(4917), - [anon_sym_PIPE_PIPE] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4915), - [anon_sym_if] = ACTIONS(4915), - [anon_sym_else] = ACTIONS(4915), - [anon_sym_when] = ACTIONS(4915), - [anon_sym_try] = ACTIONS(4915), - [anon_sym_throw] = ACTIONS(4915), - [anon_sym_return] = ACTIONS(4915), - [anon_sym_continue] = ACTIONS(4915), - [anon_sym_break] = ACTIONS(4915), - [anon_sym_COLON_COLON] = ACTIONS(4917), - [anon_sym_PLUS_EQ] = ACTIONS(4917), - [anon_sym_DASH_EQ] = ACTIONS(4917), - [anon_sym_STAR_EQ] = ACTIONS(4917), - [anon_sym_SLASH_EQ] = ACTIONS(4917), - [anon_sym_PERCENT_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4917), - [anon_sym_LT_EQ] = ACTIONS(4917), - [anon_sym_GT_EQ] = ACTIONS(4917), - [anon_sym_BANGin] = ACTIONS(4917), - [anon_sym_is] = ACTIONS(4915), - [anon_sym_BANGis] = ACTIONS(4917), - [anon_sym_PLUS] = ACTIONS(4915), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_SLASH] = ACTIONS(4915), - [anon_sym_PERCENT] = ACTIONS(4915), - [anon_sym_as_QMARK] = ACTIONS(4917), - [anon_sym_PLUS_PLUS] = ACTIONS(4917), - [anon_sym_DASH_DASH] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4915), - [anon_sym_BANG_BANG] = ACTIONS(4917), - [anon_sym_data] = ACTIONS(4915), - [anon_sym_inner] = ACTIONS(4915), - [anon_sym_value] = ACTIONS(4915), - [anon_sym_expect] = ACTIONS(4915), - [anon_sym_actual] = ACTIONS(4915), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4917), - [anon_sym_continue_AT] = ACTIONS(4917), - [anon_sym_break_AT] = ACTIONS(4917), - [sym_real_literal] = ACTIONS(4917), - [sym_integer_literal] = ACTIONS(4915), - [sym_hex_literal] = ACTIONS(4917), - [sym_bin_literal] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4915), - [anon_sym_false] = ACTIONS(4915), - [anon_sym_SQUOTE] = ACTIONS(4917), - [sym__backtick_identifier] = ACTIONS(4917), - [sym__automatic_semicolon] = ACTIONS(4917), - [sym_safe_nav] = ACTIONS(4917), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4917), - }, - [3285] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [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__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_RBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_RPAREN] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [anon_sym_DASH_GT] = ACTIONS(4573), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_while] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + }, + [3282] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_RBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_RPAREN] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4662), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + }, + [3283] = { + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_RBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_RPAREN] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_DASH_GT] = ACTIONS(4432), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_while] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3284] = { + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [3285] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_RBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_RPAREN] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(4724), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, [3286] = { - [sym_type_constraints] = STATE(3587), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3287] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6763), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3288] = { - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4219), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3289] = { - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_object] = ACTIONS(4701), - [anon_sym_fun] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_this] = ACTIONS(4701), - [anon_sym_super] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [sym_label] = ACTIONS(4701), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_null] = ACTIONS(4701), - [anon_sym_if] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_when] = ACTIONS(4701), - [anon_sym_try] = ACTIONS(4701), - [anon_sym_throw] = ACTIONS(4701), - [anon_sym_return] = ACTIONS(4701), - [anon_sym_continue] = ACTIONS(4701), - [anon_sym_break] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4703), - [anon_sym_continue_AT] = ACTIONS(4703), - [anon_sym_break_AT] = ACTIONS(4703), - [sym_real_literal] = ACTIONS(4703), - [sym_integer_literal] = ACTIONS(4701), - [sym_hex_literal] = ACTIONS(4703), - [sym_bin_literal] = ACTIONS(4703), - [anon_sym_true] = ACTIONS(4701), - [anon_sym_false] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4703), - [sym__backtick_identifier] = ACTIONS(4703), - [sym__automatic_semicolon] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4703), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3290] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6652), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4248), - [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), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6767), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3291] = { - [sym__alpha_identifier] = ACTIONS(5100), - [anon_sym_AT] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_RBRACK] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5100), - [anon_sym_LBRACE] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_RPAREN] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5100), - [anon_sym_where] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(5102), - [anon_sym_get] = ACTIONS(5100), - [anon_sym_set] = ACTIONS(5100), - [anon_sym_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5102), - [sym_label] = ACTIONS(5102), - [anon_sym_in] = ACTIONS(5100), - [anon_sym_while] = ACTIONS(5100), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_QMARK_COLON] = ACTIONS(5102), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_else] = ACTIONS(5100), - [anon_sym_COLON_COLON] = ACTIONS(5102), - [anon_sym_PLUS_EQ] = ACTIONS(5102), - [anon_sym_DASH_EQ] = ACTIONS(5102), - [anon_sym_STAR_EQ] = ACTIONS(5102), - [anon_sym_SLASH_EQ] = ACTIONS(5102), - [anon_sym_PERCENT_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_BANGin] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5100), - [anon_sym_BANGis] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5100), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_as_QMARK] = ACTIONS(5102), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_BANG_BANG] = ACTIONS(5102), - [anon_sym_suspend] = ACTIONS(5100), - [anon_sym_sealed] = ACTIONS(5100), - [anon_sym_annotation] = ACTIONS(5100), - [anon_sym_data] = ACTIONS(5100), - [anon_sym_inner] = ACTIONS(5100), - [anon_sym_value] = ACTIONS(5100), - [anon_sym_override] = ACTIONS(5100), - [anon_sym_lateinit] = ACTIONS(5100), - [anon_sym_public] = ACTIONS(5100), - [anon_sym_private] = ACTIONS(5100), - [anon_sym_internal] = ACTIONS(5100), - [anon_sym_protected] = ACTIONS(5100), - [anon_sym_tailrec] = ACTIONS(5100), - [anon_sym_operator] = ACTIONS(5100), - [anon_sym_infix] = ACTIONS(5100), - [anon_sym_inline] = ACTIONS(5100), - [anon_sym_external] = ACTIONS(5100), - [sym_property_modifier] = ACTIONS(5100), - [anon_sym_abstract] = ACTIONS(5100), - [anon_sym_final] = ACTIONS(5100), - [anon_sym_open] = ACTIONS(5100), - [anon_sym_vararg] = ACTIONS(5100), - [anon_sym_noinline] = ACTIONS(5100), - [anon_sym_crossinline] = ACTIONS(5100), - [anon_sym_expect] = ACTIONS(5100), - [anon_sym_actual] = ACTIONS(5100), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5102), - [sym_safe_nav] = ACTIONS(5102), + [sym__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_RBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_DASH_GT] = ACTIONS(4561), + [sym_label] = ACTIONS(4561), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_while] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_suspend] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_annotation] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_lateinit] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_tailrec] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_infix] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym_external] = ACTIONS(4559), + [sym_property_modifier] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_final] = ACTIONS(4559), + [anon_sym_open] = ACTIONS(4559), + [anon_sym_vararg] = ACTIONS(4559), + [anon_sym_noinline] = ACTIONS(4559), + [anon_sym_crossinline] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), [sym_multiline_comment] = ACTIONS(3), }, [3292] = { - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_fun] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_data] = ACTIONS(3340), - [anon_sym_inner] = ACTIONS(3340), - [anon_sym_value] = ACTIONS(3340), - [anon_sym_expect] = ACTIONS(3340), - [anon_sym_actual] = ACTIONS(3340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3342), - [anon_sym_continue_AT] = ACTIONS(3342), - [anon_sym_break_AT] = ACTIONS(3342), - [sym_real_literal] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_hex_literal] = ACTIONS(3342), - [sym_bin_literal] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3342), + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_RBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_DASH_GT] = ACTIONS(4730), + [sym_label] = ACTIONS(4730), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_while] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), }, [3293] = { - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(4512), - [anon_sym_LBRACE] = ACTIONS(4514), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_RBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_RPAREN] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_DASH_GT] = ACTIONS(4565), + [sym_label] = ACTIONS(4565), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_while] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), }, [3294] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_object] = ACTIONS(5041), - [anon_sym_fun] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_this] = ACTIONS(5041), - [anon_sym_super] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [sym_label] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(5041), - [anon_sym_if] = ACTIONS(5041), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_when] = ACTIONS(5041), - [anon_sym_try] = ACTIONS(5041), - [anon_sym_throw] = ACTIONS(5041), - [anon_sym_return] = ACTIONS(5041), - [anon_sym_continue] = ACTIONS(5041), - [anon_sym_break] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_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), - [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), + [sym_type_arguments] = STATE(6538), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6771), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_COMMA] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4124), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_QMARK_COLON] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_PLUS_EQ] = ACTIONS(4124), + [anon_sym_DASH_EQ] = ACTIONS(4124), + [anon_sym_STAR_EQ] = ACTIONS(4124), + [anon_sym_SLASH_EQ] = ACTIONS(4124), + [anon_sym_PERCENT_EQ] = ACTIONS(4124), + [anon_sym_BANG_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), + [anon_sym_LT_EQ] = ACTIONS(4124), + [anon_sym_GT_EQ] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG_BANG] = ACTIONS(4124), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), + [sym_multiline_comment] = ACTIONS(3), }, [3295] = { - [sym__alpha_identifier] = ACTIONS(5082), - [anon_sym_AT] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5084), - [anon_sym_RBRACK] = ACTIONS(5084), - [anon_sym_as] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5084), - [anon_sym_RBRACE] = ACTIONS(5084), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(5084), - [anon_sym_RPAREN] = ACTIONS(5084), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_where] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_SEMI] = ACTIONS(5084), - [anon_sym_get] = ACTIONS(5082), - [anon_sym_set] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5084), - [sym_label] = ACTIONS(5084), - [anon_sym_in] = ACTIONS(5082), - [anon_sym_while] = ACTIONS(5082), - [anon_sym_DOT_DOT] = ACTIONS(5084), - [anon_sym_QMARK_COLON] = ACTIONS(5084), - [anon_sym_AMP_AMP] = ACTIONS(5084), - [anon_sym_PIPE_PIPE] = ACTIONS(5084), - [anon_sym_else] = ACTIONS(5082), - [anon_sym_COLON_COLON] = ACTIONS(5084), - [anon_sym_PLUS_EQ] = ACTIONS(5084), - [anon_sym_DASH_EQ] = ACTIONS(5084), - [anon_sym_STAR_EQ] = ACTIONS(5084), - [anon_sym_SLASH_EQ] = ACTIONS(5084), - [anon_sym_PERCENT_EQ] = ACTIONS(5084), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5084), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5084), - [anon_sym_LT_EQ] = ACTIONS(5084), - [anon_sym_GT_EQ] = ACTIONS(5084), - [anon_sym_BANGin] = ACTIONS(5084), - [anon_sym_is] = ACTIONS(5082), - [anon_sym_BANGis] = ACTIONS(5084), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5082), - [anon_sym_as_QMARK] = ACTIONS(5084), - [anon_sym_PLUS_PLUS] = ACTIONS(5084), - [anon_sym_DASH_DASH] = ACTIONS(5084), - [anon_sym_BANG_BANG] = ACTIONS(5084), - [anon_sym_suspend] = ACTIONS(5082), - [anon_sym_sealed] = ACTIONS(5082), - [anon_sym_annotation] = ACTIONS(5082), - [anon_sym_data] = ACTIONS(5082), - [anon_sym_inner] = ACTIONS(5082), - [anon_sym_value] = ACTIONS(5082), - [anon_sym_override] = ACTIONS(5082), - [anon_sym_lateinit] = ACTIONS(5082), - [anon_sym_public] = ACTIONS(5082), - [anon_sym_private] = ACTIONS(5082), - [anon_sym_internal] = ACTIONS(5082), - [anon_sym_protected] = ACTIONS(5082), - [anon_sym_tailrec] = ACTIONS(5082), - [anon_sym_operator] = ACTIONS(5082), - [anon_sym_infix] = ACTIONS(5082), - [anon_sym_inline] = ACTIONS(5082), - [anon_sym_external] = ACTIONS(5082), - [sym_property_modifier] = ACTIONS(5082), - [anon_sym_abstract] = ACTIONS(5082), - [anon_sym_final] = ACTIONS(5082), - [anon_sym_open] = ACTIONS(5082), - [anon_sym_vararg] = ACTIONS(5082), - [anon_sym_noinline] = ACTIONS(5082), - [anon_sym_crossinline] = ACTIONS(5082), - [anon_sym_expect] = ACTIONS(5082), - [anon_sym_actual] = ACTIONS(5082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5084), - [sym_safe_nav] = ACTIONS(5084), + [aux_sym__delegation_specifiers_repeat1] = STATE(3295), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(6773), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [anon_sym_DASH_GT] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_while] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, [3296] = { - [sym_function_body] = STATE(3298), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3297] = { - [sym__alpha_identifier] = ACTIONS(5082), - [anon_sym_AT] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5084), - [anon_sym_as] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5084), - [anon_sym_RBRACE] = ACTIONS(5084), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(5084), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_where] = ACTIONS(5082), - [anon_sym_object] = ACTIONS(5082), - [anon_sym_fun] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_SEMI] = ACTIONS(5084), - [anon_sym_get] = ACTIONS(5082), - [anon_sym_set] = ACTIONS(5082), - [anon_sym_this] = ACTIONS(5082), - [anon_sym_super] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5082), - [sym_label] = ACTIONS(5082), - [anon_sym_in] = ACTIONS(5082), - [anon_sym_DOT_DOT] = ACTIONS(5084), - [anon_sym_QMARK_COLON] = ACTIONS(5084), - [anon_sym_AMP_AMP] = ACTIONS(5084), - [anon_sym_PIPE_PIPE] = ACTIONS(5084), - [anon_sym_null] = ACTIONS(5082), - [anon_sym_if] = ACTIONS(5082), - [anon_sym_else] = ACTIONS(5082), - [anon_sym_when] = ACTIONS(5082), - [anon_sym_try] = ACTIONS(5082), - [anon_sym_throw] = ACTIONS(5082), - [anon_sym_return] = ACTIONS(5082), - [anon_sym_continue] = ACTIONS(5082), - [anon_sym_break] = ACTIONS(5082), - [anon_sym_COLON_COLON] = ACTIONS(5084), - [anon_sym_PLUS_EQ] = ACTIONS(5084), - [anon_sym_DASH_EQ] = ACTIONS(5084), - [anon_sym_STAR_EQ] = ACTIONS(5084), - [anon_sym_SLASH_EQ] = ACTIONS(5084), - [anon_sym_PERCENT_EQ] = ACTIONS(5084), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5084), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5084), - [anon_sym_LT_EQ] = ACTIONS(5084), - [anon_sym_GT_EQ] = ACTIONS(5084), - [anon_sym_BANGin] = ACTIONS(5084), - [anon_sym_is] = ACTIONS(5082), - [anon_sym_BANGis] = ACTIONS(5084), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5082), - [anon_sym_as_QMARK] = ACTIONS(5084), - [anon_sym_PLUS_PLUS] = ACTIONS(5084), - [anon_sym_DASH_DASH] = ACTIONS(5084), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_BANG_BANG] = ACTIONS(5084), - [anon_sym_data] = ACTIONS(5082), - [anon_sym_inner] = ACTIONS(5082), - [anon_sym_value] = ACTIONS(5082), - [anon_sym_expect] = ACTIONS(5082), - [anon_sym_actual] = ACTIONS(5082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5084), - [anon_sym_continue_AT] = ACTIONS(5084), - [anon_sym_break_AT] = ACTIONS(5084), - [sym_real_literal] = ACTIONS(5084), - [sym_integer_literal] = ACTIONS(5082), - [sym_hex_literal] = ACTIONS(5084), - [sym_bin_literal] = ACTIONS(5084), - [anon_sym_true] = ACTIONS(5082), - [anon_sym_false] = ACTIONS(5082), - [anon_sym_SQUOTE] = ACTIONS(5084), - [sym__backtick_identifier] = ACTIONS(5084), - [sym__automatic_semicolon] = ACTIONS(5084), - [sym_safe_nav] = ACTIONS(5084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5084), + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_DASH_GT] = ACTIONS(4765), + [sym_label] = ACTIONS(4765), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_while] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), }, [3298] = { - [sym__alpha_identifier] = ACTIONS(5100), - [anon_sym_AT] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5100), - [anon_sym_LBRACE] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5100), - [anon_sym_where] = ACTIONS(5100), - [anon_sym_object] = ACTIONS(5100), - [anon_sym_fun] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(5102), - [anon_sym_get] = ACTIONS(5100), - [anon_sym_set] = ACTIONS(5100), - [anon_sym_this] = ACTIONS(5100), - [anon_sym_super] = ACTIONS(5100), - [anon_sym_STAR] = ACTIONS(5100), - [sym_label] = ACTIONS(5100), - [anon_sym_in] = ACTIONS(5100), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_QMARK_COLON] = ACTIONS(5102), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_null] = ACTIONS(5100), - [anon_sym_if] = ACTIONS(5100), - [anon_sym_else] = ACTIONS(5100), - [anon_sym_when] = ACTIONS(5100), - [anon_sym_try] = ACTIONS(5100), - [anon_sym_throw] = ACTIONS(5100), - [anon_sym_return] = ACTIONS(5100), - [anon_sym_continue] = ACTIONS(5100), - [anon_sym_break] = ACTIONS(5100), - [anon_sym_COLON_COLON] = ACTIONS(5102), - [anon_sym_PLUS_EQ] = ACTIONS(5102), - [anon_sym_DASH_EQ] = ACTIONS(5102), - [anon_sym_STAR_EQ] = ACTIONS(5102), - [anon_sym_SLASH_EQ] = ACTIONS(5102), - [anon_sym_PERCENT_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_BANGin] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5100), - [anon_sym_BANGis] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5100), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_as_QMARK] = ACTIONS(5102), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_BANG] = ACTIONS(5100), - [anon_sym_BANG_BANG] = ACTIONS(5102), - [anon_sym_data] = ACTIONS(5100), - [anon_sym_inner] = ACTIONS(5100), - [anon_sym_value] = ACTIONS(5100), - [anon_sym_expect] = ACTIONS(5100), - [anon_sym_actual] = ACTIONS(5100), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5102), - [anon_sym_continue_AT] = ACTIONS(5102), - [anon_sym_break_AT] = ACTIONS(5102), - [sym_real_literal] = ACTIONS(5102), - [sym_integer_literal] = ACTIONS(5100), - [sym_hex_literal] = ACTIONS(5102), - [sym_bin_literal] = ACTIONS(5102), - [anon_sym_true] = ACTIONS(5100), - [anon_sym_false] = ACTIONS(5100), - [anon_sym_SQUOTE] = ACTIONS(5102), - [sym__backtick_identifier] = ACTIONS(5102), - [sym__automatic_semicolon] = ACTIONS(5102), - [sym_safe_nav] = ACTIONS(5102), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5102), + [sym__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_DASH_GT] = ACTIONS(4553), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_while] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_lateinit] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_tailrec] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_infix] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym_external] = ACTIONS(4551), + [sym_property_modifier] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_vararg] = ACTIONS(4551), + [anon_sym_noinline] = ACTIONS(4551), + [anon_sym_crossinline] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), }, [3299] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_DASH_GT] = ACTIONS(5043), - [sym_label] = ACTIONS(5043), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_while] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_suspend] = ACTIONS(5041), - [anon_sym_sealed] = ACTIONS(5041), - [anon_sym_annotation] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_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_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3300] = { - [sym__alpha_identifier] = ACTIONS(5116), - [anon_sym_AT] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5116), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5116), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_get] = ACTIONS(5116), - [anon_sym_set] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_DASH_GT] = ACTIONS(5118), - [sym_label] = ACTIONS(5118), - [anon_sym_in] = ACTIONS(5116), - [anon_sym_while] = ACTIONS(5116), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_QMARK_COLON] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_else] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_BANGin] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5116), - [anon_sym_BANGis] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_as_QMARK] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_BANG_BANG] = ACTIONS(5118), - [anon_sym_suspend] = ACTIONS(5116), - [anon_sym_sealed] = ACTIONS(5116), - [anon_sym_annotation] = ACTIONS(5116), - [anon_sym_data] = ACTIONS(5116), - [anon_sym_inner] = ACTIONS(5116), - [anon_sym_value] = ACTIONS(5116), - [anon_sym_override] = ACTIONS(5116), - [anon_sym_lateinit] = ACTIONS(5116), - [anon_sym_public] = ACTIONS(5116), - [anon_sym_private] = ACTIONS(5116), - [anon_sym_internal] = ACTIONS(5116), - [anon_sym_protected] = ACTIONS(5116), - [anon_sym_tailrec] = ACTIONS(5116), - [anon_sym_operator] = ACTIONS(5116), - [anon_sym_infix] = ACTIONS(5116), - [anon_sym_inline] = ACTIONS(5116), - [anon_sym_external] = ACTIONS(5116), - [sym_property_modifier] = ACTIONS(5116), - [anon_sym_abstract] = ACTIONS(5116), - [anon_sym_final] = ACTIONS(5116), - [anon_sym_open] = ACTIONS(5116), - [anon_sym_vararg] = ACTIONS(5116), - [anon_sym_noinline] = ACTIONS(5116), - [anon_sym_crossinline] = ACTIONS(5116), - [anon_sym_expect] = ACTIONS(5116), - [anon_sym_actual] = ACTIONS(5116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5118), - [sym_safe_nav] = ACTIONS(5118), + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_RBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_RPAREN] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [anon_sym_DASH_GT] = ACTIONS(4672), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_while] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), [sym_multiline_comment] = ACTIONS(3), }, [3301] = { - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_RBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(4512), - [anon_sym_LBRACE] = ACTIONS(4514), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_DASH_GT] = ACTIONS(4514), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_RBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [anon_sym_DASH_GT] = ACTIONS(4760), + [sym_label] = ACTIONS(4760), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_while] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), [sym_multiline_comment] = ACTIONS(3), }, [3302] = { - [aux_sym_user_type_repeat1] = STATE(3015), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_EQ] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6476), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [sym_label] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), + [sym_class_body] = STATE(3495), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_DASH_GT] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_while] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), }, [3303] = { - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_DASH_GT] = ACTIONS(3342), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(3340), - [anon_sym_sealed] = ACTIONS(3340), - [anon_sym_annotation] = ACTIONS(3340), - [anon_sym_data] = ACTIONS(3340), - [anon_sym_inner] = ACTIONS(3340), - [anon_sym_value] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_lateinit] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_internal] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_tailrec] = ACTIONS(3340), - [anon_sym_operator] = ACTIONS(3340), - [anon_sym_infix] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym_external] = ACTIONS(3340), - [sym_property_modifier] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_final] = ACTIONS(3340), - [anon_sym_open] = ACTIONS(3340), - [anon_sym_vararg] = ACTIONS(3340), - [anon_sym_noinline] = ACTIONS(3340), - [anon_sym_crossinline] = ACTIONS(3340), - [anon_sym_expect] = ACTIONS(3340), - [anon_sym_actual] = ACTIONS(3340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym_enum_class_body] = STATE(3494), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3304] = { - [sym__alpha_identifier] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(3039), - [anon_sym_set] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_DASH_GT] = ACTIONS(3041), - [sym_label] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3041), - [anon_sym_QMARK_COLON] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_as_QMARK] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_BANG_BANG] = ACTIONS(3041), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(3039), - [anon_sym_inner] = ACTIONS(3039), - [anon_sym_value] = ACTIONS(3039), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(3039), - [anon_sym_actual] = ACTIONS(3039), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3041), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_RBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4676), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_while] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), [sym_multiline_comment] = ACTIONS(3), }, [3305] = { - [sym_class_body] = STATE(3182), - [sym_type_constraints] = STATE(3135), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5583), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3654), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, [3306] = { - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5585), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [aux_sym_user_type_repeat1] = STATE(3306), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6778), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), [sym_multiline_comment] = ACTIONS(3), }, [3307] = { - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_RBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_RPAREN] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_DASH_GT] = ACTIONS(4703), - [sym_label] = ACTIONS(4703), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_while] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_suspend] = ACTIONS(4701), - [anon_sym_sealed] = ACTIONS(4701), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_override] = ACTIONS(4701), - [anon_sym_lateinit] = ACTIONS(4701), - [anon_sym_public] = ACTIONS(4701), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_internal] = ACTIONS(4701), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_tailrec] = ACTIONS(4701), - [anon_sym_operator] = ACTIONS(4701), - [anon_sym_infix] = ACTIONS(4701), - [anon_sym_inline] = ACTIONS(4701), - [anon_sym_external] = ACTIONS(4701), - [sym_property_modifier] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_final] = ACTIONS(4701), - [anon_sym_open] = ACTIONS(4701), - [anon_sym_vararg] = ACTIONS(4701), - [anon_sym_noinline] = ACTIONS(4701), - [anon_sym_crossinline] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_RBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_RPAREN] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_DASH_GT] = ACTIONS(4698), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_while] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), [sym_multiline_comment] = ACTIONS(3), }, [3308] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6654), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_type_arguments] = STATE(3550), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_RBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_COMMA] = ACTIONS(4189), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4189), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [sym__quest] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [sym_label] = ACTIONS(4189), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4189), + [anon_sym_QMARK_COLON] = ACTIONS(4189), + [anon_sym_AMP_AMP] = ACTIONS(4189), + [anon_sym_PIPE_PIPE] = ACTIONS(4189), + [anon_sym_else] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS_EQ] = ACTIONS(4189), + [anon_sym_DASH_EQ] = ACTIONS(4189), + [anon_sym_STAR_EQ] = ACTIONS(4189), + [anon_sym_SLASH_EQ] = ACTIONS(4189), + [anon_sym_PERCENT_EQ] = ACTIONS(4189), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), + [anon_sym_LT_EQ] = ACTIONS(4189), + [anon_sym_GT_EQ] = ACTIONS(4189), + [anon_sym_BANGin] = ACTIONS(4189), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_SLASH] = ACTIONS(4128), + [anon_sym_PERCENT] = ACTIONS(4128), + [anon_sym_as_QMARK] = ACTIONS(4189), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4189), + [sym__automatic_semicolon] = ACTIONS(4189), + [sym_safe_nav] = ACTIONS(4189), [sym_multiline_comment] = ACTIONS(3), }, [3309] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_RBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RPAREN] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_DASH_GT] = ACTIONS(4708), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), [sym_multiline_comment] = ACTIONS(3), }, [3310] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_DASH_GT] = ACTIONS(4997), - [sym_label] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_while] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_suspend] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_annotation] = ACTIONS(4995), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_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), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3311] = { - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_RBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4219), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [anon_sym_DASH_GT] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - }, - [3312] = { - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [3313] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [3314] = { - [sym__alpha_identifier] = ACTIONS(4915), - [anon_sym_AT] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4917), - [anon_sym_RBRACK] = ACTIONS(4917), - [anon_sym_as] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4917), - [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4917), - [anon_sym_COMMA] = ACTIONS(4917), - [anon_sym_RPAREN] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4915), - [anon_sym_GT] = ACTIONS(4915), - [anon_sym_where] = ACTIONS(4915), - [anon_sym_DOT] = ACTIONS(4915), - [anon_sym_SEMI] = ACTIONS(4917), - [anon_sym_get] = ACTIONS(4915), - [anon_sym_set] = ACTIONS(4915), - [anon_sym_STAR] = ACTIONS(4915), - [anon_sym_DASH_GT] = ACTIONS(4917), - [sym_label] = ACTIONS(4917), - [anon_sym_in] = ACTIONS(4915), - [anon_sym_while] = ACTIONS(4915), - [anon_sym_DOT_DOT] = ACTIONS(4917), - [anon_sym_QMARK_COLON] = ACTIONS(4917), - [anon_sym_AMP_AMP] = ACTIONS(4917), - [anon_sym_PIPE_PIPE] = ACTIONS(4917), - [anon_sym_else] = ACTIONS(4915), - [anon_sym_COLON_COLON] = ACTIONS(4917), - [anon_sym_PLUS_EQ] = ACTIONS(4917), - [anon_sym_DASH_EQ] = ACTIONS(4917), - [anon_sym_STAR_EQ] = ACTIONS(4917), - [anon_sym_SLASH_EQ] = ACTIONS(4917), - [anon_sym_PERCENT_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4917), - [anon_sym_LT_EQ] = ACTIONS(4917), - [anon_sym_GT_EQ] = ACTIONS(4917), - [anon_sym_BANGin] = ACTIONS(4917), - [anon_sym_is] = ACTIONS(4915), - [anon_sym_BANGis] = ACTIONS(4917), - [anon_sym_PLUS] = ACTIONS(4915), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_SLASH] = ACTIONS(4915), - [anon_sym_PERCENT] = ACTIONS(4915), - [anon_sym_as_QMARK] = ACTIONS(4917), - [anon_sym_PLUS_PLUS] = ACTIONS(4917), - [anon_sym_DASH_DASH] = ACTIONS(4917), - [anon_sym_BANG_BANG] = ACTIONS(4917), - [anon_sym_suspend] = ACTIONS(4915), - [anon_sym_sealed] = ACTIONS(4915), - [anon_sym_annotation] = ACTIONS(4915), - [anon_sym_data] = ACTIONS(4915), - [anon_sym_inner] = ACTIONS(4915), - [anon_sym_value] = ACTIONS(4915), - [anon_sym_override] = ACTIONS(4915), - [anon_sym_lateinit] = ACTIONS(4915), - [anon_sym_public] = ACTIONS(4915), - [anon_sym_private] = ACTIONS(4915), - [anon_sym_internal] = ACTIONS(4915), - [anon_sym_protected] = ACTIONS(4915), - [anon_sym_tailrec] = ACTIONS(4915), - [anon_sym_operator] = ACTIONS(4915), - [anon_sym_infix] = ACTIONS(4915), - [anon_sym_inline] = ACTIONS(4915), - [anon_sym_external] = ACTIONS(4915), - [sym_property_modifier] = ACTIONS(4915), - [anon_sym_abstract] = ACTIONS(4915), - [anon_sym_final] = ACTIONS(4915), - [anon_sym_open] = ACTIONS(4915), - [anon_sym_vararg] = ACTIONS(4915), - [anon_sym_noinline] = ACTIONS(4915), - [anon_sym_crossinline] = ACTIONS(4915), - [anon_sym_expect] = ACTIONS(4915), - [anon_sym_actual] = ACTIONS(4915), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4917), - [sym_safe_nav] = ACTIONS(4917), - [sym_multiline_comment] = ACTIONS(3), - }, - [3315] = { - [sym__alpha_identifier] = ACTIONS(4893), - [anon_sym_AT] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_as] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(4893), - [anon_sym_where] = ACTIONS(4893), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_get] = ACTIONS(4893), - [anon_sym_set] = ACTIONS(4893), - [anon_sym_STAR] = ACTIONS(4893), - [anon_sym_DASH_GT] = ACTIONS(4895), - [sym_label] = ACTIONS(4895), - [anon_sym_in] = ACTIONS(4893), - [anon_sym_while] = ACTIONS(4893), - [anon_sym_DOT_DOT] = ACTIONS(4895), - [anon_sym_QMARK_COLON] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_else] = ACTIONS(4893), - [anon_sym_COLON_COLON] = ACTIONS(4895), - [anon_sym_PLUS_EQ] = ACTIONS(4895), - [anon_sym_DASH_EQ] = ACTIONS(4895), - [anon_sym_STAR_EQ] = ACTIONS(4895), - [anon_sym_SLASH_EQ] = ACTIONS(4895), - [anon_sym_PERCENT_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), - [anon_sym_LT_EQ] = ACTIONS(4895), - [anon_sym_GT_EQ] = ACTIONS(4895), - [anon_sym_BANGin] = ACTIONS(4895), - [anon_sym_is] = ACTIONS(4893), - [anon_sym_BANGis] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4893), - [anon_sym_DASH] = ACTIONS(4893), - [anon_sym_SLASH] = ACTIONS(4893), - [anon_sym_PERCENT] = ACTIONS(4893), - [anon_sym_as_QMARK] = ACTIONS(4895), - [anon_sym_PLUS_PLUS] = ACTIONS(4895), - [anon_sym_DASH_DASH] = ACTIONS(4895), - [anon_sym_BANG_BANG] = ACTIONS(4895), - [anon_sym_suspend] = ACTIONS(4893), - [anon_sym_sealed] = ACTIONS(4893), - [anon_sym_annotation] = ACTIONS(4893), - [anon_sym_data] = ACTIONS(4893), - [anon_sym_inner] = ACTIONS(4893), - [anon_sym_value] = ACTIONS(4893), - [anon_sym_override] = ACTIONS(4893), - [anon_sym_lateinit] = ACTIONS(4893), - [anon_sym_public] = ACTIONS(4893), - [anon_sym_private] = ACTIONS(4893), - [anon_sym_internal] = ACTIONS(4893), - [anon_sym_protected] = ACTIONS(4893), - [anon_sym_tailrec] = ACTIONS(4893), - [anon_sym_operator] = ACTIONS(4893), - [anon_sym_infix] = ACTIONS(4893), - [anon_sym_inline] = ACTIONS(4893), - [anon_sym_external] = ACTIONS(4893), - [sym_property_modifier] = ACTIONS(4893), - [anon_sym_abstract] = ACTIONS(4893), - [anon_sym_final] = ACTIONS(4893), - [anon_sym_open] = ACTIONS(4893), - [anon_sym_vararg] = ACTIONS(4893), - [anon_sym_noinline] = ACTIONS(4893), - [anon_sym_crossinline] = ACTIONS(4893), - [anon_sym_expect] = ACTIONS(4893), - [anon_sym_actual] = ACTIONS(4893), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4895), - [sym_safe_nav] = ACTIONS(4895), - [sym_multiline_comment] = ACTIONS(3), - }, - [3316] = { - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [anon_sym_DASH_GT] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_while] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), - }, - [3317] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [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_DOT] = 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), - [sym_multiline_comment] = ACTIONS(3), - }, - [3318] = { - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_RBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4179), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - }, - [3319] = { + [sym_enum_class_body] = STATE(3539), [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), [anon_sym_get] = ACTIONS(3278), [anon_sym_set] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), [anon_sym_while] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3278), [anon_sym_sealed] = ACTIONS(3278), [anon_sym_annotation] = ACTIONS(3278), @@ -381138,5263 +388559,4402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3278), [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3312] = { + [sym_class_body] = STATE(3533), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_RBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_while] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_suspend] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_annotation] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_lateinit] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_tailrec] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_infix] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym_external] = ACTIONS(4555), + [sym_property_modifier] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_open] = ACTIONS(4555), + [anon_sym_vararg] = ACTIONS(4555), + [anon_sym_noinline] = ACTIONS(4555), + [anon_sym_crossinline] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + }, + [3313] = { + [sym_type_constraints] = STATE(3748), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6783), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + }, + [3314] = { + [sym_type_constraints] = STATE(3749), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6787), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3315] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3295), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [3316] = { + [sym_type_constraints] = STATE(3750), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6789), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3317] = { + [sym_type_constraints] = STATE(3710), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3318] = { + [sym_type_constraints] = STATE(3751), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3319] = { + [aux_sym_user_type_repeat1] = STATE(3306), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_by] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [sym__quest] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [sym_label] = ACTIONS(4155), + [anon_sym_in] = ACTIONS(4153), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_QMARK_COLON] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(4155), + [anon_sym_PIPE_PIPE] = ACTIONS(4155), + [anon_sym_else] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS_EQ] = ACTIONS(4155), + [anon_sym_DASH_EQ] = ACTIONS(4155), + [anon_sym_STAR_EQ] = ACTIONS(4155), + [anon_sym_SLASH_EQ] = ACTIONS(4155), + [anon_sym_PERCENT_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ] = ACTIONS(4153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ] = ACTIONS(4153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_BANGin] = ACTIONS(4155), + [anon_sym_is] = ACTIONS(4153), + [anon_sym_BANGis] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_as_QMARK] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), [sym_multiline_comment] = ACTIONS(3), }, [3320] = { - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(1696), - [anon_sym_set] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1698), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(1696), - [anon_sym_sealed] = ACTIONS(1696), - [anon_sym_annotation] = ACTIONS(1696), - [anon_sym_data] = ACTIONS(1696), - [anon_sym_inner] = ACTIONS(1696), - [anon_sym_value] = ACTIONS(1696), - [anon_sym_override] = ACTIONS(1696), - [anon_sym_lateinit] = ACTIONS(1696), - [anon_sym_public] = ACTIONS(1696), - [anon_sym_private] = ACTIONS(1696), - [anon_sym_internal] = ACTIONS(1696), - [anon_sym_protected] = ACTIONS(1696), - [anon_sym_tailrec] = ACTIONS(1696), - [anon_sym_operator] = ACTIONS(1696), - [anon_sym_infix] = ACTIONS(1696), - [anon_sym_inline] = ACTIONS(1696), - [anon_sym_external] = ACTIONS(1696), - [sym_property_modifier] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_final] = ACTIONS(1696), - [anon_sym_open] = ACTIONS(1696), - [anon_sym_vararg] = ACTIONS(1696), - [anon_sym_noinline] = ACTIONS(1696), - [anon_sym_crossinline] = ACTIONS(1696), - [anon_sym_expect] = ACTIONS(1696), - [anon_sym_actual] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_RBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_RPAREN] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4681), + [sym_label] = ACTIONS(4681), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), [sym_multiline_comment] = ACTIONS(3), }, [3321] = { - [aux_sym_nullable_type_repeat1] = STATE(3434), - [sym__alpha_identifier] = ACTIONS(4278), - [anon_sym_AT] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4280), - [anon_sym_as] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(4280), - [anon_sym_COMMA] = ACTIONS(4280), - [anon_sym_by] = ACTIONS(4278), - [anon_sym_LT] = ACTIONS(4278), - [anon_sym_GT] = ACTIONS(4278), - [anon_sym_where] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym_get] = ACTIONS(4278), - [anon_sym_set] = ACTIONS(4278), - [sym__quest] = ACTIONS(6658), - [anon_sym_STAR] = ACTIONS(4278), - [sym_label] = ACTIONS(4280), - [anon_sym_in] = ACTIONS(4278), - [anon_sym_DOT_DOT] = ACTIONS(4280), - [anon_sym_QMARK_COLON] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4280), - [anon_sym_else] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_PLUS_EQ] = ACTIONS(4280), - [anon_sym_DASH_EQ] = ACTIONS(4280), - [anon_sym_STAR_EQ] = ACTIONS(4280), - [anon_sym_SLASH_EQ] = ACTIONS(4280), - [anon_sym_PERCENT_EQ] = ACTIONS(4280), - [anon_sym_BANG_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), - [anon_sym_LT_EQ] = ACTIONS(4280), - [anon_sym_GT_EQ] = ACTIONS(4280), - [anon_sym_BANGin] = ACTIONS(4280), - [anon_sym_is] = ACTIONS(4278), - [anon_sym_BANGis] = ACTIONS(4280), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_SLASH] = ACTIONS(4278), - [anon_sym_PERCENT] = ACTIONS(4278), - [anon_sym_as_QMARK] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_BANG_BANG] = ACTIONS(4280), - [anon_sym_suspend] = ACTIONS(4278), - [anon_sym_sealed] = ACTIONS(4278), - [anon_sym_annotation] = ACTIONS(4278), - [anon_sym_data] = ACTIONS(4278), - [anon_sym_inner] = ACTIONS(4278), - [anon_sym_value] = ACTIONS(4278), - [anon_sym_override] = ACTIONS(4278), - [anon_sym_lateinit] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_internal] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_tailrec] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_infix] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym_external] = ACTIONS(4278), - [sym_property_modifier] = ACTIONS(4278), - [anon_sym_abstract] = ACTIONS(4278), - [anon_sym_final] = ACTIONS(4278), - [anon_sym_open] = ACTIONS(4278), - [anon_sym_vararg] = ACTIONS(4278), - [anon_sym_noinline] = ACTIONS(4278), - [anon_sym_crossinline] = ACTIONS(4278), - [anon_sym_expect] = ACTIONS(4278), - [anon_sym_actual] = ACTIONS(4278), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4280), - [sym__automatic_semicolon] = ACTIONS(4280), - [sym_safe_nav] = ACTIONS(4280), + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_RBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_RPAREN] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_DASH_GT] = ACTIONS(4748), + [sym_label] = ACTIONS(4748), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_while] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), [sym_multiline_comment] = ACTIONS(3), }, [3322] = { - [aux_sym_nullable_type_repeat1] = STATE(3222), - [sym__alpha_identifier] = ACTIONS(4165), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [anon_sym_by] = ACTIONS(4165), - [anon_sym_where] = ACTIONS(4165), - [anon_sym_object] = ACTIONS(4165), - [anon_sym_fun] = ACTIONS(4165), - [anon_sym_SEMI] = ACTIONS(4167), - [anon_sym_get] = ACTIONS(4165), - [anon_sym_set] = ACTIONS(4165), - [anon_sym_this] = ACTIONS(4165), - [anon_sym_super] = ACTIONS(4165), - [sym__quest] = ACTIONS(6606), - [anon_sym_STAR] = ACTIONS(4167), - [sym_label] = ACTIONS(4165), - [anon_sym_in] = ACTIONS(4165), - [anon_sym_null] = ACTIONS(4165), - [anon_sym_if] = ACTIONS(4165), - [anon_sym_else] = ACTIONS(4165), - [anon_sym_when] = ACTIONS(4165), - [anon_sym_try] = ACTIONS(4165), - [anon_sym_throw] = ACTIONS(4165), - [anon_sym_return] = ACTIONS(4165), - [anon_sym_continue] = ACTIONS(4165), - [anon_sym_break] = ACTIONS(4165), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_BANGin] = ACTIONS(4167), - [anon_sym_is] = ACTIONS(4165), - [anon_sym_BANGis] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4165), - [anon_sym_DASH] = ACTIONS(4165), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_BANG] = ACTIONS(4165), - [anon_sym_suspend] = ACTIONS(4165), - [anon_sym_sealed] = ACTIONS(4165), - [anon_sym_annotation] = ACTIONS(4165), - [anon_sym_data] = ACTIONS(4165), - [anon_sym_inner] = ACTIONS(4165), - [anon_sym_value] = ACTIONS(4165), - [anon_sym_override] = ACTIONS(4165), - [anon_sym_lateinit] = ACTIONS(4165), - [anon_sym_public] = ACTIONS(4165), - [anon_sym_private] = ACTIONS(4165), - [anon_sym_internal] = ACTIONS(4165), - [anon_sym_protected] = ACTIONS(4165), - [anon_sym_tailrec] = ACTIONS(4165), - [anon_sym_operator] = ACTIONS(4165), - [anon_sym_infix] = ACTIONS(4165), - [anon_sym_inline] = ACTIONS(4165), - [anon_sym_external] = ACTIONS(4165), - [sym_property_modifier] = ACTIONS(4165), - [anon_sym_abstract] = ACTIONS(4165), - [anon_sym_final] = ACTIONS(4165), - [anon_sym_open] = ACTIONS(4165), - [anon_sym_vararg] = ACTIONS(4165), - [anon_sym_noinline] = ACTIONS(4165), - [anon_sym_crossinline] = ACTIONS(4165), - [anon_sym_expect] = ACTIONS(4165), - [anon_sym_actual] = ACTIONS(4165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4167), - [anon_sym_continue_AT] = ACTIONS(4167), - [anon_sym_break_AT] = ACTIONS(4167), - [sym_real_literal] = ACTIONS(4167), - [sym_integer_literal] = ACTIONS(4165), - [sym_hex_literal] = ACTIONS(4167), - [sym_bin_literal] = ACTIONS(4167), - [anon_sym_true] = ACTIONS(4165), - [anon_sym_false] = ACTIONS(4165), - [anon_sym_SQUOTE] = ACTIONS(4167), - [sym__backtick_identifier] = ACTIONS(4167), - [sym__automatic_semicolon] = ACTIONS(4167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4167), + [sym_type_constraints] = STATE(3652), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [3323] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4236), - [anon_sym_RBRACE] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_COMMA] = ACTIONS(4236), - [anon_sym_by] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4236), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(6660), - [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), - [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), + [sym_type_constraints] = STATE(3641), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [3324] = { - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_RBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4731), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [anon_sym_DASH_GT] = ACTIONS(4731), - [sym_label] = ACTIONS(4731), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_while] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), + [sym_class_body] = STATE(3494), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3325] = { - [sym__alpha_identifier] = ACTIONS(4751), - [anon_sym_AT] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_RBRACK] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4751), - [anon_sym_GT] = ACTIONS(4751), - [anon_sym_where] = ACTIONS(4751), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_get] = ACTIONS(4751), - [anon_sym_set] = ACTIONS(4751), - [anon_sym_STAR] = ACTIONS(4751), - [anon_sym_DASH_GT] = ACTIONS(4753), - [sym_label] = ACTIONS(4753), - [anon_sym_in] = ACTIONS(4751), - [anon_sym_while] = ACTIONS(4751), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_QMARK_COLON] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_else] = ACTIONS(4751), - [anon_sym_COLON_COLON] = ACTIONS(4753), - [anon_sym_PLUS_EQ] = ACTIONS(4753), - [anon_sym_DASH_EQ] = ACTIONS(4753), - [anon_sym_STAR_EQ] = ACTIONS(4753), - [anon_sym_SLASH_EQ] = ACTIONS(4753), - [anon_sym_PERCENT_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4751), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_BANGin] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4751), - [anon_sym_BANGis] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4751), - [anon_sym_SLASH] = ACTIONS(4751), - [anon_sym_PERCENT] = ACTIONS(4751), - [anon_sym_as_QMARK] = ACTIONS(4753), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_BANG_BANG] = ACTIONS(4753), - [anon_sym_suspend] = ACTIONS(4751), - [anon_sym_sealed] = ACTIONS(4751), - [anon_sym_annotation] = ACTIONS(4751), - [anon_sym_data] = ACTIONS(4751), - [anon_sym_inner] = ACTIONS(4751), - [anon_sym_value] = ACTIONS(4751), - [anon_sym_override] = ACTIONS(4751), - [anon_sym_lateinit] = ACTIONS(4751), - [anon_sym_public] = ACTIONS(4751), - [anon_sym_private] = ACTIONS(4751), - [anon_sym_internal] = ACTIONS(4751), - [anon_sym_protected] = ACTIONS(4751), - [anon_sym_tailrec] = ACTIONS(4751), - [anon_sym_operator] = ACTIONS(4751), - [anon_sym_infix] = ACTIONS(4751), - [anon_sym_inline] = ACTIONS(4751), - [anon_sym_external] = ACTIONS(4751), - [sym_property_modifier] = ACTIONS(4751), - [anon_sym_abstract] = ACTIONS(4751), - [anon_sym_final] = ACTIONS(4751), - [anon_sym_open] = ACTIONS(4751), - [anon_sym_vararg] = ACTIONS(4751), - [anon_sym_noinline] = ACTIONS(4751), - [anon_sym_crossinline] = ACTIONS(4751), - [anon_sym_expect] = ACTIONS(4751), - [anon_sym_actual] = ACTIONS(4751), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4753), - [sym_safe_nav] = ACTIONS(4753), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3326] = { - [sym__alpha_identifier] = ACTIONS(4755), - [anon_sym_AT] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4757), - [anon_sym_RBRACK] = ACTIONS(4757), - [anon_sym_as] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(4755), - [anon_sym_LBRACE] = ACTIONS(4757), - [anon_sym_RBRACE] = ACTIONS(4757), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym_COMMA] = ACTIONS(4757), - [anon_sym_RPAREN] = ACTIONS(4757), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_where] = ACTIONS(4755), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4757), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4755), - [anon_sym_DASH_GT] = ACTIONS(4757), - [sym_label] = ACTIONS(4757), - [anon_sym_in] = ACTIONS(4755), - [anon_sym_while] = ACTIONS(4755), - [anon_sym_DOT_DOT] = ACTIONS(4757), - [anon_sym_QMARK_COLON] = ACTIONS(4757), - [anon_sym_AMP_AMP] = ACTIONS(4757), - [anon_sym_PIPE_PIPE] = ACTIONS(4757), - [anon_sym_else] = ACTIONS(4755), - [anon_sym_COLON_COLON] = ACTIONS(4757), - [anon_sym_PLUS_EQ] = ACTIONS(4757), - [anon_sym_DASH_EQ] = ACTIONS(4757), - [anon_sym_STAR_EQ] = ACTIONS(4757), - [anon_sym_SLASH_EQ] = ACTIONS(4757), - [anon_sym_PERCENT_EQ] = ACTIONS(4757), - [anon_sym_BANG_EQ] = ACTIONS(4755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4757), - [anon_sym_EQ_EQ] = ACTIONS(4755), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4757), - [anon_sym_LT_EQ] = ACTIONS(4757), - [anon_sym_GT_EQ] = ACTIONS(4757), - [anon_sym_BANGin] = ACTIONS(4757), - [anon_sym_is] = ACTIONS(4755), - [anon_sym_BANGis] = ACTIONS(4757), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4755), - [anon_sym_as_QMARK] = ACTIONS(4757), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_BANG_BANG] = ACTIONS(4757), - [anon_sym_suspend] = ACTIONS(4755), - [anon_sym_sealed] = ACTIONS(4755), - [anon_sym_annotation] = ACTIONS(4755), - [anon_sym_data] = ACTIONS(4755), - [anon_sym_inner] = ACTIONS(4755), - [anon_sym_value] = ACTIONS(4755), - [anon_sym_override] = ACTIONS(4755), - [anon_sym_lateinit] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_internal] = ACTIONS(4755), - [anon_sym_protected] = ACTIONS(4755), - [anon_sym_tailrec] = ACTIONS(4755), - [anon_sym_operator] = ACTIONS(4755), - [anon_sym_infix] = ACTIONS(4755), - [anon_sym_inline] = ACTIONS(4755), - [anon_sym_external] = ACTIONS(4755), - [sym_property_modifier] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_open] = ACTIONS(4755), - [anon_sym_vararg] = ACTIONS(4755), - [anon_sym_noinline] = ACTIONS(4755), - [anon_sym_crossinline] = ACTIONS(4755), - [anon_sym_expect] = ACTIONS(4755), - [anon_sym_actual] = ACTIONS(4755), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4757), - [sym_safe_nav] = ACTIONS(4757), + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_RBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [anon_sym_DASH_GT] = ACTIONS(4742), + [sym_label] = ACTIONS(4742), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_while] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_suspend] = ACTIONS(4740), + [anon_sym_sealed] = ACTIONS(4740), + [anon_sym_annotation] = ACTIONS(4740), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_override] = ACTIONS(4740), + [anon_sym_lateinit] = ACTIONS(4740), + [anon_sym_public] = ACTIONS(4740), + [anon_sym_private] = ACTIONS(4740), + [anon_sym_internal] = ACTIONS(4740), + [anon_sym_protected] = ACTIONS(4740), + [anon_sym_tailrec] = ACTIONS(4740), + [anon_sym_operator] = ACTIONS(4740), + [anon_sym_infix] = ACTIONS(4740), + [anon_sym_inline] = ACTIONS(4740), + [anon_sym_external] = ACTIONS(4740), + [sym_property_modifier] = ACTIONS(4740), + [anon_sym_abstract] = ACTIONS(4740), + [anon_sym_final] = ACTIONS(4740), + [anon_sym_open] = ACTIONS(4740), + [anon_sym_vararg] = ACTIONS(4740), + [anon_sym_noinline] = ACTIONS(4740), + [anon_sym_crossinline] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(6802), + [sym__backtick_identifier] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), [sym_multiline_comment] = ACTIONS(3), }, [3327] = { - [sym__alpha_identifier] = ACTIONS(4759), - [anon_sym_AT] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4761), - [anon_sym_RBRACK] = ACTIONS(4761), - [anon_sym_as] = ACTIONS(4759), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_LBRACE] = ACTIONS(4761), - [anon_sym_RBRACE] = ACTIONS(4761), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym_COMMA] = ACTIONS(4761), - [anon_sym_RPAREN] = ACTIONS(4761), - [anon_sym_LT] = ACTIONS(4759), - [anon_sym_GT] = ACTIONS(4759), - [anon_sym_where] = ACTIONS(4759), - [anon_sym_DOT] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_get] = ACTIONS(4759), - [anon_sym_set] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(4759), - [anon_sym_DASH_GT] = ACTIONS(4761), - [sym_label] = ACTIONS(4761), - [anon_sym_in] = ACTIONS(4759), - [anon_sym_while] = ACTIONS(4759), - [anon_sym_DOT_DOT] = ACTIONS(4761), - [anon_sym_QMARK_COLON] = ACTIONS(4761), - [anon_sym_AMP_AMP] = ACTIONS(4761), - [anon_sym_PIPE_PIPE] = ACTIONS(4761), - [anon_sym_else] = ACTIONS(4759), - [anon_sym_COLON_COLON] = ACTIONS(4761), - [anon_sym_PLUS_EQ] = ACTIONS(4761), - [anon_sym_DASH_EQ] = ACTIONS(4761), - [anon_sym_STAR_EQ] = ACTIONS(4761), - [anon_sym_SLASH_EQ] = ACTIONS(4761), - [anon_sym_PERCENT_EQ] = ACTIONS(4761), - [anon_sym_BANG_EQ] = ACTIONS(4759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4761), - [anon_sym_EQ_EQ] = ACTIONS(4759), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4761), - [anon_sym_LT_EQ] = ACTIONS(4761), - [anon_sym_GT_EQ] = ACTIONS(4761), - [anon_sym_BANGin] = ACTIONS(4761), - [anon_sym_is] = ACTIONS(4759), - [anon_sym_BANGis] = ACTIONS(4761), - [anon_sym_PLUS] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4759), - [anon_sym_SLASH] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_as_QMARK] = ACTIONS(4761), - [anon_sym_PLUS_PLUS] = ACTIONS(4761), - [anon_sym_DASH_DASH] = ACTIONS(4761), - [anon_sym_BANG_BANG] = ACTIONS(4761), - [anon_sym_suspend] = ACTIONS(4759), - [anon_sym_sealed] = ACTIONS(4759), - [anon_sym_annotation] = ACTIONS(4759), - [anon_sym_data] = ACTIONS(4759), - [anon_sym_inner] = ACTIONS(4759), - [anon_sym_value] = ACTIONS(4759), - [anon_sym_override] = ACTIONS(4759), - [anon_sym_lateinit] = ACTIONS(4759), - [anon_sym_public] = ACTIONS(4759), - [anon_sym_private] = ACTIONS(4759), - [anon_sym_internal] = ACTIONS(4759), - [anon_sym_protected] = ACTIONS(4759), - [anon_sym_tailrec] = ACTIONS(4759), - [anon_sym_operator] = ACTIONS(4759), - [anon_sym_infix] = ACTIONS(4759), - [anon_sym_inline] = ACTIONS(4759), - [anon_sym_external] = ACTIONS(4759), - [sym_property_modifier] = ACTIONS(4759), - [anon_sym_abstract] = ACTIONS(4759), - [anon_sym_final] = ACTIONS(4759), - [anon_sym_open] = ACTIONS(4759), - [anon_sym_vararg] = ACTIONS(4759), - [anon_sym_noinline] = ACTIONS(4759), - [anon_sym_crossinline] = ACTIONS(4759), - [anon_sym_expect] = ACTIONS(4759), - [anon_sym_actual] = ACTIONS(4759), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4761), - [sym_safe_nav] = ACTIONS(4761), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [3328] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_RPAREN] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [anon_sym_DASH_GT] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_while] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3329] = { - [sym_function_body] = STATE(3337), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym_class_body] = STATE(3543), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), }, [3330] = { - [sym__alpha_identifier] = ACTIONS(5116), - [anon_sym_AT] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5116), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5116), - [anon_sym_object] = ACTIONS(5116), - [anon_sym_fun] = ACTIONS(5116), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_get] = ACTIONS(5116), - [anon_sym_set] = ACTIONS(5116), - [anon_sym_this] = ACTIONS(5116), - [anon_sym_super] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [sym_label] = ACTIONS(5116), - [anon_sym_in] = ACTIONS(5116), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_QMARK_COLON] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_null] = ACTIONS(5116), - [anon_sym_if] = ACTIONS(5116), - [anon_sym_else] = ACTIONS(5116), - [anon_sym_when] = ACTIONS(5116), - [anon_sym_try] = ACTIONS(5116), - [anon_sym_throw] = ACTIONS(5116), - [anon_sym_return] = ACTIONS(5116), - [anon_sym_continue] = ACTIONS(5116), - [anon_sym_break] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_BANGin] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5116), - [anon_sym_BANGis] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_as_QMARK] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_BANG_BANG] = ACTIONS(5118), - [anon_sym_data] = ACTIONS(5116), - [anon_sym_inner] = ACTIONS(5116), - [anon_sym_value] = ACTIONS(5116), - [anon_sym_expect] = ACTIONS(5116), - [anon_sym_actual] = ACTIONS(5116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5118), - [anon_sym_continue_AT] = ACTIONS(5118), - [anon_sym_break_AT] = ACTIONS(5118), - [sym_real_literal] = ACTIONS(5118), - [sym_integer_literal] = ACTIONS(5116), - [sym_hex_literal] = ACTIONS(5118), - [sym_bin_literal] = ACTIONS(5118), - [anon_sym_true] = ACTIONS(5116), - [anon_sym_false] = ACTIONS(5116), - [anon_sym_SQUOTE] = ACTIONS(5118), - [sym__backtick_identifier] = ACTIONS(5118), - [sym__automatic_semicolon] = ACTIONS(5118), - [sym_safe_nav] = ACTIONS(5118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5118), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3331] = { - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_RBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(4476), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_RPAREN] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_DASH_GT] = ACTIONS(4476), - [sym_label] = ACTIONS(4476), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_while] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_RBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_DASH_GT] = ACTIONS(4712), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_AT2] = ACTIONS(6804), + [sym__backtick_identifier] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), [sym_multiline_comment] = ACTIONS(3), }, [3332] = { - [sym__alpha_identifier] = ACTIONS(5092), - [anon_sym_AT] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5092), - [anon_sym_EQ] = ACTIONS(5092), - [anon_sym_LBRACE] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5092), - [anon_sym_object] = ACTIONS(5092), - [anon_sym_fun] = ACTIONS(5092), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_SEMI] = ACTIONS(5094), - [anon_sym_get] = ACTIONS(5092), - [anon_sym_set] = ACTIONS(5092), - [anon_sym_this] = ACTIONS(5092), - [anon_sym_super] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5092), - [sym_label] = ACTIONS(5092), - [anon_sym_in] = ACTIONS(5092), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_QMARK_COLON] = ACTIONS(5094), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_null] = ACTIONS(5092), - [anon_sym_if] = ACTIONS(5092), - [anon_sym_else] = ACTIONS(5092), - [anon_sym_when] = ACTIONS(5092), - [anon_sym_try] = ACTIONS(5092), - [anon_sym_throw] = ACTIONS(5092), - [anon_sym_return] = ACTIONS(5092), - [anon_sym_continue] = ACTIONS(5092), - [anon_sym_break] = ACTIONS(5092), - [anon_sym_COLON_COLON] = ACTIONS(5094), - [anon_sym_PLUS_EQ] = ACTIONS(5094), - [anon_sym_DASH_EQ] = ACTIONS(5094), - [anon_sym_STAR_EQ] = ACTIONS(5094), - [anon_sym_SLASH_EQ] = ACTIONS(5094), - [anon_sym_PERCENT_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5092), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5092), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_BANGin] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5092), - [anon_sym_BANGis] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5092), - [anon_sym_as_QMARK] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_BANG_BANG] = ACTIONS(5094), - [anon_sym_data] = ACTIONS(5092), - [anon_sym_inner] = ACTIONS(5092), - [anon_sym_value] = ACTIONS(5092), - [anon_sym_expect] = ACTIONS(5092), - [anon_sym_actual] = ACTIONS(5092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5094), - [anon_sym_continue_AT] = ACTIONS(5094), - [anon_sym_break_AT] = ACTIONS(5094), - [sym_real_literal] = ACTIONS(5094), - [sym_integer_literal] = ACTIONS(5092), - [sym_hex_literal] = ACTIONS(5094), - [sym_bin_literal] = ACTIONS(5094), - [anon_sym_true] = ACTIONS(5092), - [anon_sym_false] = ACTIONS(5092), - [anon_sym_SQUOTE] = ACTIONS(5094), - [sym__backtick_identifier] = ACTIONS(5094), - [sym__automatic_semicolon] = ACTIONS(5094), - [sym_safe_nav] = ACTIONS(5094), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5094), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_by] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [sym__quest] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), }, [3333] = { - [sym__alpha_identifier] = ACTIONS(5124), - [anon_sym_AT] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_RBRACK] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5124), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_get] = ACTIONS(5124), - [anon_sym_set] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [anon_sym_DASH_GT] = ACTIONS(5126), - [sym_label] = ACTIONS(5126), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_while] = ACTIONS(5124), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_QMARK_COLON] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_else] = ACTIONS(5124), - [anon_sym_COLON_COLON] = ACTIONS(5126), - [anon_sym_PLUS_EQ] = ACTIONS(5126), - [anon_sym_DASH_EQ] = ACTIONS(5126), - [anon_sym_STAR_EQ] = ACTIONS(5126), - [anon_sym_SLASH_EQ] = ACTIONS(5126), - [anon_sym_PERCENT_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5124), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5124), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_BANGin] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5124), - [anon_sym_BANGis] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_as_QMARK] = ACTIONS(5126), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_BANG_BANG] = ACTIONS(5126), - [anon_sym_suspend] = ACTIONS(5124), - [anon_sym_sealed] = ACTIONS(5124), - [anon_sym_annotation] = ACTIONS(5124), - [anon_sym_data] = ACTIONS(5124), - [anon_sym_inner] = ACTIONS(5124), - [anon_sym_value] = ACTIONS(5124), - [anon_sym_override] = ACTIONS(5124), - [anon_sym_lateinit] = ACTIONS(5124), - [anon_sym_public] = ACTIONS(5124), - [anon_sym_private] = ACTIONS(5124), - [anon_sym_internal] = ACTIONS(5124), - [anon_sym_protected] = ACTIONS(5124), - [anon_sym_tailrec] = ACTIONS(5124), - [anon_sym_operator] = ACTIONS(5124), - [anon_sym_infix] = ACTIONS(5124), - [anon_sym_inline] = ACTIONS(5124), - [anon_sym_external] = ACTIONS(5124), - [sym_property_modifier] = ACTIONS(5124), - [anon_sym_abstract] = ACTIONS(5124), - [anon_sym_final] = ACTIONS(5124), - [anon_sym_open] = ACTIONS(5124), - [anon_sym_vararg] = ACTIONS(5124), - [anon_sym_noinline] = ACTIONS(5124), - [anon_sym_crossinline] = ACTIONS(5124), - [anon_sym_expect] = ACTIONS(5124), - [anon_sym_actual] = ACTIONS(5124), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5126), - [sym_safe_nav] = ACTIONS(5126), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3334] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_object] = ACTIONS(5003), - [anon_sym_fun] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_this] = ACTIONS(5003), - [anon_sym_super] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [sym_label] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_null] = ACTIONS(5003), - [anon_sym_if] = ACTIONS(5003), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_try] = ACTIONS(5003), - [anon_sym_throw] = ACTIONS(5003), - [anon_sym_return] = ACTIONS(5003), - [anon_sym_continue] = ACTIONS(5003), - [anon_sym_break] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_RBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_RPAREN] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_DASH_GT] = ACTIONS(4752), + [sym_label] = ACTIONS(4752), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_while] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), }, [3335] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_object] = ACTIONS(4931), - [anon_sym_fun] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_this] = ACTIONS(4931), - [anon_sym_super] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [sym_label] = ACTIONS(4931), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_null] = ACTIONS(4931), - [anon_sym_if] = ACTIONS(4931), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_try] = ACTIONS(4931), - [anon_sym_throw] = ACTIONS(4931), - [anon_sym_return] = ACTIONS(4931), - [anon_sym_continue] = ACTIONS(4931), - [anon_sym_break] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_value] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4933), - [anon_sym_continue_AT] = ACTIONS(4933), - [anon_sym_break_AT] = ACTIONS(4933), - [sym_real_literal] = ACTIONS(4933), - [sym_integer_literal] = ACTIONS(4931), - [sym_hex_literal] = ACTIONS(4933), - [sym_bin_literal] = ACTIONS(4933), - [anon_sym_true] = ACTIONS(4931), - [anon_sym_false] = ACTIONS(4931), - [anon_sym_SQUOTE] = ACTIONS(4933), - [sym__backtick_identifier] = ACTIONS(4933), - [sym__automatic_semicolon] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4933), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3336] = { - [sym_function_body] = STATE(3334), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3337] = { - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3338] = { - [sym__alpha_identifier] = ACTIONS(4807), - [anon_sym_AT] = ACTIONS(4809), - [anon_sym_LBRACK] = ACTIONS(4809), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4807), - [anon_sym_LBRACE] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_LPAREN] = ACTIONS(4809), - [anon_sym_COMMA] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(4807), - [anon_sym_GT] = ACTIONS(4807), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_object] = ACTIONS(4807), - [anon_sym_fun] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_SEMI] = ACTIONS(4809), - [anon_sym_get] = ACTIONS(4807), - [anon_sym_set] = ACTIONS(4807), - [anon_sym_this] = ACTIONS(4807), - [anon_sym_super] = ACTIONS(4807), - [anon_sym_STAR] = ACTIONS(4807), - [sym_label] = ACTIONS(4807), - [anon_sym_in] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4809), - [anon_sym_QMARK_COLON] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_null] = ACTIONS(4807), - [anon_sym_if] = ACTIONS(4807), - [anon_sym_else] = ACTIONS(4807), - [anon_sym_when] = ACTIONS(4807), - [anon_sym_try] = ACTIONS(4807), - [anon_sym_throw] = ACTIONS(4807), - [anon_sym_return] = ACTIONS(4807), - [anon_sym_continue] = ACTIONS(4807), - [anon_sym_break] = ACTIONS(4807), - [anon_sym_COLON_COLON] = ACTIONS(4809), - [anon_sym_PLUS_EQ] = ACTIONS(4809), - [anon_sym_DASH_EQ] = ACTIONS(4809), - [anon_sym_STAR_EQ] = ACTIONS(4809), - [anon_sym_SLASH_EQ] = ACTIONS(4809), - [anon_sym_PERCENT_EQ] = ACTIONS(4809), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4809), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4809), - [anon_sym_LT_EQ] = ACTIONS(4809), - [anon_sym_GT_EQ] = ACTIONS(4809), - [anon_sym_BANGin] = ACTIONS(4809), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_BANGis] = ACTIONS(4809), - [anon_sym_PLUS] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4807), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_as_QMARK] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4809), - [anon_sym_DASH_DASH] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4807), - [anon_sym_BANG_BANG] = ACTIONS(4809), - [anon_sym_data] = ACTIONS(4807), - [anon_sym_inner] = ACTIONS(4807), - [anon_sym_value] = ACTIONS(4807), - [anon_sym_expect] = ACTIONS(4807), - [anon_sym_actual] = ACTIONS(4807), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4809), - [anon_sym_continue_AT] = ACTIONS(4809), - [anon_sym_break_AT] = ACTIONS(4809), - [sym_real_literal] = ACTIONS(4809), - [sym_integer_literal] = ACTIONS(4807), - [sym_hex_literal] = ACTIONS(4809), - [sym_bin_literal] = ACTIONS(4809), - [anon_sym_true] = ACTIONS(4807), - [anon_sym_false] = ACTIONS(4807), - [anon_sym_SQUOTE] = ACTIONS(4809), - [sym__backtick_identifier] = ACTIONS(4809), - [sym__automatic_semicolon] = ACTIONS(4809), - [sym_safe_nav] = ACTIONS(4809), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4809), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3339] = { - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4472), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3340] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3341] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_DASH_GT] = ACTIONS(5039), - [sym_label] = ACTIONS(5039), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_while] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_suspend] = ACTIONS(5037), - [anon_sym_sealed] = ACTIONS(5037), - [anon_sym_annotation] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_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_class_body] = STATE(3483), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [anon_sym_DASH_GT] = ACTIONS(4549), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_while] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_suspend] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_annotation] = ACTIONS(4547), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_lateinit] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_tailrec] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_infix] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym_external] = ACTIONS(4547), + [sym_property_modifier] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_vararg] = ACTIONS(4547), + [anon_sym_noinline] = ACTIONS(4547), + [anon_sym_crossinline] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), [sym_multiline_comment] = ACTIONS(3), }, [3342] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_RBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [anon_sym_DASH_GT] = ACTIONS(4506), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), + [sym_class_body] = STATE(3565), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3343] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_object] = ACTIONS(4935), - [anon_sym_fun] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_this] = ACTIONS(4935), - [anon_sym_super] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [sym_label] = ACTIONS(4935), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(4935), - [anon_sym_if] = ACTIONS(4935), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_when] = ACTIONS(4935), - [anon_sym_try] = ACTIONS(4935), - [anon_sym_throw] = ACTIONS(4935), - [anon_sym_return] = ACTIONS(4935), - [anon_sym_continue] = ACTIONS(4935), - [anon_sym_break] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_value] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4937), - [anon_sym_continue_AT] = ACTIONS(4937), - [anon_sym_break_AT] = ACTIONS(4937), - [sym_real_literal] = ACTIONS(4937), - [sym_integer_literal] = ACTIONS(4935), - [sym_hex_literal] = ACTIONS(4937), - [sym_bin_literal] = ACTIONS(4937), - [anon_sym_true] = ACTIONS(4935), - [anon_sym_false] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4937), - [sym__backtick_identifier] = ACTIONS(4937), - [sym__automatic_semicolon] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4937), + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [anon_sym_DASH_GT] = ACTIONS(4756), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_while] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), }, [3344] = { - [sym__alpha_identifier] = ACTIONS(4829), - [anon_sym_AT] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4831), - [anon_sym_RBRACE] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4831), - [anon_sym_get] = ACTIONS(4829), - [anon_sym_set] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4831), - [sym_label] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_while] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4831), - [anon_sym_QMARK_COLON] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_else] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4831), - [anon_sym_PLUS_EQ] = ACTIONS(4831), - [anon_sym_DASH_EQ] = ACTIONS(4831), - [anon_sym_STAR_EQ] = ACTIONS(4831), - [anon_sym_SLASH_EQ] = ACTIONS(4831), - [anon_sym_PERCENT_EQ] = ACTIONS(4831), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4831), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4831), - [anon_sym_LT_EQ] = ACTIONS(4831), - [anon_sym_GT_EQ] = ACTIONS(4831), - [anon_sym_BANGin] = ACTIONS(4831), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_BANGis] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_as_QMARK] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_BANG_BANG] = ACTIONS(4831), - [anon_sym_suspend] = ACTIONS(4829), - [anon_sym_sealed] = ACTIONS(4829), - [anon_sym_annotation] = ACTIONS(4829), - [anon_sym_data] = ACTIONS(4829), - [anon_sym_inner] = ACTIONS(4829), - [anon_sym_value] = ACTIONS(4829), - [anon_sym_override] = ACTIONS(4829), - [anon_sym_lateinit] = ACTIONS(4829), - [anon_sym_public] = ACTIONS(4829), - [anon_sym_private] = ACTIONS(4829), - [anon_sym_internal] = ACTIONS(4829), - [anon_sym_protected] = ACTIONS(4829), - [anon_sym_tailrec] = ACTIONS(4829), - [anon_sym_operator] = ACTIONS(4829), - [anon_sym_infix] = ACTIONS(4829), - [anon_sym_inline] = ACTIONS(4829), - [anon_sym_external] = ACTIONS(4829), - [sym_property_modifier] = ACTIONS(4829), - [anon_sym_abstract] = ACTIONS(4829), - [anon_sym_final] = ACTIONS(4829), - [anon_sym_open] = ACTIONS(4829), - [anon_sym_vararg] = ACTIONS(4829), - [anon_sym_noinline] = ACTIONS(4829), - [anon_sym_crossinline] = ACTIONS(4829), - [anon_sym_expect] = ACTIONS(4829), - [anon_sym_actual] = ACTIONS(4829), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4831), - [sym_safe_nav] = ACTIONS(4831), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1992), + [sym__in_operator] = STATE(1993), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1996), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2018), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(6730), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(6732), + [anon_sym_QMARK_COLON] = ACTIONS(6734), + [anon_sym_AMP_AMP] = ACTIONS(6736), + [anon_sym_PIPE_PIPE] = ACTIONS(6738), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(6742), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6742), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6744), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_BANGin] = ACTIONS(6748), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6726), + [anon_sym_PERCENT] = ACTIONS(6726), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3345] = { - [aux_sym_nullable_type_repeat1] = STATE(3321), - [sym__alpha_identifier] = ACTIONS(4165), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_as] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [anon_sym_by] = ACTIONS(4165), - [anon_sym_LT] = ACTIONS(4165), - [anon_sym_GT] = ACTIONS(4165), - [anon_sym_where] = ACTIONS(4165), - [anon_sym_DOT] = ACTIONS(4165), - [anon_sym_SEMI] = ACTIONS(4167), - [anon_sym_get] = ACTIONS(4165), - [anon_sym_set] = ACTIONS(4165), - [sym__quest] = ACTIONS(6662), - [anon_sym_STAR] = ACTIONS(4165), - [sym_label] = ACTIONS(4167), - [anon_sym_in] = ACTIONS(4165), - [anon_sym_DOT_DOT] = ACTIONS(4167), - [anon_sym_QMARK_COLON] = ACTIONS(4167), - [anon_sym_AMP_AMP] = ACTIONS(4167), - [anon_sym_PIPE_PIPE] = ACTIONS(4167), - [anon_sym_else] = ACTIONS(4165), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_PLUS_EQ] = ACTIONS(4167), - [anon_sym_DASH_EQ] = ACTIONS(4167), - [anon_sym_STAR_EQ] = ACTIONS(4167), - [anon_sym_SLASH_EQ] = ACTIONS(4167), - [anon_sym_PERCENT_EQ] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), - [anon_sym_EQ_EQ] = ACTIONS(4165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), - [anon_sym_LT_EQ] = ACTIONS(4167), - [anon_sym_GT_EQ] = ACTIONS(4167), - [anon_sym_BANGin] = ACTIONS(4167), - [anon_sym_is] = ACTIONS(4165), - [anon_sym_BANGis] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4165), - [anon_sym_DASH] = ACTIONS(4165), - [anon_sym_SLASH] = ACTIONS(4165), - [anon_sym_PERCENT] = ACTIONS(4165), - [anon_sym_as_QMARK] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_BANG_BANG] = ACTIONS(4167), - [anon_sym_suspend] = ACTIONS(4165), - [anon_sym_sealed] = ACTIONS(4165), - [anon_sym_annotation] = ACTIONS(4165), - [anon_sym_data] = ACTIONS(4165), - [anon_sym_inner] = ACTIONS(4165), - [anon_sym_value] = ACTIONS(4165), - [anon_sym_override] = ACTIONS(4165), - [anon_sym_lateinit] = ACTIONS(4165), - [anon_sym_public] = ACTIONS(4165), - [anon_sym_private] = ACTIONS(4165), - [anon_sym_internal] = ACTIONS(4165), - [anon_sym_protected] = ACTIONS(4165), - [anon_sym_tailrec] = ACTIONS(4165), - [anon_sym_operator] = ACTIONS(4165), - [anon_sym_infix] = ACTIONS(4165), - [anon_sym_inline] = ACTIONS(4165), - [anon_sym_external] = ACTIONS(4165), - [sym_property_modifier] = ACTIONS(4165), - [anon_sym_abstract] = ACTIONS(4165), - [anon_sym_final] = ACTIONS(4165), - [anon_sym_open] = ACTIONS(4165), - [anon_sym_vararg] = ACTIONS(4165), - [anon_sym_noinline] = ACTIONS(4165), - [anon_sym_crossinline] = ACTIONS(4165), - [anon_sym_expect] = ACTIONS(4165), - [anon_sym_actual] = ACTIONS(4165), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4167), - [sym__automatic_semicolon] = ACTIONS(4167), - [sym_safe_nav] = ACTIONS(4167), + [sym_enum_class_body] = STATE(3460), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_DASH_GT] = ACTIONS(4569), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_while] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, [3346] = { - [sym__alpha_identifier] = ACTIONS(4346), - [anon_sym_AT] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_as] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(4346), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4346), - [anon_sym_GT] = ACTIONS(4346), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(4346), - [anon_sym_SEMI] = ACTIONS(4348), - [anon_sym_get] = ACTIONS(4346), - [anon_sym_set] = ACTIONS(4346), - [sym__quest] = ACTIONS(4346), - [anon_sym_STAR] = ACTIONS(4346), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4348), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_QMARK_COLON] = ACTIONS(4348), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_else] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(4348), - [anon_sym_PLUS_EQ] = ACTIONS(4348), - [anon_sym_DASH_EQ] = ACTIONS(4348), - [anon_sym_STAR_EQ] = ACTIONS(4348), - [anon_sym_SLASH_EQ] = ACTIONS(4348), - [anon_sym_PERCENT_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4348), - [anon_sym_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_BANGin] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4346), - [anon_sym_BANGis] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4346), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_SLASH] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_as_QMARK] = ACTIONS(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_BANG_BANG] = ACTIONS(4348), - [anon_sym_suspend] = ACTIONS(4346), - [anon_sym_sealed] = ACTIONS(4346), - [anon_sym_annotation] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4346), - [anon_sym_inner] = ACTIONS(4346), - [anon_sym_value] = ACTIONS(4346), - [anon_sym_override] = ACTIONS(4346), - [anon_sym_lateinit] = ACTIONS(4346), - [anon_sym_public] = ACTIONS(4346), - [anon_sym_private] = ACTIONS(4346), - [anon_sym_internal] = ACTIONS(4346), - [anon_sym_protected] = ACTIONS(4346), - [anon_sym_tailrec] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(4346), - [anon_sym_infix] = ACTIONS(4346), - [anon_sym_inline] = ACTIONS(4346), - [anon_sym_external] = ACTIONS(4346), - [sym_property_modifier] = ACTIONS(4346), - [anon_sym_abstract] = ACTIONS(4346), - [anon_sym_final] = ACTIONS(4346), - [anon_sym_open] = ACTIONS(4346), - [anon_sym_vararg] = ACTIONS(4346), - [anon_sym_noinline] = ACTIONS(4346), - [anon_sym_crossinline] = ACTIONS(4346), - [anon_sym_expect] = ACTIONS(4346), - [anon_sym_actual] = ACTIONS(4346), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4348), - [sym__automatic_semicolon] = ACTIONS(4348), - [sym_safe_nav] = ACTIONS(4348), + [sym_class_body] = STATE(3517), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_RPAREN] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4357), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_while] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), }, [3347] = { - [sym__alpha_identifier] = ACTIONS(5053), - [anon_sym_AT] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [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_DOT] = 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), - [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), + [sym_catch_block] = STATE(3347), + [aux_sym_try_expression_repeat1] = STATE(3347), + [sym__alpha_identifier] = ACTIONS(4130), + [anon_sym_AT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4130), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4130), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [sym_label] = ACTIONS(4132), + [anon_sym_in] = ACTIONS(4130), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_QMARK_COLON] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_else] = ACTIONS(4130), + [anon_sym_catch] = ACTIONS(6806), + [anon_sym_finally] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4132), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_BANGin] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_as_QMARK] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_BANG_BANG] = ACTIONS(4132), + [anon_sym_suspend] = ACTIONS(4130), + [anon_sym_sealed] = ACTIONS(4130), + [anon_sym_annotation] = ACTIONS(4130), + [anon_sym_data] = ACTIONS(4130), + [anon_sym_inner] = ACTIONS(4130), + [anon_sym_value] = ACTIONS(4130), + [anon_sym_override] = ACTIONS(4130), + [anon_sym_lateinit] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_internal] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_tailrec] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_infix] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym_external] = ACTIONS(4130), + [sym_property_modifier] = ACTIONS(4130), + [anon_sym_abstract] = ACTIONS(4130), + [anon_sym_final] = ACTIONS(4130), + [anon_sym_open] = ACTIONS(4130), + [anon_sym_vararg] = ACTIONS(4130), + [anon_sym_noinline] = ACTIONS(4130), + [anon_sym_crossinline] = ACTIONS(4130), + [anon_sym_expect] = ACTIONS(4130), + [anon_sym_actual] = ACTIONS(4130), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4132), + [sym__automatic_semicolon] = ACTIONS(4132), + [sym_safe_nav] = ACTIONS(4132), + [sym_multiline_comment] = ACTIONS(3), }, [3348] = { - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_RBRACK] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_DASH_GT] = ACTIONS(4704), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_while] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4704), + [anon_sym_QMARK_COLON] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_PERCENT_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ] = ACTIONS(4702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4704), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_as_QMARK] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), [sym_multiline_comment] = ACTIONS(3), }, [3349] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_object] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_this] = ACTIONS(4999), - [anon_sym_super] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [sym_label] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_throw] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_continue] = ACTIONS(4999), - [anon_sym_break] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_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), - [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), + [sym_type_constraints] = STATE(3633), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), }, [3350] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_where] = ACTIONS(4963), - [anon_sym_object] = ACTIONS(4963), - [anon_sym_fun] = ACTIONS(4963), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym_get] = ACTIONS(4963), - [anon_sym_set] = ACTIONS(4963), - [anon_sym_this] = ACTIONS(4963), - [anon_sym_super] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [sym_label] = ACTIONS(4963), - [anon_sym_in] = ACTIONS(4963), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_QMARK_COLON] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_null] = ACTIONS(4963), - [anon_sym_if] = ACTIONS(4963), - [anon_sym_else] = ACTIONS(4963), - [anon_sym_when] = ACTIONS(4963), - [anon_sym_try] = ACTIONS(4963), - [anon_sym_throw] = ACTIONS(4963), - [anon_sym_return] = ACTIONS(4963), - [anon_sym_continue] = ACTIONS(4963), - [anon_sym_break] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4963), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_BANGin] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4963), - [anon_sym_BANGis] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_as_QMARK] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_BANG_BANG] = ACTIONS(4965), - [anon_sym_data] = ACTIONS(4963), - [anon_sym_inner] = ACTIONS(4963), - [anon_sym_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), - [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), + [sym_type_constraints] = STATE(3647), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [3351] = { - [sym__alpha_identifier] = ACTIONS(4951), - [anon_sym_AT] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_as] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_where] = ACTIONS(4951), - [anon_sym_object] = ACTIONS(4951), - [anon_sym_fun] = ACTIONS(4951), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym_get] = ACTIONS(4951), - [anon_sym_set] = ACTIONS(4951), - [anon_sym_this] = ACTIONS(4951), - [anon_sym_super] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [sym_label] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4951), - [anon_sym_DOT_DOT] = ACTIONS(4953), - [anon_sym_QMARK_COLON] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_null] = ACTIONS(4951), - [anon_sym_if] = ACTIONS(4951), - [anon_sym_else] = ACTIONS(4951), - [anon_sym_when] = ACTIONS(4951), - [anon_sym_try] = ACTIONS(4951), - [anon_sym_throw] = ACTIONS(4951), - [anon_sym_return] = ACTIONS(4951), - [anon_sym_continue] = ACTIONS(4951), - [anon_sym_break] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [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(4951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_BANGin] = ACTIONS(4953), - [anon_sym_is] = ACTIONS(4951), - [anon_sym_BANGis] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_as_QMARK] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_BANG_BANG] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4951), - [anon_sym_inner] = ACTIONS(4951), - [anon_sym_value] = ACTIONS(4951), - [anon_sym_expect] = ACTIONS(4951), - [anon_sym_actual] = ACTIONS(4951), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4953), - [anon_sym_continue_AT] = ACTIONS(4953), - [anon_sym_break_AT] = ACTIONS(4953), - [sym_real_literal] = ACTIONS(4953), - [sym_integer_literal] = ACTIONS(4951), - [sym_hex_literal] = ACTIONS(4953), - [sym_bin_literal] = ACTIONS(4953), - [anon_sym_true] = ACTIONS(4951), - [anon_sym_false] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4953), - [sym__backtick_identifier] = ACTIONS(4953), - [sym__automatic_semicolon] = ACTIONS(4953), - [sym_safe_nav] = ACTIONS(4953), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4953), + [sym_enum_class_body] = STATE(3466), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_RBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_DASH_GT] = ACTIONS(4483), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_while] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), + [sym_multiline_comment] = ACTIONS(3), }, [3352] = { - [sym__alpha_identifier] = ACTIONS(4947), - [anon_sym_AT] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_where] = ACTIONS(4947), - [anon_sym_object] = ACTIONS(4947), - [anon_sym_fun] = ACTIONS(4947), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_get] = ACTIONS(4947), - [anon_sym_set] = ACTIONS(4947), - [anon_sym_this] = ACTIONS(4947), - [anon_sym_super] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [sym_label] = ACTIONS(4947), - [anon_sym_in] = ACTIONS(4947), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_QMARK_COLON] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_null] = ACTIONS(4947), - [anon_sym_if] = ACTIONS(4947), - [anon_sym_else] = ACTIONS(4947), - [anon_sym_when] = ACTIONS(4947), - [anon_sym_try] = ACTIONS(4947), - [anon_sym_throw] = ACTIONS(4947), - [anon_sym_return] = ACTIONS(4947), - [anon_sym_continue] = ACTIONS(4947), - [anon_sym_break] = ACTIONS(4947), - [anon_sym_COLON_COLON] = ACTIONS(4949), - [anon_sym_PLUS_EQ] = ACTIONS(4949), - [anon_sym_DASH_EQ] = ACTIONS(4949), - [anon_sym_STAR_EQ] = ACTIONS(4949), - [anon_sym_SLASH_EQ] = ACTIONS(4949), - [anon_sym_PERCENT_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4947), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_BANGin] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4947), - [anon_sym_BANGis] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_as_QMARK] = ACTIONS(4949), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_BANG_BANG] = ACTIONS(4949), - [anon_sym_data] = ACTIONS(4947), - [anon_sym_inner] = ACTIONS(4947), - [anon_sym_value] = ACTIONS(4947), - [anon_sym_expect] = ACTIONS(4947), - [anon_sym_actual] = ACTIONS(4947), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4949), - [anon_sym_continue_AT] = ACTIONS(4949), - [anon_sym_break_AT] = ACTIONS(4949), - [sym_real_literal] = ACTIONS(4949), - [sym_integer_literal] = ACTIONS(4947), - [sym_hex_literal] = ACTIONS(4949), - [sym_bin_literal] = ACTIONS(4949), - [anon_sym_true] = ACTIONS(4947), - [anon_sym_false] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4949), - [sym__backtick_identifier] = ACTIONS(4949), - [sym__automatic_semicolon] = ACTIONS(4949), - [sym_safe_nav] = ACTIONS(4949), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4949), + [sym_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [3353] = { - [sym__alpha_identifier] = ACTIONS(5128), - [anon_sym_AT] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5128), - [anon_sym_EQ] = ACTIONS(5128), - [anon_sym_LBRACE] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5128), - [anon_sym_object] = ACTIONS(5128), - [anon_sym_fun] = ACTIONS(5128), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_get] = ACTIONS(5128), - [anon_sym_set] = ACTIONS(5128), - [anon_sym_this] = ACTIONS(5128), - [anon_sym_super] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5128), - [sym_label] = ACTIONS(5128), - [anon_sym_in] = ACTIONS(5128), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_QMARK_COLON] = ACTIONS(5130), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_null] = ACTIONS(5128), - [anon_sym_if] = ACTIONS(5128), - [anon_sym_else] = ACTIONS(5128), - [anon_sym_when] = ACTIONS(5128), - [anon_sym_try] = ACTIONS(5128), - [anon_sym_throw] = ACTIONS(5128), - [anon_sym_return] = ACTIONS(5128), - [anon_sym_continue] = ACTIONS(5128), - [anon_sym_break] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(5130), - [anon_sym_PLUS_EQ] = ACTIONS(5130), - [anon_sym_DASH_EQ] = ACTIONS(5130), - [anon_sym_STAR_EQ] = ACTIONS(5130), - [anon_sym_SLASH_EQ] = ACTIONS(5130), - [anon_sym_PERCENT_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5128), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5128), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_BANGin] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5128), - [anon_sym_BANGis] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5128), - [anon_sym_as_QMARK] = ACTIONS(5130), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_BANG_BANG] = ACTIONS(5130), - [anon_sym_data] = ACTIONS(5128), - [anon_sym_inner] = ACTIONS(5128), - [anon_sym_value] = ACTIONS(5128), - [anon_sym_expect] = ACTIONS(5128), - [anon_sym_actual] = ACTIONS(5128), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5130), - [anon_sym_continue_AT] = ACTIONS(5130), - [anon_sym_break_AT] = ACTIONS(5130), - [sym_real_literal] = ACTIONS(5130), - [sym_integer_literal] = ACTIONS(5128), - [sym_hex_literal] = ACTIONS(5130), - [sym_bin_literal] = ACTIONS(5130), - [anon_sym_true] = ACTIONS(5128), - [anon_sym_false] = ACTIONS(5128), - [anon_sym_SQUOTE] = ACTIONS(5130), - [sym__backtick_identifier] = ACTIONS(5130), - [sym__automatic_semicolon] = ACTIONS(5130), - [sym_safe_nav] = ACTIONS(5130), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5130), + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_RBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_while] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), }, [3354] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_object] = ACTIONS(4943), - [anon_sym_fun] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_this] = ACTIONS(4943), - [anon_sym_super] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [sym_label] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_null] = ACTIONS(4943), - [anon_sym_if] = ACTIONS(4943), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_when] = ACTIONS(4943), - [anon_sym_try] = ACTIONS(4943), - [anon_sym_throw] = ACTIONS(4943), - [anon_sym_return] = ACTIONS(4943), - [anon_sym_continue] = ACTIONS(4943), - [anon_sym_break] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_value] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4945), - [anon_sym_continue_AT] = ACTIONS(4945), - [anon_sym_break_AT] = ACTIONS(4945), - [sym_real_literal] = ACTIONS(4945), - [sym_integer_literal] = ACTIONS(4943), - [sym_hex_literal] = ACTIONS(4945), - [sym_bin_literal] = ACTIONS(4945), - [anon_sym_true] = ACTIONS(4943), - [anon_sym_false] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4945), - [sym__backtick_identifier] = ACTIONS(4945), - [sym__automatic_semicolon] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4945), + [sym_class_body] = STATE(3470), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), }, [3355] = { - [sym__alpha_identifier] = ACTIONS(5074), - [anon_sym_AT] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_RBRACK] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5074), - [anon_sym_EQ] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_RPAREN] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_where] = ACTIONS(5074), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_SEMI] = ACTIONS(5076), - [anon_sym_get] = ACTIONS(5074), - [anon_sym_set] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5074), - [anon_sym_DASH_GT] = ACTIONS(5076), - [sym_label] = ACTIONS(5076), - [anon_sym_in] = ACTIONS(5074), - [anon_sym_while] = ACTIONS(5074), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_QMARK_COLON] = ACTIONS(5076), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_else] = ACTIONS(5074), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_PLUS_EQ] = ACTIONS(5076), - [anon_sym_DASH_EQ] = ACTIONS(5076), - [anon_sym_STAR_EQ] = ACTIONS(5076), - [anon_sym_SLASH_EQ] = ACTIONS(5076), - [anon_sym_PERCENT_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5074), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_BANGin] = ACTIONS(5076), - [anon_sym_is] = ACTIONS(5074), - [anon_sym_BANGis] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_as_QMARK] = ACTIONS(5076), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_BANG_BANG] = ACTIONS(5076), - [anon_sym_suspend] = ACTIONS(5074), - [anon_sym_sealed] = ACTIONS(5074), - [anon_sym_annotation] = ACTIONS(5074), - [anon_sym_data] = ACTIONS(5074), - [anon_sym_inner] = ACTIONS(5074), - [anon_sym_value] = ACTIONS(5074), - [anon_sym_override] = ACTIONS(5074), - [anon_sym_lateinit] = ACTIONS(5074), - [anon_sym_public] = ACTIONS(5074), - [anon_sym_private] = ACTIONS(5074), - [anon_sym_internal] = ACTIONS(5074), - [anon_sym_protected] = ACTIONS(5074), - [anon_sym_tailrec] = ACTIONS(5074), - [anon_sym_operator] = ACTIONS(5074), - [anon_sym_infix] = ACTIONS(5074), - [anon_sym_inline] = ACTIONS(5074), - [anon_sym_external] = ACTIONS(5074), - [sym_property_modifier] = ACTIONS(5074), - [anon_sym_abstract] = ACTIONS(5074), - [anon_sym_final] = ACTIONS(5074), - [anon_sym_open] = ACTIONS(5074), - [anon_sym_vararg] = ACTIONS(5074), - [anon_sym_noinline] = ACTIONS(5074), - [anon_sym_crossinline] = ACTIONS(5074), - [anon_sym_expect] = ACTIONS(5074), - [anon_sym_actual] = ACTIONS(5074), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5076), - [sym_safe_nav] = ACTIONS(5076), + [sym_type_constraints] = STATE(3649), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3356] = { - [sym__alpha_identifier] = ACTIONS(4861), - [anon_sym_AT] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_as] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_get] = ACTIONS(4861), - [anon_sym_set] = ACTIONS(4861), - [anon_sym_STAR] = ACTIONS(4861), - [anon_sym_DASH_GT] = ACTIONS(4863), - [sym_label] = ACTIONS(4863), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_while] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4863), - [anon_sym_QMARK_COLON] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_else] = ACTIONS(4861), - [anon_sym_COLON_COLON] = ACTIONS(4863), - [anon_sym_PLUS_EQ] = ACTIONS(4863), - [anon_sym_DASH_EQ] = ACTIONS(4863), - [anon_sym_STAR_EQ] = ACTIONS(4863), - [anon_sym_SLASH_EQ] = ACTIONS(4863), - [anon_sym_PERCENT_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4863), - [anon_sym_LT_EQ] = ACTIONS(4863), - [anon_sym_GT_EQ] = ACTIONS(4863), - [anon_sym_BANGin] = ACTIONS(4863), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_BANGis] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4861), - [anon_sym_DASH] = ACTIONS(4861), - [anon_sym_SLASH] = ACTIONS(4861), - [anon_sym_PERCENT] = ACTIONS(4861), - [anon_sym_as_QMARK] = ACTIONS(4863), - [anon_sym_PLUS_PLUS] = ACTIONS(4863), - [anon_sym_DASH_DASH] = ACTIONS(4863), - [anon_sym_BANG_BANG] = ACTIONS(4863), - [anon_sym_suspend] = ACTIONS(4861), - [anon_sym_sealed] = ACTIONS(4861), - [anon_sym_annotation] = ACTIONS(4861), - [anon_sym_data] = ACTIONS(4861), - [anon_sym_inner] = ACTIONS(4861), - [anon_sym_value] = ACTIONS(4861), - [anon_sym_override] = ACTIONS(4861), - [anon_sym_lateinit] = ACTIONS(4861), - [anon_sym_public] = ACTIONS(4861), - [anon_sym_private] = ACTIONS(4861), - [anon_sym_internal] = ACTIONS(4861), - [anon_sym_protected] = ACTIONS(4861), - [anon_sym_tailrec] = ACTIONS(4861), - [anon_sym_operator] = ACTIONS(4861), - [anon_sym_infix] = ACTIONS(4861), - [anon_sym_inline] = ACTIONS(4861), - [anon_sym_external] = ACTIONS(4861), - [sym_property_modifier] = ACTIONS(4861), - [anon_sym_abstract] = ACTIONS(4861), - [anon_sym_final] = ACTIONS(4861), - [anon_sym_open] = ACTIONS(4861), - [anon_sym_vararg] = ACTIONS(4861), - [anon_sym_noinline] = ACTIONS(4861), - [anon_sym_crossinline] = ACTIONS(4861), - [anon_sym_expect] = ACTIONS(4861), - [anon_sym_actual] = ACTIONS(4861), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4863), - [sym_safe_nav] = ACTIONS(4863), + [sym_enum_class_body] = STATE(3470), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, [3357] = { - [sym__alpha_identifier] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4314), - [anon_sym_EQ] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_get] = ACTIONS(4314), - [anon_sym_set] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [sym__quest] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4314), - [sym_label] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_QMARK_COLON] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [anon_sym_else] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_PLUS_EQ] = ACTIONS(4316), - [anon_sym_DASH_EQ] = ACTIONS(4316), - [anon_sym_STAR_EQ] = ACTIONS(4316), - [anon_sym_SLASH_EQ] = ACTIONS(4316), - [anon_sym_PERCENT_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4314), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_BANGin] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4314), - [anon_sym_BANGis] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4314), - [anon_sym_as_QMARK] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_BANG_BANG] = ACTIONS(4316), - [anon_sym_suspend] = ACTIONS(4314), - [anon_sym_sealed] = ACTIONS(4314), - [anon_sym_annotation] = ACTIONS(4314), - [anon_sym_data] = ACTIONS(4314), - [anon_sym_inner] = ACTIONS(4314), - [anon_sym_value] = ACTIONS(4314), - [anon_sym_override] = ACTIONS(4314), - [anon_sym_lateinit] = ACTIONS(4314), - [anon_sym_public] = ACTIONS(4314), - [anon_sym_private] = ACTIONS(4314), - [anon_sym_internal] = ACTIONS(4314), - [anon_sym_protected] = ACTIONS(4314), - [anon_sym_tailrec] = ACTIONS(4314), - [anon_sym_operator] = ACTIONS(4314), - [anon_sym_infix] = ACTIONS(4314), - [anon_sym_inline] = ACTIONS(4314), - [anon_sym_external] = ACTIONS(4314), - [sym_property_modifier] = ACTIONS(4314), - [anon_sym_abstract] = ACTIONS(4314), - [anon_sym_final] = ACTIONS(4314), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_vararg] = ACTIONS(4314), - [anon_sym_noinline] = ACTIONS(4314), - [anon_sym_crossinline] = ACTIONS(4314), - [anon_sym_expect] = ACTIONS(4314), - [anon_sym_actual] = ACTIONS(4314), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4316), - [sym__automatic_semicolon] = ACTIONS(4316), - [sym_safe_nav] = ACTIONS(4316), + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_DASH_GT] = ACTIONS(4734), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_while] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), [sym_multiline_comment] = ACTIONS(3), }, [3358] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym_type_constraints] = STATE(3653), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), }, [3359] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_object] = ACTIONS(4901), - [anon_sym_fun] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_this] = ACTIONS(4901), - [anon_sym_super] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [sym_label] = ACTIONS(4901), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_null] = ACTIONS(4901), - [anon_sym_if] = ACTIONS(4901), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_when] = ACTIONS(4901), - [anon_sym_try] = ACTIONS(4901), - [anon_sym_throw] = ACTIONS(4901), - [anon_sym_return] = ACTIONS(4901), - [anon_sym_continue] = ACTIONS(4901), - [anon_sym_break] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_value] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4903), - [anon_sym_continue_AT] = ACTIONS(4903), - [anon_sym_break_AT] = ACTIONS(4903), - [sym_real_literal] = ACTIONS(4903), - [sym_integer_literal] = ACTIONS(4901), - [sym_hex_literal] = ACTIONS(4903), - [sym_bin_literal] = ACTIONS(4903), - [anon_sym_true] = ACTIONS(4901), - [anon_sym_false] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4903), - [sym__backtick_identifier] = ACTIONS(4903), - [sym__automatic_semicolon] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4903), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_RBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4206), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), }, [3360] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [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_DOT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4236), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(6664), - [sym__quest] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4236), - [anon_sym_QMARK_COLON] = ACTIONS(4236), - [anon_sym_AMP_AMP] = ACTIONS(4236), - [anon_sym_PIPE_PIPE] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4236), - [anon_sym_PLUS_EQ] = ACTIONS(4236), - [anon_sym_DASH_EQ] = ACTIONS(4236), - [anon_sym_STAR_EQ] = ACTIONS(4236), - [anon_sym_SLASH_EQ] = ACTIONS(4236), - [anon_sym_PERCENT_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), - [anon_sym_LT_EQ] = ACTIONS(4236), - [anon_sym_GT_EQ] = ACTIONS(4236), - [anon_sym_BANGin] = ACTIONS(4236), - [anon_sym_is] = ACTIONS(4234), - [anon_sym_BANGis] = ACTIONS(4236), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4236), - [anon_sym_PLUS_PLUS] = ACTIONS(4236), - [anon_sym_DASH_DASH] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4236), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4236), - [sym__automatic_semicolon] = ACTIONS(4236), - [sym_safe_nav] = ACTIONS(4236), + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_RBRACK] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [anon_sym_DASH_GT] = ACTIONS(4718), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_while] = ACTIONS(4716), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_QMARK_COLON] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_STAR_EQ] = ACTIONS(4718), + [anon_sym_SLASH_EQ] = ACTIONS(4718), + [anon_sym_PERCENT_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_as_QMARK] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), [sym_multiline_comment] = ACTIONS(3), }, [3361] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(1764), - [anon_sym_sealed] = ACTIONS(1764), - [anon_sym_annotation] = ACTIONS(1764), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_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_enum_class_body] = STATE(3472), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_DASH_GT] = ACTIONS(4469), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_while] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3362] = { - [sym__alpha_identifier] = ACTIONS(5138), - [anon_sym_AT] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_object] = ACTIONS(5138), - [anon_sym_fun] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_get] = ACTIONS(5138), - [anon_sym_set] = ACTIONS(5138), - [anon_sym_this] = ACTIONS(5138), - [anon_sym_super] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [sym_label] = ACTIONS(5138), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_QMARK_COLON] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_null] = ACTIONS(5138), - [anon_sym_if] = ACTIONS(5138), - [anon_sym_else] = ACTIONS(5138), - [anon_sym_when] = ACTIONS(5138), - [anon_sym_try] = ACTIONS(5138), - [anon_sym_throw] = ACTIONS(5138), - [anon_sym_return] = ACTIONS(5138), - [anon_sym_continue] = ACTIONS(5138), - [anon_sym_break] = ACTIONS(5138), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_PLUS_EQ] = ACTIONS(5140), - [anon_sym_DASH_EQ] = ACTIONS(5140), - [anon_sym_STAR_EQ] = ACTIONS(5140), - [anon_sym_SLASH_EQ] = ACTIONS(5140), - [anon_sym_PERCENT_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_BANGin] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_BANGis] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_as_QMARK] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_BANG_BANG] = ACTIONS(5140), - [anon_sym_data] = ACTIONS(5138), - [anon_sym_inner] = ACTIONS(5138), - [anon_sym_value] = ACTIONS(5138), - [anon_sym_expect] = ACTIONS(5138), - [anon_sym_actual] = ACTIONS(5138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5140), - [anon_sym_continue_AT] = ACTIONS(5140), - [anon_sym_break_AT] = ACTIONS(5140), - [sym_real_literal] = ACTIONS(5140), - [sym_integer_literal] = ACTIONS(5138), - [sym_hex_literal] = ACTIONS(5140), - [sym_bin_literal] = ACTIONS(5140), - [anon_sym_true] = ACTIONS(5138), - [anon_sym_false] = ACTIONS(5138), - [anon_sym_SQUOTE] = ACTIONS(5140), - [sym__backtick_identifier] = ACTIONS(5140), - [sym__automatic_semicolon] = ACTIONS(5140), - [sym_safe_nav] = ACTIONS(5140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5140), - }, - [3363] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4236), - [anon_sym_RBRACE] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_COMMA] = ACTIONS(4236), - [anon_sym_by] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4236), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(6666), - [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), - [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), - }, - [3364] = { - [sym__alpha_identifier] = ACTIONS(4897), - [anon_sym_AT] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_as] = ACTIONS(4897), - [anon_sym_EQ] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_where] = ACTIONS(4897), - [anon_sym_object] = ACTIONS(4897), - [anon_sym_fun] = ACTIONS(4897), - [anon_sym_DOT] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_get] = ACTIONS(4897), - [anon_sym_set] = ACTIONS(4897), - [anon_sym_this] = ACTIONS(4897), - [anon_sym_super] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [sym_label] = ACTIONS(4897), - [anon_sym_in] = ACTIONS(4897), - [anon_sym_DOT_DOT] = ACTIONS(4899), - [anon_sym_QMARK_COLON] = ACTIONS(4899), - [anon_sym_AMP_AMP] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4899), - [anon_sym_null] = ACTIONS(4897), - [anon_sym_if] = ACTIONS(4897), - [anon_sym_else] = ACTIONS(4897), - [anon_sym_when] = ACTIONS(4897), - [anon_sym_try] = ACTIONS(4897), - [anon_sym_throw] = ACTIONS(4897), - [anon_sym_return] = ACTIONS(4897), - [anon_sym_continue] = ACTIONS(4897), - [anon_sym_break] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4899), - [anon_sym_PLUS_EQ] = ACTIONS(4899), - [anon_sym_DASH_EQ] = ACTIONS(4899), - [anon_sym_STAR_EQ] = ACTIONS(4899), - [anon_sym_SLASH_EQ] = ACTIONS(4899), - [anon_sym_PERCENT_EQ] = ACTIONS(4899), - [anon_sym_BANG_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4899), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4899), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4899), - [anon_sym_BANGin] = ACTIONS(4899), - [anon_sym_is] = ACTIONS(4897), - [anon_sym_BANGis] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_PERCENT] = ACTIONS(4897), - [anon_sym_as_QMARK] = ACTIONS(4899), - [anon_sym_PLUS_PLUS] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4899), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_BANG_BANG] = ACTIONS(4899), - [anon_sym_data] = ACTIONS(4897), - [anon_sym_inner] = ACTIONS(4897), - [anon_sym_value] = ACTIONS(4897), - [anon_sym_expect] = ACTIONS(4897), - [anon_sym_actual] = ACTIONS(4897), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4899), - [anon_sym_continue_AT] = ACTIONS(4899), - [anon_sym_break_AT] = ACTIONS(4899), - [sym_real_literal] = ACTIONS(4899), - [sym_integer_literal] = ACTIONS(4897), - [sym_hex_literal] = ACTIONS(4899), - [sym_bin_literal] = ACTIONS(4899), - [anon_sym_true] = ACTIONS(4897), - [anon_sym_false] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4899), - [sym__backtick_identifier] = ACTIONS(4899), - [sym__automatic_semicolon] = ACTIONS(4899), - [sym_safe_nav] = ACTIONS(4899), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4899), - }, - [3365] = { - [sym__alpha_identifier] = ACTIONS(4857), - [anon_sym_AT] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_RBRACK] = ACTIONS(4859), - [anon_sym_as] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_COMMA] = ACTIONS(4859), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_where] = ACTIONS(4857), - [anon_sym_DOT] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4859), - [anon_sym_get] = ACTIONS(4857), - [anon_sym_set] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_DASH_GT] = ACTIONS(4859), - [sym_label] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4857), - [anon_sym_while] = ACTIONS(4857), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_QMARK_COLON] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_else] = ACTIONS(4857), - [anon_sym_COLON_COLON] = ACTIONS(4859), - [anon_sym_PLUS_EQ] = ACTIONS(4859), - [anon_sym_DASH_EQ] = ACTIONS(4859), - [anon_sym_STAR_EQ] = ACTIONS(4859), - [anon_sym_SLASH_EQ] = ACTIONS(4859), - [anon_sym_PERCENT_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4859), - [anon_sym_LT_EQ] = ACTIONS(4859), - [anon_sym_GT_EQ] = ACTIONS(4859), - [anon_sym_BANGin] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4857), - [anon_sym_BANGis] = ACTIONS(4859), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_as_QMARK] = ACTIONS(4859), - [anon_sym_PLUS_PLUS] = ACTIONS(4859), - [anon_sym_DASH_DASH] = ACTIONS(4859), - [anon_sym_BANG_BANG] = ACTIONS(4859), - [anon_sym_suspend] = ACTIONS(4857), - [anon_sym_sealed] = ACTIONS(4857), - [anon_sym_annotation] = ACTIONS(4857), - [anon_sym_data] = ACTIONS(4857), - [anon_sym_inner] = ACTIONS(4857), - [anon_sym_value] = ACTIONS(4857), - [anon_sym_override] = ACTIONS(4857), - [anon_sym_lateinit] = ACTIONS(4857), - [anon_sym_public] = ACTIONS(4857), - [anon_sym_private] = ACTIONS(4857), - [anon_sym_internal] = ACTIONS(4857), - [anon_sym_protected] = ACTIONS(4857), - [anon_sym_tailrec] = ACTIONS(4857), - [anon_sym_operator] = ACTIONS(4857), - [anon_sym_infix] = ACTIONS(4857), - [anon_sym_inline] = ACTIONS(4857), - [anon_sym_external] = ACTIONS(4857), - [sym_property_modifier] = ACTIONS(4857), - [anon_sym_abstract] = ACTIONS(4857), - [anon_sym_final] = ACTIONS(4857), - [anon_sym_open] = ACTIONS(4857), - [anon_sym_vararg] = ACTIONS(4857), - [anon_sym_noinline] = ACTIONS(4857), - [anon_sym_crossinline] = ACTIONS(4857), - [anon_sym_expect] = ACTIONS(4857), - [anon_sym_actual] = ACTIONS(4857), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4859), - [sym_safe_nav] = ACTIONS(4859), - [sym_multiline_comment] = ACTIONS(3), - }, - [3366] = { - [sym__alpha_identifier] = ACTIONS(4747), - [anon_sym_AT] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_COMMA] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4747), - [anon_sym_GT] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_object] = ACTIONS(4747), - [anon_sym_fun] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_get] = ACTIONS(4747), - [anon_sym_set] = ACTIONS(4747), - [anon_sym_this] = ACTIONS(4747), - [anon_sym_super] = ACTIONS(4747), - [anon_sym_STAR] = ACTIONS(4747), - [sym_label] = ACTIONS(4747), - [anon_sym_in] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4749), - [anon_sym_QMARK_COLON] = ACTIONS(4749), - [anon_sym_AMP_AMP] = ACTIONS(4749), - [anon_sym_PIPE_PIPE] = ACTIONS(4749), - [anon_sym_null] = ACTIONS(4747), - [anon_sym_if] = ACTIONS(4747), - [anon_sym_else] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_try] = ACTIONS(4747), - [anon_sym_throw] = ACTIONS(4747), - [anon_sym_return] = ACTIONS(4747), - [anon_sym_continue] = ACTIONS(4747), - [anon_sym_break] = ACTIONS(4747), - [anon_sym_COLON_COLON] = ACTIONS(4749), - [anon_sym_PLUS_EQ] = ACTIONS(4749), - [anon_sym_DASH_EQ] = ACTIONS(4749), - [anon_sym_STAR_EQ] = ACTIONS(4749), - [anon_sym_SLASH_EQ] = ACTIONS(4749), - [anon_sym_PERCENT_EQ] = ACTIONS(4749), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4749), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4749), - [anon_sym_LT_EQ] = ACTIONS(4749), - [anon_sym_GT_EQ] = ACTIONS(4749), - [anon_sym_BANGin] = ACTIONS(4749), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_BANGis] = ACTIONS(4749), - [anon_sym_PLUS] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4747), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_as_QMARK] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4747), - [anon_sym_BANG_BANG] = ACTIONS(4749), - [anon_sym_data] = ACTIONS(4747), - [anon_sym_inner] = ACTIONS(4747), - [anon_sym_value] = ACTIONS(4747), - [anon_sym_expect] = ACTIONS(4747), - [anon_sym_actual] = ACTIONS(4747), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4749), - [anon_sym_continue_AT] = ACTIONS(4749), - [anon_sym_break_AT] = ACTIONS(4749), - [sym_real_literal] = ACTIONS(4749), - [sym_integer_literal] = ACTIONS(4747), - [sym_hex_literal] = ACTIONS(4749), - [sym_bin_literal] = ACTIONS(4749), - [anon_sym_true] = ACTIONS(4747), - [anon_sym_false] = ACTIONS(4747), - [anon_sym_SQUOTE] = ACTIONS(4749), - [sym__backtick_identifier] = ACTIONS(4749), - [sym__automatic_semicolon] = ACTIONS(4749), - [sym_safe_nav] = ACTIONS(4749), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4749), - }, - [3367] = { - [sym__alpha_identifier] = ACTIONS(4773), - [anon_sym_AT] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_as] = ACTIONS(4773), - [anon_sym_EQ] = ACTIONS(4773), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_where] = ACTIONS(4773), - [anon_sym_object] = ACTIONS(4773), - [anon_sym_fun] = ACTIONS(4773), - [anon_sym_DOT] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4775), - [anon_sym_get] = ACTIONS(4773), - [anon_sym_set] = ACTIONS(4773), - [anon_sym_this] = ACTIONS(4773), - [anon_sym_super] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [sym_label] = ACTIONS(4773), - [anon_sym_in] = ACTIONS(4773), - [anon_sym_DOT_DOT] = ACTIONS(4775), - [anon_sym_QMARK_COLON] = ACTIONS(4775), - [anon_sym_AMP_AMP] = ACTIONS(4775), - [anon_sym_PIPE_PIPE] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(4773), - [anon_sym_if] = ACTIONS(4773), - [anon_sym_else] = ACTIONS(4773), - [anon_sym_when] = ACTIONS(4773), - [anon_sym_try] = ACTIONS(4773), - [anon_sym_throw] = ACTIONS(4773), - [anon_sym_return] = ACTIONS(4773), - [anon_sym_continue] = ACTIONS(4773), - [anon_sym_break] = ACTIONS(4773), - [anon_sym_COLON_COLON] = ACTIONS(4775), - [anon_sym_PLUS_EQ] = ACTIONS(4775), - [anon_sym_DASH_EQ] = ACTIONS(4775), - [anon_sym_STAR_EQ] = ACTIONS(4775), - [anon_sym_SLASH_EQ] = ACTIONS(4775), - [anon_sym_PERCENT_EQ] = ACTIONS(4775), - [anon_sym_BANG_EQ] = ACTIONS(4773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4775), - [anon_sym_EQ_EQ] = ACTIONS(4773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4775), - [anon_sym_LT_EQ] = ACTIONS(4775), - [anon_sym_GT_EQ] = ACTIONS(4775), - [anon_sym_BANGin] = ACTIONS(4775), - [anon_sym_is] = ACTIONS(4773), - [anon_sym_BANGis] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_PERCENT] = ACTIONS(4773), - [anon_sym_as_QMARK] = ACTIONS(4775), - [anon_sym_PLUS_PLUS] = ACTIONS(4775), - [anon_sym_DASH_DASH] = ACTIONS(4775), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_BANG_BANG] = ACTIONS(4775), - [anon_sym_data] = ACTIONS(4773), - [anon_sym_inner] = ACTIONS(4773), - [anon_sym_value] = ACTIONS(4773), - [anon_sym_expect] = ACTIONS(4773), - [anon_sym_actual] = ACTIONS(4773), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4775), - [anon_sym_continue_AT] = ACTIONS(4775), - [anon_sym_break_AT] = ACTIONS(4775), - [sym_real_literal] = ACTIONS(4775), - [sym_integer_literal] = ACTIONS(4773), - [sym_hex_literal] = ACTIONS(4775), - [sym_bin_literal] = ACTIONS(4775), - [anon_sym_true] = ACTIONS(4773), - [anon_sym_false] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4775), - [sym__backtick_identifier] = ACTIONS(4775), - [sym__automatic_semicolon] = ACTIONS(4775), - [sym_safe_nav] = ACTIONS(4775), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4775), - }, - [3368] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4394), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_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), - [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), - }, - [3369] = { - [sym__alpha_identifier] = ACTIONS(4791), - [anon_sym_AT] = ACTIONS(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_where] = ACTIONS(4791), - [anon_sym_object] = ACTIONS(4791), - [anon_sym_fun] = ACTIONS(4791), - [anon_sym_DOT] = ACTIONS(4791), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym_get] = ACTIONS(4791), - [anon_sym_set] = ACTIONS(4791), - [anon_sym_this] = ACTIONS(4791), - [anon_sym_super] = ACTIONS(4791), - [anon_sym_STAR] = ACTIONS(4791), - [sym_label] = ACTIONS(4791), - [anon_sym_in] = ACTIONS(4791), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_QMARK_COLON] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_null] = ACTIONS(4791), - [anon_sym_if] = ACTIONS(4791), - [anon_sym_else] = ACTIONS(4791), - [anon_sym_when] = ACTIONS(4791), - [anon_sym_try] = ACTIONS(4791), - [anon_sym_throw] = ACTIONS(4791), - [anon_sym_return] = ACTIONS(4791), - [anon_sym_continue] = ACTIONS(4791), - [anon_sym_break] = ACTIONS(4791), - [anon_sym_COLON_COLON] = ACTIONS(4793), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_STAR_EQ] = ACTIONS(4793), - [anon_sym_SLASH_EQ] = ACTIONS(4793), - [anon_sym_PERCENT_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_BANGin] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4791), - [anon_sym_BANGis] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_SLASH] = ACTIONS(4791), - [anon_sym_PERCENT] = ACTIONS(4791), - [anon_sym_as_QMARK] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4791), - [anon_sym_BANG_BANG] = ACTIONS(4793), - [anon_sym_data] = ACTIONS(4791), - [anon_sym_inner] = ACTIONS(4791), - [anon_sym_value] = ACTIONS(4791), - [anon_sym_expect] = ACTIONS(4791), - [anon_sym_actual] = ACTIONS(4791), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4793), - [anon_sym_continue_AT] = ACTIONS(4793), - [anon_sym_break_AT] = ACTIONS(4793), - [sym_real_literal] = ACTIONS(4793), - [sym_integer_literal] = ACTIONS(4791), - [sym_hex_literal] = ACTIONS(4793), - [sym_bin_literal] = ACTIONS(4793), - [anon_sym_true] = ACTIONS(4791), - [anon_sym_false] = ACTIONS(4791), - [anon_sym_SQUOTE] = ACTIONS(4793), - [sym__backtick_identifier] = ACTIONS(4793), - [sym__automatic_semicolon] = ACTIONS(4793), - [sym_safe_nav] = ACTIONS(4793), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4793), - }, - [3370] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3371] = { - [sym__alpha_identifier] = ACTIONS(3016), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), - [anon_sym_fun] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_this] = ACTIONS(3016), - [anon_sym_super] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [sym_label] = ACTIONS(3016), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_QMARK_COLON] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_when] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3016), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_as_QMARK] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_BANG_BANG] = ACTIONS(3018), - [anon_sym_data] = ACTIONS(3016), - [anon_sym_inner] = ACTIONS(3016), - [anon_sym_value] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(3016), - [anon_sym_actual] = ACTIONS(3016), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3018), - [anon_sym_continue_AT] = ACTIONS(3018), - [anon_sym_break_AT] = ACTIONS(3018), - [sym_real_literal] = ACTIONS(3018), - [sym_integer_literal] = ACTIONS(3016), - [sym_hex_literal] = ACTIONS(3018), - [sym_bin_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3018), - [sym__backtick_identifier] = ACTIONS(3018), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3018), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3018), - }, - [3372] = { - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_object] = ACTIONS(4015), - [anon_sym_fun] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_this] = ACTIONS(4015), - [anon_sym_super] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4015), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_null] = ACTIONS(4015), - [anon_sym_if] = ACTIONS(4015), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_try] = ACTIONS(4015), - [anon_sym_throw] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4017), - [anon_sym_continue_AT] = ACTIONS(4017), - [anon_sym_break_AT] = ACTIONS(4017), - [sym_real_literal] = ACTIONS(4017), - [sym_integer_literal] = ACTIONS(4015), - [sym_hex_literal] = ACTIONS(4017), - [sym_bin_literal] = ACTIONS(4017), - [anon_sym_true] = ACTIONS(4015), - [anon_sym_false] = ACTIONS(4015), - [anon_sym_SQUOTE] = ACTIONS(4017), - [sym__backtick_identifier] = ACTIONS(4017), - [sym__automatic_semicolon] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4017), - }, - [3373] = { - [sym__alpha_identifier] = ACTIONS(4813), - [anon_sym_AT] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4813), - [anon_sym_EQ] = ACTIONS(4813), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_where] = ACTIONS(4813), - [anon_sym_object] = ACTIONS(4813), - [anon_sym_fun] = ACTIONS(4813), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_get] = ACTIONS(4813), - [anon_sym_set] = ACTIONS(4813), - [anon_sym_this] = ACTIONS(4813), - [anon_sym_super] = ACTIONS(4813), - [anon_sym_STAR] = ACTIONS(4813), - [sym_label] = ACTIONS(4813), - [anon_sym_in] = ACTIONS(4813), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_QMARK_COLON] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_null] = ACTIONS(4813), - [anon_sym_if] = ACTIONS(4813), - [anon_sym_else] = ACTIONS(4813), - [anon_sym_when] = ACTIONS(4813), - [anon_sym_try] = ACTIONS(4813), - [anon_sym_throw] = ACTIONS(4813), - [anon_sym_return] = ACTIONS(4813), - [anon_sym_continue] = ACTIONS(4813), - [anon_sym_break] = ACTIONS(4813), - [anon_sym_COLON_COLON] = ACTIONS(4815), - [anon_sym_PLUS_EQ] = ACTIONS(4815), - [anon_sym_DASH_EQ] = ACTIONS(4815), - [anon_sym_STAR_EQ] = ACTIONS(4815), - [anon_sym_SLASH_EQ] = ACTIONS(4815), - [anon_sym_PERCENT_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4813), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4813), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_BANGin] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4813), - [anon_sym_BANGis] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4813), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_SLASH] = ACTIONS(4813), - [anon_sym_PERCENT] = ACTIONS(4813), - [anon_sym_as_QMARK] = ACTIONS(4815), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4813), - [anon_sym_BANG_BANG] = ACTIONS(4815), - [anon_sym_data] = ACTIONS(4813), - [anon_sym_inner] = ACTIONS(4813), - [anon_sym_value] = ACTIONS(4813), - [anon_sym_expect] = ACTIONS(4813), - [anon_sym_actual] = ACTIONS(4813), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4815), - [anon_sym_continue_AT] = ACTIONS(4815), - [anon_sym_break_AT] = ACTIONS(4815), - [sym_real_literal] = ACTIONS(4815), - [sym_integer_literal] = ACTIONS(4813), - [sym_hex_literal] = ACTIONS(4815), - [sym_bin_literal] = ACTIONS(4815), - [anon_sym_true] = ACTIONS(4813), - [anon_sym_false] = ACTIONS(4813), - [anon_sym_SQUOTE] = ACTIONS(4815), - [sym__backtick_identifier] = ACTIONS(4815), - [sym__automatic_semicolon] = ACTIONS(4815), - [sym_safe_nav] = ACTIONS(4815), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4815), - }, - [3374] = { - [sym_class_body] = STATE(3267), - [sym_type_constraints] = STATE(3172), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6668), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - }, - [3375] = { - [sym__alpha_identifier] = ACTIONS(4821), - [anon_sym_AT] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_object] = ACTIONS(4821), - [anon_sym_fun] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_get] = ACTIONS(4821), - [anon_sym_set] = ACTIONS(4821), - [anon_sym_this] = ACTIONS(4821), - [anon_sym_super] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4821), - [sym_label] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_QMARK_COLON] = ACTIONS(4823), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_null] = ACTIONS(4821), - [anon_sym_if] = ACTIONS(4821), - [anon_sym_else] = ACTIONS(4821), - [anon_sym_when] = ACTIONS(4821), - [anon_sym_try] = ACTIONS(4821), - [anon_sym_throw] = ACTIONS(4821), - [anon_sym_return] = ACTIONS(4821), - [anon_sym_continue] = ACTIONS(4821), - [anon_sym_break] = ACTIONS(4821), - [anon_sym_COLON_COLON] = ACTIONS(4823), - [anon_sym_PLUS_EQ] = ACTIONS(4823), - [anon_sym_DASH_EQ] = ACTIONS(4823), - [anon_sym_STAR_EQ] = ACTIONS(4823), - [anon_sym_SLASH_EQ] = ACTIONS(4823), - [anon_sym_PERCENT_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_BANGin] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4821), - [anon_sym_BANGis] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_as_QMARK] = ACTIONS(4823), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_BANG_BANG] = ACTIONS(4823), - [anon_sym_data] = ACTIONS(4821), - [anon_sym_inner] = ACTIONS(4821), - [anon_sym_value] = ACTIONS(4821), - [anon_sym_expect] = ACTIONS(4821), - [anon_sym_actual] = ACTIONS(4821), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4823), - [anon_sym_continue_AT] = ACTIONS(4823), - [anon_sym_break_AT] = ACTIONS(4823), - [sym_real_literal] = ACTIONS(4823), - [sym_integer_literal] = ACTIONS(4821), - [sym_hex_literal] = ACTIONS(4823), - [sym_bin_literal] = ACTIONS(4823), - [anon_sym_true] = ACTIONS(4821), - [anon_sym_false] = ACTIONS(4821), - [anon_sym_SQUOTE] = ACTIONS(4823), - [sym__backtick_identifier] = ACTIONS(4823), - [sym__automatic_semicolon] = ACTIONS(4823), - [sym_safe_nav] = ACTIONS(4823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4823), - }, - [3376] = { - [sym__alpha_identifier] = ACTIONS(4927), - [anon_sym_AT] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_RBRACK] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4927), - [anon_sym_GT] = ACTIONS(4927), - [anon_sym_where] = ACTIONS(4927), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4929), - [anon_sym_get] = ACTIONS(4927), - [anon_sym_set] = ACTIONS(4927), - [anon_sym_STAR] = ACTIONS(4927), - [anon_sym_DASH_GT] = ACTIONS(4929), - [sym_label] = ACTIONS(4929), - [anon_sym_in] = ACTIONS(4927), - [anon_sym_while] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_QMARK_COLON] = ACTIONS(4929), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_else] = ACTIONS(4927), - [anon_sym_COLON_COLON] = ACTIONS(4929), - [anon_sym_PLUS_EQ] = ACTIONS(4929), - [anon_sym_DASH_EQ] = ACTIONS(4929), - [anon_sym_STAR_EQ] = ACTIONS(4929), - [anon_sym_SLASH_EQ] = ACTIONS(4929), - [anon_sym_PERCENT_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_BANGin] = ACTIONS(4929), - [anon_sym_is] = ACTIONS(4927), - [anon_sym_BANGis] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4927), - [anon_sym_DASH] = ACTIONS(4927), - [anon_sym_SLASH] = ACTIONS(4927), - [anon_sym_PERCENT] = ACTIONS(4927), - [anon_sym_as_QMARK] = ACTIONS(4929), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_BANG_BANG] = ACTIONS(4929), - [anon_sym_suspend] = ACTIONS(4927), - [anon_sym_sealed] = ACTIONS(4927), - [anon_sym_annotation] = ACTIONS(4927), - [anon_sym_data] = ACTIONS(4927), - [anon_sym_inner] = ACTIONS(4927), - [anon_sym_value] = ACTIONS(4927), - [anon_sym_override] = ACTIONS(4927), - [anon_sym_lateinit] = ACTIONS(4927), - [anon_sym_public] = ACTIONS(4927), - [anon_sym_private] = ACTIONS(4927), - [anon_sym_internal] = ACTIONS(4927), - [anon_sym_protected] = ACTIONS(4927), - [anon_sym_tailrec] = ACTIONS(4927), - [anon_sym_operator] = ACTIONS(4927), - [anon_sym_infix] = ACTIONS(4927), - [anon_sym_inline] = ACTIONS(4927), - [anon_sym_external] = ACTIONS(4927), - [sym_property_modifier] = ACTIONS(4927), - [anon_sym_abstract] = ACTIONS(4927), - [anon_sym_final] = ACTIONS(4927), - [anon_sym_open] = ACTIONS(4927), - [anon_sym_vararg] = ACTIONS(4927), - [anon_sym_noinline] = ACTIONS(4927), - [anon_sym_crossinline] = ACTIONS(4927), - [anon_sym_expect] = ACTIONS(4927), - [anon_sym_actual] = ACTIONS(4927), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4929), - [sym_safe_nav] = ACTIONS(4929), - [sym_multiline_comment] = ACTIONS(3), - }, - [3377] = { - [sym__alpha_identifier] = ACTIONS(4825), - [anon_sym_AT] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_as] = ACTIONS(4825), - [anon_sym_EQ] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_where] = ACTIONS(4825), - [anon_sym_object] = ACTIONS(4825), - [anon_sym_fun] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_get] = ACTIONS(4825), - [anon_sym_set] = ACTIONS(4825), - [anon_sym_this] = ACTIONS(4825), - [anon_sym_super] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [sym_label] = ACTIONS(4825), - [anon_sym_in] = ACTIONS(4825), - [anon_sym_DOT_DOT] = ACTIONS(4827), - [anon_sym_QMARK_COLON] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_null] = ACTIONS(4825), - [anon_sym_if] = ACTIONS(4825), - [anon_sym_else] = ACTIONS(4825), - [anon_sym_when] = ACTIONS(4825), - [anon_sym_try] = ACTIONS(4825), - [anon_sym_throw] = ACTIONS(4825), - [anon_sym_return] = ACTIONS(4825), - [anon_sym_continue] = ACTIONS(4825), - [anon_sym_break] = ACTIONS(4825), - [anon_sym_COLON_COLON] = ACTIONS(4827), - [anon_sym_PLUS_EQ] = ACTIONS(4827), - [anon_sym_DASH_EQ] = ACTIONS(4827), - [anon_sym_STAR_EQ] = ACTIONS(4827), - [anon_sym_SLASH_EQ] = ACTIONS(4827), - [anon_sym_PERCENT_EQ] = ACTIONS(4827), - [anon_sym_BANG_EQ] = ACTIONS(4825), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4827), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4827), - [anon_sym_BANGin] = ACTIONS(4827), - [anon_sym_is] = ACTIONS(4825), - [anon_sym_BANGis] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4825), - [anon_sym_as_QMARK] = ACTIONS(4827), - [anon_sym_PLUS_PLUS] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_BANG_BANG] = ACTIONS(4827), - [anon_sym_data] = ACTIONS(4825), - [anon_sym_inner] = ACTIONS(4825), - [anon_sym_value] = ACTIONS(4825), - [anon_sym_expect] = ACTIONS(4825), - [anon_sym_actual] = ACTIONS(4825), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4827), - [anon_sym_continue_AT] = ACTIONS(4827), - [anon_sym_break_AT] = ACTIONS(4827), - [sym_real_literal] = ACTIONS(4827), - [sym_integer_literal] = ACTIONS(4825), - [sym_hex_literal] = ACTIONS(4827), - [sym_bin_literal] = ACTIONS(4827), - [anon_sym_true] = ACTIONS(4825), - [anon_sym_false] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4827), - [sym__backtick_identifier] = ACTIONS(4827), - [sym__automatic_semicolon] = ACTIONS(4827), - [sym_safe_nav] = ACTIONS(4827), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4827), - }, - [3378] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_RBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_RPAREN] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [anon_sym_DASH_GT] = ACTIONS(4396), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [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), - }, - [3379] = { - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_object] = ACTIONS(4025), - [anon_sym_fun] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_this] = ACTIONS(4025), - [anon_sym_super] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_null] = ACTIONS(4025), - [anon_sym_if] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(4025), - [anon_sym_throw] = ACTIONS(4025), - [anon_sym_return] = ACTIONS(4025), - [anon_sym_continue] = ACTIONS(4025), - [anon_sym_break] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4027), - [anon_sym_continue_AT] = ACTIONS(4027), - [anon_sym_break_AT] = ACTIONS(4027), - [sym_real_literal] = ACTIONS(4027), - [sym_integer_literal] = ACTIONS(4025), - [sym_hex_literal] = ACTIONS(4027), - [sym_bin_literal] = ACTIONS(4027), - [anon_sym_true] = ACTIONS(4025), - [anon_sym_false] = ACTIONS(4025), - [anon_sym_SQUOTE] = ACTIONS(4027), - [sym__backtick_identifier] = ACTIONS(4027), - [sym__automatic_semicolon] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4027), - }, - [3380] = { - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_RBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_DASH_GT] = ACTIONS(4723), - [sym_label] = ACTIONS(4723), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_while] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_suspend] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_annotation] = ACTIONS(4721), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_lateinit] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_tailrec] = ACTIONS(4721), - [anon_sym_operator] = ACTIONS(4721), - [anon_sym_infix] = ACTIONS(4721), - [anon_sym_inline] = ACTIONS(4721), - [anon_sym_external] = ACTIONS(4721), - [sym_property_modifier] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_final] = ACTIONS(4721), - [anon_sym_open] = ACTIONS(4721), - [anon_sym_vararg] = ACTIONS(4721), - [anon_sym_noinline] = ACTIONS(4721), - [anon_sym_crossinline] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), + [sym_class_body] = STATE(3478), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, - [3381] = { - [sym_type_constraints] = STATE(3601), - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [3363] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6623), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, - [3382] = { - [sym__alpha_identifier] = ACTIONS(4833), - [anon_sym_AT] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_where] = ACTIONS(4833), - [anon_sym_object] = ACTIONS(4833), - [anon_sym_fun] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_get] = ACTIONS(4833), - [anon_sym_set] = ACTIONS(4833), - [anon_sym_this] = ACTIONS(4833), - [anon_sym_super] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [sym_label] = ACTIONS(4833), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_QMARK_COLON] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_null] = ACTIONS(4833), - [anon_sym_if] = ACTIONS(4833), - [anon_sym_else] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4833), - [anon_sym_try] = ACTIONS(4833), - [anon_sym_throw] = ACTIONS(4833), - [anon_sym_return] = ACTIONS(4833), - [anon_sym_continue] = ACTIONS(4833), - [anon_sym_break] = ACTIONS(4833), - [anon_sym_COLON_COLON] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_BANGin] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_BANGis] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_as_QMARK] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_BANG_BANG] = ACTIONS(4835), - [anon_sym_data] = ACTIONS(4833), - [anon_sym_inner] = ACTIONS(4833), - [anon_sym_value] = ACTIONS(4833), - [anon_sym_expect] = ACTIONS(4833), - [anon_sym_actual] = ACTIONS(4833), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4835), - [anon_sym_continue_AT] = ACTIONS(4835), - [anon_sym_break_AT] = ACTIONS(4835), - [sym_real_literal] = ACTIONS(4835), - [sym_integer_literal] = ACTIONS(4833), - [sym_hex_literal] = ACTIONS(4835), - [sym_bin_literal] = ACTIONS(4835), - [anon_sym_true] = ACTIONS(4833), - [anon_sym_false] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4835), - [sym__backtick_identifier] = ACTIONS(4835), - [sym__automatic_semicolon] = ACTIONS(4835), - [sym_safe_nav] = ACTIONS(4835), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4835), - }, - [3383] = { - [sym_type_constraints] = STATE(3599), - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), + [3364] = { [sym__alpha_identifier] = ACTIONS(4179), [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), [anon_sym_LBRACK] = ACTIONS(4181), [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), [anon_sym_RBRACE] = ACTIONS(4181), [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_by] = ACTIONS(4179), [anon_sym_LT] = ACTIONS(4179), [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(4179), [anon_sym_DOT] = ACTIONS(4179), [anon_sym_SEMI] = ACTIONS(4181), [anon_sym_get] = ACTIONS(4179), [anon_sym_set] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [sym__quest] = ACTIONS(4179), [anon_sym_STAR] = ACTIONS(4179), [sym_label] = ACTIONS(4181), [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), [anon_sym_DOT_DOT] = ACTIONS(4181), [anon_sym_QMARK_COLON] = ACTIONS(4181), [anon_sym_AMP_AMP] = ACTIONS(4181), @@ -386451,14044 +393011,16489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4179), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), }, + [3365] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_RBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_RPAREN] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [anon_sym_DASH_GT] = ACTIONS(4579), + [sym_label] = ACTIONS(4579), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_while] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + }, + [3366] = { + [sym_enum_class_body] = STATE(3478), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3367] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_RBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [anon_sym_DASH_GT] = ACTIONS(4587), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_while] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_suspend] = ACTIONS(4585), + [anon_sym_sealed] = ACTIONS(4585), + [anon_sym_annotation] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_lateinit] = ACTIONS(4585), + [anon_sym_public] = ACTIONS(4585), + [anon_sym_private] = ACTIONS(4585), + [anon_sym_internal] = ACTIONS(4585), + [anon_sym_protected] = ACTIONS(4585), + [anon_sym_tailrec] = ACTIONS(4585), + [anon_sym_operator] = ACTIONS(4585), + [anon_sym_infix] = ACTIONS(4585), + [anon_sym_inline] = ACTIONS(4585), + [anon_sym_external] = ACTIONS(4585), + [sym_property_modifier] = ACTIONS(4585), + [anon_sym_abstract] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_open] = ACTIONS(4585), + [anon_sym_vararg] = ACTIONS(4585), + [anon_sym_noinline] = ACTIONS(4585), + [anon_sym_crossinline] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), + [sym_multiline_comment] = ACTIONS(3), + }, + [3368] = { + [sym_class_body] = STATE(3480), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4646), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), + [sym_multiline_comment] = ACTIONS(3), + }, + [3369] = { + [sym_type_constraints] = STATE(3750), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3370] = { + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_RBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_RPAREN] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_DASH_GT] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_while] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_suspend] = ACTIONS(4854), + [anon_sym_sealed] = ACTIONS(4854), + [anon_sym_annotation] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_override] = ACTIONS(4854), + [anon_sym_lateinit] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_internal] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_tailrec] = ACTIONS(4854), + [anon_sym_operator] = ACTIONS(4854), + [anon_sym_infix] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_external] = ACTIONS(4854), + [sym_property_modifier] = ACTIONS(4854), + [anon_sym_abstract] = ACTIONS(4854), + [anon_sym_final] = ACTIONS(4854), + [anon_sym_open] = ACTIONS(4854), + [anon_sym_vararg] = ACTIONS(4854), + [anon_sym_noinline] = ACTIONS(4854), + [anon_sym_crossinline] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), + [sym_multiline_comment] = ACTIONS(3), + }, + [3371] = { + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6817), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), + [sym_multiline_comment] = ACTIONS(3), + }, + [3372] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3373] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + }, + [3374] = { + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [3375] = { + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [3376] = { + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3377] = { + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3378] = { + [sym_type_constraints] = STATE(3621), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [3379] = { + [sym_type_constraints] = STATE(3640), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [3380] = { + [sym_type_constraints] = STATE(3641), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3381] = { + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3382] = { + [sym_type_constraints] = STATE(3645), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [3383] = { + [sym_type_constraints] = STATE(3646), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, [3384] = { - [sym__alpha_identifier] = ACTIONS(4881), - [anon_sym_AT] = ACTIONS(4883), - [anon_sym_LBRACK] = ACTIONS(4883), - [anon_sym_RBRACK] = ACTIONS(4883), - [anon_sym_as] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4883), - [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4883), - [anon_sym_COMMA] = ACTIONS(4883), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4881), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4883), - [anon_sym_get] = ACTIONS(4881), - [anon_sym_set] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4881), - [anon_sym_DASH_GT] = ACTIONS(4883), - [sym_label] = ACTIONS(4883), - [anon_sym_in] = ACTIONS(4881), - [anon_sym_while] = ACTIONS(4881), - [anon_sym_DOT_DOT] = ACTIONS(4883), - [anon_sym_QMARK_COLON] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_else] = ACTIONS(4881), - [anon_sym_COLON_COLON] = ACTIONS(4883), - [anon_sym_PLUS_EQ] = ACTIONS(4883), - [anon_sym_DASH_EQ] = ACTIONS(4883), - [anon_sym_STAR_EQ] = ACTIONS(4883), - [anon_sym_SLASH_EQ] = ACTIONS(4883), - [anon_sym_PERCENT_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4883), - [anon_sym_LT_EQ] = ACTIONS(4883), - [anon_sym_GT_EQ] = ACTIONS(4883), - [anon_sym_BANGin] = ACTIONS(4883), - [anon_sym_is] = ACTIONS(4881), - [anon_sym_BANGis] = ACTIONS(4883), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4881), - [anon_sym_as_QMARK] = ACTIONS(4883), - [anon_sym_PLUS_PLUS] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4883), - [anon_sym_BANG_BANG] = ACTIONS(4883), - [anon_sym_suspend] = ACTIONS(4881), - [anon_sym_sealed] = ACTIONS(4881), - [anon_sym_annotation] = ACTIONS(4881), - [anon_sym_data] = ACTIONS(4881), - [anon_sym_inner] = ACTIONS(4881), - [anon_sym_value] = ACTIONS(4881), - [anon_sym_override] = ACTIONS(4881), - [anon_sym_lateinit] = ACTIONS(4881), - [anon_sym_public] = ACTIONS(4881), - [anon_sym_private] = ACTIONS(4881), - [anon_sym_internal] = ACTIONS(4881), - [anon_sym_protected] = ACTIONS(4881), - [anon_sym_tailrec] = ACTIONS(4881), - [anon_sym_operator] = ACTIONS(4881), - [anon_sym_infix] = ACTIONS(4881), - [anon_sym_inline] = ACTIONS(4881), - [anon_sym_external] = ACTIONS(4881), - [sym_property_modifier] = ACTIONS(4881), - [anon_sym_abstract] = ACTIONS(4881), - [anon_sym_final] = ACTIONS(4881), - [anon_sym_open] = ACTIONS(4881), - [anon_sym_vararg] = ACTIONS(4881), - [anon_sym_noinline] = ACTIONS(4881), - [anon_sym_crossinline] = ACTIONS(4881), - [anon_sym_expect] = ACTIONS(4881), - [anon_sym_actual] = ACTIONS(4881), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4883), - [sym_safe_nav] = ACTIONS(4883), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3385] = { - [sym_type_constraints] = STATE(3598), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_type_constraints] = STATE(3759), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3386] = { - [sym__alpha_identifier] = ACTIONS(4837), - [anon_sym_AT] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_LBRACE] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4837), - [anon_sym_object] = ACTIONS(4837), - [anon_sym_fun] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_get] = ACTIONS(4837), - [anon_sym_set] = ACTIONS(4837), - [anon_sym_this] = ACTIONS(4837), - [anon_sym_super] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [sym_label] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_QMARK_COLON] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_null] = ACTIONS(4837), - [anon_sym_if] = ACTIONS(4837), - [anon_sym_else] = ACTIONS(4837), - [anon_sym_when] = ACTIONS(4837), - [anon_sym_try] = ACTIONS(4837), - [anon_sym_throw] = ACTIONS(4837), - [anon_sym_return] = ACTIONS(4837), - [anon_sym_continue] = ACTIONS(4837), - [anon_sym_break] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4839), - [anon_sym_PLUS_EQ] = ACTIONS(4839), - [anon_sym_DASH_EQ] = ACTIONS(4839), - [anon_sym_STAR_EQ] = ACTIONS(4839), - [anon_sym_SLASH_EQ] = ACTIONS(4839), - [anon_sym_PERCENT_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_BANGin] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4837), - [anon_sym_BANGis] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_as_QMARK] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_BANG_BANG] = ACTIONS(4839), - [anon_sym_data] = ACTIONS(4837), - [anon_sym_inner] = ACTIONS(4837), - [anon_sym_value] = ACTIONS(4837), - [anon_sym_expect] = ACTIONS(4837), - [anon_sym_actual] = ACTIONS(4837), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4839), - [anon_sym_continue_AT] = ACTIONS(4839), - [anon_sym_break_AT] = ACTIONS(4839), - [sym_real_literal] = ACTIONS(4839), - [sym_integer_literal] = ACTIONS(4837), - [sym_hex_literal] = ACTIONS(4839), - [sym_bin_literal] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4837), - [anon_sym_false] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4839), - [sym__backtick_identifier] = ACTIONS(4839), - [sym__automatic_semicolon] = ACTIONS(4839), - [sym_safe_nav] = ACTIONS(4839), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4839), + [sym_type_constraints] = STATE(3752), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), }, [3387] = { - [sym_type_constraints] = STATE(3614), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [3388] = { - [sym__alpha_identifier] = ACTIONS(4885), - [anon_sym_AT] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4887), - [anon_sym_RBRACK] = ACTIONS(4887), - [anon_sym_as] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4887), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4887), - [anon_sym_COMMA] = ACTIONS(4887), - [anon_sym_RPAREN] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_where] = ACTIONS(4885), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4887), - [anon_sym_get] = ACTIONS(4885), - [anon_sym_set] = ACTIONS(4885), - [anon_sym_STAR] = ACTIONS(4885), - [anon_sym_DASH_GT] = ACTIONS(4887), - [sym_label] = ACTIONS(4887), - [anon_sym_in] = ACTIONS(4885), - [anon_sym_while] = ACTIONS(4885), - [anon_sym_DOT_DOT] = ACTIONS(4887), - [anon_sym_QMARK_COLON] = ACTIONS(4887), - [anon_sym_AMP_AMP] = ACTIONS(4887), - [anon_sym_PIPE_PIPE] = ACTIONS(4887), - [anon_sym_else] = ACTIONS(4885), - [anon_sym_COLON_COLON] = ACTIONS(4887), - [anon_sym_PLUS_EQ] = ACTIONS(4887), - [anon_sym_DASH_EQ] = ACTIONS(4887), - [anon_sym_STAR_EQ] = ACTIONS(4887), - [anon_sym_SLASH_EQ] = ACTIONS(4887), - [anon_sym_PERCENT_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), - [anon_sym_LT_EQ] = ACTIONS(4887), - [anon_sym_GT_EQ] = ACTIONS(4887), - [anon_sym_BANGin] = ACTIONS(4887), - [anon_sym_is] = ACTIONS(4885), - [anon_sym_BANGis] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(4885), - [anon_sym_DASH] = ACTIONS(4885), - [anon_sym_SLASH] = ACTIONS(4885), - [anon_sym_PERCENT] = ACTIONS(4885), - [anon_sym_as_QMARK] = ACTIONS(4887), - [anon_sym_PLUS_PLUS] = ACTIONS(4887), - [anon_sym_DASH_DASH] = ACTIONS(4887), - [anon_sym_BANG_BANG] = ACTIONS(4887), - [anon_sym_suspend] = ACTIONS(4885), - [anon_sym_sealed] = ACTIONS(4885), - [anon_sym_annotation] = ACTIONS(4885), - [anon_sym_data] = ACTIONS(4885), - [anon_sym_inner] = ACTIONS(4885), - [anon_sym_value] = ACTIONS(4885), - [anon_sym_override] = ACTIONS(4885), - [anon_sym_lateinit] = ACTIONS(4885), - [anon_sym_public] = ACTIONS(4885), - [anon_sym_private] = ACTIONS(4885), - [anon_sym_internal] = ACTIONS(4885), - [anon_sym_protected] = ACTIONS(4885), - [anon_sym_tailrec] = ACTIONS(4885), - [anon_sym_operator] = ACTIONS(4885), - [anon_sym_infix] = ACTIONS(4885), - [anon_sym_inline] = ACTIONS(4885), - [anon_sym_external] = ACTIONS(4885), - [sym_property_modifier] = ACTIONS(4885), - [anon_sym_abstract] = ACTIONS(4885), - [anon_sym_final] = ACTIONS(4885), - [anon_sym_open] = ACTIONS(4885), - [anon_sym_vararg] = ACTIONS(4885), - [anon_sym_noinline] = ACTIONS(4885), - [anon_sym_crossinline] = ACTIONS(4885), - [anon_sym_expect] = ACTIONS(4885), - [anon_sym_actual] = ACTIONS(4885), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4887), - [sym_safe_nav] = ACTIONS(4887), + [sym_type_constraints] = STATE(3751), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3389] = { - [sym_type_constraints] = STATE(3613), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_type_constraints] = STATE(3710), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3390] = { - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_RBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [3391] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_where] = ACTIONS(4967), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4969), - [anon_sym_get] = ACTIONS(4967), - [anon_sym_set] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_DASH_GT] = ACTIONS(4969), - [sym_label] = ACTIONS(4969), - [anon_sym_in] = ACTIONS(4967), - [anon_sym_while] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_QMARK_COLON] = ACTIONS(4969), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_else] = ACTIONS(4967), - [anon_sym_COLON_COLON] = ACTIONS(4969), - [anon_sym_PLUS_EQ] = ACTIONS(4969), - [anon_sym_DASH_EQ] = ACTIONS(4969), - [anon_sym_STAR_EQ] = ACTIONS(4969), - [anon_sym_SLASH_EQ] = ACTIONS(4969), - [anon_sym_PERCENT_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_BANGin] = ACTIONS(4969), - [anon_sym_is] = ACTIONS(4967), - [anon_sym_BANGis] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_as_QMARK] = ACTIONS(4969), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_BANG_BANG] = ACTIONS(4969), - [anon_sym_suspend] = ACTIONS(4967), - [anon_sym_sealed] = ACTIONS(4967), - [anon_sym_annotation] = ACTIONS(4967), - [anon_sym_data] = ACTIONS(4967), - [anon_sym_inner] = ACTIONS(4967), - [anon_sym_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), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [3392] = { - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_DASH_GT] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_where] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_get] = ACTIONS(4237), + [anon_sym_set] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(6833), + [sym__quest] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [sym_label] = ACTIONS(4239), + [anon_sym_in] = ACTIONS(4237), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_QMARK_COLON] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_else] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_PLUS_EQ] = ACTIONS(4239), + [anon_sym_DASH_EQ] = ACTIONS(4239), + [anon_sym_STAR_EQ] = ACTIONS(4239), + [anon_sym_SLASH_EQ] = ACTIONS(4239), + [anon_sym_PERCENT_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ] = ACTIONS(4237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_BANGin] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4237), + [anon_sym_BANGis] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_as_QMARK] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_BANG_BANG] = ACTIONS(4239), + [anon_sym_suspend] = ACTIONS(4237), + [anon_sym_sealed] = ACTIONS(4237), + [anon_sym_annotation] = ACTIONS(4237), + [anon_sym_data] = ACTIONS(4237), + [anon_sym_inner] = ACTIONS(4237), + [anon_sym_value] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_lateinit] = ACTIONS(4237), + [anon_sym_public] = ACTIONS(4237), + [anon_sym_private] = ACTIONS(4237), + [anon_sym_internal] = ACTIONS(4237), + [anon_sym_protected] = ACTIONS(4237), + [anon_sym_tailrec] = ACTIONS(4237), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_infix] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym_external] = ACTIONS(4237), + [sym_property_modifier] = ACTIONS(4237), + [anon_sym_abstract] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_open] = ACTIONS(4237), + [anon_sym_vararg] = ACTIONS(4237), + [anon_sym_noinline] = ACTIONS(4237), + [anon_sym_crossinline] = ACTIONS(4237), + [anon_sym_expect] = ACTIONS(4237), + [anon_sym_actual] = ACTIONS(4237), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4239), + [sym__automatic_semicolon] = ACTIONS(4239), + [sym_safe_nav] = ACTIONS(4239), [sym_multiline_comment] = ACTIONS(3), }, [3393] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [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_DOT] = 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), + [aux_sym_nullable_type_repeat1] = STATE(3597), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [sym__quest] = ACTIONS(6835), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4305), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, [3394] = { - [sym_class_body] = STATE(3392), - [sym_type_constraints] = STATE(3092), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(5587), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3395] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [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_DOT] = 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), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6837), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, [3396] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [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_DOT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4236), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(6670), - [sym__quest] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4236), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4236), - [anon_sym_QMARK_COLON] = ACTIONS(4236), - [anon_sym_AMP_AMP] = ACTIONS(4236), - [anon_sym_PIPE_PIPE] = ACTIONS(4236), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4236), - [anon_sym_PLUS_EQ] = ACTIONS(4236), - [anon_sym_DASH_EQ] = ACTIONS(4236), - [anon_sym_STAR_EQ] = ACTIONS(4236), - [anon_sym_SLASH_EQ] = ACTIONS(4236), - [anon_sym_PERCENT_EQ] = ACTIONS(4236), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), - [anon_sym_LT_EQ] = ACTIONS(4236), - [anon_sym_GT_EQ] = ACTIONS(4236), - [anon_sym_BANGin] = ACTIONS(4236), - [anon_sym_is] = ACTIONS(4234), - [anon_sym_BANGis] = ACTIONS(4236), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4236), - [anon_sym_PLUS_PLUS] = ACTIONS(4236), - [anon_sym_DASH_DASH] = ACTIONS(4236), - [anon_sym_BANG_BANG] = ACTIONS(4236), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4236), - [sym__automatic_semicolon] = ACTIONS(4236), - [sym_safe_nav] = ACTIONS(4236), + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_suspend] = ACTIONS(4922), + [anon_sym_sealed] = ACTIONS(4922), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_lateinit] = ACTIONS(4922), + [anon_sym_public] = ACTIONS(4922), + [anon_sym_private] = ACTIONS(4922), + [anon_sym_internal] = ACTIONS(4922), + [anon_sym_protected] = ACTIONS(4922), + [anon_sym_tailrec] = ACTIONS(4922), + [anon_sym_operator] = ACTIONS(4922), + [anon_sym_infix] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym_external] = ACTIONS(4922), + [sym_property_modifier] = ACTIONS(4922), + [anon_sym_abstract] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_open] = ACTIONS(4922), + [anon_sym_vararg] = ACTIONS(4922), + [anon_sym_noinline] = ACTIONS(4922), + [anon_sym_crossinline] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), [sym_multiline_comment] = ACTIONS(3), }, [3397] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_label] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_while] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_suspend] = ACTIONS(4931), - [anon_sym_sealed] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4931), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_value] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), - [anon_sym_lateinit] = ACTIONS(4931), - [anon_sym_public] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4931), - [anon_sym_internal] = ACTIONS(4931), - [anon_sym_protected] = ACTIONS(4931), - [anon_sym_tailrec] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_infix] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym_external] = ACTIONS(4931), - [sym_property_modifier] = ACTIONS(4931), - [anon_sym_abstract] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_open] = ACTIONS(4931), - [anon_sym_vararg] = ACTIONS(4931), - [anon_sym_noinline] = ACTIONS(4931), - [anon_sym_crossinline] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), + [sym__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_RBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_RPAREN] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [anon_sym_DASH_GT] = ACTIONS(5033), + [sym_label] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_suspend] = ACTIONS(5031), + [anon_sym_sealed] = ACTIONS(5031), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), + [sym_multiline_comment] = ACTIONS(3), + }, + [3398] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_RBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_RPAREN] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [anon_sym_DASH_GT] = ACTIONS(5049), + [sym_label] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_while] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_override] = ACTIONS(5047), + [anon_sym_lateinit] = ACTIONS(5047), + [anon_sym_public] = ACTIONS(5047), + [anon_sym_private] = ACTIONS(5047), + [anon_sym_internal] = ACTIONS(5047), + [anon_sym_protected] = ACTIONS(5047), + [anon_sym_tailrec] = ACTIONS(5047), + [anon_sym_operator] = ACTIONS(5047), + [anon_sym_infix] = ACTIONS(5047), + [anon_sym_inline] = ACTIONS(5047), + [anon_sym_external] = ACTIONS(5047), + [sym_property_modifier] = ACTIONS(5047), + [anon_sym_abstract] = ACTIONS(5047), + [anon_sym_final] = ACTIONS(5047), + [anon_sym_open] = ACTIONS(5047), + [anon_sym_vararg] = ACTIONS(5047), + [anon_sym_noinline] = ACTIONS(5047), + [anon_sym_crossinline] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), + [sym_multiline_comment] = ACTIONS(3), + }, + [3399] = { + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_EQ] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), + [anon_sym_object] = ACTIONS(4122), + [anon_sym_fun] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_super] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4124), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4122), + [anon_sym_when] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_BANGin] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4122), + [anon_sym_BANGis] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4122), + [anon_sym_sealed] = ACTIONS(4122), + [anon_sym_annotation] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_override] = ACTIONS(4122), + [anon_sym_lateinit] = ACTIONS(4122), + [anon_sym_public] = ACTIONS(4122), + [anon_sym_private] = ACTIONS(4122), + [anon_sym_internal] = ACTIONS(4122), + [anon_sym_protected] = ACTIONS(4122), + [anon_sym_tailrec] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_infix] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym_external] = ACTIONS(4122), + [sym_property_modifier] = ACTIONS(4122), + [anon_sym_abstract] = ACTIONS(4122), + [anon_sym_final] = ACTIONS(4122), + [anon_sym_open] = ACTIONS(4122), + [anon_sym_vararg] = ACTIONS(4122), + [anon_sym_noinline] = ACTIONS(4122), + [anon_sym_crossinline] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4124), + [anon_sym_continue_AT] = ACTIONS(4124), + [anon_sym_break_AT] = ACTIONS(4124), + [anon_sym_this_AT] = ACTIONS(4124), + [anon_sym_super_AT] = ACTIONS(4124), + [sym_real_literal] = ACTIONS(4124), + [sym_integer_literal] = ACTIONS(4122), + [sym_hex_literal] = ACTIONS(4124), + [sym_bin_literal] = ACTIONS(4124), + [anon_sym_true] = ACTIONS(4122), + [anon_sym_false] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4124), + [sym__automatic_semicolon] = ACTIONS(4124), [sym_multiline_comment] = ACTIONS(3), - }, - [3398] = { - [sym__alpha_identifier] = ACTIONS(4346), - [anon_sym_AT] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_EQ] = ACTIONS(4348), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_object] = ACTIONS(4346), - [anon_sym_fun] = ACTIONS(4346), - [anon_sym_SEMI] = ACTIONS(4348), - [anon_sym_get] = ACTIONS(4346), - [anon_sym_set] = ACTIONS(4346), - [anon_sym_this] = ACTIONS(4346), - [anon_sym_super] = ACTIONS(4346), - [sym__quest] = ACTIONS(4348), - [anon_sym_STAR] = ACTIONS(4348), - [anon_sym_DASH_GT] = ACTIONS(4350), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4346), - [anon_sym_if] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4346), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_try] = ACTIONS(4346), - [anon_sym_throw] = ACTIONS(4346), - [anon_sym_return] = ACTIONS(4346), - [anon_sym_continue] = ACTIONS(4346), - [anon_sym_break] = ACTIONS(4346), - [anon_sym_COLON_COLON] = ACTIONS(4348), - [anon_sym_BANGin] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4346), - [anon_sym_BANGis] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4346), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4346), - [anon_sym_sealed] = ACTIONS(4346), - [anon_sym_annotation] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4346), - [anon_sym_inner] = ACTIONS(4346), - [anon_sym_value] = ACTIONS(4346), - [anon_sym_override] = ACTIONS(4346), - [anon_sym_lateinit] = ACTIONS(4346), - [anon_sym_public] = ACTIONS(4346), - [anon_sym_private] = ACTIONS(4346), - [anon_sym_internal] = ACTIONS(4346), - [anon_sym_protected] = ACTIONS(4346), - [anon_sym_tailrec] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(4346), - [anon_sym_infix] = ACTIONS(4346), - [anon_sym_inline] = ACTIONS(4346), - [anon_sym_external] = ACTIONS(4346), - [sym_property_modifier] = ACTIONS(4346), - [anon_sym_abstract] = ACTIONS(4346), - [anon_sym_final] = ACTIONS(4346), - [anon_sym_open] = ACTIONS(4346), - [anon_sym_vararg] = ACTIONS(4346), - [anon_sym_noinline] = ACTIONS(4346), - [anon_sym_crossinline] = ACTIONS(4346), - [anon_sym_expect] = ACTIONS(4346), - [anon_sym_actual] = ACTIONS(4346), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4348), - [anon_sym_continue_AT] = ACTIONS(4348), - [anon_sym_break_AT] = ACTIONS(4348), - [sym_real_literal] = ACTIONS(4348), - [sym_integer_literal] = ACTIONS(4346), - [sym_hex_literal] = ACTIONS(4348), - [sym_bin_literal] = ACTIONS(4348), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_SQUOTE] = ACTIONS(4348), - [sym__backtick_identifier] = ACTIONS(4348), - [sym__automatic_semicolon] = ACTIONS(4348), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4348), - }, - [3399] = { - [sym__alpha_identifier] = ACTIONS(4911), - [anon_sym_AT] = ACTIONS(4913), - [anon_sym_LBRACK] = ACTIONS(4913), - [anon_sym_as] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4913), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4913), - [anon_sym_COMMA] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4911), - [anon_sym_GT] = ACTIONS(4911), - [anon_sym_where] = ACTIONS(4911), - [anon_sym_object] = ACTIONS(4911), - [anon_sym_fun] = ACTIONS(4911), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_SEMI] = ACTIONS(4913), - [anon_sym_get] = ACTIONS(4911), - [anon_sym_set] = ACTIONS(4911), - [anon_sym_this] = ACTIONS(4911), - [anon_sym_super] = ACTIONS(4911), - [anon_sym_STAR] = ACTIONS(4911), - [sym_label] = ACTIONS(4911), - [anon_sym_in] = ACTIONS(4911), - [anon_sym_DOT_DOT] = ACTIONS(4913), - [anon_sym_QMARK_COLON] = ACTIONS(4913), - [anon_sym_AMP_AMP] = ACTIONS(4913), - [anon_sym_PIPE_PIPE] = ACTIONS(4913), - [anon_sym_null] = ACTIONS(4911), - [anon_sym_if] = ACTIONS(4911), - [anon_sym_else] = ACTIONS(4911), - [anon_sym_when] = ACTIONS(4911), - [anon_sym_try] = ACTIONS(4911), - [anon_sym_throw] = ACTIONS(4911), - [anon_sym_return] = ACTIONS(4911), - [anon_sym_continue] = ACTIONS(4911), - [anon_sym_break] = ACTIONS(4911), - [anon_sym_COLON_COLON] = ACTIONS(4913), - [anon_sym_PLUS_EQ] = ACTIONS(4913), - [anon_sym_DASH_EQ] = ACTIONS(4913), - [anon_sym_STAR_EQ] = ACTIONS(4913), - [anon_sym_SLASH_EQ] = ACTIONS(4913), - [anon_sym_PERCENT_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ] = ACTIONS(4911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4913), - [anon_sym_LT_EQ] = ACTIONS(4913), - [anon_sym_GT_EQ] = ACTIONS(4913), - [anon_sym_BANGin] = ACTIONS(4913), - [anon_sym_is] = ACTIONS(4911), - [anon_sym_BANGis] = ACTIONS(4913), - [anon_sym_PLUS] = ACTIONS(4911), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_SLASH] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_as_QMARK] = ACTIONS(4913), - [anon_sym_PLUS_PLUS] = ACTIONS(4913), - [anon_sym_DASH_DASH] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4911), - [anon_sym_BANG_BANG] = ACTIONS(4913), - [anon_sym_data] = ACTIONS(4911), - [anon_sym_inner] = ACTIONS(4911), - [anon_sym_value] = ACTIONS(4911), - [anon_sym_expect] = ACTIONS(4911), - [anon_sym_actual] = ACTIONS(4911), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4913), - [anon_sym_continue_AT] = ACTIONS(4913), - [anon_sym_break_AT] = ACTIONS(4913), - [sym_real_literal] = ACTIONS(4913), - [sym_integer_literal] = ACTIONS(4911), - [sym_hex_literal] = ACTIONS(4913), - [sym_bin_literal] = ACTIONS(4913), - [anon_sym_true] = ACTIONS(4911), - [anon_sym_false] = ACTIONS(4911), - [anon_sym_SQUOTE] = ACTIONS(4913), - [sym__backtick_identifier] = ACTIONS(4913), - [sym__automatic_semicolon] = ACTIONS(4913), - [sym_safe_nav] = ACTIONS(4913), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4913), + [sym__string_start] = ACTIONS(4124), }, [3400] = { - [sym__alpha_identifier] = ACTIONS(4817), - [anon_sym_AT] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4817), - [anon_sym_object] = ACTIONS(4817), - [anon_sym_fun] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_get] = ACTIONS(4817), - [anon_sym_set] = ACTIONS(4817), - [anon_sym_this] = ACTIONS(4817), - [anon_sym_super] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [sym_label] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_QMARK_COLON] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_null] = ACTIONS(4817), - [anon_sym_if] = ACTIONS(4817), - [anon_sym_else] = ACTIONS(4817), - [anon_sym_when] = ACTIONS(4817), - [anon_sym_try] = ACTIONS(4817), - [anon_sym_throw] = ACTIONS(4817), - [anon_sym_return] = ACTIONS(4817), - [anon_sym_continue] = ACTIONS(4817), - [anon_sym_break] = ACTIONS(4817), - [anon_sym_COLON_COLON] = ACTIONS(4819), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_BANGin] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4817), - [anon_sym_BANGis] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_as_QMARK] = ACTIONS(4819), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_BANG_BANG] = ACTIONS(4819), - [anon_sym_data] = ACTIONS(4817), - [anon_sym_inner] = ACTIONS(4817), - [anon_sym_value] = ACTIONS(4817), - [anon_sym_expect] = ACTIONS(4817), - [anon_sym_actual] = ACTIONS(4817), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4819), - [anon_sym_continue_AT] = ACTIONS(4819), - [anon_sym_break_AT] = ACTIONS(4819), - [sym_real_literal] = ACTIONS(4819), - [sym_integer_literal] = ACTIONS(4817), - [sym_hex_literal] = ACTIONS(4819), - [sym_bin_literal] = ACTIONS(4819), - [anon_sym_true] = ACTIONS(4817), - [anon_sym_false] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4819), - [sym__backtick_identifier] = ACTIONS(4819), - [sym__automatic_semicolon] = ACTIONS(4819), - [sym_safe_nav] = ACTIONS(4819), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4819), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), }, [3401] = { - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_as] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_COMMA] = ACTIONS(4103), - [anon_sym_by] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4101), - [anon_sym_GT] = ACTIONS(4101), - [anon_sym_where] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_SEMI] = ACTIONS(4103), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(4101), - [sym__quest] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4103), - [anon_sym_in] = ACTIONS(4101), - [anon_sym_DOT_DOT] = ACTIONS(4103), - [anon_sym_QMARK_COLON] = ACTIONS(4103), - [anon_sym_AMP_AMP] = ACTIONS(4103), - [anon_sym_PIPE_PIPE] = ACTIONS(4103), - [anon_sym_else] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS_EQ] = ACTIONS(4103), - [anon_sym_DASH_EQ] = ACTIONS(4103), - [anon_sym_STAR_EQ] = ACTIONS(4103), - [anon_sym_SLASH_EQ] = ACTIONS(4103), - [anon_sym_PERCENT_EQ] = ACTIONS(4103), - [anon_sym_BANG_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), - [anon_sym_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), - [anon_sym_LT_EQ] = ACTIONS(4103), - [anon_sym_GT_EQ] = ACTIONS(4103), - [anon_sym_BANGin] = ACTIONS(4103), - [anon_sym_is] = ACTIONS(4101), - [anon_sym_BANGis] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(4101), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4103), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4103), - [sym__automatic_semicolon] = ACTIONS(4103), - [sym_safe_nav] = ACTIONS(4103), + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_RBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [anon_sym_DASH_GT] = ACTIONS(4848), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), [sym_multiline_comment] = ACTIONS(3), }, [3402] = { - [sym__alpha_identifier] = ACTIONS(4923), - [anon_sym_AT] = ACTIONS(4925), - [anon_sym_LBRACK] = ACTIONS(4925), - [anon_sym_as] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4925), - [anon_sym_RBRACE] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4925), - [anon_sym_COMMA] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_where] = ACTIONS(4923), - [anon_sym_object] = ACTIONS(4923), - [anon_sym_fun] = ACTIONS(4923), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_SEMI] = ACTIONS(4925), - [anon_sym_get] = ACTIONS(4923), - [anon_sym_set] = ACTIONS(4923), - [anon_sym_this] = ACTIONS(4923), - [anon_sym_super] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [sym_label] = ACTIONS(4923), - [anon_sym_in] = ACTIONS(4923), - [anon_sym_DOT_DOT] = ACTIONS(4925), - [anon_sym_QMARK_COLON] = ACTIONS(4925), - [anon_sym_AMP_AMP] = ACTIONS(4925), - [anon_sym_PIPE_PIPE] = ACTIONS(4925), - [anon_sym_null] = ACTIONS(4923), - [anon_sym_if] = ACTIONS(4923), - [anon_sym_else] = ACTIONS(4923), - [anon_sym_when] = ACTIONS(4923), - [anon_sym_try] = ACTIONS(4923), - [anon_sym_throw] = ACTIONS(4923), - [anon_sym_return] = ACTIONS(4923), - [anon_sym_continue] = ACTIONS(4923), - [anon_sym_break] = ACTIONS(4923), - [anon_sym_COLON_COLON] = ACTIONS(4925), - [anon_sym_PLUS_EQ] = ACTIONS(4925), - [anon_sym_DASH_EQ] = ACTIONS(4925), - [anon_sym_STAR_EQ] = ACTIONS(4925), - [anon_sym_SLASH_EQ] = ACTIONS(4925), - [anon_sym_PERCENT_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4925), - [anon_sym_LT_EQ] = ACTIONS(4925), - [anon_sym_GT_EQ] = ACTIONS(4925), - [anon_sym_BANGin] = ACTIONS(4925), - [anon_sym_is] = ACTIONS(4923), - [anon_sym_BANGis] = ACTIONS(4925), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_PERCENT] = ACTIONS(4923), - [anon_sym_as_QMARK] = ACTIONS(4925), - [anon_sym_PLUS_PLUS] = ACTIONS(4925), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_BANG_BANG] = ACTIONS(4925), - [anon_sym_data] = ACTIONS(4923), - [anon_sym_inner] = ACTIONS(4923), - [anon_sym_value] = ACTIONS(4923), - [anon_sym_expect] = ACTIONS(4923), - [anon_sym_actual] = ACTIONS(4923), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4925), - [anon_sym_continue_AT] = ACTIONS(4925), - [anon_sym_break_AT] = ACTIONS(4925), - [sym_real_literal] = ACTIONS(4925), - [sym_integer_literal] = ACTIONS(4923), - [sym_hex_literal] = ACTIONS(4925), - [sym_bin_literal] = ACTIONS(4925), - [anon_sym_true] = ACTIONS(4923), - [anon_sym_false] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4925), - [sym__backtick_identifier] = ACTIONS(4925), - [sym__automatic_semicolon] = ACTIONS(4925), - [sym_safe_nav] = ACTIONS(4925), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4925), + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [anon_sym_DASH_GT] = ACTIONS(5097), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_while] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), }, [3403] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_object] = ACTIONS(4939), - [anon_sym_fun] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_this] = ACTIONS(4939), - [anon_sym_super] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [sym_label] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_null] = ACTIONS(4939), - [anon_sym_if] = ACTIONS(4939), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_when] = ACTIONS(4939), - [anon_sym_try] = ACTIONS(4939), - [anon_sym_throw] = ACTIONS(4939), - [anon_sym_return] = ACTIONS(4939), - [anon_sym_continue] = ACTIONS(4939), - [anon_sym_break] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_value] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4941), - [anon_sym_continue_AT] = ACTIONS(4941), - [anon_sym_break_AT] = ACTIONS(4941), - [sym_real_literal] = ACTIONS(4941), - [sym_integer_literal] = ACTIONS(4939), - [sym_hex_literal] = ACTIONS(4941), - [sym_bin_literal] = ACTIONS(4941), - [anon_sym_true] = ACTIONS(4939), - [anon_sym_false] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4941), - [sym__backtick_identifier] = ACTIONS(4941), - [sym__automatic_semicolon] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4941), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), }, [3404] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [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_DOT] = 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), - [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(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_RBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [anon_sym_DASH_GT] = ACTIONS(4828), + [sym_label] = ACTIONS(4828), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_while] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_suspend] = ACTIONS(4826), + [anon_sym_sealed] = ACTIONS(4826), + [anon_sym_annotation] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), }, [3405] = { - [sym__alpha_identifier] = ACTIONS(4743), - [anon_sym_AT] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_as] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4743), - [anon_sym_LBRACE] = ACTIONS(4745), - [anon_sym_RBRACE] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_COMMA] = ACTIONS(4745), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4743), - [anon_sym_where] = ACTIONS(4743), - [anon_sym_object] = ACTIONS(4743), - [anon_sym_fun] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_this] = ACTIONS(4743), - [anon_sym_super] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4743), - [sym_label] = ACTIONS(4743), - [anon_sym_in] = ACTIONS(4743), - [anon_sym_DOT_DOT] = ACTIONS(4745), - [anon_sym_QMARK_COLON] = ACTIONS(4745), - [anon_sym_AMP_AMP] = ACTIONS(4745), - [anon_sym_PIPE_PIPE] = ACTIONS(4745), - [anon_sym_null] = ACTIONS(4743), - [anon_sym_if] = ACTIONS(4743), - [anon_sym_else] = ACTIONS(4743), - [anon_sym_when] = ACTIONS(4743), - [anon_sym_try] = ACTIONS(4743), - [anon_sym_throw] = ACTIONS(4743), - [anon_sym_return] = ACTIONS(4743), - [anon_sym_continue] = ACTIONS(4743), - [anon_sym_break] = ACTIONS(4743), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym_PLUS_EQ] = ACTIONS(4745), - [anon_sym_DASH_EQ] = ACTIONS(4745), - [anon_sym_STAR_EQ] = ACTIONS(4745), - [anon_sym_SLASH_EQ] = ACTIONS(4745), - [anon_sym_PERCENT_EQ] = ACTIONS(4745), - [anon_sym_BANG_EQ] = ACTIONS(4743), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4745), - [anon_sym_EQ_EQ] = ACTIONS(4743), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4745), - [anon_sym_LT_EQ] = ACTIONS(4745), - [anon_sym_GT_EQ] = ACTIONS(4745), - [anon_sym_BANGin] = ACTIONS(4745), - [anon_sym_is] = ACTIONS(4743), - [anon_sym_BANGis] = ACTIONS(4745), - [anon_sym_PLUS] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4743), - [anon_sym_PERCENT] = ACTIONS(4743), - [anon_sym_as_QMARK] = ACTIONS(4745), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4743), - [anon_sym_BANG_BANG] = ACTIONS(4745), - [anon_sym_data] = ACTIONS(4743), - [anon_sym_inner] = ACTIONS(4743), - [anon_sym_value] = ACTIONS(4743), - [anon_sym_expect] = ACTIONS(4743), - [anon_sym_actual] = ACTIONS(4743), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4745), - [anon_sym_continue_AT] = ACTIONS(4745), - [anon_sym_break_AT] = ACTIONS(4745), - [sym_real_literal] = ACTIONS(4745), - [sym_integer_literal] = ACTIONS(4743), - [sym_hex_literal] = ACTIONS(4745), - [sym_bin_literal] = ACTIONS(4745), - [anon_sym_true] = ACTIONS(4743), - [anon_sym_false] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4745), - [sym__backtick_identifier] = ACTIONS(4745), - [sym__automatic_semicolon] = ACTIONS(4745), - [sym_safe_nav] = ACTIONS(4745), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4745), + [ts_builtin_sym_end] = ACTIONS(6840), + [sym__alpha_identifier] = ACTIONS(6842), + [anon_sym_AT] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(6840), + [anon_sym_package] = ACTIONS(6842), + [anon_sym_import] = ACTIONS(6842), + [anon_sym_typealias] = ACTIONS(6842), + [anon_sym_class] = ACTIONS(6842), + [anon_sym_interface] = ACTIONS(6842), + [anon_sym_enum] = ACTIONS(6842), + [anon_sym_LBRACE] = ACTIONS(6840), + [anon_sym_LPAREN] = ACTIONS(6840), + [anon_sym_val] = ACTIONS(6842), + [anon_sym_var] = ACTIONS(6842), + [anon_sym_object] = ACTIONS(6842), + [anon_sym_fun] = ACTIONS(6842), + [anon_sym_get] = ACTIONS(6842), + [anon_sym_set] = ACTIONS(6842), + [anon_sym_this] = ACTIONS(6842), + [anon_sym_super] = ACTIONS(6842), + [anon_sym_STAR] = ACTIONS(6840), + [sym_label] = ACTIONS(6842), + [anon_sym_for] = ACTIONS(6842), + [anon_sym_while] = ACTIONS(6842), + [anon_sym_do] = ACTIONS(6842), + [anon_sym_null] = ACTIONS(6842), + [anon_sym_if] = ACTIONS(6842), + [anon_sym_when] = ACTIONS(6842), + [anon_sym_try] = ACTIONS(6842), + [anon_sym_throw] = ACTIONS(6842), + [anon_sym_return] = ACTIONS(6842), + [anon_sym_continue] = ACTIONS(6842), + [anon_sym_break] = ACTIONS(6842), + [anon_sym_COLON_COLON] = ACTIONS(6840), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6842), + [anon_sym_PLUS_PLUS] = ACTIONS(6840), + [anon_sym_DASH_DASH] = ACTIONS(6840), + [anon_sym_BANG] = ACTIONS(6840), + [anon_sym_suspend] = ACTIONS(6842), + [anon_sym_sealed] = ACTIONS(6842), + [anon_sym_annotation] = ACTIONS(6842), + [anon_sym_data] = ACTIONS(6842), + [anon_sym_inner] = ACTIONS(6842), + [anon_sym_value] = ACTIONS(6842), + [anon_sym_override] = ACTIONS(6842), + [anon_sym_lateinit] = ACTIONS(6842), + [anon_sym_public] = ACTIONS(6842), + [anon_sym_private] = ACTIONS(6842), + [anon_sym_internal] = ACTIONS(6842), + [anon_sym_protected] = ACTIONS(6842), + [anon_sym_tailrec] = ACTIONS(6842), + [anon_sym_operator] = ACTIONS(6842), + [anon_sym_infix] = ACTIONS(6842), + [anon_sym_inline] = ACTIONS(6842), + [anon_sym_external] = ACTIONS(6842), + [sym_property_modifier] = ACTIONS(6842), + [anon_sym_abstract] = ACTIONS(6842), + [anon_sym_final] = ACTIONS(6842), + [anon_sym_open] = ACTIONS(6842), + [anon_sym_vararg] = ACTIONS(6842), + [anon_sym_noinline] = ACTIONS(6842), + [anon_sym_crossinline] = ACTIONS(6842), + [anon_sym_expect] = ACTIONS(6842), + [anon_sym_actual] = ACTIONS(6842), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6840), + [anon_sym_continue_AT] = ACTIONS(6840), + [anon_sym_break_AT] = ACTIONS(6840), + [anon_sym_this_AT] = ACTIONS(6840), + [anon_sym_super_AT] = ACTIONS(6840), + [sym_real_literal] = ACTIONS(6840), + [sym_integer_literal] = ACTIONS(6842), + [sym_hex_literal] = ACTIONS(6840), + [sym_bin_literal] = ACTIONS(6840), + [anon_sym_true] = ACTIONS(6842), + [anon_sym_false] = ACTIONS(6842), + [anon_sym_SQUOTE] = ACTIONS(6840), + [sym__backtick_identifier] = ACTIONS(6840), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6840), }, [3406] = { - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_object] = ACTIONS(4011), - [anon_sym_fun] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_this] = ACTIONS(4011), - [anon_sym_super] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [sym_label] = ACTIONS(4011), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_when] = ACTIONS(4011), - [anon_sym_try] = ACTIONS(4011), - [anon_sym_throw] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4013), - [anon_sym_continue_AT] = ACTIONS(4013), - [anon_sym_break_AT] = ACTIONS(4013), - [sym_real_literal] = ACTIONS(4013), - [sym_integer_literal] = ACTIONS(4011), - [sym_hex_literal] = ACTIONS(4013), - [sym_bin_literal] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4011), - [anon_sym_false] = ACTIONS(4011), - [anon_sym_SQUOTE] = ACTIONS(4013), - [sym__backtick_identifier] = ACTIONS(4013), - [sym__automatic_semicolon] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4013), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_DASH_GT] = ACTIONS(4469), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_while] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), + [sym_multiline_comment] = ACTIONS(3), }, [3407] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [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_DOT] = 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), - [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(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4206), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4206), + [anon_sym_continue_AT] = ACTIONS(4206), + [anon_sym_break_AT] = ACTIONS(4206), + [anon_sym_this_AT] = ACTIONS(4206), + [anon_sym_super_AT] = ACTIONS(4206), + [sym_real_literal] = ACTIONS(4206), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4206), + [sym_bin_literal] = ACTIONS(4206), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4206), }, [3408] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [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_DOT] = 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), - [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), + [aux_sym_type_constraints_repeat1] = STATE(3417), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_EQ] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6844), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_object] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_this] = ACTIONS(4339), + [anon_sym_super] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [sym_label] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_suspend] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_annotation] = ACTIONS(4339), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_lateinit] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_tailrec] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_infix] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym_external] = ACTIONS(4339), + [sym_property_modifier] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_final] = ACTIONS(4339), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_vararg] = ACTIONS(4339), + [anon_sym_noinline] = ACTIONS(4339), + [anon_sym_crossinline] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4341), + [anon_sym_continue_AT] = ACTIONS(4341), + [anon_sym_break_AT] = ACTIONS(4341), + [anon_sym_this_AT] = ACTIONS(4341), + [anon_sym_super_AT] = ACTIONS(4341), + [sym_real_literal] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(4339), + [sym_hex_literal] = ACTIONS(4341), + [sym_bin_literal] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4341), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4341), }, [3409] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_where] = ACTIONS(5013), - [anon_sym_object] = ACTIONS(5013), - [anon_sym_fun] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_get] = ACTIONS(5013), - [anon_sym_set] = ACTIONS(5013), - [anon_sym_this] = ACTIONS(5013), - [anon_sym_super] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [sym_label] = ACTIONS(5013), - [anon_sym_in] = ACTIONS(5013), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_QMARK_COLON] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5013), - [anon_sym_if] = ACTIONS(5013), - [anon_sym_else] = ACTIONS(5013), - [anon_sym_when] = ACTIONS(5013), - [anon_sym_try] = ACTIONS(5013), - [anon_sym_throw] = ACTIONS(5013), - [anon_sym_return] = ACTIONS(5013), - [anon_sym_continue] = ACTIONS(5013), - [anon_sym_break] = ACTIONS(5013), - [anon_sym_COLON_COLON] = ACTIONS(5015), - [anon_sym_PLUS_EQ] = ACTIONS(5015), - [anon_sym_DASH_EQ] = ACTIONS(5015), - [anon_sym_STAR_EQ] = ACTIONS(5015), - [anon_sym_SLASH_EQ] = ACTIONS(5015), - [anon_sym_PERCENT_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_BANGin] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5013), - [anon_sym_BANGis] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_as_QMARK] = ACTIONS(5015), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_BANG_BANG] = ACTIONS(5015), - [anon_sym_data] = ACTIONS(5013), - [anon_sym_inner] = ACTIONS(5013), - [anon_sym_value] = ACTIONS(5013), - [anon_sym_expect] = ACTIONS(5013), - [anon_sym_actual] = ACTIONS(5013), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5015), - [anon_sym_continue_AT] = ACTIONS(5015), - [anon_sym_break_AT] = ACTIONS(5015), - [sym_real_literal] = ACTIONS(5015), - [sym_integer_literal] = ACTIONS(5013), - [sym_hex_literal] = ACTIONS(5015), - [sym_bin_literal] = ACTIONS(5015), - [anon_sym_true] = ACTIONS(5013), - [anon_sym_false] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5015), - [sym__backtick_identifier] = ACTIONS(5015), - [sym__automatic_semicolon] = ACTIONS(5015), - [sym_safe_nav] = ACTIONS(5015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5015), + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, [3410] = { - [sym__alpha_identifier] = ACTIONS(5017), - [anon_sym_AT] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_where] = ACTIONS(5017), - [anon_sym_object] = ACTIONS(5017), - [anon_sym_fun] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_get] = ACTIONS(5017), - [anon_sym_set] = ACTIONS(5017), - [anon_sym_this] = ACTIONS(5017), - [anon_sym_super] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [sym_label] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5017), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_QMARK_COLON] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_null] = ACTIONS(5017), - [anon_sym_if] = ACTIONS(5017), - [anon_sym_else] = ACTIONS(5017), - [anon_sym_when] = ACTIONS(5017), - [anon_sym_try] = ACTIONS(5017), - [anon_sym_throw] = ACTIONS(5017), - [anon_sym_return] = ACTIONS(5017), - [anon_sym_continue] = ACTIONS(5017), - [anon_sym_break] = ACTIONS(5017), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_PLUS_EQ] = ACTIONS(5019), - [anon_sym_DASH_EQ] = ACTIONS(5019), - [anon_sym_STAR_EQ] = ACTIONS(5019), - [anon_sym_SLASH_EQ] = ACTIONS(5019), - [anon_sym_PERCENT_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_BANGin] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5017), - [anon_sym_BANGis] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5017), - [anon_sym_as_QMARK] = ACTIONS(5019), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_BANG_BANG] = ACTIONS(5019), - [anon_sym_data] = ACTIONS(5017), - [anon_sym_inner] = ACTIONS(5017), - [anon_sym_value] = ACTIONS(5017), - [anon_sym_expect] = ACTIONS(5017), - [anon_sym_actual] = ACTIONS(5017), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5019), - [anon_sym_continue_AT] = ACTIONS(5019), - [anon_sym_break_AT] = ACTIONS(5019), - [sym_real_literal] = ACTIONS(5019), - [sym_integer_literal] = ACTIONS(5017), - [sym_hex_literal] = ACTIONS(5019), - [sym_bin_literal] = ACTIONS(5019), - [anon_sym_true] = ACTIONS(5017), - [anon_sym_false] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5019), - [sym__backtick_identifier] = ACTIONS(5019), - [sym__automatic_semicolon] = ACTIONS(5019), - [sym_safe_nav] = ACTIONS(5019), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5019), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), }, [3411] = { - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [3412] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_object] = ACTIONS(5021), - [anon_sym_fun] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_this] = ACTIONS(5021), - [anon_sym_super] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [sym_label] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_null] = ACTIONS(5021), - [anon_sym_if] = ACTIONS(5021), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_when] = ACTIONS(5021), - [anon_sym_try] = ACTIONS(5021), - [anon_sym_throw] = ACTIONS(5021), - [anon_sym_return] = ACTIONS(5021), - [anon_sym_continue] = ACTIONS(5021), - [anon_sym_break] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_value] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5023), - [anon_sym_continue_AT] = ACTIONS(5023), - [anon_sym_break_AT] = ACTIONS(5023), - [sym_real_literal] = ACTIONS(5023), - [sym_integer_literal] = ACTIONS(5021), - [sym_hex_literal] = ACTIONS(5023), - [sym_bin_literal] = ACTIONS(5023), - [anon_sym_true] = ACTIONS(5021), - [anon_sym_false] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5023), - [sym__backtick_identifier] = ACTIONS(5023), - [sym__automatic_semicolon] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5023), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [3413] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_object] = ACTIONS(5025), - [anon_sym_fun] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_this] = ACTIONS(5025), - [anon_sym_super] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [sym_label] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_null] = ACTIONS(5025), - [anon_sym_if] = ACTIONS(5025), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_when] = ACTIONS(5025), - [anon_sym_try] = ACTIONS(5025), - [anon_sym_throw] = ACTIONS(5025), - [anon_sym_return] = ACTIONS(5025), - [anon_sym_continue] = ACTIONS(5025), - [anon_sym_break] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_value] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5027), - [anon_sym_continue_AT] = ACTIONS(5027), - [anon_sym_break_AT] = ACTIONS(5027), - [sym_real_literal] = ACTIONS(5027), - [sym_integer_literal] = ACTIONS(5025), - [sym_hex_literal] = ACTIONS(5027), - [sym_bin_literal] = ACTIONS(5027), - [anon_sym_true] = ACTIONS(5025), - [anon_sym_false] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5027), - [sym__backtick_identifier] = ACTIONS(5027), - [sym__automatic_semicolon] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5027), + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_RBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_RPAREN] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(4886), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_while] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), }, [3414] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_as] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_where] = ACTIONS(5029), - [anon_sym_object] = ACTIONS(5029), - [anon_sym_fun] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_get] = ACTIONS(5029), - [anon_sym_set] = ACTIONS(5029), - [anon_sym_this] = ACTIONS(5029), - [anon_sym_super] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [sym_label] = ACTIONS(5029), - [anon_sym_in] = ACTIONS(5029), - [anon_sym_DOT_DOT] = ACTIONS(5031), - [anon_sym_QMARK_COLON] = ACTIONS(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_null] = ACTIONS(5029), - [anon_sym_if] = ACTIONS(5029), - [anon_sym_else] = ACTIONS(5029), - [anon_sym_when] = ACTIONS(5029), - [anon_sym_try] = ACTIONS(5029), - [anon_sym_throw] = ACTIONS(5029), - [anon_sym_return] = ACTIONS(5029), - [anon_sym_continue] = ACTIONS(5029), - [anon_sym_break] = ACTIONS(5029), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ] = ACTIONS(5029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), - [anon_sym_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_EQ] = ACTIONS(5031), - [anon_sym_BANGin] = ACTIONS(5031), - [anon_sym_is] = ACTIONS(5029), - [anon_sym_BANGis] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_PERCENT] = ACTIONS(5029), - [anon_sym_as_QMARK] = ACTIONS(5031), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_BANG_BANG] = ACTIONS(5031), - [anon_sym_data] = ACTIONS(5029), - [anon_sym_inner] = ACTIONS(5029), - [anon_sym_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), - [sym_real_literal] = ACTIONS(5031), - [sym_integer_literal] = ACTIONS(5029), - [sym_hex_literal] = ACTIONS(5031), - [sym_bin_literal] = ACTIONS(5031), - [anon_sym_true] = ACTIONS(5029), - [anon_sym_false] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5031), - [sym__backtick_identifier] = ACTIONS(5031), - [sym__automatic_semicolon] = ACTIONS(5031), - [sym_safe_nav] = ACTIONS(5031), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5031), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), }, [3415] = { - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_RBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_RPAREN] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5065), + [sym_label] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_while] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_suspend] = ACTIONS(5063), + [anon_sym_sealed] = ACTIONS(5063), + [anon_sym_annotation] = ACTIONS(5063), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), [sym_multiline_comment] = ACTIONS(3), }, [3416] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_object] = ACTIONS(5049), - [anon_sym_fun] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_this] = ACTIONS(5049), - [anon_sym_super] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), - [anon_sym_if] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_when] = ACTIONS(5049), - [anon_sym_try] = ACTIONS(5049), - [anon_sym_throw] = ACTIONS(5049), - [anon_sym_return] = ACTIONS(5049), - [anon_sym_continue] = ACTIONS(5049), - [anon_sym_break] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5051), - [anon_sym_continue_AT] = ACTIONS(5051), - [anon_sym_break_AT] = ACTIONS(5051), - [sym_real_literal] = ACTIONS(5051), - [sym_integer_literal] = ACTIONS(5049), - [sym_hex_literal] = ACTIONS(5051), - [sym_bin_literal] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5049), - [anon_sym_false] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5051), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5051), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), }, [3417] = { - [aux_sym_nullable_type_repeat1] = STATE(3321), - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [sym__quest] = ACTIONS(6662), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4221), - [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(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [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(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [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), + [aux_sym_type_constraints_repeat1] = STATE(3529), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_EQ] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6844), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_object] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_this] = ACTIONS(4424), + [anon_sym_super] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4426), + [sym_label] = ACTIONS(4424), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_when] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_throw] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4426), + [anon_sym_continue_AT] = ACTIONS(4426), + [anon_sym_break_AT] = ACTIONS(4426), + [anon_sym_this_AT] = ACTIONS(4426), + [anon_sym_super_AT] = ACTIONS(4426), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4426), }, [3418] = { - [sym__alpha_identifier] = ACTIONS(5138), - [anon_sym_AT] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_RBRACK] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_RPAREN] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_get] = ACTIONS(5138), - [anon_sym_set] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(5140), - [sym_label] = ACTIONS(5140), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_while] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_QMARK_COLON] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_else] = ACTIONS(5138), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_PLUS_EQ] = ACTIONS(5140), - [anon_sym_DASH_EQ] = ACTIONS(5140), - [anon_sym_STAR_EQ] = ACTIONS(5140), - [anon_sym_SLASH_EQ] = ACTIONS(5140), - [anon_sym_PERCENT_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_BANGin] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_BANGis] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_as_QMARK] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_BANG_BANG] = ACTIONS(5140), - [anon_sym_suspend] = ACTIONS(5138), - [anon_sym_sealed] = ACTIONS(5138), - [anon_sym_annotation] = ACTIONS(5138), - [anon_sym_data] = ACTIONS(5138), - [anon_sym_inner] = ACTIONS(5138), - [anon_sym_value] = ACTIONS(5138), - [anon_sym_override] = ACTIONS(5138), - [anon_sym_lateinit] = ACTIONS(5138), - [anon_sym_public] = ACTIONS(5138), - [anon_sym_private] = ACTIONS(5138), - [anon_sym_internal] = ACTIONS(5138), - [anon_sym_protected] = ACTIONS(5138), - [anon_sym_tailrec] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5138), - [anon_sym_infix] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5138), - [anon_sym_external] = ACTIONS(5138), - [sym_property_modifier] = ACTIONS(5138), - [anon_sym_abstract] = ACTIONS(5138), - [anon_sym_final] = ACTIONS(5138), - [anon_sym_open] = ACTIONS(5138), - [anon_sym_vararg] = ACTIONS(5138), - [anon_sym_noinline] = ACTIONS(5138), - [anon_sym_crossinline] = ACTIONS(5138), - [anon_sym_expect] = ACTIONS(5138), - [anon_sym_actual] = ACTIONS(5138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5140), - [sym_safe_nav] = ACTIONS(5140), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [3419] = { - [sym__alpha_identifier] = ACTIONS(4905), - [anon_sym_AT] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_as] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_where] = ACTIONS(4905), - [anon_sym_object] = ACTIONS(4905), - [anon_sym_fun] = ACTIONS(4905), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_SEMI] = ACTIONS(4907), - [anon_sym_get] = ACTIONS(4905), - [anon_sym_set] = ACTIONS(4905), - [anon_sym_this] = ACTIONS(4905), - [anon_sym_super] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [sym_label] = ACTIONS(4905), - [anon_sym_in] = ACTIONS(4905), - [anon_sym_DOT_DOT] = ACTIONS(4907), - [anon_sym_QMARK_COLON] = ACTIONS(4907), - [anon_sym_AMP_AMP] = ACTIONS(4907), - [anon_sym_PIPE_PIPE] = ACTIONS(4907), - [anon_sym_null] = ACTIONS(4905), - [anon_sym_if] = ACTIONS(4905), - [anon_sym_else] = ACTIONS(4905), - [anon_sym_when] = ACTIONS(4905), - [anon_sym_try] = ACTIONS(4905), - [anon_sym_throw] = ACTIONS(4905), - [anon_sym_return] = ACTIONS(4905), - [anon_sym_continue] = ACTIONS(4905), - [anon_sym_break] = ACTIONS(4905), - [anon_sym_COLON_COLON] = ACTIONS(4907), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), - [anon_sym_EQ_EQ] = ACTIONS(4905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), - [anon_sym_LT_EQ] = ACTIONS(4907), - [anon_sym_GT_EQ] = ACTIONS(4907), - [anon_sym_BANGin] = ACTIONS(4907), - [anon_sym_is] = ACTIONS(4905), - [anon_sym_BANGis] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_as_QMARK] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(4907), - [anon_sym_DASH_DASH] = ACTIONS(4907), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_BANG_BANG] = ACTIONS(4907), - [anon_sym_data] = ACTIONS(4905), - [anon_sym_inner] = ACTIONS(4905), - [anon_sym_value] = ACTIONS(4905), - [anon_sym_expect] = ACTIONS(4905), - [anon_sym_actual] = ACTIONS(4905), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4907), - [anon_sym_continue_AT] = ACTIONS(4907), - [anon_sym_break_AT] = ACTIONS(4907), - [sym_real_literal] = ACTIONS(4907), - [sym_integer_literal] = ACTIONS(4905), - [sym_hex_literal] = ACTIONS(4907), - [sym_bin_literal] = ACTIONS(4907), - [anon_sym_true] = ACTIONS(4905), - [anon_sym_false] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4907), - [sym__backtick_identifier] = ACTIONS(4907), - [sym__automatic_semicolon] = ACTIONS(4907), - [sym_safe_nav] = ACTIONS(4907), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4907), + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_RBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_while] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), }, [3420] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_object] = ACTIONS(5057), - [anon_sym_fun] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_this] = ACTIONS(5057), - [anon_sym_super] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), - [anon_sym_if] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_when] = ACTIONS(5057), - [anon_sym_try] = ACTIONS(5057), - [anon_sym_throw] = ACTIONS(5057), - [anon_sym_return] = ACTIONS(5057), - [anon_sym_continue] = ACTIONS(5057), - [anon_sym_break] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(6672), - [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), - [sym_real_literal] = ACTIONS(5059), - [sym_integer_literal] = ACTIONS(5057), - [sym_hex_literal] = ACTIONS(5059), - [sym_bin_literal] = ACTIONS(5059), - [anon_sym_true] = ACTIONS(5057), - [anon_sym_false] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5059), - [sym__backtick_identifier] = ACTIONS(5059), - [sym__automatic_semicolon] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5059), + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_DASH_GT] = ACTIONS(5075), + [sym_label] = ACTIONS(5075), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_while] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), }, [3421] = { - [sym__alpha_identifier] = ACTIONS(5070), - [anon_sym_AT] = ACTIONS(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5070), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_where] = ACTIONS(5070), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym_get] = ACTIONS(5070), - [anon_sym_set] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_DASH_GT] = ACTIONS(5072), - [sym_label] = ACTIONS(5072), - [anon_sym_in] = ACTIONS(5070), - [anon_sym_while] = ACTIONS(5070), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_QMARK_COLON] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_else] = ACTIONS(5070), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5070), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5070), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_BANGin] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5070), - [anon_sym_BANGis] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_as_QMARK] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_BANG_BANG] = ACTIONS(5072), - [anon_sym_suspend] = ACTIONS(5070), - [anon_sym_sealed] = ACTIONS(5070), - [anon_sym_annotation] = ACTIONS(5070), - [anon_sym_data] = ACTIONS(5070), - [anon_sym_inner] = ACTIONS(5070), - [anon_sym_value] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_lateinit] = ACTIONS(5070), - [anon_sym_public] = ACTIONS(5070), - [anon_sym_private] = ACTIONS(5070), - [anon_sym_internal] = ACTIONS(5070), - [anon_sym_protected] = ACTIONS(5070), - [anon_sym_tailrec] = ACTIONS(5070), - [anon_sym_operator] = ACTIONS(5070), - [anon_sym_infix] = ACTIONS(5070), - [anon_sym_inline] = ACTIONS(5070), - [anon_sym_external] = ACTIONS(5070), - [sym_property_modifier] = ACTIONS(5070), - [anon_sym_abstract] = ACTIONS(5070), - [anon_sym_final] = ACTIONS(5070), - [anon_sym_open] = ACTIONS(5070), - [anon_sym_vararg] = ACTIONS(5070), - [anon_sym_noinline] = ACTIONS(5070), - [anon_sym_crossinline] = ACTIONS(5070), - [anon_sym_expect] = ACTIONS(5070), - [anon_sym_actual] = ACTIONS(5070), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5072), - [sym_safe_nav] = ACTIONS(5072), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_RBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_RPAREN] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(6850), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5053), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_while] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, [3422] = { - [sym__alpha_identifier] = ACTIONS(5078), - [anon_sym_AT] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5078), - [anon_sym_EQ] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_where] = ACTIONS(5078), - [anon_sym_object] = ACTIONS(5078), - [anon_sym_fun] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_SEMI] = ACTIONS(5080), - [anon_sym_get] = ACTIONS(5078), - [anon_sym_set] = ACTIONS(5078), - [anon_sym_this] = ACTIONS(5078), - [anon_sym_super] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5078), - [sym_label] = ACTIONS(5078), - [anon_sym_in] = ACTIONS(5078), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_QMARK_COLON] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_null] = ACTIONS(5078), - [anon_sym_if] = ACTIONS(5078), - [anon_sym_else] = ACTIONS(5078), - [anon_sym_when] = ACTIONS(5078), - [anon_sym_try] = ACTIONS(5078), - [anon_sym_throw] = ACTIONS(5078), - [anon_sym_return] = ACTIONS(5078), - [anon_sym_continue] = ACTIONS(5078), - [anon_sym_break] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5080), - [anon_sym_PLUS_EQ] = ACTIONS(5080), - [anon_sym_DASH_EQ] = ACTIONS(5080), - [anon_sym_STAR_EQ] = ACTIONS(5080), - [anon_sym_SLASH_EQ] = ACTIONS(5080), - [anon_sym_PERCENT_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_BANGin] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5078), - [anon_sym_BANGis] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5078), - [anon_sym_as_QMARK] = ACTIONS(5080), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_BANG] = ACTIONS(5078), - [anon_sym_BANG_BANG] = ACTIONS(5080), - [anon_sym_data] = ACTIONS(5078), - [anon_sym_inner] = ACTIONS(5078), - [anon_sym_value] = ACTIONS(5078), - [anon_sym_expect] = ACTIONS(5078), - [anon_sym_actual] = ACTIONS(5078), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5080), - [anon_sym_continue_AT] = ACTIONS(5080), - [anon_sym_break_AT] = ACTIONS(5080), - [sym_real_literal] = ACTIONS(5080), - [sym_integer_literal] = ACTIONS(5078), - [sym_hex_literal] = ACTIONS(5080), - [sym_bin_literal] = ACTIONS(5080), - [anon_sym_true] = ACTIONS(5078), - [anon_sym_false] = ACTIONS(5078), - [anon_sym_SQUOTE] = ACTIONS(5080), - [sym__backtick_identifier] = ACTIONS(5080), - [sym__automatic_semicolon] = ACTIONS(5080), - [sym_safe_nav] = ACTIONS(5080), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5080), + [sym__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_DASH_GT] = ACTIONS(1582), + [sym_label] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), + [sym_multiline_comment] = ACTIONS(3), }, [3423] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5086), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_DASH_GT] = ACTIONS(5059), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_while] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(6675), - [anon_sym_PLUS_EQ] = ACTIONS(5088), - [anon_sym_DASH_EQ] = ACTIONS(5088), - [anon_sym_STAR_EQ] = ACTIONS(5088), - [anon_sym_SLASH_EQ] = ACTIONS(5088), - [anon_sym_PERCENT_EQ] = ACTIONS(5088), - [anon_sym_BANG_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_BANGin] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5057), - [anon_sym_BANGis] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_as_QMARK] = ACTIONS(5059), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_BANG_BANG] = ACTIONS(5059), - [anon_sym_suspend] = ACTIONS(5057), - [anon_sym_sealed] = ACTIONS(5057), - [anon_sym_annotation] = ACTIONS(5057), - [anon_sym_data] = ACTIONS(5057), - [anon_sym_inner] = ACTIONS(5057), - [anon_sym_value] = ACTIONS(5057), - [anon_sym_override] = ACTIONS(5057), - [anon_sym_lateinit] = ACTIONS(5057), - [anon_sym_public] = ACTIONS(5057), - [anon_sym_private] = ACTIONS(5057), - [anon_sym_internal] = ACTIONS(5057), - [anon_sym_protected] = ACTIONS(5057), - [anon_sym_tailrec] = ACTIONS(5057), - [anon_sym_operator] = ACTIONS(5057), - [anon_sym_infix] = ACTIONS(5057), - [anon_sym_inline] = ACTIONS(5057), - [anon_sym_external] = ACTIONS(5057), - [sym_property_modifier] = ACTIONS(5057), - [anon_sym_abstract] = ACTIONS(5057), - [anon_sym_final] = ACTIONS(5057), - [anon_sym_open] = ACTIONS(5057), - [anon_sym_vararg] = ACTIONS(5057), - [anon_sym_noinline] = ACTIONS(5057), - [anon_sym_crossinline] = ACTIONS(5057), - [anon_sym_expect] = ACTIONS(5057), - [anon_sym_actual] = ACTIONS(5057), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, [3424] = { - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3842), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3842), - [anon_sym_fun] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3842), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_this] = ACTIONS(3842), - [anon_sym_super] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3842), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_if] = ACTIONS(3842), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_when] = ACTIONS(3842), - [anon_sym_try] = ACTIONS(3842), - [anon_sym_throw] = ACTIONS(3842), - [anon_sym_return] = ACTIONS(3842), - [anon_sym_continue] = ACTIONS(3842), - [anon_sym_break] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3844), - [anon_sym_PLUS_EQ] = ACTIONS(3844), - [anon_sym_DASH_EQ] = ACTIONS(3844), - [anon_sym_STAR_EQ] = ACTIONS(3844), - [anon_sym_SLASH_EQ] = ACTIONS(3844), - [anon_sym_PERCENT_EQ] = ACTIONS(3844), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3842), - [anon_sym_BANG_BANG] = ACTIONS(3844), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3844), - [anon_sym_continue_AT] = ACTIONS(3844), - [anon_sym_break_AT] = ACTIONS(3844), - [sym_real_literal] = ACTIONS(3844), - [sym_integer_literal] = ACTIONS(3842), - [sym_hex_literal] = ACTIONS(3844), - [sym_bin_literal] = ACTIONS(3844), - [anon_sym_true] = ACTIONS(3842), - [anon_sym_false] = ACTIONS(3842), - [anon_sym_SQUOTE] = ACTIONS(3844), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3844), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3844), + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_RBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_RPAREN] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5127), + [sym_label] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_while] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_suspend] = ACTIONS(5125), + [anon_sym_sealed] = ACTIONS(5125), + [anon_sym_annotation] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_override] = ACTIONS(5125), + [anon_sym_lateinit] = ACTIONS(5125), + [anon_sym_public] = ACTIONS(5125), + [anon_sym_private] = ACTIONS(5125), + [anon_sym_internal] = ACTIONS(5125), + [anon_sym_protected] = ACTIONS(5125), + [anon_sym_tailrec] = ACTIONS(5125), + [anon_sym_operator] = ACTIONS(5125), + [anon_sym_infix] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym_external] = ACTIONS(5125), + [sym_property_modifier] = ACTIONS(5125), + [anon_sym_abstract] = ACTIONS(5125), + [anon_sym_final] = ACTIONS(5125), + [anon_sym_open] = ACTIONS(5125), + [anon_sym_vararg] = ACTIONS(5125), + [anon_sym_noinline] = ACTIONS(5125), + [anon_sym_crossinline] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), + [sym_multiline_comment] = ACTIONS(3), }, [3425] = { - [sym__alpha_identifier] = ACTIONS(5096), - [anon_sym_AT] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_as] = ACTIONS(5096), - [anon_sym_EQ] = ACTIONS(5096), - [anon_sym_LBRACE] = ACTIONS(5098), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_LPAREN] = ACTIONS(5098), - [anon_sym_COMMA] = ACTIONS(5098), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5096), - [anon_sym_object] = ACTIONS(5096), - [anon_sym_fun] = ACTIONS(5096), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_SEMI] = ACTIONS(5098), - [anon_sym_get] = ACTIONS(5096), - [anon_sym_set] = ACTIONS(5096), - [anon_sym_this] = ACTIONS(5096), - [anon_sym_super] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5096), - [sym_label] = ACTIONS(5096), - [anon_sym_in] = ACTIONS(5096), - [anon_sym_DOT_DOT] = ACTIONS(5098), - [anon_sym_QMARK_COLON] = ACTIONS(5098), - [anon_sym_AMP_AMP] = ACTIONS(5098), - [anon_sym_PIPE_PIPE] = ACTIONS(5098), - [anon_sym_null] = ACTIONS(5096), - [anon_sym_if] = ACTIONS(5096), - [anon_sym_else] = ACTIONS(5096), - [anon_sym_when] = ACTIONS(5096), - [anon_sym_try] = ACTIONS(5096), - [anon_sym_throw] = ACTIONS(5096), - [anon_sym_return] = ACTIONS(5096), - [anon_sym_continue] = ACTIONS(5096), - [anon_sym_break] = ACTIONS(5096), - [anon_sym_COLON_COLON] = ACTIONS(5098), - [anon_sym_PLUS_EQ] = ACTIONS(5098), - [anon_sym_DASH_EQ] = ACTIONS(5098), - [anon_sym_STAR_EQ] = ACTIONS(5098), - [anon_sym_SLASH_EQ] = ACTIONS(5098), - [anon_sym_PERCENT_EQ] = ACTIONS(5098), - [anon_sym_BANG_EQ] = ACTIONS(5096), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5098), - [anon_sym_EQ_EQ] = ACTIONS(5096), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5098), - [anon_sym_LT_EQ] = ACTIONS(5098), - [anon_sym_GT_EQ] = ACTIONS(5098), - [anon_sym_BANGin] = ACTIONS(5098), - [anon_sym_is] = ACTIONS(5096), - [anon_sym_BANGis] = ACTIONS(5098), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5096), - [anon_sym_as_QMARK] = ACTIONS(5098), - [anon_sym_PLUS_PLUS] = ACTIONS(5098), - [anon_sym_DASH_DASH] = ACTIONS(5098), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_BANG_BANG] = ACTIONS(5098), - [anon_sym_data] = ACTIONS(5096), - [anon_sym_inner] = ACTIONS(5096), - [anon_sym_value] = ACTIONS(5096), - [anon_sym_expect] = ACTIONS(5096), - [anon_sym_actual] = ACTIONS(5096), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5098), - [anon_sym_continue_AT] = ACTIONS(5098), - [anon_sym_break_AT] = ACTIONS(5098), - [sym_real_literal] = ACTIONS(5098), - [sym_integer_literal] = ACTIONS(5096), - [sym_hex_literal] = ACTIONS(5098), - [sym_bin_literal] = ACTIONS(5098), - [anon_sym_true] = ACTIONS(5096), - [anon_sym_false] = ACTIONS(5096), - [anon_sym_SQUOTE] = ACTIONS(5098), - [sym__backtick_identifier] = ACTIONS(5098), - [sym__automatic_semicolon] = ACTIONS(5098), - [sym_safe_nav] = ACTIONS(5098), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5098), + [sym_type_constraints] = STATE(3649), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), }, [3426] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5086), - [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_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_this] = ACTIONS(5057), - [anon_sym_super] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), - [anon_sym_if] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_when] = ACTIONS(5057), - [anon_sym_try] = ACTIONS(5057), - [anon_sym_throw] = ACTIONS(5057), - [anon_sym_return] = ACTIONS(5057), - [anon_sym_continue] = ACTIONS(5057), - [anon_sym_break] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(6672), - [anon_sym_PLUS_EQ] = ACTIONS(5088), - [anon_sym_DASH_EQ] = ACTIONS(5088), - [anon_sym_STAR_EQ] = ACTIONS(5088), - [anon_sym_SLASH_EQ] = ACTIONS(5088), - [anon_sym_PERCENT_EQ] = ACTIONS(5088), - [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), - [sym_real_literal] = ACTIONS(5059), - [sym_integer_literal] = ACTIONS(5057), - [sym_hex_literal] = ACTIONS(5059), - [sym_bin_literal] = ACTIONS(5059), - [anon_sym_true] = ACTIONS(5057), - [anon_sym_false] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5059), - [sym__backtick_identifier] = ACTIONS(5059), - [sym__automatic_semicolon] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5059), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), }, [3427] = { - [sym__alpha_identifier] = ACTIONS(1582), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_object] = ACTIONS(1582), - [anon_sym_fun] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_this] = ACTIONS(1582), - [anon_sym_super] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [sym_label] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(1582), - [anon_sym_try] = ACTIONS(1582), - [anon_sym_throw] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_data] = ACTIONS(1582), - [anon_sym_inner] = ACTIONS(1582), - [anon_sym_value] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(1582), - [anon_sym_actual] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1580), - [anon_sym_continue_AT] = ACTIONS(1580), - [anon_sym_break_AT] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [sym_hex_literal] = ACTIONS(1580), - [sym_bin_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1580), - [sym__backtick_identifier] = ACTIONS(1580), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1580), + [sym_type_constraints] = STATE(3647), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [3428] = { - [sym__alpha_identifier] = ACTIONS(5108), - [anon_sym_AT] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5108), - [anon_sym_EQ] = ACTIONS(5108), - [anon_sym_LBRACE] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5108), - [anon_sym_object] = ACTIONS(5108), - [anon_sym_fun] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_SEMI] = ACTIONS(5110), - [anon_sym_get] = ACTIONS(5108), - [anon_sym_set] = ACTIONS(5108), - [anon_sym_this] = ACTIONS(5108), - [anon_sym_super] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5108), - [sym_label] = ACTIONS(5108), - [anon_sym_in] = ACTIONS(5108), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_QMARK_COLON] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_null] = ACTIONS(5108), - [anon_sym_if] = ACTIONS(5108), - [anon_sym_else] = ACTIONS(5108), - [anon_sym_when] = ACTIONS(5108), - [anon_sym_try] = ACTIONS(5108), - [anon_sym_throw] = ACTIONS(5108), - [anon_sym_return] = ACTIONS(5108), - [anon_sym_continue] = ACTIONS(5108), - [anon_sym_break] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(5110), - [anon_sym_PLUS_EQ] = ACTIONS(5110), - [anon_sym_DASH_EQ] = ACTIONS(5110), - [anon_sym_STAR_EQ] = ACTIONS(5110), - [anon_sym_SLASH_EQ] = ACTIONS(5110), - [anon_sym_PERCENT_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_BANGin] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5108), - [anon_sym_BANGis] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5108), - [anon_sym_as_QMARK] = ACTIONS(5110), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_BANG_BANG] = ACTIONS(5110), - [anon_sym_data] = ACTIONS(5108), - [anon_sym_inner] = ACTIONS(5108), - [anon_sym_value] = ACTIONS(5108), - [anon_sym_expect] = ACTIONS(5108), - [anon_sym_actual] = ACTIONS(5108), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5110), - [anon_sym_continue_AT] = ACTIONS(5110), - [anon_sym_break_AT] = ACTIONS(5110), - [sym_real_literal] = ACTIONS(5110), - [sym_integer_literal] = ACTIONS(5108), - [sym_hex_literal] = ACTIONS(5110), - [sym_bin_literal] = ACTIONS(5110), - [anon_sym_true] = ACTIONS(5108), - [anon_sym_false] = ACTIONS(5108), - [anon_sym_SQUOTE] = ACTIONS(5110), - [sym__backtick_identifier] = ACTIONS(5110), - [sym__automatic_semicolon] = ACTIONS(5110), - [sym_safe_nav] = ACTIONS(5110), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5110), + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_RBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [anon_sym_DASH_GT] = ACTIONS(4868), + [sym_label] = ACTIONS(4868), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_while] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_suspend] = ACTIONS(4866), + [anon_sym_sealed] = ACTIONS(4866), + [anon_sym_annotation] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_override] = ACTIONS(4866), + [anon_sym_lateinit] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_internal] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_tailrec] = ACTIONS(4866), + [anon_sym_operator] = ACTIONS(4866), + [anon_sym_infix] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_external] = ACTIONS(4866), + [sym_property_modifier] = ACTIONS(4866), + [anon_sym_abstract] = ACTIONS(4866), + [anon_sym_final] = ACTIONS(4866), + [anon_sym_open] = ACTIONS(4866), + [anon_sym_vararg] = ACTIONS(4866), + [anon_sym_noinline] = ACTIONS(4866), + [anon_sym_crossinline] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), + [sym_multiline_comment] = ACTIONS(3), }, [3429] = { - [sym__alpha_identifier] = ACTIONS(5112), - [anon_sym_AT] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5112), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_LBRACE] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5112), - [anon_sym_object] = ACTIONS(5112), - [anon_sym_fun] = ACTIONS(5112), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_get] = ACTIONS(5112), - [anon_sym_set] = ACTIONS(5112), - [anon_sym_this] = ACTIONS(5112), - [anon_sym_super] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5112), - [sym_label] = ACTIONS(5112), - [anon_sym_in] = ACTIONS(5112), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_QMARK_COLON] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_if] = ACTIONS(5112), - [anon_sym_else] = ACTIONS(5112), - [anon_sym_when] = ACTIONS(5112), - [anon_sym_try] = ACTIONS(5112), - [anon_sym_throw] = ACTIONS(5112), - [anon_sym_return] = ACTIONS(5112), - [anon_sym_continue] = ACTIONS(5112), - [anon_sym_break] = ACTIONS(5112), - [anon_sym_COLON_COLON] = ACTIONS(5114), - [anon_sym_PLUS_EQ] = ACTIONS(5114), - [anon_sym_DASH_EQ] = ACTIONS(5114), - [anon_sym_STAR_EQ] = ACTIONS(5114), - [anon_sym_SLASH_EQ] = ACTIONS(5114), - [anon_sym_PERCENT_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_BANGin] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5112), - [anon_sym_BANGis] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5112), - [anon_sym_as_QMARK] = ACTIONS(5114), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_BANG_BANG] = ACTIONS(5114), - [anon_sym_data] = ACTIONS(5112), - [anon_sym_inner] = ACTIONS(5112), - [anon_sym_value] = ACTIONS(5112), - [anon_sym_expect] = ACTIONS(5112), - [anon_sym_actual] = ACTIONS(5112), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5114), - [anon_sym_continue_AT] = ACTIONS(5114), - [anon_sym_break_AT] = ACTIONS(5114), - [sym_real_literal] = ACTIONS(5114), - [sym_integer_literal] = ACTIONS(5112), - [sym_hex_literal] = ACTIONS(5114), - [sym_bin_literal] = ACTIONS(5114), - [anon_sym_true] = ACTIONS(5112), - [anon_sym_false] = ACTIONS(5112), - [anon_sym_SQUOTE] = ACTIONS(5114), - [sym__backtick_identifier] = ACTIONS(5114), - [sym__automatic_semicolon] = ACTIONS(5114), - [sym_safe_nav] = ACTIONS(5114), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5114), + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6852), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), }, [3430] = { - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(4412), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_object] = ACTIONS(4410), - [anon_sym_fun] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_this] = ACTIONS(4410), - [anon_sym_super] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_throw] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4412), - [anon_sym_continue_AT] = ACTIONS(4412), - [anon_sym_break_AT] = ACTIONS(4412), - [sym_real_literal] = ACTIONS(4412), - [sym_integer_literal] = ACTIONS(4410), - [sym_hex_literal] = ACTIONS(4412), - [sym_bin_literal] = ACTIONS(4412), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [anon_sym_SQUOTE] = ACTIONS(4412), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4412), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), }, [3431] = { - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [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_DOT] = 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_type_constraints] = STATE(3633), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3432] = { - [sym__alpha_identifier] = ACTIONS(4645), - [anon_sym_AT] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4647), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_RBRACE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4645), - [anon_sym_GT] = ACTIONS(4645), - [anon_sym_where] = ACTIONS(4645), - [anon_sym_object] = ACTIONS(4645), - [anon_sym_fun] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_get] = ACTIONS(4645), - [anon_sym_set] = ACTIONS(4645), - [anon_sym_this] = ACTIONS(4645), - [anon_sym_super] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4645), - [sym_label] = ACTIONS(4645), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4647), - [anon_sym_QMARK_COLON] = ACTIONS(4647), - [anon_sym_AMP_AMP] = ACTIONS(4647), - [anon_sym_PIPE_PIPE] = ACTIONS(4647), - [anon_sym_null] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_else] = ACTIONS(4645), - [anon_sym_when] = ACTIONS(4645), - [anon_sym_try] = ACTIONS(4645), - [anon_sym_throw] = ACTIONS(4645), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_continue] = ACTIONS(4645), - [anon_sym_break] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4647), - [anon_sym_PLUS_EQ] = ACTIONS(4647), - [anon_sym_DASH_EQ] = ACTIONS(4647), - [anon_sym_STAR_EQ] = ACTIONS(4647), - [anon_sym_SLASH_EQ] = ACTIONS(4647), - [anon_sym_PERCENT_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4647), - [anon_sym_LT_EQ] = ACTIONS(4647), - [anon_sym_GT_EQ] = ACTIONS(4647), - [anon_sym_BANGin] = ACTIONS(4647), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_BANGis] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4645), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_as_QMARK] = ACTIONS(4647), - [anon_sym_PLUS_PLUS] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_BANG_BANG] = ACTIONS(4647), - [anon_sym_data] = ACTIONS(4645), - [anon_sym_inner] = ACTIONS(4645), - [anon_sym_value] = ACTIONS(4645), - [anon_sym_expect] = ACTIONS(4645), - [anon_sym_actual] = ACTIONS(4645), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4647), - [anon_sym_continue_AT] = ACTIONS(4647), - [anon_sym_break_AT] = ACTIONS(4647), - [sym_real_literal] = ACTIONS(4647), - [sym_integer_literal] = ACTIONS(4645), - [sym_hex_literal] = ACTIONS(4647), - [sym_bin_literal] = ACTIONS(4647), - [anon_sym_true] = ACTIONS(4645), - [anon_sym_false] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4647), - [sym__backtick_identifier] = ACTIONS(4647), - [sym__automatic_semicolon] = ACTIONS(4647), - [sym_safe_nav] = ACTIONS(4647), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4647), + [sym_type_constraints] = STATE(3631), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), }, [3433] = { - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1780), - [anon_sym_set] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1782), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(1780), - [anon_sym_sealed] = ACTIONS(1780), - [anon_sym_annotation] = ACTIONS(1780), - [anon_sym_data] = ACTIONS(1780), - [anon_sym_inner] = ACTIONS(1780), - [anon_sym_value] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_lateinit] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_internal] = ACTIONS(1780), - [anon_sym_protected] = ACTIONS(1780), - [anon_sym_tailrec] = ACTIONS(1780), - [anon_sym_operator] = ACTIONS(1780), - [anon_sym_infix] = ACTIONS(1780), - [anon_sym_inline] = ACTIONS(1780), - [anon_sym_external] = ACTIONS(1780), - [sym_property_modifier] = ACTIONS(1780), - [anon_sym_abstract] = ACTIONS(1780), - [anon_sym_final] = ACTIONS(1780), - [anon_sym_open] = ACTIONS(1780), - [anon_sym_vararg] = ACTIONS(1780), - [anon_sym_noinline] = ACTIONS(1780), - [anon_sym_crossinline] = ACTIONS(1780), - [anon_sym_expect] = ACTIONS(1780), - [anon_sym_actual] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6854), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, [3434] = { - [aux_sym_nullable_type_repeat1] = STATE(3434), - [sym__alpha_identifier] = ACTIONS(4225), - [anon_sym_AT] = ACTIONS(4227), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_COMMA] = ACTIONS(4227), - [anon_sym_by] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4225), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_where] = ACTIONS(4225), - [anon_sym_DOT] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4225), - [anon_sym_set] = ACTIONS(4225), - [sym__quest] = ACTIONS(6678), - [anon_sym_STAR] = ACTIONS(4225), - [sym_label] = ACTIONS(4227), - [anon_sym_in] = ACTIONS(4225), - [anon_sym_DOT_DOT] = ACTIONS(4227), - [anon_sym_QMARK_COLON] = ACTIONS(4227), - [anon_sym_AMP_AMP] = ACTIONS(4227), - [anon_sym_PIPE_PIPE] = ACTIONS(4227), - [anon_sym_else] = ACTIONS(4225), - [anon_sym_COLON_COLON] = ACTIONS(4227), - [anon_sym_PLUS_EQ] = ACTIONS(4227), - [anon_sym_DASH_EQ] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4227), - [anon_sym_SLASH_EQ] = ACTIONS(4227), - [anon_sym_PERCENT_EQ] = ACTIONS(4227), - [anon_sym_BANG_EQ] = ACTIONS(4225), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), - [anon_sym_EQ_EQ] = ACTIONS(4225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_BANGin] = ACTIONS(4227), - [anon_sym_is] = ACTIONS(4225), - [anon_sym_BANGis] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_as_QMARK] = ACTIONS(4227), - [anon_sym_PLUS_PLUS] = ACTIONS(4227), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_BANG_BANG] = ACTIONS(4227), - [anon_sym_suspend] = ACTIONS(4225), - [anon_sym_sealed] = ACTIONS(4225), - [anon_sym_annotation] = ACTIONS(4225), - [anon_sym_data] = ACTIONS(4225), - [anon_sym_inner] = ACTIONS(4225), - [anon_sym_value] = ACTIONS(4225), - [anon_sym_override] = ACTIONS(4225), - [anon_sym_lateinit] = ACTIONS(4225), - [anon_sym_public] = ACTIONS(4225), - [anon_sym_private] = ACTIONS(4225), - [anon_sym_internal] = ACTIONS(4225), - [anon_sym_protected] = ACTIONS(4225), - [anon_sym_tailrec] = ACTIONS(4225), - [anon_sym_operator] = ACTIONS(4225), - [anon_sym_infix] = ACTIONS(4225), - [anon_sym_inline] = ACTIONS(4225), - [anon_sym_external] = ACTIONS(4225), - [sym_property_modifier] = ACTIONS(4225), - [anon_sym_abstract] = ACTIONS(4225), - [anon_sym_final] = ACTIONS(4225), - [anon_sym_open] = ACTIONS(4225), - [anon_sym_vararg] = ACTIONS(4225), - [anon_sym_noinline] = ACTIONS(4225), - [anon_sym_crossinline] = ACTIONS(4225), - [anon_sym_expect] = ACTIONS(4225), - [anon_sym_actual] = ACTIONS(4225), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4227), - [sym__automatic_semicolon] = ACTIONS(4227), - [sym_safe_nav] = ACTIONS(4227), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6856), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, [3435] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_DASH_GT] = ACTIONS(5047), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_while] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_value] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [anon_sym_DASH_GT] = ACTIONS(4948), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_while] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_suspend] = ACTIONS(4946), + [anon_sym_sealed] = ACTIONS(4946), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_lateinit] = ACTIONS(4946), + [anon_sym_public] = ACTIONS(4946), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_internal] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_tailrec] = ACTIONS(4946), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_infix] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym_external] = ACTIONS(4946), + [sym_property_modifier] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_open] = ACTIONS(4946), + [anon_sym_vararg] = ACTIONS(4946), + [anon_sym_noinline] = ACTIONS(4946), + [anon_sym_crossinline] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), [sym_multiline_comment] = ACTIONS(3), }, [3436] = { - [sym__alpha_identifier] = ACTIONS(4308), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_COMMA] = ACTIONS(4310), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_SEMI] = ACTIONS(4310), - [anon_sym_get] = ACTIONS(4308), - [anon_sym_set] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [sym__quest] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4308), - [sym_label] = ACTIONS(4310), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_DOT_DOT] = ACTIONS(4310), - [anon_sym_QMARK_COLON] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4310), - [anon_sym_PIPE_PIPE] = ACTIONS(4310), - [anon_sym_else] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(4310), - [anon_sym_PLUS_EQ] = ACTIONS(4310), - [anon_sym_DASH_EQ] = ACTIONS(4310), - [anon_sym_STAR_EQ] = ACTIONS(4310), - [anon_sym_SLASH_EQ] = ACTIONS(4310), - [anon_sym_PERCENT_EQ] = ACTIONS(4310), - [anon_sym_BANG_EQ] = ACTIONS(4308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), - [anon_sym_EQ_EQ] = ACTIONS(4308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), - [anon_sym_LT_EQ] = ACTIONS(4310), - [anon_sym_GT_EQ] = ACTIONS(4310), - [anon_sym_BANGin] = ACTIONS(4310), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_BANGis] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4308), - [anon_sym_as_QMARK] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4310), - [anon_sym_DASH_DASH] = ACTIONS(4310), - [anon_sym_BANG_BANG] = ACTIONS(4310), - [anon_sym_suspend] = ACTIONS(4308), - [anon_sym_sealed] = ACTIONS(4308), - [anon_sym_annotation] = ACTIONS(4308), - [anon_sym_data] = ACTIONS(4308), - [anon_sym_inner] = ACTIONS(4308), - [anon_sym_value] = ACTIONS(4308), - [anon_sym_override] = ACTIONS(4308), - [anon_sym_lateinit] = ACTIONS(4308), - [anon_sym_public] = ACTIONS(4308), - [anon_sym_private] = ACTIONS(4308), - [anon_sym_internal] = ACTIONS(4308), - [anon_sym_protected] = ACTIONS(4308), - [anon_sym_tailrec] = ACTIONS(4308), - [anon_sym_operator] = ACTIONS(4308), - [anon_sym_infix] = ACTIONS(4308), - [anon_sym_inline] = ACTIONS(4308), - [anon_sym_external] = ACTIONS(4308), - [sym_property_modifier] = ACTIONS(4308), - [anon_sym_abstract] = ACTIONS(4308), - [anon_sym_final] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4308), - [anon_sym_vararg] = ACTIONS(4308), - [anon_sym_noinline] = ACTIONS(4308), - [anon_sym_crossinline] = ACTIONS(4308), - [anon_sym_expect] = ACTIONS(4308), - [anon_sym_actual] = ACTIONS(4308), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4310), - [sym__automatic_semicolon] = ACTIONS(4310), - [sym_safe_nav] = ACTIONS(4310), + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_RBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_RPAREN] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5169), + [sym_label] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_while] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_suspend] = ACTIONS(5167), + [anon_sym_sealed] = ACTIONS(5167), + [anon_sym_annotation] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_lateinit] = ACTIONS(5167), + [anon_sym_public] = ACTIONS(5167), + [anon_sym_private] = ACTIONS(5167), + [anon_sym_internal] = ACTIONS(5167), + [anon_sym_protected] = ACTIONS(5167), + [anon_sym_tailrec] = ACTIONS(5167), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_infix] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym_external] = ACTIONS(5167), + [sym_property_modifier] = ACTIONS(5167), + [anon_sym_abstract] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_open] = ACTIONS(5167), + [anon_sym_vararg] = ACTIONS(5167), + [anon_sym_noinline] = ACTIONS(5167), + [anon_sym_crossinline] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), [sym_multiline_comment] = ACTIONS(3), }, [3437] = { - [sym__alpha_identifier] = ACTIONS(5092), - [anon_sym_AT] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_RBRACK] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5092), - [anon_sym_EQ] = ACTIONS(5092), - [anon_sym_LBRACE] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_RPAREN] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5092), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_SEMI] = ACTIONS(5094), - [anon_sym_get] = ACTIONS(5092), - [anon_sym_set] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5092), - [anon_sym_DASH_GT] = ACTIONS(5094), - [sym_label] = ACTIONS(5094), - [anon_sym_in] = ACTIONS(5092), - [anon_sym_while] = ACTIONS(5092), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_QMARK_COLON] = ACTIONS(5094), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_else] = ACTIONS(5092), - [anon_sym_COLON_COLON] = ACTIONS(5094), - [anon_sym_PLUS_EQ] = ACTIONS(5094), - [anon_sym_DASH_EQ] = ACTIONS(5094), - [anon_sym_STAR_EQ] = ACTIONS(5094), - [anon_sym_SLASH_EQ] = ACTIONS(5094), - [anon_sym_PERCENT_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5092), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5092), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_BANGin] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5092), - [anon_sym_BANGis] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5092), - [anon_sym_as_QMARK] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_BANG_BANG] = ACTIONS(5094), - [anon_sym_suspend] = ACTIONS(5092), - [anon_sym_sealed] = ACTIONS(5092), - [anon_sym_annotation] = ACTIONS(5092), - [anon_sym_data] = ACTIONS(5092), - [anon_sym_inner] = ACTIONS(5092), - [anon_sym_value] = ACTIONS(5092), - [anon_sym_override] = ACTIONS(5092), - [anon_sym_lateinit] = ACTIONS(5092), - [anon_sym_public] = ACTIONS(5092), - [anon_sym_private] = ACTIONS(5092), - [anon_sym_internal] = ACTIONS(5092), - [anon_sym_protected] = ACTIONS(5092), - [anon_sym_tailrec] = ACTIONS(5092), - [anon_sym_operator] = ACTIONS(5092), - [anon_sym_infix] = ACTIONS(5092), - [anon_sym_inline] = ACTIONS(5092), - [anon_sym_external] = ACTIONS(5092), - [sym_property_modifier] = ACTIONS(5092), - [anon_sym_abstract] = ACTIONS(5092), - [anon_sym_final] = ACTIONS(5092), - [anon_sym_open] = ACTIONS(5092), - [anon_sym_vararg] = ACTIONS(5092), - [anon_sym_noinline] = ACTIONS(5092), - [anon_sym_crossinline] = ACTIONS(5092), - [anon_sym_expect] = ACTIONS(5092), - [anon_sym_actual] = ACTIONS(5092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5094), - [sym_safe_nav] = ACTIONS(5094), + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [anon_sym_DASH_GT] = ACTIONS(4956), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_while] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_suspend] = ACTIONS(4954), + [anon_sym_sealed] = ACTIONS(4954), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_lateinit] = ACTIONS(4954), + [anon_sym_public] = ACTIONS(4954), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_internal] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_tailrec] = ACTIONS(4954), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_infix] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym_external] = ACTIONS(4954), + [sym_property_modifier] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_open] = ACTIONS(4954), + [anon_sym_vararg] = ACTIONS(4954), + [anon_sym_noinline] = ACTIONS(4954), + [anon_sym_crossinline] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), [sym_multiline_comment] = ACTIONS(3), }, [3438] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5005), - [sym_label] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_while] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_suspend] = ACTIONS(5003), - [anon_sym_sealed] = ACTIONS(5003), - [anon_sym_annotation] = ACTIONS(5003), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_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_safe_nav] = ACTIONS(5005), + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [anon_sym_DASH_GT] = ACTIONS(4952), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_while] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_suspend] = ACTIONS(4950), + [anon_sym_sealed] = ACTIONS(4950), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_lateinit] = ACTIONS(4950), + [anon_sym_public] = ACTIONS(4950), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_internal] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_tailrec] = ACTIONS(4950), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_infix] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym_external] = ACTIONS(4950), + [sym_property_modifier] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_open] = ACTIONS(4950), + [anon_sym_vararg] = ACTIONS(4950), + [anon_sym_noinline] = ACTIONS(4950), + [anon_sym_crossinline] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), [sym_multiline_comment] = ACTIONS(3), }, [3439] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_RBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [anon_sym_DASH_GT] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(6681), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5133), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), [sym_multiline_comment] = ACTIONS(3), }, [3440] = { - [sym__alpha_identifier] = ACTIONS(4795), - [anon_sym_AT] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4797), - [anon_sym_as] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_where] = ACTIONS(4795), - [anon_sym_object] = ACTIONS(4795), - [anon_sym_fun] = ACTIONS(4795), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_get] = ACTIONS(4795), - [anon_sym_set] = ACTIONS(4795), - [anon_sym_this] = ACTIONS(4795), - [anon_sym_super] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4795), - [sym_label] = ACTIONS(4795), - [anon_sym_in] = ACTIONS(4795), - [anon_sym_DOT_DOT] = ACTIONS(4797), - [anon_sym_QMARK_COLON] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_null] = ACTIONS(4795), - [anon_sym_if] = ACTIONS(4795), - [anon_sym_else] = ACTIONS(4795), - [anon_sym_when] = ACTIONS(4795), - [anon_sym_try] = ACTIONS(4795), - [anon_sym_throw] = ACTIONS(4795), - [anon_sym_return] = ACTIONS(4795), - [anon_sym_continue] = ACTIONS(4795), - [anon_sym_break] = ACTIONS(4795), - [anon_sym_COLON_COLON] = ACTIONS(4797), - [anon_sym_PLUS_EQ] = ACTIONS(4797), - [anon_sym_DASH_EQ] = ACTIONS(4797), - [anon_sym_STAR_EQ] = ACTIONS(4797), - [anon_sym_SLASH_EQ] = ACTIONS(4797), - [anon_sym_PERCENT_EQ] = ACTIONS(4797), - [anon_sym_BANG_EQ] = ACTIONS(4795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4797), - [anon_sym_EQ_EQ] = ACTIONS(4795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4797), - [anon_sym_LT_EQ] = ACTIONS(4797), - [anon_sym_GT_EQ] = ACTIONS(4797), - [anon_sym_BANGin] = ACTIONS(4797), - [anon_sym_is] = ACTIONS(4795), - [anon_sym_BANGis] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4795), - [anon_sym_as_QMARK] = ACTIONS(4797), - [anon_sym_PLUS_PLUS] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4795), - [anon_sym_BANG_BANG] = ACTIONS(4797), - [anon_sym_data] = ACTIONS(4795), - [anon_sym_inner] = ACTIONS(4795), - [anon_sym_value] = ACTIONS(4795), - [anon_sym_expect] = ACTIONS(4795), - [anon_sym_actual] = ACTIONS(4795), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4797), - [anon_sym_continue_AT] = ACTIONS(4797), - [anon_sym_break_AT] = ACTIONS(4797), - [sym_real_literal] = ACTIONS(4797), - [sym_integer_literal] = ACTIONS(4795), - [sym_hex_literal] = ACTIONS(4797), - [sym_bin_literal] = ACTIONS(4797), - [anon_sym_true] = ACTIONS(4795), - [anon_sym_false] = ACTIONS(4795), - [anon_sym_SQUOTE] = ACTIONS(4797), - [sym__backtick_identifier] = ACTIONS(4797), - [sym__automatic_semicolon] = ACTIONS(4797), - [sym_safe_nav] = ACTIONS(4797), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4797), + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_while] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), }, [3441] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_RBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(6683), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [anon_sym_DASH_GT] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(6681), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_RBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_RPAREN] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5197), + [sym_label] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_while] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_suspend] = ACTIONS(5195), + [anon_sym_sealed] = ACTIONS(5195), + [anon_sym_annotation] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_lateinit] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_internal] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_tailrec] = ACTIONS(5195), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_infix] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_external] = ACTIONS(5195), + [sym_property_modifier] = ACTIONS(5195), + [anon_sym_abstract] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_open] = ACTIONS(5195), + [anon_sym_vararg] = ACTIONS(5195), + [anon_sym_noinline] = ACTIONS(5195), + [anon_sym_crossinline] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), [sym_multiline_comment] = ACTIONS(3), }, [3442] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_where] = ACTIONS(4963), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym_get] = ACTIONS(4963), - [anon_sym_set] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_label] = ACTIONS(4965), - [anon_sym_in] = ACTIONS(4963), - [anon_sym_while] = ACTIONS(4963), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_QMARK_COLON] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_else] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4963), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_BANGin] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4963), - [anon_sym_BANGis] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_as_QMARK] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_BANG_BANG] = ACTIONS(4965), - [anon_sym_suspend] = ACTIONS(4963), - [anon_sym_sealed] = ACTIONS(4963), - [anon_sym_annotation] = ACTIONS(4963), - [anon_sym_data] = ACTIONS(4963), - [anon_sym_inner] = ACTIONS(4963), - [anon_sym_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(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6858), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [3443] = { - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_RBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_RPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_DASH_GT] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6860), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, [3444] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4708), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), }, [3445] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [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_DOT] = 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), + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_object] = ACTIONS(4696), + [anon_sym_fun] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_this] = ACTIONS(4696), + [anon_sym_super] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_null] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_when] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_continue] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4698), + [anon_sym_continue_AT] = ACTIONS(4698), + [anon_sym_break_AT] = ACTIONS(4698), + [anon_sym_this_AT] = ACTIONS(4698), + [anon_sym_super_AT] = ACTIONS(4698), + [sym_real_literal] = ACTIONS(4698), + [sym_integer_literal] = ACTIONS(4696), + [sym_hex_literal] = ACTIONS(4698), + [sym_bin_literal] = ACTIONS(4698), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4698), }, [3446] = { - [sym__alpha_identifier] = ACTIONS(4807), - [anon_sym_AT] = ACTIONS(4809), - [anon_sym_LBRACK] = ACTIONS(4809), - [anon_sym_RBRACK] = ACTIONS(4809), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4807), - [anon_sym_LBRACE] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_LPAREN] = ACTIONS(4809), - [anon_sym_COMMA] = ACTIONS(4809), - [anon_sym_RPAREN] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(4807), - [anon_sym_GT] = ACTIONS(4807), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_SEMI] = ACTIONS(4809), - [anon_sym_get] = ACTIONS(4807), - [anon_sym_set] = ACTIONS(4807), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4809), - [sym_label] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4807), - [anon_sym_while] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4809), - [anon_sym_QMARK_COLON] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_else] = ACTIONS(4807), - [anon_sym_COLON_COLON] = ACTIONS(4809), - [anon_sym_PLUS_EQ] = ACTIONS(4809), - [anon_sym_DASH_EQ] = ACTIONS(4809), - [anon_sym_STAR_EQ] = ACTIONS(4809), - [anon_sym_SLASH_EQ] = ACTIONS(4809), - [anon_sym_PERCENT_EQ] = ACTIONS(4809), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4809), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4809), - [anon_sym_LT_EQ] = ACTIONS(4809), - [anon_sym_GT_EQ] = ACTIONS(4809), - [anon_sym_BANGin] = ACTIONS(4809), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_BANGis] = ACTIONS(4809), - [anon_sym_PLUS] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4807), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_as_QMARK] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4809), - [anon_sym_DASH_DASH] = ACTIONS(4809), - [anon_sym_BANG_BANG] = ACTIONS(4809), - [anon_sym_suspend] = ACTIONS(4807), - [anon_sym_sealed] = ACTIONS(4807), - [anon_sym_annotation] = ACTIONS(4807), - [anon_sym_data] = ACTIONS(4807), - [anon_sym_inner] = ACTIONS(4807), - [anon_sym_value] = ACTIONS(4807), - [anon_sym_override] = ACTIONS(4807), - [anon_sym_lateinit] = ACTIONS(4807), - [anon_sym_public] = ACTIONS(4807), - [anon_sym_private] = ACTIONS(4807), - [anon_sym_internal] = ACTIONS(4807), - [anon_sym_protected] = ACTIONS(4807), - [anon_sym_tailrec] = ACTIONS(4807), - [anon_sym_operator] = ACTIONS(4807), - [anon_sym_infix] = ACTIONS(4807), - [anon_sym_inline] = ACTIONS(4807), - [anon_sym_external] = ACTIONS(4807), - [sym_property_modifier] = ACTIONS(4807), - [anon_sym_abstract] = ACTIONS(4807), - [anon_sym_final] = ACTIONS(4807), - [anon_sym_open] = ACTIONS(4807), - [anon_sym_vararg] = ACTIONS(4807), - [anon_sym_noinline] = ACTIONS(4807), - [anon_sym_crossinline] = ACTIONS(4807), - [anon_sym_expect] = ACTIONS(4807), - [anon_sym_actual] = ACTIONS(4807), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4809), - [sym_safe_nav] = ACTIONS(4809), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_object] = ACTIONS(4674), + [anon_sym_fun] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_this] = ACTIONS(4674), + [anon_sym_super] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_when] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4674), + [anon_sym_throw] = ACTIONS(4674), + [anon_sym_return] = ACTIONS(4674), + [anon_sym_continue] = ACTIONS(4674), + [anon_sym_break] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4676), + [anon_sym_continue_AT] = ACTIONS(4676), + [anon_sym_break_AT] = ACTIONS(4676), + [anon_sym_this_AT] = ACTIONS(4676), + [anon_sym_super_AT] = ACTIONS(4676), + [sym_real_literal] = ACTIONS(4676), + [sym_integer_literal] = ACTIONS(4674), + [sym_hex_literal] = ACTIONS(4676), + [sym_bin_literal] = ACTIONS(4676), + [anon_sym_true] = ACTIONS(4674), + [anon_sym_false] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4676), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4676), }, [3447] = { - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_RBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4472), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_RPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_DASH_GT] = ACTIONS(4472), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_while] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(6862), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [3448] = { - [sym__alpha_identifier] = ACTIONS(4171), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(4173), - [anon_sym_as] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_COMMA] = ACTIONS(4173), - [anon_sym_by] = ACTIONS(4171), - [anon_sym_LT] = ACTIONS(4171), - [anon_sym_GT] = ACTIONS(4171), - [anon_sym_where] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4173), - [anon_sym_get] = ACTIONS(4171), - [anon_sym_set] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - [sym__quest] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4171), - [sym_label] = ACTIONS(4173), - [anon_sym_in] = ACTIONS(4171), - [anon_sym_DOT_DOT] = ACTIONS(4173), - [anon_sym_QMARK_COLON] = ACTIONS(4173), - [anon_sym_AMP_AMP] = ACTIONS(4173), - [anon_sym_PIPE_PIPE] = ACTIONS(4173), - [anon_sym_else] = ACTIONS(4171), - [anon_sym_COLON_COLON] = ACTIONS(4173), - [anon_sym_PLUS_EQ] = ACTIONS(4173), - [anon_sym_DASH_EQ] = ACTIONS(4173), - [anon_sym_STAR_EQ] = ACTIONS(4173), - [anon_sym_SLASH_EQ] = ACTIONS(4173), - [anon_sym_PERCENT_EQ] = ACTIONS(4173), - [anon_sym_BANG_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), - [anon_sym_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), - [anon_sym_LT_EQ] = ACTIONS(4173), - [anon_sym_GT_EQ] = ACTIONS(4173), - [anon_sym_BANGin] = ACTIONS(4173), - [anon_sym_is] = ACTIONS(4171), - [anon_sym_BANGis] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4171), - [anon_sym_PERCENT] = ACTIONS(4171), - [anon_sym_as_QMARK] = ACTIONS(4173), - [anon_sym_PLUS_PLUS] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(4173), - [anon_sym_BANG_BANG] = ACTIONS(4173), - [anon_sym_suspend] = ACTIONS(4171), - [anon_sym_sealed] = ACTIONS(4171), - [anon_sym_annotation] = ACTIONS(4171), - [anon_sym_data] = ACTIONS(4171), - [anon_sym_inner] = ACTIONS(4171), - [anon_sym_value] = ACTIONS(4171), - [anon_sym_override] = ACTIONS(4171), - [anon_sym_lateinit] = ACTIONS(4171), - [anon_sym_public] = ACTIONS(4171), - [anon_sym_private] = ACTIONS(4171), - [anon_sym_internal] = ACTIONS(4171), - [anon_sym_protected] = ACTIONS(4171), - [anon_sym_tailrec] = ACTIONS(4171), - [anon_sym_operator] = ACTIONS(4171), - [anon_sym_infix] = ACTIONS(4171), - [anon_sym_inline] = ACTIONS(4171), - [anon_sym_external] = ACTIONS(4171), - [sym_property_modifier] = ACTIONS(4171), - [anon_sym_abstract] = ACTIONS(4171), - [anon_sym_final] = ACTIONS(4171), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_vararg] = ACTIONS(4171), - [anon_sym_noinline] = ACTIONS(4171), - [anon_sym_crossinline] = ACTIONS(4171), - [anon_sym_expect] = ACTIONS(4171), - [anon_sym_actual] = ACTIONS(4171), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4173), - [sym__automatic_semicolon] = ACTIONS(4173), - [sym_safe_nav] = ACTIONS(4173), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(6864), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [3449] = { - [sym__alpha_identifier] = ACTIONS(4869), - [anon_sym_AT] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(4871), - [anon_sym_as] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_LPAREN] = ACTIONS(4871), - [anon_sym_COMMA] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(4869), - [anon_sym_GT] = ACTIONS(4869), - [anon_sym_where] = ACTIONS(4869), - [anon_sym_object] = ACTIONS(4869), - [anon_sym_fun] = ACTIONS(4869), - [anon_sym_DOT] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym_get] = ACTIONS(4869), - [anon_sym_set] = ACTIONS(4869), - [anon_sym_this] = ACTIONS(4869), - [anon_sym_super] = ACTIONS(4869), - [anon_sym_STAR] = ACTIONS(4869), - [sym_label] = ACTIONS(4869), - [anon_sym_in] = ACTIONS(4869), - [anon_sym_DOT_DOT] = ACTIONS(4871), - [anon_sym_QMARK_COLON] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_null] = ACTIONS(4869), - [anon_sym_if] = ACTIONS(4869), - [anon_sym_else] = ACTIONS(4869), - [anon_sym_when] = ACTIONS(4869), - [anon_sym_try] = ACTIONS(4869), - [anon_sym_throw] = ACTIONS(4869), - [anon_sym_return] = ACTIONS(4869), - [anon_sym_continue] = ACTIONS(4869), - [anon_sym_break] = ACTIONS(4869), - [anon_sym_COLON_COLON] = ACTIONS(4871), - [anon_sym_PLUS_EQ] = ACTIONS(4871), - [anon_sym_DASH_EQ] = ACTIONS(4871), - [anon_sym_STAR_EQ] = ACTIONS(4871), - [anon_sym_SLASH_EQ] = ACTIONS(4871), - [anon_sym_PERCENT_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), - [anon_sym_LT_EQ] = ACTIONS(4871), - [anon_sym_GT_EQ] = ACTIONS(4871), - [anon_sym_BANGin] = ACTIONS(4871), - [anon_sym_is] = ACTIONS(4869), - [anon_sym_BANGis] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(4869), - [anon_sym_DASH] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4869), - [anon_sym_PERCENT] = ACTIONS(4869), - [anon_sym_as_QMARK] = ACTIONS(4871), - [anon_sym_PLUS_PLUS] = ACTIONS(4871), - [anon_sym_DASH_DASH] = ACTIONS(4871), - [anon_sym_BANG] = ACTIONS(4869), - [anon_sym_BANG_BANG] = ACTIONS(4871), - [anon_sym_data] = ACTIONS(4869), - [anon_sym_inner] = ACTIONS(4869), - [anon_sym_value] = ACTIONS(4869), - [anon_sym_expect] = ACTIONS(4869), - [anon_sym_actual] = ACTIONS(4869), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4871), - [anon_sym_continue_AT] = ACTIONS(4871), - [anon_sym_break_AT] = ACTIONS(4871), - [sym_real_literal] = ACTIONS(4871), - [sym_integer_literal] = ACTIONS(4869), - [sym_hex_literal] = ACTIONS(4871), - [sym_bin_literal] = ACTIONS(4871), - [anon_sym_true] = ACTIONS(4869), - [anon_sym_false] = ACTIONS(4869), - [anon_sym_SQUOTE] = ACTIONS(4871), - [sym__backtick_identifier] = ACTIONS(4871), - [sym__automatic_semicolon] = ACTIONS(4871), - [sym_safe_nav] = ACTIONS(4871), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4871), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6866), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), }, [3450] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_DASH_GT] = ACTIONS(4937), - [sym_label] = ACTIONS(4937), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_while] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_suspend] = ACTIONS(4935), - [anon_sym_sealed] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4935), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_value] = ACTIONS(4935), - [anon_sym_override] = ACTIONS(4935), - [anon_sym_lateinit] = ACTIONS(4935), - [anon_sym_public] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4935), - [anon_sym_internal] = ACTIONS(4935), - [anon_sym_protected] = ACTIONS(4935), - [anon_sym_tailrec] = ACTIONS(4935), - [anon_sym_operator] = ACTIONS(4935), - [anon_sym_infix] = ACTIONS(4935), - [anon_sym_inline] = ACTIONS(4935), - [anon_sym_external] = ACTIONS(4935), - [sym_property_modifier] = ACTIONS(4935), - [anon_sym_abstract] = ACTIONS(4935), - [anon_sym_final] = ACTIONS(4935), - [anon_sym_open] = ACTIONS(4935), - [anon_sym_vararg] = ACTIONS(4935), - [anon_sym_noinline] = ACTIONS(4935), - [anon_sym_crossinline] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6868), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [3451] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_while] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, [3452] = { - [sym__alpha_identifier] = ACTIONS(4889), - [anon_sym_AT] = ACTIONS(4891), - [anon_sym_LBRACK] = ACTIONS(4891), - [anon_sym_RBRACK] = ACTIONS(4891), - [anon_sym_as] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4891), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [anon_sym_COMMA] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4889), - [anon_sym_GT] = ACTIONS(4889), - [anon_sym_where] = ACTIONS(4889), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_get] = ACTIONS(4889), - [anon_sym_set] = ACTIONS(4889), - [anon_sym_STAR] = ACTIONS(4889), - [anon_sym_DASH_GT] = ACTIONS(4891), - [sym_label] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4889), - [anon_sym_while] = ACTIONS(4889), - [anon_sym_DOT_DOT] = ACTIONS(4891), - [anon_sym_QMARK_COLON] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_else] = ACTIONS(4889), - [anon_sym_COLON_COLON] = ACTIONS(4891), - [anon_sym_PLUS_EQ] = ACTIONS(4891), - [anon_sym_DASH_EQ] = ACTIONS(4891), - [anon_sym_STAR_EQ] = ACTIONS(4891), - [anon_sym_SLASH_EQ] = ACTIONS(4891), - [anon_sym_PERCENT_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4891), - [anon_sym_LT_EQ] = ACTIONS(4891), - [anon_sym_GT_EQ] = ACTIONS(4891), - [anon_sym_BANGin] = ACTIONS(4891), - [anon_sym_is] = ACTIONS(4889), - [anon_sym_BANGis] = ACTIONS(4891), - [anon_sym_PLUS] = ACTIONS(4889), - [anon_sym_DASH] = ACTIONS(4889), - [anon_sym_SLASH] = ACTIONS(4889), - [anon_sym_PERCENT] = ACTIONS(4889), - [anon_sym_as_QMARK] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4891), - [anon_sym_DASH_DASH] = ACTIONS(4891), - [anon_sym_BANG_BANG] = ACTIONS(4891), - [anon_sym_suspend] = ACTIONS(4889), - [anon_sym_sealed] = ACTIONS(4889), - [anon_sym_annotation] = ACTIONS(4889), - [anon_sym_data] = ACTIONS(4889), - [anon_sym_inner] = ACTIONS(4889), - [anon_sym_value] = ACTIONS(4889), - [anon_sym_override] = ACTIONS(4889), - [anon_sym_lateinit] = ACTIONS(4889), - [anon_sym_public] = ACTIONS(4889), - [anon_sym_private] = ACTIONS(4889), - [anon_sym_internal] = ACTIONS(4889), - [anon_sym_protected] = ACTIONS(4889), - [anon_sym_tailrec] = ACTIONS(4889), - [anon_sym_operator] = ACTIONS(4889), - [anon_sym_infix] = ACTIONS(4889), - [anon_sym_inline] = ACTIONS(4889), - [anon_sym_external] = ACTIONS(4889), - [sym_property_modifier] = ACTIONS(4889), - [anon_sym_abstract] = ACTIONS(4889), - [anon_sym_final] = ACTIONS(4889), - [anon_sym_open] = ACTIONS(4889), - [anon_sym_vararg] = ACTIONS(4889), - [anon_sym_noinline] = ACTIONS(4889), - [anon_sym_crossinline] = ACTIONS(4889), - [anon_sym_expect] = ACTIONS(4889), - [anon_sym_actual] = ACTIONS(4889), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4891), - [sym_safe_nav] = ACTIONS(4891), + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_RBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [anon_sym_DASH_GT] = ACTIONS(4916), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_while] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_suspend] = ACTIONS(4914), + [anon_sym_sealed] = ACTIONS(4914), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_lateinit] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_internal] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_tailrec] = ACTIONS(4914), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_infix] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym_external] = ACTIONS(4914), + [sym_property_modifier] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_open] = ACTIONS(4914), + [anon_sym_vararg] = ACTIONS(4914), + [anon_sym_noinline] = ACTIONS(4914), + [anon_sym_crossinline] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), [sym_multiline_comment] = ACTIONS(3), }, [3453] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_while] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_RBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [anon_sym_DASH_GT] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_while] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), [sym_multiline_comment] = ACTIONS(3), }, [3454] = { - [sym__alpha_identifier] = ACTIONS(4865), - [anon_sym_AT] = ACTIONS(4867), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_RBRACK] = ACTIONS(4867), - [anon_sym_as] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4865), - [anon_sym_LBRACE] = ACTIONS(4867), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [anon_sym_COMMA] = ACTIONS(4867), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_where] = ACTIONS(4865), - [anon_sym_DOT] = ACTIONS(4865), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_get] = ACTIONS(4865), - [anon_sym_set] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_DASH_GT] = ACTIONS(4867), - [sym_label] = ACTIONS(4867), - [anon_sym_in] = ACTIONS(4865), - [anon_sym_while] = ACTIONS(4865), - [anon_sym_DOT_DOT] = ACTIONS(4867), - [anon_sym_QMARK_COLON] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_else] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4867), - [anon_sym_PLUS_EQ] = ACTIONS(4867), - [anon_sym_DASH_EQ] = ACTIONS(4867), - [anon_sym_STAR_EQ] = ACTIONS(4867), - [anon_sym_SLASH_EQ] = ACTIONS(4867), - [anon_sym_PERCENT_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4867), - [anon_sym_BANGin] = ACTIONS(4867), - [anon_sym_is] = ACTIONS(4865), - [anon_sym_BANGis] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_as_QMARK] = ACTIONS(4867), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_BANG_BANG] = ACTIONS(4867), - [anon_sym_suspend] = ACTIONS(4865), - [anon_sym_sealed] = ACTIONS(4865), - [anon_sym_annotation] = ACTIONS(4865), - [anon_sym_data] = ACTIONS(4865), - [anon_sym_inner] = ACTIONS(4865), - [anon_sym_value] = ACTIONS(4865), - [anon_sym_override] = ACTIONS(4865), - [anon_sym_lateinit] = ACTIONS(4865), - [anon_sym_public] = ACTIONS(4865), - [anon_sym_private] = ACTIONS(4865), - [anon_sym_internal] = ACTIONS(4865), - [anon_sym_protected] = ACTIONS(4865), - [anon_sym_tailrec] = ACTIONS(4865), - [anon_sym_operator] = ACTIONS(4865), - [anon_sym_infix] = ACTIONS(4865), - [anon_sym_inline] = ACTIONS(4865), - [anon_sym_external] = ACTIONS(4865), - [sym_property_modifier] = ACTIONS(4865), - [anon_sym_abstract] = ACTIONS(4865), - [anon_sym_final] = ACTIONS(4865), - [anon_sym_open] = ACTIONS(4865), - [anon_sym_vararg] = ACTIONS(4865), - [anon_sym_noinline] = ACTIONS(4865), - [anon_sym_crossinline] = ACTIONS(4865), - [anon_sym_expect] = ACTIONS(4865), - [anon_sym_actual] = ACTIONS(4865), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4867), - [sym_safe_nav] = ACTIONS(4867), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_RBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_RPAREN] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [anon_sym_DASH_GT] = ACTIONS(5061), + [sym_label] = ACTIONS(5061), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_while] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_suspend] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_annotation] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), [sym_multiline_comment] = ACTIONS(3), }, [3455] = { - [sym_type_constraints] = STATE(3806), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_type_constraints] = STATE(3620), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3456] = { - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_RBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_RPAREN] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [anon_sym_DASH_GT] = ACTIONS(4510), - [sym_label] = ACTIONS(4510), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_while] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_RBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_RPAREN] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5069), + [sym_label] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_while] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_suspend] = ACTIONS(5067), + [anon_sym_sealed] = ACTIONS(5067), + [anon_sym_annotation] = ACTIONS(5067), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), [sym_multiline_comment] = ACTIONS(3), }, [3457] = { - [sym_function_body] = STATE(3762), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6687), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_while] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_suspend] = ACTIONS(4974), + [anon_sym_sealed] = ACTIONS(4974), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_lateinit] = ACTIONS(4974), + [anon_sym_public] = ACTIONS(4974), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_internal] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_tailrec] = ACTIONS(4974), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_infix] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym_external] = ACTIONS(4974), + [sym_property_modifier] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_open] = ACTIONS(4974), + [anon_sym_vararg] = ACTIONS(4974), + [anon_sym_noinline] = ACTIONS(4974), + [anon_sym_crossinline] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, [3458] = { - [sym__alpha_identifier] = ACTIONS(5053), - [anon_sym_AT] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [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_DOT] = 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__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_RBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_RPAREN] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_label] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_while] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), [sym_multiline_comment] = ACTIONS(3), }, [3459] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(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_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_while] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_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(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_RBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_label] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_while] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), [sym_multiline_comment] = ACTIONS(3), }, [3460] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_DASH_GT] = ACTIONS(5001), - [sym_label] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_suspend] = ACTIONS(4999), - [anon_sym_sealed] = ACTIONS(4999), - [anon_sym_annotation] = ACTIONS(4999), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_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__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_DASH_GT] = ACTIONS(5087), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_while] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), [sym_multiline_comment] = ACTIONS(3), }, [3461] = { - [sym_type_constraints] = STATE(3888), - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6689), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3462] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_object] = ACTIONS(5009), - [anon_sym_fun] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_this] = ACTIONS(5009), - [anon_sym_super] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [sym_label] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_null] = ACTIONS(5009), - [anon_sym_if] = ACTIONS(5009), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_when] = ACTIONS(5009), - [anon_sym_try] = ACTIONS(5009), - [anon_sym_throw] = ACTIONS(5009), - [anon_sym_return] = ACTIONS(5009), - [anon_sym_continue] = ACTIONS(5009), - [anon_sym_break] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [anon_sym_PLUS_EQ] = ACTIONS(5011), - [anon_sym_DASH_EQ] = ACTIONS(5011), - [anon_sym_STAR_EQ] = ACTIONS(5011), - [anon_sym_SLASH_EQ] = ACTIONS(5011), - [anon_sym_PERCENT_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ] = ACTIONS(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_value] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5011), - [anon_sym_continue_AT] = ACTIONS(5011), - [anon_sym_break_AT] = ACTIONS(5011), - [sym_real_literal] = ACTIONS(5011), - [sym_integer_literal] = ACTIONS(5009), - [sym_hex_literal] = ACTIONS(5011), - [sym_bin_literal] = ACTIONS(5011), - [anon_sym_true] = ACTIONS(5009), - [anon_sym_false] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5011), - [sym__backtick_identifier] = ACTIONS(5011), - [sym__automatic_semicolon] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5011), + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4214), + [sym_label] = ACTIONS(4212), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), }, [3463] = { - [sym__alpha_identifier] = ACTIONS(4951), - [anon_sym_AT] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_as] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_where] = ACTIONS(4951), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym_get] = ACTIONS(4951), - [anon_sym_set] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_DASH_GT] = ACTIONS(4953), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4951), - [anon_sym_while] = ACTIONS(4951), - [anon_sym_DOT_DOT] = ACTIONS(4953), - [anon_sym_QMARK_COLON] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [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(4951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_BANGin] = ACTIONS(4953), - [anon_sym_is] = ACTIONS(4951), - [anon_sym_BANGis] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_as_QMARK] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4953), - [anon_sym_suspend] = ACTIONS(4951), - [anon_sym_sealed] = ACTIONS(4951), - [anon_sym_annotation] = ACTIONS(4951), - [anon_sym_data] = ACTIONS(4951), - [anon_sym_inner] = ACTIONS(4951), - [anon_sym_value] = ACTIONS(4951), - [anon_sym_override] = ACTIONS(4951), - [anon_sym_lateinit] = ACTIONS(4951), - [anon_sym_public] = ACTIONS(4951), - [anon_sym_private] = ACTIONS(4951), - [anon_sym_internal] = ACTIONS(4951), - [anon_sym_protected] = ACTIONS(4951), - [anon_sym_tailrec] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_infix] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym_external] = ACTIONS(4951), - [sym_property_modifier] = ACTIONS(4951), - [anon_sym_abstract] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_open] = ACTIONS(4951), - [anon_sym_vararg] = ACTIONS(4951), - [anon_sym_noinline] = ACTIONS(4951), - [anon_sym_crossinline] = ACTIONS(4951), - [anon_sym_expect] = ACTIONS(4951), - [anon_sym_actual] = ACTIONS(4951), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4953), - [sym_safe_nav] = ACTIONS(4953), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(6870), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [3464] = { - [sym__alpha_identifier] = ACTIONS(4947), - [anon_sym_AT] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_where] = ACTIONS(4947), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_get] = ACTIONS(4947), - [anon_sym_set] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_DASH_GT] = ACTIONS(4949), - [sym_label] = ACTIONS(4949), - [anon_sym_in] = ACTIONS(4947), - [anon_sym_while] = ACTIONS(4947), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_QMARK_COLON] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_else] = ACTIONS(4947), - [anon_sym_COLON_COLON] = ACTIONS(4949), - [anon_sym_PLUS_EQ] = ACTIONS(4949), - [anon_sym_DASH_EQ] = ACTIONS(4949), - [anon_sym_STAR_EQ] = ACTIONS(4949), - [anon_sym_SLASH_EQ] = ACTIONS(4949), - [anon_sym_PERCENT_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4947), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_BANGin] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4947), - [anon_sym_BANGis] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_as_QMARK] = ACTIONS(4949), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_BANG_BANG] = ACTIONS(4949), - [anon_sym_suspend] = ACTIONS(4947), - [anon_sym_sealed] = ACTIONS(4947), - [anon_sym_annotation] = ACTIONS(4947), - [anon_sym_data] = ACTIONS(4947), - [anon_sym_inner] = ACTIONS(4947), - [anon_sym_value] = ACTIONS(4947), - [anon_sym_override] = ACTIONS(4947), - [anon_sym_lateinit] = ACTIONS(4947), - [anon_sym_public] = ACTIONS(4947), - [anon_sym_private] = ACTIONS(4947), - [anon_sym_internal] = ACTIONS(4947), - [anon_sym_protected] = ACTIONS(4947), - [anon_sym_tailrec] = ACTIONS(4947), - [anon_sym_operator] = ACTIONS(4947), - [anon_sym_infix] = ACTIONS(4947), - [anon_sym_inline] = ACTIONS(4947), - [anon_sym_external] = ACTIONS(4947), - [sym_property_modifier] = ACTIONS(4947), - [anon_sym_abstract] = ACTIONS(4947), - [anon_sym_final] = ACTIONS(4947), - [anon_sym_open] = ACTIONS(4947), - [anon_sym_vararg] = ACTIONS(4947), - [anon_sym_noinline] = ACTIONS(4947), - [anon_sym_crossinline] = ACTIONS(4947), - [anon_sym_expect] = ACTIONS(4947), - [anon_sym_actual] = ACTIONS(4947), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4949), - [sym_safe_nav] = ACTIONS(4949), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_annotation] = ACTIONS(3420), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_lateinit] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_tailrec] = ACTIONS(3420), + [anon_sym_operator] = ACTIONS(3420), + [anon_sym_infix] = ACTIONS(3420), + [anon_sym_inline] = ACTIONS(3420), + [anon_sym_external] = ACTIONS(3420), + [sym_property_modifier] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_final] = ACTIONS(3420), + [anon_sym_open] = ACTIONS(3420), + [anon_sym_vararg] = ACTIONS(3420), + [anon_sym_noinline] = ACTIONS(3420), + [anon_sym_crossinline] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, [3465] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_DASH_GT] = ACTIONS(4945), - [sym_label] = ACTIONS(4945), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_while] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_suspend] = ACTIONS(4943), - [anon_sym_sealed] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4943), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_value] = ACTIONS(4943), - [anon_sym_override] = ACTIONS(4943), - [anon_sym_lateinit] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_internal] = ACTIONS(4943), - [anon_sym_protected] = ACTIONS(4943), - [anon_sym_tailrec] = ACTIONS(4943), - [anon_sym_operator] = ACTIONS(4943), - [anon_sym_infix] = ACTIONS(4943), - [anon_sym_inline] = ACTIONS(4943), - [anon_sym_external] = ACTIONS(4943), - [sym_property_modifier] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_open] = ACTIONS(4943), - [anon_sym_vararg] = ACTIONS(4943), - [anon_sym_noinline] = ACTIONS(4943), - [anon_sym_crossinline] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6872), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(6870), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [3466] = { - [sym__alpha_identifier] = ACTIONS(4558), - [anon_sym_AT] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACE] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_object] = ACTIONS(4558), - [anon_sym_fun] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_get] = ACTIONS(4558), - [anon_sym_set] = ACTIONS(4558), - [anon_sym_this] = ACTIONS(4558), - [anon_sym_super] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [sym_label] = ACTIONS(4558), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_QMARK_COLON] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [anon_sym_null] = ACTIONS(4558), - [anon_sym_if] = ACTIONS(4558), - [anon_sym_else] = ACTIONS(4558), - [anon_sym_when] = ACTIONS(4558), - [anon_sym_try] = ACTIONS(4558), - [anon_sym_throw] = ACTIONS(4558), - [anon_sym_return] = ACTIONS(4558), - [anon_sym_continue] = ACTIONS(4558), - [anon_sym_break] = ACTIONS(4558), - [anon_sym_COLON_COLON] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_BANGin] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_BANGis] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_as_QMARK] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_BANG_BANG] = ACTIONS(4560), - [anon_sym_data] = ACTIONS(4558), - [anon_sym_inner] = ACTIONS(4558), - [anon_sym_value] = ACTIONS(4558), - [anon_sym_expect] = ACTIONS(4558), - [anon_sym_actual] = ACTIONS(4558), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4560), - [anon_sym_continue_AT] = ACTIONS(4560), - [anon_sym_break_AT] = ACTIONS(4560), - [sym_real_literal] = ACTIONS(4560), - [sym_integer_literal] = ACTIONS(4558), - [sym_hex_literal] = ACTIONS(4560), - [sym_bin_literal] = ACTIONS(4560), - [anon_sym_true] = ACTIONS(4558), - [anon_sym_false] = ACTIONS(4558), - [anon_sym_SQUOTE] = ACTIONS(4560), - [sym__backtick_identifier] = ACTIONS(4560), - [sym__automatic_semicolon] = ACTIONS(4560), - [sym_safe_nav] = ACTIONS(4560), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4560), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_DASH_GT] = ACTIONS(4569), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_while] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), }, [3467] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_DASH_GT] = ACTIONS(4903), - [sym_label] = ACTIONS(4903), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_while] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_suspend] = ACTIONS(4901), - [anon_sym_sealed] = ACTIONS(4901), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_value] = ACTIONS(4901), - [anon_sym_override] = ACTIONS(4901), - [anon_sym_lateinit] = ACTIONS(4901), - [anon_sym_public] = ACTIONS(4901), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_internal] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_tailrec] = ACTIONS(4901), - [anon_sym_operator] = ACTIONS(4901), - [anon_sym_infix] = ACTIONS(4901), - [anon_sym_inline] = ACTIONS(4901), - [anon_sym_external] = ACTIONS(4901), - [sym_property_modifier] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_final] = ACTIONS(4901), - [anon_sym_open] = ACTIONS(4901), - [anon_sym_vararg] = ACTIONS(4901), - [anon_sym_noinline] = ACTIONS(4901), - [anon_sym_crossinline] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3468] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_RBRACK] = ACTIONS(4977), - [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_DOT] = 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), + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_DASH_GT] = ACTIONS(4960), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_while] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_suspend] = ACTIONS(4958), + [anon_sym_sealed] = ACTIONS(4958), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_lateinit] = ACTIONS(4958), + [anon_sym_public] = ACTIONS(4958), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_internal] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_tailrec] = ACTIONS(4958), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_infix] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym_external] = ACTIONS(4958), + [sym_property_modifier] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_open] = ACTIONS(4958), + [anon_sym_vararg] = ACTIONS(4958), + [anon_sym_noinline] = ACTIONS(4958), + [anon_sym_crossinline] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), [sym_multiline_comment] = ACTIONS(3), }, [3469] = { - [sym__alpha_identifier] = ACTIONS(4897), - [anon_sym_AT] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_as] = ACTIONS(4897), - [anon_sym_EQ] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_where] = ACTIONS(4897), - [anon_sym_DOT] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_get] = ACTIONS(4897), - [anon_sym_set] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_DASH_GT] = ACTIONS(4899), - [sym_label] = ACTIONS(4899), - [anon_sym_in] = ACTIONS(4897), - [anon_sym_while] = ACTIONS(4897), - [anon_sym_DOT_DOT] = ACTIONS(4899), - [anon_sym_QMARK_COLON] = ACTIONS(4899), - [anon_sym_AMP_AMP] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4899), - [anon_sym_else] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4899), - [anon_sym_PLUS_EQ] = ACTIONS(4899), - [anon_sym_DASH_EQ] = ACTIONS(4899), - [anon_sym_STAR_EQ] = ACTIONS(4899), - [anon_sym_SLASH_EQ] = ACTIONS(4899), - [anon_sym_PERCENT_EQ] = ACTIONS(4899), - [anon_sym_BANG_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4899), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4899), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4899), - [anon_sym_BANGin] = ACTIONS(4899), - [anon_sym_is] = ACTIONS(4897), - [anon_sym_BANGis] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_PERCENT] = ACTIONS(4897), - [anon_sym_as_QMARK] = ACTIONS(4899), - [anon_sym_PLUS_PLUS] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4899), - [anon_sym_BANG_BANG] = ACTIONS(4899), - [anon_sym_suspend] = ACTIONS(4897), - [anon_sym_sealed] = ACTIONS(4897), - [anon_sym_annotation] = ACTIONS(4897), - [anon_sym_data] = ACTIONS(4897), - [anon_sym_inner] = ACTIONS(4897), - [anon_sym_value] = ACTIONS(4897), - [anon_sym_override] = ACTIONS(4897), - [anon_sym_lateinit] = ACTIONS(4897), - [anon_sym_public] = ACTIONS(4897), - [anon_sym_private] = ACTIONS(4897), - [anon_sym_internal] = ACTIONS(4897), - [anon_sym_protected] = ACTIONS(4897), - [anon_sym_tailrec] = ACTIONS(4897), - [anon_sym_operator] = ACTIONS(4897), - [anon_sym_infix] = ACTIONS(4897), - [anon_sym_inline] = ACTIONS(4897), - [anon_sym_external] = ACTIONS(4897), - [sym_property_modifier] = ACTIONS(4897), - [anon_sym_abstract] = ACTIONS(4897), - [anon_sym_final] = ACTIONS(4897), - [anon_sym_open] = ACTIONS(4897), - [anon_sym_vararg] = ACTIONS(4897), - [anon_sym_noinline] = ACTIONS(4897), - [anon_sym_crossinline] = ACTIONS(4897), - [anon_sym_expect] = ACTIONS(4897), - [anon_sym_actual] = ACTIONS(4897), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4899), - [sym_safe_nav] = ACTIONS(4899), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_DASH_GT] = ACTIONS(1816), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(1814), + [anon_sym_sealed] = ACTIONS(1814), + [anon_sym_annotation] = ACTIONS(1814), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_lateinit] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_internal] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_tailrec] = ACTIONS(1814), + [anon_sym_operator] = ACTIONS(1814), + [anon_sym_infix] = ACTIONS(1814), + [anon_sym_inline] = ACTIONS(1814), + [anon_sym_external] = ACTIONS(1814), + [sym_property_modifier] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_final] = ACTIONS(1814), + [anon_sym_open] = ACTIONS(1814), + [anon_sym_vararg] = ACTIONS(1814), + [anon_sym_noinline] = ACTIONS(1814), + [anon_sym_crossinline] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, [3470] = { - [sym__alpha_identifier] = ACTIONS(4927), - [anon_sym_AT] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4927), - [anon_sym_GT] = ACTIONS(4927), - [anon_sym_where] = ACTIONS(4927), - [anon_sym_object] = ACTIONS(4927), - [anon_sym_fun] = ACTIONS(4927), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4929), - [anon_sym_get] = ACTIONS(4927), - [anon_sym_set] = ACTIONS(4927), - [anon_sym_this] = ACTIONS(4927), - [anon_sym_super] = ACTIONS(4927), - [anon_sym_STAR] = ACTIONS(4927), - [sym_label] = ACTIONS(4927), - [anon_sym_in] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_QMARK_COLON] = ACTIONS(4929), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_null] = ACTIONS(4927), - [anon_sym_if] = ACTIONS(4927), - [anon_sym_else] = ACTIONS(4927), - [anon_sym_when] = ACTIONS(4927), - [anon_sym_try] = ACTIONS(4927), - [anon_sym_throw] = ACTIONS(4927), - [anon_sym_return] = ACTIONS(4927), - [anon_sym_continue] = ACTIONS(4927), - [anon_sym_break] = ACTIONS(4927), - [anon_sym_COLON_COLON] = ACTIONS(4929), - [anon_sym_PLUS_EQ] = ACTIONS(4929), - [anon_sym_DASH_EQ] = ACTIONS(4929), - [anon_sym_STAR_EQ] = ACTIONS(4929), - [anon_sym_SLASH_EQ] = ACTIONS(4929), - [anon_sym_PERCENT_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_BANGin] = ACTIONS(4929), - [anon_sym_is] = ACTIONS(4927), - [anon_sym_BANGis] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4927), - [anon_sym_DASH] = ACTIONS(4927), - [anon_sym_SLASH] = ACTIONS(4927), - [anon_sym_PERCENT] = ACTIONS(4927), - [anon_sym_as_QMARK] = ACTIONS(4929), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4927), - [anon_sym_BANG_BANG] = ACTIONS(4929), - [anon_sym_data] = ACTIONS(4927), - [anon_sym_inner] = ACTIONS(4927), - [anon_sym_value] = ACTIONS(4927), - [anon_sym_expect] = ACTIONS(4927), - [anon_sym_actual] = ACTIONS(4927), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4929), - [anon_sym_continue_AT] = ACTIONS(4929), - [anon_sym_break_AT] = ACTIONS(4929), - [sym_real_literal] = ACTIONS(4929), - [sym_integer_literal] = ACTIONS(4927), - [sym_hex_literal] = ACTIONS(4929), - [sym_bin_literal] = ACTIONS(4929), - [anon_sym_true] = ACTIONS(4927), - [anon_sym_false] = ACTIONS(4927), - [anon_sym_SQUOTE] = ACTIONS(4929), - [sym__backtick_identifier] = ACTIONS(4929), - [sym__automatic_semicolon] = ACTIONS(4929), - [sym_safe_nav] = ACTIONS(4929), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4929), + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_DASH_GT] = ACTIONS(4968), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_while] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_suspend] = ACTIONS(4966), + [anon_sym_sealed] = ACTIONS(4966), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_lateinit] = ACTIONS(4966), + [anon_sym_public] = ACTIONS(4966), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_internal] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_tailrec] = ACTIONS(4966), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_infix] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym_external] = ACTIONS(4966), + [sym_property_modifier] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_open] = ACTIONS(4966), + [anon_sym_vararg] = ACTIONS(4966), + [anon_sym_noinline] = ACTIONS(4966), + [anon_sym_crossinline] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), }, [3471] = { - [sym__alpha_identifier] = ACTIONS(4747), - [anon_sym_AT] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_RBRACK] = ACTIONS(4749), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_COMMA] = ACTIONS(4749), - [anon_sym_RPAREN] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4747), - [anon_sym_GT] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_get] = ACTIONS(4747), - [anon_sym_set] = ACTIONS(4747), - [anon_sym_STAR] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4749), - [sym_label] = ACTIONS(4749), - [anon_sym_in] = ACTIONS(4747), - [anon_sym_while] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4749), - [anon_sym_QMARK_COLON] = ACTIONS(4749), - [anon_sym_AMP_AMP] = ACTIONS(4749), - [anon_sym_PIPE_PIPE] = ACTIONS(4749), - [anon_sym_else] = ACTIONS(4747), - [anon_sym_COLON_COLON] = ACTIONS(4749), - [anon_sym_PLUS_EQ] = ACTIONS(4749), - [anon_sym_DASH_EQ] = ACTIONS(4749), - [anon_sym_STAR_EQ] = ACTIONS(4749), - [anon_sym_SLASH_EQ] = ACTIONS(4749), - [anon_sym_PERCENT_EQ] = ACTIONS(4749), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4749), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4749), - [anon_sym_LT_EQ] = ACTIONS(4749), - [anon_sym_GT_EQ] = ACTIONS(4749), - [anon_sym_BANGin] = ACTIONS(4749), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_BANGis] = ACTIONS(4749), - [anon_sym_PLUS] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4747), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_as_QMARK] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_BANG_BANG] = ACTIONS(4749), - [anon_sym_suspend] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_annotation] = ACTIONS(4747), - [anon_sym_data] = ACTIONS(4747), - [anon_sym_inner] = ACTIONS(4747), - [anon_sym_value] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_lateinit] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_tailrec] = ACTIONS(4747), - [anon_sym_operator] = ACTIONS(4747), - [anon_sym_infix] = ACTIONS(4747), - [anon_sym_inline] = ACTIONS(4747), - [anon_sym_external] = ACTIONS(4747), - [sym_property_modifier] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_final] = ACTIONS(4747), - [anon_sym_open] = ACTIONS(4747), - [anon_sym_vararg] = ACTIONS(4747), - [anon_sym_noinline] = ACTIONS(4747), - [anon_sym_crossinline] = ACTIONS(4747), - [anon_sym_expect] = ACTIONS(4747), - [anon_sym_actual] = ACTIONS(4747), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4749), - [sym_safe_nav] = ACTIONS(4749), + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_RBRACK] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_RPAREN] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [anon_sym_DASH_GT] = ACTIONS(5101), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_while] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), [sym_multiline_comment] = ACTIONS(3), }, [3472] = { - [sym__alpha_identifier] = ACTIONS(4773), - [anon_sym_AT] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_RBRACK] = ACTIONS(4775), - [anon_sym_as] = ACTIONS(4773), - [anon_sym_EQ] = ACTIONS(4773), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4775), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_where] = ACTIONS(4773), - [anon_sym_DOT] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4775), - [anon_sym_get] = ACTIONS(4773), - [anon_sym_set] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_DASH_GT] = ACTIONS(4775), - [sym_label] = ACTIONS(4775), - [anon_sym_in] = ACTIONS(4773), - [anon_sym_while] = ACTIONS(4773), - [anon_sym_DOT_DOT] = ACTIONS(4775), - [anon_sym_QMARK_COLON] = ACTIONS(4775), - [anon_sym_AMP_AMP] = ACTIONS(4775), - [anon_sym_PIPE_PIPE] = ACTIONS(4775), - [anon_sym_else] = ACTIONS(4773), - [anon_sym_COLON_COLON] = ACTIONS(4775), - [anon_sym_PLUS_EQ] = ACTIONS(4775), - [anon_sym_DASH_EQ] = ACTIONS(4775), - [anon_sym_STAR_EQ] = ACTIONS(4775), - [anon_sym_SLASH_EQ] = ACTIONS(4775), - [anon_sym_PERCENT_EQ] = ACTIONS(4775), - [anon_sym_BANG_EQ] = ACTIONS(4773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4775), - [anon_sym_EQ_EQ] = ACTIONS(4773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4775), - [anon_sym_LT_EQ] = ACTIONS(4775), - [anon_sym_GT_EQ] = ACTIONS(4775), - [anon_sym_BANGin] = ACTIONS(4775), - [anon_sym_is] = ACTIONS(4773), - [anon_sym_BANGis] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_PERCENT] = ACTIONS(4773), - [anon_sym_as_QMARK] = ACTIONS(4775), - [anon_sym_PLUS_PLUS] = ACTIONS(4775), - [anon_sym_DASH_DASH] = ACTIONS(4775), - [anon_sym_BANG_BANG] = ACTIONS(4775), - [anon_sym_suspend] = ACTIONS(4773), - [anon_sym_sealed] = ACTIONS(4773), - [anon_sym_annotation] = ACTIONS(4773), - [anon_sym_data] = ACTIONS(4773), - [anon_sym_inner] = ACTIONS(4773), - [anon_sym_value] = ACTIONS(4773), - [anon_sym_override] = ACTIONS(4773), - [anon_sym_lateinit] = ACTIONS(4773), - [anon_sym_public] = ACTIONS(4773), - [anon_sym_private] = ACTIONS(4773), - [anon_sym_internal] = ACTIONS(4773), - [anon_sym_protected] = ACTIONS(4773), - [anon_sym_tailrec] = ACTIONS(4773), - [anon_sym_operator] = ACTIONS(4773), - [anon_sym_infix] = ACTIONS(4773), - [anon_sym_inline] = ACTIONS(4773), - [anon_sym_external] = ACTIONS(4773), - [sym_property_modifier] = ACTIONS(4773), - [anon_sym_abstract] = ACTIONS(4773), - [anon_sym_final] = ACTIONS(4773), - [anon_sym_open] = ACTIONS(4773), - [anon_sym_vararg] = ACTIONS(4773), - [anon_sym_noinline] = ACTIONS(4773), - [anon_sym_crossinline] = ACTIONS(4773), - [anon_sym_expect] = ACTIONS(4773), - [anon_sym_actual] = ACTIONS(4773), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4775), - [sym_safe_nav] = ACTIONS(4775), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_RBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_RPAREN] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_DASH_GT] = ACTIONS(4483), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_while] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, [3473] = { - [sym__alpha_identifier] = ACTIONS(5120), - [anon_sym_AT] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5120), - [anon_sym_object] = ACTIONS(5120), - [anon_sym_fun] = ACTIONS(5120), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_get] = ACTIONS(5120), - [anon_sym_set] = ACTIONS(5120), - [anon_sym_this] = ACTIONS(5120), - [anon_sym_super] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [sym_label] = ACTIONS(5120), - [anon_sym_in] = ACTIONS(5120), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_QMARK_COLON] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(5120), - [anon_sym_if] = ACTIONS(5120), - [anon_sym_else] = ACTIONS(5120), - [anon_sym_when] = ACTIONS(5120), - [anon_sym_try] = ACTIONS(5120), - [anon_sym_throw] = ACTIONS(5120), - [anon_sym_return] = ACTIONS(5120), - [anon_sym_continue] = ACTIONS(5120), - [anon_sym_break] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_BANGin] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5120), - [anon_sym_BANGis] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_as_QMARK] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_BANG_BANG] = ACTIONS(5122), - [anon_sym_data] = ACTIONS(5120), - [anon_sym_inner] = ACTIONS(5120), - [anon_sym_value] = ACTIONS(5120), - [anon_sym_expect] = ACTIONS(5120), - [anon_sym_actual] = ACTIONS(5120), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5122), - [anon_sym_continue_AT] = ACTIONS(5122), - [anon_sym_break_AT] = ACTIONS(5122), - [sym_real_literal] = ACTIONS(5122), - [sym_integer_literal] = ACTIONS(5120), - [sym_hex_literal] = ACTIONS(5122), - [sym_bin_literal] = ACTIONS(5122), - [anon_sym_true] = ACTIONS(5120), - [anon_sym_false] = ACTIONS(5120), - [anon_sym_SQUOTE] = ACTIONS(5122), - [sym__backtick_identifier] = ACTIONS(5122), - [sym__automatic_semicolon] = ACTIONS(5122), - [sym_safe_nav] = ACTIONS(5122), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5122), + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_label] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_suspend] = ACTIONS(4898), + [anon_sym_sealed] = ACTIONS(4898), + [anon_sym_annotation] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_lateinit] = ACTIONS(4898), + [anon_sym_public] = ACTIONS(4898), + [anon_sym_private] = ACTIONS(4898), + [anon_sym_internal] = ACTIONS(4898), + [anon_sym_protected] = ACTIONS(4898), + [anon_sym_tailrec] = ACTIONS(4898), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_infix] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym_external] = ACTIONS(4898), + [sym_property_modifier] = ACTIONS(4898), + [anon_sym_abstract] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_open] = ACTIONS(4898), + [anon_sym_vararg] = ACTIONS(4898), + [anon_sym_noinline] = ACTIONS(4898), + [anon_sym_crossinline] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), + [sym_multiline_comment] = ACTIONS(3), }, [3474] = { - [sym__alpha_identifier] = ACTIONS(4865), - [anon_sym_AT] = ACTIONS(4867), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_as] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4865), - [anon_sym_LBRACE] = ACTIONS(4867), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [anon_sym_COMMA] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_where] = ACTIONS(4865), - [anon_sym_object] = ACTIONS(4865), - [anon_sym_fun] = ACTIONS(4865), - [anon_sym_DOT] = ACTIONS(4865), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_get] = ACTIONS(4865), - [anon_sym_set] = ACTIONS(4865), - [anon_sym_this] = ACTIONS(4865), - [anon_sym_super] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [sym_label] = ACTIONS(4865), - [anon_sym_in] = ACTIONS(4865), - [anon_sym_DOT_DOT] = ACTIONS(4867), - [anon_sym_QMARK_COLON] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_null] = ACTIONS(4865), - [anon_sym_if] = ACTIONS(4865), - [anon_sym_else] = ACTIONS(4865), - [anon_sym_when] = ACTIONS(4865), - [anon_sym_try] = ACTIONS(4865), - [anon_sym_throw] = ACTIONS(4865), - [anon_sym_return] = ACTIONS(4865), - [anon_sym_continue] = ACTIONS(4865), - [anon_sym_break] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4867), - [anon_sym_PLUS_EQ] = ACTIONS(4867), - [anon_sym_DASH_EQ] = ACTIONS(4867), - [anon_sym_STAR_EQ] = ACTIONS(4867), - [anon_sym_SLASH_EQ] = ACTIONS(4867), - [anon_sym_PERCENT_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4867), - [anon_sym_BANGin] = ACTIONS(4867), - [anon_sym_is] = ACTIONS(4865), - [anon_sym_BANGis] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_as_QMARK] = ACTIONS(4867), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_BANG_BANG] = ACTIONS(4867), - [anon_sym_data] = ACTIONS(4865), - [anon_sym_inner] = ACTIONS(4865), - [anon_sym_value] = ACTIONS(4865), - [anon_sym_expect] = ACTIONS(4865), - [anon_sym_actual] = ACTIONS(4865), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4867), - [anon_sym_continue_AT] = ACTIONS(4867), - [anon_sym_break_AT] = ACTIONS(4867), - [sym_real_literal] = ACTIONS(4867), - [sym_integer_literal] = ACTIONS(4865), - [sym_hex_literal] = ACTIONS(4867), - [sym_bin_literal] = ACTIONS(4867), - [anon_sym_true] = ACTIONS(4865), - [anon_sym_false] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4867), - [sym__backtick_identifier] = ACTIONS(4867), - [sym__automatic_semicolon] = ACTIONS(4867), - [sym_safe_nav] = ACTIONS(4867), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4867), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), + [sym_multiline_comment] = ACTIONS(3), }, [3475] = { - [sym__alpha_identifier] = ACTIONS(4791), - [anon_sym_AT] = ACTIONS(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_RBRACK] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_where] = ACTIONS(4791), - [anon_sym_DOT] = ACTIONS(4791), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym_get] = ACTIONS(4791), - [anon_sym_set] = ACTIONS(4791), - [anon_sym_STAR] = ACTIONS(4791), - [anon_sym_DASH_GT] = ACTIONS(4793), - [sym_label] = ACTIONS(4793), - [anon_sym_in] = ACTIONS(4791), - [anon_sym_while] = ACTIONS(4791), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_QMARK_COLON] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_else] = ACTIONS(4791), - [anon_sym_COLON_COLON] = ACTIONS(4793), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_STAR_EQ] = ACTIONS(4793), - [anon_sym_SLASH_EQ] = ACTIONS(4793), - [anon_sym_PERCENT_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_BANGin] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4791), - [anon_sym_BANGis] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_SLASH] = ACTIONS(4791), - [anon_sym_PERCENT] = ACTIONS(4791), - [anon_sym_as_QMARK] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_BANG_BANG] = ACTIONS(4793), - [anon_sym_suspend] = ACTIONS(4791), - [anon_sym_sealed] = ACTIONS(4791), - [anon_sym_annotation] = ACTIONS(4791), - [anon_sym_data] = ACTIONS(4791), - [anon_sym_inner] = ACTIONS(4791), - [anon_sym_value] = ACTIONS(4791), - [anon_sym_override] = ACTIONS(4791), - [anon_sym_lateinit] = ACTIONS(4791), - [anon_sym_public] = ACTIONS(4791), - [anon_sym_private] = ACTIONS(4791), - [anon_sym_internal] = ACTIONS(4791), - [anon_sym_protected] = ACTIONS(4791), - [anon_sym_tailrec] = ACTIONS(4791), - [anon_sym_operator] = ACTIONS(4791), - [anon_sym_infix] = ACTIONS(4791), - [anon_sym_inline] = ACTIONS(4791), - [anon_sym_external] = ACTIONS(4791), - [sym_property_modifier] = ACTIONS(4791), - [anon_sym_abstract] = ACTIONS(4791), - [anon_sym_final] = ACTIONS(4791), - [anon_sym_open] = ACTIONS(4791), - [anon_sym_vararg] = ACTIONS(4791), - [anon_sym_noinline] = ACTIONS(4791), - [anon_sym_crossinline] = ACTIONS(4791), - [anon_sym_expect] = ACTIONS(4791), - [anon_sym_actual] = ACTIONS(4791), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4793), - [sym_safe_nav] = ACTIONS(4793), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3476] = { - [sym__alpha_identifier] = ACTIONS(3016), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_DASH_GT] = ACTIONS(3018), - [sym_label] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_QMARK_COLON] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3016), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_as_QMARK] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_BANG_BANG] = ACTIONS(3018), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(3016), - [anon_sym_inner] = ACTIONS(3016), - [anon_sym_value] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(3016), - [anon_sym_actual] = ACTIONS(3016), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3018), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), }, [3477] = { - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4017), - [sym_label] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_while] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_suspend] = ACTIONS(4015), - [anon_sym_sealed] = ACTIONS(4015), - [anon_sym_annotation] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_override] = ACTIONS(4015), - [anon_sym_lateinit] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4015), - [anon_sym_private] = ACTIONS(4015), - [anon_sym_internal] = ACTIONS(4015), - [anon_sym_protected] = ACTIONS(4015), - [anon_sym_tailrec] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(4015), - [anon_sym_infix] = ACTIONS(4015), - [anon_sym_inline] = ACTIONS(4015), - [anon_sym_external] = ACTIONS(4015), - [sym_property_modifier] = ACTIONS(4015), - [anon_sym_abstract] = ACTIONS(4015), - [anon_sym_final] = ACTIONS(4015), - [anon_sym_open] = ACTIONS(4015), - [anon_sym_vararg] = ACTIONS(4015), - [anon_sym_noinline] = ACTIONS(4015), - [anon_sym_crossinline] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_DASH_GT] = ACTIONS(1810), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(1808), + [anon_sym_sealed] = ACTIONS(1808), + [anon_sym_annotation] = ACTIONS(1808), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_lateinit] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_internal] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_tailrec] = ACTIONS(1808), + [anon_sym_operator] = ACTIONS(1808), + [anon_sym_infix] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym_external] = ACTIONS(1808), + [sym_property_modifier] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_final] = ACTIONS(1808), + [anon_sym_open] = ACTIONS(1808), + [anon_sym_vararg] = ACTIONS(1808), + [anon_sym_noinline] = ACTIONS(1808), + [anon_sym_crossinline] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, [3478] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(6691), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_DASH_GT] = ACTIONS(4779), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_while] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, [3479] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_RBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(6693), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [anon_sym_DASH_GT] = ACTIONS(4769), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_while] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_DASH_GT] = ACTIONS(4904), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_suspend] = ACTIONS(4902), + [anon_sym_sealed] = ACTIONS(4902), + [anon_sym_annotation] = ACTIONS(4902), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_lateinit] = ACTIONS(4902), + [anon_sym_public] = ACTIONS(4902), + [anon_sym_private] = ACTIONS(4902), + [anon_sym_internal] = ACTIONS(4902), + [anon_sym_protected] = ACTIONS(4902), + [anon_sym_tailrec] = ACTIONS(4902), + [anon_sym_operator] = ACTIONS(4902), + [anon_sym_infix] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym_external] = ACTIONS(4902), + [sym_property_modifier] = ACTIONS(4902), + [anon_sym_abstract] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_open] = ACTIONS(4902), + [anon_sym_vararg] = ACTIONS(4902), + [anon_sym_noinline] = ACTIONS(4902), + [anon_sym_crossinline] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), [sym_multiline_comment] = ACTIONS(3), }, [3480] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6695), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_DASH_GT] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [anon_sym_DASH_GT] = ACTIONS(4908), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_suspend] = ACTIONS(4906), + [anon_sym_sealed] = ACTIONS(4906), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_lateinit] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4906), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_internal] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_tailrec] = ACTIONS(4906), + [anon_sym_operator] = ACTIONS(4906), + [anon_sym_infix] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym_external] = ACTIONS(4906), + [sym_property_modifier] = ACTIONS(4906), + [anon_sym_abstract] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_open] = ACTIONS(4906), + [anon_sym_vararg] = ACTIONS(4906), + [anon_sym_noinline] = ACTIONS(4906), + [anon_sym_crossinline] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [sym_multiline_comment] = ACTIONS(3), }, [3481] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6697), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_RBRACK] = ACTIONS(5173), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(5171), + [anon_sym_set] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5173), + [sym_label] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_while] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5173), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_else] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_PLUS_EQ] = ACTIONS(5173), + [anon_sym_DASH_EQ] = ACTIONS(5173), + [anon_sym_STAR_EQ] = ACTIONS(5173), + [anon_sym_SLASH_EQ] = ACTIONS(5173), + [anon_sym_PERCENT_EQ] = ACTIONS(5173), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), + [anon_sym_LT_EQ] = ACTIONS(5173), + [anon_sym_GT_EQ] = ACTIONS(5173), + [anon_sym_BANGin] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_BANGis] = ACTIONS(5173), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_as_QMARK] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5173), + [anon_sym_DASH_DASH] = ACTIONS(5173), + [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_suspend] = ACTIONS(5171), + [anon_sym_sealed] = ACTIONS(5171), + [anon_sym_annotation] = ACTIONS(5171), + [anon_sym_data] = ACTIONS(5171), + [anon_sym_inner] = ACTIONS(5171), + [anon_sym_value] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_lateinit] = ACTIONS(5171), + [anon_sym_public] = ACTIONS(5171), + [anon_sym_private] = ACTIONS(5171), + [anon_sym_internal] = ACTIONS(5171), + [anon_sym_protected] = ACTIONS(5171), + [anon_sym_tailrec] = ACTIONS(5171), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_infix] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym_external] = ACTIONS(5171), + [sym_property_modifier] = ACTIONS(5171), + [anon_sym_abstract] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_open] = ACTIONS(5171), + [anon_sym_vararg] = ACTIONS(5171), + [anon_sym_noinline] = ACTIONS(5171), + [anon_sym_crossinline] = ACTIONS(5171), + [anon_sym_expect] = ACTIONS(5171), + [anon_sym_actual] = ACTIONS(5171), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), [sym_multiline_comment] = ACTIONS(3), }, [3482] = { - [sym__alpha_identifier] = ACTIONS(4813), - [anon_sym_AT] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4813), - [anon_sym_EQ] = ACTIONS(4813), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_where] = ACTIONS(4813), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_get] = ACTIONS(4813), - [anon_sym_set] = ACTIONS(4813), - [anon_sym_STAR] = ACTIONS(4813), - [anon_sym_DASH_GT] = ACTIONS(4815), - [sym_label] = ACTIONS(4815), - [anon_sym_in] = ACTIONS(4813), - [anon_sym_while] = ACTIONS(4813), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_QMARK_COLON] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_else] = ACTIONS(4813), - [anon_sym_COLON_COLON] = ACTIONS(4815), - [anon_sym_PLUS_EQ] = ACTIONS(4815), - [anon_sym_DASH_EQ] = ACTIONS(4815), - [anon_sym_STAR_EQ] = ACTIONS(4815), - [anon_sym_SLASH_EQ] = ACTIONS(4815), - [anon_sym_PERCENT_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4813), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4813), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_BANGin] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4813), - [anon_sym_BANGis] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4813), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_SLASH] = ACTIONS(4813), - [anon_sym_PERCENT] = ACTIONS(4813), - [anon_sym_as_QMARK] = ACTIONS(4815), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_BANG_BANG] = ACTIONS(4815), - [anon_sym_suspend] = ACTIONS(4813), - [anon_sym_sealed] = ACTIONS(4813), - [anon_sym_annotation] = ACTIONS(4813), - [anon_sym_data] = ACTIONS(4813), - [anon_sym_inner] = ACTIONS(4813), - [anon_sym_value] = ACTIONS(4813), - [anon_sym_override] = ACTIONS(4813), - [anon_sym_lateinit] = ACTIONS(4813), - [anon_sym_public] = ACTIONS(4813), - [anon_sym_private] = ACTIONS(4813), - [anon_sym_internal] = ACTIONS(4813), - [anon_sym_protected] = ACTIONS(4813), - [anon_sym_tailrec] = ACTIONS(4813), - [anon_sym_operator] = ACTIONS(4813), - [anon_sym_infix] = ACTIONS(4813), - [anon_sym_inline] = ACTIONS(4813), - [anon_sym_external] = ACTIONS(4813), - [sym_property_modifier] = ACTIONS(4813), - [anon_sym_abstract] = ACTIONS(4813), - [anon_sym_final] = ACTIONS(4813), - [anon_sym_open] = ACTIONS(4813), - [anon_sym_vararg] = ACTIONS(4813), - [anon_sym_noinline] = ACTIONS(4813), - [anon_sym_crossinline] = ACTIONS(4813), - [anon_sym_expect] = ACTIONS(4813), - [anon_sym_actual] = ACTIONS(4813), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4815), - [sym_safe_nav] = ACTIONS(4815), + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_RBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [anon_sym_DASH_GT] = ACTIONS(4784), + [sym_label] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_while] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_suspend] = ACTIONS(4782), + [anon_sym_sealed] = ACTIONS(4782), + [anon_sym_annotation] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_override] = ACTIONS(4782), + [anon_sym_lateinit] = ACTIONS(4782), + [anon_sym_public] = ACTIONS(4782), + [anon_sym_private] = ACTIONS(4782), + [anon_sym_internal] = ACTIONS(4782), + [anon_sym_protected] = ACTIONS(4782), + [anon_sym_tailrec] = ACTIONS(4782), + [anon_sym_operator] = ACTIONS(4782), + [anon_sym_infix] = ACTIONS(4782), + [anon_sym_inline] = ACTIONS(4782), + [anon_sym_external] = ACTIONS(4782), + [sym_property_modifier] = ACTIONS(4782), + [anon_sym_abstract] = ACTIONS(4782), + [anon_sym_final] = ACTIONS(4782), + [anon_sym_open] = ACTIONS(4782), + [anon_sym_vararg] = ACTIONS(4782), + [anon_sym_noinline] = ACTIONS(4782), + [anon_sym_crossinline] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), [sym_multiline_comment] = ACTIONS(3), }, [3483] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(6699), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_RBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_while] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), + [sym_multiline_comment] = ACTIONS(3), }, [3484] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(6701), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_object] = ACTIONS(4571), + [anon_sym_fun] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_this] = ACTIONS(4571), + [anon_sym_super] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4573), + [sym_label] = ACTIONS(4571), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_null] = ACTIONS(4571), + [anon_sym_if] = ACTIONS(4571), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_try] = ACTIONS(4571), + [anon_sym_throw] = ACTIONS(4571), + [anon_sym_return] = ACTIONS(4571), + [anon_sym_continue] = ACTIONS(4571), + [anon_sym_break] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4573), + [anon_sym_continue_AT] = ACTIONS(4573), + [anon_sym_break_AT] = ACTIONS(4573), + [anon_sym_this_AT] = ACTIONS(4573), + [anon_sym_super_AT] = ACTIONS(4573), + [sym_real_literal] = ACTIONS(4573), + [sym_integer_literal] = ACTIONS(4571), + [sym_hex_literal] = ACTIONS(4573), + [sym_bin_literal] = ACTIONS(4573), + [anon_sym_true] = ACTIONS(4571), + [anon_sym_false] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4573), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4573), }, [3485] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6703), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), + [sym_multiline_comment] = ACTIONS(3), }, [3486] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6705), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_EQ] = ACTIONS(4681), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4681), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4681), + [anon_sym_continue_AT] = ACTIONS(4681), + [anon_sym_break_AT] = ACTIONS(4681), + [anon_sym_this_AT] = ACTIONS(4681), + [anon_sym_super_AT] = ACTIONS(4681), + [sym_real_literal] = ACTIONS(4681), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4681), + [sym_bin_literal] = ACTIONS(4681), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4681), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4681), }, [3487] = { - [sym__alpha_identifier] = ACTIONS(5132), - [anon_sym_AT] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_RBRACK] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5132), - [anon_sym_LBRACE] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_RPAREN] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_SEMI] = ACTIONS(5134), - [anon_sym_get] = ACTIONS(5132), - [anon_sym_set] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5134), - [sym_label] = ACTIONS(5134), - [anon_sym_in] = ACTIONS(5132), - [anon_sym_while] = ACTIONS(5132), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_QMARK_COLON] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_else] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5134), - [anon_sym_PLUS_EQ] = ACTIONS(5134), - [anon_sym_DASH_EQ] = ACTIONS(5134), - [anon_sym_STAR_EQ] = ACTIONS(5134), - [anon_sym_SLASH_EQ] = ACTIONS(5134), - [anon_sym_PERCENT_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_BANGin] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5132), - [anon_sym_BANGis] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5132), - [anon_sym_as_QMARK] = ACTIONS(5134), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_BANG_BANG] = ACTIONS(5134), - [anon_sym_suspend] = ACTIONS(5132), - [anon_sym_sealed] = ACTIONS(5132), - [anon_sym_annotation] = ACTIONS(5132), - [anon_sym_data] = ACTIONS(5132), - [anon_sym_inner] = ACTIONS(5132), - [anon_sym_value] = ACTIONS(5132), - [anon_sym_override] = ACTIONS(5132), - [anon_sym_lateinit] = ACTIONS(5132), - [anon_sym_public] = ACTIONS(5132), - [anon_sym_private] = ACTIONS(5132), - [anon_sym_internal] = ACTIONS(5132), - [anon_sym_protected] = ACTIONS(5132), - [anon_sym_tailrec] = ACTIONS(5132), - [anon_sym_operator] = ACTIONS(5132), - [anon_sym_infix] = ACTIONS(5132), - [anon_sym_inline] = ACTIONS(5132), - [anon_sym_external] = ACTIONS(5132), - [sym_property_modifier] = ACTIONS(5132), - [anon_sym_abstract] = ACTIONS(5132), - [anon_sym_final] = ACTIONS(5132), - [anon_sym_open] = ACTIONS(5132), - [anon_sym_vararg] = ACTIONS(5132), - [anon_sym_noinline] = ACTIONS(5132), - [anon_sym_crossinline] = ACTIONS(5132), - [anon_sym_expect] = ACTIONS(5132), - [anon_sym_actual] = ACTIONS(5132), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5134), - [sym_safe_nav] = ACTIONS(5134), + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(121), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_else] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), }, [3488] = { - [sym_file_annotation] = STATE(3488), - [aux_sym_source_file_repeat1] = STATE(3488), - [ts_builtin_sym_end] = ACTIONS(6707), - [sym__alpha_identifier] = ACTIONS(6709), - [anon_sym_AT] = ACTIONS(6711), - [anon_sym_LBRACK] = ACTIONS(6707), - [anon_sym_package] = ACTIONS(6709), - [anon_sym_import] = ACTIONS(6709), - [anon_sym_typealias] = ACTIONS(6709), - [anon_sym_class] = ACTIONS(6709), - [anon_sym_interface] = ACTIONS(6709), - [anon_sym_enum] = ACTIONS(6709), - [anon_sym_LBRACE] = ACTIONS(6707), - [anon_sym_LPAREN] = ACTIONS(6707), - [anon_sym_val] = ACTIONS(6709), - [anon_sym_var] = ACTIONS(6709), - [anon_sym_object] = ACTIONS(6709), - [anon_sym_fun] = ACTIONS(6709), - [anon_sym_get] = ACTIONS(6709), - [anon_sym_set] = ACTIONS(6709), - [anon_sym_this] = ACTIONS(6709), - [anon_sym_super] = ACTIONS(6709), - [anon_sym_STAR] = ACTIONS(6707), - [sym_label] = ACTIONS(6709), - [anon_sym_for] = ACTIONS(6709), - [anon_sym_while] = ACTIONS(6709), - [anon_sym_do] = ACTIONS(6709), - [anon_sym_null] = ACTIONS(6709), - [anon_sym_if] = ACTIONS(6709), - [anon_sym_when] = ACTIONS(6709), - [anon_sym_try] = ACTIONS(6709), - [anon_sym_throw] = ACTIONS(6709), - [anon_sym_return] = ACTIONS(6709), - [anon_sym_continue] = ACTIONS(6709), - [anon_sym_break] = ACTIONS(6709), - [anon_sym_COLON_COLON] = ACTIONS(6707), - [anon_sym_PLUS] = ACTIONS(6709), - [anon_sym_DASH] = ACTIONS(6709), - [anon_sym_PLUS_PLUS] = ACTIONS(6707), - [anon_sym_DASH_DASH] = ACTIONS(6707), - [anon_sym_BANG] = ACTIONS(6707), - [anon_sym_suspend] = ACTIONS(6709), - [anon_sym_sealed] = ACTIONS(6709), - [anon_sym_annotation] = ACTIONS(6709), - [anon_sym_data] = ACTIONS(6709), - [anon_sym_inner] = ACTIONS(6709), - [anon_sym_value] = ACTIONS(6709), - [anon_sym_override] = ACTIONS(6709), - [anon_sym_lateinit] = ACTIONS(6709), - [anon_sym_public] = ACTIONS(6709), - [anon_sym_private] = ACTIONS(6709), - [anon_sym_internal] = ACTIONS(6709), - [anon_sym_protected] = ACTIONS(6709), - [anon_sym_tailrec] = ACTIONS(6709), - [anon_sym_operator] = ACTIONS(6709), - [anon_sym_infix] = ACTIONS(6709), - [anon_sym_inline] = ACTIONS(6709), - [anon_sym_external] = ACTIONS(6709), - [sym_property_modifier] = ACTIONS(6709), - [anon_sym_abstract] = ACTIONS(6709), - [anon_sym_final] = ACTIONS(6709), - [anon_sym_open] = ACTIONS(6709), - [anon_sym_vararg] = ACTIONS(6709), - [anon_sym_noinline] = ACTIONS(6709), - [anon_sym_crossinline] = ACTIONS(6709), - [anon_sym_expect] = ACTIONS(6709), - [anon_sym_actual] = ACTIONS(6709), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6707), - [anon_sym_continue_AT] = ACTIONS(6707), - [anon_sym_break_AT] = ACTIONS(6707), - [sym_real_literal] = ACTIONS(6707), - [sym_integer_literal] = ACTIONS(6709), - [sym_hex_literal] = ACTIONS(6707), - [sym_bin_literal] = ACTIONS(6707), - [anon_sym_true] = ACTIONS(6709), - [anon_sym_false] = ACTIONS(6709), - [anon_sym_SQUOTE] = ACTIONS(6707), - [sym__backtick_identifier] = ACTIONS(6707), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6707), + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_RBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_RPAREN] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [anon_sym_DASH_GT] = ACTIONS(4776), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_while] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), }, [3489] = { - [sym__alpha_identifier] = ACTIONS(4821), - [anon_sym_AT] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_get] = ACTIONS(4821), - [anon_sym_set] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4821), - [anon_sym_DASH_GT] = ACTIONS(4823), - [sym_label] = ACTIONS(4823), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_while] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_QMARK_COLON] = ACTIONS(4823), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_else] = ACTIONS(4821), - [anon_sym_COLON_COLON] = ACTIONS(4823), - [anon_sym_PLUS_EQ] = ACTIONS(4823), - [anon_sym_DASH_EQ] = ACTIONS(4823), - [anon_sym_STAR_EQ] = ACTIONS(4823), - [anon_sym_SLASH_EQ] = ACTIONS(4823), - [anon_sym_PERCENT_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_BANGin] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4821), - [anon_sym_BANGis] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_as_QMARK] = ACTIONS(4823), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_BANG_BANG] = ACTIONS(4823), - [anon_sym_suspend] = ACTIONS(4821), - [anon_sym_sealed] = ACTIONS(4821), - [anon_sym_annotation] = ACTIONS(4821), - [anon_sym_data] = ACTIONS(4821), - [anon_sym_inner] = ACTIONS(4821), - [anon_sym_value] = ACTIONS(4821), - [anon_sym_override] = ACTIONS(4821), - [anon_sym_lateinit] = ACTIONS(4821), - [anon_sym_public] = ACTIONS(4821), - [anon_sym_private] = ACTIONS(4821), - [anon_sym_internal] = ACTIONS(4821), - [anon_sym_protected] = ACTIONS(4821), - [anon_sym_tailrec] = ACTIONS(4821), - [anon_sym_operator] = ACTIONS(4821), - [anon_sym_infix] = ACTIONS(4821), - [anon_sym_inline] = ACTIONS(4821), - [anon_sym_external] = ACTIONS(4821), - [sym_property_modifier] = ACTIONS(4821), - [anon_sym_abstract] = ACTIONS(4821), - [anon_sym_final] = ACTIONS(4821), - [anon_sym_open] = ACTIONS(4821), - [anon_sym_vararg] = ACTIONS(4821), - [anon_sym_noinline] = ACTIONS(4821), - [anon_sym_crossinline] = ACTIONS(4821), - [anon_sym_expect] = ACTIONS(4821), - [anon_sym_actual] = ACTIONS(4821), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4823), - [sym_safe_nav] = ACTIONS(4823), + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_RBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_RPAREN] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [anon_sym_DASH_GT] = ACTIONS(4788), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_while] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_suspend] = ACTIONS(4786), + [anon_sym_sealed] = ACTIONS(4786), + [anon_sym_annotation] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_override] = ACTIONS(4786), + [anon_sym_lateinit] = ACTIONS(4786), + [anon_sym_public] = ACTIONS(4786), + [anon_sym_private] = ACTIONS(4786), + [anon_sym_internal] = ACTIONS(4786), + [anon_sym_protected] = ACTIONS(4786), + [anon_sym_tailrec] = ACTIONS(4786), + [anon_sym_operator] = ACTIONS(4786), + [anon_sym_infix] = ACTIONS(4786), + [anon_sym_inline] = ACTIONS(4786), + [anon_sym_external] = ACTIONS(4786), + [sym_property_modifier] = ACTIONS(4786), + [anon_sym_abstract] = ACTIONS(4786), + [anon_sym_final] = ACTIONS(4786), + [anon_sym_open] = ACTIONS(4786), + [anon_sym_vararg] = ACTIONS(4786), + [anon_sym_noinline] = ACTIONS(4786), + [anon_sym_crossinline] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), [sym_multiline_comment] = ACTIONS(3), }, [3490] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_RBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4328), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_RPAREN] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4321), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3491] = { - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [anon_sym_DASH_GT] = ACTIONS(4027), - [sym_label] = ACTIONS(4027), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_while] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_while] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), }, [3492] = { - [sym__alpha_identifier] = ACTIONS(4833), - [anon_sym_AT] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_where] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_get] = ACTIONS(4833), - [anon_sym_set] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_DASH_GT] = ACTIONS(4835), - [sym_label] = ACTIONS(4835), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_while] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_QMARK_COLON] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_else] = ACTIONS(4833), - [anon_sym_COLON_COLON] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_BANGin] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_BANGis] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_as_QMARK] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_BANG_BANG] = ACTIONS(4835), - [anon_sym_suspend] = ACTIONS(4833), - [anon_sym_sealed] = ACTIONS(4833), - [anon_sym_annotation] = ACTIONS(4833), - [anon_sym_data] = ACTIONS(4833), - [anon_sym_inner] = ACTIONS(4833), - [anon_sym_value] = ACTIONS(4833), - [anon_sym_override] = ACTIONS(4833), - [anon_sym_lateinit] = ACTIONS(4833), - [anon_sym_public] = ACTIONS(4833), - [anon_sym_private] = ACTIONS(4833), - [anon_sym_internal] = ACTIONS(4833), - [anon_sym_protected] = ACTIONS(4833), - [anon_sym_tailrec] = ACTIONS(4833), - [anon_sym_operator] = ACTIONS(4833), - [anon_sym_infix] = ACTIONS(4833), - [anon_sym_inline] = ACTIONS(4833), - [anon_sym_external] = ACTIONS(4833), - [sym_property_modifier] = ACTIONS(4833), - [anon_sym_abstract] = ACTIONS(4833), - [anon_sym_final] = ACTIONS(4833), - [anon_sym_open] = ACTIONS(4833), - [anon_sym_vararg] = ACTIONS(4833), - [anon_sym_noinline] = ACTIONS(4833), - [anon_sym_crossinline] = ACTIONS(4833), - [anon_sym_expect] = ACTIONS(4833), - [anon_sym_actual] = ACTIONS(4833), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4835), - [sym_safe_nav] = ACTIONS(4835), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_DASH_GT] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(1732), + [anon_sym_sealed] = ACTIONS(1732), + [anon_sym_annotation] = ACTIONS(1732), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_lateinit] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_internal] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_tailrec] = ACTIONS(1732), + [anon_sym_operator] = ACTIONS(1732), + [anon_sym_infix] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [anon_sym_external] = ACTIONS(1732), + [sym_property_modifier] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_final] = ACTIONS(1732), + [anon_sym_open] = ACTIONS(1732), + [anon_sym_vararg] = ACTIONS(1732), + [anon_sym_noinline] = ACTIONS(1732), + [anon_sym_crossinline] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), [sym_multiline_comment] = ACTIONS(3), }, [3493] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_DASH_GT] = ACTIONS(5079), + [sym_label] = ACTIONS(5079), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_while] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), [sym_multiline_comment] = ACTIONS(3), }, [3494] = { - [sym__alpha_identifier] = ACTIONS(4837), - [anon_sym_AT] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_LBRACE] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_get] = ACTIONS(4837), - [anon_sym_set] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_DASH_GT] = ACTIONS(4839), - [sym_label] = ACTIONS(4839), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_while] = ACTIONS(4837), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_QMARK_COLON] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_else] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4839), - [anon_sym_PLUS_EQ] = ACTIONS(4839), - [anon_sym_DASH_EQ] = ACTIONS(4839), - [anon_sym_STAR_EQ] = ACTIONS(4839), - [anon_sym_SLASH_EQ] = ACTIONS(4839), - [anon_sym_PERCENT_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_BANGin] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4837), - [anon_sym_BANGis] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_as_QMARK] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_BANG_BANG] = ACTIONS(4839), - [anon_sym_suspend] = ACTIONS(4837), - [anon_sym_sealed] = ACTIONS(4837), - [anon_sym_annotation] = ACTIONS(4837), - [anon_sym_data] = ACTIONS(4837), - [anon_sym_inner] = ACTIONS(4837), - [anon_sym_value] = ACTIONS(4837), - [anon_sym_override] = ACTIONS(4837), - [anon_sym_lateinit] = ACTIONS(4837), - [anon_sym_public] = ACTIONS(4837), - [anon_sym_private] = ACTIONS(4837), - [anon_sym_internal] = ACTIONS(4837), - [anon_sym_protected] = ACTIONS(4837), - [anon_sym_tailrec] = ACTIONS(4837), - [anon_sym_operator] = ACTIONS(4837), - [anon_sym_infix] = ACTIONS(4837), - [anon_sym_inline] = ACTIONS(4837), - [anon_sym_external] = ACTIONS(4837), - [sym_property_modifier] = ACTIONS(4837), - [anon_sym_abstract] = ACTIONS(4837), - [anon_sym_final] = ACTIONS(4837), - [anon_sym_open] = ACTIONS(4837), - [anon_sym_vararg] = ACTIONS(4837), - [anon_sym_noinline] = ACTIONS(4837), - [anon_sym_crossinline] = ACTIONS(4837), - [anon_sym_expect] = ACTIONS(4837), - [anon_sym_actual] = ACTIONS(4837), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4839), - [sym_safe_nav] = ACTIONS(4839), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3495] = { - [sym__alpha_identifier] = ACTIONS(4911), - [anon_sym_AT] = ACTIONS(4913), - [anon_sym_LBRACK] = ACTIONS(4913), - [anon_sym_RBRACK] = ACTIONS(4913), - [anon_sym_as] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4913), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4913), - [anon_sym_COMMA] = ACTIONS(4913), - [anon_sym_RPAREN] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4911), - [anon_sym_GT] = ACTIONS(4911), - [anon_sym_where] = ACTIONS(4911), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_SEMI] = ACTIONS(4913), - [anon_sym_get] = ACTIONS(4911), - [anon_sym_set] = ACTIONS(4911), - [anon_sym_STAR] = ACTIONS(4911), - [anon_sym_DASH_GT] = ACTIONS(4913), - [sym_label] = ACTIONS(4913), - [anon_sym_in] = ACTIONS(4911), - [anon_sym_while] = ACTIONS(4911), - [anon_sym_DOT_DOT] = ACTIONS(4913), - [anon_sym_QMARK_COLON] = ACTIONS(4913), - [anon_sym_AMP_AMP] = ACTIONS(4913), - [anon_sym_PIPE_PIPE] = ACTIONS(4913), - [anon_sym_else] = ACTIONS(4911), - [anon_sym_COLON_COLON] = ACTIONS(4913), - [anon_sym_PLUS_EQ] = ACTIONS(4913), - [anon_sym_DASH_EQ] = ACTIONS(4913), - [anon_sym_STAR_EQ] = ACTIONS(4913), - [anon_sym_SLASH_EQ] = ACTIONS(4913), - [anon_sym_PERCENT_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ] = ACTIONS(4911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4913), - [anon_sym_LT_EQ] = ACTIONS(4913), - [anon_sym_GT_EQ] = ACTIONS(4913), - [anon_sym_BANGin] = ACTIONS(4913), - [anon_sym_is] = ACTIONS(4911), - [anon_sym_BANGis] = ACTIONS(4913), - [anon_sym_PLUS] = ACTIONS(4911), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_SLASH] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_as_QMARK] = ACTIONS(4913), - [anon_sym_PLUS_PLUS] = ACTIONS(4913), - [anon_sym_DASH_DASH] = ACTIONS(4913), - [anon_sym_BANG_BANG] = ACTIONS(4913), - [anon_sym_suspend] = ACTIONS(4911), - [anon_sym_sealed] = ACTIONS(4911), - [anon_sym_annotation] = ACTIONS(4911), - [anon_sym_data] = ACTIONS(4911), - [anon_sym_inner] = ACTIONS(4911), - [anon_sym_value] = ACTIONS(4911), - [anon_sym_override] = ACTIONS(4911), - [anon_sym_lateinit] = ACTIONS(4911), - [anon_sym_public] = ACTIONS(4911), - [anon_sym_private] = ACTIONS(4911), - [anon_sym_internal] = ACTIONS(4911), - [anon_sym_protected] = ACTIONS(4911), - [anon_sym_tailrec] = ACTIONS(4911), - [anon_sym_operator] = ACTIONS(4911), - [anon_sym_infix] = ACTIONS(4911), - [anon_sym_inline] = ACTIONS(4911), - [anon_sym_external] = ACTIONS(4911), - [sym_property_modifier] = ACTIONS(4911), - [anon_sym_abstract] = ACTIONS(4911), - [anon_sym_final] = ACTIONS(4911), - [anon_sym_open] = ACTIONS(4911), - [anon_sym_vararg] = ACTIONS(4911), - [anon_sym_noinline] = ACTIONS(4911), - [anon_sym_crossinline] = ACTIONS(4911), - [anon_sym_expect] = ACTIONS(4911), - [anon_sym_actual] = ACTIONS(4911), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4913), - [sym_safe_nav] = ACTIONS(4913), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4646), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), [sym_multiline_comment] = ACTIONS(3), }, [3496] = { - [sym__alpha_identifier] = ACTIONS(4817), - [anon_sym_AT] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_RBRACK] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_RPAREN] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_get] = ACTIONS(4817), - [anon_sym_set] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_DASH_GT] = ACTIONS(4819), - [sym_label] = ACTIONS(4819), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_while] = ACTIONS(4817), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_QMARK_COLON] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_else] = ACTIONS(4817), - [anon_sym_COLON_COLON] = ACTIONS(4819), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_BANGin] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4817), - [anon_sym_BANGis] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_as_QMARK] = ACTIONS(4819), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_BANG_BANG] = ACTIONS(4819), - [anon_sym_suspend] = ACTIONS(4817), - [anon_sym_sealed] = ACTIONS(4817), - [anon_sym_annotation] = ACTIONS(4817), - [anon_sym_data] = ACTIONS(4817), - [anon_sym_inner] = ACTIONS(4817), - [anon_sym_value] = ACTIONS(4817), - [anon_sym_override] = ACTIONS(4817), - [anon_sym_lateinit] = ACTIONS(4817), - [anon_sym_public] = ACTIONS(4817), - [anon_sym_private] = ACTIONS(4817), - [anon_sym_internal] = ACTIONS(4817), - [anon_sym_protected] = ACTIONS(4817), - [anon_sym_tailrec] = ACTIONS(4817), - [anon_sym_operator] = ACTIONS(4817), - [anon_sym_infix] = ACTIONS(4817), - [anon_sym_inline] = ACTIONS(4817), - [anon_sym_external] = ACTIONS(4817), - [sym_property_modifier] = ACTIONS(4817), - [anon_sym_abstract] = ACTIONS(4817), - [anon_sym_final] = ACTIONS(4817), - [anon_sym_open] = ACTIONS(4817), - [anon_sym_vararg] = ACTIONS(4817), - [anon_sym_noinline] = ACTIONS(4817), - [anon_sym_crossinline] = ACTIONS(4817), - [anon_sym_expect] = ACTIONS(4817), - [anon_sym_actual] = ACTIONS(4817), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4819), - [sym_safe_nav] = ACTIONS(4819), + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_RBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [anon_sym_DASH_GT] = ACTIONS(4792), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_while] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_suspend] = ACTIONS(4790), + [anon_sym_sealed] = ACTIONS(4790), + [anon_sym_annotation] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_override] = ACTIONS(4790), + [anon_sym_lateinit] = ACTIONS(4790), + [anon_sym_public] = ACTIONS(4790), + [anon_sym_private] = ACTIONS(4790), + [anon_sym_internal] = ACTIONS(4790), + [anon_sym_protected] = ACTIONS(4790), + [anon_sym_tailrec] = ACTIONS(4790), + [anon_sym_operator] = ACTIONS(4790), + [anon_sym_infix] = ACTIONS(4790), + [anon_sym_inline] = ACTIONS(4790), + [anon_sym_external] = ACTIONS(4790), + [sym_property_modifier] = ACTIONS(4790), + [anon_sym_abstract] = ACTIONS(4790), + [anon_sym_final] = ACTIONS(4790), + [anon_sym_open] = ACTIONS(4790), + [anon_sym_vararg] = ACTIONS(4790), + [anon_sym_noinline] = ACTIONS(4790), + [anon_sym_crossinline] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), [sym_multiline_comment] = ACTIONS(3), }, [3497] = { - [sym__alpha_identifier] = ACTIONS(4923), - [anon_sym_AT] = ACTIONS(4925), - [anon_sym_LBRACK] = ACTIONS(4925), - [anon_sym_RBRACK] = ACTIONS(4925), - [anon_sym_as] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4925), - [anon_sym_RBRACE] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4925), - [anon_sym_COMMA] = ACTIONS(4925), - [anon_sym_RPAREN] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_where] = ACTIONS(4923), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_SEMI] = ACTIONS(4925), - [anon_sym_get] = ACTIONS(4923), - [anon_sym_set] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_DASH_GT] = ACTIONS(4925), - [sym_label] = ACTIONS(4925), - [anon_sym_in] = ACTIONS(4923), - [anon_sym_while] = ACTIONS(4923), - [anon_sym_DOT_DOT] = ACTIONS(4925), - [anon_sym_QMARK_COLON] = ACTIONS(4925), - [anon_sym_AMP_AMP] = ACTIONS(4925), - [anon_sym_PIPE_PIPE] = ACTIONS(4925), - [anon_sym_else] = ACTIONS(4923), - [anon_sym_COLON_COLON] = ACTIONS(4925), - [anon_sym_PLUS_EQ] = ACTIONS(4925), - [anon_sym_DASH_EQ] = ACTIONS(4925), - [anon_sym_STAR_EQ] = ACTIONS(4925), - [anon_sym_SLASH_EQ] = ACTIONS(4925), - [anon_sym_PERCENT_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4925), - [anon_sym_LT_EQ] = ACTIONS(4925), - [anon_sym_GT_EQ] = ACTIONS(4925), - [anon_sym_BANGin] = ACTIONS(4925), - [anon_sym_is] = ACTIONS(4923), - [anon_sym_BANGis] = ACTIONS(4925), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_PERCENT] = ACTIONS(4923), - [anon_sym_as_QMARK] = ACTIONS(4925), - [anon_sym_PLUS_PLUS] = ACTIONS(4925), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_BANG_BANG] = ACTIONS(4925), - [anon_sym_suspend] = ACTIONS(4923), - [anon_sym_sealed] = ACTIONS(4923), - [anon_sym_annotation] = ACTIONS(4923), - [anon_sym_data] = ACTIONS(4923), - [anon_sym_inner] = ACTIONS(4923), - [anon_sym_value] = ACTIONS(4923), - [anon_sym_override] = ACTIONS(4923), - [anon_sym_lateinit] = ACTIONS(4923), - [anon_sym_public] = ACTIONS(4923), - [anon_sym_private] = ACTIONS(4923), - [anon_sym_internal] = ACTIONS(4923), - [anon_sym_protected] = ACTIONS(4923), - [anon_sym_tailrec] = ACTIONS(4923), - [anon_sym_operator] = ACTIONS(4923), - [anon_sym_infix] = ACTIONS(4923), - [anon_sym_inline] = ACTIONS(4923), - [anon_sym_external] = ACTIONS(4923), - [sym_property_modifier] = ACTIONS(4923), - [anon_sym_abstract] = ACTIONS(4923), - [anon_sym_final] = ACTIONS(4923), - [anon_sym_open] = ACTIONS(4923), - [anon_sym_vararg] = ACTIONS(4923), - [anon_sym_noinline] = ACTIONS(4923), - [anon_sym_crossinline] = ACTIONS(4923), - [anon_sym_expect] = ACTIONS(4923), - [anon_sym_actual] = ACTIONS(4923), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4925), - [sym_safe_nav] = ACTIONS(4925), + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_RBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_RPAREN] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5119), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_while] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), [sym_multiline_comment] = ACTIONS(3), }, [3498] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_DASH_GT] = ACTIONS(4941), - [sym_label] = ACTIONS(4941), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_while] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_suspend] = ACTIONS(4939), - [anon_sym_sealed] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4939), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_value] = ACTIONS(4939), - [anon_sym_override] = ACTIONS(4939), - [anon_sym_lateinit] = ACTIONS(4939), - [anon_sym_public] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4939), - [anon_sym_internal] = ACTIONS(4939), - [anon_sym_protected] = ACTIONS(4939), - [anon_sym_tailrec] = ACTIONS(4939), - [anon_sym_operator] = ACTIONS(4939), - [anon_sym_infix] = ACTIONS(4939), - [anon_sym_inline] = ACTIONS(4939), - [anon_sym_external] = ACTIONS(4939), - [sym_property_modifier] = ACTIONS(4939), - [anon_sym_abstract] = ACTIONS(4939), - [anon_sym_final] = ACTIONS(4939), - [anon_sym_open] = ACTIONS(4939), - [anon_sym_vararg] = ACTIONS(4939), - [anon_sym_noinline] = ACTIONS(4939), - [anon_sym_crossinline] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_DASH_GT] = ACTIONS(1798), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(1796), + [anon_sym_sealed] = ACTIONS(1796), + [anon_sym_annotation] = ACTIONS(1796), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_override] = ACTIONS(1796), + [anon_sym_lateinit] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_internal] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_tailrec] = ACTIONS(1796), + [anon_sym_operator] = ACTIONS(1796), + [anon_sym_infix] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [anon_sym_external] = ACTIONS(1796), + [sym_property_modifier] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_final] = ACTIONS(1796), + [anon_sym_open] = ACTIONS(1796), + [anon_sym_vararg] = ACTIONS(1796), + [anon_sym_noinline] = ACTIONS(1796), + [anon_sym_crossinline] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), [sym_multiline_comment] = ACTIONS(3), }, [3499] = { - [sym_type_constraints] = STATE(3893), - [sym_function_body] = STATE(3828), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6714), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_RBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [anon_sym_DASH_GT] = ACTIONS(4796), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_while] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), [sym_multiline_comment] = ACTIONS(3), }, [3500] = { - [sym__alpha_identifier] = ACTIONS(4743), - [anon_sym_AT] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_RBRACK] = ACTIONS(4745), - [anon_sym_as] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4743), - [anon_sym_LBRACE] = ACTIONS(4745), - [anon_sym_RBRACE] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_COMMA] = ACTIONS(4745), - [anon_sym_RPAREN] = ACTIONS(4745), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4743), - [anon_sym_where] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4743), - [anon_sym_DASH_GT] = ACTIONS(4745), - [sym_label] = ACTIONS(4745), - [anon_sym_in] = ACTIONS(4743), - [anon_sym_while] = ACTIONS(4743), - [anon_sym_DOT_DOT] = ACTIONS(4745), - [anon_sym_QMARK_COLON] = ACTIONS(4745), - [anon_sym_AMP_AMP] = ACTIONS(4745), - [anon_sym_PIPE_PIPE] = ACTIONS(4745), - [anon_sym_else] = ACTIONS(4743), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym_PLUS_EQ] = ACTIONS(4745), - [anon_sym_DASH_EQ] = ACTIONS(4745), - [anon_sym_STAR_EQ] = ACTIONS(4745), - [anon_sym_SLASH_EQ] = ACTIONS(4745), - [anon_sym_PERCENT_EQ] = ACTIONS(4745), - [anon_sym_BANG_EQ] = ACTIONS(4743), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4745), - [anon_sym_EQ_EQ] = ACTIONS(4743), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4745), - [anon_sym_LT_EQ] = ACTIONS(4745), - [anon_sym_GT_EQ] = ACTIONS(4745), - [anon_sym_BANGin] = ACTIONS(4745), - [anon_sym_is] = ACTIONS(4743), - [anon_sym_BANGis] = ACTIONS(4745), - [anon_sym_PLUS] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4743), - [anon_sym_PERCENT] = ACTIONS(4743), - [anon_sym_as_QMARK] = ACTIONS(4745), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_BANG_BANG] = ACTIONS(4745), - [anon_sym_suspend] = ACTIONS(4743), - [anon_sym_sealed] = ACTIONS(4743), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_data] = ACTIONS(4743), - [anon_sym_inner] = ACTIONS(4743), - [anon_sym_value] = ACTIONS(4743), - [anon_sym_override] = ACTIONS(4743), - [anon_sym_lateinit] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_internal] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_tailrec] = ACTIONS(4743), - [anon_sym_operator] = ACTIONS(4743), - [anon_sym_infix] = ACTIONS(4743), - [anon_sym_inline] = ACTIONS(4743), - [anon_sym_external] = ACTIONS(4743), - [sym_property_modifier] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_open] = ACTIONS(4743), - [anon_sym_vararg] = ACTIONS(4743), - [anon_sym_noinline] = ACTIONS(4743), - [anon_sym_crossinline] = ACTIONS(4743), - [anon_sym_expect] = ACTIONS(4743), - [anon_sym_actual] = ACTIONS(4743), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4745), - [sym_safe_nav] = ACTIONS(4745), + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_RBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_RPAREN] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_DASH_GT] = ACTIONS(4806), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), [sym_multiline_comment] = ACTIONS(3), }, [3501] = { - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_RBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_RPAREN] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4013), - [sym_label] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_while] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_suspend] = ACTIONS(4011), - [anon_sym_sealed] = ACTIONS(4011), - [anon_sym_annotation] = ACTIONS(4011), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_override] = ACTIONS(4011), - [anon_sym_lateinit] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4011), - [anon_sym_private] = ACTIONS(4011), - [anon_sym_internal] = ACTIONS(4011), - [anon_sym_protected] = ACTIONS(4011), - [anon_sym_tailrec] = ACTIONS(4011), - [anon_sym_operator] = ACTIONS(4011), - [anon_sym_infix] = ACTIONS(4011), - [anon_sym_inline] = ACTIONS(4011), - [anon_sym_external] = ACTIONS(4011), - [sym_property_modifier] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4011), - [anon_sym_final] = ACTIONS(4011), - [anon_sym_open] = ACTIONS(4011), - [anon_sym_vararg] = ACTIONS(4011), - [anon_sym_noinline] = ACTIONS(4011), - [anon_sym_crossinline] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [3502] = { - [sym__alpha_identifier] = ACTIONS(4358), - [anon_sym_AT] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4360), - [anon_sym_as] = ACTIONS(4358), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4360), - [anon_sym_RBRACE] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_GT] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_object] = ACTIONS(4358), - [anon_sym_fun] = ACTIONS(4358), - [anon_sym_DOT] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_get] = ACTIONS(4358), - [anon_sym_set] = ACTIONS(4358), - [anon_sym_this] = ACTIONS(4358), - [anon_sym_super] = ACTIONS(4358), - [anon_sym_STAR] = ACTIONS(4358), - [sym_label] = ACTIONS(4358), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4360), - [anon_sym_AMP_AMP] = ACTIONS(4360), - [anon_sym_PIPE_PIPE] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_else] = ACTIONS(4358), - [anon_sym_when] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_throw] = ACTIONS(4358), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_continue] = ACTIONS(4358), - [anon_sym_break] = ACTIONS(4358), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PLUS_EQ] = ACTIONS(4360), - [anon_sym_DASH_EQ] = ACTIONS(4360), - [anon_sym_STAR_EQ] = ACTIONS(4360), - [anon_sym_SLASH_EQ] = ACTIONS(4360), - [anon_sym_PERCENT_EQ] = ACTIONS(4360), - [anon_sym_BANG_EQ] = ACTIONS(4358), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4360), - [anon_sym_EQ_EQ] = ACTIONS(4358), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4360), - [anon_sym_LT_EQ] = ACTIONS(4360), - [anon_sym_GT_EQ] = ACTIONS(4360), - [anon_sym_BANGin] = ACTIONS(4360), - [anon_sym_is] = ACTIONS(4358), - [anon_sym_BANGis] = ACTIONS(4360), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_SLASH] = ACTIONS(4358), - [anon_sym_PERCENT] = ACTIONS(4358), - [anon_sym_as_QMARK] = ACTIONS(4360), - [anon_sym_PLUS_PLUS] = ACTIONS(4360), - [anon_sym_DASH_DASH] = ACTIONS(4360), - [anon_sym_BANG] = ACTIONS(4358), - [anon_sym_BANG_BANG] = ACTIONS(4360), - [anon_sym_data] = ACTIONS(4358), - [anon_sym_inner] = ACTIONS(4358), - [anon_sym_value] = ACTIONS(4358), - [anon_sym_expect] = ACTIONS(4358), - [anon_sym_actual] = ACTIONS(4358), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4360), - [anon_sym_continue_AT] = ACTIONS(4360), - [anon_sym_break_AT] = ACTIONS(4360), - [sym_real_literal] = ACTIONS(4360), - [sym_integer_literal] = ACTIONS(4358), - [sym_hex_literal] = ACTIONS(4360), - [sym_bin_literal] = ACTIONS(4360), - [anon_sym_true] = ACTIONS(4358), - [anon_sym_false] = ACTIONS(4358), - [anon_sym_SQUOTE] = ACTIONS(4360), - [sym__backtick_identifier] = ACTIONS(4360), - [sym__automatic_semicolon] = ACTIONS(4360), - [sym_safe_nav] = ACTIONS(4360), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4360), + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5147), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_while] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), }, [3503] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [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_DOT] = 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), + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_RBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_while] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), [sym_multiline_comment] = ACTIONS(3), }, [3504] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [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_DOT] = 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), + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5151), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_while] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), }, [3505] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_where] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_get] = ACTIONS(5013), - [anon_sym_set] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_DASH_GT] = ACTIONS(5015), - [sym_label] = ACTIONS(5015), - [anon_sym_in] = ACTIONS(5013), - [anon_sym_while] = ACTIONS(5013), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_QMARK_COLON] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_else] = ACTIONS(5013), - [anon_sym_COLON_COLON] = ACTIONS(5015), - [anon_sym_PLUS_EQ] = ACTIONS(5015), - [anon_sym_DASH_EQ] = ACTIONS(5015), - [anon_sym_STAR_EQ] = ACTIONS(5015), - [anon_sym_SLASH_EQ] = ACTIONS(5015), - [anon_sym_PERCENT_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_BANGin] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5013), - [anon_sym_BANGis] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_as_QMARK] = ACTIONS(5015), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_BANG_BANG] = ACTIONS(5015), - [anon_sym_suspend] = ACTIONS(5013), - [anon_sym_sealed] = ACTIONS(5013), - [anon_sym_annotation] = ACTIONS(5013), - [anon_sym_data] = ACTIONS(5013), - [anon_sym_inner] = ACTIONS(5013), - [anon_sym_value] = ACTIONS(5013), - [anon_sym_override] = ACTIONS(5013), - [anon_sym_lateinit] = ACTIONS(5013), - [anon_sym_public] = ACTIONS(5013), - [anon_sym_private] = ACTIONS(5013), - [anon_sym_internal] = ACTIONS(5013), - [anon_sym_protected] = ACTIONS(5013), - [anon_sym_tailrec] = ACTIONS(5013), - [anon_sym_operator] = ACTIONS(5013), - [anon_sym_infix] = ACTIONS(5013), - [anon_sym_inline] = ACTIONS(5013), - [anon_sym_external] = ACTIONS(5013), - [sym_property_modifier] = ACTIONS(5013), - [anon_sym_abstract] = ACTIONS(5013), - [anon_sym_final] = ACTIONS(5013), - [anon_sym_open] = ACTIONS(5013), - [anon_sym_vararg] = ACTIONS(5013), - [anon_sym_noinline] = ACTIONS(5013), - [anon_sym_crossinline] = ACTIONS(5013), - [anon_sym_expect] = ACTIONS(5013), - [anon_sym_actual] = ACTIONS(5013), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5015), - [sym_safe_nav] = ACTIONS(5015), + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5155), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_while] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), }, [3506] = { - [sym__alpha_identifier] = ACTIONS(5017), - [anon_sym_AT] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_where] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_get] = ACTIONS(5017), - [anon_sym_set] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_DASH_GT] = ACTIONS(5019), - [sym_label] = ACTIONS(5019), - [anon_sym_in] = ACTIONS(5017), - [anon_sym_while] = ACTIONS(5017), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_QMARK_COLON] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_else] = ACTIONS(5017), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_PLUS_EQ] = ACTIONS(5019), - [anon_sym_DASH_EQ] = ACTIONS(5019), - [anon_sym_STAR_EQ] = ACTIONS(5019), - [anon_sym_SLASH_EQ] = ACTIONS(5019), - [anon_sym_PERCENT_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_BANGin] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5017), - [anon_sym_BANGis] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5017), - [anon_sym_as_QMARK] = ACTIONS(5019), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_BANG_BANG] = ACTIONS(5019), - [anon_sym_suspend] = ACTIONS(5017), - [anon_sym_sealed] = ACTIONS(5017), - [anon_sym_annotation] = ACTIONS(5017), - [anon_sym_data] = ACTIONS(5017), - [anon_sym_inner] = ACTIONS(5017), - [anon_sym_value] = ACTIONS(5017), - [anon_sym_override] = ACTIONS(5017), - [anon_sym_lateinit] = ACTIONS(5017), - [anon_sym_public] = ACTIONS(5017), - [anon_sym_private] = ACTIONS(5017), - [anon_sym_internal] = ACTIONS(5017), - [anon_sym_protected] = ACTIONS(5017), - [anon_sym_tailrec] = ACTIONS(5017), - [anon_sym_operator] = ACTIONS(5017), - [anon_sym_infix] = ACTIONS(5017), - [anon_sym_inline] = ACTIONS(5017), - [anon_sym_external] = ACTIONS(5017), - [sym_property_modifier] = ACTIONS(5017), - [anon_sym_abstract] = ACTIONS(5017), - [anon_sym_final] = ACTIONS(5017), - [anon_sym_open] = ACTIONS(5017), - [anon_sym_vararg] = ACTIONS(5017), - [anon_sym_noinline] = ACTIONS(5017), - [anon_sym_crossinline] = ACTIONS(5017), - [anon_sym_expect] = ACTIONS(5017), - [anon_sym_actual] = ACTIONS(5017), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5019), - [sym_safe_nav] = ACTIONS(5019), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6874), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [3507] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6624), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [3508] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [3509] = { - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_RBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [anon_sym_DASH_GT] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [anon_sym_DASH_GT] = ACTIONS(4836), + [sym_label] = ACTIONS(4836), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_while] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_suspend] = ACTIONS(4834), + [anon_sym_sealed] = ACTIONS(4834), + [anon_sym_annotation] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_override] = ACTIONS(4834), + [anon_sym_lateinit] = ACTIONS(4834), + [anon_sym_public] = ACTIONS(4834), + [anon_sym_private] = ACTIONS(4834), + [anon_sym_internal] = ACTIONS(4834), + [anon_sym_protected] = ACTIONS(4834), + [anon_sym_tailrec] = ACTIONS(4834), + [anon_sym_operator] = ACTIONS(4834), + [anon_sym_infix] = ACTIONS(4834), + [anon_sym_inline] = ACTIONS(4834), + [anon_sym_external] = ACTIONS(4834), + [sym_property_modifier] = ACTIONS(4834), + [anon_sym_abstract] = ACTIONS(4834), + [anon_sym_final] = ACTIONS(4834), + [anon_sym_open] = ACTIONS(4834), + [anon_sym_vararg] = ACTIONS(4834), + [anon_sym_noinline] = ACTIONS(4834), + [anon_sym_crossinline] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), [sym_multiline_comment] = ACTIONS(3), }, [3510] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_DASH_GT] = ACTIONS(5023), - [sym_label] = ACTIONS(5023), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_while] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_suspend] = ACTIONS(5021), - [anon_sym_sealed] = ACTIONS(5021), - [anon_sym_annotation] = ACTIONS(5021), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_value] = ACTIONS(5021), - [anon_sym_override] = ACTIONS(5021), - [anon_sym_lateinit] = ACTIONS(5021), - [anon_sym_public] = ACTIONS(5021), - [anon_sym_private] = ACTIONS(5021), - [anon_sym_internal] = ACTIONS(5021), - [anon_sym_protected] = ACTIONS(5021), - [anon_sym_tailrec] = ACTIONS(5021), - [anon_sym_operator] = ACTIONS(5021), - [anon_sym_infix] = ACTIONS(5021), - [anon_sym_inline] = ACTIONS(5021), - [anon_sym_external] = ACTIONS(5021), - [sym_property_modifier] = ACTIONS(5021), - [anon_sym_abstract] = ACTIONS(5021), - [anon_sym_final] = ACTIONS(5021), - [anon_sym_open] = ACTIONS(5021), - [anon_sym_vararg] = ACTIONS(5021), - [anon_sym_noinline] = ACTIONS(5021), - [anon_sym_crossinline] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(1802), + [anon_sym_sealed] = ACTIONS(1802), + [anon_sym_annotation] = ACTIONS(1802), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_lateinit] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_internal] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_tailrec] = ACTIONS(1802), + [anon_sym_operator] = ACTIONS(1802), + [anon_sym_infix] = ACTIONS(1802), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_external] = ACTIONS(1802), + [sym_property_modifier] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_final] = ACTIONS(1802), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_vararg] = ACTIONS(1802), + [anon_sym_noinline] = ACTIONS(1802), + [anon_sym_crossinline] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, [3511] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_DASH_GT] = ACTIONS(5027), - [sym_label] = ACTIONS(5027), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_while] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_suspend] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_annotation] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_value] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_lateinit] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_tailrec] = ACTIONS(5025), - [anon_sym_operator] = ACTIONS(5025), - [anon_sym_infix] = ACTIONS(5025), - [anon_sym_inline] = ACTIONS(5025), - [anon_sym_external] = ACTIONS(5025), - [sym_property_modifier] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_final] = ACTIONS(5025), - [anon_sym_open] = ACTIONS(5025), - [anon_sym_vararg] = ACTIONS(5025), - [anon_sym_noinline] = ACTIONS(5025), - [anon_sym_crossinline] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_RBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_RPAREN] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5053), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_while] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, [3512] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_as] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_where] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_get] = ACTIONS(5029), - [anon_sym_set] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_DASH_GT] = ACTIONS(5031), - [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__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_RBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5177), + [sym_label] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_while] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), [sym_multiline_comment] = ACTIONS(3), }, [3513] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5051), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_while] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_RBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_while] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3514] = { - [sym__alpha_identifier] = ACTIONS(4919), - [anon_sym_AT] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_as] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4919), - [anon_sym_GT] = ACTIONS(4919), - [anon_sym_where] = ACTIONS(4919), - [anon_sym_DOT] = ACTIONS(4919), - [anon_sym_SEMI] = ACTIONS(4921), - [anon_sym_get] = ACTIONS(4919), - [anon_sym_set] = ACTIONS(4919), - [anon_sym_STAR] = ACTIONS(4919), - [anon_sym_DASH_GT] = ACTIONS(4921), - [sym_label] = ACTIONS(4921), - [anon_sym_in] = ACTIONS(4919), - [anon_sym_while] = ACTIONS(4919), - [anon_sym_DOT_DOT] = ACTIONS(4921), - [anon_sym_QMARK_COLON] = ACTIONS(4921), - [anon_sym_AMP_AMP] = ACTIONS(4921), - [anon_sym_PIPE_PIPE] = ACTIONS(4921), - [anon_sym_else] = ACTIONS(4919), - [anon_sym_COLON_COLON] = ACTIONS(4921), - [anon_sym_PLUS_EQ] = ACTIONS(4921), - [anon_sym_DASH_EQ] = ACTIONS(4921), - [anon_sym_STAR_EQ] = ACTIONS(4921), - [anon_sym_SLASH_EQ] = ACTIONS(4921), - [anon_sym_PERCENT_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4921), - [anon_sym_LT_EQ] = ACTIONS(4921), - [anon_sym_GT_EQ] = ACTIONS(4921), - [anon_sym_BANGin] = ACTIONS(4921), - [anon_sym_is] = ACTIONS(4919), - [anon_sym_BANGis] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4919), - [anon_sym_DASH] = ACTIONS(4919), - [anon_sym_SLASH] = ACTIONS(4919), - [anon_sym_PERCENT] = ACTIONS(4919), - [anon_sym_as_QMARK] = ACTIONS(4921), - [anon_sym_PLUS_PLUS] = ACTIONS(4921), - [anon_sym_DASH_DASH] = ACTIONS(4921), - [anon_sym_BANG_BANG] = ACTIONS(4921), - [anon_sym_suspend] = ACTIONS(4919), - [anon_sym_sealed] = ACTIONS(4919), - [anon_sym_annotation] = ACTIONS(4919), - [anon_sym_data] = ACTIONS(4919), - [anon_sym_inner] = ACTIONS(4919), - [anon_sym_value] = ACTIONS(4919), - [anon_sym_override] = ACTIONS(4919), - [anon_sym_lateinit] = ACTIONS(4919), - [anon_sym_public] = ACTIONS(4919), - [anon_sym_private] = ACTIONS(4919), - [anon_sym_internal] = ACTIONS(4919), - [anon_sym_protected] = ACTIONS(4919), - [anon_sym_tailrec] = ACTIONS(4919), - [anon_sym_operator] = ACTIONS(4919), - [anon_sym_infix] = ACTIONS(4919), - [anon_sym_inline] = ACTIONS(4919), - [anon_sym_external] = ACTIONS(4919), - [sym_property_modifier] = ACTIONS(4919), - [anon_sym_abstract] = ACTIONS(4919), - [anon_sym_final] = ACTIONS(4919), - [anon_sym_open] = ACTIONS(4919), - [anon_sym_vararg] = ACTIONS(4919), - [anon_sym_noinline] = ACTIONS(4919), - [anon_sym_crossinline] = ACTIONS(4919), - [anon_sym_expect] = ACTIONS(4919), - [anon_sym_actual] = ACTIONS(4919), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4921), - [sym_safe_nav] = ACTIONS(4921), + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_RBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_RPAREN] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_DASH_GT] = ACTIONS(5045), + [sym_label] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_while] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), [sym_multiline_comment] = ACTIONS(3), }, [3515] = { - [sym__alpha_identifier] = ACTIONS(4905), - [anon_sym_AT] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_as] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_where] = ACTIONS(4905), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_SEMI] = ACTIONS(4907), - [anon_sym_get] = ACTIONS(4905), - [anon_sym_set] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_DASH_GT] = ACTIONS(4907), - [sym_label] = ACTIONS(4907), - [anon_sym_in] = ACTIONS(4905), - [anon_sym_while] = ACTIONS(4905), - [anon_sym_DOT_DOT] = ACTIONS(4907), - [anon_sym_QMARK_COLON] = ACTIONS(4907), - [anon_sym_AMP_AMP] = ACTIONS(4907), - [anon_sym_PIPE_PIPE] = ACTIONS(4907), - [anon_sym_else] = ACTIONS(4905), - [anon_sym_COLON_COLON] = ACTIONS(4907), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), - [anon_sym_EQ_EQ] = ACTIONS(4905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), - [anon_sym_LT_EQ] = ACTIONS(4907), - [anon_sym_GT_EQ] = ACTIONS(4907), - [anon_sym_BANGin] = ACTIONS(4907), - [anon_sym_is] = ACTIONS(4905), - [anon_sym_BANGis] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_as_QMARK] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(4907), - [anon_sym_DASH_DASH] = ACTIONS(4907), - [anon_sym_BANG_BANG] = ACTIONS(4907), - [anon_sym_suspend] = ACTIONS(4905), - [anon_sym_sealed] = ACTIONS(4905), - [anon_sym_annotation] = ACTIONS(4905), - [anon_sym_data] = ACTIONS(4905), - [anon_sym_inner] = ACTIONS(4905), - [anon_sym_value] = ACTIONS(4905), - [anon_sym_override] = ACTIONS(4905), - [anon_sym_lateinit] = ACTIONS(4905), - [anon_sym_public] = ACTIONS(4905), - [anon_sym_private] = ACTIONS(4905), - [anon_sym_internal] = ACTIONS(4905), - [anon_sym_protected] = ACTIONS(4905), - [anon_sym_tailrec] = ACTIONS(4905), - [anon_sym_operator] = ACTIONS(4905), - [anon_sym_infix] = ACTIONS(4905), - [anon_sym_inline] = ACTIONS(4905), - [anon_sym_external] = ACTIONS(4905), - [sym_property_modifier] = ACTIONS(4905), - [anon_sym_abstract] = ACTIONS(4905), - [anon_sym_final] = ACTIONS(4905), - [anon_sym_open] = ACTIONS(4905), - [anon_sym_vararg] = ACTIONS(4905), - [anon_sym_noinline] = ACTIONS(4905), - [anon_sym_crossinline] = ACTIONS(4905), - [anon_sym_expect] = ACTIONS(4905), - [anon_sym_actual] = ACTIONS(4905), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4907), - [sym_safe_nav] = ACTIONS(4907), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6882), + [sym__alpha_identifier] = ACTIONS(6884), + [anon_sym_AT] = ACTIONS(6882), + [anon_sym_LBRACK] = ACTIONS(6882), + [anon_sym_package] = ACTIONS(6884), + [anon_sym_import] = ACTIONS(6884), + [anon_sym_typealias] = ACTIONS(6884), + [anon_sym_class] = ACTIONS(6884), + [anon_sym_interface] = ACTIONS(6884), + [anon_sym_enum] = ACTIONS(6884), + [anon_sym_LBRACE] = ACTIONS(6882), + [anon_sym_LPAREN] = ACTIONS(6882), + [anon_sym_val] = ACTIONS(6884), + [anon_sym_var] = ACTIONS(6884), + [anon_sym_object] = ACTIONS(6884), + [anon_sym_fun] = ACTIONS(6884), + [anon_sym_get] = ACTIONS(6884), + [anon_sym_set] = ACTIONS(6884), + [anon_sym_this] = ACTIONS(6884), + [anon_sym_super] = ACTIONS(6884), + [anon_sym_STAR] = ACTIONS(6882), + [sym_label] = ACTIONS(6884), + [anon_sym_for] = ACTIONS(6884), + [anon_sym_while] = ACTIONS(6884), + [anon_sym_do] = ACTIONS(6884), + [anon_sym_null] = ACTIONS(6884), + [anon_sym_if] = ACTIONS(6884), + [anon_sym_when] = ACTIONS(6884), + [anon_sym_try] = ACTIONS(6884), + [anon_sym_throw] = ACTIONS(6884), + [anon_sym_return] = ACTIONS(6884), + [anon_sym_continue] = ACTIONS(6884), + [anon_sym_break] = ACTIONS(6884), + [anon_sym_COLON_COLON] = ACTIONS(6882), + [anon_sym_PLUS] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6882), + [anon_sym_DASH_DASH] = ACTIONS(6882), + [anon_sym_BANG] = ACTIONS(6882), + [anon_sym_suspend] = ACTIONS(6884), + [anon_sym_sealed] = ACTIONS(6884), + [anon_sym_annotation] = ACTIONS(6884), + [anon_sym_data] = ACTIONS(6884), + [anon_sym_inner] = ACTIONS(6884), + [anon_sym_value] = ACTIONS(6884), + [anon_sym_override] = ACTIONS(6884), + [anon_sym_lateinit] = ACTIONS(6884), + [anon_sym_public] = ACTIONS(6884), + [anon_sym_private] = ACTIONS(6884), + [anon_sym_internal] = ACTIONS(6884), + [anon_sym_protected] = ACTIONS(6884), + [anon_sym_tailrec] = ACTIONS(6884), + [anon_sym_operator] = ACTIONS(6884), + [anon_sym_infix] = ACTIONS(6884), + [anon_sym_inline] = ACTIONS(6884), + [anon_sym_external] = ACTIONS(6884), + [sym_property_modifier] = ACTIONS(6884), + [anon_sym_abstract] = ACTIONS(6884), + [anon_sym_final] = ACTIONS(6884), + [anon_sym_open] = ACTIONS(6884), + [anon_sym_vararg] = ACTIONS(6884), + [anon_sym_noinline] = ACTIONS(6884), + [anon_sym_crossinline] = ACTIONS(6884), + [anon_sym_expect] = ACTIONS(6884), + [anon_sym_actual] = ACTIONS(6884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6882), + [anon_sym_continue_AT] = ACTIONS(6882), + [anon_sym_break_AT] = ACTIONS(6882), + [anon_sym_this_AT] = ACTIONS(6882), + [anon_sym_super_AT] = ACTIONS(6882), + [sym_real_literal] = ACTIONS(6882), + [sym_integer_literal] = ACTIONS(6884), + [sym_hex_literal] = ACTIONS(6882), + [sym_bin_literal] = ACTIONS(6882), + [anon_sym_true] = ACTIONS(6884), + [anon_sym_false] = ACTIONS(6884), + [anon_sym_SQUOTE] = ACTIONS(6882), + [sym__backtick_identifier] = ACTIONS(6882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6882), }, [3516] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_DASH_GT] = ACTIONS(5059), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_while] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(6675), - [anon_sym_PLUS_EQ] = ACTIONS(5059), - [anon_sym_DASH_EQ] = ACTIONS(5059), - [anon_sym_STAR_EQ] = ACTIONS(5059), - [anon_sym_SLASH_EQ] = ACTIONS(5059), - [anon_sym_PERCENT_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_BANGin] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5057), - [anon_sym_BANGis] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_as_QMARK] = ACTIONS(5059), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_BANG_BANG] = ACTIONS(5059), - [anon_sym_suspend] = ACTIONS(5057), - [anon_sym_sealed] = ACTIONS(5057), - [anon_sym_annotation] = ACTIONS(5057), - [anon_sym_data] = ACTIONS(5057), - [anon_sym_inner] = ACTIONS(5057), - [anon_sym_value] = ACTIONS(5057), - [anon_sym_override] = ACTIONS(5057), - [anon_sym_lateinit] = ACTIONS(5057), - [anon_sym_public] = ACTIONS(5057), - [anon_sym_private] = ACTIONS(5057), - [anon_sym_internal] = ACTIONS(5057), - [anon_sym_protected] = ACTIONS(5057), - [anon_sym_tailrec] = ACTIONS(5057), - [anon_sym_operator] = ACTIONS(5057), - [anon_sym_infix] = ACTIONS(5057), - [anon_sym_inline] = ACTIONS(5057), - [anon_sym_external] = ACTIONS(5057), - [sym_property_modifier] = ACTIONS(5057), - [anon_sym_abstract] = ACTIONS(5057), - [anon_sym_final] = ACTIONS(5057), - [anon_sym_open] = ACTIONS(5057), - [anon_sym_vararg] = ACTIONS(5057), - [anon_sym_noinline] = ACTIONS(5057), - [anon_sym_crossinline] = ACTIONS(5057), - [anon_sym_expect] = ACTIONS(5057), - [anon_sym_actual] = ACTIONS(5057), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5059), - [sym_safe_nav] = ACTIONS(5059), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_while] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(6837), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, [3517] = { - [sym__alpha_identifier] = ACTIONS(5078), - [anon_sym_AT] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_RBRACK] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5078), - [anon_sym_EQ] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_where] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_SEMI] = ACTIONS(5080), - [anon_sym_get] = ACTIONS(5078), - [anon_sym_set] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5078), - [anon_sym_DASH_GT] = ACTIONS(5080), - [sym_label] = ACTIONS(5080), - [anon_sym_in] = ACTIONS(5078), - [anon_sym_while] = ACTIONS(5078), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_QMARK_COLON] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_else] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5080), - [anon_sym_PLUS_EQ] = ACTIONS(5080), - [anon_sym_DASH_EQ] = ACTIONS(5080), - [anon_sym_STAR_EQ] = ACTIONS(5080), - [anon_sym_SLASH_EQ] = ACTIONS(5080), - [anon_sym_PERCENT_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_BANGin] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5078), - [anon_sym_BANGis] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5078), - [anon_sym_as_QMARK] = ACTIONS(5080), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_BANG_BANG] = ACTIONS(5080), - [anon_sym_suspend] = ACTIONS(5078), - [anon_sym_sealed] = ACTIONS(5078), - [anon_sym_annotation] = ACTIONS(5078), - [anon_sym_data] = ACTIONS(5078), - [anon_sym_inner] = ACTIONS(5078), - [anon_sym_value] = ACTIONS(5078), - [anon_sym_override] = ACTIONS(5078), - [anon_sym_lateinit] = ACTIONS(5078), - [anon_sym_public] = ACTIONS(5078), - [anon_sym_private] = ACTIONS(5078), - [anon_sym_internal] = ACTIONS(5078), - [anon_sym_protected] = ACTIONS(5078), - [anon_sym_tailrec] = ACTIONS(5078), - [anon_sym_operator] = ACTIONS(5078), - [anon_sym_infix] = ACTIONS(5078), - [anon_sym_inline] = ACTIONS(5078), - [anon_sym_external] = ACTIONS(5078), - [sym_property_modifier] = ACTIONS(5078), - [anon_sym_abstract] = ACTIONS(5078), - [anon_sym_final] = ACTIONS(5078), - [anon_sym_open] = ACTIONS(5078), - [anon_sym_vararg] = ACTIONS(5078), - [anon_sym_noinline] = ACTIONS(5078), - [anon_sym_crossinline] = ACTIONS(5078), - [anon_sym_expect] = ACTIONS(5078), - [anon_sym_actual] = ACTIONS(5078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5080), - [sym_safe_nav] = ACTIONS(5080), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_DASH_GT] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_while] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), [sym_multiline_comment] = ACTIONS(3), }, [3518] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(6716), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_object] = ACTIONS(4728), + [anon_sym_fun] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_this] = ACTIONS(4728), + [anon_sym_super] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4730), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_null] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_try] = ACTIONS(4728), + [anon_sym_throw] = ACTIONS(4728), + [anon_sym_return] = ACTIONS(4728), + [anon_sym_continue] = ACTIONS(4728), + [anon_sym_break] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4730), + [anon_sym_continue_AT] = ACTIONS(4730), + [anon_sym_break_AT] = ACTIONS(4730), + [anon_sym_this_AT] = ACTIONS(4730), + [anon_sym_super_AT] = ACTIONS(4730), + [sym_real_literal] = ACTIONS(4730), + [sym_integer_literal] = ACTIONS(4728), + [sym_hex_literal] = ACTIONS(4730), + [sym_bin_literal] = ACTIONS(4730), + [anon_sym_true] = ACTIONS(4728), + [anon_sym_false] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4730), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4730), }, [3519] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(6718), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(6716), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4765), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4765), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4762), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4765), + [anon_sym_continue_AT] = ACTIONS(4765), + [anon_sym_break_AT] = ACTIONS(4765), + [anon_sym_this_AT] = ACTIONS(4765), + [anon_sym_super_AT] = ACTIONS(4765), + [sym_real_literal] = ACTIONS(4765), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4765), + [sym_bin_literal] = ACTIONS(4765), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4765), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4765), }, [3520] = { - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_RBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3842), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_RPAREN] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3842), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(3844), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_while] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3844), - [anon_sym_PLUS_EQ] = ACTIONS(3844), - [anon_sym_DASH_EQ] = ACTIONS(3844), - [anon_sym_STAR_EQ] = ACTIONS(3844), - [anon_sym_SLASH_EQ] = ACTIONS(3844), - [anon_sym_PERCENT_EQ] = ACTIONS(3844), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(3844), - [anon_sym_BANG_BANG] = ACTIONS(3844), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3844), + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_RBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_RPAREN] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5193), + [sym_label] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_while] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_suspend] = ACTIONS(5191), + [anon_sym_sealed] = ACTIONS(5191), + [anon_sym_annotation] = ACTIONS(5191), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_override] = ACTIONS(5191), + [anon_sym_lateinit] = ACTIONS(5191), + [anon_sym_public] = ACTIONS(5191), + [anon_sym_private] = ACTIONS(5191), + [anon_sym_internal] = ACTIONS(5191), + [anon_sym_protected] = ACTIONS(5191), + [anon_sym_tailrec] = ACTIONS(5191), + [anon_sym_operator] = ACTIONS(5191), + [anon_sym_infix] = ACTIONS(5191), + [anon_sym_inline] = ACTIONS(5191), + [anon_sym_external] = ACTIONS(5191), + [sym_property_modifier] = ACTIONS(5191), + [anon_sym_abstract] = ACTIONS(5191), + [anon_sym_final] = ACTIONS(5191), + [anon_sym_open] = ACTIONS(5191), + [anon_sym_vararg] = ACTIONS(5191), + [anon_sym_noinline] = ACTIONS(5191), + [anon_sym_crossinline] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), [sym_multiline_comment] = ACTIONS(3), }, [3521] = { - [sym__alpha_identifier] = ACTIONS(5096), - [anon_sym_AT] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_RBRACK] = ACTIONS(5098), - [anon_sym_as] = ACTIONS(5096), - [anon_sym_EQ] = ACTIONS(5096), - [anon_sym_LBRACE] = ACTIONS(5098), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_LPAREN] = ACTIONS(5098), - [anon_sym_COMMA] = ACTIONS(5098), - [anon_sym_RPAREN] = ACTIONS(5098), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5096), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_SEMI] = ACTIONS(5098), - [anon_sym_get] = ACTIONS(5096), - [anon_sym_set] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5096), - [anon_sym_DASH_GT] = ACTIONS(5098), - [sym_label] = ACTIONS(5098), - [anon_sym_in] = ACTIONS(5096), - [anon_sym_while] = ACTIONS(5096), - [anon_sym_DOT_DOT] = ACTIONS(5098), - [anon_sym_QMARK_COLON] = ACTIONS(5098), - [anon_sym_AMP_AMP] = ACTIONS(5098), - [anon_sym_PIPE_PIPE] = ACTIONS(5098), - [anon_sym_else] = ACTIONS(5096), - [anon_sym_COLON_COLON] = ACTIONS(5098), - [anon_sym_PLUS_EQ] = ACTIONS(5098), - [anon_sym_DASH_EQ] = ACTIONS(5098), - [anon_sym_STAR_EQ] = ACTIONS(5098), - [anon_sym_SLASH_EQ] = ACTIONS(5098), - [anon_sym_PERCENT_EQ] = ACTIONS(5098), - [anon_sym_BANG_EQ] = ACTIONS(5096), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5098), - [anon_sym_EQ_EQ] = ACTIONS(5096), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5098), - [anon_sym_LT_EQ] = ACTIONS(5098), - [anon_sym_GT_EQ] = ACTIONS(5098), - [anon_sym_BANGin] = ACTIONS(5098), - [anon_sym_is] = ACTIONS(5096), - [anon_sym_BANGis] = ACTIONS(5098), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5096), - [anon_sym_as_QMARK] = ACTIONS(5098), - [anon_sym_PLUS_PLUS] = ACTIONS(5098), - [anon_sym_DASH_DASH] = ACTIONS(5098), - [anon_sym_BANG_BANG] = ACTIONS(5098), - [anon_sym_suspend] = ACTIONS(5096), - [anon_sym_sealed] = ACTIONS(5096), - [anon_sym_annotation] = ACTIONS(5096), - [anon_sym_data] = ACTIONS(5096), - [anon_sym_inner] = ACTIONS(5096), - [anon_sym_value] = ACTIONS(5096), - [anon_sym_override] = ACTIONS(5096), - [anon_sym_lateinit] = ACTIONS(5096), - [anon_sym_public] = ACTIONS(5096), - [anon_sym_private] = ACTIONS(5096), - [anon_sym_internal] = ACTIONS(5096), - [anon_sym_protected] = ACTIONS(5096), - [anon_sym_tailrec] = ACTIONS(5096), - [anon_sym_operator] = ACTIONS(5096), - [anon_sym_infix] = ACTIONS(5096), - [anon_sym_inline] = ACTIONS(5096), - [anon_sym_external] = ACTIONS(5096), - [sym_property_modifier] = ACTIONS(5096), - [anon_sym_abstract] = ACTIONS(5096), - [anon_sym_final] = ACTIONS(5096), - [anon_sym_open] = ACTIONS(5096), - [anon_sym_vararg] = ACTIONS(5096), - [anon_sym_noinline] = ACTIONS(5096), - [anon_sym_crossinline] = ACTIONS(5096), - [anon_sym_expect] = ACTIONS(5096), - [anon_sym_actual] = ACTIONS(5096), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5098), - [sym_safe_nav] = ACTIONS(5098), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [3522] = { - [sym__alpha_identifier] = ACTIONS(5066), - [anon_sym_AT] = ACTIONS(5068), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_RBRACK] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5066), - [anon_sym_EQ] = ACTIONS(5066), - [anon_sym_LBRACE] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_RPAREN] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_where] = ACTIONS(5066), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(5068), - [anon_sym_get] = ACTIONS(5066), - [anon_sym_set] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5066), - [anon_sym_DASH_GT] = ACTIONS(5068), - [sym_label] = ACTIONS(5068), - [anon_sym_in] = ACTIONS(5066), - [anon_sym_while] = ACTIONS(5066), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_QMARK_COLON] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_else] = ACTIONS(5066), - [anon_sym_COLON_COLON] = ACTIONS(5068), - [anon_sym_PLUS_EQ] = ACTIONS(5068), - [anon_sym_DASH_EQ] = ACTIONS(5068), - [anon_sym_STAR_EQ] = ACTIONS(5068), - [anon_sym_SLASH_EQ] = ACTIONS(5068), - [anon_sym_PERCENT_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5066), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5066), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_BANGin] = ACTIONS(5068), - [anon_sym_is] = ACTIONS(5066), - [anon_sym_BANGis] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5066), - [anon_sym_as_QMARK] = ACTIONS(5068), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_BANG_BANG] = ACTIONS(5068), - [anon_sym_suspend] = ACTIONS(5066), - [anon_sym_sealed] = ACTIONS(5066), - [anon_sym_annotation] = ACTIONS(5066), - [anon_sym_data] = ACTIONS(5066), - [anon_sym_inner] = ACTIONS(5066), - [anon_sym_value] = ACTIONS(5066), - [anon_sym_override] = ACTIONS(5066), - [anon_sym_lateinit] = ACTIONS(5066), - [anon_sym_public] = ACTIONS(5066), - [anon_sym_private] = ACTIONS(5066), - [anon_sym_internal] = ACTIONS(5066), - [anon_sym_protected] = ACTIONS(5066), - [anon_sym_tailrec] = ACTIONS(5066), - [anon_sym_operator] = ACTIONS(5066), - [anon_sym_infix] = ACTIONS(5066), - [anon_sym_inline] = ACTIONS(5066), - [anon_sym_external] = ACTIONS(5066), - [sym_property_modifier] = ACTIONS(5066), - [anon_sym_abstract] = ACTIONS(5066), - [anon_sym_final] = ACTIONS(5066), - [anon_sym_open] = ACTIONS(5066), - [anon_sym_vararg] = ACTIONS(5066), - [anon_sym_noinline] = ACTIONS(5066), - [anon_sym_crossinline] = ACTIONS(5066), - [anon_sym_expect] = ACTIONS(5066), - [anon_sym_actual] = ACTIONS(5066), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5068), - [sym_safe_nav] = ACTIONS(5068), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6886), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [3523] = { - [sym__alpha_identifier] = ACTIONS(1582), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_DASH_GT] = ACTIONS(1580), - [sym_label] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(1582), - [anon_sym_inner] = ACTIONS(1582), - [anon_sym_value] = ACTIONS(1582), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(1582), - [anon_sym_actual] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(6888), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(6886), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [3524] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [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_DOT] = 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), - [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), + [sym__alpha_identifier] = ACTIONS(5205), + [anon_sym_AT] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5205), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_get] = ACTIONS(5205), + [anon_sym_set] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_DASH_GT] = ACTIONS(5207), + [sym_label] = ACTIONS(5207), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_while] = ACTIONS(5205), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_else] = ACTIONS(5205), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [anon_sym_PLUS_EQ] = ACTIONS(5207), + [anon_sym_DASH_EQ] = ACTIONS(5207), + [anon_sym_STAR_EQ] = ACTIONS(5207), + [anon_sym_SLASH_EQ] = ACTIONS(5207), + [anon_sym_PERCENT_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_BANGin] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5205), + [anon_sym_BANGis] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5205), + [anon_sym_as_QMARK] = ACTIONS(5207), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_BANG_BANG] = ACTIONS(5207), + [anon_sym_suspend] = ACTIONS(5205), + [anon_sym_sealed] = ACTIONS(5205), + [anon_sym_annotation] = ACTIONS(5205), + [anon_sym_data] = ACTIONS(5205), + [anon_sym_inner] = ACTIONS(5205), + [anon_sym_value] = ACTIONS(5205), + [anon_sym_override] = ACTIONS(5205), + [anon_sym_lateinit] = ACTIONS(5205), + [anon_sym_public] = ACTIONS(5205), + [anon_sym_private] = ACTIONS(5205), + [anon_sym_internal] = ACTIONS(5205), + [anon_sym_protected] = ACTIONS(5205), + [anon_sym_tailrec] = ACTIONS(5205), + [anon_sym_operator] = ACTIONS(5205), + [anon_sym_infix] = ACTIONS(5205), + [anon_sym_inline] = ACTIONS(5205), + [anon_sym_external] = ACTIONS(5205), + [sym_property_modifier] = ACTIONS(5205), + [anon_sym_abstract] = ACTIONS(5205), + [anon_sym_final] = ACTIONS(5205), + [anon_sym_open] = ACTIONS(5205), + [anon_sym_vararg] = ACTIONS(5205), + [anon_sym_noinline] = ACTIONS(5205), + [anon_sym_crossinline] = ACTIONS(5205), + [anon_sym_expect] = ACTIONS(5205), + [anon_sym_actual] = ACTIONS(5205), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5207), + [sym_safe_nav] = ACTIONS(5207), + [sym_multiline_comment] = ACTIONS(3), }, [3525] = { - [sym__alpha_identifier] = ACTIONS(5108), - [anon_sym_AT] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_RBRACK] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5108), - [anon_sym_EQ] = ACTIONS(5108), - [anon_sym_LBRACE] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_SEMI] = ACTIONS(5110), - [anon_sym_get] = ACTIONS(5108), - [anon_sym_set] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5108), - [anon_sym_DASH_GT] = ACTIONS(5110), - [sym_label] = ACTIONS(5110), - [anon_sym_in] = ACTIONS(5108), - [anon_sym_while] = ACTIONS(5108), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_QMARK_COLON] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_else] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(5110), - [anon_sym_PLUS_EQ] = ACTIONS(5110), - [anon_sym_DASH_EQ] = ACTIONS(5110), - [anon_sym_STAR_EQ] = ACTIONS(5110), - [anon_sym_SLASH_EQ] = ACTIONS(5110), - [anon_sym_PERCENT_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_BANGin] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5108), - [anon_sym_BANGis] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5108), - [anon_sym_as_QMARK] = ACTIONS(5110), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_BANG_BANG] = ACTIONS(5110), - [anon_sym_suspend] = ACTIONS(5108), - [anon_sym_sealed] = ACTIONS(5108), - [anon_sym_annotation] = ACTIONS(5108), - [anon_sym_data] = ACTIONS(5108), - [anon_sym_inner] = ACTIONS(5108), - [anon_sym_value] = ACTIONS(5108), - [anon_sym_override] = ACTIONS(5108), - [anon_sym_lateinit] = ACTIONS(5108), - [anon_sym_public] = ACTIONS(5108), - [anon_sym_private] = ACTIONS(5108), - [anon_sym_internal] = ACTIONS(5108), - [anon_sym_protected] = ACTIONS(5108), - [anon_sym_tailrec] = ACTIONS(5108), - [anon_sym_operator] = ACTIONS(5108), - [anon_sym_infix] = ACTIONS(5108), - [anon_sym_inline] = ACTIONS(5108), - [anon_sym_external] = ACTIONS(5108), - [sym_property_modifier] = ACTIONS(5108), - [anon_sym_abstract] = ACTIONS(5108), - [anon_sym_final] = ACTIONS(5108), - [anon_sym_open] = ACTIONS(5108), - [anon_sym_vararg] = ACTIONS(5108), - [anon_sym_noinline] = ACTIONS(5108), - [anon_sym_crossinline] = ACTIONS(5108), - [anon_sym_expect] = ACTIONS(5108), - [anon_sym_actual] = ACTIONS(5108), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5110), - [sym_safe_nav] = ACTIONS(5110), + [sym__alpha_identifier] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_RBRACK] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_RPAREN] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_get] = ACTIONS(5020), + [anon_sym_set] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5022), + [sym_label] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_BANGis] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_suspend] = ACTIONS(5020), + [anon_sym_sealed] = ACTIONS(5020), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_data] = ACTIONS(5020), + [anon_sym_inner] = ACTIONS(5020), + [anon_sym_value] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_lateinit] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_protected] = ACTIONS(5020), + [anon_sym_tailrec] = ACTIONS(5020), + [anon_sym_operator] = ACTIONS(5020), + [anon_sym_infix] = ACTIONS(5020), + [anon_sym_inline] = ACTIONS(5020), + [anon_sym_external] = ACTIONS(5020), + [sym_property_modifier] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_open] = ACTIONS(5020), + [anon_sym_vararg] = ACTIONS(5020), + [anon_sym_noinline] = ACTIONS(5020), + [anon_sym_crossinline] = ACTIONS(5020), + [anon_sym_expect] = ACTIONS(5020), + [anon_sym_actual] = ACTIONS(5020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5022), + [sym_safe_nav] = ACTIONS(5022), [sym_multiline_comment] = ACTIONS(3), }, [3526] = { - [sym__alpha_identifier] = ACTIONS(5112), - [anon_sym_AT] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_RBRACK] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5112), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_LBRACE] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_RPAREN] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5112), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_get] = ACTIONS(5112), - [anon_sym_set] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5112), - [anon_sym_DASH_GT] = ACTIONS(5114), - [sym_label] = ACTIONS(5114), - [anon_sym_in] = ACTIONS(5112), - [anon_sym_while] = ACTIONS(5112), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_QMARK_COLON] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_else] = ACTIONS(5112), - [anon_sym_COLON_COLON] = ACTIONS(5114), - [anon_sym_PLUS_EQ] = ACTIONS(5114), - [anon_sym_DASH_EQ] = ACTIONS(5114), - [anon_sym_STAR_EQ] = ACTIONS(5114), - [anon_sym_SLASH_EQ] = ACTIONS(5114), - [anon_sym_PERCENT_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_BANGin] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5112), - [anon_sym_BANGis] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5112), - [anon_sym_as_QMARK] = ACTIONS(5114), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_BANG_BANG] = ACTIONS(5114), - [anon_sym_suspend] = ACTIONS(5112), - [anon_sym_sealed] = ACTIONS(5112), - [anon_sym_annotation] = ACTIONS(5112), - [anon_sym_data] = ACTIONS(5112), - [anon_sym_inner] = ACTIONS(5112), - [anon_sym_value] = ACTIONS(5112), - [anon_sym_override] = ACTIONS(5112), - [anon_sym_lateinit] = ACTIONS(5112), - [anon_sym_public] = ACTIONS(5112), - [anon_sym_private] = ACTIONS(5112), - [anon_sym_internal] = ACTIONS(5112), - [anon_sym_protected] = ACTIONS(5112), - [anon_sym_tailrec] = ACTIONS(5112), - [anon_sym_operator] = ACTIONS(5112), - [anon_sym_infix] = ACTIONS(5112), - [anon_sym_inline] = ACTIONS(5112), - [anon_sym_external] = ACTIONS(5112), - [sym_property_modifier] = ACTIONS(5112), - [anon_sym_abstract] = ACTIONS(5112), - [anon_sym_final] = ACTIONS(5112), - [anon_sym_open] = ACTIONS(5112), - [anon_sym_vararg] = ACTIONS(5112), - [anon_sym_noinline] = ACTIONS(5112), - [anon_sym_crossinline] = ACTIONS(5112), - [anon_sym_expect] = ACTIONS(5112), - [anon_sym_actual] = ACTIONS(5112), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5114), - [sym_safe_nav] = ACTIONS(5114), + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_DASH_GT] = ACTIONS(4972), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_while] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_suspend] = ACTIONS(4970), + [anon_sym_sealed] = ACTIONS(4970), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_lateinit] = ACTIONS(4970), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_internal] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_tailrec] = ACTIONS(4970), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_infix] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym_external] = ACTIONS(4970), + [sym_property_modifier] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_open] = ACTIONS(4970), + [anon_sym_vararg] = ACTIONS(4970), + [anon_sym_noinline] = ACTIONS(4970), + [anon_sym_crossinline] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), [sym_multiline_comment] = ACTIONS(3), }, [3527] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_when] = ACTIONS(5045), - [anon_sym_try] = ACTIONS(5045), - [anon_sym_throw] = ACTIONS(5045), - [anon_sym_return] = ACTIONS(5045), - [anon_sym_continue] = ACTIONS(5045), - [anon_sym_break] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_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), - [sym_real_literal] = ACTIONS(5047), - [sym_integer_literal] = ACTIONS(5045), - [sym_hex_literal] = ACTIONS(5047), - [sym_bin_literal] = ACTIONS(5047), - [anon_sym_true] = ACTIONS(5045), - [anon_sym_false] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5047), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_DASH_GT] = ACTIONS(5211), + [sym_label] = ACTIONS(5211), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_while] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_suspend] = ACTIONS(5209), + [anon_sym_sealed] = ACTIONS(5209), + [anon_sym_annotation] = ACTIONS(5209), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_override] = ACTIONS(5209), + [anon_sym_lateinit] = ACTIONS(5209), + [anon_sym_public] = ACTIONS(5209), + [anon_sym_private] = ACTIONS(5209), + [anon_sym_internal] = ACTIONS(5209), + [anon_sym_protected] = ACTIONS(5209), + [anon_sym_tailrec] = ACTIONS(5209), + [anon_sym_operator] = ACTIONS(5209), + [anon_sym_infix] = ACTIONS(5209), + [anon_sym_inline] = ACTIONS(5209), + [anon_sym_external] = ACTIONS(5209), + [sym_property_modifier] = ACTIONS(5209), + [anon_sym_abstract] = ACTIONS(5209), + [anon_sym_final] = ACTIONS(5209), + [anon_sym_open] = ACTIONS(5209), + [anon_sym_vararg] = ACTIONS(5209), + [anon_sym_noinline] = ACTIONS(5209), + [anon_sym_crossinline] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), + [sym_multiline_comment] = ACTIONS(3), }, [3528] = { - [sym_function_body] = STATE(3965), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_DASH_GT] = ACTIONS(5215), + [sym_label] = ACTIONS(5215), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_while] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_suspend] = ACTIONS(5213), + [anon_sym_sealed] = ACTIONS(5213), + [anon_sym_annotation] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_override] = ACTIONS(5213), + [anon_sym_lateinit] = ACTIONS(5213), + [anon_sym_public] = ACTIONS(5213), + [anon_sym_private] = ACTIONS(5213), + [anon_sym_internal] = ACTIONS(5213), + [anon_sym_protected] = ACTIONS(5213), + [anon_sym_tailrec] = ACTIONS(5213), + [anon_sym_operator] = ACTIONS(5213), + [anon_sym_infix] = ACTIONS(5213), + [anon_sym_inline] = ACTIONS(5213), + [anon_sym_external] = ACTIONS(5213), + [sym_property_modifier] = ACTIONS(5213), + [anon_sym_abstract] = ACTIONS(5213), + [anon_sym_final] = ACTIONS(5213), + [anon_sym_open] = ACTIONS(5213), + [anon_sym_vararg] = ACTIONS(5213), + [anon_sym_noinline] = ACTIONS(5213), + [anon_sym_crossinline] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), [sym_multiline_comment] = ACTIONS(3), }, [3529] = { - [sym_type_constraints] = STATE(3806), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_type_constraints_repeat1] = STATE(3529), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6890), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4432), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, [3530] = { - [sym_type_constraints] = STATE(3797), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6720), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3531] = { - [aux_sym_type_constraints_repeat1] = STATE(3533), - [sym__alpha_identifier] = ACTIONS(4433), - [anon_sym_AT] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_as] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(6724), - [anon_sym_by] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_where] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4433), - [anon_sym_SEMI] = ACTIONS(4435), - [anon_sym_get] = ACTIONS(4433), - [anon_sym_set] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [sym_label] = ACTIONS(4435), - [anon_sym_in] = ACTIONS(4433), - [anon_sym_DOT_DOT] = ACTIONS(4435), - [anon_sym_QMARK_COLON] = ACTIONS(4435), - [anon_sym_AMP_AMP] = ACTIONS(4435), - [anon_sym_PIPE_PIPE] = ACTIONS(4435), - [anon_sym_else] = ACTIONS(4433), - [anon_sym_COLON_COLON] = ACTIONS(4435), - [anon_sym_PLUS_EQ] = ACTIONS(4435), - [anon_sym_DASH_EQ] = ACTIONS(4435), - [anon_sym_STAR_EQ] = ACTIONS(4435), - [anon_sym_SLASH_EQ] = ACTIONS(4435), - [anon_sym_PERCENT_EQ] = ACTIONS(4435), - [anon_sym_BANG_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), - [anon_sym_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), - [anon_sym_LT_EQ] = ACTIONS(4435), - [anon_sym_GT_EQ] = ACTIONS(4435), - [anon_sym_BANGin] = ACTIONS(4435), - [anon_sym_is] = ACTIONS(4433), - [anon_sym_BANGis] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_PERCENT] = ACTIONS(4433), - [anon_sym_as_QMARK] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_BANG_BANG] = ACTIONS(4435), - [anon_sym_suspend] = ACTIONS(4433), - [anon_sym_sealed] = ACTIONS(4433), - [anon_sym_annotation] = ACTIONS(4433), - [anon_sym_data] = ACTIONS(4433), - [anon_sym_inner] = ACTIONS(4433), - [anon_sym_value] = ACTIONS(4433), - [anon_sym_override] = ACTIONS(4433), - [anon_sym_lateinit] = ACTIONS(4433), - [anon_sym_public] = ACTIONS(4433), - [anon_sym_private] = ACTIONS(4433), - [anon_sym_internal] = ACTIONS(4433), - [anon_sym_protected] = ACTIONS(4433), - [anon_sym_tailrec] = ACTIONS(4433), - [anon_sym_operator] = ACTIONS(4433), - [anon_sym_infix] = ACTIONS(4433), - [anon_sym_inline] = ACTIONS(4433), - [anon_sym_external] = ACTIONS(4433), - [sym_property_modifier] = ACTIONS(4433), - [anon_sym_abstract] = ACTIONS(4433), - [anon_sym_final] = ACTIONS(4433), - [anon_sym_open] = ACTIONS(4433), - [anon_sym_vararg] = ACTIONS(4433), - [anon_sym_noinline] = ACTIONS(4433), - [anon_sym_crossinline] = ACTIONS(4433), - [anon_sym_expect] = ACTIONS(4433), - [anon_sym_actual] = ACTIONS(4433), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4435), - [sym__automatic_semicolon] = ACTIONS(4435), - [sym_safe_nav] = ACTIONS(4435), + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_RBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_RPAREN] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_DASH_GT] = ACTIONS(5189), + [sym_label] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_while] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), [sym_multiline_comment] = ACTIONS(3), }, [3532] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6893), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [3533] = { - [aux_sym_type_constraints_repeat1] = STATE(3541), - [sym__alpha_identifier] = ACTIONS(4398), - [anon_sym_AT] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [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(6724), - [anon_sym_by] = ACTIONS(4398), - [anon_sym_LT] = ACTIONS(4398), - [anon_sym_GT] = ACTIONS(4398), - [anon_sym_where] = ACTIONS(4398), - [anon_sym_DOT] = 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_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__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_as] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_DASH_GT] = ACTIONS(5221), + [sym_label] = ACTIONS(5221), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_while] = ACTIONS(5219), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_QMARK_COLON] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_else] = ACTIONS(5219), + [anon_sym_COLON_COLON] = ACTIONS(5221), + [anon_sym_PLUS_EQ] = ACTIONS(5221), + [anon_sym_DASH_EQ] = ACTIONS(5221), + [anon_sym_STAR_EQ] = ACTIONS(5221), + [anon_sym_SLASH_EQ] = ACTIONS(5221), + [anon_sym_PERCENT_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5221), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_BANGin] = ACTIONS(5221), + [anon_sym_is] = ACTIONS(5219), + [anon_sym_BANGis] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_as_QMARK] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_BANG_BANG] = ACTIONS(5221), + [anon_sym_suspend] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_annotation] = ACTIONS(5219), + [anon_sym_data] = ACTIONS(5219), + [anon_sym_inner] = ACTIONS(5219), + [anon_sym_value] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_lateinit] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_tailrec] = ACTIONS(5219), + [anon_sym_operator] = ACTIONS(5219), + [anon_sym_infix] = ACTIONS(5219), + [anon_sym_inline] = ACTIONS(5219), + [anon_sym_external] = ACTIONS(5219), + [sym_property_modifier] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_final] = ACTIONS(5219), + [anon_sym_open] = ACTIONS(5219), + [anon_sym_vararg] = ACTIONS(5219), + [anon_sym_noinline] = ACTIONS(5219), + [anon_sym_crossinline] = ACTIONS(5219), + [anon_sym_expect] = ACTIONS(5219), + [anon_sym_actual] = ACTIONS(5219), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5221), + [sym_safe_nav] = ACTIONS(5221), [sym_multiline_comment] = ACTIONS(3), }, [3534] = { - [sym_value_arguments] = STATE(3740), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(6726), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6897), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [3535] = { - [aux_sym_user_type_repeat1] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6728), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [sym_label] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_QMARK_COLON] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_else] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS_EQ] = ACTIONS(4142), - [anon_sym_DASH_EQ] = ACTIONS(4142), - [anon_sym_STAR_EQ] = ACTIONS(4142), - [anon_sym_SLASH_EQ] = ACTIONS(4142), - [anon_sym_PERCENT_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_BANGin] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_BANGis] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_as_QMARK] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4142), - [sym__automatic_semicolon] = ACTIONS(4142), - [sym_safe_nav] = ACTIONS(4142), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [anon_sym_DASH_GT] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_while] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, [3536] = { - [sym_class_body] = STATE(3784), - [sym_type_constraints] = STATE(3696), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(5775), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_DASH_GT] = ACTIONS(1792), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(1790), + [anon_sym_sealed] = ACTIONS(1790), + [anon_sym_annotation] = ACTIONS(1790), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_override] = ACTIONS(1790), + [anon_sym_lateinit] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_internal] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_tailrec] = ACTIONS(1790), + [anon_sym_operator] = ACTIONS(1790), + [anon_sym_infix] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_external] = ACTIONS(1790), + [sym_property_modifier] = ACTIONS(1790), + [anon_sym_abstract] = ACTIONS(1790), + [anon_sym_final] = ACTIONS(1790), + [anon_sym_open] = ACTIONS(1790), + [anon_sym_vararg] = ACTIONS(1790), + [anon_sym_noinline] = ACTIONS(1790), + [anon_sym_crossinline] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, [3537] = { - [sym__alpha_identifier] = ACTIONS(4482), - [anon_sym_AT] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_EQ] = ACTIONS(4482), - [anon_sym_constructor] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_SEMI] = ACTIONS(4484), - [anon_sym_get] = ACTIONS(4482), - [anon_sym_set] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4482), - [sym_label] = ACTIONS(4484), - [anon_sym_in] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_QMARK_COLON] = ACTIONS(4484), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [anon_sym_else] = ACTIONS(4482), - [anon_sym_COLON_COLON] = ACTIONS(4484), - [anon_sym_PLUS_EQ] = ACTIONS(4484), - [anon_sym_DASH_EQ] = ACTIONS(4484), - [anon_sym_STAR_EQ] = ACTIONS(4484), - [anon_sym_SLASH_EQ] = ACTIONS(4484), - [anon_sym_PERCENT_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_BANGin] = ACTIONS(4484), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_BANGis] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4482), - [anon_sym_as_QMARK] = ACTIONS(4484), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_BANG_BANG] = ACTIONS(4484), - [anon_sym_suspend] = ACTIONS(4482), - [anon_sym_sealed] = ACTIONS(4482), - [anon_sym_annotation] = ACTIONS(4482), - [anon_sym_data] = ACTIONS(4482), - [anon_sym_inner] = ACTIONS(4482), - [anon_sym_value] = ACTIONS(4482), - [anon_sym_override] = ACTIONS(4482), - [anon_sym_lateinit] = ACTIONS(4482), - [anon_sym_public] = ACTIONS(4482), - [anon_sym_private] = ACTIONS(4482), - [anon_sym_internal] = ACTIONS(4482), - [anon_sym_protected] = ACTIONS(4482), - [anon_sym_tailrec] = ACTIONS(4482), - [anon_sym_operator] = ACTIONS(4482), - [anon_sym_infix] = ACTIONS(4482), - [anon_sym_inline] = ACTIONS(4482), - [anon_sym_external] = ACTIONS(4482), - [sym_property_modifier] = ACTIONS(4482), - [anon_sym_abstract] = ACTIONS(4482), - [anon_sym_final] = ACTIONS(4482), - [anon_sym_open] = ACTIONS(4482), - [anon_sym_vararg] = ACTIONS(4482), - [anon_sym_noinline] = ACTIONS(4482), - [anon_sym_crossinline] = ACTIONS(4482), - [anon_sym_expect] = ACTIONS(4482), - [anon_sym_actual] = ACTIONS(4482), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4484), - [sym__automatic_semicolon] = ACTIONS(4484), - [sym_safe_nav] = ACTIONS(4484), + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_RBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_RPAREN] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [anon_sym_DASH_GT] = ACTIONS(5161), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_while] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), [sym_multiline_comment] = ACTIONS(3), }, [3538] = { - [sym_class_body] = STATE(3820), - [sym_type_constraints] = STATE(3667), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6731), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_COMMA] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_where] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [sym__quest] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [sym_label] = ACTIONS(4315), + [anon_sym_in] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_QMARK_COLON] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4315), + [anon_sym_else] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS_EQ] = ACTIONS(4315), + [anon_sym_DASH_EQ] = ACTIONS(4315), + [anon_sym_STAR_EQ] = ACTIONS(4315), + [anon_sym_SLASH_EQ] = ACTIONS(4315), + [anon_sym_PERCENT_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(4313), + [anon_sym_BANGis] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_as_QMARK] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4315), + [sym__automatic_semicolon] = ACTIONS(4315), + [sym_safe_nav] = ACTIONS(4315), [sym_multiline_comment] = ACTIONS(3), }, [3539] = { - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5803), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3540] = { - [sym_class_body] = STATE(3859), - [sym_type_constraints] = STATE(3615), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5785), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [anon_sym_DASH_GT] = ACTIONS(4920), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_while] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_suspend] = ACTIONS(4918), + [anon_sym_sealed] = ACTIONS(4918), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_lateinit] = ACTIONS(4918), + [anon_sym_public] = ACTIONS(4918), + [anon_sym_private] = ACTIONS(4918), + [anon_sym_internal] = ACTIONS(4918), + [anon_sym_protected] = ACTIONS(4918), + [anon_sym_tailrec] = ACTIONS(4918), + [anon_sym_operator] = ACTIONS(4918), + [anon_sym_infix] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym_external] = ACTIONS(4918), + [sym_property_modifier] = ACTIONS(4918), + [anon_sym_abstract] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_open] = ACTIONS(4918), + [anon_sym_vararg] = ACTIONS(4918), + [anon_sym_noinline] = ACTIONS(4918), + [anon_sym_crossinline] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), [sym_multiline_comment] = ACTIONS(3), }, [3541] = { - [aux_sym_type_constraints_repeat1] = STATE(3541), - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(6733), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4412), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4672), + [anon_sym_continue_AT] = ACTIONS(4672), + [anon_sym_break_AT] = ACTIONS(4672), + [anon_sym_this_AT] = ACTIONS(4672), + [anon_sym_super_AT] = ACTIONS(4672), + [sym_real_literal] = ACTIONS(4672), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4672), + [sym_bin_literal] = ACTIONS(4672), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4672), }, [3542] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6736), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_RBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_RPAREN] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5165), + [sym_label] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_while] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), }, [3543] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6740), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_RPAREN] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4357), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_while] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), }, [3544] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_catch] = ACTIONS(4504), - [anon_sym_finally] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_RBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_while] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_suspend] = ACTIONS(5107), + [anon_sym_sealed] = ACTIONS(5107), + [anon_sym_annotation] = ACTIONS(5107), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_override] = ACTIONS(5107), + [anon_sym_lateinit] = ACTIONS(5107), + [anon_sym_public] = ACTIONS(5107), + [anon_sym_private] = ACTIONS(5107), + [anon_sym_internal] = ACTIONS(5107), + [anon_sym_protected] = ACTIONS(5107), + [anon_sym_tailrec] = ACTIONS(5107), + [anon_sym_operator] = ACTIONS(5107), + [anon_sym_infix] = ACTIONS(5107), + [anon_sym_inline] = ACTIONS(5107), + [anon_sym_external] = ACTIONS(5107), + [sym_property_modifier] = ACTIONS(5107), + [anon_sym_abstract] = ACTIONS(5107), + [anon_sym_final] = ACTIONS(5107), + [anon_sym_open] = ACTIONS(5107), + [anon_sym_vararg] = ACTIONS(5107), + [anon_sym_noinline] = ACTIONS(5107), + [anon_sym_crossinline] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), [sym_multiline_comment] = ACTIONS(3), }, [3545] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6744), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [sym__quest] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [sym_label] = ACTIONS(4319), + [anon_sym_in] = ACTIONS(4317), + [anon_sym_DOT_DOT] = ACTIONS(4319), + [anon_sym_QMARK_COLON] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), + [anon_sym_else] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS_EQ] = ACTIONS(4319), + [anon_sym_DASH_EQ] = ACTIONS(4319), + [anon_sym_STAR_EQ] = ACTIONS(4319), + [anon_sym_SLASH_EQ] = ACTIONS(4319), + [anon_sym_PERCENT_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_BANGin] = ACTIONS(4319), + [anon_sym_is] = ACTIONS(4317), + [anon_sym_BANGis] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_as_QMARK] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, [3546] = { - [sym_function_body] = STATE(3447), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [anon_sym_DASH_GT] = ACTIONS(5105), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_while] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), [sym_multiline_comment] = ACTIONS(3), }, [3547] = { - [sym_type_constraints] = STATE(3640), - [sym_enum_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6748), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_RBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_RPAREN] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5181), + [sym_label] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_while] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), [sym_multiline_comment] = ACTIONS(3), }, [3548] = { - [sym_class_body] = STATE(3880), - [sym_type_constraints] = STATE(3695), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6750), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4168), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_QMARK_COLON] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS_EQ] = ACTIONS(4168), + [anon_sym_DASH_EQ] = ACTIONS(4168), + [anon_sym_STAR_EQ] = ACTIONS(4168), + [anon_sym_SLASH_EQ] = ACTIONS(4168), + [anon_sym_PERCENT_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_BANGin] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4166), + [anon_sym_BANGis] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4168), + [sym__automatic_semicolon] = ACTIONS(4168), + [sym_safe_nav] = ACTIONS(4168), [sym_multiline_comment] = ACTIONS(3), }, [3549] = { - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5787), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_RBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_RPAREN] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5185), + [sym_label] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_while] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), [sym_multiline_comment] = ACTIONS(3), }, [3550] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [sym_label] = ACTIONS(4460), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_value] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6752), - [anon_sym_L] = ACTIONS(6754), - [sym__backtick_identifier] = ACTIONS(4460), - [sym__automatic_semicolon] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [sym__quest] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), [sym_multiline_comment] = ACTIONS(3), }, [3551] = { - [sym_type_constraints] = STATE(3949), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6756), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_DASH_GT] = ACTIONS(4964), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_while] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_suspend] = ACTIONS(4962), + [anon_sym_sealed] = ACTIONS(4962), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_lateinit] = ACTIONS(4962), + [anon_sym_public] = ACTIONS(4962), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_internal] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_tailrec] = ACTIONS(4962), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_infix] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym_external] = ACTIONS(4962), + [sym_property_modifier] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_open] = ACTIONS(4962), + [anon_sym_vararg] = ACTIONS(4962), + [anon_sym_noinline] = ACTIONS(4962), + [anon_sym_crossinline] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), + [sym_multiline_comment] = ACTIONS(3), }, [3552] = { - [sym_type_constraints] = STATE(3648), - [sym_enum_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6760), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3553] = { + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_RBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_DASH_GT] = ACTIONS(4479), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_while] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + }, + [3554] = { + [sym_type_arguments] = STATE(3778), + [sym__alpha_identifier] = ACTIONS(4128), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_typealias] = ACTIONS(4128), + [anon_sym_class] = ACTIONS(4128), + [anon_sym_interface] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_val] = ACTIONS(4128), + [anon_sym_var] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(6901), + [anon_sym_object] = ACTIONS(4128), + [anon_sym_fun] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4128), + [anon_sym_this] = ACTIONS(4128), + [anon_sym_super] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4189), + [sym_label] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_do] = ACTIONS(4128), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4189), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_suspend] = ACTIONS(4128), + [anon_sym_sealed] = ACTIONS(4128), + [anon_sym_annotation] = ACTIONS(4128), + [anon_sym_data] = ACTIONS(4128), + [anon_sym_inner] = ACTIONS(4128), + [anon_sym_value] = ACTIONS(4128), + [anon_sym_override] = ACTIONS(4128), + [anon_sym_lateinit] = ACTIONS(4128), + [anon_sym_public] = ACTIONS(4128), + [anon_sym_private] = ACTIONS(4128), + [anon_sym_internal] = ACTIONS(4128), + [anon_sym_protected] = ACTIONS(4128), + [anon_sym_tailrec] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_infix] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym_external] = ACTIONS(4128), + [sym_property_modifier] = ACTIONS(4128), + [anon_sym_abstract] = ACTIONS(4128), + [anon_sym_final] = ACTIONS(4128), + [anon_sym_open] = ACTIONS(4128), + [anon_sym_vararg] = ACTIONS(4128), + [anon_sym_noinline] = ACTIONS(4128), + [anon_sym_crossinline] = ACTIONS(4128), + [anon_sym_expect] = ACTIONS(4128), + [anon_sym_actual] = ACTIONS(4128), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4189), + [anon_sym_continue_AT] = ACTIONS(4189), + [anon_sym_break_AT] = ACTIONS(4189), + [anon_sym_this_AT] = ACTIONS(4189), + [anon_sym_super_AT] = ACTIONS(4189), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4128), + [sym_hex_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4189), + [sym__backtick_identifier] = ACTIONS(4189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4189), + }, + [3555] = { + [sym_type_constraints] = STATE(3908), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6903), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3556] = { + [aux_sym_nullable_type_repeat1] = STATE(3556), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4222), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [sym__quest] = ACTIONS(6907), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4224), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + }, + [3557] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3558] = { + [aux_sym_nullable_type_repeat1] = STATE(3597), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [sym__quest] = ACTIONS(6835), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), + [sym_multiline_comment] = ACTIONS(3), + }, + [3559] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6874), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3560] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [3561] = { + [sym_type_constraints] = STATE(3868), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6910), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [3562] = { + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3563] = { + [sym_type_constraints] = STATE(4020), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), [sym__alpha_identifier] = ACTIONS(4147), [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(6577), + [anon_sym_COLON] = ACTIONS(6912), [anon_sym_LBRACK] = ACTIONS(4149), [anon_sym_as] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), [anon_sym_RBRACE] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_COMMA] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), [anon_sym_LT] = ACTIONS(4147), [anon_sym_GT] = ACTIONS(4147), - [anon_sym_where] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), [anon_sym_DOT] = ACTIONS(4147), [anon_sym_SEMI] = ACTIONS(4149), [anon_sym_get] = ACTIONS(4147), [anon_sym_set] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [sym_label] = ACTIONS(4149), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), [anon_sym_in] = ACTIONS(4147), [anon_sym_DOT_DOT] = ACTIONS(4149), [anon_sym_QMARK_COLON] = ACTIONS(4149), [anon_sym_AMP_AMP] = ACTIONS(4149), [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), [anon_sym_COLON_COLON] = ACTIONS(4149), - [anon_sym_PLUS_EQ] = ACTIONS(4149), - [anon_sym_DASH_EQ] = ACTIONS(4149), - [anon_sym_STAR_EQ] = ACTIONS(4149), - [anon_sym_SLASH_EQ] = ACTIONS(4149), - [anon_sym_PERCENT_EQ] = ACTIONS(4149), [anon_sym_BANG_EQ] = ACTIONS(4147), [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), [anon_sym_EQ_EQ] = ACTIONS(4147), @@ -400501,7414 +409506,6604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4147), [anon_sym_DASH] = ACTIONS(4147), [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), [anon_sym_as_QMARK] = ACTIONS(4149), [anon_sym_PLUS_PLUS] = ACTIONS(4149), [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), [anon_sym_BANG_BANG] = ACTIONS(4149), - [anon_sym_suspend] = ACTIONS(4147), - [anon_sym_sealed] = ACTIONS(4147), - [anon_sym_annotation] = ACTIONS(4147), [anon_sym_data] = ACTIONS(4147), [anon_sym_inner] = ACTIONS(4147), [anon_sym_value] = ACTIONS(4147), - [anon_sym_override] = ACTIONS(4147), - [anon_sym_lateinit] = ACTIONS(4147), - [anon_sym_public] = ACTIONS(4147), - [anon_sym_private] = ACTIONS(4147), - [anon_sym_internal] = ACTIONS(4147), - [anon_sym_protected] = ACTIONS(4147), - [anon_sym_tailrec] = ACTIONS(4147), - [anon_sym_operator] = ACTIONS(4147), - [anon_sym_infix] = ACTIONS(4147), - [anon_sym_inline] = ACTIONS(4147), - [anon_sym_external] = ACTIONS(4147), - [sym_property_modifier] = ACTIONS(4147), - [anon_sym_abstract] = ACTIONS(4147), - [anon_sym_final] = ACTIONS(4147), - [anon_sym_open] = ACTIONS(4147), - [anon_sym_vararg] = ACTIONS(4147), - [anon_sym_noinline] = ACTIONS(4147), - [anon_sym_crossinline] = ACTIONS(4147), [anon_sym_expect] = ACTIONS(4147), [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), [sym__backtick_identifier] = ACTIONS(4149), [sym__automatic_semicolon] = ACTIONS(4149), [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), - }, - [3554] = { - [sym_function_body] = STATE(3494), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_while] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - }, - [3555] = { - [sym_type_constraints] = STATE(3961), - [sym_function_body] = STATE(3208), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [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(3128), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [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_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(4124), - [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), - [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), - }, - [3556] = { - [sym_type_constraints] = STATE(3960), - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6766), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [3557] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_catch] = ACTIONS(4394), - [anon_sym_finally] = 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), - }, - [3558] = { - [sym_type_constraints] = STATE(3958), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [3559] = { - [sym_type_constraints] = STATE(3956), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6770), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [3560] = { - [sym__alpha_identifier] = ACTIONS(4478), - [anon_sym_AT] = ACTIONS(4480), - [anon_sym_COLON] = ACTIONS(4478), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_as] = ACTIONS(4478), - [anon_sym_EQ] = ACTIONS(4478), - [anon_sym_constructor] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(4480), - [anon_sym_RBRACE] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4480), - [anon_sym_COMMA] = ACTIONS(4480), - [anon_sym_LT] = ACTIONS(4478), - [anon_sym_GT] = ACTIONS(4478), - [anon_sym_where] = ACTIONS(4478), - [anon_sym_DOT] = ACTIONS(4478), - [anon_sym_SEMI] = ACTIONS(4480), - [anon_sym_get] = ACTIONS(4478), - [anon_sym_set] = ACTIONS(4478), - [anon_sym_STAR] = ACTIONS(4478), - [sym_label] = ACTIONS(4480), - [anon_sym_in] = ACTIONS(4478), - [anon_sym_DOT_DOT] = ACTIONS(4480), - [anon_sym_QMARK_COLON] = ACTIONS(4480), - [anon_sym_AMP_AMP] = ACTIONS(4480), - [anon_sym_PIPE_PIPE] = ACTIONS(4480), - [anon_sym_else] = ACTIONS(4478), - [anon_sym_COLON_COLON] = ACTIONS(4480), - [anon_sym_PLUS_EQ] = ACTIONS(4480), - [anon_sym_DASH_EQ] = ACTIONS(4480), - [anon_sym_STAR_EQ] = ACTIONS(4480), - [anon_sym_SLASH_EQ] = ACTIONS(4480), - [anon_sym_PERCENT_EQ] = ACTIONS(4480), - [anon_sym_BANG_EQ] = ACTIONS(4478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4480), - [anon_sym_EQ_EQ] = ACTIONS(4478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4480), - [anon_sym_LT_EQ] = ACTIONS(4480), - [anon_sym_GT_EQ] = ACTIONS(4480), - [anon_sym_BANGin] = ACTIONS(4480), - [anon_sym_is] = ACTIONS(4478), - [anon_sym_BANGis] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_as_QMARK] = ACTIONS(4480), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_BANG_BANG] = ACTIONS(4480), - [anon_sym_suspend] = ACTIONS(4478), - [anon_sym_sealed] = ACTIONS(4478), - [anon_sym_annotation] = ACTIONS(4478), - [anon_sym_data] = ACTIONS(4478), - [anon_sym_inner] = ACTIONS(4478), - [anon_sym_value] = ACTIONS(4478), - [anon_sym_override] = ACTIONS(4478), - [anon_sym_lateinit] = ACTIONS(4478), - [anon_sym_public] = ACTIONS(4478), - [anon_sym_private] = ACTIONS(4478), - [anon_sym_internal] = ACTIONS(4478), - [anon_sym_protected] = ACTIONS(4478), - [anon_sym_tailrec] = ACTIONS(4478), - [anon_sym_operator] = ACTIONS(4478), - [anon_sym_infix] = ACTIONS(4478), - [anon_sym_inline] = ACTIONS(4478), - [anon_sym_external] = ACTIONS(4478), - [sym_property_modifier] = ACTIONS(4478), - [anon_sym_abstract] = ACTIONS(4478), - [anon_sym_final] = ACTIONS(4478), - [anon_sym_open] = ACTIONS(4478), - [anon_sym_vararg] = ACTIONS(4478), - [anon_sym_noinline] = ACTIONS(4478), - [anon_sym_crossinline] = ACTIONS(4478), - [anon_sym_expect] = ACTIONS(4478), - [anon_sym_actual] = ACTIONS(4478), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4480), - [sym__automatic_semicolon] = ACTIONS(4480), - [sym_safe_nav] = ACTIONS(4480), - [sym_multiline_comment] = ACTIONS(3), - }, - [3561] = { - [sym__alpha_identifier] = ACTIONS(4494), - [anon_sym_AT] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4496), - [anon_sym_as] = ACTIONS(4494), - [anon_sym_EQ] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(4496), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_COMMA] = ACTIONS(4496), - [anon_sym_LT] = ACTIONS(4494), - [anon_sym_GT] = ACTIONS(4494), - [anon_sym_where] = ACTIONS(4494), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_SEMI] = ACTIONS(4496), - [anon_sym_get] = ACTIONS(4494), - [anon_sym_set] = ACTIONS(4494), - [anon_sym_STAR] = ACTIONS(4494), - [sym_label] = ACTIONS(4496), - [anon_sym_in] = ACTIONS(4494), - [anon_sym_DOT_DOT] = ACTIONS(4496), - [anon_sym_QMARK_COLON] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4496), - [anon_sym_PIPE_PIPE] = ACTIONS(4496), - [anon_sym_else] = ACTIONS(4494), - [anon_sym_catch] = ACTIONS(4494), - [anon_sym_finally] = ACTIONS(4494), - [anon_sym_COLON_COLON] = ACTIONS(4496), - [anon_sym_PLUS_EQ] = ACTIONS(4496), - [anon_sym_DASH_EQ] = ACTIONS(4496), - [anon_sym_STAR_EQ] = ACTIONS(4496), - [anon_sym_SLASH_EQ] = ACTIONS(4496), - [anon_sym_PERCENT_EQ] = ACTIONS(4496), - [anon_sym_BANG_EQ] = ACTIONS(4494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), - [anon_sym_EQ_EQ] = ACTIONS(4494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), - [anon_sym_LT_EQ] = ACTIONS(4496), - [anon_sym_GT_EQ] = ACTIONS(4496), - [anon_sym_BANGin] = ACTIONS(4496), - [anon_sym_is] = ACTIONS(4494), - [anon_sym_BANGis] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4494), - [anon_sym_DASH] = ACTIONS(4494), - [anon_sym_SLASH] = ACTIONS(4494), - [anon_sym_PERCENT] = ACTIONS(4494), - [anon_sym_as_QMARK] = ACTIONS(4496), - [anon_sym_PLUS_PLUS] = ACTIONS(4496), - [anon_sym_DASH_DASH] = ACTIONS(4496), - [anon_sym_BANG_BANG] = ACTIONS(4496), - [anon_sym_suspend] = ACTIONS(4494), - [anon_sym_sealed] = ACTIONS(4494), - [anon_sym_annotation] = ACTIONS(4494), - [anon_sym_data] = ACTIONS(4494), - [anon_sym_inner] = ACTIONS(4494), - [anon_sym_value] = ACTIONS(4494), - [anon_sym_override] = ACTIONS(4494), - [anon_sym_lateinit] = ACTIONS(4494), - [anon_sym_public] = ACTIONS(4494), - [anon_sym_private] = ACTIONS(4494), - [anon_sym_internal] = ACTIONS(4494), - [anon_sym_protected] = ACTIONS(4494), - [anon_sym_tailrec] = ACTIONS(4494), - [anon_sym_operator] = ACTIONS(4494), - [anon_sym_infix] = ACTIONS(4494), - [anon_sym_inline] = ACTIONS(4494), - [anon_sym_external] = ACTIONS(4494), - [sym_property_modifier] = ACTIONS(4494), - [anon_sym_abstract] = ACTIONS(4494), - [anon_sym_final] = ACTIONS(4494), - [anon_sym_open] = ACTIONS(4494), - [anon_sym_vararg] = ACTIONS(4494), - [anon_sym_noinline] = ACTIONS(4494), - [anon_sym_crossinline] = ACTIONS(4494), - [anon_sym_expect] = ACTIONS(4494), - [anon_sym_actual] = ACTIONS(4494), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4496), - [sym__automatic_semicolon] = ACTIONS(4496), - [sym_safe_nav] = ACTIONS(4496), - [sym_multiline_comment] = ACTIONS(3), - }, - [3562] = { - [sym_type_constraints] = STATE(3786), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6772), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_RBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_DASH_GT] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - }, - [3563] = { - [sym_function_body] = STATE(3743), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3564] = { - [sym_type_constraints] = STATE(3659), - [sym_enum_class_body] = STATE(3777), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3857), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [3565] = { - [sym_type_constraints] = STATE(3733), - [sym_enum_class_body] = STATE(3748), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4476), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [3566] = { - [sym_class_body] = STATE(3831), - [sym_type_constraints] = STATE(3702), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5410), - [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(5416), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3864), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6916), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4173), + [anon_sym_fun] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_this] = ACTIONS(4173), + [anon_sym_super] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_when] = ACTIONS(4173), + [anon_sym_try] = ACTIONS(4173), + [anon_sym_throw] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4175), + [anon_sym_continue_AT] = ACTIONS(4175), + [anon_sym_break_AT] = ACTIONS(4175), + [anon_sym_this_AT] = ACTIONS(4175), + [anon_sym_super_AT] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4175), + [sym_integer_literal] = ACTIONS(4173), + [sym_hex_literal] = ACTIONS(4175), + [sym_bin_literal] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4173), + [anon_sym_false] = ACTIONS(4173), + [anon_sym_SQUOTE] = ACTIONS(4175), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4175), }, [3567] = { - [sym_type_constraints] = STATE(3648), - [sym_enum_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_RBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_RPAREN] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5201), + [sym_label] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_while] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_suspend] = ACTIONS(5199), + [anon_sym_sealed] = ACTIONS(5199), + [anon_sym_annotation] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_override] = ACTIONS(5199), + [anon_sym_lateinit] = ACTIONS(5199), + [anon_sym_public] = ACTIONS(5199), + [anon_sym_private] = ACTIONS(5199), + [anon_sym_internal] = ACTIONS(5199), + [anon_sym_protected] = ACTIONS(5199), + [anon_sym_tailrec] = ACTIONS(5199), + [anon_sym_operator] = ACTIONS(5199), + [anon_sym_infix] = ACTIONS(5199), + [anon_sym_inline] = ACTIONS(5199), + [anon_sym_external] = ACTIONS(5199), + [sym_property_modifier] = ACTIONS(5199), + [anon_sym_abstract] = ACTIONS(5199), + [anon_sym_final] = ACTIONS(5199), + [anon_sym_open] = ACTIONS(5199), + [anon_sym_vararg] = ACTIONS(5199), + [anon_sym_noinline] = ACTIONS(5199), + [anon_sym_crossinline] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), [sym_multiline_comment] = ACTIONS(3), }, [3568] = { - [sym_class_body] = STATE(3945), - [sym_type_constraints] = STATE(3647), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5410), - [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(5416), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(6918), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_typealias] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_interface] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4004), + [anon_sym_var] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3569] = { - [sym_type_constraints] = STATE(3623), - [sym_enum_class_body] = STATE(3945), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5420), - [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(5416), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6920), + [sym__alpha_identifier] = ACTIONS(6922), + [anon_sym_AT] = ACTIONS(6920), + [anon_sym_LBRACK] = ACTIONS(6920), + [anon_sym_package] = ACTIONS(6922), + [anon_sym_import] = ACTIONS(6922), + [anon_sym_typealias] = ACTIONS(6922), + [anon_sym_class] = ACTIONS(6922), + [anon_sym_interface] = ACTIONS(6922), + [anon_sym_enum] = ACTIONS(6922), + [anon_sym_LBRACE] = ACTIONS(6920), + [anon_sym_LPAREN] = ACTIONS(6920), + [anon_sym_val] = ACTIONS(6922), + [anon_sym_var] = ACTIONS(6922), + [anon_sym_object] = ACTIONS(6922), + [anon_sym_fun] = ACTIONS(6922), + [anon_sym_get] = ACTIONS(6922), + [anon_sym_set] = ACTIONS(6922), + [anon_sym_this] = ACTIONS(6922), + [anon_sym_super] = ACTIONS(6922), + [anon_sym_STAR] = ACTIONS(6920), + [sym_label] = ACTIONS(6922), + [anon_sym_for] = ACTIONS(6922), + [anon_sym_while] = ACTIONS(6922), + [anon_sym_do] = ACTIONS(6922), + [anon_sym_null] = ACTIONS(6922), + [anon_sym_if] = ACTIONS(6922), + [anon_sym_when] = ACTIONS(6922), + [anon_sym_try] = ACTIONS(6922), + [anon_sym_throw] = ACTIONS(6922), + [anon_sym_return] = ACTIONS(6922), + [anon_sym_continue] = ACTIONS(6922), + [anon_sym_break] = ACTIONS(6922), + [anon_sym_COLON_COLON] = ACTIONS(6920), + [anon_sym_PLUS] = ACTIONS(6922), + [anon_sym_DASH] = ACTIONS(6922), + [anon_sym_PLUS_PLUS] = ACTIONS(6920), + [anon_sym_DASH_DASH] = ACTIONS(6920), + [anon_sym_BANG] = ACTIONS(6920), + [anon_sym_suspend] = ACTIONS(6922), + [anon_sym_sealed] = ACTIONS(6922), + [anon_sym_annotation] = ACTIONS(6922), + [anon_sym_data] = ACTIONS(6922), + [anon_sym_inner] = ACTIONS(6922), + [anon_sym_value] = ACTIONS(6922), + [anon_sym_override] = ACTIONS(6922), + [anon_sym_lateinit] = ACTIONS(6922), + [anon_sym_public] = ACTIONS(6922), + [anon_sym_private] = ACTIONS(6922), + [anon_sym_internal] = ACTIONS(6922), + [anon_sym_protected] = ACTIONS(6922), + [anon_sym_tailrec] = ACTIONS(6922), + [anon_sym_operator] = ACTIONS(6922), + [anon_sym_infix] = ACTIONS(6922), + [anon_sym_inline] = ACTIONS(6922), + [anon_sym_external] = ACTIONS(6922), + [sym_property_modifier] = ACTIONS(6922), + [anon_sym_abstract] = ACTIONS(6922), + [anon_sym_final] = ACTIONS(6922), + [anon_sym_open] = ACTIONS(6922), + [anon_sym_vararg] = ACTIONS(6922), + [anon_sym_noinline] = ACTIONS(6922), + [anon_sym_crossinline] = ACTIONS(6922), + [anon_sym_expect] = ACTIONS(6922), + [anon_sym_actual] = ACTIONS(6922), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6920), + [anon_sym_continue_AT] = ACTIONS(6920), + [anon_sym_break_AT] = ACTIONS(6920), + [anon_sym_this_AT] = ACTIONS(6920), + [anon_sym_super_AT] = ACTIONS(6920), + [sym_real_literal] = ACTIONS(6920), + [sym_integer_literal] = ACTIONS(6922), + [sym_hex_literal] = ACTIONS(6920), + [sym_bin_literal] = ACTIONS(6920), + [anon_sym_true] = ACTIONS(6922), + [anon_sym_false] = ACTIONS(6922), + [anon_sym_SQUOTE] = ACTIONS(6920), + [sym__backtick_identifier] = ACTIONS(6920), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6920), }, [3570] = { - [sym_class_body] = STATE(3950), - [sym_type_constraints] = STATE(3610), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4510), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6924), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3571] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3572), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(6774), - [anon_sym_RPAREN] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4576), - [sym_label] = ACTIONS(4578), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_while] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_PLUS_EQ] = ACTIONS(4578), - [anon_sym_DASH_EQ] = ACTIONS(4578), - [anon_sym_STAR_EQ] = ACTIONS(4578), - [anon_sym_SLASH_EQ] = ACTIONS(4578), - [anon_sym_PERCENT_EQ] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4576), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_suspend] = ACTIONS(4576), - [anon_sym_sealed] = ACTIONS(4576), - [anon_sym_annotation] = ACTIONS(4576), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_override] = ACTIONS(4576), - [anon_sym_lateinit] = ACTIONS(4576), - [anon_sym_public] = ACTIONS(4576), - [anon_sym_private] = ACTIONS(4576), - [anon_sym_internal] = ACTIONS(4576), - [anon_sym_protected] = ACTIONS(4576), - [anon_sym_tailrec] = ACTIONS(4576), - [anon_sym_operator] = ACTIONS(4576), - [anon_sym_infix] = ACTIONS(4576), - [anon_sym_inline] = ACTIONS(4576), - [anon_sym_external] = ACTIONS(4576), - [sym_property_modifier] = ACTIONS(4576), - [anon_sym_abstract] = ACTIONS(4576), - [anon_sym_final] = ACTIONS(4576), - [anon_sym_open] = ACTIONS(4576), - [anon_sym_vararg] = ACTIONS(4576), - [anon_sym_noinline] = ACTIONS(4576), - [anon_sym_crossinline] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6928), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3572] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3145), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(6774), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [sym_type_constraints] = STATE(3937), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(6932), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3573] = { - [sym_class_body] = STATE(3880), - [sym_type_constraints] = STATE(3695), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3574] = { - [sym_type_constraints] = STATE(3745), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym_type_constraints] = STATE(3913), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3575] = { - [sym_type_constraints] = STATE(3640), - [sym_enum_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(6938), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [3576] = { - [sym_class_body] = STATE(3908), - [sym_type_constraints] = STATE(3638), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4492), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3577] = { - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3578] = { - [sym_type_constraints] = STATE(3738), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - }, - [3579] = { - [sym_function_body] = STATE(3856), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - }, - [3580] = { - [sym_class_body] = STATE(3820), - [sym_type_constraints] = STATE(3667), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - }, - [3581] = { - [sym_type_constraints] = STATE(3737), - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), + [sym_type_constraints] = STATE(3905), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(6940), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3579] = { + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3580] = { + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6944), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3581] = { + [sym_type_constraints] = STATE(3897), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(6946), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3582] = { - [sym_type_constraints] = STATE(3775), - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [3583] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_constructor] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3818), - [sym_label] = ACTIONS(3823), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_safe_nav] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_DASH_GT] = ACTIONS(4944), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_while] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_suspend] = ACTIONS(4942), + [anon_sym_sealed] = ACTIONS(4942), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_lateinit] = ACTIONS(4942), + [anon_sym_public] = ACTIONS(4942), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_internal] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_tailrec] = ACTIONS(4942), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_infix] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym_external] = ACTIONS(4942), + [sym_property_modifier] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_open] = ACTIONS(4942), + [anon_sym_vararg] = ACTIONS(4942), + [anon_sym_noinline] = ACTIONS(4942), + [anon_sym_crossinline] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), [sym_multiline_comment] = ACTIONS(3), }, [3584] = { - [sym_type_constraints] = STATE(3783), - [sym_function_body] = STATE(3509), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6776), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_RBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [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(5194), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [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_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(4124), - [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__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_RBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [anon_sym_DASH_GT] = ACTIONS(4940), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_while] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_suspend] = ACTIONS(4938), + [anon_sym_sealed] = ACTIONS(4938), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_lateinit] = ACTIONS(4938), + [anon_sym_public] = ACTIONS(4938), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_internal] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_tailrec] = ACTIONS(4938), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_infix] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym_external] = ACTIONS(4938), + [sym_property_modifier] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_open] = ACTIONS(4938), + [anon_sym_vararg] = ACTIONS(4938), + [anon_sym_noinline] = ACTIONS(4938), + [anon_sym_crossinline] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), [sym_multiline_comment] = ACTIONS(3), }, [3585] = { - [sym__alpha_identifier] = ACTIONS(4498), - [anon_sym_AT] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_as] = ACTIONS(4498), - [anon_sym_EQ] = ACTIONS(4498), - [anon_sym_LBRACE] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4500), - [anon_sym_LPAREN] = ACTIONS(4500), - [anon_sym_COMMA] = ACTIONS(4500), - [anon_sym_LT] = ACTIONS(4498), - [anon_sym_GT] = ACTIONS(4498), - [anon_sym_where] = ACTIONS(4498), - [anon_sym_DOT] = ACTIONS(4498), - [anon_sym_SEMI] = ACTIONS(4500), - [anon_sym_get] = ACTIONS(4498), - [anon_sym_set] = ACTIONS(4498), - [anon_sym_STAR] = ACTIONS(4498), - [sym_label] = ACTIONS(4500), - [anon_sym_in] = ACTIONS(4498), - [anon_sym_DOT_DOT] = ACTIONS(4500), - [anon_sym_QMARK_COLON] = ACTIONS(4500), - [anon_sym_AMP_AMP] = ACTIONS(4500), - [anon_sym_PIPE_PIPE] = ACTIONS(4500), - [anon_sym_else] = ACTIONS(4498), - [anon_sym_catch] = ACTIONS(4498), - [anon_sym_finally] = ACTIONS(4498), - [anon_sym_COLON_COLON] = ACTIONS(4500), - [anon_sym_PLUS_EQ] = ACTIONS(4500), - [anon_sym_DASH_EQ] = ACTIONS(4500), - [anon_sym_STAR_EQ] = ACTIONS(4500), - [anon_sym_SLASH_EQ] = ACTIONS(4500), - [anon_sym_PERCENT_EQ] = ACTIONS(4500), - [anon_sym_BANG_EQ] = ACTIONS(4498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), - [anon_sym_EQ_EQ] = ACTIONS(4498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), - [anon_sym_LT_EQ] = ACTIONS(4500), - [anon_sym_GT_EQ] = ACTIONS(4500), - [anon_sym_BANGin] = ACTIONS(4500), - [anon_sym_is] = ACTIONS(4498), - [anon_sym_BANGis] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4498), - [anon_sym_SLASH] = ACTIONS(4498), - [anon_sym_PERCENT] = ACTIONS(4498), - [anon_sym_as_QMARK] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_BANG_BANG] = ACTIONS(4500), - [anon_sym_suspend] = ACTIONS(4498), - [anon_sym_sealed] = ACTIONS(4498), - [anon_sym_annotation] = ACTIONS(4498), - [anon_sym_data] = ACTIONS(4498), - [anon_sym_inner] = ACTIONS(4498), - [anon_sym_value] = ACTIONS(4498), - [anon_sym_override] = ACTIONS(4498), - [anon_sym_lateinit] = ACTIONS(4498), - [anon_sym_public] = ACTIONS(4498), - [anon_sym_private] = ACTIONS(4498), - [anon_sym_internal] = ACTIONS(4498), - [anon_sym_protected] = ACTIONS(4498), - [anon_sym_tailrec] = ACTIONS(4498), - [anon_sym_operator] = ACTIONS(4498), - [anon_sym_infix] = ACTIONS(4498), - [anon_sym_inline] = ACTIONS(4498), - [anon_sym_external] = ACTIONS(4498), - [sym_property_modifier] = ACTIONS(4498), - [anon_sym_abstract] = ACTIONS(4498), - [anon_sym_final] = ACTIONS(4498), - [anon_sym_open] = ACTIONS(4498), - [anon_sym_vararg] = ACTIONS(4498), - [anon_sym_noinline] = ACTIONS(4498), - [anon_sym_crossinline] = ACTIONS(4498), - [anon_sym_expect] = ACTIONS(4498), - [anon_sym_actual] = ACTIONS(4498), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4500), - [sym__automatic_semicolon] = ACTIONS(4500), - [sym_safe_nav] = ACTIONS(4500), + [sym__alpha_identifier] = ACTIONS(4934), + [anon_sym_AT] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_RBRACK] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_where] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_get] = ACTIONS(4934), + [anon_sym_set] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_DASH_GT] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4936), + [anon_sym_QMARK_COLON] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym_PLUS_EQ] = ACTIONS(4936), + [anon_sym_DASH_EQ] = ACTIONS(4936), + [anon_sym_STAR_EQ] = ACTIONS(4936), + [anon_sym_SLASH_EQ] = ACTIONS(4936), + [anon_sym_PERCENT_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4936), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_BANGin] = ACTIONS(4936), + [anon_sym_is] = ACTIONS(4934), + [anon_sym_BANGis] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_as_QMARK] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4936), + [anon_sym_suspend] = ACTIONS(4934), + [anon_sym_sealed] = ACTIONS(4934), + [anon_sym_annotation] = ACTIONS(4934), + [anon_sym_data] = ACTIONS(4934), + [anon_sym_inner] = ACTIONS(4934), + [anon_sym_value] = ACTIONS(4934), + [anon_sym_override] = ACTIONS(4934), + [anon_sym_lateinit] = ACTIONS(4934), + [anon_sym_public] = ACTIONS(4934), + [anon_sym_private] = ACTIONS(4934), + [anon_sym_internal] = ACTIONS(4934), + [anon_sym_protected] = ACTIONS(4934), + [anon_sym_tailrec] = ACTIONS(4934), + [anon_sym_operator] = ACTIONS(4934), + [anon_sym_infix] = ACTIONS(4934), + [anon_sym_inline] = ACTIONS(4934), + [anon_sym_external] = ACTIONS(4934), + [sym_property_modifier] = ACTIONS(4934), + [anon_sym_abstract] = ACTIONS(4934), + [anon_sym_final] = ACTIONS(4934), + [anon_sym_open] = ACTIONS(4934), + [anon_sym_vararg] = ACTIONS(4934), + [anon_sym_noinline] = ACTIONS(4934), + [anon_sym_crossinline] = ACTIONS(4934), + [anon_sym_expect] = ACTIONS(4934), + [anon_sym_actual] = ACTIONS(4934), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4936), + [sym_safe_nav] = ACTIONS(4936), [sym_multiline_comment] = ACTIONS(3), }, [3586] = { - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(6948), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [3587] = { - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [anon_sym_DASH_GT] = ACTIONS(4932), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_suspend] = ACTIONS(4930), + [anon_sym_sealed] = ACTIONS(4930), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_lateinit] = ACTIONS(4930), + [anon_sym_public] = ACTIONS(4930), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_internal] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_tailrec] = ACTIONS(4930), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_infix] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym_external] = ACTIONS(4930), + [sym_property_modifier] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_open] = ACTIONS(4930), + [anon_sym_vararg] = ACTIONS(4930), + [anon_sym_noinline] = ACTIONS(4930), + [anon_sym_crossinline] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), [sym_multiline_comment] = ACTIONS(3), }, [3588] = { - [sym_type_constraints] = STATE(3669), - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5420), - [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(5416), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_RBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_RPAREN] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [anon_sym_DASH_GT] = ACTIONS(4800), + [sym_label] = ACTIONS(4800), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_while] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), [sym_multiline_comment] = ACTIONS(3), }, [3589] = { - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, [3590] = { - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_RBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4844), + [sym_label] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_while] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_suspend] = ACTIONS(4842), + [anon_sym_sealed] = ACTIONS(4842), + [anon_sym_annotation] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_override] = ACTIONS(4842), + [anon_sym_lateinit] = ACTIONS(4842), + [anon_sym_public] = ACTIONS(4842), + [anon_sym_private] = ACTIONS(4842), + [anon_sym_internal] = ACTIONS(4842), + [anon_sym_protected] = ACTIONS(4842), + [anon_sym_tailrec] = ACTIONS(4842), + [anon_sym_operator] = ACTIONS(4842), + [anon_sym_infix] = ACTIONS(4842), + [anon_sym_inline] = ACTIONS(4842), + [anon_sym_external] = ACTIONS(4842), + [sym_property_modifier] = ACTIONS(4842), + [anon_sym_abstract] = ACTIONS(4842), + [anon_sym_final] = ACTIONS(4842), + [anon_sym_open] = ACTIONS(4842), + [anon_sym_vararg] = ACTIONS(4842), + [anon_sym_noinline] = ACTIONS(4842), + [anon_sym_crossinline] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), [sym_multiline_comment] = ACTIONS(3), }, [3591] = { - [sym_class_body] = STATE(3760), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(6778), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_get] = ACTIONS(4926), + [anon_sym_set] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_DASH_GT] = ACTIONS(4928), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_QMARK_COLON] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_BANGin] = ACTIONS(4928), + [anon_sym_is] = ACTIONS(4926), + [anon_sym_BANGis] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_as_QMARK] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4928), + [anon_sym_suspend] = ACTIONS(4926), + [anon_sym_sealed] = ACTIONS(4926), + [anon_sym_annotation] = ACTIONS(4926), + [anon_sym_data] = ACTIONS(4926), + [anon_sym_inner] = ACTIONS(4926), + [anon_sym_value] = ACTIONS(4926), + [anon_sym_override] = ACTIONS(4926), + [anon_sym_lateinit] = ACTIONS(4926), + [anon_sym_public] = ACTIONS(4926), + [anon_sym_private] = ACTIONS(4926), + [anon_sym_internal] = ACTIONS(4926), + [anon_sym_protected] = ACTIONS(4926), + [anon_sym_tailrec] = ACTIONS(4926), + [anon_sym_operator] = ACTIONS(4926), + [anon_sym_infix] = ACTIONS(4926), + [anon_sym_inline] = ACTIONS(4926), + [anon_sym_external] = ACTIONS(4926), + [sym_property_modifier] = ACTIONS(4926), + [anon_sym_abstract] = ACTIONS(4926), + [anon_sym_final] = ACTIONS(4926), + [anon_sym_open] = ACTIONS(4926), + [anon_sym_vararg] = ACTIONS(4926), + [anon_sym_noinline] = ACTIONS(4926), + [anon_sym_crossinline] = ACTIONS(4926), + [anon_sym_expect] = ACTIONS(4926), + [anon_sym_actual] = ACTIONS(4926), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4928), + [sym_safe_nav] = ACTIONS(4928), [sym_multiline_comment] = ACTIONS(3), }, [3592] = { - [sym_type_constraints] = STATE(3789), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6780), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_RBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_DASH_GT] = ACTIONS(4912), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_suspend] = ACTIONS(4910), + [anon_sym_sealed] = ACTIONS(4910), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_lateinit] = ACTIONS(4910), + [anon_sym_public] = ACTIONS(4910), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_internal] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_tailrec] = ACTIONS(4910), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_infix] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym_external] = ACTIONS(4910), + [sym_property_modifier] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_open] = ACTIONS(4910), + [anon_sym_vararg] = ACTIONS(4910), + [anon_sym_noinline] = ACTIONS(4910), + [anon_sym_crossinline] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), [sym_multiline_comment] = ACTIONS(3), }, [3593] = { - [sym_class_body] = STATE(3852), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(6782), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_RBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_RPAREN] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_DASH_GT] = ACTIONS(4890), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_while] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), }, [3594] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6562), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_RBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_RPAREN] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4882), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_while] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), [sym_multiline_comment] = ACTIONS(3), }, [3595] = { - [sym_type_constraints] = STATE(3791), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6784), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym_type_constraints] = STATE(3896), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6950), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_PLUS_EQ] = ACTIONS(4175), + [anon_sym_DASH_EQ] = ACTIONS(4175), + [anon_sym_STAR_EQ] = ACTIONS(4175), + [anon_sym_SLASH_EQ] = ACTIONS(4175), + [anon_sym_PERCENT_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, [3596] = { - [sym_type_constraints] = STATE(3948), - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_RBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [anon_sym_DASH_GT] = ACTIONS(4872), + [sym_label] = ACTIONS(4872), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_while] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_suspend] = ACTIONS(4870), + [anon_sym_sealed] = ACTIONS(4870), + [anon_sym_annotation] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_override] = ACTIONS(4870), + [anon_sym_lateinit] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_internal] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_tailrec] = ACTIONS(4870), + [anon_sym_operator] = ACTIONS(4870), + [anon_sym_infix] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_external] = ACTIONS(4870), + [sym_property_modifier] = ACTIONS(4870), + [anon_sym_abstract] = ACTIONS(4870), + [anon_sym_final] = ACTIONS(4870), + [anon_sym_open] = ACTIONS(4870), + [anon_sym_vararg] = ACTIONS(4870), + [anon_sym_noinline] = ACTIONS(4870), + [anon_sym_crossinline] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), }, [3597] = { - [sym__alpha_identifier] = ACTIONS(4645), - [anon_sym_AT] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4647), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_RBRACE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4645), - [anon_sym_GT] = ACTIONS(4645), - [anon_sym_where] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_get] = ACTIONS(4645), - [anon_sym_set] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4645), - [sym_label] = ACTIONS(4647), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4647), - [anon_sym_QMARK_COLON] = ACTIONS(4647), - [anon_sym_AMP_AMP] = ACTIONS(4647), - [anon_sym_PIPE_PIPE] = ACTIONS(4647), - [anon_sym_else] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4647), - [anon_sym_PLUS_EQ] = ACTIONS(4647), - [anon_sym_DASH_EQ] = ACTIONS(4647), - [anon_sym_STAR_EQ] = ACTIONS(4647), - [anon_sym_SLASH_EQ] = ACTIONS(4647), - [anon_sym_PERCENT_EQ] = ACTIONS(4647), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4647), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4647), - [anon_sym_LT_EQ] = ACTIONS(4647), - [anon_sym_GT_EQ] = ACTIONS(4647), - [anon_sym_BANGin] = ACTIONS(4647), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_BANGis] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4645), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_as_QMARK] = ACTIONS(4647), - [anon_sym_PLUS_PLUS] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4647), - [anon_sym_BANG_BANG] = ACTIONS(4647), - [anon_sym_suspend] = ACTIONS(4645), - [anon_sym_sealed] = ACTIONS(4645), - [anon_sym_annotation] = ACTIONS(4645), - [anon_sym_data] = ACTIONS(4645), - [anon_sym_inner] = ACTIONS(4645), - [anon_sym_value] = ACTIONS(4645), - [anon_sym_override] = ACTIONS(4645), - [anon_sym_lateinit] = ACTIONS(4645), - [anon_sym_public] = ACTIONS(4645), - [anon_sym_private] = ACTIONS(4645), - [anon_sym_internal] = ACTIONS(4645), - [anon_sym_protected] = ACTIONS(4645), - [anon_sym_tailrec] = ACTIONS(4645), - [anon_sym_operator] = ACTIONS(4645), - [anon_sym_infix] = ACTIONS(4645), - [anon_sym_inline] = ACTIONS(4645), - [anon_sym_external] = ACTIONS(4645), - [sym_property_modifier] = ACTIONS(4645), - [anon_sym_abstract] = ACTIONS(4645), - [anon_sym_final] = ACTIONS(4645), - [anon_sym_open] = ACTIONS(4645), - [anon_sym_vararg] = ACTIONS(4645), - [anon_sym_noinline] = ACTIONS(4645), - [anon_sym_crossinline] = ACTIONS(4645), - [anon_sym_expect] = ACTIONS(4645), - [anon_sym_actual] = ACTIONS(4645), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4647), - [sym__automatic_semicolon] = ACTIONS(4647), - [sym_safe_nav] = ACTIONS(4647), + [aux_sym_nullable_type_repeat1] = STATE(3556), + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_as] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_by] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_where] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [sym__quest] = ACTIONS(6952), + [anon_sym_STAR] = ACTIONS(4247), + [sym_label] = ACTIONS(4249), + [anon_sym_in] = ACTIONS(4247), + [anon_sym_DOT_DOT] = ACTIONS(4249), + [anon_sym_QMARK_COLON] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_else] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(4249), + [anon_sym_DASH_EQ] = ACTIONS(4249), + [anon_sym_STAR_EQ] = ACTIONS(4249), + [anon_sym_SLASH_EQ] = ACTIONS(4249), + [anon_sym_PERCENT_EQ] = ACTIONS(4249), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4249), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4249), + [anon_sym_LT_EQ] = ACTIONS(4249), + [anon_sym_GT_EQ] = ACTIONS(4249), + [anon_sym_BANGin] = ACTIONS(4249), + [anon_sym_is] = ACTIONS(4247), + [anon_sym_BANGis] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_as_QMARK] = ACTIONS(4249), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_BANG_BANG] = ACTIONS(4249), + [anon_sym_suspend] = ACTIONS(4247), + [anon_sym_sealed] = ACTIONS(4247), + [anon_sym_annotation] = ACTIONS(4247), + [anon_sym_data] = ACTIONS(4247), + [anon_sym_inner] = ACTIONS(4247), + [anon_sym_value] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_lateinit] = ACTIONS(4247), + [anon_sym_public] = ACTIONS(4247), + [anon_sym_private] = ACTIONS(4247), + [anon_sym_internal] = ACTIONS(4247), + [anon_sym_protected] = ACTIONS(4247), + [anon_sym_tailrec] = ACTIONS(4247), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_infix] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym_external] = ACTIONS(4247), + [sym_property_modifier] = ACTIONS(4247), + [anon_sym_abstract] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_open] = ACTIONS(4247), + [anon_sym_vararg] = ACTIONS(4247), + [anon_sym_noinline] = ACTIONS(4247), + [anon_sym_crossinline] = ACTIONS(4247), + [anon_sym_expect] = ACTIONS(4247), + [anon_sym_actual] = ACTIONS(4247), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4249), + [sym__automatic_semicolon] = ACTIONS(4249), + [sym_safe_nav] = ACTIONS(4249), [sym_multiline_comment] = ACTIONS(3), }, [3598] = { - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_RBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_suspend] = ACTIONS(4838), + [anon_sym_sealed] = ACTIONS(4838), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_override] = ACTIONS(4838), + [anon_sym_lateinit] = ACTIONS(4838), + [anon_sym_public] = ACTIONS(4838), + [anon_sym_private] = ACTIONS(4838), + [anon_sym_internal] = ACTIONS(4838), + [anon_sym_protected] = ACTIONS(4838), + [anon_sym_tailrec] = ACTIONS(4838), + [anon_sym_operator] = ACTIONS(4838), + [anon_sym_infix] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_external] = ACTIONS(4838), + [sym_property_modifier] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_final] = ACTIONS(4838), + [anon_sym_open] = ACTIONS(4838), + [anon_sym_vararg] = ACTIONS(4838), + [anon_sym_noinline] = ACTIONS(4838), + [anon_sym_crossinline] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), [sym_multiline_comment] = ACTIONS(3), }, [3599] = { - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [3600] = { - [sym_class_body] = STATE(3890), - [sym__alpha_identifier] = ACTIONS(4562), - [anon_sym_AT] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_get] = ACTIONS(4562), - [anon_sym_set] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [sym_label] = ACTIONS(4564), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_QMARK_COLON] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [anon_sym_else] = ACTIONS(4562), - [anon_sym_COLON_COLON] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_BANGin] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_BANGis] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_as_QMARK] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_BANG_BANG] = ACTIONS(4564), - [anon_sym_suspend] = ACTIONS(4562), - [anon_sym_sealed] = ACTIONS(4562), - [anon_sym_annotation] = ACTIONS(4562), - [anon_sym_data] = ACTIONS(4562), - [anon_sym_inner] = ACTIONS(4562), - [anon_sym_value] = ACTIONS(4562), - [anon_sym_override] = ACTIONS(4562), - [anon_sym_lateinit] = ACTIONS(4562), - [anon_sym_public] = ACTIONS(4562), - [anon_sym_private] = ACTIONS(4562), - [anon_sym_internal] = ACTIONS(4562), - [anon_sym_protected] = ACTIONS(4562), - [anon_sym_tailrec] = ACTIONS(4562), - [anon_sym_operator] = ACTIONS(4562), - [anon_sym_infix] = ACTIONS(4562), - [anon_sym_inline] = ACTIONS(4562), - [anon_sym_external] = ACTIONS(4562), - [sym_property_modifier] = ACTIONS(4562), - [anon_sym_abstract] = ACTIONS(4562), - [anon_sym_final] = ACTIONS(4562), - [anon_sym_open] = ACTIONS(4562), - [anon_sym_vararg] = ACTIONS(4562), - [anon_sym_noinline] = ACTIONS(4562), - [anon_sym_crossinline] = ACTIONS(4562), - [anon_sym_expect] = ACTIONS(4562), - [anon_sym_actual] = ACTIONS(4562), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4564), - [sym__automatic_semicolon] = ACTIONS(4564), - [sym_safe_nav] = ACTIONS(4564), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(3344), + [anon_sym_sealed] = ACTIONS(3344), + [anon_sym_annotation] = ACTIONS(3344), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_lateinit] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_internal] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_tailrec] = ACTIONS(3344), + [anon_sym_operator] = ACTIONS(3344), + [anon_sym_infix] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_external] = ACTIONS(3344), + [sym_property_modifier] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_vararg] = ACTIONS(3344), + [anon_sym_noinline] = ACTIONS(3344), + [anon_sym_crossinline] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, [3601] = { - [sym_function_body] = STATE(3291), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), [sym_multiline_comment] = ACTIONS(3), }, [3602] = { - [sym_function_body] = STATE(3762), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6786), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4284), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3603] = { - [sym_type_constraints] = STATE(3958), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(3115), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), + [sym_multiline_comment] = ACTIONS(3), }, [3604] = { - [sym__alpha_identifier] = ACTIONS(4717), - [anon_sym_AT] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4717), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4717), - [anon_sym_EQ] = ACTIONS(4717), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4717), - [anon_sym_GT] = ACTIONS(4717), - [anon_sym_where] = ACTIONS(4717), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_get] = ACTIONS(4717), - [anon_sym_set] = ACTIONS(4717), - [anon_sym_STAR] = ACTIONS(4717), - [sym_label] = ACTIONS(4719), - [anon_sym_in] = ACTIONS(4717), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_QMARK_COLON] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_else] = ACTIONS(4717), - [anon_sym_COLON_COLON] = ACTIONS(4719), - [anon_sym_PLUS_EQ] = ACTIONS(4719), - [anon_sym_DASH_EQ] = ACTIONS(4719), - [anon_sym_STAR_EQ] = ACTIONS(4719), - [anon_sym_SLASH_EQ] = ACTIONS(4719), - [anon_sym_PERCENT_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_BANGin] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4717), - [anon_sym_BANGis] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4717), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_SLASH] = ACTIONS(4717), - [anon_sym_PERCENT] = ACTIONS(4717), - [anon_sym_as_QMARK] = ACTIONS(4719), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_BANG_BANG] = ACTIONS(4719), - [anon_sym_suspend] = ACTIONS(4717), - [anon_sym_sealed] = ACTIONS(4717), - [anon_sym_annotation] = ACTIONS(4717), - [anon_sym_data] = ACTIONS(4717), - [anon_sym_inner] = ACTIONS(4717), - [anon_sym_value] = ACTIONS(4717), - [anon_sym_override] = ACTIONS(4717), - [anon_sym_lateinit] = ACTIONS(4717), - [anon_sym_public] = ACTIONS(4717), - [anon_sym_private] = ACTIONS(4717), - [anon_sym_internal] = ACTIONS(4717), - [anon_sym_protected] = ACTIONS(4717), - [anon_sym_tailrec] = ACTIONS(4717), - [anon_sym_operator] = ACTIONS(4717), - [anon_sym_infix] = ACTIONS(4717), - [anon_sym_inline] = ACTIONS(4717), - [anon_sym_external] = ACTIONS(4717), - [sym_property_modifier] = ACTIONS(4717), - [anon_sym_abstract] = ACTIONS(4717), - [anon_sym_final] = ACTIONS(4717), - [anon_sym_open] = ACTIONS(4717), - [anon_sym_vararg] = ACTIONS(4717), - [anon_sym_noinline] = ACTIONS(4717), - [anon_sym_crossinline] = ACTIONS(4717), - [anon_sym_expect] = ACTIONS(4717), - [anon_sym_actual] = ACTIONS(4717), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4719), - [sym__automatic_semicolon] = ACTIONS(4719), - [sym_safe_nav] = ACTIONS(4719), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [3605] = { - [ts_builtin_sym_end] = ACTIONS(6788), - [sym__alpha_identifier] = ACTIONS(6790), - [anon_sym_AT] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6788), - [anon_sym_package] = ACTIONS(6790), - [anon_sym_import] = ACTIONS(6790), - [anon_sym_typealias] = ACTIONS(6790), - [anon_sym_class] = ACTIONS(6790), - [anon_sym_interface] = ACTIONS(6790), - [anon_sym_enum] = ACTIONS(6790), - [anon_sym_LBRACE] = ACTIONS(6788), - [anon_sym_LPAREN] = ACTIONS(6788), - [anon_sym_val] = ACTIONS(6790), - [anon_sym_var] = ACTIONS(6790), - [anon_sym_object] = ACTIONS(6790), - [anon_sym_fun] = ACTIONS(6790), - [anon_sym_get] = ACTIONS(6790), - [anon_sym_set] = ACTIONS(6790), - [anon_sym_this] = ACTIONS(6790), - [anon_sym_super] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6788), - [sym_label] = ACTIONS(6790), - [anon_sym_for] = ACTIONS(6790), - [anon_sym_while] = ACTIONS(6790), - [anon_sym_do] = ACTIONS(6790), - [anon_sym_null] = ACTIONS(6790), - [anon_sym_if] = ACTIONS(6790), - [anon_sym_when] = ACTIONS(6790), - [anon_sym_try] = ACTIONS(6790), - [anon_sym_throw] = ACTIONS(6790), - [anon_sym_return] = ACTIONS(6790), - [anon_sym_continue] = ACTIONS(6790), - [anon_sym_break] = ACTIONS(6790), - [anon_sym_COLON_COLON] = ACTIONS(6788), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_BANG] = ACTIONS(6788), - [anon_sym_suspend] = ACTIONS(6790), - [anon_sym_sealed] = ACTIONS(6790), - [anon_sym_annotation] = ACTIONS(6790), - [anon_sym_data] = ACTIONS(6790), - [anon_sym_inner] = ACTIONS(6790), - [anon_sym_value] = ACTIONS(6790), - [anon_sym_override] = ACTIONS(6790), - [anon_sym_lateinit] = ACTIONS(6790), - [anon_sym_public] = ACTIONS(6790), - [anon_sym_private] = ACTIONS(6790), - [anon_sym_internal] = ACTIONS(6790), - [anon_sym_protected] = ACTIONS(6790), - [anon_sym_tailrec] = ACTIONS(6790), - [anon_sym_operator] = ACTIONS(6790), - [anon_sym_infix] = ACTIONS(6790), - [anon_sym_inline] = ACTIONS(6790), - [anon_sym_external] = ACTIONS(6790), - [sym_property_modifier] = ACTIONS(6790), - [anon_sym_abstract] = ACTIONS(6790), - [anon_sym_final] = ACTIONS(6790), - [anon_sym_open] = ACTIONS(6790), - [anon_sym_vararg] = ACTIONS(6790), - [anon_sym_noinline] = ACTIONS(6790), - [anon_sym_crossinline] = ACTIONS(6790), - [anon_sym_expect] = ACTIONS(6790), - [anon_sym_actual] = ACTIONS(6790), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6788), - [anon_sym_continue_AT] = ACTIONS(6788), - [anon_sym_break_AT] = ACTIONS(6788), - [sym_real_literal] = ACTIONS(6788), - [sym_integer_literal] = ACTIONS(6790), - [sym_hex_literal] = ACTIONS(6788), - [sym_bin_literal] = ACTIONS(6788), - [anon_sym_true] = ACTIONS(6790), - [anon_sym_false] = ACTIONS(6790), - [anon_sym_SQUOTE] = ACTIONS(6788), - [sym__backtick_identifier] = ACTIONS(6788), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6788), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), }, [3606] = { - [sym_type_constraints] = STATE(3956), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_object] = ACTIONS(4722), + [anon_sym_fun] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4724), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), }, [3607] = { - [sym_type_constraints] = STATE(3949), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), }, [3608] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_as] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_by] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [sym_label] = ACTIONS(4687), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_DOT_DOT] = ACTIONS(4687), - [anon_sym_QMARK_COLON] = ACTIONS(4687), - [anon_sym_AMP_AMP] = ACTIONS(4687), - [anon_sym_PIPE_PIPE] = ACTIONS(4687), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_BANG_EQ] = ACTIONS(4685), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4687), - [anon_sym_EQ_EQ] = ACTIONS(4685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4687), - [anon_sym_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_EQ] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_as_QMARK] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG_BANG] = ACTIONS(4687), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4687), - [sym__automatic_semicolon] = ACTIONS(4687), - [sym_safe_nav] = ACTIONS(4687), + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(3832), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3609] = { - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_value_arguments] = STATE(3993), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6954), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [3610] = { - [sym_class_body] = STATE(3848), - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [sym_label] = ACTIONS(4723), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_suspend] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_annotation] = ACTIONS(4721), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_lateinit] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_tailrec] = ACTIONS(4721), - [anon_sym_operator] = ACTIONS(4721), - [anon_sym_infix] = ACTIONS(4721), - [anon_sym_inline] = ACTIONS(4721), - [anon_sym_external] = ACTIONS(4721), - [sym_property_modifier] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_final] = ACTIONS(4721), - [anon_sym_open] = ACTIONS(4721), - [anon_sym_vararg] = ACTIONS(4721), - [anon_sym_noinline] = ACTIONS(4721), - [anon_sym_crossinline] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4723), - [sym__automatic_semicolon] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), + [sym_class_body] = STATE(3833), + [sym_type_constraints] = STATE(3822), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), [sym_multiline_comment] = ACTIONS(3), }, [3611] = { - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_catch] = ACTIONS(4477), + [anon_sym_finally] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, [3612] = { - [sym_type_constraints] = STATE(3932), - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(5022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, [3613] = { - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [3614] = { - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_type_constraints] = STATE(3782), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3615] = { - [sym_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [3616] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6792), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), }, [3617] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(4662), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), }, [3618] = { - [sym__alpha_identifier] = ACTIONS(4669), - [anon_sym_AT] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_where] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4671), - [anon_sym_get] = ACTIONS(4669), - [anon_sym_set] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [sym_label] = ACTIONS(4671), - [anon_sym_in] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4671), - [anon_sym_QMARK_COLON] = ACTIONS(4671), - [anon_sym_AMP_AMP] = ACTIONS(4671), - [anon_sym_PIPE_PIPE] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4669), - [anon_sym_COLON_COLON] = ACTIONS(4671), - [anon_sym_PLUS_EQ] = ACTIONS(4671), - [anon_sym_DASH_EQ] = ACTIONS(4671), - [anon_sym_STAR_EQ] = ACTIONS(4671), - [anon_sym_SLASH_EQ] = ACTIONS(4671), - [anon_sym_PERCENT_EQ] = ACTIONS(4671), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4671), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4671), - [anon_sym_LT_EQ] = ACTIONS(4671), - [anon_sym_GT_EQ] = ACTIONS(4671), - [anon_sym_BANGin] = ACTIONS(4671), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_BANGis] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_as_QMARK] = ACTIONS(4671), - [anon_sym_PLUS_PLUS] = ACTIONS(4671), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_BANG_BANG] = ACTIONS(4671), - [anon_sym_suspend] = ACTIONS(4669), - [anon_sym_sealed] = ACTIONS(4669), - [anon_sym_annotation] = ACTIONS(4669), - [anon_sym_data] = ACTIONS(4669), - [anon_sym_inner] = ACTIONS(4669), - [anon_sym_value] = ACTIONS(4669), - [anon_sym_override] = ACTIONS(4669), - [anon_sym_lateinit] = ACTIONS(4669), - [anon_sym_public] = ACTIONS(4669), - [anon_sym_private] = ACTIONS(4669), - [anon_sym_internal] = ACTIONS(4669), - [anon_sym_protected] = ACTIONS(4669), - [anon_sym_tailrec] = ACTIONS(4669), - [anon_sym_operator] = ACTIONS(4669), - [anon_sym_infix] = ACTIONS(4669), - [anon_sym_inline] = ACTIONS(4669), - [anon_sym_external] = ACTIONS(4669), - [sym_property_modifier] = ACTIONS(4669), - [anon_sym_abstract] = ACTIONS(4669), - [anon_sym_final] = ACTIONS(4669), - [anon_sym_open] = ACTIONS(4669), - [anon_sym_vararg] = ACTIONS(4669), - [anon_sym_noinline] = ACTIONS(4669), - [anon_sym_crossinline] = ACTIONS(4669), - [anon_sym_expect] = ACTIONS(4669), - [anon_sym_actual] = ACTIONS(4669), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4671), - [sym__automatic_semicolon] = ACTIONS(4671), - [sym_safe_nav] = ACTIONS(4671), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_object] = ACTIONS(4430), + [anon_sym_fun] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_this] = ACTIONS(4430), + [anon_sym_super] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4432), + [sym_label] = ACTIONS(4430), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_when] = ACTIONS(4430), + [anon_sym_try] = ACTIONS(4430), + [anon_sym_throw] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4432), + [anon_sym_continue_AT] = ACTIONS(4432), + [anon_sym_break_AT] = ACTIONS(4432), + [anon_sym_this_AT] = ACTIONS(4432), + [anon_sym_super_AT] = ACTIONS(4432), + [sym_real_literal] = ACTIONS(4432), + [sym_integer_literal] = ACTIONS(4430), + [sym_hex_literal] = ACTIONS(4432), + [sym_bin_literal] = ACTIONS(4432), + [anon_sym_true] = ACTIONS(4430), + [anon_sym_false] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4432), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4432), }, [3619] = { - [sym_enum_class_body] = STATE(3790), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_typealias] = ACTIONS(4179), + [anon_sym_class] = ACTIONS(4179), + [anon_sym_interface] = ACTIONS(4179), + [anon_sym_enum] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_val] = ACTIONS(4179), + [anon_sym_var] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_for] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_do] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, [3620] = { - [sym__alpha_identifier] = ACTIONS(4673), - [anon_sym_AT] = ACTIONS(4675), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_as] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_RBRACE] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4673), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4675), - [anon_sym_get] = ACTIONS(4673), - [anon_sym_set] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [sym_label] = ACTIONS(4675), - [anon_sym_in] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(4675), - [anon_sym_QMARK_COLON] = ACTIONS(4675), - [anon_sym_AMP_AMP] = ACTIONS(4675), - [anon_sym_PIPE_PIPE] = ACTIONS(4675), - [anon_sym_else] = ACTIONS(4673), - [anon_sym_COLON_COLON] = ACTIONS(4675), - [anon_sym_PLUS_EQ] = ACTIONS(4675), - [anon_sym_DASH_EQ] = ACTIONS(4675), - [anon_sym_STAR_EQ] = ACTIONS(4675), - [anon_sym_SLASH_EQ] = ACTIONS(4675), - [anon_sym_PERCENT_EQ] = ACTIONS(4675), - [anon_sym_BANG_EQ] = ACTIONS(4673), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4675), - [anon_sym_EQ_EQ] = ACTIONS(4673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4675), - [anon_sym_LT_EQ] = ACTIONS(4675), - [anon_sym_GT_EQ] = ACTIONS(4675), - [anon_sym_BANGin] = ACTIONS(4675), - [anon_sym_is] = ACTIONS(4673), - [anon_sym_BANGis] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_as_QMARK] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4675), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_BANG_BANG] = ACTIONS(4675), - [anon_sym_suspend] = ACTIONS(4673), - [anon_sym_sealed] = ACTIONS(4673), - [anon_sym_annotation] = ACTIONS(4673), - [anon_sym_data] = ACTIONS(4673), - [anon_sym_inner] = ACTIONS(4673), - [anon_sym_value] = ACTIONS(4673), - [anon_sym_override] = ACTIONS(4673), - [anon_sym_lateinit] = ACTIONS(4673), - [anon_sym_public] = ACTIONS(4673), - [anon_sym_private] = ACTIONS(4673), - [anon_sym_internal] = ACTIONS(4673), - [anon_sym_protected] = ACTIONS(4673), - [anon_sym_tailrec] = ACTIONS(4673), - [anon_sym_operator] = ACTIONS(4673), - [anon_sym_infix] = ACTIONS(4673), - [anon_sym_inline] = ACTIONS(4673), - [anon_sym_external] = ACTIONS(4673), - [sym_property_modifier] = ACTIONS(4673), - [anon_sym_abstract] = ACTIONS(4673), - [anon_sym_final] = ACTIONS(4673), - [anon_sym_open] = ACTIONS(4673), - [anon_sym_vararg] = ACTIONS(4673), - [anon_sym_noinline] = ACTIONS(4673), - [anon_sym_crossinline] = ACTIONS(4673), - [anon_sym_expect] = ACTIONS(4673), - [anon_sym_actual] = ACTIONS(4673), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4675), - [sym__automatic_semicolon] = ACTIONS(4675), - [sym_safe_nav] = ACTIONS(4675), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3621] = { - [ts_builtin_sym_end] = ACTIONS(6796), - [sym__alpha_identifier] = ACTIONS(6798), - [anon_sym_AT] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6796), - [anon_sym_package] = ACTIONS(6798), - [anon_sym_import] = ACTIONS(6798), - [anon_sym_typealias] = ACTIONS(6798), - [anon_sym_class] = ACTIONS(6798), - [anon_sym_interface] = ACTIONS(6798), - [anon_sym_enum] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(6796), - [anon_sym_LPAREN] = ACTIONS(6796), - [anon_sym_val] = ACTIONS(6798), - [anon_sym_var] = ACTIONS(6798), - [anon_sym_object] = ACTIONS(6798), - [anon_sym_fun] = ACTIONS(6798), - [anon_sym_get] = ACTIONS(6798), - [anon_sym_set] = ACTIONS(6798), - [anon_sym_this] = ACTIONS(6798), - [anon_sym_super] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6796), - [sym_label] = ACTIONS(6798), - [anon_sym_for] = ACTIONS(6798), - [anon_sym_while] = ACTIONS(6798), - [anon_sym_do] = ACTIONS(6798), - [anon_sym_null] = ACTIONS(6798), - [anon_sym_if] = ACTIONS(6798), - [anon_sym_when] = ACTIONS(6798), - [anon_sym_try] = ACTIONS(6798), - [anon_sym_throw] = ACTIONS(6798), - [anon_sym_return] = ACTIONS(6798), - [anon_sym_continue] = ACTIONS(6798), - [anon_sym_break] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6796), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_BANG] = ACTIONS(6796), - [anon_sym_suspend] = ACTIONS(6798), - [anon_sym_sealed] = ACTIONS(6798), - [anon_sym_annotation] = ACTIONS(6798), - [anon_sym_data] = ACTIONS(6798), - [anon_sym_inner] = ACTIONS(6798), - [anon_sym_value] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_lateinit] = ACTIONS(6798), - [anon_sym_public] = ACTIONS(6798), - [anon_sym_private] = ACTIONS(6798), - [anon_sym_internal] = ACTIONS(6798), - [anon_sym_protected] = ACTIONS(6798), - [anon_sym_tailrec] = ACTIONS(6798), - [anon_sym_operator] = ACTIONS(6798), - [anon_sym_infix] = ACTIONS(6798), - [anon_sym_inline] = ACTIONS(6798), - [anon_sym_external] = ACTIONS(6798), - [sym_property_modifier] = ACTIONS(6798), - [anon_sym_abstract] = ACTIONS(6798), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_open] = ACTIONS(6798), - [anon_sym_vararg] = ACTIONS(6798), - [anon_sym_noinline] = ACTIONS(6798), - [anon_sym_crossinline] = ACTIONS(6798), - [anon_sym_expect] = ACTIONS(6798), - [anon_sym_actual] = ACTIONS(6798), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6796), - [anon_sym_continue_AT] = ACTIONS(6796), - [anon_sym_break_AT] = ACTIONS(6796), - [sym_real_literal] = ACTIONS(6796), - [sym_integer_literal] = ACTIONS(6798), - [sym_hex_literal] = ACTIONS(6796), - [sym_bin_literal] = ACTIONS(6796), - [anon_sym_true] = ACTIONS(6798), - [anon_sym_false] = ACTIONS(6798), - [anon_sym_SQUOTE] = ACTIONS(6796), - [sym__backtick_identifier] = ACTIONS(6796), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6796), + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [3622] = { - [sym_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(4681), - [anon_sym_AT] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_as] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_get] = ACTIONS(4681), - [anon_sym_set] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [sym_label] = ACTIONS(4683), - [anon_sym_in] = ACTIONS(4681), - [anon_sym_DOT_DOT] = ACTIONS(4683), - [anon_sym_QMARK_COLON] = ACTIONS(4683), - [anon_sym_AMP_AMP] = ACTIONS(4683), - [anon_sym_PIPE_PIPE] = ACTIONS(4683), - [anon_sym_else] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_PLUS_EQ] = ACTIONS(4683), - [anon_sym_DASH_EQ] = ACTIONS(4683), - [anon_sym_STAR_EQ] = ACTIONS(4683), - [anon_sym_SLASH_EQ] = ACTIONS(4683), - [anon_sym_PERCENT_EQ] = ACTIONS(4683), - [anon_sym_BANG_EQ] = ACTIONS(4681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4683), - [anon_sym_EQ_EQ] = ACTIONS(4681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4683), - [anon_sym_LT_EQ] = ACTIONS(4683), - [anon_sym_GT_EQ] = ACTIONS(4683), - [anon_sym_BANGin] = ACTIONS(4683), - [anon_sym_is] = ACTIONS(4681), - [anon_sym_BANGis] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_as_QMARK] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_BANG_BANG] = ACTIONS(4683), - [anon_sym_suspend] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4681), - [anon_sym_data] = ACTIONS(4681), - [anon_sym_inner] = ACTIONS(4681), - [anon_sym_value] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_lateinit] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_tailrec] = ACTIONS(4681), - [anon_sym_operator] = ACTIONS(4681), - [anon_sym_infix] = ACTIONS(4681), - [anon_sym_inline] = ACTIONS(4681), - [anon_sym_external] = ACTIONS(4681), - [sym_property_modifier] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_final] = ACTIONS(4681), - [anon_sym_open] = ACTIONS(4681), - [anon_sym_vararg] = ACTIONS(4681), - [anon_sym_noinline] = ACTIONS(4681), - [anon_sym_crossinline] = ACTIONS(4681), - [anon_sym_expect] = ACTIONS(4681), - [anon_sym_actual] = ACTIONS(4681), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4683), - [sym__automatic_semicolon] = ACTIONS(4683), - [sym_safe_nav] = ACTIONS(4683), + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3775), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3623] = { - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [aux_sym_type_constraints_repeat1] = STATE(3638), + [sym__alpha_identifier] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(6956), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [sym_label] = ACTIONS(4341), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_QMARK_COLON] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_else] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_PLUS_EQ] = ACTIONS(4341), + [anon_sym_DASH_EQ] = ACTIONS(4341), + [anon_sym_STAR_EQ] = ACTIONS(4341), + [anon_sym_SLASH_EQ] = ACTIONS(4341), + [anon_sym_PERCENT_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_BANGis] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_as_QMARK] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_BANG_BANG] = ACTIONS(4341), + [anon_sym_suspend] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_annotation] = ACTIONS(4339), + [anon_sym_data] = ACTIONS(4339), + [anon_sym_inner] = ACTIONS(4339), + [anon_sym_value] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_lateinit] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_tailrec] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_infix] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym_external] = ACTIONS(4339), + [sym_property_modifier] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_final] = ACTIONS(4339), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_vararg] = ACTIONS(4339), + [anon_sym_noinline] = ACTIONS(4339), + [anon_sym_crossinline] = ACTIONS(4339), + [anon_sym_expect] = ACTIONS(4339), + [anon_sym_actual] = ACTIONS(4339), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4341), + [sym__automatic_semicolon] = ACTIONS(4341), + [sym_safe_nav] = ACTIONS(4341), [sym_multiline_comment] = ACTIONS(3), }, [3624] = { - [sym_function_body] = STATE(3447), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_type_constraints] = STATE(3772), + [sym_enum_class_body] = STATE(4002), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3625] = { - [sym_function_body] = STATE(3494), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6802), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_DASH_GT] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_while] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4734), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_null] = ACTIONS(4732), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), }, [3626] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6804), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_object] = ACTIONS(4716), + [anon_sym_fun] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_this] = ACTIONS(4716), + [anon_sym_super] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4716), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_null] = ACTIONS(4716), + [anon_sym_if] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_when] = ACTIONS(4716), + [anon_sym_try] = ACTIONS(4716), + [anon_sym_throw] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4716), + [anon_sym_continue] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4716), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4718), + [anon_sym_continue_AT] = ACTIONS(4718), + [anon_sym_break_AT] = ACTIONS(4718), + [anon_sym_this_AT] = ACTIONS(4718), + [anon_sym_super_AT] = ACTIONS(4718), + [sym_real_literal] = ACTIONS(4718), + [sym_integer_literal] = ACTIONS(4716), + [sym_hex_literal] = ACTIONS(4718), + [sym_bin_literal] = ACTIONS(4718), + [anon_sym_true] = ACTIONS(4716), + [anon_sym_false] = ACTIONS(4716), + [anon_sym_SQUOTE] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4718), }, [3627] = { - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_as] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4221), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_DOT] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_STAR] = ACTIONS(4221), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4221), - [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(4221), - [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(4221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [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(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [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(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4489), + [anon_sym_GT] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_DOT_DOT] = ACTIONS(4491), + [anon_sym_QMARK_COLON] = ACTIONS(4491), + [anon_sym_AMP_AMP] = ACTIONS(4491), + [anon_sym_PIPE_PIPE] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ] = ACTIONS(4489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ] = ACTIONS(4489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4491), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4491), + [sym__automatic_semicolon] = ACTIONS(4491), + [sym_safe_nav] = ACTIONS(4491), [sym_multiline_comment] = ACTIONS(3), }, [3628] = { - [sym__alpha_identifier] = ACTIONS(4689), - [anon_sym_AT] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4691), - [anon_sym_as] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4691), - [anon_sym_RBRACE] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(4689), - [anon_sym_where] = ACTIONS(4689), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_get] = ACTIONS(4689), - [anon_sym_set] = ACTIONS(4689), - [anon_sym_STAR] = ACTIONS(4689), - [sym_label] = ACTIONS(4691), - [anon_sym_in] = ACTIONS(4689), - [anon_sym_DOT_DOT] = ACTIONS(4691), - [anon_sym_QMARK_COLON] = ACTIONS(4691), - [anon_sym_AMP_AMP] = ACTIONS(4691), - [anon_sym_PIPE_PIPE] = ACTIONS(4691), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4691), - [anon_sym_PLUS_EQ] = ACTIONS(4691), - [anon_sym_DASH_EQ] = ACTIONS(4691), - [anon_sym_STAR_EQ] = ACTIONS(4691), - [anon_sym_SLASH_EQ] = ACTIONS(4691), - [anon_sym_PERCENT_EQ] = ACTIONS(4691), - [anon_sym_BANG_EQ] = ACTIONS(4689), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4691), - [anon_sym_EQ_EQ] = ACTIONS(4689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4691), - [anon_sym_LT_EQ] = ACTIONS(4691), - [anon_sym_GT_EQ] = ACTIONS(4691), - [anon_sym_BANGin] = ACTIONS(4691), - [anon_sym_is] = ACTIONS(4689), - [anon_sym_BANGis] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_SLASH] = ACTIONS(4689), - [anon_sym_PERCENT] = ACTIONS(4689), - [anon_sym_as_QMARK] = ACTIONS(4691), - [anon_sym_PLUS_PLUS] = ACTIONS(4691), - [anon_sym_DASH_DASH] = ACTIONS(4691), - [anon_sym_BANG_BANG] = ACTIONS(4691), - [anon_sym_suspend] = ACTIONS(4689), - [anon_sym_sealed] = ACTIONS(4689), - [anon_sym_annotation] = ACTIONS(4689), - [anon_sym_data] = ACTIONS(4689), - [anon_sym_inner] = ACTIONS(4689), - [anon_sym_value] = ACTIONS(4689), - [anon_sym_override] = ACTIONS(4689), - [anon_sym_lateinit] = ACTIONS(4689), - [anon_sym_public] = ACTIONS(4689), - [anon_sym_private] = ACTIONS(4689), - [anon_sym_internal] = ACTIONS(4689), - [anon_sym_protected] = ACTIONS(4689), - [anon_sym_tailrec] = ACTIONS(4689), - [anon_sym_operator] = ACTIONS(4689), - [anon_sym_infix] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_external] = ACTIONS(4689), - [sym_property_modifier] = ACTIONS(4689), - [anon_sym_abstract] = ACTIONS(4689), - [anon_sym_final] = ACTIONS(4689), - [anon_sym_open] = ACTIONS(4689), - [anon_sym_vararg] = ACTIONS(4689), - [anon_sym_noinline] = ACTIONS(4689), - [anon_sym_crossinline] = ACTIONS(4689), - [anon_sym_expect] = ACTIONS(4689), - [anon_sym_actual] = ACTIONS(4689), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4691), - [sym__automatic_semicolon] = ACTIONS(4691), - [sym_safe_nav] = ACTIONS(4691), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6958), + [sym__alpha_identifier] = ACTIONS(6960), + [anon_sym_AT] = ACTIONS(6958), + [anon_sym_LBRACK] = ACTIONS(6958), + [anon_sym_import] = ACTIONS(6960), + [anon_sym_typealias] = ACTIONS(6960), + [anon_sym_class] = ACTIONS(6960), + [anon_sym_interface] = ACTIONS(6960), + [anon_sym_enum] = ACTIONS(6960), + [anon_sym_LBRACE] = ACTIONS(6958), + [anon_sym_LPAREN] = ACTIONS(6958), + [anon_sym_val] = ACTIONS(6960), + [anon_sym_var] = ACTIONS(6960), + [anon_sym_object] = ACTIONS(6960), + [anon_sym_fun] = ACTIONS(6960), + [anon_sym_get] = ACTIONS(6960), + [anon_sym_set] = ACTIONS(6960), + [anon_sym_this] = ACTIONS(6960), + [anon_sym_super] = ACTIONS(6960), + [anon_sym_STAR] = ACTIONS(6958), + [sym_label] = ACTIONS(6960), + [anon_sym_for] = ACTIONS(6960), + [anon_sym_while] = ACTIONS(6960), + [anon_sym_do] = ACTIONS(6960), + [anon_sym_null] = ACTIONS(6960), + [anon_sym_if] = ACTIONS(6960), + [anon_sym_when] = ACTIONS(6960), + [anon_sym_try] = ACTIONS(6960), + [anon_sym_throw] = ACTIONS(6960), + [anon_sym_return] = ACTIONS(6960), + [anon_sym_continue] = ACTIONS(6960), + [anon_sym_break] = ACTIONS(6960), + [anon_sym_COLON_COLON] = ACTIONS(6958), + [anon_sym_PLUS] = ACTIONS(6960), + [anon_sym_DASH] = ACTIONS(6960), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_BANG] = ACTIONS(6958), + [anon_sym_suspend] = ACTIONS(6960), + [anon_sym_sealed] = ACTIONS(6960), + [anon_sym_annotation] = ACTIONS(6960), + [anon_sym_data] = ACTIONS(6960), + [anon_sym_inner] = ACTIONS(6960), + [anon_sym_value] = ACTIONS(6960), + [anon_sym_override] = ACTIONS(6960), + [anon_sym_lateinit] = ACTIONS(6960), + [anon_sym_public] = ACTIONS(6960), + [anon_sym_private] = ACTIONS(6960), + [anon_sym_internal] = ACTIONS(6960), + [anon_sym_protected] = ACTIONS(6960), + [anon_sym_tailrec] = ACTIONS(6960), + [anon_sym_operator] = ACTIONS(6960), + [anon_sym_infix] = ACTIONS(6960), + [anon_sym_inline] = ACTIONS(6960), + [anon_sym_external] = ACTIONS(6960), + [sym_property_modifier] = ACTIONS(6960), + [anon_sym_abstract] = ACTIONS(6960), + [anon_sym_final] = ACTIONS(6960), + [anon_sym_open] = ACTIONS(6960), + [anon_sym_vararg] = ACTIONS(6960), + [anon_sym_noinline] = ACTIONS(6960), + [anon_sym_crossinline] = ACTIONS(6960), + [anon_sym_expect] = ACTIONS(6960), + [anon_sym_actual] = ACTIONS(6960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6958), + [anon_sym_continue_AT] = ACTIONS(6958), + [anon_sym_break_AT] = ACTIONS(6958), + [anon_sym_this_AT] = ACTIONS(6958), + [anon_sym_super_AT] = ACTIONS(6958), + [sym_real_literal] = ACTIONS(6958), + [sym_integer_literal] = ACTIONS(6960), + [sym_hex_literal] = ACTIONS(6958), + [sym_bin_literal] = ACTIONS(6958), + [anon_sym_true] = ACTIONS(6960), + [anon_sym_false] = ACTIONS(6960), + [anon_sym_SQUOTE] = ACTIONS(6958), + [sym__backtick_identifier] = ACTIONS(6958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6958), }, [3629] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [aux_sym__delegation_specifiers_repeat1] = STATE(3639), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(6962), + [anon_sym_RPAREN] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_while] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), }, [3630] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6810), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4009), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [sym_label] = ACTIONS(4009), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), }, [3631] = { - [sym_function_body] = STATE(3438), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_RPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3632] = { - [aux_sym_type_constraints_repeat1] = STATE(3632), - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_EQ] = ACTIONS(4412), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(6814), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_object] = ACTIONS(4410), - [anon_sym_fun] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_this] = ACTIONS(4410), - [anon_sym_super] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4412), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_throw] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4412), - [anon_sym_continue_AT] = ACTIONS(4412), - [anon_sym_break_AT] = ACTIONS(4412), - [sym_real_literal] = ACTIONS(4412), - [sym_integer_literal] = ACTIONS(4410), - [sym_hex_literal] = ACTIONS(4412), - [sym_bin_literal] = ACTIONS(4412), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [anon_sym_SQUOTE] = ACTIONS(4412), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4412), + [aux_sym_user_type_repeat1] = STATE(3676), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_typealias] = ACTIONS(4153), + [anon_sym_class] = ACTIONS(4153), + [anon_sym_interface] = ACTIONS(4153), + [anon_sym_enum] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_val] = ACTIONS(4153), + [anon_sym_var] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_this] = ACTIONS(4153), + [anon_sym_super] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4155), + [sym_label] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_do] = ACTIONS(4153), + [anon_sym_null] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_when] = ACTIONS(4153), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_throw] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_COLON_COLON] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_PLUS_PLUS] = ACTIONS(4155), + [anon_sym_DASH_DASH] = ACTIONS(4155), + [anon_sym_BANG] = ACTIONS(4155), + [anon_sym_suspend] = ACTIONS(4153), + [anon_sym_sealed] = ACTIONS(4153), + [anon_sym_annotation] = ACTIONS(4153), + [anon_sym_data] = ACTIONS(4153), + [anon_sym_inner] = ACTIONS(4153), + [anon_sym_value] = ACTIONS(4153), + [anon_sym_override] = ACTIONS(4153), + [anon_sym_lateinit] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4153), + [anon_sym_private] = ACTIONS(4153), + [anon_sym_internal] = ACTIONS(4153), + [anon_sym_protected] = ACTIONS(4153), + [anon_sym_tailrec] = ACTIONS(4153), + [anon_sym_operator] = ACTIONS(4153), + [anon_sym_infix] = ACTIONS(4153), + [anon_sym_inline] = ACTIONS(4153), + [anon_sym_external] = ACTIONS(4153), + [sym_property_modifier] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4153), + [anon_sym_final] = ACTIONS(4153), + [anon_sym_open] = ACTIONS(4153), + [anon_sym_vararg] = ACTIONS(4153), + [anon_sym_noinline] = ACTIONS(4153), + [anon_sym_crossinline] = ACTIONS(4153), + [anon_sym_expect] = ACTIONS(4153), + [anon_sym_actual] = ACTIONS(4153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4155), + [anon_sym_continue_AT] = ACTIONS(4155), + [anon_sym_break_AT] = ACTIONS(4155), + [anon_sym_this_AT] = ACTIONS(4155), + [anon_sym_super_AT] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4155), + [sym_integer_literal] = ACTIONS(4153), + [sym_hex_literal] = ACTIONS(4155), + [sym_bin_literal] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [anon_sym_SQUOTE] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4155), }, [3633] = { - [sym__alpha_identifier] = ACTIONS(4558), - [anon_sym_AT] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACE] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_get] = ACTIONS(4558), - [anon_sym_set] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [sym_label] = ACTIONS(4560), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_QMARK_COLON] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [anon_sym_else] = ACTIONS(4558), - [anon_sym_COLON_COLON] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_BANGin] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_BANGis] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_as_QMARK] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_BANG_BANG] = ACTIONS(4560), - [anon_sym_suspend] = ACTIONS(4558), - [anon_sym_sealed] = ACTIONS(4558), - [anon_sym_annotation] = ACTIONS(4558), - [anon_sym_data] = ACTIONS(4558), - [anon_sym_inner] = ACTIONS(4558), - [anon_sym_value] = ACTIONS(4558), - [anon_sym_override] = ACTIONS(4558), - [anon_sym_lateinit] = ACTIONS(4558), - [anon_sym_public] = ACTIONS(4558), - [anon_sym_private] = ACTIONS(4558), - [anon_sym_internal] = ACTIONS(4558), - [anon_sym_protected] = ACTIONS(4558), - [anon_sym_tailrec] = ACTIONS(4558), - [anon_sym_operator] = ACTIONS(4558), - [anon_sym_infix] = ACTIONS(4558), - [anon_sym_inline] = ACTIONS(4558), - [anon_sym_external] = ACTIONS(4558), - [sym_property_modifier] = ACTIONS(4558), - [anon_sym_abstract] = ACTIONS(4558), - [anon_sym_final] = ACTIONS(4558), - [anon_sym_open] = ACTIONS(4558), - [anon_sym_vararg] = ACTIONS(4558), - [anon_sym_noinline] = ACTIONS(4558), - [anon_sym_crossinline] = ACTIONS(4558), - [anon_sym_expect] = ACTIONS(4558), - [anon_sym_actual] = ACTIONS(4558), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4560), - [sym__automatic_semicolon] = ACTIONS(4560), - [sym_safe_nav] = ACTIONS(4560), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3634] = { - [sym__alpha_identifier] = ACTIONS(4725), - [anon_sym_AT] = ACTIONS(4727), - [anon_sym_COLON] = ACTIONS(4725), - [anon_sym_LBRACK] = ACTIONS(4727), - [anon_sym_as] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(4727), - [anon_sym_RBRACE] = ACTIONS(4727), - [anon_sym_LPAREN] = ACTIONS(4727), - [anon_sym_COMMA] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_where] = ACTIONS(4725), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_get] = ACTIONS(4725), - [anon_sym_set] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4725), - [sym_label] = ACTIONS(4727), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_DOT_DOT] = ACTIONS(4727), - [anon_sym_QMARK_COLON] = ACTIONS(4727), - [anon_sym_AMP_AMP] = ACTIONS(4727), - [anon_sym_PIPE_PIPE] = ACTIONS(4727), - [anon_sym_else] = ACTIONS(4725), - [anon_sym_COLON_COLON] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4727), - [anon_sym_DASH_EQ] = ACTIONS(4727), - [anon_sym_STAR_EQ] = ACTIONS(4727), - [anon_sym_SLASH_EQ] = ACTIONS(4727), - [anon_sym_PERCENT_EQ] = ACTIONS(4727), - [anon_sym_BANG_EQ] = ACTIONS(4725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4727), - [anon_sym_EQ_EQ] = ACTIONS(4725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4727), - [anon_sym_LT_EQ] = ACTIONS(4727), - [anon_sym_GT_EQ] = ACTIONS(4727), - [anon_sym_BANGin] = ACTIONS(4727), - [anon_sym_is] = ACTIONS(4725), - [anon_sym_BANGis] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4725), - [anon_sym_as_QMARK] = ACTIONS(4727), - [anon_sym_PLUS_PLUS] = ACTIONS(4727), - [anon_sym_DASH_DASH] = ACTIONS(4727), - [anon_sym_BANG_BANG] = ACTIONS(4727), - [anon_sym_suspend] = ACTIONS(4725), - [anon_sym_sealed] = ACTIONS(4725), - [anon_sym_annotation] = ACTIONS(4725), - [anon_sym_data] = ACTIONS(4725), - [anon_sym_inner] = ACTIONS(4725), - [anon_sym_value] = ACTIONS(4725), - [anon_sym_override] = ACTIONS(4725), - [anon_sym_lateinit] = ACTIONS(4725), - [anon_sym_public] = ACTIONS(4725), - [anon_sym_private] = ACTIONS(4725), - [anon_sym_internal] = ACTIONS(4725), - [anon_sym_protected] = ACTIONS(4725), - [anon_sym_tailrec] = ACTIONS(4725), - [anon_sym_operator] = ACTIONS(4725), - [anon_sym_infix] = ACTIONS(4725), - [anon_sym_inline] = ACTIONS(4725), - [anon_sym_external] = ACTIONS(4725), - [sym_property_modifier] = ACTIONS(4725), - [anon_sym_abstract] = ACTIONS(4725), - [anon_sym_final] = ACTIONS(4725), - [anon_sym_open] = ACTIONS(4725), - [anon_sym_vararg] = ACTIONS(4725), - [anon_sym_noinline] = ACTIONS(4725), - [anon_sym_crossinline] = ACTIONS(4725), - [anon_sym_expect] = ACTIONS(4725), - [anon_sym_actual] = ACTIONS(4725), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4727), - [sym__automatic_semicolon] = ACTIONS(4727), - [sym_safe_nav] = ACTIONS(4727), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4477), + [anon_sym_fun] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_this] = ACTIONS(4477), + [anon_sym_super] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4477), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_null] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_try] = ACTIONS(4477), + [anon_sym_throw] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4479), + [anon_sym_continue_AT] = ACTIONS(4479), + [anon_sym_break_AT] = ACTIONS(4479), + [anon_sym_this_AT] = ACTIONS(4479), + [anon_sym_super_AT] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4479), + [sym_integer_literal] = ACTIONS(4477), + [sym_hex_literal] = ACTIONS(4479), + [sym_bin_literal] = ACTIONS(4479), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4479), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4479), }, [3635] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3700), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3636] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(6817), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [aux_sym_user_type_repeat1] = STATE(3319), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_as] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_COMMA] = ACTIONS(4195), + [anon_sym_by] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_where] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6966), + [anon_sym_SEMI] = ACTIONS(4195), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [sym_label] = ACTIONS(4195), + [anon_sym_in] = ACTIONS(4193), + [anon_sym_DOT_DOT] = ACTIONS(4195), + [anon_sym_QMARK_COLON] = ACTIONS(4195), + [anon_sym_AMP_AMP] = ACTIONS(4195), + [anon_sym_PIPE_PIPE] = ACTIONS(4195), + [anon_sym_else] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS_EQ] = ACTIONS(4195), + [anon_sym_DASH_EQ] = ACTIONS(4195), + [anon_sym_STAR_EQ] = ACTIONS(4195), + [anon_sym_SLASH_EQ] = ACTIONS(4195), + [anon_sym_PERCENT_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ] = ACTIONS(4193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ] = ACTIONS(4193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_BANGin] = ACTIONS(4195), + [anon_sym_is] = ACTIONS(4193), + [anon_sym_BANGis] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_as_QMARK] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4195), + [sym__automatic_semicolon] = ACTIONS(4195), + [sym_safe_nav] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), }, [3637] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(6819), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), + [ts_builtin_sym_end] = ACTIONS(6969), + [sym__alpha_identifier] = ACTIONS(6971), + [anon_sym_AT] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_import] = ACTIONS(6971), + [anon_sym_typealias] = ACTIONS(6971), + [anon_sym_class] = ACTIONS(6971), + [anon_sym_interface] = ACTIONS(6971), + [anon_sym_enum] = ACTIONS(6971), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LPAREN] = ACTIONS(6969), + [anon_sym_val] = ACTIONS(6971), + [anon_sym_var] = ACTIONS(6971), + [anon_sym_object] = ACTIONS(6971), + [anon_sym_fun] = ACTIONS(6971), + [anon_sym_get] = ACTIONS(6971), + [anon_sym_set] = ACTIONS(6971), + [anon_sym_this] = ACTIONS(6971), + [anon_sym_super] = ACTIONS(6971), + [anon_sym_STAR] = ACTIONS(6969), + [sym_label] = ACTIONS(6971), + [anon_sym_for] = ACTIONS(6971), + [anon_sym_while] = ACTIONS(6971), + [anon_sym_do] = ACTIONS(6971), + [anon_sym_null] = ACTIONS(6971), + [anon_sym_if] = ACTIONS(6971), + [anon_sym_when] = ACTIONS(6971), + [anon_sym_try] = ACTIONS(6971), + [anon_sym_throw] = ACTIONS(6971), + [anon_sym_return] = ACTIONS(6971), + [anon_sym_continue] = ACTIONS(6971), + [anon_sym_break] = ACTIONS(6971), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_BANG] = ACTIONS(6969), + [anon_sym_suspend] = ACTIONS(6971), + [anon_sym_sealed] = ACTIONS(6971), + [anon_sym_annotation] = ACTIONS(6971), + [anon_sym_data] = ACTIONS(6971), + [anon_sym_inner] = ACTIONS(6971), + [anon_sym_value] = ACTIONS(6971), + [anon_sym_override] = ACTIONS(6971), + [anon_sym_lateinit] = ACTIONS(6971), + [anon_sym_public] = ACTIONS(6971), + [anon_sym_private] = ACTIONS(6971), + [anon_sym_internal] = ACTIONS(6971), + [anon_sym_protected] = ACTIONS(6971), + [anon_sym_tailrec] = ACTIONS(6971), + [anon_sym_operator] = ACTIONS(6971), + [anon_sym_infix] = ACTIONS(6971), + [anon_sym_inline] = ACTIONS(6971), + [anon_sym_external] = ACTIONS(6971), + [sym_property_modifier] = ACTIONS(6971), + [anon_sym_abstract] = ACTIONS(6971), + [anon_sym_final] = ACTIONS(6971), + [anon_sym_open] = ACTIONS(6971), + [anon_sym_vararg] = ACTIONS(6971), + [anon_sym_noinline] = ACTIONS(6971), + [anon_sym_crossinline] = ACTIONS(6971), + [anon_sym_expect] = ACTIONS(6971), + [anon_sym_actual] = ACTIONS(6971), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6969), + [anon_sym_continue_AT] = ACTIONS(6969), + [anon_sym_break_AT] = ACTIONS(6969), + [anon_sym_this_AT] = ACTIONS(6969), + [anon_sym_super_AT] = ACTIONS(6969), + [sym_real_literal] = ACTIONS(6969), + [sym_integer_literal] = ACTIONS(6971), + [sym_hex_literal] = ACTIONS(6969), + [sym_bin_literal] = ACTIONS(6969), + [anon_sym_true] = ACTIONS(6971), + [anon_sym_false] = ACTIONS(6971), + [anon_sym_SQUOTE] = ACTIONS(6969), + [sym__backtick_identifier] = ACTIONS(6969), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6969), }, [3638] = { - [sym_class_body] = STATE(3950), - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4510), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), + [aux_sym_type_constraints_repeat1] = STATE(3651), + [sym__alpha_identifier] = ACTIONS(4424), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(6956), + [anon_sym_by] = ACTIONS(4424), + [anon_sym_LT] = ACTIONS(4424), + [anon_sym_GT] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_get] = ACTIONS(4424), + [anon_sym_set] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [sym_label] = ACTIONS(4426), + [anon_sym_in] = ACTIONS(4424), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_QMARK_COLON] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_PIPE_PIPE] = ACTIONS(4426), + [anon_sym_else] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_PLUS_EQ] = ACTIONS(4426), + [anon_sym_DASH_EQ] = ACTIONS(4426), + [anon_sym_STAR_EQ] = ACTIONS(4426), + [anon_sym_SLASH_EQ] = ACTIONS(4426), + [anon_sym_PERCENT_EQ] = ACTIONS(4426), + [anon_sym_BANG_EQ] = ACTIONS(4424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4426), + [anon_sym_EQ_EQ] = ACTIONS(4424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4426), + [anon_sym_LT_EQ] = ACTIONS(4426), + [anon_sym_GT_EQ] = ACTIONS(4426), + [anon_sym_BANGin] = ACTIONS(4426), + [anon_sym_is] = ACTIONS(4424), + [anon_sym_BANGis] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_SLASH] = ACTIONS(4424), + [anon_sym_PERCENT] = ACTIONS(4424), + [anon_sym_as_QMARK] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_BANG_BANG] = ACTIONS(4426), + [anon_sym_suspend] = ACTIONS(4424), + [anon_sym_sealed] = ACTIONS(4424), + [anon_sym_annotation] = ACTIONS(4424), + [anon_sym_data] = ACTIONS(4424), + [anon_sym_inner] = ACTIONS(4424), + [anon_sym_value] = ACTIONS(4424), + [anon_sym_override] = ACTIONS(4424), + [anon_sym_lateinit] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_internal] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_tailrec] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_infix] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym_external] = ACTIONS(4424), + [sym_property_modifier] = ACTIONS(4424), + [anon_sym_abstract] = ACTIONS(4424), + [anon_sym_final] = ACTIONS(4424), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_vararg] = ACTIONS(4424), + [anon_sym_noinline] = ACTIONS(4424), + [anon_sym_crossinline] = ACTIONS(4424), + [anon_sym_expect] = ACTIONS(4424), + [anon_sym_actual] = ACTIONS(4424), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), [sym_multiline_comment] = ACTIONS(3), }, [3639] = { - [sym_class_body] = STATE(3784), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [aux_sym__delegation_specifiers_repeat1] = STATE(3295), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(6962), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, [3640] = { - [sym_enum_class_body] = STATE(3945), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [3641] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(6726), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [3642] = { - [sym__alpha_identifier] = ACTIONS(4653), - [anon_sym_AT] = ACTIONS(4655), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_as] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_get] = ACTIONS(4653), - [anon_sym_set] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [sym_label] = ACTIONS(4655), - [anon_sym_in] = ACTIONS(4653), - [anon_sym_DOT_DOT] = ACTIONS(4655), - [anon_sym_QMARK_COLON] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_PIPE_PIPE] = ACTIONS(4655), - [anon_sym_else] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_PLUS_EQ] = ACTIONS(4655), - [anon_sym_DASH_EQ] = ACTIONS(4655), - [anon_sym_STAR_EQ] = ACTIONS(4655), - [anon_sym_SLASH_EQ] = ACTIONS(4655), - [anon_sym_PERCENT_EQ] = ACTIONS(4655), - [anon_sym_BANG_EQ] = ACTIONS(4653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4655), - [anon_sym_EQ_EQ] = ACTIONS(4653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4655), - [anon_sym_LT_EQ] = ACTIONS(4655), - [anon_sym_GT_EQ] = ACTIONS(4655), - [anon_sym_BANGin] = ACTIONS(4655), - [anon_sym_is] = ACTIONS(4653), - [anon_sym_BANGis] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_as_QMARK] = ACTIONS(4655), - [anon_sym_PLUS_PLUS] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_BANG_BANG] = ACTIONS(4655), - [anon_sym_suspend] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4653), - [anon_sym_data] = ACTIONS(4653), - [anon_sym_inner] = ACTIONS(4653), - [anon_sym_value] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_lateinit] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_tailrec] = ACTIONS(4653), - [anon_sym_operator] = ACTIONS(4653), - [anon_sym_infix] = ACTIONS(4653), - [anon_sym_inline] = ACTIONS(4653), - [anon_sym_external] = ACTIONS(4653), - [sym_property_modifier] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_final] = ACTIONS(4653), - [anon_sym_open] = ACTIONS(4653), - [anon_sym_vararg] = ACTIONS(4653), - [anon_sym_noinline] = ACTIONS(4653), - [anon_sym_crossinline] = ACTIONS(4653), - [anon_sym_expect] = ACTIONS(4653), - [anon_sym_actual] = ACTIONS(4653), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4655), - [sym__automatic_semicolon] = ACTIONS(4655), - [sym_safe_nav] = ACTIONS(4655), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_object] = ACTIONS(4702), + [anon_sym_fun] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_this] = ACTIONS(4702), + [anon_sym_super] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4704), + [sym_label] = ACTIONS(4702), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_null] = ACTIONS(4702), + [anon_sym_if] = ACTIONS(4702), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_when] = ACTIONS(4702), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_throw] = ACTIONS(4702), + [anon_sym_return] = ACTIONS(4702), + [anon_sym_continue] = ACTIONS(4702), + [anon_sym_break] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4704), + [anon_sym_continue_AT] = ACTIONS(4704), + [anon_sym_break_AT] = ACTIONS(4704), + [anon_sym_this_AT] = ACTIONS(4704), + [anon_sym_super_AT] = ACTIONS(4704), + [sym_real_literal] = ACTIONS(4704), + [sym_integer_literal] = ACTIONS(4702), + [sym_hex_literal] = ACTIONS(4704), + [sym_bin_literal] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4702), + [anon_sym_false] = ACTIONS(4702), + [anon_sym_SQUOTE] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4704), }, [3643] = { - [sym__alpha_identifier] = ACTIONS(4538), - [anon_sym_AT] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_get] = ACTIONS(4538), - [anon_sym_set] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [sym_label] = ACTIONS(4540), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_QMARK_COLON] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [anon_sym_else] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_BANGin] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_BANGis] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_as_QMARK] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_BANG_BANG] = ACTIONS(4540), - [anon_sym_suspend] = ACTIONS(4538), - [anon_sym_sealed] = ACTIONS(4538), - [anon_sym_annotation] = ACTIONS(4538), - [anon_sym_data] = ACTIONS(4538), - [anon_sym_inner] = ACTIONS(4538), - [anon_sym_value] = ACTIONS(4538), - [anon_sym_override] = ACTIONS(4538), - [anon_sym_lateinit] = ACTIONS(4538), - [anon_sym_public] = ACTIONS(4538), - [anon_sym_private] = ACTIONS(4538), - [anon_sym_internal] = ACTIONS(4538), - [anon_sym_protected] = ACTIONS(4538), - [anon_sym_tailrec] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_infix] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym_external] = ACTIONS(4538), - [sym_property_modifier] = ACTIONS(4538), - [anon_sym_abstract] = ACTIONS(4538), - [anon_sym_final] = ACTIONS(4538), - [anon_sym_open] = ACTIONS(4538), - [anon_sym_vararg] = ACTIONS(4538), - [anon_sym_noinline] = ACTIONS(4538), - [anon_sym_crossinline] = ACTIONS(4538), - [anon_sym_expect] = ACTIONS(4538), - [anon_sym_actual] = ACTIONS(4538), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4540), - [sym__automatic_semicolon] = ACTIONS(4540), - [sym_safe_nav] = ACTIONS(4540), - [sym_multiline_comment] = ACTIONS(3), - }, - [3644] = { + [sym_type_constraints] = STATE(3905), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), [sym__alpha_identifier] = ACTIONS(4147), [anon_sym_AT] = ACTIONS(4149), - [anon_sym_COLON] = ACTIONS(6463), [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4149), - [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), [anon_sym_RBRACE] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_by] = ACTIONS(4147), - [anon_sym_where] = ACTIONS(4147), - [anon_sym_object] = ACTIONS(4147), - [anon_sym_fun] = ACTIONS(4147), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), [anon_sym_SEMI] = ACTIONS(4149), [anon_sym_get] = ACTIONS(4147), [anon_sym_set] = ACTIONS(4147), - [anon_sym_this] = ACTIONS(4147), - [anon_sym_super] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [sym_label] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), [anon_sym_in] = ACTIONS(4147), - [anon_sym_null] = ACTIONS(4147), - [anon_sym_if] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), [anon_sym_else] = ACTIONS(4147), - [anon_sym_when] = ACTIONS(4147), - [anon_sym_try] = ACTIONS(4147), - [anon_sym_throw] = ACTIONS(4147), - [anon_sym_return] = ACTIONS(4147), - [anon_sym_continue] = ACTIONS(4147), - [anon_sym_break] = ACTIONS(4147), [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), [anon_sym_BANGin] = ACTIONS(4149), [anon_sym_is] = ACTIONS(4147), [anon_sym_BANGis] = ACTIONS(4149), [anon_sym_PLUS] = ACTIONS(4147), [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), [anon_sym_PLUS_PLUS] = ACTIONS(4149), [anon_sym_DASH_DASH] = ACTIONS(4149), - [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), [anon_sym_suspend] = ACTIONS(4147), [anon_sym_sealed] = ACTIONS(4147), [anon_sym_annotation] = ACTIONS(4147), @@ -407936,2816 +416131,2176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4147), [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4149), - [anon_sym_continue_AT] = ACTIONS(4149), - [anon_sym_break_AT] = ACTIONS(4149), - [sym_real_literal] = ACTIONS(4149), - [sym_integer_literal] = ACTIONS(4147), - [sym_hex_literal] = ACTIONS(4149), - [sym_bin_literal] = ACTIONS(4149), - [anon_sym_true] = ACTIONS(4147), - [anon_sym_false] = ACTIONS(4147), - [anon_sym_SQUOTE] = ACTIONS(4149), [sym__backtick_identifier] = ACTIONS(4149), [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4149), }, - [3645] = { - [sym__alpha_identifier] = ACTIONS(4709), - [anon_sym_AT] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4711), - [anon_sym_as] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4711), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_by] = ACTIONS(4709), - [anon_sym_LT] = ACTIONS(4709), - [anon_sym_GT] = ACTIONS(4709), - [anon_sym_where] = ACTIONS(4709), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_SEMI] = ACTIONS(4711), - [anon_sym_get] = ACTIONS(4709), - [anon_sym_set] = ACTIONS(4709), - [anon_sym_STAR] = ACTIONS(4709), - [sym_label] = ACTIONS(4711), - [anon_sym_in] = ACTIONS(4709), - [anon_sym_DOT_DOT] = ACTIONS(4711), - [anon_sym_QMARK_COLON] = ACTIONS(4711), - [anon_sym_AMP_AMP] = ACTIONS(4711), - [anon_sym_PIPE_PIPE] = ACTIONS(4711), - [anon_sym_else] = ACTIONS(4709), - [anon_sym_COLON_COLON] = ACTIONS(4711), - [anon_sym_PLUS_EQ] = ACTIONS(4711), - [anon_sym_DASH_EQ] = ACTIONS(4711), - [anon_sym_STAR_EQ] = ACTIONS(4711), - [anon_sym_SLASH_EQ] = ACTIONS(4711), - [anon_sym_PERCENT_EQ] = ACTIONS(4711), - [anon_sym_BANG_EQ] = ACTIONS(4709), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4711), - [anon_sym_EQ_EQ] = ACTIONS(4709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4711), - [anon_sym_LT_EQ] = ACTIONS(4711), - [anon_sym_GT_EQ] = ACTIONS(4711), - [anon_sym_BANGin] = ACTIONS(4711), - [anon_sym_is] = ACTIONS(4709), - [anon_sym_BANGis] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_as_QMARK] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_BANG_BANG] = ACTIONS(4711), - [anon_sym_suspend] = ACTIONS(4709), - [anon_sym_sealed] = ACTIONS(4709), - [anon_sym_annotation] = ACTIONS(4709), - [anon_sym_data] = ACTIONS(4709), - [anon_sym_inner] = ACTIONS(4709), - [anon_sym_value] = ACTIONS(4709), - [anon_sym_override] = ACTIONS(4709), - [anon_sym_lateinit] = ACTIONS(4709), - [anon_sym_public] = ACTIONS(4709), - [anon_sym_private] = ACTIONS(4709), - [anon_sym_internal] = ACTIONS(4709), - [anon_sym_protected] = ACTIONS(4709), - [anon_sym_tailrec] = ACTIONS(4709), - [anon_sym_operator] = ACTIONS(4709), - [anon_sym_infix] = ACTIONS(4709), - [anon_sym_inline] = ACTIONS(4709), - [anon_sym_external] = ACTIONS(4709), - [sym_property_modifier] = ACTIONS(4709), - [anon_sym_abstract] = ACTIONS(4709), - [anon_sym_final] = ACTIONS(4709), - [anon_sym_open] = ACTIONS(4709), - [anon_sym_vararg] = ACTIONS(4709), - [anon_sym_noinline] = ACTIONS(4709), - [anon_sym_crossinline] = ACTIONS(4709), - [anon_sym_expect] = ACTIONS(4709), - [anon_sym_actual] = ACTIONS(4709), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4711), - [sym__automatic_semicolon] = ACTIONS(4711), - [sym_safe_nav] = ACTIONS(4711), + [3644] = { + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4471), + [anon_sym_EQ] = ACTIONS(4471), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [sym_label] = ACTIONS(4473), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_DOT_DOT] = ACTIONS(4473), + [anon_sym_QMARK_COLON] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_PLUS_EQ] = ACTIONS(4473), + [anon_sym_DASH_EQ] = ACTIONS(4473), + [anon_sym_STAR_EQ] = ACTIONS(4473), + [anon_sym_SLASH_EQ] = ACTIONS(4473), + [anon_sym_PERCENT_EQ] = ACTIONS(4473), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4473), + [anon_sym_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4473), + [anon_sym_LT_EQ] = ACTIONS(4473), + [anon_sym_GT_EQ] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_as_QMARK] = ACTIONS(4473), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG_BANG] = ACTIONS(4473), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4473), + [sym__automatic_semicolon] = ACTIONS(4473), + [sym_safe_nav] = ACTIONS(4473), [sym_multiline_comment] = ACTIONS(3), }, + [3645] = { + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, [3646] = { - [sym__alpha_identifier] = ACTIONS(4713), - [anon_sym_AT] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4715), - [anon_sym_as] = ACTIONS(4713), - [anon_sym_EQ] = ACTIONS(4713), - [anon_sym_LBRACE] = ACTIONS(4715), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_COMMA] = ACTIONS(4715), - [anon_sym_by] = ACTIONS(4713), - [anon_sym_LT] = ACTIONS(4713), - [anon_sym_GT] = ACTIONS(4713), - [anon_sym_where] = ACTIONS(4713), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_SEMI] = ACTIONS(4715), - [anon_sym_get] = ACTIONS(4713), - [anon_sym_set] = ACTIONS(4713), - [anon_sym_STAR] = ACTIONS(4713), - [sym_label] = ACTIONS(4715), - [anon_sym_in] = ACTIONS(4713), - [anon_sym_DOT_DOT] = ACTIONS(4715), - [anon_sym_QMARK_COLON] = ACTIONS(4715), - [anon_sym_AMP_AMP] = ACTIONS(4715), - [anon_sym_PIPE_PIPE] = ACTIONS(4715), - [anon_sym_else] = ACTIONS(4713), - [anon_sym_COLON_COLON] = ACTIONS(4715), - [anon_sym_PLUS_EQ] = ACTIONS(4715), - [anon_sym_DASH_EQ] = ACTIONS(4715), - [anon_sym_STAR_EQ] = ACTIONS(4715), - [anon_sym_SLASH_EQ] = ACTIONS(4715), - [anon_sym_PERCENT_EQ] = ACTIONS(4715), - [anon_sym_BANG_EQ] = ACTIONS(4713), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4715), - [anon_sym_EQ_EQ] = ACTIONS(4713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4715), - [anon_sym_LT_EQ] = ACTIONS(4715), - [anon_sym_GT_EQ] = ACTIONS(4715), - [anon_sym_BANGin] = ACTIONS(4715), - [anon_sym_is] = ACTIONS(4713), - [anon_sym_BANGis] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4713), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_SLASH] = ACTIONS(4713), - [anon_sym_PERCENT] = ACTIONS(4713), - [anon_sym_as_QMARK] = ACTIONS(4715), - [anon_sym_PLUS_PLUS] = ACTIONS(4715), - [anon_sym_DASH_DASH] = ACTIONS(4715), - [anon_sym_BANG_BANG] = ACTIONS(4715), - [anon_sym_suspend] = ACTIONS(4713), - [anon_sym_sealed] = ACTIONS(4713), - [anon_sym_annotation] = ACTIONS(4713), - [anon_sym_data] = ACTIONS(4713), - [anon_sym_inner] = ACTIONS(4713), - [anon_sym_value] = ACTIONS(4713), - [anon_sym_override] = ACTIONS(4713), - [anon_sym_lateinit] = ACTIONS(4713), - [anon_sym_public] = ACTIONS(4713), - [anon_sym_private] = ACTIONS(4713), - [anon_sym_internal] = ACTIONS(4713), - [anon_sym_protected] = ACTIONS(4713), - [anon_sym_tailrec] = ACTIONS(4713), - [anon_sym_operator] = ACTIONS(4713), - [anon_sym_infix] = ACTIONS(4713), - [anon_sym_inline] = ACTIONS(4713), - [anon_sym_external] = ACTIONS(4713), - [sym_property_modifier] = ACTIONS(4713), - [anon_sym_abstract] = ACTIONS(4713), - [anon_sym_final] = ACTIONS(4713), - [anon_sym_open] = ACTIONS(4713), - [anon_sym_vararg] = ACTIONS(4713), - [anon_sym_noinline] = ACTIONS(4713), - [anon_sym_crossinline] = ACTIONS(4713), - [anon_sym_expect] = ACTIONS(4713), - [anon_sym_actual] = ACTIONS(4713), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4715), - [sym__automatic_semicolon] = ACTIONS(4715), - [sym_safe_nav] = ACTIONS(4715), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [3647] = { - [sym_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3648] = { - [sym_enum_class_body] = STATE(3748), - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4476), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_typealias] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_interface] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_val] = ACTIONS(4004), + [anon_sym_var] = ACTIONS(4004), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3649] = { - [sym_function_body] = STATE(3443), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_RPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_while] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3650] = { - [sym__alpha_identifier] = ACTIONS(4661), - [anon_sym_AT] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_as] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_by] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4661), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_where] = ACTIONS(4661), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [sym_label] = ACTIONS(4663), - [anon_sym_in] = ACTIONS(4661), - [anon_sym_DOT_DOT] = ACTIONS(4663), - [anon_sym_QMARK_COLON] = ACTIONS(4663), - [anon_sym_AMP_AMP] = ACTIONS(4663), - [anon_sym_PIPE_PIPE] = ACTIONS(4663), - [anon_sym_else] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4663), - [anon_sym_PLUS_EQ] = ACTIONS(4663), - [anon_sym_DASH_EQ] = ACTIONS(4663), - [anon_sym_STAR_EQ] = ACTIONS(4663), - [anon_sym_SLASH_EQ] = ACTIONS(4663), - [anon_sym_PERCENT_EQ] = ACTIONS(4663), - [anon_sym_BANG_EQ] = ACTIONS(4661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), - [anon_sym_EQ_EQ] = ACTIONS(4661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), - [anon_sym_LT_EQ] = ACTIONS(4663), - [anon_sym_GT_EQ] = ACTIONS(4663), - [anon_sym_BANGin] = ACTIONS(4663), - [anon_sym_is] = ACTIONS(4661), - [anon_sym_BANGis] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_as_QMARK] = ACTIONS(4663), - [anon_sym_PLUS_PLUS] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_BANG_BANG] = ACTIONS(4663), - [anon_sym_suspend] = ACTIONS(4661), - [anon_sym_sealed] = ACTIONS(4661), - [anon_sym_annotation] = ACTIONS(4661), - [anon_sym_data] = ACTIONS(4661), - [anon_sym_inner] = ACTIONS(4661), - [anon_sym_value] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_lateinit] = ACTIONS(4661), - [anon_sym_public] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4661), - [anon_sym_internal] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4661), - [anon_sym_tailrec] = ACTIONS(4661), - [anon_sym_operator] = ACTIONS(4661), - [anon_sym_infix] = ACTIONS(4661), - [anon_sym_inline] = ACTIONS(4661), - [anon_sym_external] = ACTIONS(4661), - [sym_property_modifier] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_final] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_vararg] = ACTIONS(4661), - [anon_sym_noinline] = ACTIONS(4661), - [anon_sym_crossinline] = ACTIONS(4661), - [anon_sym_expect] = ACTIONS(4661), - [anon_sym_actual] = ACTIONS(4661), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4663), - [sym__automatic_semicolon] = ACTIONS(4663), - [sym_safe_nav] = ACTIONS(4663), + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3831), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, [3651] = { - [sym__alpha_identifier] = ACTIONS(4657), - [anon_sym_AT] = ACTIONS(4659), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_as] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4659), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4659), - [anon_sym_by] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4657), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_where] = ACTIONS(4657), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(4657), - [anon_sym_set] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [sym_label] = ACTIONS(4659), - [anon_sym_in] = ACTIONS(4657), - [anon_sym_DOT_DOT] = ACTIONS(4659), - [anon_sym_QMARK_COLON] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_PIPE_PIPE] = ACTIONS(4659), - [anon_sym_else] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4659), - [anon_sym_PLUS_EQ] = ACTIONS(4659), - [anon_sym_DASH_EQ] = ACTIONS(4659), - [anon_sym_STAR_EQ] = ACTIONS(4659), - [anon_sym_SLASH_EQ] = ACTIONS(4659), - [anon_sym_PERCENT_EQ] = ACTIONS(4659), - [anon_sym_BANG_EQ] = ACTIONS(4657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), - [anon_sym_EQ_EQ] = ACTIONS(4657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), - [anon_sym_LT_EQ] = ACTIONS(4659), - [anon_sym_GT_EQ] = ACTIONS(4659), - [anon_sym_BANGin] = ACTIONS(4659), - [anon_sym_is] = ACTIONS(4657), - [anon_sym_BANGis] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_as_QMARK] = ACTIONS(4659), - [anon_sym_PLUS_PLUS] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_BANG_BANG] = ACTIONS(4659), - [anon_sym_suspend] = ACTIONS(4657), - [anon_sym_sealed] = ACTIONS(4657), - [anon_sym_annotation] = ACTIONS(4657), - [anon_sym_data] = ACTIONS(4657), - [anon_sym_inner] = ACTIONS(4657), - [anon_sym_value] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_lateinit] = ACTIONS(4657), - [anon_sym_public] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4657), - [anon_sym_internal] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4657), - [anon_sym_tailrec] = ACTIONS(4657), - [anon_sym_operator] = ACTIONS(4657), - [anon_sym_infix] = ACTIONS(4657), - [anon_sym_inline] = ACTIONS(4657), - [anon_sym_external] = ACTIONS(4657), - [sym_property_modifier] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_final] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_vararg] = ACTIONS(4657), - [anon_sym_noinline] = ACTIONS(4657), - [anon_sym_crossinline] = ACTIONS(4657), - [anon_sym_expect] = ACTIONS(4657), - [anon_sym_actual] = ACTIONS(4657), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4659), - [sym__automatic_semicolon] = ACTIONS(4659), - [sym_safe_nav] = ACTIONS(4659), + [aux_sym_type_constraints_repeat1] = STATE(3651), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(6973), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), [sym_multiline_comment] = ACTIONS(3), }, [3652] = { - [sym_enum_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3653] = { - [sym__alpha_identifier] = ACTIONS(4649), - [anon_sym_AT] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_as] = ACTIONS(4649), - [anon_sym_EQ] = ACTIONS(4649), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_by] = ACTIONS(4649), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_get] = ACTIONS(4649), - [anon_sym_set] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4649), - [sym_label] = ACTIONS(4651), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_DOT_DOT] = ACTIONS(4651), - [anon_sym_QMARK_COLON] = ACTIONS(4651), - [anon_sym_AMP_AMP] = ACTIONS(4651), - [anon_sym_PIPE_PIPE] = ACTIONS(4651), - [anon_sym_else] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4651), - [anon_sym_PLUS_EQ] = ACTIONS(4651), - [anon_sym_DASH_EQ] = ACTIONS(4651), - [anon_sym_STAR_EQ] = ACTIONS(4651), - [anon_sym_SLASH_EQ] = ACTIONS(4651), - [anon_sym_PERCENT_EQ] = ACTIONS(4651), - [anon_sym_BANG_EQ] = ACTIONS(4649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4651), - [anon_sym_EQ_EQ] = ACTIONS(4649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4651), - [anon_sym_LT_EQ] = ACTIONS(4651), - [anon_sym_GT_EQ] = ACTIONS(4651), - [anon_sym_BANGin] = ACTIONS(4651), - [anon_sym_is] = ACTIONS(4649), - [anon_sym_BANGis] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4649), - [anon_sym_as_QMARK] = ACTIONS(4651), - [anon_sym_PLUS_PLUS] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4651), - [anon_sym_BANG_BANG] = ACTIONS(4651), - [anon_sym_suspend] = ACTIONS(4649), - [anon_sym_sealed] = ACTIONS(4649), - [anon_sym_annotation] = ACTIONS(4649), - [anon_sym_data] = ACTIONS(4649), - [anon_sym_inner] = ACTIONS(4649), - [anon_sym_value] = ACTIONS(4649), - [anon_sym_override] = ACTIONS(4649), - [anon_sym_lateinit] = ACTIONS(4649), - [anon_sym_public] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4649), - [anon_sym_internal] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4649), - [anon_sym_tailrec] = ACTIONS(4649), - [anon_sym_operator] = ACTIONS(4649), - [anon_sym_infix] = ACTIONS(4649), - [anon_sym_inline] = ACTIONS(4649), - [anon_sym_external] = ACTIONS(4649), - [sym_property_modifier] = ACTIONS(4649), - [anon_sym_abstract] = ACTIONS(4649), - [anon_sym_final] = ACTIONS(4649), - [anon_sym_open] = ACTIONS(4649), - [anon_sym_vararg] = ACTIONS(4649), - [anon_sym_noinline] = ACTIONS(4649), - [anon_sym_crossinline] = ACTIONS(4649), - [anon_sym_expect] = ACTIONS(4649), - [anon_sym_actual] = ACTIONS(4649), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4651), - [sym__automatic_semicolon] = ACTIONS(4651), - [sym_safe_nav] = ACTIONS(4651), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3654] = { - [sym_enum_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [3655] = { - [sym__alpha_identifier] = ACTIONS(4693), - [anon_sym_AT] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_as] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4693), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_where] = ACTIONS(4693), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4695), - [anon_sym_get] = ACTIONS(4693), - [anon_sym_set] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [sym_label] = ACTIONS(4695), - [anon_sym_in] = ACTIONS(4693), - [anon_sym_DOT_DOT] = ACTIONS(4695), - [anon_sym_QMARK_COLON] = ACTIONS(4695), - [anon_sym_AMP_AMP] = ACTIONS(4695), - [anon_sym_PIPE_PIPE] = ACTIONS(4695), - [anon_sym_else] = ACTIONS(4693), - [anon_sym_COLON_COLON] = ACTIONS(4695), - [anon_sym_PLUS_EQ] = ACTIONS(4695), - [anon_sym_DASH_EQ] = ACTIONS(4695), - [anon_sym_STAR_EQ] = ACTIONS(4695), - [anon_sym_SLASH_EQ] = ACTIONS(4695), - [anon_sym_PERCENT_EQ] = ACTIONS(4695), - [anon_sym_BANG_EQ] = ACTIONS(4693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4695), - [anon_sym_EQ_EQ] = ACTIONS(4693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4695), - [anon_sym_LT_EQ] = ACTIONS(4695), - [anon_sym_GT_EQ] = ACTIONS(4695), - [anon_sym_BANGin] = ACTIONS(4695), - [anon_sym_is] = ACTIONS(4693), - [anon_sym_BANGis] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_as_QMARK] = ACTIONS(4695), - [anon_sym_PLUS_PLUS] = ACTIONS(4695), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_BANG_BANG] = ACTIONS(4695), - [anon_sym_suspend] = ACTIONS(4693), - [anon_sym_sealed] = ACTIONS(4693), - [anon_sym_annotation] = ACTIONS(4693), - [anon_sym_data] = ACTIONS(4693), - [anon_sym_inner] = ACTIONS(4693), - [anon_sym_value] = ACTIONS(4693), - [anon_sym_override] = ACTIONS(4693), - [anon_sym_lateinit] = ACTIONS(4693), - [anon_sym_public] = ACTIONS(4693), - [anon_sym_private] = ACTIONS(4693), - [anon_sym_internal] = ACTIONS(4693), - [anon_sym_protected] = ACTIONS(4693), - [anon_sym_tailrec] = ACTIONS(4693), - [anon_sym_operator] = ACTIONS(4693), - [anon_sym_infix] = ACTIONS(4693), - [anon_sym_inline] = ACTIONS(4693), - [anon_sym_external] = ACTIONS(4693), - [sym_property_modifier] = ACTIONS(4693), - [anon_sym_abstract] = ACTIONS(4693), - [anon_sym_final] = ACTIONS(4693), - [anon_sym_open] = ACTIONS(4693), - [anon_sym_vararg] = ACTIONS(4693), - [anon_sym_noinline] = ACTIONS(4693), - [anon_sym_crossinline] = ACTIONS(4693), - [anon_sym_expect] = ACTIONS(4693), - [anon_sym_actual] = ACTIONS(4693), - [sym_line_comment] = ACTIONS(3), - [anon_sym_L] = ACTIONS(6821), - [sym__backtick_identifier] = ACTIONS(4695), - [sym__automatic_semicolon] = ACTIONS(4695), - [sym_safe_nav] = ACTIONS(4695), + [sym_type_constraints] = STATE(3913), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3656] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3657] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6825), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(4179), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_object] = ACTIONS(4179), + [anon_sym_fun] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4179), + [anon_sym_set] = ACTIONS(4179), + [anon_sym_this] = ACTIONS(4179), + [anon_sym_super] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4181), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_throw] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_BANGin] = ACTIONS(4181), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_BANGis] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4179), + [anon_sym_sealed] = ACTIONS(4179), + [anon_sym_annotation] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4179), + [anon_sym_inner] = ACTIONS(4179), + [anon_sym_value] = ACTIONS(4179), + [anon_sym_override] = ACTIONS(4179), + [anon_sym_lateinit] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_private] = ACTIONS(4179), + [anon_sym_internal] = ACTIONS(4179), + [anon_sym_protected] = ACTIONS(4179), + [anon_sym_tailrec] = ACTIONS(4179), + [anon_sym_operator] = ACTIONS(4179), + [anon_sym_infix] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_external] = ACTIONS(4179), + [sym_property_modifier] = ACTIONS(4179), + [anon_sym_abstract] = ACTIONS(4179), + [anon_sym_final] = ACTIONS(4179), + [anon_sym_open] = ACTIONS(4179), + [anon_sym_vararg] = ACTIONS(4179), + [anon_sym_noinline] = ACTIONS(4179), + [anon_sym_crossinline] = ACTIONS(4179), + [anon_sym_expect] = ACTIONS(4179), + [anon_sym_actual] = ACTIONS(4179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4181), + [anon_sym_continue_AT] = ACTIONS(4181), + [anon_sym_break_AT] = ACTIONS(4181), + [anon_sym_this_AT] = ACTIONS(4181), + [anon_sym_super_AT] = ACTIONS(4181), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [anon_sym_SQUOTE] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4181), }, [3658] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(6827), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6976), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3659] = { - [sym_enum_class_body] = STATE(3876), - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [sym_label] = ACTIONS(4703), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_suspend] = ACTIONS(4701), - [anon_sym_sealed] = ACTIONS(4701), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_override] = ACTIONS(4701), - [anon_sym_lateinit] = ACTIONS(4701), - [anon_sym_public] = ACTIONS(4701), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_internal] = ACTIONS(4701), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_tailrec] = ACTIONS(4701), - [anon_sym_operator] = ACTIONS(4701), - [anon_sym_infix] = ACTIONS(4701), - [anon_sym_inline] = ACTIONS(4701), - [anon_sym_external] = ACTIONS(4701), - [sym_property_modifier] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_final] = ACTIONS(4701), - [anon_sym_open] = ACTIONS(4701), - [anon_sym_vararg] = ACTIONS(4701), - [anon_sym_noinline] = ACTIONS(4701), - [anon_sym_crossinline] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4703), - [sym__automatic_semicolon] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6980), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [3660] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym_class_body] = STATE(3832), + [sym_type_constraints] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3661] = { - [sym__alpha_identifier] = ACTIONS(4665), - [anon_sym_AT] = ACTIONS(4667), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_as] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4667), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_LPAREN] = ACTIONS(4667), - [anon_sym_COMMA] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4665), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_where] = ACTIONS(4665), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4667), - [anon_sym_get] = ACTIONS(4665), - [anon_sym_set] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [sym_label] = ACTIONS(4667), - [anon_sym_in] = ACTIONS(4665), - [anon_sym_DOT_DOT] = ACTIONS(4667), - [anon_sym_QMARK_COLON] = ACTIONS(4667), - [anon_sym_AMP_AMP] = ACTIONS(4667), - [anon_sym_PIPE_PIPE] = ACTIONS(4667), - [anon_sym_else] = ACTIONS(4665), - [anon_sym_COLON_COLON] = ACTIONS(4667), - [anon_sym_PLUS_EQ] = ACTIONS(4667), - [anon_sym_DASH_EQ] = ACTIONS(4667), - [anon_sym_STAR_EQ] = ACTIONS(4667), - [anon_sym_SLASH_EQ] = ACTIONS(4667), - [anon_sym_PERCENT_EQ] = ACTIONS(4667), - [anon_sym_BANG_EQ] = ACTIONS(4665), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), - [anon_sym_EQ_EQ] = ACTIONS(4665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), - [anon_sym_LT_EQ] = ACTIONS(4667), - [anon_sym_GT_EQ] = ACTIONS(4667), - [anon_sym_BANGin] = ACTIONS(4667), - [anon_sym_is] = ACTIONS(4665), - [anon_sym_BANGis] = ACTIONS(4667), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_as_QMARK] = ACTIONS(4667), - [anon_sym_PLUS_PLUS] = ACTIONS(4667), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_BANG_BANG] = ACTIONS(4667), - [anon_sym_suspend] = ACTIONS(4665), - [anon_sym_sealed] = ACTIONS(4665), - [anon_sym_annotation] = ACTIONS(4665), - [anon_sym_data] = ACTIONS(4665), - [anon_sym_inner] = ACTIONS(4665), - [anon_sym_value] = ACTIONS(4665), - [anon_sym_override] = ACTIONS(4665), - [anon_sym_lateinit] = ACTIONS(4665), - [anon_sym_public] = ACTIONS(4665), - [anon_sym_private] = ACTIONS(4665), - [anon_sym_internal] = ACTIONS(4665), - [anon_sym_protected] = ACTIONS(4665), - [anon_sym_tailrec] = ACTIONS(4665), - [anon_sym_operator] = ACTIONS(4665), - [anon_sym_infix] = ACTIONS(4665), - [anon_sym_inline] = ACTIONS(4665), - [anon_sym_external] = ACTIONS(4665), - [sym_property_modifier] = ACTIONS(4665), - [anon_sym_abstract] = ACTIONS(4665), - [anon_sym_final] = ACTIONS(4665), - [anon_sym_open] = ACTIONS(4665), - [anon_sym_vararg] = ACTIONS(4665), - [anon_sym_noinline] = ACTIONS(4665), - [anon_sym_crossinline] = ACTIONS(4665), - [anon_sym_expect] = ACTIONS(4665), - [anon_sym_actual] = ACTIONS(4665), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4667), - [sym__automatic_semicolon] = ACTIONS(4667), - [sym_safe_nav] = ACTIONS(4667), + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3662] = { - [sym__alpha_identifier] = ACTIONS(4548), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4548), - [anon_sym_set] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [sym_label] = ACTIONS(4551), - [anon_sym_in] = ACTIONS(4548), - [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(4548), - [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(4548), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [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(4548), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [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(4548), - [anon_sym_sealed] = ACTIONS(4548), - [anon_sym_annotation] = ACTIONS(4548), - [anon_sym_data] = ACTIONS(4548), - [anon_sym_inner] = ACTIONS(4548), - [anon_sym_value] = ACTIONS(4548), - [anon_sym_override] = ACTIONS(4548), - [anon_sym_lateinit] = ACTIONS(4548), - [anon_sym_public] = ACTIONS(4548), - [anon_sym_private] = ACTIONS(4548), - [anon_sym_internal] = ACTIONS(4548), - [anon_sym_protected] = ACTIONS(4548), - [anon_sym_tailrec] = ACTIONS(4548), - [anon_sym_operator] = ACTIONS(4548), - [anon_sym_infix] = ACTIONS(4548), - [anon_sym_inline] = ACTIONS(4548), - [anon_sym_external] = ACTIONS(4548), - [sym_property_modifier] = ACTIONS(4548), - [anon_sym_abstract] = ACTIONS(4548), - [anon_sym_final] = ACTIONS(4548), - [anon_sym_open] = ACTIONS(4548), - [anon_sym_vararg] = ACTIONS(4548), - [anon_sym_noinline] = ACTIONS(4548), - [anon_sym_crossinline] = ACTIONS(4548), - [anon_sym_expect] = ACTIONS(4548), - [anon_sym_actual] = ACTIONS(4548), - [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), + [sym_type_constraints] = STATE(3924), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [3663] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3937), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3664] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4485), + [anon_sym_AT] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_as] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_COMMA] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_get] = ACTIONS(4485), + [anon_sym_set] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [sym_label] = ACTIONS(4487), + [anon_sym_in] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4487), + [anon_sym_PIPE_PIPE] = ACTIONS(4487), + [anon_sym_else] = ACTIONS(4485), + [anon_sym_catch] = ACTIONS(4485), + [anon_sym_finally] = ACTIONS(4485), + [anon_sym_COLON_COLON] = ACTIONS(4487), + [anon_sym_PLUS_EQ] = ACTIONS(4487), + [anon_sym_DASH_EQ] = ACTIONS(4487), + [anon_sym_STAR_EQ] = ACTIONS(4487), + [anon_sym_SLASH_EQ] = ACTIONS(4487), + [anon_sym_PERCENT_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ] = ACTIONS(4485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ] = ACTIONS(4485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_BANGin] = ACTIONS(4487), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_SLASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_as_QMARK] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(4487), + [anon_sym_DASH_DASH] = ACTIONS(4487), + [anon_sym_BANG_BANG] = ACTIONS(4487), + [anon_sym_suspend] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_annotation] = ACTIONS(4485), + [anon_sym_data] = ACTIONS(4485), + [anon_sym_inner] = ACTIONS(4485), + [anon_sym_value] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_lateinit] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_tailrec] = ACTIONS(4485), + [anon_sym_operator] = ACTIONS(4485), + [anon_sym_infix] = ACTIONS(4485), + [anon_sym_inline] = ACTIONS(4485), + [anon_sym_external] = ACTIONS(4485), + [sym_property_modifier] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_final] = ACTIONS(4485), + [anon_sym_open] = ACTIONS(4485), + [anon_sym_vararg] = ACTIONS(4485), + [anon_sym_noinline] = ACTIONS(4485), + [anon_sym_crossinline] = ACTIONS(4485), + [anon_sym_expect] = ACTIONS(4485), + [anon_sym_actual] = ACTIONS(4485), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4487), + [sym__automatic_semicolon] = ACTIONS(4487), + [sym_safe_nav] = ACTIONS(4487), [sym_multiline_comment] = ACTIONS(3), }, [3665] = { - [sym__alpha_identifier] = ACTIONS(4591), - [anon_sym_AT] = ACTIONS(4593), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_as] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_COMMA] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(4591), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4591), - [anon_sym_DOT_DOT] = ACTIONS(4593), - [anon_sym_QMARK_COLON] = ACTIONS(4593), - [anon_sym_AMP_AMP] = ACTIONS(4593), - [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4591), - [anon_sym_COLON_COLON] = ACTIONS(4593), - [anon_sym_PLUS_EQ] = ACTIONS(4593), - [anon_sym_DASH_EQ] = ACTIONS(4593), - [anon_sym_STAR_EQ] = ACTIONS(4593), - [anon_sym_SLASH_EQ] = ACTIONS(4593), - [anon_sym_PERCENT_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_BANGin] = ACTIONS(4593), - [anon_sym_is] = ACTIONS(4591), - [anon_sym_BANGis] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_as_QMARK] = ACTIONS(4593), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4593), - [anon_sym_suspend] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_annotation] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4591), - [anon_sym_inner] = ACTIONS(4591), - [anon_sym_value] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_lateinit] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_tailrec] = ACTIONS(4591), - [anon_sym_operator] = ACTIONS(4591), - [anon_sym_infix] = ACTIONS(4591), - [anon_sym_inline] = ACTIONS(4591), - [anon_sym_external] = ACTIONS(4591), - [sym_property_modifier] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_open] = ACTIONS(4591), - [anon_sym_vararg] = ACTIONS(4591), - [anon_sym_noinline] = ACTIONS(4591), - [anon_sym_crossinline] = ACTIONS(4591), - [anon_sym_expect] = ACTIONS(4591), - [anon_sym_actual] = ACTIONS(4591), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4593), - [sym__automatic_semicolon] = ACTIONS(4593), - [sym_safe_nav] = ACTIONS(4593), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3917), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [3666] = { - [aux_sym_type_constraints_repeat1] = STATE(3632), - [sym__alpha_identifier] = ACTIONS(4398), - [anon_sym_AT] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(4400), - [anon_sym_RBRACE] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(4400), - [anon_sym_COMMA] = ACTIONS(6873), - [anon_sym_by] = 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(4400), - [sym_label] = ACTIONS(4398), - [anon_sym_in] = ACTIONS(4398), - [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_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_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_PLUS_PLUS] = ACTIONS(4400), - [anon_sym_DASH_DASH] = ACTIONS(4400), - [anon_sym_BANG] = ACTIONS(4398), - [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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4400), + [sym_class_body] = STATE(3909), + [sym_type_constraints] = STATE(3813), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), + [sym_multiline_comment] = ACTIONS(3), }, [3667] = { - [sym_class_body] = STATE(3908), - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4492), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(6984), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [3668] = { - [sym__alpha_identifier] = ACTIONS(4554), - [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(4554), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_object] = ACTIONS(4554), - [anon_sym_fun] = ACTIONS(4554), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4554), - [anon_sym_set] = ACTIONS(4554), - [anon_sym_this] = ACTIONS(4554), - [anon_sym_super] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4556), - [sym_label] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4554), - [anon_sym_null] = ACTIONS(4554), - [anon_sym_if] = ACTIONS(4554), - [anon_sym_else] = ACTIONS(4554), - [anon_sym_when] = ACTIONS(4554), - [anon_sym_try] = ACTIONS(4554), - [anon_sym_throw] = ACTIONS(4554), - [anon_sym_return] = ACTIONS(4554), - [anon_sym_continue] = ACTIONS(4554), - [anon_sym_break] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_BANGin] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4554), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_suspend] = ACTIONS(4554), - [anon_sym_sealed] = ACTIONS(4554), - [anon_sym_annotation] = ACTIONS(4554), - [anon_sym_data] = ACTIONS(4554), - [anon_sym_inner] = ACTIONS(4554), - [anon_sym_value] = ACTIONS(4554), - [anon_sym_override] = ACTIONS(4554), - [anon_sym_lateinit] = ACTIONS(4554), - [anon_sym_public] = ACTIONS(4554), - [anon_sym_private] = ACTIONS(4554), - [anon_sym_internal] = ACTIONS(4554), - [anon_sym_protected] = ACTIONS(4554), - [anon_sym_tailrec] = ACTIONS(4554), - [anon_sym_operator] = ACTIONS(4554), - [anon_sym_infix] = ACTIONS(4554), - [anon_sym_inline] = ACTIONS(4554), - [anon_sym_external] = ACTIONS(4554), - [sym_property_modifier] = ACTIONS(4554), - [anon_sym_abstract] = ACTIONS(4554), - [anon_sym_final] = ACTIONS(4554), - [anon_sym_open] = ACTIONS(4554), - [anon_sym_vararg] = ACTIONS(4554), - [anon_sym_noinline] = ACTIONS(4554), - [anon_sym_crossinline] = ACTIONS(4554), - [anon_sym_expect] = ACTIONS(4554), - [anon_sym_actual] = ACTIONS(4554), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4556), - [anon_sym_continue_AT] = ACTIONS(4556), - [anon_sym_break_AT] = ACTIONS(4556), - [sym_real_literal] = ACTIONS(4556), - [sym_integer_literal] = ACTIONS(4554), - [sym_hex_literal] = ACTIONS(4556), - [sym_bin_literal] = ACTIONS(4556), - [anon_sym_true] = ACTIONS(4554), - [anon_sym_false] = ACTIONS(4554), - [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), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6986), + [anon_sym_L] = ACTIONS(6988), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), }, [3669] = { - [sym_enum_class_body] = STATE(3750), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4731), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), + [sym_type_constraints] = STATE(3944), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3670] = { - [sym_function_body] = STATE(3386), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(6875), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [3671] = { - [sym__alpha_identifier] = ACTIONS(4587), - [anon_sym_AT] = ACTIONS(4589), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym_get] = ACTIONS(4587), - [anon_sym_set] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [sym_label] = ACTIONS(4589), - [anon_sym_in] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_QMARK_COLON] = ACTIONS(4589), - [anon_sym_AMP_AMP] = ACTIONS(4589), - [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_else] = ACTIONS(4587), - [anon_sym_COLON_COLON] = ACTIONS(4589), - [anon_sym_PLUS_EQ] = ACTIONS(4589), - [anon_sym_DASH_EQ] = ACTIONS(4589), - [anon_sym_STAR_EQ] = ACTIONS(4589), - [anon_sym_SLASH_EQ] = ACTIONS(4589), - [anon_sym_PERCENT_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), - [anon_sym_LT_EQ] = ACTIONS(4589), - [anon_sym_GT_EQ] = ACTIONS(4589), - [anon_sym_BANGin] = ACTIONS(4589), - [anon_sym_is] = ACTIONS(4587), - [anon_sym_BANGis] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_as_QMARK] = ACTIONS(4589), - [anon_sym_PLUS_PLUS] = ACTIONS(4589), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_BANG_BANG] = ACTIONS(4589), - [anon_sym_suspend] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_annotation] = ACTIONS(4587), - [anon_sym_data] = ACTIONS(4587), - [anon_sym_inner] = ACTIONS(4587), - [anon_sym_value] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_lateinit] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_tailrec] = ACTIONS(4587), - [anon_sym_operator] = ACTIONS(4587), - [anon_sym_infix] = ACTIONS(4587), - [anon_sym_inline] = ACTIONS(4587), - [anon_sym_external] = ACTIONS(4587), - [sym_property_modifier] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_final] = ACTIONS(4587), - [anon_sym_open] = ACTIONS(4587), - [anon_sym_vararg] = ACTIONS(4587), - [anon_sym_noinline] = ACTIONS(4587), - [anon_sym_crossinline] = ACTIONS(4587), - [anon_sym_expect] = ACTIONS(4587), - [anon_sym_actual] = ACTIONS(4587), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4589), - [sym__automatic_semicolon] = ACTIONS(4589), - [sym_safe_nav] = ACTIONS(4589), - [sym_multiline_comment] = ACTIONS(3), - }, - [3672] = { - [sym__alpha_identifier] = ACTIONS(4554), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4554), - [anon_sym_set] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [sym_label] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4554), - [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(4554), - [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(4554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [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(4554), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [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(4554), - [anon_sym_sealed] = ACTIONS(4554), - [anon_sym_annotation] = ACTIONS(4554), - [anon_sym_data] = ACTIONS(4554), - [anon_sym_inner] = ACTIONS(4554), - [anon_sym_value] = ACTIONS(4554), - [anon_sym_override] = ACTIONS(4554), - [anon_sym_lateinit] = ACTIONS(4554), - [anon_sym_public] = ACTIONS(4554), - [anon_sym_private] = ACTIONS(4554), - [anon_sym_internal] = ACTIONS(4554), - [anon_sym_protected] = ACTIONS(4554), - [anon_sym_tailrec] = ACTIONS(4554), - [anon_sym_operator] = ACTIONS(4554), - [anon_sym_infix] = ACTIONS(4554), - [anon_sym_inline] = ACTIONS(4554), - [anon_sym_external] = ACTIONS(4554), - [sym_property_modifier] = ACTIONS(4554), - [anon_sym_abstract] = ACTIONS(4554), - [anon_sym_final] = ACTIONS(4554), - [anon_sym_open] = ACTIONS(4554), - [anon_sym_vararg] = ACTIONS(4554), - [anon_sym_noinline] = ACTIONS(4554), - [anon_sym_crossinline] = ACTIONS(4554), - [anon_sym_expect] = ACTIONS(4554), - [anon_sym_actual] = ACTIONS(4554), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4556), - [sym__automatic_semicolon] = ACTIONS(4556), - [sym_safe_nav] = ACTIONS(4556), - [sym_multiline_comment] = ACTIONS(3), - }, - [3673] = { - [sym__alpha_identifier] = ACTIONS(4677), - [anon_sym_AT] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_as] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_get] = ACTIONS(4677), - [anon_sym_set] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [sym_label] = ACTIONS(4679), - [anon_sym_in] = ACTIONS(4677), - [anon_sym_DOT_DOT] = ACTIONS(4679), - [anon_sym_QMARK_COLON] = ACTIONS(4679), - [anon_sym_AMP_AMP] = ACTIONS(4679), - [anon_sym_PIPE_PIPE] = ACTIONS(4679), - [anon_sym_else] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4679), - [anon_sym_PLUS_EQ] = ACTIONS(4679), - [anon_sym_DASH_EQ] = ACTIONS(4679), - [anon_sym_STAR_EQ] = ACTIONS(4679), - [anon_sym_SLASH_EQ] = ACTIONS(4679), - [anon_sym_PERCENT_EQ] = ACTIONS(4679), - [anon_sym_BANG_EQ] = ACTIONS(4677), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4679), - [anon_sym_EQ_EQ] = ACTIONS(4677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4679), - [anon_sym_LT_EQ] = ACTIONS(4679), - [anon_sym_GT_EQ] = ACTIONS(4679), - [anon_sym_BANGin] = ACTIONS(4679), - [anon_sym_is] = ACTIONS(4677), - [anon_sym_BANGis] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_as_QMARK] = ACTIONS(4679), - [anon_sym_PLUS_PLUS] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_BANG_BANG] = ACTIONS(4679), - [anon_sym_suspend] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4677), - [anon_sym_data] = ACTIONS(4677), - [anon_sym_inner] = ACTIONS(4677), - [anon_sym_value] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_lateinit] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_tailrec] = ACTIONS(4677), - [anon_sym_operator] = ACTIONS(4677), - [anon_sym_infix] = ACTIONS(4677), - [anon_sym_inline] = ACTIONS(4677), - [anon_sym_external] = ACTIONS(4677), - [sym_property_modifier] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_final] = ACTIONS(4677), - [anon_sym_open] = ACTIONS(4677), - [anon_sym_vararg] = ACTIONS(4677), - [anon_sym_noinline] = ACTIONS(4677), - [anon_sym_crossinline] = ACTIONS(4677), - [anon_sym_expect] = ACTIONS(4677), - [anon_sym_actual] = ACTIONS(4677), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4679), - [sym__automatic_semicolon] = ACTIONS(4679), - [sym_safe_nav] = ACTIONS(4679), - [sym_multiline_comment] = ACTIONS(3), - }, - [3674] = { - [sym_type_constraints] = STATE(4068), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6877), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), - }, - [3675] = { - [sym_type_constraints] = STATE(4067), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(6881), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), - }, - [3676] = { - [sym_type_constraints] = STATE(4064), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(6883), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), - }, - [3677] = { - [sym_type_constraints] = STATE(4061), - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(6885), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), - }, - [3678] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(6853), - [sym_multiline_comment] = ACTIONS(3), - }, - [3679] = { - [sym_type_constraints] = STATE(4059), - [sym_function_body] = STATE(3208), - [sym__block] = STATE(3353), [sym__alpha_identifier] = ACTIONS(4122), [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(6887), + [anon_sym_COLON] = ACTIONS(6771), [anon_sym_LBRACK] = ACTIONS(4124), [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), + [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(3128), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4122), [anon_sym_DOT] = ACTIONS(4122), [anon_sym_SEMI] = ACTIONS(4124), [anon_sym_get] = ACTIONS(4122), [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [sym_label] = 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_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), @@ -410758,553 +418313,1716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4122), [anon_sym_DASH] = ACTIONS(4122), [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4124), + [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), - [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), }, - [3680] = { - [sym_type_constraints] = STATE(3802), - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_RBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [anon_sym_DASH_GT] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [3671] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(6990), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + }, + [3672] = { + [sym__alpha_identifier] = ACTIONS(4345), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4345), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4347), + [anon_sym_QMARK_COLON] = ACTIONS(4347), + [anon_sym_AMP_AMP] = ACTIONS(4347), + [anon_sym_PIPE_PIPE] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4345), + [anon_sym_catch] = ACTIONS(4345), + [anon_sym_finally] = ACTIONS(4345), + [anon_sym_COLON_COLON] = ACTIONS(4347), + [anon_sym_PLUS_EQ] = ACTIONS(4347), + [anon_sym_DASH_EQ] = ACTIONS(4347), + [anon_sym_STAR_EQ] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [anon_sym_PERCENT_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_BANGin] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_BANGis] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_as_QMARK] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4345), + [anon_sym_sealed] = ACTIONS(4345), + [anon_sym_annotation] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4345), + [anon_sym_inner] = ACTIONS(4345), + [anon_sym_value] = ACTIONS(4345), + [anon_sym_override] = ACTIONS(4345), + [anon_sym_lateinit] = ACTIONS(4345), + [anon_sym_public] = ACTIONS(4345), + [anon_sym_private] = ACTIONS(4345), + [anon_sym_internal] = ACTIONS(4345), + [anon_sym_protected] = ACTIONS(4345), + [anon_sym_tailrec] = ACTIONS(4345), + [anon_sym_operator] = ACTIONS(4345), + [anon_sym_infix] = ACTIONS(4345), + [anon_sym_inline] = ACTIONS(4345), + [anon_sym_external] = ACTIONS(4345), + [sym_property_modifier] = ACTIONS(4345), + [anon_sym_abstract] = ACTIONS(4345), + [anon_sym_final] = ACTIONS(4345), + [anon_sym_open] = ACTIONS(4345), + [anon_sym_vararg] = ACTIONS(4345), + [anon_sym_noinline] = ACTIONS(4345), + [anon_sym_crossinline] = ACTIONS(4345), + [anon_sym_expect] = ACTIONS(4345), + [anon_sym_actual] = ACTIONS(4345), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4347), + [sym__automatic_semicolon] = ACTIONS(4347), + [sym_safe_nav] = ACTIONS(4347), + [sym_multiline_comment] = ACTIONS(3), + }, + [3673] = { + [sym_type_constraints] = STATE(3949), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + }, + [3674] = { + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(6992), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + }, + [3675] = { + [sym_type_constraints] = STATE(3973), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(6994), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_RBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [anon_sym_DASH_GT] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), + }, + [3676] = { + [aux_sym_user_type_repeat1] = STATE(3676), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_typealias] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_interface] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_val] = ACTIONS(4166), + [anon_sym_var] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(6998), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), + }, + [3677] = { + [sym_type_constraints] = STATE(3908), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3678] = { + [sym_type_constraints] = STATE(3984), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3679] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(7003), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3680] = { + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_constructor] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_LT] = ACTIONS(4009), + [anon_sym_where] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_in] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4009), + [anon_sym_is] = ACTIONS(4004), + [anon_sym_BANGis] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_suspend] = ACTIONS(4004), + [anon_sym_sealed] = ACTIONS(4004), + [anon_sym_annotation] = ACTIONS(4004), + [anon_sym_data] = ACTIONS(4004), + [anon_sym_inner] = ACTIONS(4004), + [anon_sym_value] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4004), + [anon_sym_lateinit] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_internal] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_tailrec] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_infix] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym_external] = ACTIONS(4004), + [sym_property_modifier] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_open] = ACTIONS(4004), + [anon_sym_vararg] = ACTIONS(4004), + [anon_sym_noinline] = ACTIONS(4004), + [anon_sym_crossinline] = ACTIONS(4004), + [anon_sym_expect] = ACTIONS(4004), + [anon_sym_actual] = ACTIONS(4004), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym__automatic_semicolon] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), + }, + [3681] = { + [sym_type_constraints] = STATE(4019), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3682] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4009), + [anon_sym_QMARK_COLON] = ACTIONS(4009), + [anon_sym_AMP_AMP] = ACTIONS(4009), + [anon_sym_PIPE_PIPE] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4009), + [anon_sym_EQ_EQ] = ACTIONS(4004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4009), + [anon_sym_LT_EQ] = ACTIONS(4009), + [anon_sym_GT_EQ] = ACTIONS(4009), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4004), + [anon_sym_PERCENT] = ACTIONS(4004), + [anon_sym_as_QMARK] = ACTIONS(4009), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4009), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), + }, + [3683] = { + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7013), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [3684] = { + [sym_type_constraints] = STATE(3868), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), + }, + [3685] = { + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + }, + [3686] = { + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + }, + [3687] = { + [sym_type_constraints] = STATE(4036), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7017), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [3688] = { + [aux_sym_user_type_repeat1] = STATE(3632), + [sym__alpha_identifier] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_typealias] = ACTIONS(4193), + [anon_sym_class] = ACTIONS(4193), + [anon_sym_interface] = ACTIONS(4193), + [anon_sym_enum] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4195), + [anon_sym_val] = ACTIONS(4193), + [anon_sym_var] = ACTIONS(4193), + [anon_sym_object] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_get] = ACTIONS(4193), + [anon_sym_set] = ACTIONS(4193), + [anon_sym_this] = ACTIONS(4193), + [anon_sym_super] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4195), + [sym_label] = ACTIONS(4193), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_do] = ACTIONS(4193), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_when] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_throw] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_COLON_COLON] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_PLUS] = ACTIONS(4195), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4195), + [anon_sym_suspend] = ACTIONS(4193), + [anon_sym_sealed] = ACTIONS(4193), + [anon_sym_annotation] = ACTIONS(4193), + [anon_sym_data] = ACTIONS(4193), + [anon_sym_inner] = ACTIONS(4193), + [anon_sym_value] = ACTIONS(4193), + [anon_sym_override] = ACTIONS(4193), + [anon_sym_lateinit] = ACTIONS(4193), + [anon_sym_public] = ACTIONS(4193), + [anon_sym_private] = ACTIONS(4193), + [anon_sym_internal] = ACTIONS(4193), + [anon_sym_protected] = ACTIONS(4193), + [anon_sym_tailrec] = ACTIONS(4193), + [anon_sym_operator] = ACTIONS(4193), + [anon_sym_infix] = ACTIONS(4193), + [anon_sym_inline] = ACTIONS(4193), + [anon_sym_external] = ACTIONS(4193), + [sym_property_modifier] = ACTIONS(4193), + [anon_sym_abstract] = ACTIONS(4193), + [anon_sym_final] = ACTIONS(4193), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_vararg] = ACTIONS(4193), + [anon_sym_noinline] = ACTIONS(4193), + [anon_sym_crossinline] = ACTIONS(4193), + [anon_sym_expect] = ACTIONS(4193), + [anon_sym_actual] = ACTIONS(4193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4195), + [anon_sym_continue_AT] = ACTIONS(4195), + [anon_sym_break_AT] = ACTIONS(4195), + [anon_sym_this_AT] = ACTIONS(4195), + [anon_sym_super_AT] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4195), + [sym_integer_literal] = ACTIONS(4193), + [sym_hex_literal] = ACTIONS(4195), + [sym_bin_literal] = ACTIONS(4195), + [anon_sym_true] = ACTIONS(4193), + [anon_sym_false] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4195), + [sym__backtick_identifier] = ACTIONS(4195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4195), + }, + [3689] = { + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), + }, + [3690] = { + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7019), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, - [3681] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [3682] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(6893), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [3683] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6893), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [3684] = { - [sym_function_body] = STATE(3339), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(6897), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [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_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), - }, - [3685] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [3686] = { - [sym_type_constraints] = STATE(3798), - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), + [3691] = { [sym__alpha_identifier] = ACTIONS(4179), [anon_sym_AT] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4179), [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_RBRACK] = ACTIONS(4181), [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), + [anon_sym_EQ] = ACTIONS(4179), + [anon_sym_constructor] = ACTIONS(4179), + [anon_sym_LBRACE] = ACTIONS(4181), [anon_sym_RBRACE] = ACTIONS(4181), [anon_sym_LPAREN] = ACTIONS(4181), [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), [anon_sym_LT] = ACTIONS(4179), [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(4179), [anon_sym_DOT] = ACTIONS(4179), [anon_sym_SEMI] = ACTIONS(4181), [anon_sym_get] = ACTIONS(4179), [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_DASH_GT] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(4179), [sym_label] = ACTIONS(4181), [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), [anon_sym_DOT_DOT] = ACTIONS(4181), [anon_sym_QMARK_COLON] = ACTIONS(4181), [anon_sym_AMP_AMP] = ACTIONS(4181), [anon_sym_PIPE_PIPE] = ACTIONS(4181), [anon_sym_else] = ACTIONS(4179), [anon_sym_COLON_COLON] = ACTIONS(4181), + [anon_sym_PLUS_EQ] = ACTIONS(4181), + [anon_sym_DASH_EQ] = ACTIONS(4181), + [anon_sym_STAR_EQ] = ACTIONS(4181), + [anon_sym_SLASH_EQ] = ACTIONS(4181), + [anon_sym_PERCENT_EQ] = ACTIONS(4181), [anon_sym_BANG_EQ] = ACTIONS(4179), [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), [anon_sym_EQ_EQ] = ACTIONS(4179), @@ -411317,7 +420035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4179), [anon_sym_DASH] = ACTIONS(4179), [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4179), [anon_sym_as_QMARK] = ACTIONS(4181), [anon_sym_PLUS_PLUS] = ACTIONS(4181), [anon_sym_DASH_DASH] = ACTIONS(4181), @@ -411350,13946 +420068,12612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4179), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4181), + [sym__automatic_semicolon] = ACTIONS(4181), [sym_safe_nav] = ACTIONS(4181), [sym_multiline_comment] = ACTIONS(3), }, - [3687] = { - [sym_type_constraints] = STATE(3797), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - }, - [3688] = { - [sym_type_constraints] = STATE(3791), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - }, - [3689] = { - [sym_enum_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - }, - [3690] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_as] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_by] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4595), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [anon_sym_get] = ACTIONS(4595), - [anon_sym_set] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4595), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4595), - [anon_sym_DOT_DOT] = ACTIONS(4597), - [anon_sym_QMARK_COLON] = ACTIONS(4597), - [anon_sym_AMP_AMP] = ACTIONS(4597), - [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4597), - [anon_sym_PLUS_EQ] = ACTIONS(4597), - [anon_sym_DASH_EQ] = ACTIONS(4597), - [anon_sym_STAR_EQ] = ACTIONS(4597), - [anon_sym_SLASH_EQ] = ACTIONS(4597), - [anon_sym_PERCENT_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_BANGin] = ACTIONS(4597), - [anon_sym_is] = ACTIONS(4595), - [anon_sym_BANGis] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_as_QMARK] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4597), - [anon_sym_suspend] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4595), - [anon_sym_inner] = ACTIONS(4595), - [anon_sym_value] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_lateinit] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_tailrec] = ACTIONS(4595), - [anon_sym_operator] = ACTIONS(4595), - [anon_sym_infix] = ACTIONS(4595), - [anon_sym_inline] = ACTIONS(4595), - [anon_sym_external] = ACTIONS(4595), - [sym_property_modifier] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_final] = ACTIONS(4595), - [anon_sym_open] = ACTIONS(4595), - [anon_sym_vararg] = ACTIONS(4595), - [anon_sym_noinline] = ACTIONS(4595), - [anon_sym_crossinline] = ACTIONS(4595), - [anon_sym_expect] = ACTIONS(4595), - [anon_sym_actual] = ACTIONS(4595), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4597), - [sym__automatic_semicolon] = ACTIONS(4597), - [sym_safe_nav] = ACTIONS(4597), - [sym_multiline_comment] = ACTIONS(3), - }, - [3691] = { - [sym_type_constraints] = STATE(3789), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - }, [3692] = { - [aux_sym_type_constraints_repeat1] = STATE(3666), - [sym__alpha_identifier] = ACTIONS(4433), - [anon_sym_AT] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(6873), - [anon_sym_by] = ACTIONS(4433), - [anon_sym_object] = ACTIONS(4433), - [anon_sym_fun] = ACTIONS(4433), - [anon_sym_SEMI] = ACTIONS(4435), - [anon_sym_get] = ACTIONS(4433), - [anon_sym_set] = ACTIONS(4433), - [anon_sym_this] = ACTIONS(4433), - [anon_sym_super] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4433), - [anon_sym_null] = ACTIONS(4433), - [anon_sym_if] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4433), - [anon_sym_when] = ACTIONS(4433), - [anon_sym_try] = ACTIONS(4433), - [anon_sym_throw] = ACTIONS(4433), - [anon_sym_return] = ACTIONS(4433), - [anon_sym_continue] = ACTIONS(4433), - [anon_sym_break] = ACTIONS(4433), - [anon_sym_COLON_COLON] = ACTIONS(4435), - [anon_sym_BANGin] = ACTIONS(4435), - [anon_sym_is] = ACTIONS(4433), - [anon_sym_BANGis] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4433), - [anon_sym_sealed] = ACTIONS(4433), - [anon_sym_annotation] = ACTIONS(4433), - [anon_sym_data] = ACTIONS(4433), - [anon_sym_inner] = ACTIONS(4433), - [anon_sym_value] = ACTIONS(4433), - [anon_sym_override] = ACTIONS(4433), - [anon_sym_lateinit] = ACTIONS(4433), - [anon_sym_public] = ACTIONS(4433), - [anon_sym_private] = ACTIONS(4433), - [anon_sym_internal] = ACTIONS(4433), - [anon_sym_protected] = ACTIONS(4433), - [anon_sym_tailrec] = ACTIONS(4433), - [anon_sym_operator] = ACTIONS(4433), - [anon_sym_infix] = ACTIONS(4433), - [anon_sym_inline] = ACTIONS(4433), - [anon_sym_external] = ACTIONS(4433), - [sym_property_modifier] = ACTIONS(4433), - [anon_sym_abstract] = ACTIONS(4433), - [anon_sym_final] = ACTIONS(4433), - [anon_sym_open] = ACTIONS(4433), - [anon_sym_vararg] = ACTIONS(4433), - [anon_sym_noinline] = ACTIONS(4433), - [anon_sym_crossinline] = ACTIONS(4433), - [anon_sym_expect] = ACTIONS(4433), - [anon_sym_actual] = ACTIONS(4433), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4435), - [anon_sym_continue_AT] = ACTIONS(4435), - [anon_sym_break_AT] = ACTIONS(4435), - [sym_real_literal] = ACTIONS(4435), - [sym_integer_literal] = ACTIONS(4433), - [sym_hex_literal] = ACTIONS(4435), - [sym_bin_literal] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4433), - [anon_sym_false] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4435), - [sym__backtick_identifier] = ACTIONS(4435), - [sym__automatic_semicolon] = ACTIONS(4435), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4435), + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7021), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, [3693] = { - [sym__alpha_identifier] = ACTIONS(4570), - [anon_sym_AT] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_as] = ACTIONS(4570), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(4573), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_by] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_where] = ACTIONS(4570), - [anon_sym_DOT] = ACTIONS(4570), - [anon_sym_SEMI] = ACTIONS(4573), - [anon_sym_get] = ACTIONS(4570), - [anon_sym_set] = ACTIONS(4570), - [anon_sym_STAR] = ACTIONS(4570), - [sym_label] = ACTIONS(4573), - [anon_sym_in] = ACTIONS(4570), - [anon_sym_DOT_DOT] = ACTIONS(4573), - [anon_sym_QMARK_COLON] = ACTIONS(4573), - [anon_sym_AMP_AMP] = ACTIONS(4573), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_else] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_BANG_EQ] = ACTIONS(4570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), - [anon_sym_EQ_EQ] = ACTIONS(4570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), - [anon_sym_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_EQ] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4570), - [anon_sym_BANGis] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_SLASH] = ACTIONS(4570), - [anon_sym_PERCENT] = ACTIONS(4570), - [anon_sym_as_QMARK] = ACTIONS(4573), - [anon_sym_PLUS_PLUS] = ACTIONS(4573), - [anon_sym_DASH_DASH] = ACTIONS(4573), - [anon_sym_BANG_BANG] = ACTIONS(4573), - [anon_sym_suspend] = ACTIONS(4570), - [anon_sym_sealed] = ACTIONS(4570), - [anon_sym_annotation] = ACTIONS(4570), - [anon_sym_data] = ACTIONS(4570), - [anon_sym_inner] = ACTIONS(4570), - [anon_sym_value] = ACTIONS(4570), - [anon_sym_override] = ACTIONS(4570), - [anon_sym_lateinit] = ACTIONS(4570), - [anon_sym_public] = ACTIONS(4570), - [anon_sym_private] = ACTIONS(4570), - [anon_sym_internal] = ACTIONS(4570), - [anon_sym_protected] = ACTIONS(4570), - [anon_sym_tailrec] = ACTIONS(4570), - [anon_sym_operator] = ACTIONS(4570), - [anon_sym_infix] = ACTIONS(4570), - [anon_sym_inline] = ACTIONS(4570), - [anon_sym_external] = ACTIONS(4570), - [sym_property_modifier] = ACTIONS(4570), - [anon_sym_abstract] = ACTIONS(4570), - [anon_sym_final] = ACTIONS(4570), - [anon_sym_open] = ACTIONS(4570), - [anon_sym_vararg] = ACTIONS(4570), - [anon_sym_noinline] = ACTIONS(4570), - [anon_sym_crossinline] = ACTIONS(4570), - [anon_sym_expect] = ACTIONS(4570), - [anon_sym_actual] = ACTIONS(4570), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4573), - [sym__automatic_semicolon] = ACTIONS(4573), - [sym_safe_nav] = ACTIONS(4573), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7023), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, [3694] = { - [sym__alpha_identifier] = ACTIONS(4705), - [anon_sym_AT] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4707), - [anon_sym_as] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4705), - [anon_sym_where] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_get] = ACTIONS(4705), - [anon_sym_set] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [sym_label] = ACTIONS(4707), - [anon_sym_in] = ACTIONS(4705), - [anon_sym_DOT_DOT] = ACTIONS(4707), - [anon_sym_QMARK_COLON] = ACTIONS(4707), - [anon_sym_AMP_AMP] = ACTIONS(4707), - [anon_sym_PIPE_PIPE] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4705), - [anon_sym_COLON_COLON] = ACTIONS(4707), - [anon_sym_PLUS_EQ] = ACTIONS(4707), - [anon_sym_DASH_EQ] = ACTIONS(4707), - [anon_sym_STAR_EQ] = ACTIONS(4707), - [anon_sym_SLASH_EQ] = ACTIONS(4707), - [anon_sym_PERCENT_EQ] = ACTIONS(4707), - [anon_sym_BANG_EQ] = ACTIONS(4705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), - [anon_sym_EQ_EQ] = ACTIONS(4705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), - [anon_sym_LT_EQ] = ACTIONS(4707), - [anon_sym_GT_EQ] = ACTIONS(4707), - [anon_sym_BANGin] = ACTIONS(4707), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_BANGis] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4705), - [anon_sym_PERCENT] = ACTIONS(4705), - [anon_sym_as_QMARK] = ACTIONS(4707), - [anon_sym_PLUS_PLUS] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4707), - [anon_sym_BANG_BANG] = ACTIONS(4707), - [anon_sym_suspend] = ACTIONS(4705), - [anon_sym_sealed] = ACTIONS(4705), - [anon_sym_annotation] = ACTIONS(4705), - [anon_sym_data] = ACTIONS(4705), - [anon_sym_inner] = ACTIONS(4705), - [anon_sym_value] = ACTIONS(4705), - [anon_sym_override] = ACTIONS(4705), - [anon_sym_lateinit] = ACTIONS(4705), - [anon_sym_public] = ACTIONS(4705), - [anon_sym_private] = ACTIONS(4705), - [anon_sym_internal] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4705), - [anon_sym_tailrec] = ACTIONS(4705), - [anon_sym_operator] = ACTIONS(4705), - [anon_sym_infix] = ACTIONS(4705), - [anon_sym_inline] = ACTIONS(4705), - [anon_sym_external] = ACTIONS(4705), - [sym_property_modifier] = ACTIONS(4705), - [anon_sym_abstract] = ACTIONS(4705), - [anon_sym_final] = ACTIONS(4705), - [anon_sym_open] = ACTIONS(4705), - [anon_sym_vararg] = ACTIONS(4705), - [anon_sym_noinline] = ACTIONS(4705), - [anon_sym_crossinline] = ACTIONS(4705), - [anon_sym_expect] = ACTIONS(4705), - [anon_sym_actual] = ACTIONS(4705), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4707), - [sym__automatic_semicolon] = ACTIONS(4707), - [sym_safe_nav] = ACTIONS(4707), + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7025), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, [3695] = { - [sym_class_body] = STATE(3945), - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [3696] = { - [sym_class_body] = STATE(3820), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [3697] = { - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_EQ] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(4412), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4410), - [anon_sym_GT] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4412), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_QMARK_COLON] = ACTIONS(4412), - [anon_sym_AMP_AMP] = ACTIONS(4412), - [anon_sym_PIPE_PIPE] = ACTIONS(4412), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_PLUS_EQ] = ACTIONS(4412), - [anon_sym_DASH_EQ] = ACTIONS(4412), - [anon_sym_STAR_EQ] = ACTIONS(4412), - [anon_sym_SLASH_EQ] = ACTIONS(4412), - [anon_sym_PERCENT_EQ] = ACTIONS(4412), - [anon_sym_BANG_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), - [anon_sym_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), - [anon_sym_LT_EQ] = ACTIONS(4412), - [anon_sym_GT_EQ] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_SLASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4412), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG_BANG] = ACTIONS(4412), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_safe_nav] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7027), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3698] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(6853), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7029), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3699] = { - [sym__alpha_identifier] = ACTIONS(4221), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_EQ] = ACTIONS(4223), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4221), - [anon_sym_where] = ACTIONS(4221), - [anon_sym_object] = ACTIONS(4221), - [anon_sym_fun] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4221), - [anon_sym_set] = ACTIONS(4221), - [anon_sym_this] = ACTIONS(4221), - [anon_sym_super] = ACTIONS(4221), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4221), - [anon_sym_in] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4221), - [anon_sym_if] = ACTIONS(4221), - [anon_sym_else] = ACTIONS(4221), - [anon_sym_when] = ACTIONS(4221), - [anon_sym_try] = ACTIONS(4221), - [anon_sym_throw] = ACTIONS(4221), - [anon_sym_return] = ACTIONS(4221), - [anon_sym_continue] = ACTIONS(4221), - [anon_sym_break] = ACTIONS(4221), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4221), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4221), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_suspend] = ACTIONS(4221), - [anon_sym_sealed] = ACTIONS(4221), - [anon_sym_annotation] = ACTIONS(4221), - [anon_sym_data] = ACTIONS(4221), - [anon_sym_inner] = ACTIONS(4221), - [anon_sym_value] = ACTIONS(4221), - [anon_sym_override] = ACTIONS(4221), - [anon_sym_lateinit] = ACTIONS(4221), - [anon_sym_public] = ACTIONS(4221), - [anon_sym_private] = ACTIONS(4221), - [anon_sym_internal] = ACTIONS(4221), - [anon_sym_protected] = ACTIONS(4221), - [anon_sym_tailrec] = ACTIONS(4221), - [anon_sym_operator] = ACTIONS(4221), - [anon_sym_infix] = ACTIONS(4221), - [anon_sym_inline] = ACTIONS(4221), - [anon_sym_external] = ACTIONS(4221), - [sym_property_modifier] = ACTIONS(4221), - [anon_sym_abstract] = ACTIONS(4221), - [anon_sym_final] = ACTIONS(4221), - [anon_sym_open] = ACTIONS(4221), - [anon_sym_vararg] = ACTIONS(4221), - [anon_sym_noinline] = ACTIONS(4221), - [anon_sym_crossinline] = ACTIONS(4221), - [anon_sym_expect] = ACTIONS(4221), - [anon_sym_actual] = ACTIONS(4221), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4221), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [3700] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3700), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [sym_label] = ACTIONS(4582), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3701] = { - [sym_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3702] = { - [sym_class_body] = STATE(3750), - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4731), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [3703] = { - [sym_type_arguments] = STATE(4016), - [sym__alpha_identifier] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_typealias] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_interface] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_val] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(6902), - [anon_sym_object] = ACTIONS(4108), - [anon_sym_fun] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_get] = ACTIONS(4108), - [anon_sym_set] = ACTIONS(4108), - [anon_sym_this] = ACTIONS(4108), - [anon_sym_super] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [sym_label] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_null] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4110), - [anon_sym_suspend] = ACTIONS(4108), - [anon_sym_sealed] = ACTIONS(4108), - [anon_sym_annotation] = ACTIONS(4108), - [anon_sym_data] = ACTIONS(4108), - [anon_sym_inner] = ACTIONS(4108), - [anon_sym_value] = ACTIONS(4108), - [anon_sym_override] = ACTIONS(4108), - [anon_sym_lateinit] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_internal] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_tailrec] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_infix] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_external] = ACTIONS(4108), - [sym_property_modifier] = ACTIONS(4108), - [anon_sym_abstract] = ACTIONS(4108), - [anon_sym_final] = ACTIONS(4108), - [anon_sym_open] = ACTIONS(4108), - [anon_sym_vararg] = ACTIONS(4108), - [anon_sym_noinline] = ACTIONS(4108), - [anon_sym_crossinline] = ACTIONS(4108), - [anon_sym_expect] = ACTIONS(4108), - [anon_sym_actual] = ACTIONS(4108), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4110), - [anon_sym_continue_AT] = ACTIONS(4110), - [anon_sym_break_AT] = ACTIONS(4110), - [sym_real_literal] = ACTIONS(4110), - [sym_integer_literal] = ACTIONS(4108), - [sym_hex_literal] = ACTIONS(4110), - [sym_bin_literal] = ACTIONS(4110), - [anon_sym_true] = ACTIONS(4108), - [anon_sym_false] = ACTIONS(4108), - [anon_sym_SQUOTE] = ACTIONS(4110), - [sym__backtick_identifier] = ACTIONS(4110), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4110), + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7033), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [3704] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_catch] = ACTIONS(4451), + [anon_sym_finally] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [3705] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(4020), + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), }, [3706] = { - [ts_builtin_sym_end] = ACTIONS(6904), - [sym__alpha_identifier] = ACTIONS(6906), - [anon_sym_AT] = ACTIONS(6904), - [anon_sym_LBRACK] = ACTIONS(6904), - [anon_sym_package] = ACTIONS(6906), - [anon_sym_import] = ACTIONS(6906), - [anon_sym_typealias] = ACTIONS(6906), - [anon_sym_class] = ACTIONS(6906), - [anon_sym_interface] = ACTIONS(6906), - [anon_sym_enum] = ACTIONS(6906), - [anon_sym_LBRACE] = ACTIONS(6904), - [anon_sym_LPAREN] = ACTIONS(6904), - [anon_sym_val] = ACTIONS(6906), - [anon_sym_var] = ACTIONS(6906), - [anon_sym_object] = ACTIONS(6906), - [anon_sym_fun] = ACTIONS(6906), - [anon_sym_get] = ACTIONS(6906), - [anon_sym_set] = ACTIONS(6906), - [anon_sym_this] = ACTIONS(6906), - [anon_sym_super] = ACTIONS(6906), - [anon_sym_STAR] = ACTIONS(6904), - [sym_label] = ACTIONS(6906), - [anon_sym_for] = ACTIONS(6906), - [anon_sym_while] = ACTIONS(6906), - [anon_sym_do] = ACTIONS(6906), - [anon_sym_null] = ACTIONS(6906), - [anon_sym_if] = ACTIONS(6906), - [anon_sym_when] = ACTIONS(6906), - [anon_sym_try] = ACTIONS(6906), - [anon_sym_throw] = ACTIONS(6906), - [anon_sym_return] = ACTIONS(6906), - [anon_sym_continue] = ACTIONS(6906), - [anon_sym_break] = ACTIONS(6906), - [anon_sym_COLON_COLON] = ACTIONS(6904), - [anon_sym_PLUS] = ACTIONS(6906), - [anon_sym_DASH] = ACTIONS(6906), - [anon_sym_PLUS_PLUS] = ACTIONS(6904), - [anon_sym_DASH_DASH] = ACTIONS(6904), - [anon_sym_BANG] = ACTIONS(6904), - [anon_sym_suspend] = ACTIONS(6906), - [anon_sym_sealed] = ACTIONS(6906), - [anon_sym_annotation] = ACTIONS(6906), - [anon_sym_data] = ACTIONS(6906), - [anon_sym_inner] = ACTIONS(6906), - [anon_sym_value] = ACTIONS(6906), - [anon_sym_override] = ACTIONS(6906), - [anon_sym_lateinit] = ACTIONS(6906), - [anon_sym_public] = ACTIONS(6906), - [anon_sym_private] = ACTIONS(6906), - [anon_sym_internal] = ACTIONS(6906), - [anon_sym_protected] = ACTIONS(6906), - [anon_sym_tailrec] = ACTIONS(6906), - [anon_sym_operator] = ACTIONS(6906), - [anon_sym_infix] = ACTIONS(6906), - [anon_sym_inline] = ACTIONS(6906), - [anon_sym_external] = ACTIONS(6906), - [sym_property_modifier] = ACTIONS(6906), - [anon_sym_abstract] = ACTIONS(6906), - [anon_sym_final] = ACTIONS(6906), - [anon_sym_open] = ACTIONS(6906), - [anon_sym_vararg] = ACTIONS(6906), - [anon_sym_noinline] = ACTIONS(6906), - [anon_sym_crossinline] = ACTIONS(6906), - [anon_sym_expect] = ACTIONS(6906), - [anon_sym_actual] = ACTIONS(6906), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6904), - [anon_sym_continue_AT] = ACTIONS(6904), - [anon_sym_break_AT] = ACTIONS(6904), - [sym_real_literal] = ACTIONS(6904), - [sym_integer_literal] = ACTIONS(6906), - [sym_hex_literal] = ACTIONS(6904), - [sym_bin_literal] = ACTIONS(6904), - [anon_sym_true] = ACTIONS(6906), - [anon_sym_false] = ACTIONS(6906), - [anon_sym_SQUOTE] = ACTIONS(6904), - [sym__backtick_identifier] = ACTIONS(6904), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6904), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [3707] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3954), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7035), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3708] = { - [sym__alpha_identifier] = ACTIONS(4661), - [anon_sym_AT] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_EQ] = ACTIONS(4663), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_by] = ACTIONS(4661), - [anon_sym_where] = ACTIONS(4661), - [anon_sym_object] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_get] = ACTIONS(4661), - [anon_sym_set] = ACTIONS(4661), - [anon_sym_this] = ACTIONS(4661), - [anon_sym_super] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4663), - [sym_label] = ACTIONS(4661), - [anon_sym_in] = ACTIONS(4661), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_else] = ACTIONS(4661), - [anon_sym_when] = ACTIONS(4661), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_throw] = ACTIONS(4661), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_continue] = ACTIONS(4661), - [anon_sym_break] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4663), - [anon_sym_BANGin] = ACTIONS(4663), - [anon_sym_is] = ACTIONS(4661), - [anon_sym_BANGis] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_PLUS_PLUS] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_suspend] = ACTIONS(4661), - [anon_sym_sealed] = ACTIONS(4661), - [anon_sym_annotation] = ACTIONS(4661), - [anon_sym_data] = ACTIONS(4661), - [anon_sym_inner] = ACTIONS(4661), - [anon_sym_value] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_lateinit] = ACTIONS(4661), - [anon_sym_public] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4661), - [anon_sym_internal] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4661), - [anon_sym_tailrec] = ACTIONS(4661), - [anon_sym_operator] = ACTIONS(4661), - [anon_sym_infix] = ACTIONS(4661), - [anon_sym_inline] = ACTIONS(4661), - [anon_sym_external] = ACTIONS(4661), - [sym_property_modifier] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_final] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_vararg] = ACTIONS(4661), - [anon_sym_noinline] = ACTIONS(4661), - [anon_sym_crossinline] = ACTIONS(4661), - [anon_sym_expect] = ACTIONS(4661), - [anon_sym_actual] = ACTIONS(4661), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4663), - [anon_sym_continue_AT] = ACTIONS(4663), - [anon_sym_break_AT] = ACTIONS(4663), - [sym_real_literal] = ACTIONS(4663), - [sym_integer_literal] = ACTIONS(4661), - [sym_hex_literal] = ACTIONS(4663), - [sym_bin_literal] = ACTIONS(4663), - [anon_sym_true] = ACTIONS(4661), - [anon_sym_false] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4663), - [sym__backtick_identifier] = ACTIONS(4663), - [sym__automatic_semicolon] = ACTIONS(4663), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4663), + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6706), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [3709] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3710] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3711] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3023), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3167), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3712] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3956), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3713] = { - [sym_class_body] = STATE(3333), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(6908), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_while] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym_type_constraints] = STATE(3859), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3714] = { - [sym__alpha_identifier] = ACTIONS(4657), - [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(4657), - [anon_sym_where] = ACTIONS(4657), - [anon_sym_object] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_get] = ACTIONS(4657), - [anon_sym_set] = ACTIONS(4657), - [anon_sym_this] = ACTIONS(4657), - [anon_sym_super] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4659), - [sym_label] = ACTIONS(4657), - [anon_sym_in] = ACTIONS(4657), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_else] = ACTIONS(4657), - [anon_sym_when] = ACTIONS(4657), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_throw] = ACTIONS(4657), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_continue] = ACTIONS(4657), - [anon_sym_break] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4659), - [anon_sym_BANGin] = ACTIONS(4659), - [anon_sym_is] = ACTIONS(4657), - [anon_sym_BANGis] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_PLUS_PLUS] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_suspend] = ACTIONS(4657), - [anon_sym_sealed] = ACTIONS(4657), - [anon_sym_annotation] = ACTIONS(4657), - [anon_sym_data] = ACTIONS(4657), - [anon_sym_inner] = ACTIONS(4657), - [anon_sym_value] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_lateinit] = ACTIONS(4657), - [anon_sym_public] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4657), - [anon_sym_internal] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4657), - [anon_sym_tailrec] = ACTIONS(4657), - [anon_sym_operator] = ACTIONS(4657), - [anon_sym_infix] = ACTIONS(4657), - [anon_sym_inline] = ACTIONS(4657), - [anon_sym_external] = ACTIONS(4657), - [sym_property_modifier] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_final] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_vararg] = ACTIONS(4657), - [anon_sym_noinline] = ACTIONS(4657), - [anon_sym_crossinline] = ACTIONS(4657), - [anon_sym_expect] = ACTIONS(4657), - [anon_sym_actual] = ACTIONS(4657), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4659), - [anon_sym_continue_AT] = ACTIONS(4659), - [anon_sym_break_AT] = ACTIONS(4659), - [sym_real_literal] = ACTIONS(4659), - [sym_integer_literal] = ACTIONS(4657), - [sym_hex_literal] = ACTIONS(4659), - [sym_bin_literal] = ACTIONS(4659), - [anon_sym_true] = ACTIONS(4657), - [anon_sym_false] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4659), - [sym__backtick_identifier] = ACTIONS(4659), - [sym__automatic_semicolon] = ACTIONS(4659), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4659), + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4579), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_value] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), }, [3715] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4585), + [anon_sym_where] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_get] = ACTIONS(4585), + [anon_sym_set] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4585), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_QMARK_COLON] = ACTIONS(4587), + [anon_sym_AMP_AMP] = ACTIONS(4587), + [anon_sym_PIPE_PIPE] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4585), + [anon_sym_COLON_COLON] = ACTIONS(4587), + [anon_sym_PLUS_EQ] = ACTIONS(4587), + [anon_sym_DASH_EQ] = ACTIONS(4587), + [anon_sym_STAR_EQ] = ACTIONS(4587), + [anon_sym_SLASH_EQ] = ACTIONS(4587), + [anon_sym_PERCENT_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4587), + [anon_sym_LT_EQ] = ACTIONS(4587), + [anon_sym_GT_EQ] = ACTIONS(4587), + [anon_sym_BANGin] = ACTIONS(4587), + [anon_sym_is] = ACTIONS(4585), + [anon_sym_BANGis] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4585), + [anon_sym_PERCENT] = ACTIONS(4585), + [anon_sym_as_QMARK] = ACTIONS(4587), + [anon_sym_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4587), + [anon_sym_suspend] = ACTIONS(4585), + [anon_sym_sealed] = ACTIONS(4585), + [anon_sym_annotation] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4585), + [anon_sym_inner] = ACTIONS(4585), + [anon_sym_value] = ACTIONS(4585), + [anon_sym_override] = ACTIONS(4585), + [anon_sym_lateinit] = ACTIONS(4585), + [anon_sym_public] = ACTIONS(4585), + [anon_sym_private] = ACTIONS(4585), + [anon_sym_internal] = ACTIONS(4585), + [anon_sym_protected] = ACTIONS(4585), + [anon_sym_tailrec] = ACTIONS(4585), + [anon_sym_operator] = ACTIONS(4585), + [anon_sym_infix] = ACTIONS(4585), + [anon_sym_inline] = ACTIONS(4585), + [anon_sym_external] = ACTIONS(4585), + [sym_property_modifier] = ACTIONS(4585), + [anon_sym_abstract] = ACTIONS(4585), + [anon_sym_final] = ACTIONS(4585), + [anon_sym_open] = ACTIONS(4585), + [anon_sym_vararg] = ACTIONS(4585), + [anon_sym_noinline] = ACTIONS(4585), + [anon_sym_crossinline] = ACTIONS(4585), + [anon_sym_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), [sym_multiline_comment] = ACTIONS(3), }, [3716] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3852), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3717] = { - [sym__alpha_identifier] = ACTIONS(4649), - [anon_sym_AT] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_by] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4649), - [anon_sym_object] = ACTIONS(4649), - [anon_sym_fun] = ACTIONS(4649), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_get] = ACTIONS(4649), - [anon_sym_set] = ACTIONS(4649), - [anon_sym_this] = ACTIONS(4649), - [anon_sym_super] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4651), - [sym_label] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_null] = ACTIONS(4649), - [anon_sym_if] = ACTIONS(4649), - [anon_sym_else] = ACTIONS(4649), - [anon_sym_when] = ACTIONS(4649), - [anon_sym_try] = ACTIONS(4649), - [anon_sym_throw] = ACTIONS(4649), - [anon_sym_return] = ACTIONS(4649), - [anon_sym_continue] = ACTIONS(4649), - [anon_sym_break] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4651), - [anon_sym_BANGin] = ACTIONS(4651), - [anon_sym_is] = ACTIONS(4649), - [anon_sym_BANGis] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4651), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_suspend] = ACTIONS(4649), - [anon_sym_sealed] = ACTIONS(4649), - [anon_sym_annotation] = ACTIONS(4649), - [anon_sym_data] = ACTIONS(4649), - [anon_sym_inner] = ACTIONS(4649), - [anon_sym_value] = ACTIONS(4649), - [anon_sym_override] = ACTIONS(4649), - [anon_sym_lateinit] = ACTIONS(4649), - [anon_sym_public] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4649), - [anon_sym_internal] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4649), - [anon_sym_tailrec] = ACTIONS(4649), - [anon_sym_operator] = ACTIONS(4649), - [anon_sym_infix] = ACTIONS(4649), - [anon_sym_inline] = ACTIONS(4649), - [anon_sym_external] = ACTIONS(4649), - [sym_property_modifier] = ACTIONS(4649), - [anon_sym_abstract] = ACTIONS(4649), - [anon_sym_final] = ACTIONS(4649), - [anon_sym_open] = ACTIONS(4649), - [anon_sym_vararg] = ACTIONS(4649), - [anon_sym_noinline] = ACTIONS(4649), - [anon_sym_crossinline] = ACTIONS(4649), - [anon_sym_expect] = ACTIONS(4649), - [anon_sym_actual] = ACTIONS(4649), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4651), - [anon_sym_continue_AT] = ACTIONS(4651), - [anon_sym_break_AT] = ACTIONS(4651), - [sym_real_literal] = ACTIONS(4651), - [sym_integer_literal] = ACTIONS(4649), - [sym_hex_literal] = ACTIONS(4651), - [sym_bin_literal] = ACTIONS(4651), - [anon_sym_true] = ACTIONS(4649), - [anon_sym_false] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4651), - [sym__backtick_identifier] = ACTIONS(4651), - [sym__automatic_semicolon] = ACTIONS(4651), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4651), + [sym_enum_class_body] = STATE(4021), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), }, [3718] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, [3719] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(6910), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), }, [3720] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(6914), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym_function_body] = STATE(3252), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_fun] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_this] = ACTIONS(4229), + [anon_sym_super] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4229), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_when] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_throw] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4231), + [anon_sym_continue_AT] = ACTIONS(4231), + [anon_sym_break_AT] = ACTIONS(4231), + [anon_sym_this_AT] = ACTIONS(4231), + [anon_sym_super_AT] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4231), + [sym_integer_literal] = ACTIONS(4229), + [sym_hex_literal] = ACTIONS(4231), + [sym_bin_literal] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4229), + [anon_sym_false] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4231), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4231), }, [3721] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(6918), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym_class_body] = STATE(3884), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), }, [3722] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [3723] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(6920), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(6918), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [3724] = { - [sym__alpha_identifier] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_EQ] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_COMMA] = ACTIONS(4597), - [anon_sym_by] = 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(4597), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4595), - [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_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_PLUS_PLUS] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4595), - [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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4597), + [sym_value_arguments] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(7087), + [anon_sym_AT] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_typealias] = ACTIONS(7087), + [anon_sym_class] = ACTIONS(7087), + [anon_sym_interface] = ACTIONS(7087), + [anon_sym_enum] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_LPAREN] = ACTIONS(7091), + [anon_sym_val] = ACTIONS(7087), + [anon_sym_var] = ACTIONS(7087), + [anon_sym_object] = ACTIONS(7087), + [anon_sym_fun] = ACTIONS(7087), + [anon_sym_get] = ACTIONS(7087), + [anon_sym_set] = ACTIONS(7087), + [anon_sym_this] = ACTIONS(7087), + [anon_sym_super] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7089), + [sym_label] = ACTIONS(7087), + [anon_sym_for] = ACTIONS(7087), + [anon_sym_while] = ACTIONS(7087), + [anon_sym_do] = ACTIONS(7087), + [anon_sym_null] = ACTIONS(7087), + [anon_sym_if] = ACTIONS(7087), + [anon_sym_when] = ACTIONS(7087), + [anon_sym_try] = ACTIONS(7087), + [anon_sym_throw] = ACTIONS(7087), + [anon_sym_return] = ACTIONS(7087), + [anon_sym_continue] = ACTIONS(7087), + [anon_sym_break] = ACTIONS(7087), + [anon_sym_COLON_COLON] = ACTIONS(7089), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_BANG] = ACTIONS(7089), + [anon_sym_suspend] = ACTIONS(7087), + [anon_sym_sealed] = ACTIONS(7087), + [anon_sym_annotation] = ACTIONS(7087), + [anon_sym_data] = ACTIONS(7087), + [anon_sym_inner] = ACTIONS(7087), + [anon_sym_value] = ACTIONS(7087), + [anon_sym_override] = ACTIONS(7087), + [anon_sym_lateinit] = ACTIONS(7087), + [anon_sym_public] = ACTIONS(7087), + [anon_sym_private] = ACTIONS(7087), + [anon_sym_internal] = ACTIONS(7087), + [anon_sym_protected] = ACTIONS(7087), + [anon_sym_tailrec] = ACTIONS(7087), + [anon_sym_operator] = ACTIONS(7087), + [anon_sym_infix] = ACTIONS(7087), + [anon_sym_inline] = ACTIONS(7087), + [anon_sym_external] = ACTIONS(7087), + [sym_property_modifier] = ACTIONS(7087), + [anon_sym_abstract] = ACTIONS(7087), + [anon_sym_final] = ACTIONS(7087), + [anon_sym_open] = ACTIONS(7087), + [anon_sym_vararg] = ACTIONS(7087), + [anon_sym_noinline] = ACTIONS(7087), + [anon_sym_crossinline] = ACTIONS(7087), + [anon_sym_expect] = ACTIONS(7087), + [anon_sym_actual] = ACTIONS(7087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7089), + [anon_sym_continue_AT] = ACTIONS(7089), + [anon_sym_break_AT] = ACTIONS(7089), + [anon_sym_this_AT] = ACTIONS(7089), + [anon_sym_super_AT] = ACTIONS(7089), + [sym_real_literal] = ACTIONS(7089), + [sym_integer_literal] = ACTIONS(7087), + [sym_hex_literal] = ACTIONS(7089), + [sym_bin_literal] = ACTIONS(7089), + [anon_sym_true] = ACTIONS(7087), + [anon_sym_false] = ACTIONS(7087), + [anon_sym_SQUOTE] = ACTIONS(7089), + [sym__backtick_identifier] = ACTIONS(7089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7089), }, [3725] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3700), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(6922), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4534), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4489), + [anon_sym_AT] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_constructor] = ACTIONS(4489), + [anon_sym_LBRACE] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_object] = ACTIONS(4489), + [anon_sym_fun] = ACTIONS(4489), + [anon_sym_get] = ACTIONS(4489), + [anon_sym_set] = ACTIONS(4489), + [anon_sym_this] = ACTIONS(4489), + [anon_sym_super] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4489), + [anon_sym_in] = ACTIONS(4489), + [anon_sym_null] = ACTIONS(4489), + [anon_sym_if] = ACTIONS(4489), + [anon_sym_else] = ACTIONS(4489), + [anon_sym_when] = ACTIONS(4489), + [anon_sym_try] = ACTIONS(4489), + [anon_sym_throw] = ACTIONS(4489), + [anon_sym_return] = ACTIONS(4489), + [anon_sym_continue] = ACTIONS(4489), + [anon_sym_break] = ACTIONS(4489), + [anon_sym_COLON_COLON] = ACTIONS(4491), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4489), + [anon_sym_BANGis] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_PLUS_PLUS] = ACTIONS(4491), + [anon_sym_DASH_DASH] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4489), + [anon_sym_suspend] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_annotation] = ACTIONS(4489), + [anon_sym_data] = ACTIONS(4489), + [anon_sym_inner] = ACTIONS(4489), + [anon_sym_value] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_lateinit] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_tailrec] = ACTIONS(4489), + [anon_sym_operator] = ACTIONS(4489), + [anon_sym_infix] = ACTIONS(4489), + [anon_sym_inline] = ACTIONS(4489), + [anon_sym_external] = ACTIONS(4489), + [sym_property_modifier] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_final] = ACTIONS(4489), + [anon_sym_open] = ACTIONS(4489), + [anon_sym_vararg] = ACTIONS(4489), + [anon_sym_noinline] = ACTIONS(4489), + [anon_sym_crossinline] = ACTIONS(4489), + [anon_sym_expect] = ACTIONS(4489), + [anon_sym_actual] = ACTIONS(4489), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4491), + [anon_sym_continue_AT] = ACTIONS(4491), + [anon_sym_break_AT] = ACTIONS(4491), + [anon_sym_this_AT] = ACTIONS(4491), + [anon_sym_super_AT] = ACTIONS(4491), + [sym_real_literal] = ACTIONS(4491), + [sym_integer_literal] = ACTIONS(4489), + [sym_hex_literal] = ACTIONS(4491), + [sym_bin_literal] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4489), + [anon_sym_false] = ACTIONS(4489), + [anon_sym_SQUOTE] = ACTIONS(4491), + [sym__backtick_identifier] = ACTIONS(4491), + [sym__automatic_semicolon] = ACTIONS(4491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4491), }, [3726] = { - [sym__alpha_identifier] = ACTIONS(4570), - [anon_sym_AT] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_EQ] = ACTIONS(4573), - [anon_sym_LBRACE] = ACTIONS(4573), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_by] = ACTIONS(4570), - [anon_sym_where] = ACTIONS(4570), - [anon_sym_object] = ACTIONS(4570), - [anon_sym_fun] = ACTIONS(4570), - [anon_sym_SEMI] = ACTIONS(4573), - [anon_sym_get] = ACTIONS(4570), - [anon_sym_set] = ACTIONS(4570), - [anon_sym_this] = ACTIONS(4570), - [anon_sym_super] = ACTIONS(4570), - [anon_sym_STAR] = ACTIONS(4573), - [sym_label] = ACTIONS(4570), - [anon_sym_in] = ACTIONS(4570), - [anon_sym_null] = ACTIONS(4570), - [anon_sym_if] = ACTIONS(4570), - [anon_sym_else] = ACTIONS(4570), - [anon_sym_when] = ACTIONS(4570), - [anon_sym_try] = ACTIONS(4570), - [anon_sym_throw] = ACTIONS(4570), - [anon_sym_return] = ACTIONS(4570), - [anon_sym_continue] = ACTIONS(4570), - [anon_sym_break] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4573), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4570), - [anon_sym_BANGis] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_PLUS_PLUS] = ACTIONS(4573), - [anon_sym_DASH_DASH] = ACTIONS(4573), - [anon_sym_BANG] = ACTIONS(4570), - [anon_sym_suspend] = ACTIONS(4570), - [anon_sym_sealed] = ACTIONS(4570), - [anon_sym_annotation] = ACTIONS(4570), - [anon_sym_data] = ACTIONS(4570), - [anon_sym_inner] = ACTIONS(4570), - [anon_sym_value] = ACTIONS(4570), - [anon_sym_override] = ACTIONS(4570), - [anon_sym_lateinit] = ACTIONS(4570), - [anon_sym_public] = ACTIONS(4570), - [anon_sym_private] = ACTIONS(4570), - [anon_sym_internal] = ACTIONS(4570), - [anon_sym_protected] = ACTIONS(4570), - [anon_sym_tailrec] = ACTIONS(4570), - [anon_sym_operator] = ACTIONS(4570), - [anon_sym_infix] = ACTIONS(4570), - [anon_sym_inline] = ACTIONS(4570), - [anon_sym_external] = ACTIONS(4570), - [sym_property_modifier] = ACTIONS(4570), - [anon_sym_abstract] = ACTIONS(4570), - [anon_sym_final] = ACTIONS(4570), - [anon_sym_open] = ACTIONS(4570), - [anon_sym_vararg] = ACTIONS(4570), - [anon_sym_noinline] = ACTIONS(4570), - [anon_sym_crossinline] = ACTIONS(4570), - [anon_sym_expect] = ACTIONS(4570), - [anon_sym_actual] = ACTIONS(4570), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4573), - [anon_sym_continue_AT] = ACTIONS(4573), - [anon_sym_break_AT] = ACTIONS(4573), - [sym_real_literal] = ACTIONS(4573), - [sym_integer_literal] = ACTIONS(4570), - [sym_hex_literal] = ACTIONS(4573), - [sym_bin_literal] = ACTIONS(4573), - [anon_sym_true] = ACTIONS(4570), - [anon_sym_false] = ACTIONS(4570), - [anon_sym_SQUOTE] = ACTIONS(4573), - [sym__backtick_identifier] = ACTIONS(4573), - [sym__automatic_semicolon] = ACTIONS(4573), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7094), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4573), }, [3727] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3728] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(6924), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_typealias] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3818), - [anon_sym_interface] = ACTIONS(3818), - [anon_sym_enum] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3818), - [anon_sym_var] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3823), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3823), - [sym_label] = ACTIONS(3818), - [anon_sym_for] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_do] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_type_constraints] = STATE(3954), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), }, [3729] = { - [sym_class_body] = STATE(3459), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(6926), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_RPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [3730] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3725), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(6922), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4576), - [sym_label] = ACTIONS(4578), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_PLUS_EQ] = ACTIONS(4578), - [anon_sym_DASH_EQ] = ACTIONS(4578), - [anon_sym_STAR_EQ] = ACTIONS(4578), - [anon_sym_SLASH_EQ] = ACTIONS(4578), - [anon_sym_PERCENT_EQ] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4576), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_suspend] = ACTIONS(4576), - [anon_sym_sealed] = ACTIONS(4576), - [anon_sym_annotation] = ACTIONS(4576), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_override] = ACTIONS(4576), - [anon_sym_lateinit] = ACTIONS(4576), - [anon_sym_public] = ACTIONS(4576), - [anon_sym_private] = ACTIONS(4576), - [anon_sym_internal] = ACTIONS(4576), - [anon_sym_protected] = ACTIONS(4576), - [anon_sym_tailrec] = ACTIONS(4576), - [anon_sym_operator] = ACTIONS(4576), - [anon_sym_infix] = ACTIONS(4576), - [anon_sym_inline] = ACTIONS(4576), - [anon_sym_external] = ACTIONS(4576), - [sym_property_modifier] = ACTIONS(4576), - [anon_sym_abstract] = ACTIONS(4576), - [anon_sym_final] = ACTIONS(4576), - [anon_sym_open] = ACTIONS(4576), - [anon_sym_vararg] = ACTIONS(4576), - [anon_sym_noinline] = ACTIONS(4576), - [anon_sym_crossinline] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4578), - [sym__automatic_semicolon] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_PLUS_EQ] = ACTIONS(4231), + [anon_sym_DASH_EQ] = ACTIONS(4231), + [anon_sym_STAR_EQ] = ACTIONS(4231), + [anon_sym_SLASH_EQ] = ACTIONS(4231), + [anon_sym_PERCENT_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, [3731] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4555), + [anon_sym_AT] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_COMMA] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4557), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4555), + [anon_sym_DOT_DOT] = ACTIONS(4557), + [anon_sym_QMARK_COLON] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4555), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(4557), + [anon_sym_DASH_EQ] = ACTIONS(4557), + [anon_sym_STAR_EQ] = ACTIONS(4557), + [anon_sym_SLASH_EQ] = ACTIONS(4557), + [anon_sym_PERCENT_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_BANGin] = ACTIONS(4557), + [anon_sym_is] = ACTIONS(4555), + [anon_sym_BANGis] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_as_QMARK] = ACTIONS(4557), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4557), + [anon_sym_suspend] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_annotation] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4555), + [anon_sym_inner] = ACTIONS(4555), + [anon_sym_value] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_lateinit] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_tailrec] = ACTIONS(4555), + [anon_sym_operator] = ACTIONS(4555), + [anon_sym_infix] = ACTIONS(4555), + [anon_sym_inline] = ACTIONS(4555), + [anon_sym_external] = ACTIONS(4555), + [sym_property_modifier] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_open] = ACTIONS(4555), + [anon_sym_vararg] = ACTIONS(4555), + [anon_sym_noinline] = ACTIONS(4555), + [anon_sym_crossinline] = ACTIONS(4555), + [anon_sym_expect] = ACTIONS(4555), + [anon_sym_actual] = ACTIONS(4555), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4557), + [sym__automatic_semicolon] = ACTIONS(4557), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), }, [3732] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2201), - [sym__comparison_operator] = STATE(2202), - [sym__in_operator] = STATE(2226), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1940), - [sym__multiplicative_operator] = STATE(2273), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2276), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6835), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6839), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6843), - [anon_sym_DOT_DOT] = ACTIONS(6845), - [anon_sym_QMARK_COLON] = ACTIONS(6847), - [anon_sym_AMP_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6851), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6857), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6857), - [anon_sym_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_BANGin] = ACTIONS(6861), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6839), - [anon_sym_PERCENT] = ACTIONS(6839), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(4036), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3733] = { - [sym_enum_class_body] = STATE(3777), - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), + [aux_sym__delegation_specifiers_repeat1] = STATE(3733), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7098), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, [3734] = { - [sym__alpha_identifier] = ACTIONS(4538), - [anon_sym_AT] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_object] = ACTIONS(4538), - [anon_sym_fun] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_get] = ACTIONS(4538), - [anon_sym_set] = ACTIONS(4538), - [anon_sym_this] = ACTIONS(4538), - [anon_sym_super] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4540), - [sym_label] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_null] = ACTIONS(4538), - [anon_sym_if] = ACTIONS(4538), - [anon_sym_else] = ACTIONS(4538), - [anon_sym_when] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4538), - [anon_sym_throw] = ACTIONS(4538), - [anon_sym_return] = ACTIONS(4538), - [anon_sym_continue] = ACTIONS(4538), - [anon_sym_break] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_BANGin] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_BANGis] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_suspend] = ACTIONS(4538), - [anon_sym_sealed] = ACTIONS(4538), - [anon_sym_annotation] = ACTIONS(4538), - [anon_sym_data] = ACTIONS(4538), - [anon_sym_inner] = ACTIONS(4538), - [anon_sym_value] = ACTIONS(4538), - [anon_sym_override] = ACTIONS(4538), - [anon_sym_lateinit] = ACTIONS(4538), - [anon_sym_public] = ACTIONS(4538), - [anon_sym_private] = ACTIONS(4538), - [anon_sym_internal] = ACTIONS(4538), - [anon_sym_protected] = ACTIONS(4538), - [anon_sym_tailrec] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_infix] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym_external] = ACTIONS(4538), - [sym_property_modifier] = ACTIONS(4538), - [anon_sym_abstract] = ACTIONS(4538), - [anon_sym_final] = ACTIONS(4538), - [anon_sym_open] = ACTIONS(4538), - [anon_sym_vararg] = ACTIONS(4538), - [anon_sym_noinline] = ACTIONS(4538), - [anon_sym_crossinline] = ACTIONS(4538), - [anon_sym_expect] = ACTIONS(4538), - [anon_sym_actual] = ACTIONS(4538), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4540), - [anon_sym_continue_AT] = ACTIONS(4540), - [anon_sym_break_AT] = ACTIONS(4540), - [sym_real_literal] = ACTIONS(4540), - [sym_integer_literal] = ACTIONS(4538), - [sym_hex_literal] = ACTIONS(4540), - [sym_bin_literal] = ACTIONS(4540), - [anon_sym_true] = ACTIONS(4538), - [anon_sym_false] = ACTIONS(4538), - [anon_sym_SQUOTE] = ACTIONS(4540), - [sym__backtick_identifier] = ACTIONS(4540), - [sym__automatic_semicolon] = ACTIONS(4540), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4540), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), }, [3735] = { - [sym__alpha_identifier] = ACTIONS(4548), - [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(4548), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_object] = ACTIONS(4548), - [anon_sym_fun] = ACTIONS(4548), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4548), - [anon_sym_set] = ACTIONS(4548), - [anon_sym_this] = ACTIONS(4548), - [anon_sym_super] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4548), - [anon_sym_null] = ACTIONS(4548), - [anon_sym_if] = ACTIONS(4548), - [anon_sym_else] = ACTIONS(4548), - [anon_sym_when] = ACTIONS(4548), - [anon_sym_try] = ACTIONS(4548), - [anon_sym_throw] = ACTIONS(4548), - [anon_sym_return] = ACTIONS(4548), - [anon_sym_continue] = ACTIONS(4548), - [anon_sym_break] = ACTIONS(4548), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym_BANGin] = ACTIONS(4551), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_suspend] = ACTIONS(4548), - [anon_sym_sealed] = ACTIONS(4548), - [anon_sym_annotation] = ACTIONS(4548), - [anon_sym_data] = ACTIONS(4548), - [anon_sym_inner] = ACTIONS(4548), - [anon_sym_value] = ACTIONS(4548), - [anon_sym_override] = ACTIONS(4548), - [anon_sym_lateinit] = ACTIONS(4548), - [anon_sym_public] = ACTIONS(4548), - [anon_sym_private] = ACTIONS(4548), - [anon_sym_internal] = ACTIONS(4548), - [anon_sym_protected] = ACTIONS(4548), - [anon_sym_tailrec] = ACTIONS(4548), - [anon_sym_operator] = ACTIONS(4548), - [anon_sym_infix] = ACTIONS(4548), - [anon_sym_inline] = ACTIONS(4548), - [anon_sym_external] = ACTIONS(4548), - [sym_property_modifier] = ACTIONS(4548), - [anon_sym_abstract] = ACTIONS(4548), - [anon_sym_final] = ACTIONS(4548), - [anon_sym_open] = ACTIONS(4548), - [anon_sym_vararg] = ACTIONS(4548), - [anon_sym_noinline] = ACTIONS(4548), - [anon_sym_crossinline] = ACTIONS(4548), - [anon_sym_expect] = ACTIONS(4548), - [anon_sym_actual] = ACTIONS(4548), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4551), - [anon_sym_continue_AT] = ACTIONS(4551), - [anon_sym_break_AT] = ACTIONS(4551), - [sym_real_literal] = ACTIONS(4551), - [sym_integer_literal] = ACTIONS(4548), - [sym_hex_literal] = ACTIONS(4551), - [sym_bin_literal] = ACTIONS(4551), - [anon_sym_true] = ACTIONS(4548), - [anon_sym_false] = ACTIONS(4548), - [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), + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, [3736] = { - [sym__alpha_identifier] = ACTIONS(4893), - [anon_sym_AT] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_as] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(4893), - [anon_sym_where] = ACTIONS(4893), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_get] = ACTIONS(4893), - [anon_sym_set] = ACTIONS(4893), - [anon_sym_STAR] = ACTIONS(4893), - [sym_label] = ACTIONS(4895), - [anon_sym_in] = ACTIONS(4893), - [anon_sym_DOT_DOT] = ACTIONS(4895), - [anon_sym_QMARK_COLON] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_else] = ACTIONS(4893), - [anon_sym_COLON_COLON] = ACTIONS(4895), - [anon_sym_PLUS_EQ] = ACTIONS(4895), - [anon_sym_DASH_EQ] = ACTIONS(4895), - [anon_sym_STAR_EQ] = ACTIONS(4895), - [anon_sym_SLASH_EQ] = ACTIONS(4895), - [anon_sym_PERCENT_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), - [anon_sym_LT_EQ] = ACTIONS(4895), - [anon_sym_GT_EQ] = ACTIONS(4895), - [anon_sym_BANGin] = ACTIONS(4895), - [anon_sym_is] = ACTIONS(4893), - [anon_sym_BANGis] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4893), - [anon_sym_DASH] = ACTIONS(4893), - [anon_sym_SLASH] = ACTIONS(4893), - [anon_sym_PERCENT] = ACTIONS(4893), - [anon_sym_as_QMARK] = ACTIONS(4895), - [anon_sym_PLUS_PLUS] = ACTIONS(4895), - [anon_sym_DASH_DASH] = ACTIONS(4895), - [anon_sym_BANG_BANG] = ACTIONS(4895), - [anon_sym_suspend] = ACTIONS(4893), - [anon_sym_sealed] = ACTIONS(4893), - [anon_sym_annotation] = ACTIONS(4893), - [anon_sym_data] = ACTIONS(4893), - [anon_sym_inner] = ACTIONS(4893), - [anon_sym_value] = ACTIONS(4893), - [anon_sym_override] = ACTIONS(4893), - [anon_sym_lateinit] = ACTIONS(4893), - [anon_sym_public] = ACTIONS(4893), - [anon_sym_private] = ACTIONS(4893), - [anon_sym_internal] = ACTIONS(4893), - [anon_sym_protected] = ACTIONS(4893), - [anon_sym_tailrec] = ACTIONS(4893), - [anon_sym_operator] = ACTIONS(4893), - [anon_sym_infix] = ACTIONS(4893), - [anon_sym_inline] = ACTIONS(4893), - [anon_sym_external] = ACTIONS(4893), - [sym_property_modifier] = ACTIONS(4893), - [anon_sym_abstract] = ACTIONS(4893), - [anon_sym_final] = ACTIONS(4893), - [anon_sym_open] = ACTIONS(4893), - [anon_sym_vararg] = ACTIONS(4893), - [anon_sym_noinline] = ACTIONS(4893), - [anon_sym_crossinline] = ACTIONS(4893), - [anon_sym_expect] = ACTIONS(4893), - [anon_sym_actual] = ACTIONS(4893), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4895), - [sym__automatic_semicolon] = ACTIONS(4895), - [sym_safe_nav] = ACTIONS(4895), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7103), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, [3737] = { - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [3738] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), + [sym_type_constraints] = STATE(4019), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3739] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym_class_body] = STATE(3909), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), }, [3740] = { - [sym__alpha_identifier] = ACTIONS(5138), - [anon_sym_AT] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_get] = ACTIONS(5138), - [anon_sym_set] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [sym_label] = ACTIONS(5140), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_QMARK_COLON] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_else] = ACTIONS(5138), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_PLUS_EQ] = ACTIONS(5140), - [anon_sym_DASH_EQ] = ACTIONS(5140), - [anon_sym_STAR_EQ] = ACTIONS(5140), - [anon_sym_SLASH_EQ] = ACTIONS(5140), - [anon_sym_PERCENT_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_BANGin] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_BANGis] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_as_QMARK] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_BANG_BANG] = ACTIONS(5140), - [anon_sym_suspend] = ACTIONS(5138), - [anon_sym_sealed] = ACTIONS(5138), - [anon_sym_annotation] = ACTIONS(5138), - [anon_sym_data] = ACTIONS(5138), - [anon_sym_inner] = ACTIONS(5138), - [anon_sym_value] = ACTIONS(5138), - [anon_sym_override] = ACTIONS(5138), - [anon_sym_lateinit] = ACTIONS(5138), - [anon_sym_public] = ACTIONS(5138), - [anon_sym_private] = ACTIONS(5138), - [anon_sym_internal] = ACTIONS(5138), - [anon_sym_protected] = ACTIONS(5138), - [anon_sym_tailrec] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5138), - [anon_sym_infix] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5138), - [anon_sym_external] = ACTIONS(5138), - [sym_property_modifier] = ACTIONS(5138), - [anon_sym_abstract] = ACTIONS(5138), - [anon_sym_final] = ACTIONS(5138), - [anon_sym_open] = ACTIONS(5138), - [anon_sym_vararg] = ACTIONS(5138), - [anon_sym_noinline] = ACTIONS(5138), - [anon_sym_crossinline] = ACTIONS(5138), - [anon_sym_expect] = ACTIONS(5138), - [anon_sym_actual] = ACTIONS(5138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5140), - [sym__automatic_semicolon] = ACTIONS(5140), - [sym_safe_nav] = ACTIONS(5140), + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_LPAREN] = ACTIONS(4724), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_by] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_where] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), [sym_multiline_comment] = ACTIONS(3), }, [3741] = { - [sym__alpha_identifier] = ACTIONS(4861), - [anon_sym_AT] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_as] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_get] = ACTIONS(4861), - [anon_sym_set] = ACTIONS(4861), - [anon_sym_STAR] = ACTIONS(4861), - [sym_label] = ACTIONS(4863), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4863), - [anon_sym_QMARK_COLON] = ACTIONS(4863), - [anon_sym_AMP_AMP] = ACTIONS(4863), - [anon_sym_PIPE_PIPE] = ACTIONS(4863), - [anon_sym_else] = ACTIONS(4861), - [anon_sym_COLON_COLON] = ACTIONS(4863), - [anon_sym_PLUS_EQ] = ACTIONS(4863), - [anon_sym_DASH_EQ] = ACTIONS(4863), - [anon_sym_STAR_EQ] = ACTIONS(4863), - [anon_sym_SLASH_EQ] = ACTIONS(4863), - [anon_sym_PERCENT_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4863), - [anon_sym_LT_EQ] = ACTIONS(4863), - [anon_sym_GT_EQ] = ACTIONS(4863), - [anon_sym_BANGin] = ACTIONS(4863), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_BANGis] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4861), - [anon_sym_DASH] = ACTIONS(4861), - [anon_sym_SLASH] = ACTIONS(4861), - [anon_sym_PERCENT] = ACTIONS(4861), - [anon_sym_as_QMARK] = ACTIONS(4863), - [anon_sym_PLUS_PLUS] = ACTIONS(4863), - [anon_sym_DASH_DASH] = ACTIONS(4863), - [anon_sym_BANG_BANG] = ACTIONS(4863), - [anon_sym_suspend] = ACTIONS(4861), - [anon_sym_sealed] = ACTIONS(4861), - [anon_sym_annotation] = ACTIONS(4861), - [anon_sym_data] = ACTIONS(4861), - [anon_sym_inner] = ACTIONS(4861), - [anon_sym_value] = ACTIONS(4861), - [anon_sym_override] = ACTIONS(4861), - [anon_sym_lateinit] = ACTIONS(4861), - [anon_sym_public] = ACTIONS(4861), - [anon_sym_private] = ACTIONS(4861), - [anon_sym_internal] = ACTIONS(4861), - [anon_sym_protected] = ACTIONS(4861), - [anon_sym_tailrec] = ACTIONS(4861), - [anon_sym_operator] = ACTIONS(4861), - [anon_sym_infix] = ACTIONS(4861), - [anon_sym_inline] = ACTIONS(4861), - [anon_sym_external] = ACTIONS(4861), - [sym_property_modifier] = ACTIONS(4861), - [anon_sym_abstract] = ACTIONS(4861), - [anon_sym_final] = ACTIONS(4861), - [anon_sym_open] = ACTIONS(4861), - [anon_sym_vararg] = ACTIONS(4861), - [anon_sym_noinline] = ACTIONS(4861), - [anon_sym_crossinline] = ACTIONS(4861), - [anon_sym_expect] = ACTIONS(4861), - [anon_sym_actual] = ACTIONS(4861), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4863), - [sym__automatic_semicolon] = ACTIONS(4863), - [sym_safe_nav] = ACTIONS(4863), + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), [sym_multiline_comment] = ACTIONS(3), }, [3742] = { - [aux_sym_user_type_repeat1] = STATE(3912), - [sym__alpha_identifier] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_typealias] = ACTIONS(4140), - [anon_sym_class] = ACTIONS(4140), - [anon_sym_interface] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_val] = ACTIONS(4140), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_object] = ACTIONS(4140), - [anon_sym_fun] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(6928), - [anon_sym_get] = ACTIONS(4140), - [anon_sym_set] = ACTIONS(4140), - [anon_sym_this] = ACTIONS(4140), - [anon_sym_super] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [sym_label] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_do] = ACTIONS(4140), - [anon_sym_null] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_suspend] = ACTIONS(4140), - [anon_sym_sealed] = ACTIONS(4140), - [anon_sym_annotation] = ACTIONS(4140), - [anon_sym_data] = ACTIONS(4140), - [anon_sym_inner] = ACTIONS(4140), - [anon_sym_value] = ACTIONS(4140), - [anon_sym_override] = ACTIONS(4140), - [anon_sym_lateinit] = ACTIONS(4140), - [anon_sym_public] = ACTIONS(4140), - [anon_sym_private] = ACTIONS(4140), - [anon_sym_internal] = ACTIONS(4140), - [anon_sym_protected] = ACTIONS(4140), - [anon_sym_tailrec] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_infix] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym_external] = ACTIONS(4140), - [sym_property_modifier] = ACTIONS(4140), - [anon_sym_abstract] = ACTIONS(4140), - [anon_sym_final] = ACTIONS(4140), - [anon_sym_open] = ACTIONS(4140), - [anon_sym_vararg] = ACTIONS(4140), - [anon_sym_noinline] = ACTIONS(4140), - [anon_sym_crossinline] = ACTIONS(4140), - [anon_sym_expect] = ACTIONS(4140), - [anon_sym_actual] = ACTIONS(4140), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4142), - [anon_sym_continue_AT] = ACTIONS(4142), - [anon_sym_break_AT] = ACTIONS(4142), - [sym_real_literal] = ACTIONS(4142), - [sym_integer_literal] = ACTIONS(4140), - [sym_hex_literal] = ACTIONS(4142), - [sym_bin_literal] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4140), - [anon_sym_false] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4142), - [sym__backtick_identifier] = ACTIONS(4142), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4142), + [sym__alpha_identifier] = ACTIONS(4166), + [anon_sym_AT] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_typealias] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_interface] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_val] = ACTIONS(4166), + [anon_sym_var] = ACTIONS(4166), + [anon_sym_object] = ACTIONS(4166), + [anon_sym_fun] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4166), + [anon_sym_set] = ACTIONS(4166), + [anon_sym_this] = ACTIONS(4166), + [anon_sym_super] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [sym_label] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_when] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_suspend] = ACTIONS(4166), + [anon_sym_sealed] = ACTIONS(4166), + [anon_sym_annotation] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4166), + [anon_sym_inner] = ACTIONS(4166), + [anon_sym_value] = ACTIONS(4166), + [anon_sym_override] = ACTIONS(4166), + [anon_sym_lateinit] = ACTIONS(4166), + [anon_sym_public] = ACTIONS(4166), + [anon_sym_private] = ACTIONS(4166), + [anon_sym_internal] = ACTIONS(4166), + [anon_sym_protected] = ACTIONS(4166), + [anon_sym_tailrec] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_infix] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym_external] = ACTIONS(4166), + [sym_property_modifier] = ACTIONS(4166), + [anon_sym_abstract] = ACTIONS(4166), + [anon_sym_final] = ACTIONS(4166), + [anon_sym_open] = ACTIONS(4166), + [anon_sym_vararg] = ACTIONS(4166), + [anon_sym_noinline] = ACTIONS(4166), + [anon_sym_crossinline] = ACTIONS(4166), + [anon_sym_expect] = ACTIONS(4166), + [anon_sym_actual] = ACTIONS(4166), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4168), + [anon_sym_continue_AT] = ACTIONS(4168), + [anon_sym_break_AT] = ACTIONS(4168), + [anon_sym_this_AT] = ACTIONS(4168), + [anon_sym_super_AT] = ACTIONS(4168), + [sym_real_literal] = ACTIONS(4168), + [sym_integer_literal] = ACTIONS(4166), + [sym_hex_literal] = ACTIONS(4168), + [sym_bin_literal] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4168), + [sym__backtick_identifier] = ACTIONS(4168), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4168), }, [3743] = { - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [anon_sym_DASH_GT] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, [3744] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4853), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [3745] = { - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [aux_sym__delegation_specifiers_repeat1] = STATE(3733), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, [3746] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [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_DOT] = 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__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_by] = ACTIONS(4702), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_GT] = ACTIONS(4702), + [anon_sym_where] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4702), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4702), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4702), + [anon_sym_DOT_DOT] = ACTIONS(4704), + [anon_sym_QMARK_COLON] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_PLUS_EQ] = ACTIONS(4704), + [anon_sym_DASH_EQ] = ACTIONS(4704), + [anon_sym_STAR_EQ] = ACTIONS(4704), + [anon_sym_SLASH_EQ] = ACTIONS(4704), + [anon_sym_PERCENT_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ] = ACTIONS(4702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ] = ACTIONS(4702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4704), + [anon_sym_LT_EQ] = ACTIONS(4704), + [anon_sym_GT_EQ] = ACTIONS(4704), + [anon_sym_BANGin] = ACTIONS(4704), + [anon_sym_is] = ACTIONS(4702), + [anon_sym_BANGis] = ACTIONS(4704), + [anon_sym_PLUS] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_SLASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_as_QMARK] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_BANG_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4702), + [anon_sym_sealed] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4702), + [anon_sym_data] = ACTIONS(4702), + [anon_sym_inner] = ACTIONS(4702), + [anon_sym_value] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), [sym_multiline_comment] = ACTIONS(3), }, [3747] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [sym_label] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_suspend] = ACTIONS(4931), - [anon_sym_sealed] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4931), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_value] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), - [anon_sym_lateinit] = ACTIONS(4931), - [anon_sym_public] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4931), - [anon_sym_internal] = ACTIONS(4931), - [anon_sym_protected] = ACTIONS(4931), - [anon_sym_tailrec] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_infix] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym_external] = ACTIONS(4931), - [sym_property_modifier] = ACTIONS(4931), - [anon_sym_abstract] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_open] = ACTIONS(4931), - [anon_sym_vararg] = ACTIONS(4931), - [anon_sym_noinline] = ACTIONS(4931), - [anon_sym_crossinline] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4933), - [sym__automatic_semicolon] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4752), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), [sym_multiline_comment] = ACTIONS(3), }, [3748] = { - [sym__alpha_identifier] = ACTIONS(4429), - [anon_sym_AT] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_where] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_get] = ACTIONS(4429), - [anon_sym_set] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4431), - [anon_sym_QMARK_COLON] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_COLON_COLON] = ACTIONS(4431), - [anon_sym_PLUS_EQ] = ACTIONS(4431), - [anon_sym_DASH_EQ] = ACTIONS(4431), - [anon_sym_STAR_EQ] = ACTIONS(4431), - [anon_sym_SLASH_EQ] = ACTIONS(4431), - [anon_sym_PERCENT_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4431), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_BANGin] = ACTIONS(4431), - [anon_sym_is] = ACTIONS(4429), - [anon_sym_BANGis] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_SLASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_as_QMARK] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4431), - [anon_sym_DASH_DASH] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4429), - [anon_sym_sealed] = ACTIONS(4429), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4429), - [anon_sym_inner] = ACTIONS(4429), - [anon_sym_value] = ACTIONS(4429), - [anon_sym_override] = ACTIONS(4429), - [anon_sym_lateinit] = ACTIONS(4429), - [anon_sym_public] = ACTIONS(4429), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_internal] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_tailrec] = ACTIONS(4429), - [anon_sym_operator] = ACTIONS(4429), - [anon_sym_infix] = ACTIONS(4429), - [anon_sym_inline] = ACTIONS(4429), - [anon_sym_external] = ACTIONS(4429), - [sym_property_modifier] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_final] = ACTIONS(4429), - [anon_sym_open] = ACTIONS(4429), - [anon_sym_vararg] = ACTIONS(4429), - [anon_sym_noinline] = ACTIONS(4429), - [anon_sym_crossinline] = ACTIONS(4429), - [anon_sym_expect] = ACTIONS(4429), - [anon_sym_actual] = ACTIONS(4429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4431), - [sym__automatic_semicolon] = ACTIONS(4431), - [sym_safe_nav] = ACTIONS(4431), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3749] = { - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), }, [3750] = { - [sym__alpha_identifier] = ACTIONS(4915), - [anon_sym_AT] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4917), - [anon_sym_as] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4917), - [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4917), - [anon_sym_COMMA] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4915), - [anon_sym_GT] = ACTIONS(4915), - [anon_sym_where] = ACTIONS(4915), - [anon_sym_DOT] = ACTIONS(4915), - [anon_sym_SEMI] = ACTIONS(4917), - [anon_sym_get] = ACTIONS(4915), - [anon_sym_set] = ACTIONS(4915), - [anon_sym_STAR] = ACTIONS(4915), - [sym_label] = ACTIONS(4917), - [anon_sym_in] = ACTIONS(4915), - [anon_sym_DOT_DOT] = ACTIONS(4917), - [anon_sym_QMARK_COLON] = ACTIONS(4917), - [anon_sym_AMP_AMP] = ACTIONS(4917), - [anon_sym_PIPE_PIPE] = ACTIONS(4917), - [anon_sym_else] = ACTIONS(4915), - [anon_sym_COLON_COLON] = ACTIONS(4917), - [anon_sym_PLUS_EQ] = ACTIONS(4917), - [anon_sym_DASH_EQ] = ACTIONS(4917), - [anon_sym_STAR_EQ] = ACTIONS(4917), - [anon_sym_SLASH_EQ] = ACTIONS(4917), - [anon_sym_PERCENT_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4917), - [anon_sym_LT_EQ] = ACTIONS(4917), - [anon_sym_GT_EQ] = ACTIONS(4917), - [anon_sym_BANGin] = ACTIONS(4917), - [anon_sym_is] = ACTIONS(4915), - [anon_sym_BANGis] = ACTIONS(4917), - [anon_sym_PLUS] = ACTIONS(4915), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_SLASH] = ACTIONS(4915), - [anon_sym_PERCENT] = ACTIONS(4915), - [anon_sym_as_QMARK] = ACTIONS(4917), - [anon_sym_PLUS_PLUS] = ACTIONS(4917), - [anon_sym_DASH_DASH] = ACTIONS(4917), - [anon_sym_BANG_BANG] = ACTIONS(4917), - [anon_sym_suspend] = ACTIONS(4915), - [anon_sym_sealed] = ACTIONS(4915), - [anon_sym_annotation] = ACTIONS(4915), - [anon_sym_data] = ACTIONS(4915), - [anon_sym_inner] = ACTIONS(4915), - [anon_sym_value] = ACTIONS(4915), - [anon_sym_override] = ACTIONS(4915), - [anon_sym_lateinit] = ACTIONS(4915), - [anon_sym_public] = ACTIONS(4915), - [anon_sym_private] = ACTIONS(4915), - [anon_sym_internal] = ACTIONS(4915), - [anon_sym_protected] = ACTIONS(4915), - [anon_sym_tailrec] = ACTIONS(4915), - [anon_sym_operator] = ACTIONS(4915), - [anon_sym_infix] = ACTIONS(4915), - [anon_sym_inline] = ACTIONS(4915), - [anon_sym_external] = ACTIONS(4915), - [sym_property_modifier] = ACTIONS(4915), - [anon_sym_abstract] = ACTIONS(4915), - [anon_sym_final] = ACTIONS(4915), - [anon_sym_open] = ACTIONS(4915), - [anon_sym_vararg] = ACTIONS(4915), - [anon_sym_noinline] = ACTIONS(4915), - [anon_sym_crossinline] = ACTIONS(4915), - [anon_sym_expect] = ACTIONS(4915), - [anon_sym_actual] = ACTIONS(4915), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4917), - [sym__automatic_semicolon] = ACTIONS(4917), - [sym_safe_nav] = ACTIONS(4917), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3751] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3752] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3753] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3754] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6954), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [aux_sym__delegation_specifiers_repeat1] = STATE(3766), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4686), + [anon_sym_DASH_EQ] = ACTIONS(4686), + [anon_sym_STAR_EQ] = ACTIONS(4686), + [anon_sym_SLASH_EQ] = ACTIONS(4686), + [anon_sym_PERCENT_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), }, [3755] = { - [sym_class_body] = STATE(3211), - [sym_type_constraints] = STATE(3137), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6958), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3123), + [anon_sym_STAR_EQ] = ACTIONS(3123), + [anon_sym_SLASH_EQ] = ACTIONS(3123), + [anon_sym_PERCENT_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [3756] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6960), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4324), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(4716), + [anon_sym_AT] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_by] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_where] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_get] = ACTIONS(4716), + [anon_sym_set] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4716), + [anon_sym_DOT_DOT] = ACTIONS(4718), + [anon_sym_QMARK_COLON] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_STAR_EQ] = ACTIONS(4718), + [anon_sym_SLASH_EQ] = ACTIONS(4718), + [anon_sym_PERCENT_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_BANGin] = ACTIONS(4718), + [anon_sym_is] = ACTIONS(4716), + [anon_sym_BANGis] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_SLASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_as_QMARK] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4716), + [anon_sym_sealed] = ACTIONS(4716), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4716), + [anon_sym_inner] = ACTIONS(4716), + [anon_sym_value] = ACTIONS(4716), + [anon_sym_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), }, [3757] = { - [sym_type_constraints] = STATE(3088), - [sym_enum_class_body] = STATE(3262), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6964), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_as] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = ACTIONS(4740), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_get] = ACTIONS(4740), + [anon_sym_set] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4740), + [sym_label] = ACTIONS(4742), + [anon_sym_in] = ACTIONS(4740), + [anon_sym_DOT_DOT] = ACTIONS(4742), + [anon_sym_QMARK_COLON] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4742), + [anon_sym_DASH_EQ] = ACTIONS(4742), + [anon_sym_STAR_EQ] = ACTIONS(4742), + [anon_sym_SLASH_EQ] = ACTIONS(4742), + [anon_sym_PERCENT_EQ] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT_EQ] = ACTIONS(4742), + [anon_sym_GT_EQ] = ACTIONS(4742), + [anon_sym_BANGin] = ACTIONS(4742), + [anon_sym_is] = ACTIONS(4740), + [anon_sym_BANGis] = ACTIONS(4742), + [anon_sym_PLUS] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4740), + [anon_sym_SLASH] = ACTIONS(4740), + [anon_sym_PERCENT] = ACTIONS(4740), + [anon_sym_as_QMARK] = ACTIONS(4742), + [anon_sym_PLUS_PLUS] = ACTIONS(4742), + [anon_sym_DASH_DASH] = ACTIONS(4742), + [anon_sym_BANG_BANG] = ACTIONS(4742), + [anon_sym_suspend] = ACTIONS(4740), + [anon_sym_sealed] = ACTIONS(4740), + [anon_sym_annotation] = ACTIONS(4740), + [anon_sym_data] = ACTIONS(4740), + [anon_sym_inner] = ACTIONS(4740), + [anon_sym_value] = ACTIONS(4740), + [anon_sym_override] = ACTIONS(4740), + [anon_sym_lateinit] = ACTIONS(4740), + [anon_sym_public] = ACTIONS(4740), + [anon_sym_private] = ACTIONS(4740), + [anon_sym_internal] = ACTIONS(4740), + [anon_sym_protected] = ACTIONS(4740), + [anon_sym_tailrec] = ACTIONS(4740), + [anon_sym_operator] = ACTIONS(4740), + [anon_sym_infix] = ACTIONS(4740), + [anon_sym_inline] = ACTIONS(4740), + [anon_sym_external] = ACTIONS(4740), + [sym_property_modifier] = ACTIONS(4740), + [anon_sym_abstract] = ACTIONS(4740), + [anon_sym_final] = ACTIONS(4740), + [anon_sym_open] = ACTIONS(4740), + [anon_sym_vararg] = ACTIONS(4740), + [anon_sym_noinline] = ACTIONS(4740), + [anon_sym_crossinline] = ACTIONS(4740), + [anon_sym_expect] = ACTIONS(4740), + [anon_sym_actual] = ACTIONS(4740), + [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(7111), + [sym__backtick_identifier] = ACTIONS(4742), + [sym__automatic_semicolon] = ACTIONS(4742), + [sym_safe_nav] = ACTIONS(4742), + [sym_multiline_comment] = ACTIONS(3), }, [3758] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_fun] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3286), + [anon_sym_super] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_when] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3290), + [anon_sym_continue_AT] = ACTIONS(3290), + [anon_sym_break_AT] = ACTIONS(3290), + [anon_sym_this_AT] = ACTIONS(3290), + [anon_sym_super_AT] = ACTIONS(3290), + [sym_real_literal] = ACTIONS(3290), + [sym_integer_literal] = ACTIONS(3286), + [sym_hex_literal] = ACTIONS(3290), + [sym_bin_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3290), }, [3759] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [3760] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_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__alpha_identifier] = ACTIONS(4559), + [anon_sym_AT] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_as] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4559), + [anon_sym_set] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4561), + [anon_sym_in] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(4561), + [anon_sym_QMARK_COLON] = ACTIONS(4561), + [anon_sym_AMP_AMP] = ACTIONS(4561), + [anon_sym_PIPE_PIPE] = ACTIONS(4561), + [anon_sym_else] = ACTIONS(4559), + [anon_sym_COLON_COLON] = ACTIONS(4561), + [anon_sym_PLUS_EQ] = ACTIONS(4561), + [anon_sym_DASH_EQ] = ACTIONS(4561), + [anon_sym_STAR_EQ] = ACTIONS(4561), + [anon_sym_SLASH_EQ] = ACTIONS(4561), + [anon_sym_PERCENT_EQ] = ACTIONS(4561), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4561), + [anon_sym_GT_EQ] = ACTIONS(4561), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4559), + [anon_sym_BANGis] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4561), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_BANG_BANG] = ACTIONS(4561), + [anon_sym_suspend] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_annotation] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4559), + [anon_sym_inner] = ACTIONS(4559), + [anon_sym_value] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_lateinit] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_tailrec] = ACTIONS(4559), + [anon_sym_operator] = ACTIONS(4559), + [anon_sym_infix] = ACTIONS(4559), + [anon_sym_inline] = ACTIONS(4559), + [anon_sym_external] = ACTIONS(4559), + [sym_property_modifier] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_final] = ACTIONS(4559), + [anon_sym_open] = ACTIONS(4559), + [anon_sym_vararg] = ACTIONS(4559), + [anon_sym_noinline] = ACTIONS(4559), + [anon_sym_crossinline] = ACTIONS(4559), + [anon_sym_expect] = ACTIONS(4559), + [anon_sym_actual] = ACTIONS(4559), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4561), + [sym__automatic_semicolon] = ACTIONS(4561), + [sym_safe_nav] = ACTIONS(4561), [sym_multiline_comment] = ACTIONS(3), }, [3761] = { - [sym_type_constraints] = STATE(3146), - [sym_enum_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6966), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), }, [3762] = { - [sym__alpha_identifier] = ACTIONS(4837), - [anon_sym_AT] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_LBRACE] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_get] = ACTIONS(4837), - [anon_sym_set] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [sym_label] = ACTIONS(4839), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_QMARK_COLON] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_else] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4839), - [anon_sym_PLUS_EQ] = ACTIONS(4839), - [anon_sym_DASH_EQ] = ACTIONS(4839), - [anon_sym_STAR_EQ] = ACTIONS(4839), - [anon_sym_SLASH_EQ] = ACTIONS(4839), - [anon_sym_PERCENT_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_BANGin] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4837), - [anon_sym_BANGis] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_as_QMARK] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_BANG_BANG] = ACTIONS(4839), - [anon_sym_suspend] = ACTIONS(4837), - [anon_sym_sealed] = ACTIONS(4837), - [anon_sym_annotation] = ACTIONS(4837), - [anon_sym_data] = ACTIONS(4837), - [anon_sym_inner] = ACTIONS(4837), - [anon_sym_value] = ACTIONS(4837), - [anon_sym_override] = ACTIONS(4837), - [anon_sym_lateinit] = ACTIONS(4837), - [anon_sym_public] = ACTIONS(4837), - [anon_sym_private] = ACTIONS(4837), - [anon_sym_internal] = ACTIONS(4837), - [anon_sym_protected] = ACTIONS(4837), - [anon_sym_tailrec] = ACTIONS(4837), - [anon_sym_operator] = ACTIONS(4837), - [anon_sym_infix] = ACTIONS(4837), - [anon_sym_inline] = ACTIONS(4837), - [anon_sym_external] = ACTIONS(4837), - [sym_property_modifier] = ACTIONS(4837), - [anon_sym_abstract] = ACTIONS(4837), - [anon_sym_final] = ACTIONS(4837), - [anon_sym_open] = ACTIONS(4837), - [anon_sym_vararg] = ACTIONS(4837), - [anon_sym_noinline] = ACTIONS(4837), - [anon_sym_crossinline] = ACTIONS(4837), - [anon_sym_expect] = ACTIONS(4837), - [anon_sym_actual] = ACTIONS(4837), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4839), - [sym__automatic_semicolon] = ACTIONS(4839), - [sym_safe_nav] = ACTIONS(4839), + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [3763] = { - [sym_class_body] = STATE(3181), - [sym_type_constraints] = STATE(3173), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_as] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_COMMA] = ACTIONS(4432), + [anon_sym_by] = ACTIONS(4430), + [anon_sym_LT] = ACTIONS(4430), + [anon_sym_GT] = ACTIONS(4430), + [anon_sym_where] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4430), + [anon_sym_set] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4430), + [anon_sym_DOT_DOT] = ACTIONS(4432), + [anon_sym_QMARK_COLON] = ACTIONS(4432), + [anon_sym_AMP_AMP] = ACTIONS(4432), + [anon_sym_PIPE_PIPE] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4430), + [anon_sym_COLON_COLON] = ACTIONS(4432), + [anon_sym_PLUS_EQ] = ACTIONS(4432), + [anon_sym_DASH_EQ] = ACTIONS(4432), + [anon_sym_STAR_EQ] = ACTIONS(4432), + [anon_sym_SLASH_EQ] = ACTIONS(4432), + [anon_sym_PERCENT_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ] = ACTIONS(4430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ] = ACTIONS(4430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4432), + [anon_sym_LT_EQ] = ACTIONS(4432), + [anon_sym_GT_EQ] = ACTIONS(4432), + [anon_sym_BANGin] = ACTIONS(4432), + [anon_sym_is] = ACTIONS(4430), + [anon_sym_BANGis] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_SLASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_as_QMARK] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4432), + [anon_sym_DASH_DASH] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4430), + [anon_sym_sealed] = ACTIONS(4430), + [anon_sym_annotation] = ACTIONS(4430), + [anon_sym_data] = ACTIONS(4430), + [anon_sym_inner] = ACTIONS(4430), + [anon_sym_value] = ACTIONS(4430), + [anon_sym_override] = ACTIONS(4430), + [anon_sym_lateinit] = ACTIONS(4430), + [anon_sym_public] = ACTIONS(4430), + [anon_sym_private] = ACTIONS(4430), + [anon_sym_internal] = ACTIONS(4430), + [anon_sym_protected] = ACTIONS(4430), + [anon_sym_tailrec] = ACTIONS(4430), + [anon_sym_operator] = ACTIONS(4430), + [anon_sym_infix] = ACTIONS(4430), + [anon_sym_inline] = ACTIONS(4430), + [anon_sym_external] = ACTIONS(4430), + [sym_property_modifier] = ACTIONS(4430), + [anon_sym_abstract] = ACTIONS(4430), + [anon_sym_final] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4430), + [anon_sym_vararg] = ACTIONS(4430), + [anon_sym_noinline] = ACTIONS(4430), + [anon_sym_crossinline] = ACTIONS(4430), + [anon_sym_expect] = ACTIONS(4430), + [anon_sym_actual] = ACTIONS(4430), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4432), + [sym__automatic_semicolon] = ACTIONS(4432), + [sym_safe_nav] = ACTIONS(4432), + [sym_multiline_comment] = ACTIONS(3), }, [3764] = { - [sym__alpha_identifier] = ACTIONS(4833), - [anon_sym_AT] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_where] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_get] = ACTIONS(4833), - [anon_sym_set] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [sym_label] = ACTIONS(4835), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_QMARK_COLON] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_else] = ACTIONS(4833), - [anon_sym_COLON_COLON] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_BANGin] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_BANGis] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_as_QMARK] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_BANG_BANG] = ACTIONS(4835), - [anon_sym_suspend] = ACTIONS(4833), - [anon_sym_sealed] = ACTIONS(4833), - [anon_sym_annotation] = ACTIONS(4833), - [anon_sym_data] = ACTIONS(4833), - [anon_sym_inner] = ACTIONS(4833), - [anon_sym_value] = ACTIONS(4833), - [anon_sym_override] = ACTIONS(4833), - [anon_sym_lateinit] = ACTIONS(4833), - [anon_sym_public] = ACTIONS(4833), - [anon_sym_private] = ACTIONS(4833), - [anon_sym_internal] = ACTIONS(4833), - [anon_sym_protected] = ACTIONS(4833), - [anon_sym_tailrec] = ACTIONS(4833), - [anon_sym_operator] = ACTIONS(4833), - [anon_sym_infix] = ACTIONS(4833), - [anon_sym_inline] = ACTIONS(4833), - [anon_sym_external] = ACTIONS(4833), - [sym_property_modifier] = ACTIONS(4833), - [anon_sym_abstract] = ACTIONS(4833), - [anon_sym_final] = ACTIONS(4833), - [anon_sym_open] = ACTIONS(4833), - [anon_sym_vararg] = ACTIONS(4833), - [anon_sym_noinline] = ACTIONS(4833), - [anon_sym_crossinline] = ACTIONS(4833), - [anon_sym_expect] = ACTIONS(4833), - [anon_sym_actual] = ACTIONS(4833), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4835), - [sym__automatic_semicolon] = ACTIONS(4835), - [sym_safe_nav] = ACTIONS(4835), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3765] = { - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym_class_body] = STATE(3061), + [sym_type_constraints] = STATE(3015), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [3766] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5767), - [anon_sym_COMMA] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [aux_sym__delegation_specifiers_repeat1] = STATE(3733), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, [3767] = { - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [sym_label] = ACTIONS(4027), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_suspend] = ACTIONS(4025), - [anon_sym_sealed] = ACTIONS(4025), - [anon_sym_annotation] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4025), - [anon_sym_lateinit] = ACTIONS(4025), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_internal] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_tailrec] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_infix] = ACTIONS(4025), - [anon_sym_inline] = ACTIONS(4025), - [anon_sym_external] = ACTIONS(4025), - [sym_property_modifier] = ACTIONS(4025), - [anon_sym_abstract] = ACTIONS(4025), - [anon_sym_final] = ACTIONS(4025), - [anon_sym_open] = ACTIONS(4025), - [anon_sym_vararg] = ACTIONS(4025), - [anon_sym_noinline] = ACTIONS(4025), - [anon_sym_crossinline] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4027), - [sym__automatic_semicolon] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3255), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_this] = ACTIONS(4216), + [anon_sym_super] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_when] = ACTIONS(4216), + [anon_sym_try] = ACTIONS(4216), + [anon_sym_throw] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4218), + [anon_sym_continue_AT] = ACTIONS(4218), + [anon_sym_break_AT] = ACTIONS(4218), + [anon_sym_this_AT] = ACTIONS(4218), + [anon_sym_super_AT] = ACTIONS(4218), + [sym_real_literal] = ACTIONS(4218), + [sym_integer_literal] = ACTIONS(4216), + [sym_hex_literal] = ACTIONS(4218), + [sym_bin_literal] = ACTIONS(4218), + [anon_sym_true] = ACTIONS(4216), + [anon_sym_false] = ACTIONS(4216), + [anon_sym_SQUOTE] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3768] = { - [sym__alpha_identifier] = ACTIONS(4825), - [anon_sym_AT] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_as] = ACTIONS(4825), - [anon_sym_EQ] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_where] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_get] = ACTIONS(4825), - [anon_sym_set] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [sym_label] = ACTIONS(4827), - [anon_sym_in] = ACTIONS(4825), - [anon_sym_DOT_DOT] = ACTIONS(4827), - [anon_sym_QMARK_COLON] = ACTIONS(4827), - [anon_sym_AMP_AMP] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4827), - [anon_sym_else] = ACTIONS(4825), - [anon_sym_COLON_COLON] = ACTIONS(4827), - [anon_sym_PLUS_EQ] = ACTIONS(4827), - [anon_sym_DASH_EQ] = ACTIONS(4827), - [anon_sym_STAR_EQ] = ACTIONS(4827), - [anon_sym_SLASH_EQ] = ACTIONS(4827), - [anon_sym_PERCENT_EQ] = ACTIONS(4827), - [anon_sym_BANG_EQ] = ACTIONS(4825), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4827), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4827), - [anon_sym_BANGin] = ACTIONS(4827), - [anon_sym_is] = ACTIONS(4825), - [anon_sym_BANGis] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4825), - [anon_sym_as_QMARK] = ACTIONS(4827), - [anon_sym_PLUS_PLUS] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4827), - [anon_sym_BANG_BANG] = ACTIONS(4827), - [anon_sym_suspend] = ACTIONS(4825), - [anon_sym_sealed] = ACTIONS(4825), - [anon_sym_annotation] = ACTIONS(4825), - [anon_sym_data] = ACTIONS(4825), - [anon_sym_inner] = ACTIONS(4825), - [anon_sym_value] = ACTIONS(4825), - [anon_sym_override] = ACTIONS(4825), - [anon_sym_lateinit] = ACTIONS(4825), - [anon_sym_public] = ACTIONS(4825), - [anon_sym_private] = ACTIONS(4825), - [anon_sym_internal] = ACTIONS(4825), - [anon_sym_protected] = ACTIONS(4825), - [anon_sym_tailrec] = ACTIONS(4825), - [anon_sym_operator] = ACTIONS(4825), - [anon_sym_infix] = ACTIONS(4825), - [anon_sym_inline] = ACTIONS(4825), - [anon_sym_external] = ACTIONS(4825), - [sym_property_modifier] = ACTIONS(4825), - [anon_sym_abstract] = ACTIONS(4825), - [anon_sym_final] = ACTIONS(4825), - [anon_sym_open] = ACTIONS(4825), - [anon_sym_vararg] = ACTIONS(4825), - [anon_sym_noinline] = ACTIONS(4825), - [anon_sym_crossinline] = ACTIONS(4825), - [anon_sym_expect] = ACTIONS(4825), - [anon_sym_actual] = ACTIONS(4825), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4827), - [sym__automatic_semicolon] = ACTIONS(4827), - [sym_safe_nav] = ACTIONS(4827), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3769] = { - [sym__alpha_identifier] = ACTIONS(4821), - [anon_sym_AT] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_get] = ACTIONS(4821), - [anon_sym_set] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4821), - [sym_label] = ACTIONS(4823), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_QMARK_COLON] = ACTIONS(4823), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_else] = ACTIONS(4821), - [anon_sym_COLON_COLON] = ACTIONS(4823), - [anon_sym_PLUS_EQ] = ACTIONS(4823), - [anon_sym_DASH_EQ] = ACTIONS(4823), - [anon_sym_STAR_EQ] = ACTIONS(4823), - [anon_sym_SLASH_EQ] = ACTIONS(4823), - [anon_sym_PERCENT_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_BANGin] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4821), - [anon_sym_BANGis] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_as_QMARK] = ACTIONS(4823), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_BANG_BANG] = ACTIONS(4823), - [anon_sym_suspend] = ACTIONS(4821), - [anon_sym_sealed] = ACTIONS(4821), - [anon_sym_annotation] = ACTIONS(4821), - [anon_sym_data] = ACTIONS(4821), - [anon_sym_inner] = ACTIONS(4821), - [anon_sym_value] = ACTIONS(4821), - [anon_sym_override] = ACTIONS(4821), - [anon_sym_lateinit] = ACTIONS(4821), - [anon_sym_public] = ACTIONS(4821), - [anon_sym_private] = ACTIONS(4821), - [anon_sym_internal] = ACTIONS(4821), - [anon_sym_protected] = ACTIONS(4821), - [anon_sym_tailrec] = ACTIONS(4821), - [anon_sym_operator] = ACTIONS(4821), - [anon_sym_infix] = ACTIONS(4821), - [anon_sym_inline] = ACTIONS(4821), - [anon_sym_external] = ACTIONS(4821), - [sym_property_modifier] = ACTIONS(4821), - [anon_sym_abstract] = ACTIONS(4821), - [anon_sym_final] = ACTIONS(4821), - [anon_sym_open] = ACTIONS(4821), - [anon_sym_vararg] = ACTIONS(4821), - [anon_sym_noinline] = ACTIONS(4821), - [anon_sym_crossinline] = ACTIONS(4821), - [anon_sym_expect] = ACTIONS(4821), - [anon_sym_actual] = ACTIONS(4821), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4823), - [sym__automatic_semicolon] = ACTIONS(4823), - [sym_safe_nav] = ACTIONS(4823), + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4565), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), [sym_multiline_comment] = ACTIONS(3), }, [3770] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5758), - [anon_sym_COMMA] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_RBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_DASH_GT] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, [3771] = { - [sym_class_body] = STATE(3179), - [sym_type_constraints] = STATE(3163), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6968), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [3772] = { - [sym__alpha_identifier] = ACTIONS(4813), - [anon_sym_AT] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4813), - [anon_sym_EQ] = ACTIONS(4813), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_where] = ACTIONS(4813), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_get] = ACTIONS(4813), - [anon_sym_set] = ACTIONS(4813), - [anon_sym_STAR] = ACTIONS(4813), - [sym_label] = ACTIONS(4815), - [anon_sym_in] = ACTIONS(4813), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_QMARK_COLON] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_else] = ACTIONS(4813), - [anon_sym_COLON_COLON] = ACTIONS(4815), - [anon_sym_PLUS_EQ] = ACTIONS(4815), - [anon_sym_DASH_EQ] = ACTIONS(4815), - [anon_sym_STAR_EQ] = ACTIONS(4815), - [anon_sym_SLASH_EQ] = ACTIONS(4815), - [anon_sym_PERCENT_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4813), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4813), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_BANGin] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4813), - [anon_sym_BANGis] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4813), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_SLASH] = ACTIONS(4813), - [anon_sym_PERCENT] = ACTIONS(4813), - [anon_sym_as_QMARK] = ACTIONS(4815), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_BANG_BANG] = ACTIONS(4815), - [anon_sym_suspend] = ACTIONS(4813), - [anon_sym_sealed] = ACTIONS(4813), - [anon_sym_annotation] = ACTIONS(4813), - [anon_sym_data] = ACTIONS(4813), - [anon_sym_inner] = ACTIONS(4813), - [anon_sym_value] = ACTIONS(4813), - [anon_sym_override] = ACTIONS(4813), - [anon_sym_lateinit] = ACTIONS(4813), - [anon_sym_public] = ACTIONS(4813), - [anon_sym_private] = ACTIONS(4813), - [anon_sym_internal] = ACTIONS(4813), - [anon_sym_protected] = ACTIONS(4813), - [anon_sym_tailrec] = ACTIONS(4813), - [anon_sym_operator] = ACTIONS(4813), - [anon_sym_infix] = ACTIONS(4813), - [anon_sym_inline] = ACTIONS(4813), - [anon_sym_external] = ACTIONS(4813), - [sym_property_modifier] = ACTIONS(4813), - [anon_sym_abstract] = ACTIONS(4813), - [anon_sym_final] = ACTIONS(4813), - [anon_sym_open] = ACTIONS(4813), - [anon_sym_vararg] = ACTIONS(4813), - [anon_sym_noinline] = ACTIONS(4813), - [anon_sym_crossinline] = ACTIONS(4813), - [anon_sym_expect] = ACTIONS(4813), - [anon_sym_actual] = ACTIONS(4813), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4815), - [sym__automatic_semicolon] = ACTIONS(4815), - [sym_safe_nav] = ACTIONS(4815), + [sym_enum_class_body] = STATE(3831), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, [3773] = { - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [sym_label] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_suspend] = ACTIONS(4015), - [anon_sym_sealed] = ACTIONS(4015), - [anon_sym_annotation] = ACTIONS(4015), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_override] = ACTIONS(4015), - [anon_sym_lateinit] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4015), - [anon_sym_private] = ACTIONS(4015), - [anon_sym_internal] = ACTIONS(4015), - [anon_sym_protected] = ACTIONS(4015), - [anon_sym_tailrec] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(4015), - [anon_sym_infix] = ACTIONS(4015), - [anon_sym_inline] = ACTIONS(4015), - [anon_sym_external] = ACTIONS(4015), - [sym_property_modifier] = ACTIONS(4015), - [anon_sym_abstract] = ACTIONS(4015), - [anon_sym_final] = ACTIONS(4015), - [anon_sym_open] = ACTIONS(4015), - [anon_sym_vararg] = ACTIONS(4015), - [anon_sym_noinline] = ACTIONS(4015), - [anon_sym_crossinline] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4017), - [sym__automatic_semicolon] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3774] = { - [sym__alpha_identifier] = ACTIONS(3016), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [sym_label] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_QMARK_COLON] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3016), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_as_QMARK] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_BANG_BANG] = ACTIONS(3018), - [anon_sym_suspend] = ACTIONS(3016), - [anon_sym_sealed] = ACTIONS(3016), - [anon_sym_annotation] = ACTIONS(3016), - [anon_sym_data] = ACTIONS(3016), - [anon_sym_inner] = ACTIONS(3016), - [anon_sym_value] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_lateinit] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_internal] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_tailrec] = ACTIONS(3016), - [anon_sym_operator] = ACTIONS(3016), - [anon_sym_infix] = ACTIONS(3016), - [anon_sym_inline] = ACTIONS(3016), - [anon_sym_external] = ACTIONS(3016), - [sym_property_modifier] = ACTIONS(3016), - [anon_sym_abstract] = ACTIONS(3016), - [anon_sym_final] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3016), - [anon_sym_vararg] = ACTIONS(3016), - [anon_sym_noinline] = ACTIONS(3016), - [anon_sym_crossinline] = ACTIONS(3016), - [anon_sym_expect] = ACTIONS(3016), - [anon_sym_actual] = ACTIONS(3016), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3018), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(3018), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3775] = { - [sym_function_body] = STATE(3856), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, [3776] = { - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4219), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_PLUS_EQ] = ACTIONS(4219), - [anon_sym_DASH_EQ] = ACTIONS(4219), - [anon_sym_STAR_EQ] = ACTIONS(4219), - [anon_sym_SLASH_EQ] = ACTIONS(4219), - [anon_sym_PERCENT_EQ] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3777] = { - [sym__alpha_identifier] = ACTIONS(4701), - [anon_sym_AT] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_as] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_where] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_get] = ACTIONS(4701), - [anon_sym_set] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [sym_label] = ACTIONS(4703), - [anon_sym_in] = ACTIONS(4701), - [anon_sym_DOT_DOT] = ACTIONS(4703), - [anon_sym_QMARK_COLON] = ACTIONS(4703), - [anon_sym_AMP_AMP] = ACTIONS(4703), - [anon_sym_PIPE_PIPE] = ACTIONS(4703), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym_PLUS_EQ] = ACTIONS(4703), - [anon_sym_DASH_EQ] = ACTIONS(4703), - [anon_sym_STAR_EQ] = ACTIONS(4703), - [anon_sym_SLASH_EQ] = ACTIONS(4703), - [anon_sym_PERCENT_EQ] = ACTIONS(4703), - [anon_sym_BANG_EQ] = ACTIONS(4701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4703), - [anon_sym_EQ_EQ] = ACTIONS(4701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4703), - [anon_sym_LT_EQ] = ACTIONS(4703), - [anon_sym_GT_EQ] = ACTIONS(4703), - [anon_sym_BANGin] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4701), - [anon_sym_BANGis] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_as_QMARK] = ACTIONS(4703), - [anon_sym_PLUS_PLUS] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_BANG_BANG] = ACTIONS(4703), - [anon_sym_suspend] = ACTIONS(4701), - [anon_sym_sealed] = ACTIONS(4701), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_data] = ACTIONS(4701), - [anon_sym_inner] = ACTIONS(4701), - [anon_sym_value] = ACTIONS(4701), - [anon_sym_override] = ACTIONS(4701), - [anon_sym_lateinit] = ACTIONS(4701), - [anon_sym_public] = ACTIONS(4701), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_internal] = ACTIONS(4701), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_tailrec] = ACTIONS(4701), - [anon_sym_operator] = ACTIONS(4701), - [anon_sym_infix] = ACTIONS(4701), - [anon_sym_inline] = ACTIONS(4701), - [anon_sym_external] = ACTIONS(4701), - [sym_property_modifier] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_final] = ACTIONS(4701), - [anon_sym_open] = ACTIONS(4701), - [anon_sym_vararg] = ACTIONS(4701), - [anon_sym_noinline] = ACTIONS(4701), - [anon_sym_crossinline] = ACTIONS(4701), - [anon_sym_expect] = ACTIONS(4701), - [anon_sym_actual] = ACTIONS(4701), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4703), - [sym__automatic_semicolon] = ACTIONS(4703), - [sym_safe_nav] = ACTIONS(4703), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3778] = { - [sym_class_body] = STATE(3760), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(6970), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4530), - [anon_sym_DASH_EQ] = ACTIONS(4530), - [anon_sym_STAR_EQ] = ACTIONS(4530), - [anon_sym_SLASH_EQ] = ACTIONS(4530), - [anon_sym_PERCENT_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_typealias] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_interface] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_val] = ACTIONS(4335), + [anon_sym_var] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [sym_label] = ACTIONS(4335), + [anon_sym_for] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_do] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, [3779] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [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_DOT] = 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_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3780] = { - [sym_class_body] = STATE(3852), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(6972), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4520), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_PLUS_EQ] = ACTIONS(4522), - [anon_sym_DASH_EQ] = ACTIONS(4522), - [anon_sym_STAR_EQ] = ACTIONS(4522), - [anon_sym_SLASH_EQ] = ACTIONS(4522), - [anon_sym_PERCENT_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3781] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_where] = ACTIONS(4967), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4969), - [anon_sym_get] = ACTIONS(4967), - [anon_sym_set] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [sym_label] = ACTIONS(4969), - [anon_sym_in] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_QMARK_COLON] = ACTIONS(4969), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_else] = ACTIONS(4967), - [anon_sym_COLON_COLON] = ACTIONS(4969), - [anon_sym_PLUS_EQ] = ACTIONS(4969), - [anon_sym_DASH_EQ] = ACTIONS(4969), - [anon_sym_STAR_EQ] = ACTIONS(4969), - [anon_sym_SLASH_EQ] = ACTIONS(4969), - [anon_sym_PERCENT_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_BANGin] = ACTIONS(4969), - [anon_sym_is] = ACTIONS(4967), - [anon_sym_BANGis] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_as_QMARK] = ACTIONS(4969), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_BANG_BANG] = ACTIONS(4969), - [anon_sym_suspend] = ACTIONS(4967), - [anon_sym_sealed] = ACTIONS(4967), - [anon_sym_annotation] = ACTIONS(4967), - [anon_sym_data] = ACTIONS(4967), - [anon_sym_inner] = ACTIONS(4967), - [anon_sym_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__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4748), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), [sym_multiline_comment] = ACTIONS(3), }, [3782] = { - [sym__alpha_identifier] = ACTIONS(5066), - [anon_sym_AT] = ACTIONS(5068), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5066), - [anon_sym_EQ] = ACTIONS(5066), - [anon_sym_LBRACE] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_where] = ACTIONS(5066), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(5068), - [anon_sym_get] = ACTIONS(5066), - [anon_sym_set] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5066), - [sym_label] = ACTIONS(5068), - [anon_sym_in] = ACTIONS(5066), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_QMARK_COLON] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_else] = ACTIONS(5066), - [anon_sym_COLON_COLON] = ACTIONS(5068), - [anon_sym_PLUS_EQ] = ACTIONS(5068), - [anon_sym_DASH_EQ] = ACTIONS(5068), - [anon_sym_STAR_EQ] = ACTIONS(5068), - [anon_sym_SLASH_EQ] = ACTIONS(5068), - [anon_sym_PERCENT_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5066), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5066), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_BANGin] = ACTIONS(5068), - [anon_sym_is] = ACTIONS(5066), - [anon_sym_BANGis] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5066), - [anon_sym_as_QMARK] = ACTIONS(5068), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_BANG_BANG] = ACTIONS(5068), - [anon_sym_suspend] = ACTIONS(5066), - [anon_sym_sealed] = ACTIONS(5066), - [anon_sym_annotation] = ACTIONS(5066), - [anon_sym_data] = ACTIONS(5066), - [anon_sym_inner] = ACTIONS(5066), - [anon_sym_value] = ACTIONS(5066), - [anon_sym_override] = ACTIONS(5066), - [anon_sym_lateinit] = ACTIONS(5066), - [anon_sym_public] = ACTIONS(5066), - [anon_sym_private] = ACTIONS(5066), - [anon_sym_internal] = ACTIONS(5066), - [anon_sym_protected] = ACTIONS(5066), - [anon_sym_tailrec] = ACTIONS(5066), - [anon_sym_operator] = ACTIONS(5066), - [anon_sym_infix] = ACTIONS(5066), - [anon_sym_inline] = ACTIONS(5066), - [anon_sym_external] = ACTIONS(5066), - [sym_property_modifier] = ACTIONS(5066), - [anon_sym_abstract] = ACTIONS(5066), - [anon_sym_final] = ACTIONS(5066), - [anon_sym_open] = ACTIONS(5066), - [anon_sym_vararg] = ACTIONS(5066), - [anon_sym_noinline] = ACTIONS(5066), - [anon_sym_crossinline] = ACTIONS(5066), - [anon_sym_expect] = ACTIONS(5066), - [anon_sym_actual] = ACTIONS(5066), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5068), - [sym__automatic_semicolon] = ACTIONS(5068), - [sym_safe_nav] = ACTIONS(5068), + [sym_enum_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, [3783] = { - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_RBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_DASH_GT] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_class_body] = STATE(3173), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_fun] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3270), + [anon_sym_super] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_when] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3274), + [anon_sym_continue_AT] = ACTIONS(3274), + [anon_sym_break_AT] = ACTIONS(3274), + [anon_sym_this_AT] = ACTIONS(3274), + [anon_sym_super_AT] = ACTIONS(3274), + [sym_real_literal] = ACTIONS(3274), + [sym_integer_literal] = ACTIONS(3270), + [sym_hex_literal] = ACTIONS(3274), + [sym_bin_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3274), }, [3784] = { - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3785] = { - [sym__alpha_identifier] = ACTIONS(4911), - [anon_sym_AT] = ACTIONS(4913), - [anon_sym_LBRACK] = ACTIONS(4913), - [anon_sym_as] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4913), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4913), - [anon_sym_COMMA] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4911), - [anon_sym_GT] = ACTIONS(4911), - [anon_sym_where] = ACTIONS(4911), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_SEMI] = ACTIONS(4913), - [anon_sym_get] = ACTIONS(4911), - [anon_sym_set] = ACTIONS(4911), - [anon_sym_STAR] = ACTIONS(4911), - [sym_label] = ACTIONS(4913), - [anon_sym_in] = ACTIONS(4911), - [anon_sym_DOT_DOT] = ACTIONS(4913), - [anon_sym_QMARK_COLON] = ACTIONS(4913), - [anon_sym_AMP_AMP] = ACTIONS(4913), - [anon_sym_PIPE_PIPE] = ACTIONS(4913), - [anon_sym_else] = ACTIONS(4911), - [anon_sym_COLON_COLON] = ACTIONS(4913), - [anon_sym_PLUS_EQ] = ACTIONS(4913), - [anon_sym_DASH_EQ] = ACTIONS(4913), - [anon_sym_STAR_EQ] = ACTIONS(4913), - [anon_sym_SLASH_EQ] = ACTIONS(4913), - [anon_sym_PERCENT_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ] = ACTIONS(4911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4913), - [anon_sym_LT_EQ] = ACTIONS(4913), - [anon_sym_GT_EQ] = ACTIONS(4913), - [anon_sym_BANGin] = ACTIONS(4913), - [anon_sym_is] = ACTIONS(4911), - [anon_sym_BANGis] = ACTIONS(4913), - [anon_sym_PLUS] = ACTIONS(4911), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_SLASH] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_as_QMARK] = ACTIONS(4913), - [anon_sym_PLUS_PLUS] = ACTIONS(4913), - [anon_sym_DASH_DASH] = ACTIONS(4913), - [anon_sym_BANG_BANG] = ACTIONS(4913), - [anon_sym_suspend] = ACTIONS(4911), - [anon_sym_sealed] = ACTIONS(4911), - [anon_sym_annotation] = ACTIONS(4911), - [anon_sym_data] = ACTIONS(4911), - [anon_sym_inner] = ACTIONS(4911), - [anon_sym_value] = ACTIONS(4911), - [anon_sym_override] = ACTIONS(4911), - [anon_sym_lateinit] = ACTIONS(4911), - [anon_sym_public] = ACTIONS(4911), - [anon_sym_private] = ACTIONS(4911), - [anon_sym_internal] = ACTIONS(4911), - [anon_sym_protected] = ACTIONS(4911), - [anon_sym_tailrec] = ACTIONS(4911), - [anon_sym_operator] = ACTIONS(4911), - [anon_sym_infix] = ACTIONS(4911), - [anon_sym_inline] = ACTIONS(4911), - [anon_sym_external] = ACTIONS(4911), - [sym_property_modifier] = ACTIONS(4911), - [anon_sym_abstract] = ACTIONS(4911), - [anon_sym_final] = ACTIONS(4911), - [anon_sym_open] = ACTIONS(4911), - [anon_sym_vararg] = ACTIONS(4911), - [anon_sym_noinline] = ACTIONS(4911), - [anon_sym_crossinline] = ACTIONS(4911), - [anon_sym_expect] = ACTIONS(4911), - [anon_sym_actual] = ACTIONS(4911), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4913), - [sym__automatic_semicolon] = ACTIONS(4913), - [sym_safe_nav] = ACTIONS(4913), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3786] = { - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_DASH_GT] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3787] = { - [sym__alpha_identifier] = ACTIONS(4817), - [anon_sym_AT] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_get] = ACTIONS(4817), - [anon_sym_set] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [sym_label] = ACTIONS(4819), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_QMARK_COLON] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_else] = ACTIONS(4817), - [anon_sym_COLON_COLON] = ACTIONS(4819), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_BANGin] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4817), - [anon_sym_BANGis] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_as_QMARK] = ACTIONS(4819), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_BANG_BANG] = ACTIONS(4819), - [anon_sym_suspend] = ACTIONS(4817), - [anon_sym_sealed] = ACTIONS(4817), - [anon_sym_annotation] = ACTIONS(4817), - [anon_sym_data] = ACTIONS(4817), - [anon_sym_inner] = ACTIONS(4817), - [anon_sym_value] = ACTIONS(4817), - [anon_sym_override] = ACTIONS(4817), - [anon_sym_lateinit] = ACTIONS(4817), - [anon_sym_public] = ACTIONS(4817), - [anon_sym_private] = ACTIONS(4817), - [anon_sym_internal] = ACTIONS(4817), - [anon_sym_protected] = ACTIONS(4817), - [anon_sym_tailrec] = ACTIONS(4817), - [anon_sym_operator] = ACTIONS(4817), - [anon_sym_infix] = ACTIONS(4817), - [anon_sym_inline] = ACTIONS(4817), - [anon_sym_external] = ACTIONS(4817), - [sym_property_modifier] = ACTIONS(4817), - [anon_sym_abstract] = ACTIONS(4817), - [anon_sym_final] = ACTIONS(4817), - [anon_sym_open] = ACTIONS(4817), - [anon_sym_vararg] = ACTIONS(4817), - [anon_sym_noinline] = ACTIONS(4817), - [anon_sym_crossinline] = ACTIONS(4817), - [anon_sym_expect] = ACTIONS(4817), - [anon_sym_actual] = ACTIONS(4817), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4819), - [sym__automatic_semicolon] = ACTIONS(4819), - [sym_safe_nav] = ACTIONS(4819), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3788] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [sym_label] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_suspend] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_annotation] = ACTIONS(4995), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_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_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3789] = { - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3790] = { - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_PLUS_EQ] = ACTIONS(4274), - [anon_sym_DASH_EQ] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4274), - [anon_sym_SLASH_EQ] = ACTIONS(4274), - [anon_sym_PERCENT_EQ] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4272), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym__alpha_identifier] = ACTIONS(7121), + [anon_sym_AT] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_typealias] = ACTIONS(7121), + [anon_sym_class] = ACTIONS(7121), + [anon_sym_interface] = ACTIONS(7121), + [anon_sym_enum] = ACTIONS(7121), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_val] = ACTIONS(7121), + [anon_sym_var] = ACTIONS(7121), + [anon_sym_object] = ACTIONS(7121), + [anon_sym_fun] = ACTIONS(7121), + [anon_sym_get] = ACTIONS(7121), + [anon_sym_set] = ACTIONS(7121), + [anon_sym_this] = ACTIONS(7121), + [anon_sym_super] = ACTIONS(7121), + [anon_sym_STAR] = ACTIONS(1415), + [sym_label] = ACTIONS(7121), + [anon_sym_for] = ACTIONS(7121), + [anon_sym_while] = ACTIONS(7121), + [anon_sym_do] = ACTIONS(7121), + [anon_sym_null] = ACTIONS(7121), + [anon_sym_if] = ACTIONS(7121), + [anon_sym_when] = ACTIONS(7121), + [anon_sym_try] = ACTIONS(7121), + [anon_sym_throw] = ACTIONS(7121), + [anon_sym_return] = ACTIONS(7121), + [anon_sym_continue] = ACTIONS(7121), + [anon_sym_break] = ACTIONS(7121), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_suspend] = ACTIONS(7121), + [anon_sym_sealed] = ACTIONS(7121), + [anon_sym_annotation] = ACTIONS(7121), + [anon_sym_data] = ACTIONS(7121), + [anon_sym_inner] = ACTIONS(7121), + [anon_sym_value] = ACTIONS(7121), + [anon_sym_override] = ACTIONS(7121), + [anon_sym_lateinit] = ACTIONS(7121), + [anon_sym_public] = ACTIONS(7121), + [anon_sym_private] = ACTIONS(7121), + [anon_sym_internal] = ACTIONS(7121), + [anon_sym_protected] = ACTIONS(7121), + [anon_sym_tailrec] = ACTIONS(7121), + [anon_sym_operator] = ACTIONS(7121), + [anon_sym_infix] = ACTIONS(7121), + [anon_sym_inline] = ACTIONS(7121), + [anon_sym_external] = ACTIONS(7121), + [sym_property_modifier] = ACTIONS(7121), + [anon_sym_abstract] = ACTIONS(7121), + [anon_sym_final] = ACTIONS(7121), + [anon_sym_open] = ACTIONS(7121), + [anon_sym_vararg] = ACTIONS(7121), + [anon_sym_noinline] = ACTIONS(7121), + [anon_sym_crossinline] = ACTIONS(7121), + [anon_sym_expect] = ACTIONS(7121), + [anon_sym_actual] = ACTIONS(7121), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1415), + [anon_sym_continue_AT] = ACTIONS(1415), + [anon_sym_break_AT] = ACTIONS(1415), + [anon_sym_this_AT] = ACTIONS(1415), + [anon_sym_super_AT] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(7121), + [sym_hex_literal] = ACTIONS(1415), + [sym_bin_literal] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(7121), + [anon_sym_false] = ACTIONS(7121), + [anon_sym_SQUOTE] = ACTIONS(1415), + [sym__backtick_identifier] = ACTIONS(1415), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1415), }, [3791] = { - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_enum_class_body] = STATE(4002), + [sym__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3792] = { - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4179), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4179), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4181), - [anon_sym_DASH_EQ] = ACTIONS(4181), - [anon_sym_STAR_EQ] = ACTIONS(4181), - [anon_sym_SLASH_EQ] = ACTIONS(4181), - [anon_sym_PERCENT_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4179), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3793] = { - [sym_class_body] = STATE(3234), - [sym_type_constraints] = STATE(3130), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym__alpha_identifier] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4573), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_COMMA] = ACTIONS(4573), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4571), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4571), + [anon_sym_set] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4571), + [anon_sym_DOT_DOT] = ACTIONS(4573), + [anon_sym_QMARK_COLON] = ACTIONS(4573), + [anon_sym_AMP_AMP] = ACTIONS(4573), + [anon_sym_PIPE_PIPE] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4571), + [anon_sym_COLON_COLON] = ACTIONS(4573), + [anon_sym_PLUS_EQ] = ACTIONS(4573), + [anon_sym_DASH_EQ] = ACTIONS(4573), + [anon_sym_STAR_EQ] = ACTIONS(4573), + [anon_sym_SLASH_EQ] = ACTIONS(4573), + [anon_sym_PERCENT_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ] = ACTIONS(4571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ] = ACTIONS(4571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4573), + [anon_sym_LT_EQ] = ACTIONS(4573), + [anon_sym_GT_EQ] = ACTIONS(4573), + [anon_sym_BANGin] = ACTIONS(4573), + [anon_sym_is] = ACTIONS(4571), + [anon_sym_BANGis] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4573), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_BANG_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_annotation] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(4571), + [anon_sym_inner] = ACTIONS(4571), + [anon_sym_value] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_lateinit] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_tailrec] = ACTIONS(4571), + [anon_sym_operator] = ACTIONS(4571), + [anon_sym_infix] = ACTIONS(4571), + [anon_sym_inline] = ACTIONS(4571), + [anon_sym_external] = ACTIONS(4571), + [sym_property_modifier] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_final] = ACTIONS(4571), + [anon_sym_open] = ACTIONS(4571), + [anon_sym_vararg] = ACTIONS(4571), + [anon_sym_noinline] = ACTIONS(4571), + [anon_sym_crossinline] = ACTIONS(4571), + [anon_sym_expect] = ACTIONS(4571), + [anon_sym_actual] = ACTIONS(4571), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4573), + [sym__automatic_semicolon] = ACTIONS(4573), + [sym_safe_nav] = ACTIONS(4573), + [sym_multiline_comment] = ACTIONS(3), }, [3794] = { - [sym_type_constraints] = STATE(3040), - [sym_enum_class_body] = STATE(3331), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(6974), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_RBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [anon_sym_DASH_GT] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), + [sym_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3795] = { - [sym__alpha_identifier] = ACTIONS(4791), - [anon_sym_AT] = ACTIONS(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4791), - [anon_sym_GT] = ACTIONS(4791), - [anon_sym_where] = ACTIONS(4791), - [anon_sym_DOT] = ACTIONS(4791), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym_get] = ACTIONS(4791), - [anon_sym_set] = ACTIONS(4791), - [anon_sym_STAR] = ACTIONS(4791), - [sym_label] = ACTIONS(4793), - [anon_sym_in] = ACTIONS(4791), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_QMARK_COLON] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_else] = ACTIONS(4791), - [anon_sym_COLON_COLON] = ACTIONS(4793), - [anon_sym_PLUS_EQ] = ACTIONS(4793), - [anon_sym_DASH_EQ] = ACTIONS(4793), - [anon_sym_STAR_EQ] = ACTIONS(4793), - [anon_sym_SLASH_EQ] = ACTIONS(4793), - [anon_sym_PERCENT_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_BANGin] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4791), - [anon_sym_BANGis] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4791), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_SLASH] = ACTIONS(4791), - [anon_sym_PERCENT] = ACTIONS(4791), - [anon_sym_as_QMARK] = ACTIONS(4793), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_BANG_BANG] = ACTIONS(4793), - [anon_sym_suspend] = ACTIONS(4791), - [anon_sym_sealed] = ACTIONS(4791), - [anon_sym_annotation] = ACTIONS(4791), - [anon_sym_data] = ACTIONS(4791), - [anon_sym_inner] = ACTIONS(4791), - [anon_sym_value] = ACTIONS(4791), - [anon_sym_override] = ACTIONS(4791), - [anon_sym_lateinit] = ACTIONS(4791), - [anon_sym_public] = ACTIONS(4791), - [anon_sym_private] = ACTIONS(4791), - [anon_sym_internal] = ACTIONS(4791), - [anon_sym_protected] = ACTIONS(4791), - [anon_sym_tailrec] = ACTIONS(4791), - [anon_sym_operator] = ACTIONS(4791), - [anon_sym_infix] = ACTIONS(4791), - [anon_sym_inline] = ACTIONS(4791), - [anon_sym_external] = ACTIONS(4791), - [sym_property_modifier] = ACTIONS(4791), - [anon_sym_abstract] = ACTIONS(4791), - [anon_sym_final] = ACTIONS(4791), - [anon_sym_open] = ACTIONS(4791), - [anon_sym_vararg] = ACTIONS(4791), - [anon_sym_noinline] = ACTIONS(4791), - [anon_sym_crossinline] = ACTIONS(4791), - [anon_sym_expect] = ACTIONS(4791), - [anon_sym_actual] = ACTIONS(4791), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4793), - [sym__automatic_semicolon] = ACTIONS(4793), - [sym_safe_nav] = ACTIONS(4793), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [3796] = { - [sym__alpha_identifier] = ACTIONS(4885), - [anon_sym_AT] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4887), - [anon_sym_as] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4887), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4887), - [anon_sym_COMMA] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_where] = ACTIONS(4885), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4887), - [anon_sym_get] = ACTIONS(4885), - [anon_sym_set] = ACTIONS(4885), - [anon_sym_STAR] = ACTIONS(4885), - [sym_label] = ACTIONS(4887), - [anon_sym_in] = ACTIONS(4885), - [anon_sym_DOT_DOT] = ACTIONS(4887), - [anon_sym_QMARK_COLON] = ACTIONS(4887), - [anon_sym_AMP_AMP] = ACTIONS(4887), - [anon_sym_PIPE_PIPE] = ACTIONS(4887), - [anon_sym_else] = ACTIONS(4885), - [anon_sym_COLON_COLON] = ACTIONS(4887), - [anon_sym_PLUS_EQ] = ACTIONS(4887), - [anon_sym_DASH_EQ] = ACTIONS(4887), - [anon_sym_STAR_EQ] = ACTIONS(4887), - [anon_sym_SLASH_EQ] = ACTIONS(4887), - [anon_sym_PERCENT_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), - [anon_sym_LT_EQ] = ACTIONS(4887), - [anon_sym_GT_EQ] = ACTIONS(4887), - [anon_sym_BANGin] = ACTIONS(4887), - [anon_sym_is] = ACTIONS(4885), - [anon_sym_BANGis] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(4885), - [anon_sym_DASH] = ACTIONS(4885), - [anon_sym_SLASH] = ACTIONS(4885), - [anon_sym_PERCENT] = ACTIONS(4885), - [anon_sym_as_QMARK] = ACTIONS(4887), - [anon_sym_PLUS_PLUS] = ACTIONS(4887), - [anon_sym_DASH_DASH] = ACTIONS(4887), - [anon_sym_BANG_BANG] = ACTIONS(4887), - [anon_sym_suspend] = ACTIONS(4885), - [anon_sym_sealed] = ACTIONS(4885), - [anon_sym_annotation] = ACTIONS(4885), - [anon_sym_data] = ACTIONS(4885), - [anon_sym_inner] = ACTIONS(4885), - [anon_sym_value] = ACTIONS(4885), - [anon_sym_override] = ACTIONS(4885), - [anon_sym_lateinit] = ACTIONS(4885), - [anon_sym_public] = ACTIONS(4885), - [anon_sym_private] = ACTIONS(4885), - [anon_sym_internal] = ACTIONS(4885), - [anon_sym_protected] = ACTIONS(4885), - [anon_sym_tailrec] = ACTIONS(4885), - [anon_sym_operator] = ACTIONS(4885), - [anon_sym_infix] = ACTIONS(4885), - [anon_sym_inline] = ACTIONS(4885), - [anon_sym_external] = ACTIONS(4885), - [sym_property_modifier] = ACTIONS(4885), - [anon_sym_abstract] = ACTIONS(4885), - [anon_sym_final] = ACTIONS(4885), - [anon_sym_open] = ACTIONS(4885), - [anon_sym_vararg] = ACTIONS(4885), - [anon_sym_noinline] = ACTIONS(4885), - [anon_sym_crossinline] = ACTIONS(4885), - [anon_sym_expect] = ACTIONS(4885), - [anon_sym_actual] = ACTIONS(4885), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4887), - [sym__automatic_semicolon] = ACTIONS(4887), - [sym_safe_nav] = ACTIONS(4887), - [sym_multiline_comment] = ACTIONS(3), + [sym_value_arguments] = STATE(3237), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, [3797] = { - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_RBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_DASH_GT] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(2996), + [sym_enum_class_body] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [3798] = { - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_RBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [anon_sym_DASH_GT] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3206), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7127), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(4327), + [anon_sym_fun] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_this] = ACTIONS(4327), + [anon_sym_super] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_null] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4329), + [anon_sym_continue_AT] = ACTIONS(4329), + [anon_sym_break_AT] = ACTIONS(4329), + [anon_sym_this_AT] = ACTIONS(4329), + [anon_sym_super_AT] = ACTIONS(4329), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4329), }, [3799] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_where] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_get] = ACTIONS(5013), - [anon_sym_set] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [sym_label] = ACTIONS(5015), - [anon_sym_in] = ACTIONS(5013), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_QMARK_COLON] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_else] = ACTIONS(5013), - [anon_sym_COLON_COLON] = ACTIONS(5015), - [anon_sym_PLUS_EQ] = ACTIONS(5015), - [anon_sym_DASH_EQ] = ACTIONS(5015), - [anon_sym_STAR_EQ] = ACTIONS(5015), - [anon_sym_SLASH_EQ] = ACTIONS(5015), - [anon_sym_PERCENT_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_BANGin] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5013), - [anon_sym_BANGis] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_PERCENT] = ACTIONS(5013), - [anon_sym_as_QMARK] = ACTIONS(5015), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_BANG_BANG] = ACTIONS(5015), - [anon_sym_suspend] = ACTIONS(5013), - [anon_sym_sealed] = ACTIONS(5013), - [anon_sym_annotation] = ACTIONS(5013), - [anon_sym_data] = ACTIONS(5013), - [anon_sym_inner] = ACTIONS(5013), - [anon_sym_value] = ACTIONS(5013), - [anon_sym_override] = ACTIONS(5013), - [anon_sym_lateinit] = ACTIONS(5013), - [anon_sym_public] = ACTIONS(5013), - [anon_sym_private] = ACTIONS(5013), - [anon_sym_internal] = ACTIONS(5013), - [anon_sym_protected] = ACTIONS(5013), - [anon_sym_tailrec] = ACTIONS(5013), - [anon_sym_operator] = ACTIONS(5013), - [anon_sym_infix] = ACTIONS(5013), - [anon_sym_inline] = ACTIONS(5013), - [anon_sym_external] = ACTIONS(5013), - [sym_property_modifier] = ACTIONS(5013), - [anon_sym_abstract] = ACTIONS(5013), - [anon_sym_final] = ACTIONS(5013), - [anon_sym_open] = ACTIONS(5013), - [anon_sym_vararg] = ACTIONS(5013), - [anon_sym_noinline] = ACTIONS(5013), - [anon_sym_crossinline] = ACTIONS(5013), - [anon_sym_expect] = ACTIONS(5013), - [anon_sym_actual] = ACTIONS(5013), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5015), - [sym__automatic_semicolon] = ACTIONS(5015), - [sym_safe_nav] = ACTIONS(5015), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), [sym_multiline_comment] = ACTIONS(3), }, [3800] = { - [sym__alpha_identifier] = ACTIONS(4923), - [anon_sym_AT] = ACTIONS(4925), - [anon_sym_LBRACK] = ACTIONS(4925), - [anon_sym_as] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4925), - [anon_sym_RBRACE] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4925), - [anon_sym_COMMA] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_where] = ACTIONS(4923), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_SEMI] = ACTIONS(4925), - [anon_sym_get] = ACTIONS(4923), - [anon_sym_set] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [sym_label] = ACTIONS(4925), - [anon_sym_in] = ACTIONS(4923), - [anon_sym_DOT_DOT] = ACTIONS(4925), - [anon_sym_QMARK_COLON] = ACTIONS(4925), - [anon_sym_AMP_AMP] = ACTIONS(4925), - [anon_sym_PIPE_PIPE] = ACTIONS(4925), - [anon_sym_else] = ACTIONS(4923), - [anon_sym_COLON_COLON] = ACTIONS(4925), - [anon_sym_PLUS_EQ] = ACTIONS(4925), - [anon_sym_DASH_EQ] = ACTIONS(4925), - [anon_sym_STAR_EQ] = ACTIONS(4925), - [anon_sym_SLASH_EQ] = ACTIONS(4925), - [anon_sym_PERCENT_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4925), - [anon_sym_LT_EQ] = ACTIONS(4925), - [anon_sym_GT_EQ] = ACTIONS(4925), - [anon_sym_BANGin] = ACTIONS(4925), - [anon_sym_is] = ACTIONS(4923), - [anon_sym_BANGis] = ACTIONS(4925), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_PERCENT] = ACTIONS(4923), - [anon_sym_as_QMARK] = ACTIONS(4925), - [anon_sym_PLUS_PLUS] = ACTIONS(4925), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_BANG_BANG] = ACTIONS(4925), - [anon_sym_suspend] = ACTIONS(4923), - [anon_sym_sealed] = ACTIONS(4923), - [anon_sym_annotation] = ACTIONS(4923), - [anon_sym_data] = ACTIONS(4923), - [anon_sym_inner] = ACTIONS(4923), - [anon_sym_value] = ACTIONS(4923), - [anon_sym_override] = ACTIONS(4923), - [anon_sym_lateinit] = ACTIONS(4923), - [anon_sym_public] = ACTIONS(4923), - [anon_sym_private] = ACTIONS(4923), - [anon_sym_internal] = ACTIONS(4923), - [anon_sym_protected] = ACTIONS(4923), - [anon_sym_tailrec] = ACTIONS(4923), - [anon_sym_operator] = ACTIONS(4923), - [anon_sym_infix] = ACTIONS(4923), - [anon_sym_inline] = ACTIONS(4923), - [anon_sym_external] = ACTIONS(4923), - [sym_property_modifier] = ACTIONS(4923), - [anon_sym_abstract] = ACTIONS(4923), - [anon_sym_final] = ACTIONS(4923), - [anon_sym_open] = ACTIONS(4923), - [anon_sym_vararg] = ACTIONS(4923), - [anon_sym_noinline] = ACTIONS(4923), - [anon_sym_crossinline] = ACTIONS(4923), - [anon_sym_expect] = ACTIONS(4923), - [anon_sym_actual] = ACTIONS(4923), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4925), - [sym__automatic_semicolon] = ACTIONS(4925), - [sym_safe_nav] = ACTIONS(4925), + [sym__alpha_identifier] = ACTIONS(4696), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4698), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_by] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_where] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4696), + [anon_sym_set] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4696), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_QMARK_COLON] = ACTIONS(4698), + [anon_sym_AMP_AMP] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym_PLUS_EQ] = ACTIONS(4698), + [anon_sym_DASH_EQ] = ACTIONS(4698), + [anon_sym_STAR_EQ] = ACTIONS(4698), + [anon_sym_SLASH_EQ] = ACTIONS(4698), + [anon_sym_PERCENT_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_BANGin] = ACTIONS(4698), + [anon_sym_is] = ACTIONS(4696), + [anon_sym_BANGis] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_as_QMARK] = ACTIONS(4698), + [anon_sym_PLUS_PLUS] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4698), + [anon_sym_suspend] = ACTIONS(4696), + [anon_sym_sealed] = ACTIONS(4696), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4696), + [anon_sym_inner] = ACTIONS(4696), + [anon_sym_value] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_lateinit] = ACTIONS(4696), + [anon_sym_public] = ACTIONS(4696), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_internal] = ACTIONS(4696), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_tailrec] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4696), + [anon_sym_infix] = ACTIONS(4696), + [anon_sym_inline] = ACTIONS(4696), + [anon_sym_external] = ACTIONS(4696), + [sym_property_modifier] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_open] = ACTIONS(4696), + [anon_sym_vararg] = ACTIONS(4696), + [anon_sym_noinline] = ACTIONS(4696), + [anon_sym_crossinline] = ACTIONS(4696), + [anon_sym_expect] = ACTIONS(4696), + [anon_sym_actual] = ACTIONS(4696), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4698), + [sym__automatic_semicolon] = ACTIONS(4698), + [sym_safe_nav] = ACTIONS(4698), [sym_multiline_comment] = ACTIONS(3), }, [3801] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [sym_label] = ACTIONS(4941), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_suspend] = ACTIONS(4939), - [anon_sym_sealed] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4939), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_value] = ACTIONS(4939), - [anon_sym_override] = ACTIONS(4939), - [anon_sym_lateinit] = ACTIONS(4939), - [anon_sym_public] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4939), - [anon_sym_internal] = ACTIONS(4939), - [anon_sym_protected] = ACTIONS(4939), - [anon_sym_tailrec] = ACTIONS(4939), - [anon_sym_operator] = ACTIONS(4939), - [anon_sym_infix] = ACTIONS(4939), - [anon_sym_inline] = ACTIONS(4939), - [anon_sym_external] = ACTIONS(4939), - [sym_property_modifier] = ACTIONS(4939), - [anon_sym_abstract] = ACTIONS(4939), - [anon_sym_final] = ACTIONS(4939), - [anon_sym_open] = ACTIONS(4939), - [anon_sym_vararg] = ACTIONS(4939), - [anon_sym_noinline] = ACTIONS(4939), - [anon_sym_crossinline] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4941), - [sym__automatic_semicolon] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), + [sym_class_body] = STATE(3837), + [sym__alpha_identifier] = ACTIONS(4547), + [anon_sym_AT] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_COMMA] = ACTIONS(4549), + [anon_sym_LT] = ACTIONS(4547), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4549), + [anon_sym_get] = ACTIONS(4547), + [anon_sym_set] = ACTIONS(4547), + [anon_sym_STAR] = ACTIONS(4547), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4549), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE_PIPE] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ] = ACTIONS(4547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ] = ACTIONS(4547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4549), + [anon_sym_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_EQ] = ACTIONS(4549), + [anon_sym_BANGin] = ACTIONS(4549), + [anon_sym_is] = ACTIONS(4547), + [anon_sym_BANGis] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_as_QMARK] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4549), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4549), + [anon_sym_suspend] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_annotation] = ACTIONS(4547), + [anon_sym_data] = ACTIONS(4547), + [anon_sym_inner] = ACTIONS(4547), + [anon_sym_value] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_lateinit] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_tailrec] = ACTIONS(4547), + [anon_sym_operator] = ACTIONS(4547), + [anon_sym_infix] = ACTIONS(4547), + [anon_sym_inline] = ACTIONS(4547), + [anon_sym_external] = ACTIONS(4547), + [sym_property_modifier] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_final] = ACTIONS(4547), + [anon_sym_open] = ACTIONS(4547), + [anon_sym_vararg] = ACTIONS(4547), + [anon_sym_noinline] = ACTIONS(4547), + [anon_sym_crossinline] = ACTIONS(4547), + [anon_sym_expect] = ACTIONS(4547), + [anon_sym_actual] = ACTIONS(4547), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4549), + [sym__automatic_semicolon] = ACTIONS(4549), + [sym_safe_nav] = ACTIONS(4549), [sym_multiline_comment] = ACTIONS(3), }, [3802] = { - [sym_function_body] = STATE(3291), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_RBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [anon_sym_DASH_GT] = ACTIONS(4514), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LPAREN] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_by] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4674), + [anon_sym_where] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4674), + [anon_sym_set] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4674), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_QMARK_COLON] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_BANGin] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_BANGis] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_as_QMARK] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4674), + [anon_sym_sealed] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4674), + [anon_sym_inner] = ACTIONS(4674), + [anon_sym_value] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), [sym_multiline_comment] = ACTIONS(3), }, [3803] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [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_DOT] = 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__alpha_identifier] = ACTIONS(4551), + [anon_sym_AT] = ACTIONS(4553), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4553), + [anon_sym_get] = ACTIONS(4551), + [anon_sym_set] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4551), + [anon_sym_DOT_DOT] = ACTIONS(4553), + [anon_sym_QMARK_COLON] = ACTIONS(4553), + [anon_sym_AMP_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4551), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(4553), + [anon_sym_DASH_EQ] = ACTIONS(4553), + [anon_sym_STAR_EQ] = ACTIONS(4553), + [anon_sym_SLASH_EQ] = ACTIONS(4553), + [anon_sym_PERCENT_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4553), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4553), + [anon_sym_is] = ACTIONS(4551), + [anon_sym_BANGis] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4553), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_BANG_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4551), + [anon_sym_inner] = ACTIONS(4551), + [anon_sym_value] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_lateinit] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_tailrec] = ACTIONS(4551), + [anon_sym_operator] = ACTIONS(4551), + [anon_sym_infix] = ACTIONS(4551), + [anon_sym_inline] = ACTIONS(4551), + [anon_sym_external] = ACTIONS(4551), + [sym_property_modifier] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_final] = ACTIONS(4551), + [anon_sym_open] = ACTIONS(4551), + [anon_sym_vararg] = ACTIONS(4551), + [anon_sym_noinline] = ACTIONS(4551), + [anon_sym_crossinline] = ACTIONS(4551), + [anon_sym_expect] = ACTIONS(4551), + [anon_sym_actual] = ACTIONS(4551), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4553), + [sym__automatic_semicolon] = ACTIONS(4553), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), }, [3804] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [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_DOT] = 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), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4471), + [anon_sym_AT] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_constructor] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_where] = ACTIONS(4471), + [anon_sym_object] = ACTIONS(4471), + [anon_sym_fun] = ACTIONS(4471), + [anon_sym_get] = ACTIONS(4471), + [anon_sym_set] = ACTIONS(4471), + [anon_sym_this] = ACTIONS(4471), + [anon_sym_super] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4473), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4471), + [anon_sym_null] = ACTIONS(4471), + [anon_sym_if] = ACTIONS(4471), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_when] = ACTIONS(4471), + [anon_sym_try] = ACTIONS(4471), + [anon_sym_throw] = ACTIONS(4471), + [anon_sym_return] = ACTIONS(4471), + [anon_sym_continue] = ACTIONS(4471), + [anon_sym_break] = ACTIONS(4471), + [anon_sym_COLON_COLON] = ACTIONS(4473), + [anon_sym_BANGin] = ACTIONS(4473), + [anon_sym_is] = ACTIONS(4471), + [anon_sym_BANGis] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4473), + [anon_sym_DASH_DASH] = ACTIONS(4473), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_suspend] = ACTIONS(4471), + [anon_sym_sealed] = ACTIONS(4471), + [anon_sym_annotation] = ACTIONS(4471), + [anon_sym_data] = ACTIONS(4471), + [anon_sym_inner] = ACTIONS(4471), + [anon_sym_value] = ACTIONS(4471), + [anon_sym_override] = ACTIONS(4471), + [anon_sym_lateinit] = ACTIONS(4471), + [anon_sym_public] = ACTIONS(4471), + [anon_sym_private] = ACTIONS(4471), + [anon_sym_internal] = ACTIONS(4471), + [anon_sym_protected] = ACTIONS(4471), + [anon_sym_tailrec] = ACTIONS(4471), + [anon_sym_operator] = ACTIONS(4471), + [anon_sym_infix] = ACTIONS(4471), + [anon_sym_inline] = ACTIONS(4471), + [anon_sym_external] = ACTIONS(4471), + [sym_property_modifier] = ACTIONS(4471), + [anon_sym_abstract] = ACTIONS(4471), + [anon_sym_final] = ACTIONS(4471), + [anon_sym_open] = ACTIONS(4471), + [anon_sym_vararg] = ACTIONS(4471), + [anon_sym_noinline] = ACTIONS(4471), + [anon_sym_crossinline] = ACTIONS(4471), + [anon_sym_expect] = ACTIONS(4471), + [anon_sym_actual] = ACTIONS(4471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4473), + [anon_sym_continue_AT] = ACTIONS(4473), + [anon_sym_break_AT] = ACTIONS(4473), + [anon_sym_this_AT] = ACTIONS(4473), + [anon_sym_super_AT] = ACTIONS(4473), + [sym_real_literal] = ACTIONS(4473), + [sym_integer_literal] = ACTIONS(4471), + [sym_hex_literal] = ACTIONS(4473), + [sym_bin_literal] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_false] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4473), + [sym__backtick_identifier] = ACTIONS(4473), + [sym__automatic_semicolon] = ACTIONS(4473), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4473), }, [3805] = { - [sym__alpha_identifier] = ACTIONS(5120), - [anon_sym_AT] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5120), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_get] = ACTIONS(5120), - [anon_sym_set] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5120), - [sym_label] = ACTIONS(5122), - [anon_sym_in] = ACTIONS(5120), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_QMARK_COLON] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_else] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_BANGin] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5120), - [anon_sym_BANGis] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5120), - [anon_sym_as_QMARK] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_BANG_BANG] = ACTIONS(5122), - [anon_sym_suspend] = ACTIONS(5120), - [anon_sym_sealed] = ACTIONS(5120), - [anon_sym_annotation] = ACTIONS(5120), - [anon_sym_data] = ACTIONS(5120), - [anon_sym_inner] = ACTIONS(5120), - [anon_sym_value] = ACTIONS(5120), - [anon_sym_override] = ACTIONS(5120), - [anon_sym_lateinit] = ACTIONS(5120), - [anon_sym_public] = ACTIONS(5120), - [anon_sym_private] = ACTIONS(5120), - [anon_sym_internal] = ACTIONS(5120), - [anon_sym_protected] = ACTIONS(5120), - [anon_sym_tailrec] = ACTIONS(5120), - [anon_sym_operator] = ACTIONS(5120), - [anon_sym_infix] = ACTIONS(5120), - [anon_sym_inline] = ACTIONS(5120), - [anon_sym_external] = ACTIONS(5120), - [sym_property_modifier] = ACTIONS(5120), - [anon_sym_abstract] = ACTIONS(5120), - [anon_sym_final] = ACTIONS(5120), - [anon_sym_open] = ACTIONS(5120), - [anon_sym_vararg] = ACTIONS(5120), - [anon_sym_noinline] = ACTIONS(5120), - [anon_sym_crossinline] = ACTIONS(5120), - [anon_sym_expect] = ACTIONS(5120), - [anon_sym_actual] = ACTIONS(5120), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5122), - [sym__automatic_semicolon] = ACTIONS(5122), - [sym_safe_nav] = ACTIONS(5122), + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_value] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), [sym_multiline_comment] = ACTIONS(3), }, [3806] = { - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_typealias] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_interface] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_val] = ACTIONS(4313), + [anon_sym_var] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_fun] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_this] = ACTIONS(4313), + [anon_sym_super] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4315), + [sym_label] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_do] = ACTIONS(4313), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_when] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_suspend] = ACTIONS(4313), + [anon_sym_sealed] = ACTIONS(4313), + [anon_sym_annotation] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4313), + [anon_sym_inner] = ACTIONS(4313), + [anon_sym_value] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_lateinit] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_internal] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_tailrec] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_infix] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym_external] = ACTIONS(4313), + [sym_property_modifier] = ACTIONS(4313), + [anon_sym_abstract] = ACTIONS(4313), + [anon_sym_final] = ACTIONS(4313), + [anon_sym_open] = ACTIONS(4313), + [anon_sym_vararg] = ACTIONS(4313), + [anon_sym_noinline] = ACTIONS(4313), + [anon_sym_crossinline] = ACTIONS(4313), + [anon_sym_expect] = ACTIONS(4313), + [anon_sym_actual] = ACTIONS(4313), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4315), + [anon_sym_continue_AT] = ACTIONS(4315), + [anon_sym_break_AT] = ACTIONS(4315), + [anon_sym_this_AT] = ACTIONS(4315), + [anon_sym_super_AT] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4315), + [sym_integer_literal] = ACTIONS(4313), + [sym_hex_literal] = ACTIONS(4315), + [sym_bin_literal] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4313), + [anon_sym_false] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4315), + [sym__backtick_identifier] = ACTIONS(4315), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4315), }, [3807] = { - [sym__alpha_identifier] = ACTIONS(4773), - [anon_sym_AT] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_as] = ACTIONS(4773), - [anon_sym_EQ] = ACTIONS(4773), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_where] = ACTIONS(4773), - [anon_sym_DOT] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4775), - [anon_sym_get] = ACTIONS(4773), - [anon_sym_set] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [sym_label] = ACTIONS(4775), - [anon_sym_in] = ACTIONS(4773), - [anon_sym_DOT_DOT] = ACTIONS(4775), - [anon_sym_QMARK_COLON] = ACTIONS(4775), - [anon_sym_AMP_AMP] = ACTIONS(4775), - [anon_sym_PIPE_PIPE] = ACTIONS(4775), - [anon_sym_else] = ACTIONS(4773), - [anon_sym_COLON_COLON] = ACTIONS(4775), - [anon_sym_PLUS_EQ] = ACTIONS(4775), - [anon_sym_DASH_EQ] = ACTIONS(4775), - [anon_sym_STAR_EQ] = ACTIONS(4775), - [anon_sym_SLASH_EQ] = ACTIONS(4775), - [anon_sym_PERCENT_EQ] = ACTIONS(4775), - [anon_sym_BANG_EQ] = ACTIONS(4773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4775), - [anon_sym_EQ_EQ] = ACTIONS(4773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4775), - [anon_sym_LT_EQ] = ACTIONS(4775), - [anon_sym_GT_EQ] = ACTIONS(4775), - [anon_sym_BANGin] = ACTIONS(4775), - [anon_sym_is] = ACTIONS(4773), - [anon_sym_BANGis] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_PERCENT] = ACTIONS(4773), - [anon_sym_as_QMARK] = ACTIONS(4775), - [anon_sym_PLUS_PLUS] = ACTIONS(4775), - [anon_sym_DASH_DASH] = ACTIONS(4775), - [anon_sym_BANG_BANG] = ACTIONS(4775), - [anon_sym_suspend] = ACTIONS(4773), - [anon_sym_sealed] = ACTIONS(4773), - [anon_sym_annotation] = ACTIONS(4773), - [anon_sym_data] = ACTIONS(4773), - [anon_sym_inner] = ACTIONS(4773), - [anon_sym_value] = ACTIONS(4773), - [anon_sym_override] = ACTIONS(4773), - [anon_sym_lateinit] = ACTIONS(4773), - [anon_sym_public] = ACTIONS(4773), - [anon_sym_private] = ACTIONS(4773), - [anon_sym_internal] = ACTIONS(4773), - [anon_sym_protected] = ACTIONS(4773), - [anon_sym_tailrec] = ACTIONS(4773), - [anon_sym_operator] = ACTIONS(4773), - [anon_sym_infix] = ACTIONS(4773), - [anon_sym_inline] = ACTIONS(4773), - [anon_sym_external] = ACTIONS(4773), - [sym_property_modifier] = ACTIONS(4773), - [anon_sym_abstract] = ACTIONS(4773), - [anon_sym_final] = ACTIONS(4773), - [anon_sym_open] = ACTIONS(4773), - [anon_sym_vararg] = ACTIONS(4773), - [anon_sym_noinline] = ACTIONS(4773), - [anon_sym_crossinline] = ACTIONS(4773), - [anon_sym_expect] = ACTIONS(4773), - [anon_sym_actual] = ACTIONS(4773), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4775), - [sym__automatic_semicolon] = ACTIONS(4775), - [sym_safe_nav] = ACTIONS(4775), + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4672), + [anon_sym_COMMA] = ACTIONS(4672), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4672), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4672), + [anon_sym_QMARK_COLON] = ACTIONS(4672), + [anon_sym_AMP_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_PLUS_EQ] = ACTIONS(4672), + [anon_sym_DASH_EQ] = ACTIONS(4672), + [anon_sym_STAR_EQ] = ACTIONS(4672), + [anon_sym_SLASH_EQ] = ACTIONS(4672), + [anon_sym_PERCENT_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_BANGin] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_as_QMARK] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4672), + [sym__automatic_semicolon] = ACTIONS(4672), + [sym_safe_nav] = ACTIONS(4672), [sym_multiline_comment] = ACTIONS(3), }, [3808] = { - [sym_type_constraints] = STATE(4064), - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [3809] = { - [sym__alpha_identifier] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_where] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_get] = ACTIONS(1696), - [anon_sym_set] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_QMARK_COLON] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), - [anon_sym_STAR_EQ] = ACTIONS(1698), - [anon_sym_SLASH_EQ] = ACTIONS(1698), - [anon_sym_PERCENT_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_BANGin] = ACTIONS(1698), - [anon_sym_is] = ACTIONS(1696), - [anon_sym_BANGis] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_BANG_BANG] = ACTIONS(1698), - [anon_sym_suspend] = ACTIONS(1696), - [anon_sym_sealed] = ACTIONS(1696), - [anon_sym_annotation] = ACTIONS(1696), - [anon_sym_data] = ACTIONS(1696), - [anon_sym_inner] = ACTIONS(1696), - [anon_sym_value] = ACTIONS(1696), - [anon_sym_override] = ACTIONS(1696), - [anon_sym_lateinit] = ACTIONS(1696), - [anon_sym_public] = ACTIONS(1696), - [anon_sym_private] = ACTIONS(1696), - [anon_sym_internal] = ACTIONS(1696), - [anon_sym_protected] = ACTIONS(1696), - [anon_sym_tailrec] = ACTIONS(1696), - [anon_sym_operator] = ACTIONS(1696), - [anon_sym_infix] = ACTIONS(1696), - [anon_sym_inline] = ACTIONS(1696), - [anon_sym_external] = ACTIONS(1696), - [sym_property_modifier] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_final] = ACTIONS(1696), - [anon_sym_open] = ACTIONS(1696), - [anon_sym_vararg] = ACTIONS(1696), - [anon_sym_noinline] = ACTIONS(1696), - [anon_sym_crossinline] = ACTIONS(1696), - [anon_sym_expect] = ACTIONS(1696), - [anon_sym_actual] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1698), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym_safe_nav] = ACTIONS(1698), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [3810] = { - [sym__alpha_identifier] = ACTIONS(4645), - [anon_sym_AT] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_RBRACE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_object] = ACTIONS(4645), - [anon_sym_fun] = ACTIONS(4645), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_get] = ACTIONS(4645), - [anon_sym_set] = ACTIONS(4645), - [anon_sym_this] = ACTIONS(4645), - [anon_sym_super] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4647), - [sym_label] = ACTIONS(4645), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_null] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_else] = ACTIONS(4645), - [anon_sym_when] = ACTIONS(4645), - [anon_sym_try] = ACTIONS(4645), - [anon_sym_throw] = ACTIONS(4645), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_continue] = ACTIONS(4645), - [anon_sym_break] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4647), - [anon_sym_BANGin] = ACTIONS(4647), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_BANGis] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_PLUS_PLUS] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_suspend] = ACTIONS(4645), - [anon_sym_sealed] = ACTIONS(4645), - [anon_sym_annotation] = ACTIONS(4645), - [anon_sym_data] = ACTIONS(4645), - [anon_sym_inner] = ACTIONS(4645), - [anon_sym_value] = ACTIONS(4645), - [anon_sym_override] = ACTIONS(4645), - [anon_sym_lateinit] = ACTIONS(4645), - [anon_sym_public] = ACTIONS(4645), - [anon_sym_private] = ACTIONS(4645), - [anon_sym_internal] = ACTIONS(4645), - [anon_sym_protected] = ACTIONS(4645), - [anon_sym_tailrec] = ACTIONS(4645), - [anon_sym_operator] = ACTIONS(4645), - [anon_sym_infix] = ACTIONS(4645), - [anon_sym_inline] = ACTIONS(4645), - [anon_sym_external] = ACTIONS(4645), - [sym_property_modifier] = ACTIONS(4645), - [anon_sym_abstract] = ACTIONS(4645), - [anon_sym_final] = ACTIONS(4645), - [anon_sym_open] = ACTIONS(4645), - [anon_sym_vararg] = ACTIONS(4645), - [anon_sym_noinline] = ACTIONS(4645), - [anon_sym_crossinline] = ACTIONS(4645), - [anon_sym_expect] = ACTIONS(4645), - [anon_sym_actual] = ACTIONS(4645), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4647), - [anon_sym_continue_AT] = ACTIONS(4647), - [anon_sym_break_AT] = ACTIONS(4647), - [sym_real_literal] = ACTIONS(4647), - [sym_integer_literal] = ACTIONS(4645), - [sym_hex_literal] = ACTIONS(4647), - [sym_bin_literal] = ACTIONS(4647), - [anon_sym_true] = ACTIONS(4645), - [anon_sym_false] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4647), - [sym__backtick_identifier] = ACTIONS(4647), - [sym__automatic_semicolon] = ACTIONS(4647), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4647), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), }, [3811] = { - [sym_type_constraints] = STATE(4067), - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1583), + [sym__in_operator] = STATE(1586), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1614), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1657), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7043), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7047), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7051), + [anon_sym_DOT_DOT] = ACTIONS(7053), + [anon_sym_QMARK_COLON] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7069), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [3812] = { - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3258), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7131), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4277), + [anon_sym_continue_AT] = ACTIONS(4277), + [anon_sym_break_AT] = ACTIONS(4277), + [anon_sym_this_AT] = ACTIONS(4277), + [anon_sym_super_AT] = ACTIONS(4277), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4277), }, [3813] = { - [sym_type_constraints] = STATE(4068), - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_class_body] = STATE(3833), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), }, [3814] = { - [sym__alpha_identifier] = ACTIONS(4685), - [anon_sym_AT] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_EQ] = ACTIONS(4687), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_by] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_object] = ACTIONS(4685), - [anon_sym_fun] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_get] = ACTIONS(4685), - [anon_sym_set] = ACTIONS(4685), - [anon_sym_this] = ACTIONS(4685), - [anon_sym_super] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4687), - [sym_label] = ACTIONS(4685), - [anon_sym_in] = ACTIONS(4685), - [anon_sym_null] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_when] = ACTIONS(4685), - [anon_sym_try] = ACTIONS(4685), - [anon_sym_throw] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_BANGin] = ACTIONS(4687), - [anon_sym_is] = ACTIONS(4685), - [anon_sym_BANGis] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_suspend] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4685), - [anon_sym_data] = ACTIONS(4685), - [anon_sym_inner] = ACTIONS(4685), - [anon_sym_value] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_lateinit] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_tailrec] = ACTIONS(4685), - [anon_sym_operator] = ACTIONS(4685), - [anon_sym_infix] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_external] = ACTIONS(4685), - [sym_property_modifier] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_final] = ACTIONS(4685), - [anon_sym_open] = ACTIONS(4685), - [anon_sym_vararg] = ACTIONS(4685), - [anon_sym_noinline] = ACTIONS(4685), - [anon_sym_crossinline] = ACTIONS(4685), - [anon_sym_expect] = ACTIONS(4685), - [anon_sym_actual] = ACTIONS(4685), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4687), - [anon_sym_continue_AT] = ACTIONS(4687), - [anon_sym_break_AT] = ACTIONS(4687), - [sym_real_literal] = ACTIONS(4687), - [sym_integer_literal] = ACTIONS(4685), - [sym_hex_literal] = ACTIONS(4687), - [sym_bin_literal] = ACTIONS(4687), - [anon_sym_true] = ACTIONS(4685), - [anon_sym_false] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4687), - [sym__backtick_identifier] = ACTIONS(4687), - [sym__automatic_semicolon] = ACTIONS(4687), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4687), + [sym_type_constraints] = STATE(3020), + [sym_enum_class_body] = STATE(3061), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_fun] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3278), + [anon_sym_super] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3282), + [anon_sym_continue_AT] = ACTIONS(3282), + [anon_sym_break_AT] = ACTIONS(3282), + [anon_sym_this_AT] = ACTIONS(3282), + [anon_sym_super_AT] = ACTIONS(3282), + [sym_real_literal] = ACTIONS(3282), + [sym_integer_literal] = ACTIONS(3278), + [sym_hex_literal] = ACTIONS(3282), + [sym_bin_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3282), }, [3815] = { - [sym_type_constraints] = STATE(4070), - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), }, [3816] = { - [sym_class_body] = STATE(3453), - [sym_type_constraints] = STATE(3087), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6976), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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_class_body] = STATE(3832), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3817] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4681), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [anon_sym_COMMA] = ACTIONS(4681), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4681), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4681), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4681), + [anon_sym_QMARK_COLON] = ACTIONS(4681), + [anon_sym_AMP_AMP] = ACTIONS(4681), + [anon_sym_PIPE_PIPE] = ACTIONS(4681), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4681), + [anon_sym_PLUS_EQ] = ACTIONS(4681), + [anon_sym_DASH_EQ] = ACTIONS(4681), + [anon_sym_STAR_EQ] = ACTIONS(4681), + [anon_sym_SLASH_EQ] = ACTIONS(4681), + [anon_sym_PERCENT_EQ] = ACTIONS(4681), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4681), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4681), + [anon_sym_GT_EQ] = ACTIONS(4681), + [anon_sym_BANGin] = ACTIONS(4681), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4681), + [anon_sym_PLUS_PLUS] = ACTIONS(4681), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_BANG_BANG] = ACTIONS(4681), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4681), + [sym__automatic_semicolon] = ACTIONS(4681), + [sym_safe_nav] = ACTIONS(4681), [sym_multiline_comment] = ACTIONS(3), }, [3818] = { - [sym_type_constraints] = STATE(4072), - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_AT2] = ACTIONS(7133), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), }, [3819] = { - [sym__alpha_identifier] = ACTIONS(4743), - [anon_sym_AT] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_as] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4743), - [anon_sym_LBRACE] = ACTIONS(4745), - [anon_sym_RBRACE] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_COMMA] = ACTIONS(4745), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4743), - [anon_sym_where] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4743), - [sym_label] = ACTIONS(4745), - [anon_sym_in] = ACTIONS(4743), - [anon_sym_DOT_DOT] = ACTIONS(4745), - [anon_sym_QMARK_COLON] = ACTIONS(4745), - [anon_sym_AMP_AMP] = ACTIONS(4745), - [anon_sym_PIPE_PIPE] = ACTIONS(4745), - [anon_sym_else] = ACTIONS(4743), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym_PLUS_EQ] = ACTIONS(4745), - [anon_sym_DASH_EQ] = ACTIONS(4745), - [anon_sym_STAR_EQ] = ACTIONS(4745), - [anon_sym_SLASH_EQ] = ACTIONS(4745), - [anon_sym_PERCENT_EQ] = ACTIONS(4745), - [anon_sym_BANG_EQ] = ACTIONS(4743), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4745), - [anon_sym_EQ_EQ] = ACTIONS(4743), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4745), - [anon_sym_LT_EQ] = ACTIONS(4745), - [anon_sym_GT_EQ] = ACTIONS(4745), - [anon_sym_BANGin] = ACTIONS(4745), - [anon_sym_is] = ACTIONS(4743), - [anon_sym_BANGis] = ACTIONS(4745), - [anon_sym_PLUS] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4743), - [anon_sym_PERCENT] = ACTIONS(4743), - [anon_sym_as_QMARK] = ACTIONS(4745), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_BANG_BANG] = ACTIONS(4745), - [anon_sym_suspend] = ACTIONS(4743), - [anon_sym_sealed] = ACTIONS(4743), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_data] = ACTIONS(4743), - [anon_sym_inner] = ACTIONS(4743), - [anon_sym_value] = ACTIONS(4743), - [anon_sym_override] = ACTIONS(4743), - [anon_sym_lateinit] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_internal] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_tailrec] = ACTIONS(4743), - [anon_sym_operator] = ACTIONS(4743), - [anon_sym_infix] = ACTIONS(4743), - [anon_sym_inline] = ACTIONS(4743), - [anon_sym_external] = ACTIONS(4743), - [sym_property_modifier] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_open] = ACTIONS(4743), - [anon_sym_vararg] = ACTIONS(4743), - [anon_sym_noinline] = ACTIONS(4743), - [anon_sym_crossinline] = ACTIONS(4743), - [anon_sym_expect] = ACTIONS(4743), - [anon_sym_actual] = ACTIONS(4743), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4745), - [sym__automatic_semicolon] = ACTIONS(4745), - [sym_safe_nav] = ACTIONS(4745), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_by] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4206), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4206), + [anon_sym_QMARK_COLON] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_PIPE_PIPE] = ACTIONS(4206), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_PLUS_EQ] = ACTIONS(4206), + [anon_sym_DASH_EQ] = ACTIONS(4206), + [anon_sym_STAR_EQ] = ACTIONS(4206), + [anon_sym_SLASH_EQ] = ACTIONS(4206), + [anon_sym_PERCENT_EQ] = ACTIONS(4206), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4206), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4206), + [anon_sym_GT_EQ] = ACTIONS(4206), + [anon_sym_BANGin] = ACTIONS(4206), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_BANG_BANG] = ACTIONS(4206), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), [sym_multiline_comment] = ACTIONS(3), }, [3820] = { - [sym__alpha_identifier] = ACTIONS(4490), - [anon_sym_AT] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_as] = ACTIONS(4490), - [anon_sym_EQ] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(4492), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym_COMMA] = ACTIONS(4492), - [anon_sym_LT] = ACTIONS(4490), - [anon_sym_GT] = ACTIONS(4490), - [anon_sym_where] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4490), - [anon_sym_SEMI] = ACTIONS(4492), - [anon_sym_get] = ACTIONS(4490), - [anon_sym_set] = ACTIONS(4490), - [anon_sym_STAR] = ACTIONS(4490), - [sym_label] = ACTIONS(4492), - [anon_sym_in] = ACTIONS(4490), - [anon_sym_DOT_DOT] = ACTIONS(4492), - [anon_sym_QMARK_COLON] = ACTIONS(4492), - [anon_sym_AMP_AMP] = ACTIONS(4492), - [anon_sym_PIPE_PIPE] = ACTIONS(4492), - [anon_sym_else] = ACTIONS(4490), - [anon_sym_COLON_COLON] = ACTIONS(4492), - [anon_sym_PLUS_EQ] = ACTIONS(4492), - [anon_sym_DASH_EQ] = ACTIONS(4492), - [anon_sym_STAR_EQ] = ACTIONS(4492), - [anon_sym_SLASH_EQ] = ACTIONS(4492), - [anon_sym_PERCENT_EQ] = ACTIONS(4492), - [anon_sym_BANG_EQ] = ACTIONS(4490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4492), - [anon_sym_EQ_EQ] = ACTIONS(4490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4492), - [anon_sym_LT_EQ] = ACTIONS(4492), - [anon_sym_GT_EQ] = ACTIONS(4492), - [anon_sym_BANGin] = ACTIONS(4492), - [anon_sym_is] = ACTIONS(4490), - [anon_sym_BANGis] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4490), - [anon_sym_SLASH] = ACTIONS(4490), - [anon_sym_PERCENT] = ACTIONS(4490), - [anon_sym_as_QMARK] = ACTIONS(4492), - [anon_sym_PLUS_PLUS] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4492), - [anon_sym_BANG_BANG] = ACTIONS(4492), - [anon_sym_suspend] = ACTIONS(4490), - [anon_sym_sealed] = ACTIONS(4490), - [anon_sym_annotation] = ACTIONS(4490), - [anon_sym_data] = ACTIONS(4490), - [anon_sym_inner] = ACTIONS(4490), - [anon_sym_value] = ACTIONS(4490), - [anon_sym_override] = ACTIONS(4490), - [anon_sym_lateinit] = ACTIONS(4490), - [anon_sym_public] = ACTIONS(4490), - [anon_sym_private] = ACTIONS(4490), - [anon_sym_internal] = ACTIONS(4490), - [anon_sym_protected] = ACTIONS(4490), - [anon_sym_tailrec] = ACTIONS(4490), - [anon_sym_operator] = ACTIONS(4490), - [anon_sym_infix] = ACTIONS(4490), - [anon_sym_inline] = ACTIONS(4490), - [anon_sym_external] = ACTIONS(4490), - [sym_property_modifier] = ACTIONS(4490), - [anon_sym_abstract] = ACTIONS(4490), - [anon_sym_final] = ACTIONS(4490), - [anon_sym_open] = ACTIONS(4490), - [anon_sym_vararg] = ACTIONS(4490), - [anon_sym_noinline] = ACTIONS(4490), - [anon_sym_crossinline] = ACTIONS(4490), - [anon_sym_expect] = ACTIONS(4490), - [anon_sym_actual] = ACTIONS(4490), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4492), - [sym__automatic_semicolon] = ACTIONS(4492), - [sym_safe_nav] = ACTIONS(4492), + [sym_enum_class_body] = STATE(3832), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3821] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(6978), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_as] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_LBRACE] = ACTIONS(4730), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4730), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4728), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_get] = ACTIONS(4728), + [anon_sym_set] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4730), + [anon_sym_in] = ACTIONS(4728), + [anon_sym_DOT_DOT] = ACTIONS(4730), + [anon_sym_QMARK_COLON] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4730), + [anon_sym_PLUS_EQ] = ACTIONS(4730), + [anon_sym_DASH_EQ] = ACTIONS(4730), + [anon_sym_STAR_EQ] = ACTIONS(4730), + [anon_sym_SLASH_EQ] = ACTIONS(4730), + [anon_sym_PERCENT_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT_EQ] = ACTIONS(4730), + [anon_sym_GT_EQ] = ACTIONS(4730), + [anon_sym_BANGin] = ACTIONS(4730), + [anon_sym_is] = ACTIONS(4728), + [anon_sym_BANGis] = ACTIONS(4730), + [anon_sym_PLUS] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_SLASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4730), + [anon_sym_PLUS_PLUS] = ACTIONS(4730), + [anon_sym_DASH_DASH] = ACTIONS(4730), + [anon_sym_BANG_BANG] = ACTIONS(4730), + [anon_sym_suspend] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4728), + [anon_sym_inner] = ACTIONS(4728), + [anon_sym_value] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_lateinit] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_tailrec] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4728), + [anon_sym_infix] = ACTIONS(4728), + [anon_sym_inline] = ACTIONS(4728), + [anon_sym_external] = ACTIONS(4728), + [sym_property_modifier] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_final] = ACTIONS(4728), + [anon_sym_open] = ACTIONS(4728), + [anon_sym_vararg] = ACTIONS(4728), + [anon_sym_noinline] = ACTIONS(4728), + [anon_sym_crossinline] = ACTIONS(4728), + [anon_sym_expect] = ACTIONS(4728), + [anon_sym_actual] = ACTIONS(4728), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4730), + [sym__automatic_semicolon] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), [sym_multiline_comment] = ACTIONS(3), }, [3822] = { - [sym__alpha_identifier] = ACTIONS(4919), - [anon_sym_AT] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_as] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4919), - [anon_sym_GT] = ACTIONS(4919), - [anon_sym_where] = ACTIONS(4919), - [anon_sym_DOT] = ACTIONS(4919), - [anon_sym_SEMI] = ACTIONS(4921), - [anon_sym_get] = ACTIONS(4919), - [anon_sym_set] = ACTIONS(4919), - [anon_sym_STAR] = ACTIONS(4919), - [sym_label] = ACTIONS(4921), - [anon_sym_in] = ACTIONS(4919), - [anon_sym_DOT_DOT] = ACTIONS(4921), - [anon_sym_QMARK_COLON] = ACTIONS(4921), - [anon_sym_AMP_AMP] = ACTIONS(4921), - [anon_sym_PIPE_PIPE] = ACTIONS(4921), - [anon_sym_else] = ACTIONS(4919), - [anon_sym_COLON_COLON] = ACTIONS(4921), - [anon_sym_PLUS_EQ] = ACTIONS(4921), - [anon_sym_DASH_EQ] = ACTIONS(4921), - [anon_sym_STAR_EQ] = ACTIONS(4921), - [anon_sym_SLASH_EQ] = ACTIONS(4921), - [anon_sym_PERCENT_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4921), - [anon_sym_LT_EQ] = ACTIONS(4921), - [anon_sym_GT_EQ] = ACTIONS(4921), - [anon_sym_BANGin] = ACTIONS(4921), - [anon_sym_is] = ACTIONS(4919), - [anon_sym_BANGis] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4919), - [anon_sym_DASH] = ACTIONS(4919), - [anon_sym_SLASH] = ACTIONS(4919), - [anon_sym_PERCENT] = ACTIONS(4919), - [anon_sym_as_QMARK] = ACTIONS(4921), - [anon_sym_PLUS_PLUS] = ACTIONS(4921), - [anon_sym_DASH_DASH] = ACTIONS(4921), - [anon_sym_BANG_BANG] = ACTIONS(4921), - [anon_sym_suspend] = ACTIONS(4919), - [anon_sym_sealed] = ACTIONS(4919), - [anon_sym_annotation] = ACTIONS(4919), - [anon_sym_data] = ACTIONS(4919), - [anon_sym_inner] = ACTIONS(4919), - [anon_sym_value] = ACTIONS(4919), - [anon_sym_override] = ACTIONS(4919), - [anon_sym_lateinit] = ACTIONS(4919), - [anon_sym_public] = ACTIONS(4919), - [anon_sym_private] = ACTIONS(4919), - [anon_sym_internal] = ACTIONS(4919), - [anon_sym_protected] = ACTIONS(4919), - [anon_sym_tailrec] = ACTIONS(4919), - [anon_sym_operator] = ACTIONS(4919), - [anon_sym_infix] = ACTIONS(4919), - [anon_sym_inline] = ACTIONS(4919), - [anon_sym_external] = ACTIONS(4919), - [sym_property_modifier] = ACTIONS(4919), - [anon_sym_abstract] = ACTIONS(4919), - [anon_sym_final] = ACTIONS(4919), - [anon_sym_open] = ACTIONS(4919), - [anon_sym_vararg] = ACTIONS(4919), - [anon_sym_noinline] = ACTIONS(4919), - [anon_sym_crossinline] = ACTIONS(4919), - [anon_sym_expect] = ACTIONS(4919), - [anon_sym_actual] = ACTIONS(4919), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4921), - [sym__automatic_semicolon] = ACTIONS(4921), - [sym_safe_nav] = ACTIONS(4921), + [sym_class_body] = STATE(3962), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), [sym_multiline_comment] = ACTIONS(3), }, [3823] = { - [sym__alpha_identifier] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [sym_label] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_QMARK_COLON] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_as_QMARK] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_BANG_BANG] = ACTIONS(3342), - [anon_sym_suspend] = ACTIONS(3340), - [anon_sym_sealed] = ACTIONS(3340), - [anon_sym_annotation] = ACTIONS(3340), - [anon_sym_data] = ACTIONS(3340), - [anon_sym_inner] = ACTIONS(3340), - [anon_sym_value] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_lateinit] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_internal] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_tailrec] = ACTIONS(3340), - [anon_sym_operator] = ACTIONS(3340), - [anon_sym_infix] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym_external] = ACTIONS(3340), - [sym_property_modifier] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_final] = ACTIONS(3340), - [anon_sym_open] = ACTIONS(3340), - [anon_sym_vararg] = ACTIONS(3340), - [anon_sym_noinline] = ACTIONS(3340), - [anon_sym_crossinline] = ACTIONS(3340), - [anon_sym_expect] = ACTIONS(3340), - [anon_sym_actual] = ACTIONS(3340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3342), - [sym__automatic_semicolon] = ACTIONS(3342), - [sym_safe_nav] = ACTIONS(3342), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [3824] = { - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [sym_label] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_suspend] = ACTIONS(4011), - [anon_sym_sealed] = ACTIONS(4011), - [anon_sym_annotation] = ACTIONS(4011), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_override] = ACTIONS(4011), - [anon_sym_lateinit] = ACTIONS(4011), - [anon_sym_public] = ACTIONS(4011), - [anon_sym_private] = ACTIONS(4011), - [anon_sym_internal] = ACTIONS(4011), - [anon_sym_protected] = ACTIONS(4011), - [anon_sym_tailrec] = ACTIONS(4011), - [anon_sym_operator] = ACTIONS(4011), - [anon_sym_infix] = ACTIONS(4011), - [anon_sym_inline] = ACTIONS(4011), - [anon_sym_external] = ACTIONS(4011), - [sym_property_modifier] = ACTIONS(4011), - [anon_sym_abstract] = ACTIONS(4011), - [anon_sym_final] = ACTIONS(4011), - [anon_sym_open] = ACTIONS(4011), - [anon_sym_vararg] = ACTIONS(4011), - [anon_sym_noinline] = ACTIONS(4011), - [anon_sym_crossinline] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4013), - [sym__automatic_semicolon] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_typealias] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_interface] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_val] = ACTIONS(4317), + [anon_sym_var] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_this] = ACTIONS(4317), + [anon_sym_super] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [sym_label] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_do] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_when] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_suspend] = ACTIONS(4317), + [anon_sym_sealed] = ACTIONS(4317), + [anon_sym_annotation] = ACTIONS(4317), + [anon_sym_data] = ACTIONS(4317), + [anon_sym_inner] = ACTIONS(4317), + [anon_sym_value] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_lateinit] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_internal] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_tailrec] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_infix] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym_external] = ACTIONS(4317), + [sym_property_modifier] = ACTIONS(4317), + [anon_sym_abstract] = ACTIONS(4317), + [anon_sym_final] = ACTIONS(4317), + [anon_sym_open] = ACTIONS(4317), + [anon_sym_vararg] = ACTIONS(4317), + [anon_sym_noinline] = ACTIONS(4317), + [anon_sym_crossinline] = ACTIONS(4317), + [anon_sym_expect] = ACTIONS(4317), + [anon_sym_actual] = ACTIONS(4317), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4319), + [anon_sym_continue_AT] = ACTIONS(4319), + [anon_sym_break_AT] = ACTIONS(4319), + [anon_sym_this_AT] = ACTIONS(4319), + [anon_sym_super_AT] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4319), + [sym_integer_literal] = ACTIONS(4317), + [sym_hex_literal] = ACTIONS(4319), + [sym_bin_literal] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4317), + [anon_sym_false] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4319), + [sym__backtick_identifier] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), }, [3825] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(6954), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [3826] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4817), - [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(4819), - [anon_sym_QMARK_COLON] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [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(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [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(4817), - [anon_sym_PERCENT] = ACTIONS(4817), - [anon_sym_as_QMARK] = ACTIONS(4819), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4394), - [anon_sym_BANG_BANG] = ACTIONS(4819), - [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), - [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(4819), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4396), + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4762), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4765), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4765), + [anon_sym_QMARK_COLON] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_BANGin] = ACTIONS(4765), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4765), + [sym__automatic_semicolon] = ACTIONS(4765), + [sym_safe_nav] = ACTIONS(4765), + [sym_multiline_comment] = ACTIONS(3), }, [3827] = { - [sym__alpha_identifier] = ACTIONS(4881), - [anon_sym_AT] = ACTIONS(4883), - [anon_sym_LBRACK] = ACTIONS(4883), - [anon_sym_as] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4883), - [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4883), - [anon_sym_COMMA] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4881), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4883), - [anon_sym_get] = ACTIONS(4881), - [anon_sym_set] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4881), - [sym_label] = ACTIONS(4883), - [anon_sym_in] = ACTIONS(4881), - [anon_sym_DOT_DOT] = ACTIONS(4883), - [anon_sym_QMARK_COLON] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_else] = ACTIONS(4881), - [anon_sym_COLON_COLON] = ACTIONS(4883), - [anon_sym_PLUS_EQ] = ACTIONS(4883), - [anon_sym_DASH_EQ] = ACTIONS(4883), - [anon_sym_STAR_EQ] = ACTIONS(4883), - [anon_sym_SLASH_EQ] = ACTIONS(4883), - [anon_sym_PERCENT_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4883), - [anon_sym_LT_EQ] = ACTIONS(4883), - [anon_sym_GT_EQ] = ACTIONS(4883), - [anon_sym_BANGin] = ACTIONS(4883), - [anon_sym_is] = ACTIONS(4881), - [anon_sym_BANGis] = ACTIONS(4883), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4881), - [anon_sym_as_QMARK] = ACTIONS(4883), - [anon_sym_PLUS_PLUS] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4883), - [anon_sym_BANG_BANG] = ACTIONS(4883), - [anon_sym_suspend] = ACTIONS(4881), - [anon_sym_sealed] = ACTIONS(4881), - [anon_sym_annotation] = ACTIONS(4881), - [anon_sym_data] = ACTIONS(4881), - [anon_sym_inner] = ACTIONS(4881), - [anon_sym_value] = ACTIONS(4881), - [anon_sym_override] = ACTIONS(4881), - [anon_sym_lateinit] = ACTIONS(4881), - [anon_sym_public] = ACTIONS(4881), - [anon_sym_private] = ACTIONS(4881), - [anon_sym_internal] = ACTIONS(4881), - [anon_sym_protected] = ACTIONS(4881), - [anon_sym_tailrec] = ACTIONS(4881), - [anon_sym_operator] = ACTIONS(4881), - [anon_sym_infix] = ACTIONS(4881), - [anon_sym_inline] = ACTIONS(4881), - [anon_sym_external] = ACTIONS(4881), - [sym_property_modifier] = ACTIONS(4881), - [anon_sym_abstract] = ACTIONS(4881), - [anon_sym_final] = ACTIONS(4881), - [anon_sym_open] = ACTIONS(4881), - [anon_sym_vararg] = ACTIONS(4881), - [anon_sym_noinline] = ACTIONS(4881), - [anon_sym_crossinline] = ACTIONS(4881), - [anon_sym_expect] = ACTIONS(4881), - [anon_sym_actual] = ACTIONS(4881), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4883), - [sym__automatic_semicolon] = ACTIONS(4883), - [sym_safe_nav] = ACTIONS(4883), + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4760), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), [sym_multiline_comment] = ACTIONS(3), }, [3828] = { - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4800), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_value] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), [sym_multiline_comment] = ACTIONS(3), }, [3829] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [3830] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, [3831] = { - [sym__alpha_identifier] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_as] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4731), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_where] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_get] = ACTIONS(4729), - [anon_sym_set] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [sym_label] = ACTIONS(4731), - [anon_sym_in] = ACTIONS(4729), - [anon_sym_DOT_DOT] = ACTIONS(4731), - [anon_sym_QMARK_COLON] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym_PLUS_EQ] = ACTIONS(4731), - [anon_sym_DASH_EQ] = ACTIONS(4731), - [anon_sym_STAR_EQ] = ACTIONS(4731), - [anon_sym_SLASH_EQ] = ACTIONS(4731), - [anon_sym_PERCENT_EQ] = ACTIONS(4731), - [anon_sym_BANG_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4731), - [anon_sym_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4731), - [anon_sym_LT_EQ] = ACTIONS(4731), - [anon_sym_GT_EQ] = ACTIONS(4731), - [anon_sym_BANGin] = ACTIONS(4731), - [anon_sym_is] = ACTIONS(4729), - [anon_sym_BANGis] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_as_QMARK] = ACTIONS(4731), - [anon_sym_PLUS_PLUS] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4731), - [anon_sym_BANG_BANG] = ACTIONS(4731), - [anon_sym_suspend] = ACTIONS(4729), - [anon_sym_sealed] = ACTIONS(4729), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_data] = ACTIONS(4729), - [anon_sym_inner] = ACTIONS(4729), - [anon_sym_value] = ACTIONS(4729), - [anon_sym_override] = ACTIONS(4729), - [anon_sym_lateinit] = ACTIONS(4729), - [anon_sym_public] = ACTIONS(4729), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_internal] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_tailrec] = ACTIONS(4729), - [anon_sym_operator] = ACTIONS(4729), - [anon_sym_infix] = ACTIONS(4729), - [anon_sym_inline] = ACTIONS(4729), - [anon_sym_external] = ACTIONS(4729), - [sym_property_modifier] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_final] = ACTIONS(4729), - [anon_sym_open] = ACTIONS(4729), - [anon_sym_vararg] = ACTIONS(4729), - [anon_sym_noinline] = ACTIONS(4729), - [anon_sym_crossinline] = ACTIONS(4729), - [anon_sym_expect] = ACTIONS(4729), - [anon_sym_actual] = ACTIONS(4729), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4731), - [sym__automatic_semicolon] = ACTIONS(4731), - [sym_safe_nav] = ACTIONS(4731), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, [3832] = { - [sym__alpha_identifier] = ACTIONS(4807), - [anon_sym_AT] = ACTIONS(4809), - [anon_sym_LBRACK] = ACTIONS(4809), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4807), - [anon_sym_LBRACE] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_LPAREN] = ACTIONS(4809), - [anon_sym_COMMA] = ACTIONS(4809), - [anon_sym_LT] = ACTIONS(4807), - [anon_sym_GT] = ACTIONS(4807), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_SEMI] = ACTIONS(4809), - [anon_sym_get] = ACTIONS(4807), - [anon_sym_set] = ACTIONS(4807), - [anon_sym_STAR] = ACTIONS(4807), - [sym_label] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4809), - [anon_sym_QMARK_COLON] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_else] = ACTIONS(4807), - [anon_sym_COLON_COLON] = ACTIONS(4809), - [anon_sym_PLUS_EQ] = ACTIONS(4809), - [anon_sym_DASH_EQ] = ACTIONS(4809), - [anon_sym_STAR_EQ] = ACTIONS(4809), - [anon_sym_SLASH_EQ] = ACTIONS(4809), - [anon_sym_PERCENT_EQ] = ACTIONS(4809), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4809), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4809), - [anon_sym_LT_EQ] = ACTIONS(4809), - [anon_sym_GT_EQ] = ACTIONS(4809), - [anon_sym_BANGin] = ACTIONS(4809), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_BANGis] = ACTIONS(4809), - [anon_sym_PLUS] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4807), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_as_QMARK] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4809), - [anon_sym_DASH_DASH] = ACTIONS(4809), - [anon_sym_BANG_BANG] = ACTIONS(4809), - [anon_sym_suspend] = ACTIONS(4807), - [anon_sym_sealed] = ACTIONS(4807), - [anon_sym_annotation] = ACTIONS(4807), - [anon_sym_data] = ACTIONS(4807), - [anon_sym_inner] = ACTIONS(4807), - [anon_sym_value] = ACTIONS(4807), - [anon_sym_override] = ACTIONS(4807), - [anon_sym_lateinit] = ACTIONS(4807), - [anon_sym_public] = ACTIONS(4807), - [anon_sym_private] = ACTIONS(4807), - [anon_sym_internal] = ACTIONS(4807), - [anon_sym_protected] = ACTIONS(4807), - [anon_sym_tailrec] = ACTIONS(4807), - [anon_sym_operator] = ACTIONS(4807), - [anon_sym_infix] = ACTIONS(4807), - [anon_sym_inline] = ACTIONS(4807), - [anon_sym_external] = ACTIONS(4807), - [sym_property_modifier] = ACTIONS(4807), - [anon_sym_abstract] = ACTIONS(4807), - [anon_sym_final] = ACTIONS(4807), - [anon_sym_open] = ACTIONS(4807), - [anon_sym_vararg] = ACTIONS(4807), - [anon_sym_noinline] = ACTIONS(4807), - [anon_sym_crossinline] = ACTIONS(4807), - [anon_sym_expect] = ACTIONS(4807), - [anon_sym_actual] = ACTIONS(4807), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4809), - [sym__automatic_semicolon] = ACTIONS(4809), - [sym_safe_nav] = ACTIONS(4809), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3833] = { - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4472), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), + [sym__alpha_identifier] = ACTIONS(4644), + [anon_sym_AT] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_as] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_where] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_get] = ACTIONS(4644), + [anon_sym_set] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4644), + [anon_sym_DOT_DOT] = ACTIONS(4646), + [anon_sym_QMARK_COLON] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_PIPE_PIPE] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PERCENT_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT_EQ] = ACTIONS(4646), + [anon_sym_GT_EQ] = ACTIONS(4646), + [anon_sym_BANGin] = ACTIONS(4646), + [anon_sym_is] = ACTIONS(4644), + [anon_sym_BANGis] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_as_QMARK] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4646), + [anon_sym_suspend] = ACTIONS(4644), + [anon_sym_sealed] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4644), + [anon_sym_inner] = ACTIONS(4644), + [anon_sym_value] = ACTIONS(4644), + [anon_sym_override] = ACTIONS(4644), + [anon_sym_lateinit] = ACTIONS(4644), + [anon_sym_public] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4644), + [anon_sym_internal] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4644), + [anon_sym_tailrec] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_infix] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym_external] = ACTIONS(4644), + [sym_property_modifier] = ACTIONS(4644), + [anon_sym_abstract] = ACTIONS(4644), + [anon_sym_final] = ACTIONS(4644), + [anon_sym_open] = ACTIONS(4644), + [anon_sym_vararg] = ACTIONS(4644), + [anon_sym_noinline] = ACTIONS(4644), + [anon_sym_crossinline] = ACTIONS(4644), + [anon_sym_expect] = ACTIONS(4644), + [anon_sym_actual] = ACTIONS(4644), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4646), + [sym__automatic_semicolon] = ACTIONS(4646), + [sym_safe_nav] = ACTIONS(4646), [sym_multiline_comment] = ACTIONS(3), }, [3834] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [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_DOT] = 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), + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), [sym_multiline_comment] = ACTIONS(3), }, [3835] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_object] = ACTIONS(4633), + [anon_sym_fun] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_this] = ACTIONS(4633), + [anon_sym_super] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(4633), + [anon_sym_if] = ACTIONS(4633), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_try] = ACTIONS(4633), + [anon_sym_throw] = ACTIONS(4633), + [anon_sym_return] = ACTIONS(4633), + [anon_sym_continue] = ACTIONS(4633), + [anon_sym_break] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4633), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4635), + [anon_sym_continue_AT] = ACTIONS(4635), + [anon_sym_break_AT] = ACTIONS(4635), + [anon_sym_this_AT] = ACTIONS(4635), + [anon_sym_super_AT] = ACTIONS(4635), + [sym_real_literal] = ACTIONS(4635), + [sym_integer_literal] = ACTIONS(4633), + [sym_hex_literal] = ACTIONS(4635), + [sym_bin_literal] = ACTIONS(4635), + [anon_sym_true] = ACTIONS(4633), + [anon_sym_false] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4635), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4635), }, [3836] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [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_DOT] = 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__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), [sym_multiline_comment] = ACTIONS(3), }, [3837] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), [sym_multiline_comment] = ACTIONS(3), }, [3838] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_typealias] = ACTIONS(5179), + [anon_sym_class] = ACTIONS(5179), + [anon_sym_interface] = ACTIONS(5179), + [anon_sym_enum] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_val] = ACTIONS(5179), + [anon_sym_var] = ACTIONS(5179), + [anon_sym_object] = ACTIONS(5179), + [anon_sym_fun] = ACTIONS(5179), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_this] = ACTIONS(5179), + [anon_sym_super] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5181), + [sym_label] = ACTIONS(5179), + [anon_sym_for] = ACTIONS(5179), + [anon_sym_while] = ACTIONS(5179), + [anon_sym_do] = ACTIONS(5179), + [anon_sym_null] = ACTIONS(5179), + [anon_sym_if] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_throw] = ACTIONS(5179), + [anon_sym_return] = ACTIONS(5179), + [anon_sym_continue] = ACTIONS(5179), + [anon_sym_break] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5181), + [anon_sym_continue_AT] = ACTIONS(5181), + [anon_sym_break_AT] = ACTIONS(5181), + [anon_sym_this_AT] = ACTIONS(5181), + [anon_sym_super_AT] = ACTIONS(5181), + [sym_real_literal] = ACTIONS(5181), + [sym_integer_literal] = ACTIONS(5179), + [sym_hex_literal] = ACTIONS(5181), + [sym_bin_literal] = ACTIONS(5181), + [anon_sym_true] = ACTIONS(5179), + [anon_sym_false] = ACTIONS(5179), + [anon_sym_SQUOTE] = ACTIONS(5181), + [sym__backtick_identifier] = ACTIONS(5181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5181), }, [3839] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [3840] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), [sym_multiline_comment] = ACTIONS(3), }, [3841] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, [3842] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), }, [3843] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, [3844] = { - [sym__alpha_identifier] = ACTIONS(4751), - [anon_sym_AT] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4751), - [anon_sym_GT] = ACTIONS(4751), - [anon_sym_where] = ACTIONS(4751), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_get] = ACTIONS(4751), - [anon_sym_set] = ACTIONS(4751), - [anon_sym_STAR] = ACTIONS(4751), - [sym_label] = ACTIONS(4753), - [anon_sym_in] = ACTIONS(4751), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_QMARK_COLON] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_else] = ACTIONS(4751), - [anon_sym_COLON_COLON] = ACTIONS(4753), - [anon_sym_PLUS_EQ] = ACTIONS(4753), - [anon_sym_DASH_EQ] = ACTIONS(4753), - [anon_sym_STAR_EQ] = ACTIONS(4753), - [anon_sym_SLASH_EQ] = ACTIONS(4753), - [anon_sym_PERCENT_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4751), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_BANGin] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4751), - [anon_sym_BANGis] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4751), - [anon_sym_SLASH] = ACTIONS(4751), - [anon_sym_PERCENT] = ACTIONS(4751), - [anon_sym_as_QMARK] = ACTIONS(4753), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_BANG_BANG] = ACTIONS(4753), - [anon_sym_suspend] = ACTIONS(4751), - [anon_sym_sealed] = ACTIONS(4751), - [anon_sym_annotation] = ACTIONS(4751), - [anon_sym_data] = ACTIONS(4751), - [anon_sym_inner] = ACTIONS(4751), - [anon_sym_value] = ACTIONS(4751), - [anon_sym_override] = ACTIONS(4751), - [anon_sym_lateinit] = ACTIONS(4751), - [anon_sym_public] = ACTIONS(4751), - [anon_sym_private] = ACTIONS(4751), - [anon_sym_internal] = ACTIONS(4751), - [anon_sym_protected] = ACTIONS(4751), - [anon_sym_tailrec] = ACTIONS(4751), - [anon_sym_operator] = ACTIONS(4751), - [anon_sym_infix] = ACTIONS(4751), - [anon_sym_inline] = ACTIONS(4751), - [anon_sym_external] = ACTIONS(4751), - [sym_property_modifier] = ACTIONS(4751), - [anon_sym_abstract] = ACTIONS(4751), - [anon_sym_final] = ACTIONS(4751), - [anon_sym_open] = ACTIONS(4751), - [anon_sym_vararg] = ACTIONS(4751), - [anon_sym_noinline] = ACTIONS(4751), - [anon_sym_crossinline] = ACTIONS(4751), - [anon_sym_expect] = ACTIONS(4751), - [anon_sym_actual] = ACTIONS(4751), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4753), - [sym__automatic_semicolon] = ACTIONS(4753), - [sym_safe_nav] = ACTIONS(4753), + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), }, [3845] = { - [sym__alpha_identifier] = ACTIONS(4747), - [anon_sym_AT] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_COMMA] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4747), - [anon_sym_GT] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_get] = ACTIONS(4747), - [anon_sym_set] = ACTIONS(4747), - [anon_sym_STAR] = ACTIONS(4747), - [sym_label] = ACTIONS(4749), - [anon_sym_in] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4749), - [anon_sym_QMARK_COLON] = ACTIONS(4749), - [anon_sym_AMP_AMP] = ACTIONS(4749), - [anon_sym_PIPE_PIPE] = ACTIONS(4749), - [anon_sym_else] = ACTIONS(4747), - [anon_sym_COLON_COLON] = ACTIONS(4749), - [anon_sym_PLUS_EQ] = ACTIONS(4749), - [anon_sym_DASH_EQ] = ACTIONS(4749), - [anon_sym_STAR_EQ] = ACTIONS(4749), - [anon_sym_SLASH_EQ] = ACTIONS(4749), - [anon_sym_PERCENT_EQ] = ACTIONS(4749), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4749), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4749), - [anon_sym_LT_EQ] = ACTIONS(4749), - [anon_sym_GT_EQ] = ACTIONS(4749), - [anon_sym_BANGin] = ACTIONS(4749), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_BANGis] = ACTIONS(4749), - [anon_sym_PLUS] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4747), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_as_QMARK] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_BANG_BANG] = ACTIONS(4749), - [anon_sym_suspend] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_annotation] = ACTIONS(4747), - [anon_sym_data] = ACTIONS(4747), - [anon_sym_inner] = ACTIONS(4747), - [anon_sym_value] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_lateinit] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_tailrec] = ACTIONS(4747), - [anon_sym_operator] = ACTIONS(4747), - [anon_sym_infix] = ACTIONS(4747), - [anon_sym_inline] = ACTIONS(4747), - [anon_sym_external] = ACTIONS(4747), - [sym_property_modifier] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_final] = ACTIONS(4747), - [anon_sym_open] = ACTIONS(4747), - [anon_sym_vararg] = ACTIONS(4747), - [anon_sym_noinline] = ACTIONS(4747), - [anon_sym_crossinline] = ACTIONS(4747), - [anon_sym_expect] = ACTIONS(4747), - [anon_sym_actual] = ACTIONS(4747), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4749), - [sym__automatic_semicolon] = ACTIONS(4749), - [sym_safe_nav] = ACTIONS(4749), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, [3846] = { - [sym_class_body] = STATE(3182), - [sym_type_constraints] = STATE(3135), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5985), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3847] = { - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4088), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - }, - [3848] = { - [sym__alpha_identifier] = ACTIONS(4755), - [anon_sym_AT] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4757), - [anon_sym_as] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(4755), - [anon_sym_LBRACE] = ACTIONS(4757), - [anon_sym_RBRACE] = ACTIONS(4757), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym_COMMA] = ACTIONS(4757), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_where] = ACTIONS(4755), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4757), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4755), - [sym_label] = ACTIONS(4757), - [anon_sym_in] = ACTIONS(4755), - [anon_sym_DOT_DOT] = ACTIONS(4757), - [anon_sym_QMARK_COLON] = ACTIONS(4757), - [anon_sym_AMP_AMP] = ACTIONS(4757), - [anon_sym_PIPE_PIPE] = ACTIONS(4757), - [anon_sym_else] = ACTIONS(4755), - [anon_sym_COLON_COLON] = ACTIONS(4757), - [anon_sym_PLUS_EQ] = ACTIONS(4757), - [anon_sym_DASH_EQ] = ACTIONS(4757), - [anon_sym_STAR_EQ] = ACTIONS(4757), - [anon_sym_SLASH_EQ] = ACTIONS(4757), - [anon_sym_PERCENT_EQ] = ACTIONS(4757), - [anon_sym_BANG_EQ] = ACTIONS(4755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4757), - [anon_sym_EQ_EQ] = ACTIONS(4755), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4757), - [anon_sym_LT_EQ] = ACTIONS(4757), - [anon_sym_GT_EQ] = ACTIONS(4757), - [anon_sym_BANGin] = ACTIONS(4757), - [anon_sym_is] = ACTIONS(4755), - [anon_sym_BANGis] = ACTIONS(4757), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4755), - [anon_sym_as_QMARK] = ACTIONS(4757), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_BANG_BANG] = ACTIONS(4757), - [anon_sym_suspend] = ACTIONS(4755), - [anon_sym_sealed] = ACTIONS(4755), - [anon_sym_annotation] = ACTIONS(4755), - [anon_sym_data] = ACTIONS(4755), - [anon_sym_inner] = ACTIONS(4755), - [anon_sym_value] = ACTIONS(4755), - [anon_sym_override] = ACTIONS(4755), - [anon_sym_lateinit] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_internal] = ACTIONS(4755), - [anon_sym_protected] = ACTIONS(4755), - [anon_sym_tailrec] = ACTIONS(4755), - [anon_sym_operator] = ACTIONS(4755), - [anon_sym_infix] = ACTIONS(4755), - [anon_sym_inline] = ACTIONS(4755), - [anon_sym_external] = ACTIONS(4755), - [sym_property_modifier] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_open] = ACTIONS(4755), - [anon_sym_vararg] = ACTIONS(4755), - [anon_sym_noinline] = ACTIONS(4755), - [anon_sym_crossinline] = ACTIONS(4755), - [anon_sym_expect] = ACTIONS(4755), - [anon_sym_actual] = ACTIONS(4755), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4757), - [sym__automatic_semicolon] = ACTIONS(4757), - [sym_safe_nav] = ACTIONS(4757), - [sym_multiline_comment] = ACTIONS(3), - }, - [3849] = { - [sym__alpha_identifier] = ACTIONS(5132), - [anon_sym_AT] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5132), - [anon_sym_LBRACE] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5132), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_SEMI] = ACTIONS(5134), - [anon_sym_get] = ACTIONS(5132), - [anon_sym_set] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5132), - [sym_label] = ACTIONS(5134), - [anon_sym_in] = ACTIONS(5132), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_QMARK_COLON] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_else] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5134), - [anon_sym_PLUS_EQ] = ACTIONS(5134), - [anon_sym_DASH_EQ] = ACTIONS(5134), - [anon_sym_STAR_EQ] = ACTIONS(5134), - [anon_sym_SLASH_EQ] = ACTIONS(5134), - [anon_sym_PERCENT_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5132), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5132), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_BANGin] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5132), - [anon_sym_BANGis] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5132), - [anon_sym_as_QMARK] = ACTIONS(5134), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_BANG_BANG] = ACTIONS(5134), - [anon_sym_suspend] = ACTIONS(5132), - [anon_sym_sealed] = ACTIONS(5132), - [anon_sym_annotation] = ACTIONS(5132), - [anon_sym_data] = ACTIONS(5132), - [anon_sym_inner] = ACTIONS(5132), - [anon_sym_value] = ACTIONS(5132), - [anon_sym_override] = ACTIONS(5132), - [anon_sym_lateinit] = ACTIONS(5132), - [anon_sym_public] = ACTIONS(5132), - [anon_sym_private] = ACTIONS(5132), - [anon_sym_internal] = ACTIONS(5132), - [anon_sym_protected] = ACTIONS(5132), - [anon_sym_tailrec] = ACTIONS(5132), - [anon_sym_operator] = ACTIONS(5132), - [anon_sym_infix] = ACTIONS(5132), - [anon_sym_inline] = ACTIONS(5132), - [anon_sym_external] = ACTIONS(5132), - [sym_property_modifier] = ACTIONS(5132), - [anon_sym_abstract] = ACTIONS(5132), - [anon_sym_final] = ACTIONS(5132), - [anon_sym_open] = ACTIONS(5132), - [anon_sym_vararg] = ACTIONS(5132), - [anon_sym_noinline] = ACTIONS(5132), - [anon_sym_crossinline] = ACTIONS(5132), - [anon_sym_expect] = ACTIONS(5132), - [anon_sym_actual] = ACTIONS(5132), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5134), - [sym__automatic_semicolon] = ACTIONS(5134), - [sym_safe_nav] = ACTIONS(5134), - [sym_multiline_comment] = ACTIONS(3), - }, - [3850] = { - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(4512), - [anon_sym_LBRACE] = ACTIONS(4514), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_PLUS_EQ] = ACTIONS(4514), - [anon_sym_DASH_EQ] = ACTIONS(4514), - [anon_sym_STAR_EQ] = ACTIONS(4514), - [anon_sym_SLASH_EQ] = ACTIONS(4514), - [anon_sym_PERCENT_EQ] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4512), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - }, - [3851] = { - [sym__alpha_identifier] = ACTIONS(5017), - [anon_sym_AT] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_where] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_get] = ACTIONS(5017), - [anon_sym_set] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [sym_label] = ACTIONS(5019), - [anon_sym_in] = ACTIONS(5017), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_QMARK_COLON] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_else] = ACTIONS(5017), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_PLUS_EQ] = ACTIONS(5019), - [anon_sym_DASH_EQ] = ACTIONS(5019), - [anon_sym_STAR_EQ] = ACTIONS(5019), - [anon_sym_SLASH_EQ] = ACTIONS(5019), - [anon_sym_PERCENT_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_BANGin] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5017), - [anon_sym_BANGis] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5017), - [anon_sym_as_QMARK] = ACTIONS(5019), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_BANG_BANG] = ACTIONS(5019), - [anon_sym_suspend] = ACTIONS(5017), - [anon_sym_sealed] = ACTIONS(5017), - [anon_sym_annotation] = ACTIONS(5017), - [anon_sym_data] = ACTIONS(5017), - [anon_sym_inner] = ACTIONS(5017), - [anon_sym_value] = ACTIONS(5017), - [anon_sym_override] = ACTIONS(5017), - [anon_sym_lateinit] = ACTIONS(5017), - [anon_sym_public] = ACTIONS(5017), - [anon_sym_private] = ACTIONS(5017), - [anon_sym_internal] = ACTIONS(5017), - [anon_sym_protected] = ACTIONS(5017), - [anon_sym_tailrec] = ACTIONS(5017), - [anon_sym_operator] = ACTIONS(5017), - [anon_sym_infix] = ACTIONS(5017), - [anon_sym_inline] = ACTIONS(5017), - [anon_sym_external] = ACTIONS(5017), - [sym_property_modifier] = ACTIONS(5017), - [anon_sym_abstract] = ACTIONS(5017), - [anon_sym_final] = ACTIONS(5017), - [anon_sym_open] = ACTIONS(5017), - [anon_sym_vararg] = ACTIONS(5017), - [anon_sym_noinline] = ACTIONS(5017), - [anon_sym_crossinline] = ACTIONS(5017), - [anon_sym_expect] = ACTIONS(5017), - [anon_sym_actual] = ACTIONS(5017), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5019), - [sym__automatic_semicolon] = ACTIONS(5019), - [sym_safe_nav] = ACTIONS(5019), - [sym_multiline_comment] = ACTIONS(3), - }, - [3852] = { - [sym__alpha_identifier] = ACTIONS(5124), - [anon_sym_AT] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5124), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5124), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_get] = ACTIONS(5124), - [anon_sym_set] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [sym_label] = ACTIONS(5126), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_QMARK_COLON] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_else] = ACTIONS(5124), - [anon_sym_COLON_COLON] = ACTIONS(5126), - [anon_sym_PLUS_EQ] = ACTIONS(5126), - [anon_sym_DASH_EQ] = ACTIONS(5126), - [anon_sym_STAR_EQ] = ACTIONS(5126), - [anon_sym_SLASH_EQ] = ACTIONS(5126), - [anon_sym_PERCENT_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5124), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5124), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_BANGin] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5124), - [anon_sym_BANGis] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_as_QMARK] = ACTIONS(5126), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_BANG_BANG] = ACTIONS(5126), - [anon_sym_suspend] = ACTIONS(5124), - [anon_sym_sealed] = ACTIONS(5124), - [anon_sym_annotation] = ACTIONS(5124), - [anon_sym_data] = ACTIONS(5124), - [anon_sym_inner] = ACTIONS(5124), - [anon_sym_value] = ACTIONS(5124), - [anon_sym_override] = ACTIONS(5124), - [anon_sym_lateinit] = ACTIONS(5124), - [anon_sym_public] = ACTIONS(5124), - [anon_sym_private] = ACTIONS(5124), - [anon_sym_internal] = ACTIONS(5124), - [anon_sym_protected] = ACTIONS(5124), - [anon_sym_tailrec] = ACTIONS(5124), - [anon_sym_operator] = ACTIONS(5124), - [anon_sym_infix] = ACTIONS(5124), - [anon_sym_inline] = ACTIONS(5124), - [anon_sym_external] = ACTIONS(5124), - [sym_property_modifier] = ACTIONS(5124), - [anon_sym_abstract] = ACTIONS(5124), - [anon_sym_final] = ACTIONS(5124), - [anon_sym_open] = ACTIONS(5124), - [anon_sym_vararg] = ACTIONS(5124), - [anon_sym_noinline] = ACTIONS(5124), - [anon_sym_crossinline] = ACTIONS(5124), - [anon_sym_expect] = ACTIONS(5124), - [anon_sym_actual] = ACTIONS(5124), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5126), - [sym__automatic_semicolon] = ACTIONS(5126), - [sym_safe_nav] = ACTIONS(5126), - [sym_multiline_comment] = ACTIONS(3), - }, - [3853] = { - [sym__alpha_identifier] = ACTIONS(5082), - [anon_sym_AT] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5084), - [anon_sym_as] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5084), - [anon_sym_RBRACE] = ACTIONS(5084), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(5084), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_where] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_SEMI] = ACTIONS(5084), - [anon_sym_get] = ACTIONS(5082), - [anon_sym_set] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5082), - [sym_label] = ACTIONS(5084), - [anon_sym_in] = ACTIONS(5082), - [anon_sym_DOT_DOT] = ACTIONS(5084), - [anon_sym_QMARK_COLON] = ACTIONS(5084), - [anon_sym_AMP_AMP] = ACTIONS(5084), - [anon_sym_PIPE_PIPE] = ACTIONS(5084), - [anon_sym_else] = ACTIONS(5082), - [anon_sym_COLON_COLON] = ACTIONS(5084), - [anon_sym_PLUS_EQ] = ACTIONS(5084), - [anon_sym_DASH_EQ] = ACTIONS(5084), - [anon_sym_STAR_EQ] = ACTIONS(5084), - [anon_sym_SLASH_EQ] = ACTIONS(5084), - [anon_sym_PERCENT_EQ] = ACTIONS(5084), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5084), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5084), - [anon_sym_LT_EQ] = ACTIONS(5084), - [anon_sym_GT_EQ] = ACTIONS(5084), - [anon_sym_BANGin] = ACTIONS(5084), - [anon_sym_is] = ACTIONS(5082), - [anon_sym_BANGis] = ACTIONS(5084), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5082), - [anon_sym_as_QMARK] = ACTIONS(5084), - [anon_sym_PLUS_PLUS] = ACTIONS(5084), - [anon_sym_DASH_DASH] = ACTIONS(5084), - [anon_sym_BANG_BANG] = ACTIONS(5084), - [anon_sym_suspend] = ACTIONS(5082), - [anon_sym_sealed] = ACTIONS(5082), - [anon_sym_annotation] = ACTIONS(5082), - [anon_sym_data] = ACTIONS(5082), - [anon_sym_inner] = ACTIONS(5082), - [anon_sym_value] = ACTIONS(5082), - [anon_sym_override] = ACTIONS(5082), - [anon_sym_lateinit] = ACTIONS(5082), - [anon_sym_public] = ACTIONS(5082), - [anon_sym_private] = ACTIONS(5082), - [anon_sym_internal] = ACTIONS(5082), - [anon_sym_protected] = ACTIONS(5082), - [anon_sym_tailrec] = ACTIONS(5082), - [anon_sym_operator] = ACTIONS(5082), - [anon_sym_infix] = ACTIONS(5082), - [anon_sym_inline] = ACTIONS(5082), - [anon_sym_external] = ACTIONS(5082), - [sym_property_modifier] = ACTIONS(5082), - [anon_sym_abstract] = ACTIONS(5082), - [anon_sym_final] = ACTIONS(5082), - [anon_sym_open] = ACTIONS(5082), - [anon_sym_vararg] = ACTIONS(5082), - [anon_sym_noinline] = ACTIONS(5082), - [anon_sym_crossinline] = ACTIONS(5082), - [anon_sym_expect] = ACTIONS(5082), - [anon_sym_actual] = ACTIONS(5082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5084), - [sym__automatic_semicolon] = ACTIONS(5084), - [sym_safe_nav] = ACTIONS(5084), - [sym_multiline_comment] = ACTIONS(3), - }, - [3854] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [3855] = { - [sym__alpha_identifier] = ACTIONS(4759), - [anon_sym_AT] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4761), - [anon_sym_as] = ACTIONS(4759), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_LBRACE] = ACTIONS(4761), - [anon_sym_RBRACE] = ACTIONS(4761), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym_COMMA] = ACTIONS(4761), - [anon_sym_LT] = ACTIONS(4759), - [anon_sym_GT] = ACTIONS(4759), - [anon_sym_where] = ACTIONS(4759), - [anon_sym_DOT] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_get] = ACTIONS(4759), - [anon_sym_set] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(4759), - [sym_label] = ACTIONS(4761), - [anon_sym_in] = ACTIONS(4759), - [anon_sym_DOT_DOT] = ACTIONS(4761), - [anon_sym_QMARK_COLON] = ACTIONS(4761), - [anon_sym_AMP_AMP] = ACTIONS(4761), - [anon_sym_PIPE_PIPE] = ACTIONS(4761), - [anon_sym_else] = ACTIONS(4759), - [anon_sym_COLON_COLON] = ACTIONS(4761), - [anon_sym_PLUS_EQ] = ACTIONS(4761), - [anon_sym_DASH_EQ] = ACTIONS(4761), - [anon_sym_STAR_EQ] = ACTIONS(4761), - [anon_sym_SLASH_EQ] = ACTIONS(4761), - [anon_sym_PERCENT_EQ] = ACTIONS(4761), - [anon_sym_BANG_EQ] = ACTIONS(4759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4761), - [anon_sym_EQ_EQ] = ACTIONS(4759), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4761), - [anon_sym_LT_EQ] = ACTIONS(4761), - [anon_sym_GT_EQ] = ACTIONS(4761), - [anon_sym_BANGin] = ACTIONS(4761), - [anon_sym_is] = ACTIONS(4759), - [anon_sym_BANGis] = ACTIONS(4761), - [anon_sym_PLUS] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4759), - [anon_sym_SLASH] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_as_QMARK] = ACTIONS(4761), - [anon_sym_PLUS_PLUS] = ACTIONS(4761), - [anon_sym_DASH_DASH] = ACTIONS(4761), - [anon_sym_BANG_BANG] = ACTIONS(4761), - [anon_sym_suspend] = ACTIONS(4759), - [anon_sym_sealed] = ACTIONS(4759), - [anon_sym_annotation] = ACTIONS(4759), - [anon_sym_data] = ACTIONS(4759), - [anon_sym_inner] = ACTIONS(4759), - [anon_sym_value] = ACTIONS(4759), - [anon_sym_override] = ACTIONS(4759), - [anon_sym_lateinit] = ACTIONS(4759), - [anon_sym_public] = ACTIONS(4759), - [anon_sym_private] = ACTIONS(4759), - [anon_sym_internal] = ACTIONS(4759), - [anon_sym_protected] = ACTIONS(4759), - [anon_sym_tailrec] = ACTIONS(4759), - [anon_sym_operator] = ACTIONS(4759), - [anon_sym_infix] = ACTIONS(4759), - [anon_sym_inline] = ACTIONS(4759), - [anon_sym_external] = ACTIONS(4759), - [sym_property_modifier] = ACTIONS(4759), - [anon_sym_abstract] = ACTIONS(4759), - [anon_sym_final] = ACTIONS(4759), - [anon_sym_open] = ACTIONS(4759), - [anon_sym_vararg] = ACTIONS(4759), - [anon_sym_noinline] = ACTIONS(4759), - [anon_sym_crossinline] = ACTIONS(4759), - [anon_sym_expect] = ACTIONS(4759), - [anon_sym_actual] = ACTIONS(4759), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4761), - [sym__automatic_semicolon] = ACTIONS(4761), - [sym_safe_nav] = ACTIONS(4761), - [sym_multiline_comment] = ACTIONS(3), - }, - [3856] = { - [sym__alpha_identifier] = ACTIONS(5100), - [anon_sym_AT] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5100), - [anon_sym_LBRACE] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5100), - [anon_sym_where] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(5102), - [anon_sym_get] = ACTIONS(5100), - [anon_sym_set] = ACTIONS(5100), - [anon_sym_STAR] = ACTIONS(5100), - [sym_label] = ACTIONS(5102), - [anon_sym_in] = ACTIONS(5100), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_QMARK_COLON] = ACTIONS(5102), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_else] = ACTIONS(5100), - [anon_sym_COLON_COLON] = ACTIONS(5102), - [anon_sym_PLUS_EQ] = ACTIONS(5102), - [anon_sym_DASH_EQ] = ACTIONS(5102), - [anon_sym_STAR_EQ] = ACTIONS(5102), - [anon_sym_SLASH_EQ] = ACTIONS(5102), - [anon_sym_PERCENT_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_BANGin] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5100), - [anon_sym_BANGis] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5100), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_as_QMARK] = ACTIONS(5102), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_BANG_BANG] = ACTIONS(5102), - [anon_sym_suspend] = ACTIONS(5100), - [anon_sym_sealed] = ACTIONS(5100), - [anon_sym_annotation] = ACTIONS(5100), - [anon_sym_data] = ACTIONS(5100), - [anon_sym_inner] = ACTIONS(5100), - [anon_sym_value] = ACTIONS(5100), - [anon_sym_override] = ACTIONS(5100), - [anon_sym_lateinit] = ACTIONS(5100), - [anon_sym_public] = ACTIONS(5100), - [anon_sym_private] = ACTIONS(5100), - [anon_sym_internal] = ACTIONS(5100), - [anon_sym_protected] = ACTIONS(5100), - [anon_sym_tailrec] = ACTIONS(5100), - [anon_sym_operator] = ACTIONS(5100), - [anon_sym_infix] = ACTIONS(5100), - [anon_sym_inline] = ACTIONS(5100), - [anon_sym_external] = ACTIONS(5100), - [sym_property_modifier] = ACTIONS(5100), - [anon_sym_abstract] = ACTIONS(5100), - [anon_sym_final] = ACTIONS(5100), - [anon_sym_open] = ACTIONS(5100), - [anon_sym_vararg] = ACTIONS(5100), - [anon_sym_noinline] = ACTIONS(5100), - [anon_sym_crossinline] = ACTIONS(5100), - [anon_sym_expect] = ACTIONS(5100), - [anon_sym_actual] = ACTIONS(5100), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5102), - [sym__automatic_semicolon] = ACTIONS(5102), - [sym_safe_nav] = ACTIONS(5102), - [sym_multiline_comment] = ACTIONS(3), - }, - [3857] = { - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [anon_sym_DASH_GT] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3858] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4452), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_PLUS_EQ] = ACTIONS(4454), - [anon_sym_DASH_EQ] = ACTIONS(4454), - [anon_sym_STAR_EQ] = ACTIONS(4454), - [anon_sym_SLASH_EQ] = ACTIONS(4454), - [anon_sym_PERCENT_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4452), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - }, - [3859] = { - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [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), - [sym_multiline_comment] = ACTIONS(3), - }, - [3860] = { [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), [anon_sym_as] = ACTIONS(3278), [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), [anon_sym_LT] = ACTIONS(3278), [anon_sym_GT] = ACTIONS(3278), [anon_sym_where] = ACTIONS(3278), [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3282), [anon_sym_get] = ACTIONS(3278), [anon_sym_set] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), + [sym_label] = ACTIONS(3282), [anon_sym_in] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), [anon_sym_else] = ACTIONS(3278), - [anon_sym_COLON_COLON] = ACTIONS(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_COLON_COLON] = ACTIONS(3282), + [anon_sym_PLUS_EQ] = ACTIONS(3282), + [anon_sym_DASH_EQ] = ACTIONS(3282), + [anon_sym_STAR_EQ] = ACTIONS(3282), + [anon_sym_SLASH_EQ] = ACTIONS(3282), + [anon_sym_PERCENT_EQ] = ACTIONS(3282), [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3282), [anon_sym_PLUS] = ACTIONS(3278), [anon_sym_DASH] = ACTIONS(3278), [anon_sym_SLASH] = ACTIONS(3278), [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), [anon_sym_suspend] = ACTIONS(3278), [anon_sym_sealed] = ACTIONS(3278), [anon_sym_annotation] = ACTIONS(3278), @@ -425317,48062 +432701,51861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3278), [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3848] = { + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + }, + [3849] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [sym_label] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_QMARK_COLON] = ACTIONS(1804), + [anon_sym_AMP_AMP] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_PLUS_EQ] = ACTIONS(1804), + [anon_sym_DASH_EQ] = ACTIONS(1804), + [anon_sym_STAR_EQ] = ACTIONS(1804), + [anon_sym_SLASH_EQ] = ACTIONS(1804), + [anon_sym_PERCENT_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1804), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_BANGin] = ACTIONS(1804), + [anon_sym_is] = ACTIONS(1802), + [anon_sym_BANGis] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_as_QMARK] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_BANG_BANG] = ACTIONS(1804), + [anon_sym_suspend] = ACTIONS(1802), + [anon_sym_sealed] = ACTIONS(1802), + [anon_sym_annotation] = ACTIONS(1802), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_lateinit] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_internal] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_tailrec] = ACTIONS(1802), + [anon_sym_operator] = ACTIONS(1802), + [anon_sym_infix] = ACTIONS(1802), + [anon_sym_inline] = ACTIONS(1802), + [anon_sym_external] = ACTIONS(1802), + [sym_property_modifier] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_final] = ACTIONS(1802), + [anon_sym_open] = ACTIONS(1802), + [anon_sym_vararg] = ACTIONS(1802), + [anon_sym_noinline] = ACTIONS(1802), + [anon_sym_crossinline] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), + }, + [3850] = { + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3851] = { + [sym__alpha_identifier] = ACTIONS(1796), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_where] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1796), + [anon_sym_set] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [sym_label] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_QMARK_COLON] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1798), + [anon_sym_DASH_EQ] = ACTIONS(1798), + [anon_sym_STAR_EQ] = ACTIONS(1798), + [anon_sym_SLASH_EQ] = ACTIONS(1798), + [anon_sym_PERCENT_EQ] = ACTIONS(1798), + [anon_sym_BANG_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), + [anon_sym_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1798), + [anon_sym_GT_EQ] = ACTIONS(1798), + [anon_sym_BANGin] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1796), + [anon_sym_BANGis] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_as_QMARK] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_BANG_BANG] = ACTIONS(1798), + [anon_sym_suspend] = ACTIONS(1796), + [anon_sym_sealed] = ACTIONS(1796), + [anon_sym_annotation] = ACTIONS(1796), + [anon_sym_data] = ACTIONS(1796), + [anon_sym_inner] = ACTIONS(1796), + [anon_sym_value] = ACTIONS(1796), + [anon_sym_override] = ACTIONS(1796), + [anon_sym_lateinit] = ACTIONS(1796), + [anon_sym_public] = ACTIONS(1796), + [anon_sym_private] = ACTIONS(1796), + [anon_sym_internal] = ACTIONS(1796), + [anon_sym_protected] = ACTIONS(1796), + [anon_sym_tailrec] = ACTIONS(1796), + [anon_sym_operator] = ACTIONS(1796), + [anon_sym_infix] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [anon_sym_external] = ACTIONS(1796), + [sym_property_modifier] = ACTIONS(1796), + [anon_sym_abstract] = ACTIONS(1796), + [anon_sym_final] = ACTIONS(1796), + [anon_sym_open] = ACTIONS(1796), + [anon_sym_vararg] = ACTIONS(1796), + [anon_sym_noinline] = ACTIONS(1796), + [anon_sym_crossinline] = ACTIONS(1796), + [anon_sym_expect] = ACTIONS(1796), + [anon_sym_actual] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym_safe_nav] = ACTIONS(1798), + [sym_multiline_comment] = ACTIONS(3), + }, + [3852] = { + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + }, + [3853] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4862), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + }, + [3854] = { + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_where] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_get] = ACTIONS(4914), + [anon_sym_set] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_QMARK_COLON] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_BANGin] = ACTIONS(4916), + [anon_sym_is] = ACTIONS(4914), + [anon_sym_BANGis] = ACTIONS(4916), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_as_QMARK] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4916), + [anon_sym_suspend] = ACTIONS(4914), + [anon_sym_sealed] = ACTIONS(4914), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4914), + [anon_sym_inner] = ACTIONS(4914), + [anon_sym_value] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_lateinit] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_internal] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_tailrec] = ACTIONS(4914), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_infix] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym_external] = ACTIONS(4914), + [sym_property_modifier] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_open] = ACTIONS(4914), + [anon_sym_vararg] = ACTIONS(4914), + [anon_sym_noinline] = ACTIONS(4914), + [anon_sym_crossinline] = ACTIONS(4914), + [anon_sym_expect] = ACTIONS(4914), + [anon_sym_actual] = ACTIONS(4914), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4916), + [sym__automatic_semicolon] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), + [sym_multiline_comment] = ACTIONS(3), + }, + [3855] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [3856] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + }, + [3857] = { + [sym_function_body] = STATE(3268), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_object] = ACTIONS(4147), + [anon_sym_fun] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_this] = ACTIONS(4147), + [anon_sym_super] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4147), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_when] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_throw] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4147), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4149), + [anon_sym_continue_AT] = ACTIONS(4149), + [anon_sym_break_AT] = ACTIONS(4149), + [anon_sym_this_AT] = ACTIONS(4149), + [anon_sym_super_AT] = ACTIONS(4149), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(4147), + [anon_sym_false] = ACTIONS(4147), + [anon_sym_SQUOTE] = ACTIONS(4149), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4149), + }, + [3858] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5169), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5167), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_get] = ACTIONS(5167), + [anon_sym_set] = ACTIONS(5167), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5169), + [anon_sym_QMARK_COLON] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_else] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5169), + [anon_sym_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_EQ] = ACTIONS(5169), + [anon_sym_BANGin] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_BANGis] = ACTIONS(5169), + [anon_sym_PLUS] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5169), + [anon_sym_DASH_DASH] = ACTIONS(5169), + [anon_sym_BANG_BANG] = ACTIONS(5169), + [anon_sym_suspend] = ACTIONS(5167), + [anon_sym_sealed] = ACTIONS(5167), + [anon_sym_annotation] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5167), + [anon_sym_inner] = ACTIONS(5167), + [anon_sym_value] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_lateinit] = ACTIONS(5167), + [anon_sym_public] = ACTIONS(5167), + [anon_sym_private] = ACTIONS(5167), + [anon_sym_internal] = ACTIONS(5167), + [anon_sym_protected] = ACTIONS(5167), + [anon_sym_tailrec] = ACTIONS(5167), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_infix] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym_external] = ACTIONS(5167), + [sym_property_modifier] = ACTIONS(5167), + [anon_sym_abstract] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_open] = ACTIONS(5167), + [anon_sym_vararg] = ACTIONS(5167), + [anon_sym_noinline] = ACTIONS(5167), + [anon_sym_crossinline] = ACTIONS(5167), + [anon_sym_expect] = ACTIONS(5167), + [anon_sym_actual] = ACTIONS(5167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5169), + [sym__automatic_semicolon] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), + [sym_multiline_comment] = ACTIONS(3), + }, + [3859] = { + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + }, + [3860] = { + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(7138), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, [3861] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [sym_label] = ACTIONS(5023), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_suspend] = ACTIONS(5021), - [anon_sym_sealed] = ACTIONS(5021), - [anon_sym_annotation] = ACTIONS(5021), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_value] = ACTIONS(5021), - [anon_sym_override] = ACTIONS(5021), - [anon_sym_lateinit] = ACTIONS(5021), - [anon_sym_public] = ACTIONS(5021), - [anon_sym_private] = ACTIONS(5021), - [anon_sym_internal] = ACTIONS(5021), - [anon_sym_protected] = ACTIONS(5021), - [anon_sym_tailrec] = ACTIONS(5021), - [anon_sym_operator] = ACTIONS(5021), - [anon_sym_infix] = ACTIONS(5021), - [anon_sym_inline] = ACTIONS(5021), - [anon_sym_external] = ACTIONS(5021), - [sym_property_modifier] = ACTIONS(5021), - [anon_sym_abstract] = ACTIONS(5021), - [anon_sym_final] = ACTIONS(5021), - [anon_sym_open] = ACTIONS(5021), - [anon_sym_vararg] = ACTIONS(5021), - [anon_sym_noinline] = ACTIONS(5021), - [anon_sym_crossinline] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5023), - [sym__automatic_semicolon] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), + [sym__alpha_identifier] = ACTIONS(4463), + [anon_sym_AT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [anon_sym_where] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4463), + [anon_sym_set] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4463), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4463), + [anon_sym_DOT_DOT] = ACTIONS(4465), + [anon_sym_QMARK_COLON] = ACTIONS(4465), + [anon_sym_AMP_AMP] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(4465), + [anon_sym_PLUS_EQ] = ACTIONS(4465), + [anon_sym_DASH_EQ] = ACTIONS(4465), + [anon_sym_STAR_EQ] = ACTIONS(4465), + [anon_sym_SLASH_EQ] = ACTIONS(4465), + [anon_sym_PERCENT_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_BANGin] = ACTIONS(4465), + [anon_sym_is] = ACTIONS(4463), + [anon_sym_BANGis] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_as_QMARK] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4463), + [anon_sym_sealed] = ACTIONS(4463), + [anon_sym_annotation] = ACTIONS(4463), + [anon_sym_data] = ACTIONS(4463), + [anon_sym_inner] = ACTIONS(4463), + [anon_sym_value] = ACTIONS(4463), + [anon_sym_override] = ACTIONS(4463), + [anon_sym_lateinit] = ACTIONS(4463), + [anon_sym_public] = ACTIONS(4463), + [anon_sym_private] = ACTIONS(4463), + [anon_sym_internal] = ACTIONS(4463), + [anon_sym_protected] = ACTIONS(4463), + [anon_sym_tailrec] = ACTIONS(4463), + [anon_sym_operator] = ACTIONS(4463), + [anon_sym_infix] = ACTIONS(4463), + [anon_sym_inline] = ACTIONS(4463), + [anon_sym_external] = ACTIONS(4463), + [sym_property_modifier] = ACTIONS(4463), + [anon_sym_abstract] = ACTIONS(4463), + [anon_sym_final] = ACTIONS(4463), + [anon_sym_open] = ACTIONS(4463), + [anon_sym_vararg] = ACTIONS(4463), + [anon_sym_noinline] = ACTIONS(4463), + [anon_sym_crossinline] = ACTIONS(4463), + [anon_sym_expect] = ACTIONS(4463), + [anon_sym_actual] = ACTIONS(4463), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4465), + [sym__automatic_semicolon] = ACTIONS(4465), + [sym_safe_nav] = ACTIONS(4465), [sym_multiline_comment] = ACTIONS(3), }, [3862] = { - [aux_sym_user_type_repeat1] = STATE(3862), - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_typealias] = ACTIONS(4101), - [anon_sym_class] = ACTIONS(4101), - [anon_sym_interface] = ACTIONS(4101), - [anon_sym_enum] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_val] = ACTIONS(4101), - [anon_sym_var] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(6980), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4103), - [sym_label] = ACTIONS(4101), - [anon_sym_for] = ACTIONS(4101), - [anon_sym_while] = ACTIONS(4101), - [anon_sym_do] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), }, [3863] = { - [sym_class_body] = STATE(3267), - [sym_type_constraints] = STATE(3172), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(6983), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_LBRACE] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_COMMA] = ACTIONS(4868), + [anon_sym_LT] = ACTIONS(4866), + [anon_sym_GT] = ACTIONS(4866), + [anon_sym_where] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4868), + [anon_sym_get] = ACTIONS(4866), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4868), + [anon_sym_in] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_QMARK_COLON] = ACTIONS(4868), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_PIPE_PIPE] = ACTIONS(4868), + [anon_sym_else] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PERCENT_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4868), + [anon_sym_LT_EQ] = ACTIONS(4868), + [anon_sym_GT_EQ] = ACTIONS(4868), + [anon_sym_BANGin] = ACTIONS(4868), + [anon_sym_is] = ACTIONS(4866), + [anon_sym_BANGis] = ACTIONS(4868), + [anon_sym_PLUS] = ACTIONS(4866), + [anon_sym_DASH] = ACTIONS(4866), + [anon_sym_SLASH] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4866), + [anon_sym_as_QMARK] = ACTIONS(4868), + [anon_sym_PLUS_PLUS] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4868), + [anon_sym_BANG_BANG] = ACTIONS(4868), + [anon_sym_suspend] = ACTIONS(4866), + [anon_sym_sealed] = ACTIONS(4866), + [anon_sym_annotation] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4866), + [anon_sym_inner] = ACTIONS(4866), + [anon_sym_value] = ACTIONS(4866), + [anon_sym_override] = ACTIONS(4866), + [anon_sym_lateinit] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_internal] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_tailrec] = ACTIONS(4866), + [anon_sym_operator] = ACTIONS(4866), + [anon_sym_infix] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_external] = ACTIONS(4866), + [sym_property_modifier] = ACTIONS(4866), + [anon_sym_abstract] = ACTIONS(4866), + [anon_sym_final] = ACTIONS(4866), + [anon_sym_open] = ACTIONS(4866), + [anon_sym_vararg] = ACTIONS(4866), + [anon_sym_noinline] = ACTIONS(4866), + [anon_sym_crossinline] = ACTIONS(4866), + [anon_sym_expect] = ACTIONS(4866), + [anon_sym_actual] = ACTIONS(4866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4868), + [sym__automatic_semicolon] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), [sym_multiline_comment] = ACTIONS(3), }, [3864] = { - [sym__alpha_identifier] = ACTIONS(4474), - [anon_sym_AT] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_EQ] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(4476), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym_COMMA] = ACTIONS(4476), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym_get] = ACTIONS(4474), - [anon_sym_set] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [sym_label] = ACTIONS(4476), - [anon_sym_in] = ACTIONS(4474), - [anon_sym_DOT_DOT] = ACTIONS(4476), - [anon_sym_QMARK_COLON] = ACTIONS(4476), - [anon_sym_AMP_AMP] = ACTIONS(4476), - [anon_sym_PIPE_PIPE] = ACTIONS(4476), - [anon_sym_else] = ACTIONS(4474), - [anon_sym_COLON_COLON] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_BANG_EQ] = ACTIONS(4474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4476), - [anon_sym_EQ_EQ] = ACTIONS(4474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4476), - [anon_sym_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_EQ] = ACTIONS(4476), - [anon_sym_BANGin] = ACTIONS(4476), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_BANGis] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_SLASH] = ACTIONS(4474), - [anon_sym_PERCENT] = ACTIONS(4474), - [anon_sym_as_QMARK] = ACTIONS(4476), - [anon_sym_PLUS_PLUS] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4476), - [anon_sym_BANG_BANG] = ACTIONS(4476), - [anon_sym_suspend] = ACTIONS(4474), - [anon_sym_sealed] = ACTIONS(4474), - [anon_sym_annotation] = ACTIONS(4474), - [anon_sym_data] = ACTIONS(4474), - [anon_sym_inner] = ACTIONS(4474), - [anon_sym_value] = ACTIONS(4474), - [anon_sym_override] = ACTIONS(4474), - [anon_sym_lateinit] = ACTIONS(4474), - [anon_sym_public] = ACTIONS(4474), - [anon_sym_private] = ACTIONS(4474), - [anon_sym_internal] = ACTIONS(4474), - [anon_sym_protected] = ACTIONS(4474), - [anon_sym_tailrec] = ACTIONS(4474), - [anon_sym_operator] = ACTIONS(4474), - [anon_sym_infix] = ACTIONS(4474), - [anon_sym_inline] = ACTIONS(4474), - [anon_sym_external] = ACTIONS(4474), - [sym_property_modifier] = ACTIONS(4474), - [anon_sym_abstract] = ACTIONS(4474), - [anon_sym_final] = ACTIONS(4474), - [anon_sym_open] = ACTIONS(4474), - [anon_sym_vararg] = ACTIONS(4474), - [anon_sym_noinline] = ACTIONS(4474), - [anon_sym_crossinline] = ACTIONS(4474), - [anon_sym_expect] = ACTIONS(4474), - [anon_sym_actual] = ACTIONS(4474), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4476), - [sym__automatic_semicolon] = ACTIONS(4476), - [sym_safe_nav] = ACTIONS(4476), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3232), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_object] = ACTIONS(4137), + [anon_sym_fun] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_this] = ACTIONS(4137), + [anon_sym_super] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4137), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_when] = ACTIONS(4137), + [anon_sym_try] = ACTIONS(4137), + [anon_sym_throw] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4139), + [anon_sym_continue_AT] = ACTIONS(4139), + [anon_sym_break_AT] = ACTIONS(4139), + [anon_sym_this_AT] = ACTIONS(4139), + [anon_sym_super_AT] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4139), + [sym_integer_literal] = ACTIONS(4137), + [sym_hex_literal] = ACTIONS(4139), + [sym_bin_literal] = ACTIONS(4139), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_SQUOTE] = ACTIONS(4139), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4139), }, [3865] = { - [sym_class_body] = STATE(3392), - [sym_type_constraints] = STATE(3092), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_DASH_GT] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7141), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_EQ] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_PLUS_EQ] = ACTIONS(4499), + [anon_sym_DASH_EQ] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4499), + [anon_sym_SLASH_EQ] = ACTIONS(4499), + [anon_sym_PERCENT_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4497), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [3866] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_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__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3867] = { - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_as] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_where] = ACTIONS(203), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(203), - [sym_label] = ACTIONS(201), - [anon_sym_in] = ACTIONS(203), - [anon_sym_DOT_DOT] = ACTIONS(201), - [anon_sym_QMARK_COLON] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(201), - [anon_sym_else] = ACTIONS(203), - [anon_sym_COLON_COLON] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(201), - [anon_sym_DASH_EQ] = ACTIONS(201), - [anon_sym_STAR_EQ] = ACTIONS(201), - [anon_sym_SLASH_EQ] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(201), - [anon_sym_BANGin] = ACTIONS(201), - [anon_sym_is] = ACTIONS(203), - [anon_sym_BANGis] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_as_QMARK] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(201), - [anon_sym_DASH_DASH] = ACTIONS(201), - [anon_sym_BANG_BANG] = ACTIONS(201), - [anon_sym_suspend] = ACTIONS(203), - [anon_sym_sealed] = ACTIONS(203), - [anon_sym_annotation] = ACTIONS(203), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_value] = ACTIONS(203), - [anon_sym_override] = ACTIONS(203), - [anon_sym_lateinit] = ACTIONS(203), - [anon_sym_public] = ACTIONS(203), - [anon_sym_private] = ACTIONS(203), - [anon_sym_internal] = ACTIONS(203), - [anon_sym_protected] = ACTIONS(203), - [anon_sym_tailrec] = ACTIONS(203), - [anon_sym_operator] = ACTIONS(203), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(203), - [anon_sym_external] = ACTIONS(203), - [sym_property_modifier] = ACTIONS(203), - [anon_sym_abstract] = ACTIONS(203), - [anon_sym_final] = ACTIONS(203), - [anon_sym_open] = ACTIONS(203), - [anon_sym_vararg] = ACTIONS(203), - [anon_sym_noinline] = ACTIONS(203), - [anon_sym_crossinline] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(201), - [sym__automatic_semicolon] = ACTIONS(201), - [sym_safe_nav] = ACTIONS(201), + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_where] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_get] = ACTIONS(4962), + [anon_sym_set] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_QMARK_COLON] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_BANGin] = ACTIONS(4964), + [anon_sym_is] = ACTIONS(4962), + [anon_sym_BANGis] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_as_QMARK] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4964), + [anon_sym_suspend] = ACTIONS(4962), + [anon_sym_sealed] = ACTIONS(4962), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4962), + [anon_sym_inner] = ACTIONS(4962), + [anon_sym_value] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_lateinit] = ACTIONS(4962), + [anon_sym_public] = ACTIONS(4962), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_internal] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_tailrec] = ACTIONS(4962), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_infix] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym_external] = ACTIONS(4962), + [sym_property_modifier] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_open] = ACTIONS(4962), + [anon_sym_vararg] = ACTIONS(4962), + [anon_sym_noinline] = ACTIONS(4962), + [anon_sym_crossinline] = ACTIONS(4962), + [anon_sym_expect] = ACTIONS(4962), + [anon_sym_actual] = ACTIONS(4962), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4964), + [sym__automatic_semicolon] = ACTIONS(4964), + [sym_safe_nav] = ACTIONS(4964), [sym_multiline_comment] = ACTIONS(3), }, [3868] = { - [sym__alpha_identifier] = ACTIONS(4897), - [anon_sym_AT] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_as] = ACTIONS(4897), - [anon_sym_EQ] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_where] = ACTIONS(4897), - [anon_sym_DOT] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_get] = ACTIONS(4897), - [anon_sym_set] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [sym_label] = ACTIONS(4899), - [anon_sym_in] = ACTIONS(4897), - [anon_sym_DOT_DOT] = ACTIONS(4899), - [anon_sym_QMARK_COLON] = ACTIONS(4899), - [anon_sym_AMP_AMP] = ACTIONS(4899), - [anon_sym_PIPE_PIPE] = ACTIONS(4899), - [anon_sym_else] = ACTIONS(4897), - [anon_sym_COLON_COLON] = ACTIONS(4899), - [anon_sym_PLUS_EQ] = ACTIONS(4899), - [anon_sym_DASH_EQ] = ACTIONS(4899), - [anon_sym_STAR_EQ] = ACTIONS(4899), - [anon_sym_SLASH_EQ] = ACTIONS(4899), - [anon_sym_PERCENT_EQ] = ACTIONS(4899), - [anon_sym_BANG_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4899), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4899), - [anon_sym_LT_EQ] = ACTIONS(4899), - [anon_sym_GT_EQ] = ACTIONS(4899), - [anon_sym_BANGin] = ACTIONS(4899), - [anon_sym_is] = ACTIONS(4897), - [anon_sym_BANGis] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_PERCENT] = ACTIONS(4897), - [anon_sym_as_QMARK] = ACTIONS(4899), - [anon_sym_PLUS_PLUS] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4899), - [anon_sym_BANG_BANG] = ACTIONS(4899), - [anon_sym_suspend] = ACTIONS(4897), - [anon_sym_sealed] = ACTIONS(4897), - [anon_sym_annotation] = ACTIONS(4897), - [anon_sym_data] = ACTIONS(4897), - [anon_sym_inner] = ACTIONS(4897), - [anon_sym_value] = ACTIONS(4897), - [anon_sym_override] = ACTIONS(4897), - [anon_sym_lateinit] = ACTIONS(4897), - [anon_sym_public] = ACTIONS(4897), - [anon_sym_private] = ACTIONS(4897), - [anon_sym_internal] = ACTIONS(4897), - [anon_sym_protected] = ACTIONS(4897), - [anon_sym_tailrec] = ACTIONS(4897), - [anon_sym_operator] = ACTIONS(4897), - [anon_sym_infix] = ACTIONS(4897), - [anon_sym_inline] = ACTIONS(4897), - [anon_sym_external] = ACTIONS(4897), - [sym_property_modifier] = ACTIONS(4897), - [anon_sym_abstract] = ACTIONS(4897), - [anon_sym_final] = ACTIONS(4897), - [anon_sym_open] = ACTIONS(4897), - [anon_sym_vararg] = ACTIONS(4897), - [anon_sym_noinline] = ACTIONS(4897), - [anon_sym_crossinline] = ACTIONS(4897), - [anon_sym_expect] = ACTIONS(4897), - [anon_sym_actual] = ACTIONS(4897), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4899), - [sym__automatic_semicolon] = ACTIONS(4899), - [sym_safe_nav] = ACTIONS(4899), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3159), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_object] = ACTIONS(4183), + [anon_sym_fun] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_this] = ACTIONS(4183), + [anon_sym_super] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4183), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_when] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_throw] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4183), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [3869] = { - [sym_function_body] = STATE(3743), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_PLUS_EQ] = ACTIONS(4472), - [anon_sym_DASH_EQ] = ACTIONS(4472), - [anon_sym_STAR_EQ] = ACTIONS(4472), - [anon_sym_SLASH_EQ] = ACTIONS(4472), - [anon_sym_PERCENT_EQ] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), }, [3870] = { - [sym__alpha_identifier] = ACTIONS(4829), - [anon_sym_AT] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4831), - [anon_sym_RBRACE] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SEMI] = ACTIONS(4831), - [anon_sym_get] = ACTIONS(4829), - [anon_sym_set] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [sym_label] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4831), - [anon_sym_QMARK_COLON] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_else] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4831), - [anon_sym_PLUS_EQ] = ACTIONS(4831), - [anon_sym_DASH_EQ] = ACTIONS(4831), - [anon_sym_STAR_EQ] = ACTIONS(4831), - [anon_sym_SLASH_EQ] = ACTIONS(4831), - [anon_sym_PERCENT_EQ] = ACTIONS(4831), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4831), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4831), - [anon_sym_LT_EQ] = ACTIONS(4831), - [anon_sym_GT_EQ] = ACTIONS(4831), - [anon_sym_BANGin] = ACTIONS(4831), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_BANGis] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_as_QMARK] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_BANG_BANG] = ACTIONS(4831), - [anon_sym_suspend] = ACTIONS(4829), - [anon_sym_sealed] = ACTIONS(4829), - [anon_sym_annotation] = ACTIONS(4829), - [anon_sym_data] = ACTIONS(4829), - [anon_sym_inner] = ACTIONS(4829), - [anon_sym_value] = ACTIONS(4829), - [anon_sym_override] = ACTIONS(4829), - [anon_sym_lateinit] = ACTIONS(4829), - [anon_sym_public] = ACTIONS(4829), - [anon_sym_private] = ACTIONS(4829), - [anon_sym_internal] = ACTIONS(4829), - [anon_sym_protected] = ACTIONS(4829), - [anon_sym_tailrec] = ACTIONS(4829), - [anon_sym_operator] = ACTIONS(4829), - [anon_sym_infix] = ACTIONS(4829), - [anon_sym_inline] = ACTIONS(4829), - [anon_sym_external] = ACTIONS(4829), - [sym_property_modifier] = ACTIONS(4829), - [anon_sym_abstract] = ACTIONS(4829), - [anon_sym_final] = ACTIONS(4829), - [anon_sym_open] = ACTIONS(4829), - [anon_sym_vararg] = ACTIONS(4829), - [anon_sym_noinline] = ACTIONS(4829), - [anon_sym_crossinline] = ACTIONS(4829), - [anon_sym_expect] = ACTIONS(4829), - [anon_sym_actual] = ACTIONS(4829), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4831), - [sym__automatic_semicolon] = ACTIONS(4831), - [sym_safe_nav] = ACTIONS(4831), + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5199), + [anon_sym_GT] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(5201), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5199), + [anon_sym_STAR] = ACTIONS(5199), + [sym_label] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5201), + [anon_sym_QMARK_COLON] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5201), + [anon_sym_PIPE_PIPE] = ACTIONS(5201), + [anon_sym_else] = ACTIONS(5199), + [anon_sym_COLON_COLON] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5201), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5201), + [anon_sym_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_EQ] = ACTIONS(5201), + [anon_sym_BANGin] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_BANGis] = ACTIONS(5201), + [anon_sym_PLUS] = ACTIONS(5199), + [anon_sym_DASH] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5199), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_as_QMARK] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5201), + [anon_sym_BANG_BANG] = ACTIONS(5201), + [anon_sym_suspend] = ACTIONS(5199), + [anon_sym_sealed] = ACTIONS(5199), + [anon_sym_annotation] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5199), + [anon_sym_inner] = ACTIONS(5199), + [anon_sym_value] = ACTIONS(5199), + [anon_sym_override] = ACTIONS(5199), + [anon_sym_lateinit] = ACTIONS(5199), + [anon_sym_public] = ACTIONS(5199), + [anon_sym_private] = ACTIONS(5199), + [anon_sym_internal] = ACTIONS(5199), + [anon_sym_protected] = ACTIONS(5199), + [anon_sym_tailrec] = ACTIONS(5199), + [anon_sym_operator] = ACTIONS(5199), + [anon_sym_infix] = ACTIONS(5199), + [anon_sym_inline] = ACTIONS(5199), + [anon_sym_external] = ACTIONS(5199), + [sym_property_modifier] = ACTIONS(5199), + [anon_sym_abstract] = ACTIONS(5199), + [anon_sym_final] = ACTIONS(5199), + [anon_sym_open] = ACTIONS(5199), + [anon_sym_vararg] = ACTIONS(5199), + [anon_sym_noinline] = ACTIONS(5199), + [anon_sym_crossinline] = ACTIONS(5199), + [anon_sym_expect] = ACTIONS(5199), + [anon_sym_actual] = ACTIONS(5199), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), [sym_multiline_comment] = ACTIONS(3), }, [3871] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [sym_label] = ACTIONS(4903), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_suspend] = ACTIONS(4901), - [anon_sym_sealed] = ACTIONS(4901), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_value] = ACTIONS(4901), - [anon_sym_override] = ACTIONS(4901), - [anon_sym_lateinit] = ACTIONS(4901), - [anon_sym_public] = ACTIONS(4901), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_internal] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_tailrec] = ACTIONS(4901), - [anon_sym_operator] = ACTIONS(4901), - [anon_sym_infix] = ACTIONS(4901), - [anon_sym_inline] = ACTIONS(4901), - [anon_sym_external] = ACTIONS(4901), - [sym_property_modifier] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_final] = ACTIONS(4901), - [anon_sym_open] = ACTIONS(4901), - [anon_sym_vararg] = ACTIONS(4901), - [anon_sym_noinline] = ACTIONS(4901), - [anon_sym_crossinline] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4903), - [sym__automatic_semicolon] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(7143), + [anon_sym_AT] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7145), + [anon_sym_typealias] = ACTIONS(7143), + [anon_sym_class] = ACTIONS(7143), + [anon_sym_interface] = ACTIONS(7143), + [anon_sym_enum] = ACTIONS(7143), + [anon_sym_LBRACE] = ACTIONS(7145), + [anon_sym_LPAREN] = ACTIONS(7145), + [anon_sym_val] = ACTIONS(7143), + [anon_sym_var] = ACTIONS(7143), + [anon_sym_object] = ACTIONS(7143), + [anon_sym_fun] = ACTIONS(7143), + [anon_sym_get] = ACTIONS(7143), + [anon_sym_set] = ACTIONS(7143), + [anon_sym_this] = ACTIONS(7143), + [anon_sym_super] = ACTIONS(7143), + [anon_sym_STAR] = ACTIONS(7145), + [sym_label] = ACTIONS(7143), + [anon_sym_for] = ACTIONS(7143), + [anon_sym_while] = ACTIONS(7143), + [anon_sym_do] = ACTIONS(7143), + [anon_sym_null] = ACTIONS(7143), + [anon_sym_if] = ACTIONS(7143), + [anon_sym_when] = ACTIONS(7143), + [anon_sym_try] = ACTIONS(7143), + [anon_sym_throw] = ACTIONS(7143), + [anon_sym_return] = ACTIONS(7143), + [anon_sym_continue] = ACTIONS(7143), + [anon_sym_break] = ACTIONS(7143), + [anon_sym_COLON_COLON] = ACTIONS(7145), + [anon_sym_PLUS] = ACTIONS(7143), + [anon_sym_DASH] = ACTIONS(7143), + [anon_sym_PLUS_PLUS] = ACTIONS(7145), + [anon_sym_DASH_DASH] = ACTIONS(7145), + [anon_sym_BANG] = ACTIONS(7145), + [anon_sym_suspend] = ACTIONS(7143), + [anon_sym_sealed] = ACTIONS(7143), + [anon_sym_annotation] = ACTIONS(7143), + [anon_sym_data] = ACTIONS(7143), + [anon_sym_inner] = ACTIONS(7143), + [anon_sym_value] = ACTIONS(7143), + [anon_sym_override] = ACTIONS(7143), + [anon_sym_lateinit] = ACTIONS(7143), + [anon_sym_public] = ACTIONS(7143), + [anon_sym_private] = ACTIONS(7143), + [anon_sym_internal] = ACTIONS(7143), + [anon_sym_protected] = ACTIONS(7143), + [anon_sym_tailrec] = ACTIONS(7143), + [anon_sym_operator] = ACTIONS(7143), + [anon_sym_infix] = ACTIONS(7143), + [anon_sym_inline] = ACTIONS(7143), + [anon_sym_external] = ACTIONS(7143), + [sym_property_modifier] = ACTIONS(7143), + [anon_sym_abstract] = ACTIONS(7143), + [anon_sym_final] = ACTIONS(7143), + [anon_sym_open] = ACTIONS(7143), + [anon_sym_vararg] = ACTIONS(7143), + [anon_sym_noinline] = ACTIONS(7143), + [anon_sym_crossinline] = ACTIONS(7143), + [anon_sym_expect] = ACTIONS(7143), + [anon_sym_actual] = ACTIONS(7143), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7145), + [anon_sym_continue_AT] = ACTIONS(7145), + [anon_sym_break_AT] = ACTIONS(7145), + [anon_sym_this_AT] = ACTIONS(7145), + [anon_sym_super_AT] = ACTIONS(7145), + [sym_real_literal] = ACTIONS(7145), + [sym_integer_literal] = ACTIONS(7143), + [sym_hex_literal] = ACTIONS(7145), + [sym_bin_literal] = ACTIONS(7145), + [anon_sym_true] = ACTIONS(7143), + [anon_sym_false] = ACTIONS(7143), + [anon_sym_SQUOTE] = ACTIONS(7145), + [sym__backtick_identifier] = ACTIONS(7145), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7145), }, [3872] = { - [sym__alpha_identifier] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [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_DOT] = 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_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3873] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(1770), - [anon_sym_sealed] = ACTIONS(1770), - [anon_sym_annotation] = ACTIONS(1770), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_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__alpha_identifier] = ACTIONS(5031), + [anon_sym_AT] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(5033), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5033), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5033), + [anon_sym_COMMA] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_get] = ACTIONS(5031), + [anon_sym_set] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5031), + [sym_label] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5033), + [anon_sym_QMARK_COLON] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5033), + [anon_sym_PIPE_PIPE] = ACTIONS(5033), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), + [anon_sym_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_EQ] = ACTIONS(5033), + [anon_sym_BANGin] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_BANGis] = ACTIONS(5033), + [anon_sym_PLUS] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5031), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_as_QMARK] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5033), + [anon_sym_DASH_DASH] = ACTIONS(5033), + [anon_sym_BANG_BANG] = ACTIONS(5033), + [anon_sym_suspend] = ACTIONS(5031), + [anon_sym_sealed] = ACTIONS(5031), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5031), + [anon_sym_inner] = ACTIONS(5031), + [anon_sym_value] = ACTIONS(5031), + [anon_sym_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5033), + [sym__automatic_semicolon] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), [sym_multiline_comment] = ACTIONS(3), }, [3874] = { - [sym__alpha_identifier] = ACTIONS(4869), - [anon_sym_AT] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(4871), - [anon_sym_as] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_LPAREN] = ACTIONS(4871), - [anon_sym_COMMA] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(4869), - [anon_sym_GT] = ACTIONS(4869), - [anon_sym_where] = ACTIONS(4869), - [anon_sym_DOT] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym_get] = ACTIONS(4869), - [anon_sym_set] = ACTIONS(4869), - [anon_sym_STAR] = ACTIONS(4869), - [sym_label] = ACTIONS(4871), - [anon_sym_in] = ACTIONS(4869), - [anon_sym_DOT_DOT] = ACTIONS(4871), - [anon_sym_QMARK_COLON] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_else] = ACTIONS(4869), - [anon_sym_COLON_COLON] = ACTIONS(4871), - [anon_sym_PLUS_EQ] = ACTIONS(4871), - [anon_sym_DASH_EQ] = ACTIONS(4871), - [anon_sym_STAR_EQ] = ACTIONS(4871), - [anon_sym_SLASH_EQ] = ACTIONS(4871), - [anon_sym_PERCENT_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), - [anon_sym_LT_EQ] = ACTIONS(4871), - [anon_sym_GT_EQ] = ACTIONS(4871), - [anon_sym_BANGin] = ACTIONS(4871), - [anon_sym_is] = ACTIONS(4869), - [anon_sym_BANGis] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(4869), - [anon_sym_DASH] = ACTIONS(4869), - [anon_sym_SLASH] = ACTIONS(4869), - [anon_sym_PERCENT] = ACTIONS(4869), - [anon_sym_as_QMARK] = ACTIONS(4871), - [anon_sym_PLUS_PLUS] = ACTIONS(4871), - [anon_sym_DASH_DASH] = ACTIONS(4871), - [anon_sym_BANG_BANG] = ACTIONS(4871), - [anon_sym_suspend] = ACTIONS(4869), - [anon_sym_sealed] = ACTIONS(4869), - [anon_sym_annotation] = ACTIONS(4869), - [anon_sym_data] = ACTIONS(4869), - [anon_sym_inner] = ACTIONS(4869), - [anon_sym_value] = ACTIONS(4869), - [anon_sym_override] = ACTIONS(4869), - [anon_sym_lateinit] = ACTIONS(4869), - [anon_sym_public] = ACTIONS(4869), - [anon_sym_private] = ACTIONS(4869), - [anon_sym_internal] = ACTIONS(4869), - [anon_sym_protected] = ACTIONS(4869), - [anon_sym_tailrec] = ACTIONS(4869), - [anon_sym_operator] = ACTIONS(4869), - [anon_sym_infix] = ACTIONS(4869), - [anon_sym_inline] = ACTIONS(4869), - [anon_sym_external] = ACTIONS(4869), - [sym_property_modifier] = ACTIONS(4869), - [anon_sym_abstract] = ACTIONS(4869), - [anon_sym_final] = ACTIONS(4869), - [anon_sym_open] = ACTIONS(4869), - [anon_sym_vararg] = ACTIONS(4869), - [anon_sym_noinline] = ACTIONS(4869), - [anon_sym_crossinline] = ACTIONS(4869), - [anon_sym_expect] = ACTIONS(4869), - [anon_sym_actual] = ACTIONS(4869), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4871), - [sym__automatic_semicolon] = ACTIONS(4871), - [sym_safe_nav] = ACTIONS(4871), + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), [sym_multiline_comment] = ACTIONS(3), }, [3875] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4819), - [anon_sym_DASH_EQ] = ACTIONS(4819), - [anon_sym_STAR_EQ] = ACTIONS(4819), - [anon_sym_SLASH_EQ] = ACTIONS(4819), - [anon_sym_PERCENT_EQ] = ACTIONS(4819), - [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__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5079), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), [sym_multiline_comment] = ACTIONS(3), }, [3876] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [sym_label] = ACTIONS(5043), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_suspend] = ACTIONS(5041), - [anon_sym_sealed] = ACTIONS(5041), - [anon_sym_annotation] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_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__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [3877] = { - [sym__alpha_identifier] = ACTIONS(4889), - [anon_sym_AT] = ACTIONS(4891), - [anon_sym_LBRACK] = ACTIONS(4891), - [anon_sym_as] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4891), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [anon_sym_COMMA] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4889), - [anon_sym_GT] = ACTIONS(4889), - [anon_sym_where] = ACTIONS(4889), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_get] = ACTIONS(4889), - [anon_sym_set] = ACTIONS(4889), - [anon_sym_STAR] = ACTIONS(4889), - [sym_label] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4889), - [anon_sym_DOT_DOT] = ACTIONS(4891), - [anon_sym_QMARK_COLON] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_else] = ACTIONS(4889), - [anon_sym_COLON_COLON] = ACTIONS(4891), - [anon_sym_PLUS_EQ] = ACTIONS(4891), - [anon_sym_DASH_EQ] = ACTIONS(4891), - [anon_sym_STAR_EQ] = ACTIONS(4891), - [anon_sym_SLASH_EQ] = ACTIONS(4891), - [anon_sym_PERCENT_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4891), - [anon_sym_LT_EQ] = ACTIONS(4891), - [anon_sym_GT_EQ] = ACTIONS(4891), - [anon_sym_BANGin] = ACTIONS(4891), - [anon_sym_is] = ACTIONS(4889), - [anon_sym_BANGis] = ACTIONS(4891), - [anon_sym_PLUS] = ACTIONS(4889), - [anon_sym_DASH] = ACTIONS(4889), - [anon_sym_SLASH] = ACTIONS(4889), - [anon_sym_PERCENT] = ACTIONS(4889), - [anon_sym_as_QMARK] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4891), - [anon_sym_DASH_DASH] = ACTIONS(4891), - [anon_sym_BANG_BANG] = ACTIONS(4891), - [anon_sym_suspend] = ACTIONS(4889), - [anon_sym_sealed] = ACTIONS(4889), - [anon_sym_annotation] = ACTIONS(4889), - [anon_sym_data] = ACTIONS(4889), - [anon_sym_inner] = ACTIONS(4889), - [anon_sym_value] = ACTIONS(4889), - [anon_sym_override] = ACTIONS(4889), - [anon_sym_lateinit] = ACTIONS(4889), - [anon_sym_public] = ACTIONS(4889), - [anon_sym_private] = ACTIONS(4889), - [anon_sym_internal] = ACTIONS(4889), - [anon_sym_protected] = ACTIONS(4889), - [anon_sym_tailrec] = ACTIONS(4889), - [anon_sym_operator] = ACTIONS(4889), - [anon_sym_infix] = ACTIONS(4889), - [anon_sym_inline] = ACTIONS(4889), - [anon_sym_external] = ACTIONS(4889), - [sym_property_modifier] = ACTIONS(4889), - [anon_sym_abstract] = ACTIONS(4889), - [anon_sym_final] = ACTIONS(4889), - [anon_sym_open] = ACTIONS(4889), - [anon_sym_vararg] = ACTIONS(4889), - [anon_sym_noinline] = ACTIONS(4889), - [anon_sym_crossinline] = ACTIONS(4889), - [anon_sym_expect] = ACTIONS(4889), - [anon_sym_actual] = ACTIONS(4889), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4891), - [sym__automatic_semicolon] = ACTIONS(4891), - [sym_safe_nav] = ACTIONS(4891), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_typealias] = ACTIONS(5163), + [anon_sym_class] = ACTIONS(5163), + [anon_sym_interface] = ACTIONS(5163), + [anon_sym_enum] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_val] = ACTIONS(5163), + [anon_sym_var] = ACTIONS(5163), + [anon_sym_object] = ACTIONS(5163), + [anon_sym_fun] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_this] = ACTIONS(5163), + [anon_sym_super] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5165), + [sym_label] = ACTIONS(5163), + [anon_sym_for] = ACTIONS(5163), + [anon_sym_while] = ACTIONS(5163), + [anon_sym_do] = ACTIONS(5163), + [anon_sym_null] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_try] = ACTIONS(5163), + [anon_sym_throw] = ACTIONS(5163), + [anon_sym_return] = ACTIONS(5163), + [anon_sym_continue] = ACTIONS(5163), + [anon_sym_break] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5165), + [anon_sym_continue_AT] = ACTIONS(5165), + [anon_sym_break_AT] = ACTIONS(5165), + [anon_sym_this_AT] = ACTIONS(5165), + [anon_sym_super_AT] = ACTIONS(5165), + [sym_real_literal] = ACTIONS(5165), + [sym_integer_literal] = ACTIONS(5163), + [sym_hex_literal] = ACTIONS(5165), + [sym_bin_literal] = ACTIONS(5165), + [anon_sym_true] = ACTIONS(5163), + [anon_sym_false] = ACTIONS(5163), + [anon_sym_SQUOTE] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5165), }, [3878] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [sym_label] = ACTIONS(4937), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_suspend] = ACTIONS(4935), - [anon_sym_sealed] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4935), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_value] = ACTIONS(4935), - [anon_sym_override] = ACTIONS(4935), - [anon_sym_lateinit] = ACTIONS(4935), - [anon_sym_public] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4935), - [anon_sym_internal] = ACTIONS(4935), - [anon_sym_protected] = ACTIONS(4935), - [anon_sym_tailrec] = ACTIONS(4935), - [anon_sym_operator] = ACTIONS(4935), - [anon_sym_infix] = ACTIONS(4935), - [anon_sym_inline] = ACTIONS(4935), - [anon_sym_external] = ACTIONS(4935), - [sym_property_modifier] = ACTIONS(4935), - [anon_sym_abstract] = ACTIONS(4935), - [anon_sym_final] = ACTIONS(4935), - [anon_sym_open] = ACTIONS(4935), - [anon_sym_vararg] = ACTIONS(4935), - [anon_sym_noinline] = ACTIONS(4935), - [anon_sym_crossinline] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4937), - [sym__automatic_semicolon] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), + [sym__alpha_identifier] = ACTIONS(5107), + [anon_sym_AT] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_get] = ACTIONS(5107), + [anon_sym_set] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5107), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_QMARK_COLON] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5107), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_BANGin] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5107), + [anon_sym_BANGis] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_as_QMARK] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5109), + [anon_sym_suspend] = ACTIONS(5107), + [anon_sym_sealed] = ACTIONS(5107), + [anon_sym_annotation] = ACTIONS(5107), + [anon_sym_data] = ACTIONS(5107), + [anon_sym_inner] = ACTIONS(5107), + [anon_sym_value] = ACTIONS(5107), + [anon_sym_override] = ACTIONS(5107), + [anon_sym_lateinit] = ACTIONS(5107), + [anon_sym_public] = ACTIONS(5107), + [anon_sym_private] = ACTIONS(5107), + [anon_sym_internal] = ACTIONS(5107), + [anon_sym_protected] = ACTIONS(5107), + [anon_sym_tailrec] = ACTIONS(5107), + [anon_sym_operator] = ACTIONS(5107), + [anon_sym_infix] = ACTIONS(5107), + [anon_sym_inline] = ACTIONS(5107), + [anon_sym_external] = ACTIONS(5107), + [sym_property_modifier] = ACTIONS(5107), + [anon_sym_abstract] = ACTIONS(5107), + [anon_sym_final] = ACTIONS(5107), + [anon_sym_open] = ACTIONS(5107), + [anon_sym_vararg] = ACTIONS(5107), + [anon_sym_noinline] = ACTIONS(5107), + [anon_sym_crossinline] = ACTIONS(5107), + [anon_sym_expect] = ACTIONS(5107), + [anon_sym_actual] = ACTIONS(5107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5109), + [sym__automatic_semicolon] = ACTIONS(5109), + [sym_safe_nav] = ACTIONS(5109), [sym_multiline_comment] = ACTIONS(3), }, [3879] = { - [sym_function_body] = STATE(3965), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_PLUS_EQ] = ACTIONS(4468), - [anon_sym_DASH_EQ] = ACTIONS(4468), - [anon_sym_STAR_EQ] = ACTIONS(4468), - [anon_sym_SLASH_EQ] = ACTIONS(4468), - [anon_sym_PERCENT_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3880] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_get] = ACTIONS(4442), - [anon_sym_set] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [sym_label] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_QMARK_COLON] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [anon_sym_else] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(4444), - [anon_sym_DASH_EQ] = ACTIONS(4444), - [anon_sym_STAR_EQ] = ACTIONS(4444), - [anon_sym_SLASH_EQ] = ACTIONS(4444), - [anon_sym_PERCENT_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_BANGin] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_BANGis] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4442), - [anon_sym_as_QMARK] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG_BANG] = ACTIONS(4444), - [anon_sym_suspend] = ACTIONS(4442), - [anon_sym_sealed] = ACTIONS(4442), - [anon_sym_annotation] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_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), + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [3881] = { - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(4582), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [sym_label] = ACTIONS(4582), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4580), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, [3882] = { - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4161), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), [sym_multiline_comment] = ACTIONS(3), }, [3883] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(7171), + [anon_sym_AT] = ACTIONS(7173), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_typealias] = ACTIONS(7171), + [anon_sym_class] = ACTIONS(7171), + [anon_sym_interface] = ACTIONS(7171), + [anon_sym_enum] = ACTIONS(7171), + [anon_sym_LBRACE] = ACTIONS(7173), + [anon_sym_LPAREN] = ACTIONS(7173), + [anon_sym_val] = ACTIONS(7171), + [anon_sym_var] = ACTIONS(7171), + [anon_sym_object] = ACTIONS(7171), + [anon_sym_fun] = ACTIONS(7171), + [anon_sym_get] = ACTIONS(7171), + [anon_sym_set] = ACTIONS(7171), + [anon_sym_this] = ACTIONS(7171), + [anon_sym_super] = ACTIONS(7171), + [anon_sym_STAR] = ACTIONS(7173), + [sym_label] = ACTIONS(7171), + [anon_sym_for] = ACTIONS(7171), + [anon_sym_while] = ACTIONS(7171), + [anon_sym_do] = ACTIONS(7171), + [anon_sym_null] = ACTIONS(7171), + [anon_sym_if] = ACTIONS(7171), + [anon_sym_when] = ACTIONS(7171), + [anon_sym_try] = ACTIONS(7171), + [anon_sym_throw] = ACTIONS(7171), + [anon_sym_return] = ACTIONS(7171), + [anon_sym_continue] = ACTIONS(7171), + [anon_sym_break] = ACTIONS(7171), + [anon_sym_COLON_COLON] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7171), + [anon_sym_DASH] = ACTIONS(7171), + [anon_sym_PLUS_PLUS] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7173), + [anon_sym_BANG] = ACTIONS(7173), + [anon_sym_suspend] = ACTIONS(7171), + [anon_sym_sealed] = ACTIONS(7171), + [anon_sym_annotation] = ACTIONS(7171), + [anon_sym_data] = ACTIONS(7171), + [anon_sym_inner] = ACTIONS(7171), + [anon_sym_value] = ACTIONS(7171), + [anon_sym_override] = ACTIONS(7171), + [anon_sym_lateinit] = ACTIONS(7171), + [anon_sym_public] = ACTIONS(7171), + [anon_sym_private] = ACTIONS(7171), + [anon_sym_internal] = ACTIONS(7171), + [anon_sym_protected] = ACTIONS(7171), + [anon_sym_tailrec] = ACTIONS(7171), + [anon_sym_operator] = ACTIONS(7171), + [anon_sym_infix] = ACTIONS(7171), + [anon_sym_inline] = ACTIONS(7171), + [anon_sym_external] = ACTIONS(7171), + [sym_property_modifier] = ACTIONS(7171), + [anon_sym_abstract] = ACTIONS(7171), + [anon_sym_final] = ACTIONS(7171), + [anon_sym_open] = ACTIONS(7171), + [anon_sym_vararg] = ACTIONS(7171), + [anon_sym_noinline] = ACTIONS(7171), + [anon_sym_crossinline] = ACTIONS(7171), + [anon_sym_expect] = ACTIONS(7171), + [anon_sym_actual] = ACTIONS(7171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7173), + [anon_sym_continue_AT] = ACTIONS(7173), + [anon_sym_break_AT] = ACTIONS(7173), + [anon_sym_this_AT] = ACTIONS(7173), + [anon_sym_super_AT] = ACTIONS(7173), + [sym_real_literal] = ACTIONS(7173), + [sym_integer_literal] = ACTIONS(7171), + [sym_hex_literal] = ACTIONS(7173), + [sym_bin_literal] = ACTIONS(7173), + [anon_sym_true] = ACTIONS(7171), + [anon_sym_false] = ACTIONS(7171), + [anon_sym_SQUOTE] = ACTIONS(7173), + [sym__backtick_identifier] = ACTIONS(7173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7173), }, [3884] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [sym_label] = ACTIONS(4945), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_suspend] = ACTIONS(4943), - [anon_sym_sealed] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4943), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_value] = ACTIONS(4943), - [anon_sym_override] = ACTIONS(4943), - [anon_sym_lateinit] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_internal] = ACTIONS(4943), - [anon_sym_protected] = ACTIONS(4943), - [anon_sym_tailrec] = ACTIONS(4943), - [anon_sym_operator] = ACTIONS(4943), - [anon_sym_infix] = ACTIONS(4943), - [anon_sym_inline] = ACTIONS(4943), - [anon_sym_external] = ACTIONS(4943), - [sym_property_modifier] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_open] = ACTIONS(4943), - [anon_sym_vararg] = ACTIONS(4943), - [anon_sym_noinline] = ACTIONS(4943), - [anon_sym_crossinline] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4945), - [sym__automatic_semicolon] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), + [sym__alpha_identifier] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_as] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_COMMA] = ACTIONS(4357), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4355), + [anon_sym_set] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4357), + [anon_sym_in] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_QMARK_COLON] = ACTIONS(4357), + [anon_sym_AMP_AMP] = ACTIONS(4357), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(4355), + [anon_sym_COLON_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(4357), + [anon_sym_DASH_EQ] = ACTIONS(4357), + [anon_sym_STAR_EQ] = ACTIONS(4357), + [anon_sym_SLASH_EQ] = ACTIONS(4357), + [anon_sym_PERCENT_EQ] = ACTIONS(4357), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4357), + [anon_sym_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4357), + [anon_sym_LT_EQ] = ACTIONS(4357), + [anon_sym_GT_EQ] = ACTIONS(4357), + [anon_sym_BANGin] = ACTIONS(4357), + [anon_sym_is] = ACTIONS(4355), + [anon_sym_BANGis] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4357), + [anon_sym_PLUS_PLUS] = ACTIONS(4357), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_BANG_BANG] = ACTIONS(4357), + [anon_sym_suspend] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_annotation] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4355), + [anon_sym_inner] = ACTIONS(4355), + [anon_sym_value] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_lateinit] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_tailrec] = ACTIONS(4355), + [anon_sym_operator] = ACTIONS(4355), + [anon_sym_infix] = ACTIONS(4355), + [anon_sym_inline] = ACTIONS(4355), + [anon_sym_external] = ACTIONS(4355), + [sym_property_modifier] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_final] = ACTIONS(4355), + [anon_sym_open] = ACTIONS(4355), + [anon_sym_vararg] = ACTIONS(4355), + [anon_sym_noinline] = ACTIONS(4355), + [anon_sym_crossinline] = ACTIONS(4355), + [anon_sym_expect] = ACTIONS(4355), + [anon_sym_actual] = ACTIONS(4355), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4357), + [sym__automatic_semicolon] = ACTIONS(4357), + [sym_safe_nav] = ACTIONS(4357), [sym_multiline_comment] = ACTIONS(3), }, [3885] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4396), - [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(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_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_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3886] = { - [sym__alpha_identifier] = ACTIONS(4951), - [anon_sym_AT] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_as] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_where] = ACTIONS(4951), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym_get] = ACTIONS(4951), - [anon_sym_set] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4951), - [anon_sym_DOT_DOT] = ACTIONS(4953), - [anon_sym_QMARK_COLON] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [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(4951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_BANGin] = ACTIONS(4953), - [anon_sym_is] = ACTIONS(4951), - [anon_sym_BANGis] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_as_QMARK] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4953), - [anon_sym_suspend] = ACTIONS(4951), - [anon_sym_sealed] = ACTIONS(4951), - [anon_sym_annotation] = ACTIONS(4951), - [anon_sym_data] = ACTIONS(4951), - [anon_sym_inner] = ACTIONS(4951), - [anon_sym_value] = ACTIONS(4951), - [anon_sym_override] = ACTIONS(4951), - [anon_sym_lateinit] = ACTIONS(4951), - [anon_sym_public] = ACTIONS(4951), - [anon_sym_private] = ACTIONS(4951), - [anon_sym_internal] = ACTIONS(4951), - [anon_sym_protected] = ACTIONS(4951), - [anon_sym_tailrec] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_infix] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym_external] = ACTIONS(4951), - [sym_property_modifier] = ACTIONS(4951), - [anon_sym_abstract] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_open] = ACTIONS(4951), - [anon_sym_vararg] = ACTIONS(4951), - [anon_sym_noinline] = ACTIONS(4951), - [anon_sym_crossinline] = ACTIONS(4951), - [anon_sym_expect] = ACTIONS(4951), - [anon_sym_actual] = ACTIONS(4951), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4953), - [sym__automatic_semicolon] = ACTIONS(4953), - [sym_safe_nav] = ACTIONS(4953), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7177), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [3887] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7177), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [3888] = { - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_PLUS_EQ] = ACTIONS(4507), + [anon_sym_DASH_EQ] = ACTIONS(4507), + [anon_sym_STAR_EQ] = ACTIONS(4507), + [anon_sym_SLASH_EQ] = ACTIONS(4507), + [anon_sym_PERCENT_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [3889] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [sym_label] = ACTIONS(5011), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [anon_sym_PLUS_EQ] = ACTIONS(5011), - [anon_sym_DASH_EQ] = ACTIONS(5011), - [anon_sym_STAR_EQ] = ACTIONS(5011), - [anon_sym_SLASH_EQ] = ACTIONS(5011), - [anon_sym_PERCENT_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ] = ACTIONS(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_suspend] = ACTIONS(5009), - [anon_sym_sealed] = ACTIONS(5009), - [anon_sym_annotation] = ACTIONS(5009), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_value] = ACTIONS(5009), - [anon_sym_override] = ACTIONS(5009), - [anon_sym_lateinit] = ACTIONS(5009), - [anon_sym_public] = ACTIONS(5009), - [anon_sym_private] = ACTIONS(5009), - [anon_sym_internal] = ACTIONS(5009), - [anon_sym_protected] = ACTIONS(5009), - [anon_sym_tailrec] = ACTIONS(5009), - [anon_sym_operator] = ACTIONS(5009), - [anon_sym_infix] = ACTIONS(5009), - [anon_sym_inline] = ACTIONS(5009), - [anon_sym_external] = ACTIONS(5009), - [sym_property_modifier] = ACTIONS(5009), - [anon_sym_abstract] = ACTIONS(5009), - [anon_sym_final] = ACTIONS(5009), - [anon_sym_open] = ACTIONS(5009), - [anon_sym_vararg] = ACTIONS(5009), - [anon_sym_noinline] = ACTIONS(5009), - [anon_sym_crossinline] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5011), - [sym__automatic_semicolon] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(7179), + [anon_sym_AT] = ACTIONS(7181), + [anon_sym_LBRACK] = ACTIONS(7181), + [anon_sym_typealias] = ACTIONS(7179), + [anon_sym_class] = ACTIONS(7179), + [anon_sym_interface] = ACTIONS(7179), + [anon_sym_enum] = ACTIONS(7179), + [anon_sym_LBRACE] = ACTIONS(7181), + [anon_sym_LPAREN] = ACTIONS(7181), + [anon_sym_val] = ACTIONS(7179), + [anon_sym_var] = ACTIONS(7179), + [anon_sym_object] = ACTIONS(7179), + [anon_sym_fun] = ACTIONS(7179), + [anon_sym_get] = ACTIONS(7179), + [anon_sym_set] = ACTIONS(7179), + [anon_sym_this] = ACTIONS(7179), + [anon_sym_super] = ACTIONS(7179), + [anon_sym_STAR] = ACTIONS(7181), + [sym_label] = ACTIONS(7179), + [anon_sym_for] = ACTIONS(7179), + [anon_sym_while] = ACTIONS(7179), + [anon_sym_do] = ACTIONS(7179), + [anon_sym_null] = ACTIONS(7179), + [anon_sym_if] = ACTIONS(7179), + [anon_sym_when] = ACTIONS(7179), + [anon_sym_try] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7179), + [anon_sym_return] = ACTIONS(7179), + [anon_sym_continue] = ACTIONS(7179), + [anon_sym_break] = ACTIONS(7179), + [anon_sym_COLON_COLON] = ACTIONS(7181), + [anon_sym_PLUS] = ACTIONS(7179), + [anon_sym_DASH] = ACTIONS(7179), + [anon_sym_PLUS_PLUS] = ACTIONS(7181), + [anon_sym_DASH_DASH] = ACTIONS(7181), + [anon_sym_BANG] = ACTIONS(7181), + [anon_sym_suspend] = ACTIONS(7179), + [anon_sym_sealed] = ACTIONS(7179), + [anon_sym_annotation] = ACTIONS(7179), + [anon_sym_data] = ACTIONS(7179), + [anon_sym_inner] = ACTIONS(7179), + [anon_sym_value] = ACTIONS(7179), + [anon_sym_override] = ACTIONS(7179), + [anon_sym_lateinit] = ACTIONS(7179), + [anon_sym_public] = ACTIONS(7179), + [anon_sym_private] = ACTIONS(7179), + [anon_sym_internal] = ACTIONS(7179), + [anon_sym_protected] = ACTIONS(7179), + [anon_sym_tailrec] = ACTIONS(7179), + [anon_sym_operator] = ACTIONS(7179), + [anon_sym_infix] = ACTIONS(7179), + [anon_sym_inline] = ACTIONS(7179), + [anon_sym_external] = ACTIONS(7179), + [sym_property_modifier] = ACTIONS(7179), + [anon_sym_abstract] = ACTIONS(7179), + [anon_sym_final] = ACTIONS(7179), + [anon_sym_open] = ACTIONS(7179), + [anon_sym_vararg] = ACTIONS(7179), + [anon_sym_noinline] = ACTIONS(7179), + [anon_sym_crossinline] = ACTIONS(7179), + [anon_sym_expect] = ACTIONS(7179), + [anon_sym_actual] = ACTIONS(7179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7181), + [anon_sym_continue_AT] = ACTIONS(7181), + [anon_sym_break_AT] = ACTIONS(7181), + [anon_sym_this_AT] = ACTIONS(7181), + [anon_sym_super_AT] = ACTIONS(7181), + [sym_real_literal] = ACTIONS(7181), + [sym_integer_literal] = ACTIONS(7179), + [sym_hex_literal] = ACTIONS(7181), + [sym_bin_literal] = ACTIONS(7181), + [anon_sym_true] = ACTIONS(7179), + [anon_sym_false] = ACTIONS(7179), + [anon_sym_SQUOTE] = ACTIONS(7181), + [sym__backtick_identifier] = ACTIONS(7181), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7181), }, [3890] = { - [sym__alpha_identifier] = ACTIONS(5104), - [anon_sym_AT] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5104), - [anon_sym_EQ] = ACTIONS(5104), - [anon_sym_LBRACE] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5104), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_get] = ACTIONS(5104), - [anon_sym_set] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5104), - [sym_label] = ACTIONS(5106), - [anon_sym_in] = ACTIONS(5104), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_QMARK_COLON] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_else] = ACTIONS(5104), - [anon_sym_COLON_COLON] = ACTIONS(5106), - [anon_sym_PLUS_EQ] = ACTIONS(5106), - [anon_sym_DASH_EQ] = ACTIONS(5106), - [anon_sym_STAR_EQ] = ACTIONS(5106), - [anon_sym_SLASH_EQ] = ACTIONS(5106), - [anon_sym_PERCENT_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_BANGin] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5104), - [anon_sym_BANGis] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5104), - [anon_sym_as_QMARK] = ACTIONS(5106), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_BANG_BANG] = ACTIONS(5106), - [anon_sym_suspend] = ACTIONS(5104), - [anon_sym_sealed] = ACTIONS(5104), - [anon_sym_annotation] = ACTIONS(5104), - [anon_sym_data] = ACTIONS(5104), - [anon_sym_inner] = ACTIONS(5104), - [anon_sym_value] = ACTIONS(5104), - [anon_sym_override] = ACTIONS(5104), - [anon_sym_lateinit] = ACTIONS(5104), - [anon_sym_public] = ACTIONS(5104), - [anon_sym_private] = ACTIONS(5104), - [anon_sym_internal] = ACTIONS(5104), - [anon_sym_protected] = ACTIONS(5104), - [anon_sym_tailrec] = ACTIONS(5104), - [anon_sym_operator] = ACTIONS(5104), - [anon_sym_infix] = ACTIONS(5104), - [anon_sym_inline] = ACTIONS(5104), - [anon_sym_external] = ACTIONS(5104), - [sym_property_modifier] = ACTIONS(5104), - [anon_sym_abstract] = ACTIONS(5104), - [anon_sym_final] = ACTIONS(5104), - [anon_sym_open] = ACTIONS(5104), - [anon_sym_vararg] = ACTIONS(5104), - [anon_sym_noinline] = ACTIONS(5104), - [anon_sym_crossinline] = ACTIONS(5104), - [anon_sym_expect] = ACTIONS(5104), - [anon_sym_actual] = ACTIONS(5104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5106), - [sym__automatic_semicolon] = ACTIONS(5106), - [sym_safe_nav] = ACTIONS(5106), + [sym__alpha_identifier] = ACTIONS(5213), + [anon_sym_AT] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5213), + [anon_sym_set] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [sym_label] = ACTIONS(5215), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5215), + [anon_sym_QMARK_COLON] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_else] = ACTIONS(5213), + [anon_sym_COLON_COLON] = ACTIONS(5215), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_BANG_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), + [anon_sym_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), + [anon_sym_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_EQ] = ACTIONS(5215), + [anon_sym_BANGin] = ACTIONS(5215), + [anon_sym_is] = ACTIONS(5213), + [anon_sym_BANGis] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5213), + [anon_sym_as_QMARK] = ACTIONS(5215), + [anon_sym_PLUS_PLUS] = ACTIONS(5215), + [anon_sym_DASH_DASH] = ACTIONS(5215), + [anon_sym_BANG_BANG] = ACTIONS(5215), + [anon_sym_suspend] = ACTIONS(5213), + [anon_sym_sealed] = ACTIONS(5213), + [anon_sym_annotation] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5213), + [anon_sym_inner] = ACTIONS(5213), + [anon_sym_value] = ACTIONS(5213), + [anon_sym_override] = ACTIONS(5213), + [anon_sym_lateinit] = ACTIONS(5213), + [anon_sym_public] = ACTIONS(5213), + [anon_sym_private] = ACTIONS(5213), + [anon_sym_internal] = ACTIONS(5213), + [anon_sym_protected] = ACTIONS(5213), + [anon_sym_tailrec] = ACTIONS(5213), + [anon_sym_operator] = ACTIONS(5213), + [anon_sym_infix] = ACTIONS(5213), + [anon_sym_inline] = ACTIONS(5213), + [anon_sym_external] = ACTIONS(5213), + [sym_property_modifier] = ACTIONS(5213), + [anon_sym_abstract] = ACTIONS(5213), + [anon_sym_final] = ACTIONS(5213), + [anon_sym_open] = ACTIONS(5213), + [anon_sym_vararg] = ACTIONS(5213), + [anon_sym_noinline] = ACTIONS(5213), + [anon_sym_crossinline] = ACTIONS(5213), + [anon_sym_expect] = ACTIONS(5213), + [anon_sym_actual] = ACTIONS(5213), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5215), + [sym__automatic_semicolon] = ACTIONS(5215), + [sym_safe_nav] = ACTIONS(5215), [sym_multiline_comment] = ACTIONS(3), }, [3891] = { - [sym__alpha_identifier] = ACTIONS(4709), - [anon_sym_AT] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4711), - [anon_sym_EQ] = ACTIONS(4711), - [anon_sym_LBRACE] = ACTIONS(4711), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_by] = ACTIONS(4709), - [anon_sym_where] = ACTIONS(4709), - [anon_sym_object] = ACTIONS(4709), - [anon_sym_fun] = ACTIONS(4709), - [anon_sym_SEMI] = ACTIONS(4711), - [anon_sym_get] = ACTIONS(4709), - [anon_sym_set] = ACTIONS(4709), - [anon_sym_this] = ACTIONS(4709), - [anon_sym_super] = ACTIONS(4709), - [anon_sym_STAR] = ACTIONS(4711), - [sym_label] = ACTIONS(4709), - [anon_sym_in] = ACTIONS(4709), - [anon_sym_null] = ACTIONS(4709), - [anon_sym_if] = ACTIONS(4709), - [anon_sym_else] = ACTIONS(4709), - [anon_sym_when] = ACTIONS(4709), - [anon_sym_try] = ACTIONS(4709), - [anon_sym_throw] = ACTIONS(4709), - [anon_sym_return] = ACTIONS(4709), - [anon_sym_continue] = ACTIONS(4709), - [anon_sym_break] = ACTIONS(4709), - [anon_sym_COLON_COLON] = ACTIONS(4711), - [anon_sym_BANGin] = ACTIONS(4711), - [anon_sym_is] = ACTIONS(4709), - [anon_sym_BANGis] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4709), - [anon_sym_suspend] = ACTIONS(4709), - [anon_sym_sealed] = ACTIONS(4709), - [anon_sym_annotation] = ACTIONS(4709), - [anon_sym_data] = ACTIONS(4709), - [anon_sym_inner] = ACTIONS(4709), - [anon_sym_value] = ACTIONS(4709), - [anon_sym_override] = ACTIONS(4709), - [anon_sym_lateinit] = ACTIONS(4709), - [anon_sym_public] = ACTIONS(4709), - [anon_sym_private] = ACTIONS(4709), - [anon_sym_internal] = ACTIONS(4709), - [anon_sym_protected] = ACTIONS(4709), - [anon_sym_tailrec] = ACTIONS(4709), - [anon_sym_operator] = ACTIONS(4709), - [anon_sym_infix] = ACTIONS(4709), - [anon_sym_inline] = ACTIONS(4709), - [anon_sym_external] = ACTIONS(4709), - [sym_property_modifier] = ACTIONS(4709), - [anon_sym_abstract] = ACTIONS(4709), - [anon_sym_final] = ACTIONS(4709), - [anon_sym_open] = ACTIONS(4709), - [anon_sym_vararg] = ACTIONS(4709), - [anon_sym_noinline] = ACTIONS(4709), - [anon_sym_crossinline] = ACTIONS(4709), - [anon_sym_expect] = ACTIONS(4709), - [anon_sym_actual] = ACTIONS(4709), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4711), - [anon_sym_continue_AT] = ACTIONS(4711), - [anon_sym_break_AT] = ACTIONS(4711), - [sym_real_literal] = ACTIONS(4711), - [sym_integer_literal] = ACTIONS(4709), - [sym_hex_literal] = ACTIONS(4711), - [sym_bin_literal] = ACTIONS(4711), - [anon_sym_true] = ACTIONS(4709), - [anon_sym_false] = ACTIONS(4709), - [anon_sym_SQUOTE] = ACTIONS(4711), - [sym__backtick_identifier] = ACTIONS(4711), - [sym__automatic_semicolon] = ACTIONS(4711), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4711), + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_where] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_get] = ACTIONS(4922), + [anon_sym_set] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_QMARK_COLON] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_BANGin] = ACTIONS(4924), + [anon_sym_is] = ACTIONS(4922), + [anon_sym_BANGis] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_as_QMARK] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4924), + [anon_sym_suspend] = ACTIONS(4922), + [anon_sym_sealed] = ACTIONS(4922), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4922), + [anon_sym_inner] = ACTIONS(4922), + [anon_sym_value] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_lateinit] = ACTIONS(4922), + [anon_sym_public] = ACTIONS(4922), + [anon_sym_private] = ACTIONS(4922), + [anon_sym_internal] = ACTIONS(4922), + [anon_sym_protected] = ACTIONS(4922), + [anon_sym_tailrec] = ACTIONS(4922), + [anon_sym_operator] = ACTIONS(4922), + [anon_sym_infix] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym_external] = ACTIONS(4922), + [sym_property_modifier] = ACTIONS(4922), + [anon_sym_abstract] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_open] = ACTIONS(4922), + [anon_sym_vararg] = ACTIONS(4922), + [anon_sym_noinline] = ACTIONS(4922), + [anon_sym_crossinline] = ACTIONS(4922), + [anon_sym_expect] = ACTIONS(4922), + [anon_sym_actual] = ACTIONS(4922), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4924), + [sym__automatic_semicolon] = ACTIONS(4924), + [sym_safe_nav] = ACTIONS(4924), + [sym_multiline_comment] = ACTIONS(3), }, [3892] = { - [sym__alpha_identifier] = ACTIONS(4713), - [anon_sym_AT] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4715), - [anon_sym_EQ] = ACTIONS(4715), - [anon_sym_LBRACE] = ACTIONS(4715), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_by] = ACTIONS(4713), - [anon_sym_where] = ACTIONS(4713), - [anon_sym_object] = ACTIONS(4713), - [anon_sym_fun] = ACTIONS(4713), - [anon_sym_SEMI] = ACTIONS(4715), - [anon_sym_get] = ACTIONS(4713), - [anon_sym_set] = ACTIONS(4713), - [anon_sym_this] = ACTIONS(4713), - [anon_sym_super] = ACTIONS(4713), - [anon_sym_STAR] = ACTIONS(4715), - [sym_label] = ACTIONS(4713), - [anon_sym_in] = ACTIONS(4713), - [anon_sym_null] = ACTIONS(4713), - [anon_sym_if] = ACTIONS(4713), - [anon_sym_else] = ACTIONS(4713), - [anon_sym_when] = ACTIONS(4713), - [anon_sym_try] = ACTIONS(4713), - [anon_sym_throw] = ACTIONS(4713), - [anon_sym_return] = ACTIONS(4713), - [anon_sym_continue] = ACTIONS(4713), - [anon_sym_break] = ACTIONS(4713), - [anon_sym_COLON_COLON] = ACTIONS(4715), - [anon_sym_BANGin] = ACTIONS(4715), - [anon_sym_is] = ACTIONS(4713), - [anon_sym_BANGis] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4713), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_PLUS_PLUS] = ACTIONS(4715), - [anon_sym_DASH_DASH] = ACTIONS(4715), - [anon_sym_BANG] = ACTIONS(4713), - [anon_sym_suspend] = ACTIONS(4713), - [anon_sym_sealed] = ACTIONS(4713), - [anon_sym_annotation] = ACTIONS(4713), - [anon_sym_data] = ACTIONS(4713), - [anon_sym_inner] = ACTIONS(4713), - [anon_sym_value] = ACTIONS(4713), - [anon_sym_override] = ACTIONS(4713), - [anon_sym_lateinit] = ACTIONS(4713), - [anon_sym_public] = ACTIONS(4713), - [anon_sym_private] = ACTIONS(4713), - [anon_sym_internal] = ACTIONS(4713), - [anon_sym_protected] = ACTIONS(4713), - [anon_sym_tailrec] = ACTIONS(4713), - [anon_sym_operator] = ACTIONS(4713), - [anon_sym_infix] = ACTIONS(4713), - [anon_sym_inline] = ACTIONS(4713), - [anon_sym_external] = ACTIONS(4713), - [sym_property_modifier] = ACTIONS(4713), - [anon_sym_abstract] = ACTIONS(4713), - [anon_sym_final] = ACTIONS(4713), - [anon_sym_open] = ACTIONS(4713), - [anon_sym_vararg] = ACTIONS(4713), - [anon_sym_noinline] = ACTIONS(4713), - [anon_sym_crossinline] = ACTIONS(4713), - [anon_sym_expect] = ACTIONS(4713), - [anon_sym_actual] = ACTIONS(4713), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4715), - [anon_sym_continue_AT] = ACTIONS(4715), - [anon_sym_break_AT] = ACTIONS(4715), - [sym_real_literal] = ACTIONS(4715), - [sym_integer_literal] = ACTIONS(4713), - [sym_hex_literal] = ACTIONS(4715), - [sym_bin_literal] = ACTIONS(4715), - [anon_sym_true] = ACTIONS(4713), - [anon_sym_false] = ACTIONS(4713), - [anon_sym_SQUOTE] = ACTIONS(4715), - [sym__backtick_identifier] = ACTIONS(4715), - [sym__automatic_semicolon] = ACTIONS(4715), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4715), + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5075), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_value] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5075), + [sym__automatic_semicolon] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), + [sym_multiline_comment] = ACTIONS(3), }, [3893] = { - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_PLUS_EQ] = ACTIONS(4118), - [anon_sym_DASH_EQ] = ACTIONS(4118), - [anon_sym_STAR_EQ] = ACTIONS(4118), - [anon_sym_SLASH_EQ] = ACTIONS(4118), - [anon_sym_PERCENT_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, [3894] = { - [sym_function_body] = STATE(3337), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_PLUS_EQ] = ACTIONS(4277), + [anon_sym_DASH_EQ] = ACTIONS(4277), + [anon_sym_STAR_EQ] = ACTIONS(4277), + [anon_sym_SLASH_EQ] = ACTIONS(4277), + [anon_sym_PERCENT_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), + [sym_multiline_comment] = ACTIONS(3), }, [3895] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_object] = ACTIONS(4504), - [anon_sym_fun] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_this] = ACTIONS(4504), - [anon_sym_super] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4504), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4907), - [anon_sym_QMARK_COLON] = ACTIONS(4907), - [anon_sym_AMP_AMP] = ACTIONS(4907), - [anon_sym_PIPE_PIPE] = ACTIONS(4907), - [anon_sym_null] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), - [anon_sym_EQ_EQ] = ACTIONS(4905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), - [anon_sym_LT_EQ] = ACTIONS(4907), - [anon_sym_GT_EQ] = ACTIONS(4907), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_as_QMARK] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG] = ACTIONS(4504), - [anon_sym_BANG_BANG] = ACTIONS(4907), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4506), - [anon_sym_continue_AT] = ACTIONS(4506), - [anon_sym_break_AT] = ACTIONS(4506), - [sym_real_literal] = ACTIONS(4506), - [sym_integer_literal] = ACTIONS(4504), - [sym_hex_literal] = ACTIONS(4506), - [sym_bin_literal] = ACTIONS(4506), - [anon_sym_true] = ACTIONS(4504), - [anon_sym_false] = ACTIONS(4504), - [anon_sym_SQUOTE] = ACTIONS(4506), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4907), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4506), + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_value] = ACTIONS(5047), + [anon_sym_override] = ACTIONS(5047), + [anon_sym_lateinit] = ACTIONS(5047), + [anon_sym_public] = ACTIONS(5047), + [anon_sym_private] = ACTIONS(5047), + [anon_sym_internal] = ACTIONS(5047), + [anon_sym_protected] = ACTIONS(5047), + [anon_sym_tailrec] = ACTIONS(5047), + [anon_sym_operator] = ACTIONS(5047), + [anon_sym_infix] = ACTIONS(5047), + [anon_sym_inline] = ACTIONS(5047), + [anon_sym_external] = ACTIONS(5047), + [sym_property_modifier] = ACTIONS(5047), + [anon_sym_abstract] = ACTIONS(5047), + [anon_sym_final] = ACTIONS(5047), + [anon_sym_open] = ACTIONS(5047), + [anon_sym_vararg] = ACTIONS(5047), + [anon_sym_noinline] = ACTIONS(5047), + [anon_sym_crossinline] = ACTIONS(5047), + [anon_sym_expect] = ACTIONS(5047), + [anon_sym_actual] = ACTIONS(5047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5049), + [sym__automatic_semicolon] = ACTIONS(5049), + [sym_safe_nav] = ACTIONS(5049), + [sym_multiline_comment] = ACTIONS(3), }, [3896] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_where] = ACTIONS(4963), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym_get] = ACTIONS(4963), - [anon_sym_set] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [sym_label] = ACTIONS(4965), - [anon_sym_in] = ACTIONS(4963), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_QMARK_COLON] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_else] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4963), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_BANGin] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4963), - [anon_sym_BANGis] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_as_QMARK] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_BANG_BANG] = ACTIONS(4965), - [anon_sym_suspend] = ACTIONS(4963), - [anon_sym_sealed] = ACTIONS(4963), - [anon_sym_annotation] = ACTIONS(4963), - [anon_sym_data] = ACTIONS(4963), - [anon_sym_inner] = ACTIONS(4963), - [anon_sym_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_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_PLUS_EQ] = ACTIONS(4139), + [anon_sym_DASH_EQ] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4139), + [anon_sym_SLASH_EQ] = ACTIONS(4139), + [anon_sym_PERCENT_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4137), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3897] = { - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3194), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_PLUS_EQ] = ACTIONS(3198), - [anon_sym_DASH_EQ] = ACTIONS(3198), - [anon_sym_STAR_EQ] = ACTIONS(3198), - [anon_sym_SLASH_EQ] = ACTIONS(3198), - [anon_sym_PERCENT_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3194), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3898] = { - [sym__alpha_identifier] = ACTIONS(4795), - [anon_sym_AT] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4797), - [anon_sym_as] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_where] = ACTIONS(4795), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_get] = ACTIONS(4795), - [anon_sym_set] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4795), - [sym_label] = ACTIONS(4797), - [anon_sym_in] = ACTIONS(4795), - [anon_sym_DOT_DOT] = ACTIONS(4797), - [anon_sym_QMARK_COLON] = ACTIONS(4797), - [anon_sym_AMP_AMP] = ACTIONS(4797), - [anon_sym_PIPE_PIPE] = ACTIONS(4797), - [anon_sym_else] = ACTIONS(4795), - [anon_sym_COLON_COLON] = ACTIONS(4797), - [anon_sym_PLUS_EQ] = ACTIONS(4797), - [anon_sym_DASH_EQ] = ACTIONS(4797), - [anon_sym_STAR_EQ] = ACTIONS(4797), - [anon_sym_SLASH_EQ] = ACTIONS(4797), - [anon_sym_PERCENT_EQ] = ACTIONS(4797), - [anon_sym_BANG_EQ] = ACTIONS(4795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4797), - [anon_sym_EQ_EQ] = ACTIONS(4795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4797), - [anon_sym_LT_EQ] = ACTIONS(4797), - [anon_sym_GT_EQ] = ACTIONS(4797), - [anon_sym_BANGin] = ACTIONS(4797), - [anon_sym_is] = ACTIONS(4795), - [anon_sym_BANGis] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4795), - [anon_sym_as_QMARK] = ACTIONS(4797), - [anon_sym_PLUS_PLUS] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4797), - [anon_sym_BANG_BANG] = ACTIONS(4797), - [anon_sym_suspend] = ACTIONS(4795), - [anon_sym_sealed] = ACTIONS(4795), - [anon_sym_annotation] = ACTIONS(4795), - [anon_sym_data] = ACTIONS(4795), - [anon_sym_inner] = ACTIONS(4795), - [anon_sym_value] = ACTIONS(4795), - [anon_sym_override] = ACTIONS(4795), - [anon_sym_lateinit] = ACTIONS(4795), - [anon_sym_public] = ACTIONS(4795), - [anon_sym_private] = ACTIONS(4795), - [anon_sym_internal] = ACTIONS(4795), - [anon_sym_protected] = ACTIONS(4795), - [anon_sym_tailrec] = ACTIONS(4795), - [anon_sym_operator] = ACTIONS(4795), - [anon_sym_infix] = ACTIONS(4795), - [anon_sym_inline] = ACTIONS(4795), - [anon_sym_external] = ACTIONS(4795), - [sym_property_modifier] = ACTIONS(4795), - [anon_sym_abstract] = ACTIONS(4795), - [anon_sym_final] = ACTIONS(4795), - [anon_sym_open] = ACTIONS(4795), - [anon_sym_vararg] = ACTIONS(4795), - [anon_sym_noinline] = ACTIONS(4795), - [anon_sym_crossinline] = ACTIONS(4795), - [anon_sym_expect] = ACTIONS(4795), - [anon_sym_actual] = ACTIONS(4795), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4797), - [sym__automatic_semicolon] = ACTIONS(4797), - [sym_safe_nav] = ACTIONS(4797), + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), [sym_multiline_comment] = ACTIONS(3), }, [3899] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [sym_label] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_suspend] = ACTIONS(4999), - [anon_sym_sealed] = ACTIONS(4999), - [anon_sym_annotation] = ACTIONS(4999), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_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__alpha_identifier] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_get] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [sym_label] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_QMARK_COLON] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1582), + [anon_sym_PIPE_PIPE] = ACTIONS(1582), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PERCENT_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_BANGin] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1584), + [anon_sym_BANGis] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_suspend] = ACTIONS(1584), + [anon_sym_sealed] = ACTIONS(1584), + [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_data] = ACTIONS(1584), + [anon_sym_inner] = ACTIONS(1584), + [anon_sym_value] = ACTIONS(1584), + [anon_sym_override] = ACTIONS(1584), + [anon_sym_lateinit] = ACTIONS(1584), + [anon_sym_public] = ACTIONS(1584), + [anon_sym_private] = ACTIONS(1584), + [anon_sym_internal] = ACTIONS(1584), + [anon_sym_protected] = ACTIONS(1584), + [anon_sym_tailrec] = ACTIONS(1584), + [anon_sym_operator] = ACTIONS(1584), + [anon_sym_infix] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_external] = ACTIONS(1584), + [sym_property_modifier] = ACTIONS(1584), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_final] = ACTIONS(1584), + [anon_sym_open] = ACTIONS(1584), + [anon_sym_vararg] = ACTIONS(1584), + [anon_sym_noinline] = ACTIONS(1584), + [anon_sym_crossinline] = ACTIONS(1584), + [anon_sym_expect] = ACTIONS(1584), + [anon_sym_actual] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1582), [sym_multiline_comment] = ACTIONS(3), }, [3900] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(1764), - [anon_sym_sealed] = ACTIONS(1764), - [anon_sym_annotation] = ACTIONS(1764), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_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__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [3901] = { - [sym__alpha_identifier] = ACTIONS(5070), - [anon_sym_AT] = ACTIONS(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5070), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_where] = ACTIONS(5070), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym_get] = ACTIONS(5070), - [anon_sym_set] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [sym_label] = ACTIONS(5072), - [anon_sym_in] = ACTIONS(5070), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_QMARK_COLON] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_else] = ACTIONS(5070), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5070), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5070), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_BANGin] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5070), - [anon_sym_BANGis] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_as_QMARK] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_BANG_BANG] = ACTIONS(5072), - [anon_sym_suspend] = ACTIONS(5070), - [anon_sym_sealed] = ACTIONS(5070), - [anon_sym_annotation] = ACTIONS(5070), - [anon_sym_data] = ACTIONS(5070), - [anon_sym_inner] = ACTIONS(5070), - [anon_sym_value] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_lateinit] = ACTIONS(5070), - [anon_sym_public] = ACTIONS(5070), - [anon_sym_private] = ACTIONS(5070), - [anon_sym_internal] = ACTIONS(5070), - [anon_sym_protected] = ACTIONS(5070), - [anon_sym_tailrec] = ACTIONS(5070), - [anon_sym_operator] = ACTIONS(5070), - [anon_sym_infix] = ACTIONS(5070), - [anon_sym_inline] = ACTIONS(5070), - [anon_sym_external] = ACTIONS(5070), - [sym_property_modifier] = ACTIONS(5070), - [anon_sym_abstract] = ACTIONS(5070), - [anon_sym_final] = ACTIONS(5070), - [anon_sym_open] = ACTIONS(5070), - [anon_sym_vararg] = ACTIONS(5070), - [anon_sym_noinline] = ACTIONS(5070), - [anon_sym_crossinline] = ACTIONS(5070), - [anon_sym_expect] = ACTIONS(5070), - [anon_sym_actual] = ACTIONS(5070), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5072), - [sym__automatic_semicolon] = ACTIONS(5072), - [sym_safe_nav] = ACTIONS(5072), + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5183), + [anon_sym_GT] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5183), + [sym_label] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5185), + [anon_sym_QMARK_COLON] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_else] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS_EQ] = ACTIONS(5185), + [anon_sym_DASH_EQ] = ACTIONS(5185), + [anon_sym_STAR_EQ] = ACTIONS(5185), + [anon_sym_SLASH_EQ] = ACTIONS(5185), + [anon_sym_PERCENT_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5185), + [anon_sym_LT_EQ] = ACTIONS(5185), + [anon_sym_GT_EQ] = ACTIONS(5185), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_BANGis] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_as_QMARK] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5185), + [sym__automatic_semicolon] = ACTIONS(5185), + [sym_safe_nav] = ACTIONS(5185), [sym_multiline_comment] = ACTIONS(3), }, [3902] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_constructor] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LT] = ACTIONS(3823), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3823), - [sym_label] = ACTIONS(3818), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(3823), - [anon_sym_is] = ACTIONS(3818), - [anon_sym_BANGis] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym__automatic_semicolon] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym__alpha_identifier] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1732), + [anon_sym_where] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_QMARK_COLON] = ACTIONS(1734), + [anon_sym_AMP_AMP] = ACTIONS(1734), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1734), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1732), + [anon_sym_BANGis] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_as_QMARK] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1734), + [anon_sym_suspend] = ACTIONS(1732), + [anon_sym_sealed] = ACTIONS(1732), + [anon_sym_annotation] = ACTIONS(1732), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_lateinit] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_internal] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_tailrec] = ACTIONS(1732), + [anon_sym_operator] = ACTIONS(1732), + [anon_sym_infix] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [anon_sym_external] = ACTIONS(1732), + [sym_property_modifier] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_final] = ACTIONS(1732), + [anon_sym_open] = ACTIONS(1732), + [anon_sym_vararg] = ACTIONS(1732), + [anon_sym_noinline] = ACTIONS(1732), + [anon_sym_crossinline] = ACTIONS(1732), + [anon_sym_expect] = ACTIONS(1732), + [anon_sym_actual] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1734), + [sym_safe_nav] = ACTIONS(1734), + [sym_multiline_comment] = ACTIONS(3), }, [3903] = { - [ts_builtin_sym_end] = ACTIONS(6985), - [sym__alpha_identifier] = ACTIONS(6987), - [anon_sym_AT] = ACTIONS(6985), - [anon_sym_LBRACK] = ACTIONS(6985), - [anon_sym_import] = ACTIONS(6987), - [anon_sym_typealias] = ACTIONS(6987), - [anon_sym_class] = ACTIONS(6987), - [anon_sym_interface] = ACTIONS(6987), - [anon_sym_enum] = ACTIONS(6987), - [anon_sym_LBRACE] = ACTIONS(6985), - [anon_sym_LPAREN] = ACTIONS(6985), - [anon_sym_val] = ACTIONS(6987), - [anon_sym_var] = ACTIONS(6987), - [anon_sym_object] = ACTIONS(6987), - [anon_sym_fun] = ACTIONS(6987), - [anon_sym_get] = ACTIONS(6987), - [anon_sym_set] = ACTIONS(6987), - [anon_sym_this] = ACTIONS(6987), - [anon_sym_super] = ACTIONS(6987), - [anon_sym_STAR] = ACTIONS(6985), - [sym_label] = ACTIONS(6987), - [anon_sym_for] = ACTIONS(6987), - [anon_sym_while] = ACTIONS(6987), - [anon_sym_do] = ACTIONS(6987), - [anon_sym_null] = ACTIONS(6987), - [anon_sym_if] = ACTIONS(6987), - [anon_sym_when] = ACTIONS(6987), - [anon_sym_try] = ACTIONS(6987), - [anon_sym_throw] = ACTIONS(6987), - [anon_sym_return] = ACTIONS(6987), - [anon_sym_continue] = ACTIONS(6987), - [anon_sym_break] = ACTIONS(6987), - [anon_sym_COLON_COLON] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6985), - [anon_sym_DASH_DASH] = ACTIONS(6985), - [anon_sym_BANG] = ACTIONS(6985), - [anon_sym_suspend] = ACTIONS(6987), - [anon_sym_sealed] = ACTIONS(6987), - [anon_sym_annotation] = ACTIONS(6987), - [anon_sym_data] = ACTIONS(6987), - [anon_sym_inner] = ACTIONS(6987), - [anon_sym_value] = ACTIONS(6987), - [anon_sym_override] = ACTIONS(6987), - [anon_sym_lateinit] = ACTIONS(6987), - [anon_sym_public] = ACTIONS(6987), - [anon_sym_private] = ACTIONS(6987), - [anon_sym_internal] = ACTIONS(6987), - [anon_sym_protected] = ACTIONS(6987), - [anon_sym_tailrec] = ACTIONS(6987), - [anon_sym_operator] = ACTIONS(6987), - [anon_sym_infix] = ACTIONS(6987), - [anon_sym_inline] = ACTIONS(6987), - [anon_sym_external] = ACTIONS(6987), - [sym_property_modifier] = ACTIONS(6987), - [anon_sym_abstract] = ACTIONS(6987), - [anon_sym_final] = ACTIONS(6987), - [anon_sym_open] = ACTIONS(6987), - [anon_sym_vararg] = ACTIONS(6987), - [anon_sym_noinline] = ACTIONS(6987), - [anon_sym_crossinline] = ACTIONS(6987), - [anon_sym_expect] = ACTIONS(6987), - [anon_sym_actual] = ACTIONS(6987), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6985), - [anon_sym_continue_AT] = ACTIONS(6985), - [anon_sym_break_AT] = ACTIONS(6985), - [sym_real_literal] = ACTIONS(6985), - [sym_integer_literal] = ACTIONS(6987), - [sym_hex_literal] = ACTIONS(6985), - [sym_bin_literal] = ACTIONS(6985), - [anon_sym_true] = ACTIONS(6987), - [anon_sym_false] = ACTIONS(6987), - [anon_sym_SQUOTE] = ACTIONS(6985), - [sym__backtick_identifier] = ACTIONS(6985), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6985), + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5067), + [anon_sym_set] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [sym_label] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5069), + [anon_sym_QMARK_COLON] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_PIPE_PIPE] = ACTIONS(5069), + [anon_sym_else] = ACTIONS(5067), + [anon_sym_COLON_COLON] = ACTIONS(5069), + [anon_sym_PLUS_EQ] = ACTIONS(5069), + [anon_sym_DASH_EQ] = ACTIONS(5069), + [anon_sym_STAR_EQ] = ACTIONS(5069), + [anon_sym_SLASH_EQ] = ACTIONS(5069), + [anon_sym_PERCENT_EQ] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), + [anon_sym_LT_EQ] = ACTIONS(5069), + [anon_sym_GT_EQ] = ACTIONS(5069), + [anon_sym_BANGin] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_BANGis] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_as_QMARK] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5069), + [anon_sym_DASH_DASH] = ACTIONS(5069), + [anon_sym_BANG_BANG] = ACTIONS(5069), + [anon_sym_suspend] = ACTIONS(5067), + [anon_sym_sealed] = ACTIONS(5067), + [anon_sym_annotation] = ACTIONS(5067), + [anon_sym_data] = ACTIONS(5067), + [anon_sym_inner] = ACTIONS(5067), + [anon_sym_value] = ACTIONS(5067), + [anon_sym_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), + [sym_multiline_comment] = ACTIONS(3), }, [3904] = { - [sym__alpha_identifier] = ACTIONS(4410), - [anon_sym_AT] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_EQ] = ACTIONS(4412), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_COMMA] = ACTIONS(4412), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_object] = ACTIONS(4410), - [anon_sym_fun] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4412), - [anon_sym_get] = ACTIONS(4410), - [anon_sym_set] = ACTIONS(4410), - [anon_sym_this] = ACTIONS(4410), - [anon_sym_super] = ACTIONS(4410), - [anon_sym_STAR] = ACTIONS(4412), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_throw] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_COLON_COLON] = ACTIONS(4412), - [anon_sym_BANGin] = ACTIONS(4412), - [anon_sym_is] = ACTIONS(4410), - [anon_sym_BANGis] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4412), - [anon_sym_DASH_DASH] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_annotation] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4410), - [anon_sym_inner] = ACTIONS(4410), - [anon_sym_value] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_lateinit] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_tailrec] = ACTIONS(4410), - [anon_sym_operator] = ACTIONS(4410), - [anon_sym_infix] = ACTIONS(4410), - [anon_sym_inline] = ACTIONS(4410), - [anon_sym_external] = ACTIONS(4410), - [sym_property_modifier] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_final] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4410), - [anon_sym_vararg] = ACTIONS(4410), - [anon_sym_noinline] = ACTIONS(4410), - [anon_sym_crossinline] = ACTIONS(4410), - [anon_sym_expect] = ACTIONS(4410), - [anon_sym_actual] = ACTIONS(4410), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4412), - [anon_sym_continue_AT] = ACTIONS(4412), - [anon_sym_break_AT] = ACTIONS(4412), - [sym_real_literal] = ACTIONS(4412), - [sym_integer_literal] = ACTIONS(4410), - [sym_hex_literal] = ACTIONS(4412), - [sym_bin_literal] = ACTIONS(4412), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [anon_sym_SQUOTE] = ACTIONS(4412), - [sym__backtick_identifier] = ACTIONS(4412), - [sym__automatic_semicolon] = ACTIONS(4412), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4412), + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_suspend] = ACTIONS(5125), + [anon_sym_sealed] = ACTIONS(5125), + [anon_sym_annotation] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_override] = ACTIONS(5125), + [anon_sym_lateinit] = ACTIONS(5125), + [anon_sym_public] = ACTIONS(5125), + [anon_sym_private] = ACTIONS(5125), + [anon_sym_internal] = ACTIONS(5125), + [anon_sym_protected] = ACTIONS(5125), + [anon_sym_tailrec] = ACTIONS(5125), + [anon_sym_operator] = ACTIONS(5125), + [anon_sym_infix] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym_external] = ACTIONS(5125), + [sym_property_modifier] = ACTIONS(5125), + [anon_sym_abstract] = ACTIONS(5125), + [anon_sym_final] = ACTIONS(5125), + [anon_sym_open] = ACTIONS(5125), + [anon_sym_vararg] = ACTIONS(5125), + [anon_sym_noinline] = ACTIONS(5125), + [anon_sym_crossinline] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), + [sym_multiline_comment] = ACTIONS(3), }, [3905] = { - [sym__alpha_identifier] = ACTIONS(5053), - [anon_sym_AT] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [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_DOT] = 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_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_PLUS_EQ] = ACTIONS(4162), + [anon_sym_DASH_EQ] = ACTIONS(4162), + [anon_sym_STAR_EQ] = ACTIONS(4162), + [anon_sym_SLASH_EQ] = ACTIONS(4162), + [anon_sym_PERCENT_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4160), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [3906] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [sym_label] = ACTIONS(5027), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_suspend] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_annotation] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_value] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_lateinit] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_tailrec] = ACTIONS(5025), - [anon_sym_operator] = ACTIONS(5025), - [anon_sym_infix] = ACTIONS(5025), - [anon_sym_inline] = ACTIONS(5025), - [anon_sym_external] = ACTIONS(5025), - [sym_property_modifier] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_final] = ACTIONS(5025), - [anon_sym_open] = ACTIONS(5025), - [anon_sym_vararg] = ACTIONS(5025), - [anon_sym_noinline] = ACTIONS(5025), - [anon_sym_crossinline] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5027), - [sym__automatic_semicolon] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), [sym_multiline_comment] = ACTIONS(3), }, [3907] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_where] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_QMARK_COLON] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_as_QMARK] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3346), + [anon_sym_suspend] = ACTIONS(3344), + [anon_sym_sealed] = ACTIONS(3344), + [anon_sym_annotation] = ACTIONS(3344), + [anon_sym_data] = ACTIONS(3344), + [anon_sym_inner] = ACTIONS(3344), + [anon_sym_value] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_lateinit] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_internal] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_tailrec] = ACTIONS(3344), + [anon_sym_operator] = ACTIONS(3344), + [anon_sym_infix] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_external] = ACTIONS(3344), + [sym_property_modifier] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_vararg] = ACTIONS(3344), + [anon_sym_noinline] = ACTIONS(3344), + [anon_sym_crossinline] = ACTIONS(3344), + [anon_sym_expect] = ACTIONS(3344), + [anon_sym_actual] = ACTIONS(3344), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3346), + [sym__automatic_semicolon] = ACTIONS(3346), + [sym_safe_nav] = ACTIONS(3346), [sym_multiline_comment] = ACTIONS(3), }, [3908] = { - [sym__alpha_identifier] = ACTIONS(4508), - [anon_sym_AT] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_as] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_COMMA] = ACTIONS(4510), - [anon_sym_LT] = ACTIONS(4508), - [anon_sym_GT] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_get] = ACTIONS(4508), - [anon_sym_set] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(4508), - [sym_label] = ACTIONS(4510), - [anon_sym_in] = ACTIONS(4508), - [anon_sym_DOT_DOT] = ACTIONS(4510), - [anon_sym_QMARK_COLON] = ACTIONS(4510), - [anon_sym_AMP_AMP] = ACTIONS(4510), - [anon_sym_PIPE_PIPE] = ACTIONS(4510), - [anon_sym_else] = ACTIONS(4508), - [anon_sym_COLON_COLON] = ACTIONS(4510), - [anon_sym_PLUS_EQ] = ACTIONS(4510), - [anon_sym_DASH_EQ] = ACTIONS(4510), - [anon_sym_STAR_EQ] = ACTIONS(4510), - [anon_sym_SLASH_EQ] = ACTIONS(4510), - [anon_sym_PERCENT_EQ] = ACTIONS(4510), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ] = ACTIONS(4508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4510), - [anon_sym_GT_EQ] = ACTIONS(4510), - [anon_sym_BANGin] = ACTIONS(4510), - [anon_sym_is] = ACTIONS(4508), - [anon_sym_BANGis] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4508), - [anon_sym_DASH] = ACTIONS(4508), - [anon_sym_SLASH] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_as_QMARK] = ACTIONS(4510), - [anon_sym_PLUS_PLUS] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4510), - [anon_sym_BANG_BANG] = ACTIONS(4510), - [anon_sym_suspend] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_annotation] = ACTIONS(4508), - [anon_sym_data] = ACTIONS(4508), - [anon_sym_inner] = ACTIONS(4508), - [anon_sym_value] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_lateinit] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_tailrec] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4508), - [anon_sym_infix] = ACTIONS(4508), - [anon_sym_inline] = ACTIONS(4508), - [anon_sym_external] = ACTIONS(4508), - [sym_property_modifier] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_final] = ACTIONS(4508), - [anon_sym_open] = ACTIONS(4508), - [anon_sym_vararg] = ACTIONS(4508), - [anon_sym_noinline] = ACTIONS(4508), - [anon_sym_crossinline] = ACTIONS(4508), - [anon_sym_expect] = ACTIONS(4508), - [anon_sym_actual] = ACTIONS(4508), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4510), - [sym__automatic_semicolon] = ACTIONS(4510), - [sym_safe_nav] = ACTIONS(4510), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3121), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), }, [3909] = { - [sym_function_body] = STATE(3334), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym__alpha_identifier] = ACTIONS(4493), + [anon_sym_AT] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_GT] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_get] = ACTIONS(4493), + [anon_sym_set] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4493), + [anon_sym_DOT_DOT] = ACTIONS(4495), + [anon_sym_QMARK_COLON] = ACTIONS(4495), + [anon_sym_AMP_AMP] = ACTIONS(4495), + [anon_sym_PIPE_PIPE] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4493), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_PLUS_EQ] = ACTIONS(4495), + [anon_sym_DASH_EQ] = ACTIONS(4495), + [anon_sym_STAR_EQ] = ACTIONS(4495), + [anon_sym_SLASH_EQ] = ACTIONS(4495), + [anon_sym_PERCENT_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_BANGin] = ACTIONS(4495), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_SLASH] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_as_QMARK] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4495), + [anon_sym_suspend] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_annotation] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4493), + [anon_sym_inner] = ACTIONS(4493), + [anon_sym_value] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_lateinit] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_tailrec] = ACTIONS(4493), + [anon_sym_operator] = ACTIONS(4493), + [anon_sym_infix] = ACTIONS(4493), + [anon_sym_inline] = ACTIONS(4493), + [anon_sym_external] = ACTIONS(4493), + [sym_property_modifier] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_final] = ACTIONS(4493), + [anon_sym_open] = ACTIONS(4493), + [anon_sym_vararg] = ACTIONS(4493), + [anon_sym_noinline] = ACTIONS(4493), + [anon_sym_crossinline] = ACTIONS(4493), + [anon_sym_expect] = ACTIONS(4493), + [anon_sym_actual] = ACTIONS(4493), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4495), + [sym__automatic_semicolon] = ACTIONS(4495), + [sym_safe_nav] = ACTIONS(4495), + [sym_multiline_comment] = ACTIONS(3), }, [3910] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(6989), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(6991), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(5191), + [anon_sym_AT] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5191), + [anon_sym_GT] = ACTIONS(5191), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_SEMI] = ACTIONS(5193), + [anon_sym_get] = ACTIONS(5191), + [anon_sym_set] = ACTIONS(5191), + [anon_sym_STAR] = ACTIONS(5191), + [sym_label] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5193), + [anon_sym_QMARK_COLON] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5193), + [anon_sym_PIPE_PIPE] = ACTIONS(5193), + [anon_sym_else] = ACTIONS(5191), + [anon_sym_COLON_COLON] = ACTIONS(5193), + [anon_sym_PLUS_EQ] = ACTIONS(5193), + [anon_sym_DASH_EQ] = ACTIONS(5193), + [anon_sym_STAR_EQ] = ACTIONS(5193), + [anon_sym_SLASH_EQ] = ACTIONS(5193), + [anon_sym_PERCENT_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5193), + [anon_sym_LT_EQ] = ACTIONS(5193), + [anon_sym_GT_EQ] = ACTIONS(5193), + [anon_sym_BANGin] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_BANGis] = ACTIONS(5193), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_as_QMARK] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5193), + [anon_sym_DASH_DASH] = ACTIONS(5193), + [anon_sym_BANG_BANG] = ACTIONS(5193), + [anon_sym_suspend] = ACTIONS(5191), + [anon_sym_sealed] = ACTIONS(5191), + [anon_sym_annotation] = ACTIONS(5191), + [anon_sym_data] = ACTIONS(5191), + [anon_sym_inner] = ACTIONS(5191), + [anon_sym_value] = ACTIONS(5191), + [anon_sym_override] = ACTIONS(5191), + [anon_sym_lateinit] = ACTIONS(5191), + [anon_sym_public] = ACTIONS(5191), + [anon_sym_private] = ACTIONS(5191), + [anon_sym_internal] = ACTIONS(5191), + [anon_sym_protected] = ACTIONS(5191), + [anon_sym_tailrec] = ACTIONS(5191), + [anon_sym_operator] = ACTIONS(5191), + [anon_sym_infix] = ACTIONS(5191), + [anon_sym_inline] = ACTIONS(5191), + [anon_sym_external] = ACTIONS(5191), + [sym_property_modifier] = ACTIONS(5191), + [anon_sym_abstract] = ACTIONS(5191), + [anon_sym_final] = ACTIONS(5191), + [anon_sym_open] = ACTIONS(5191), + [anon_sym_vararg] = ACTIONS(5191), + [anon_sym_noinline] = ACTIONS(5191), + [anon_sym_crossinline] = ACTIONS(5191), + [anon_sym_expect] = ACTIONS(5191), + [anon_sym_actual] = ACTIONS(5191), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5193), + [sym__automatic_semicolon] = ACTIONS(5193), + [sym_safe_nav] = ACTIONS(5193), [sym_multiline_comment] = ACTIONS(3), }, [3911] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [sym_label] = ACTIONS(5039), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_suspend] = ACTIONS(5037), - [anon_sym_sealed] = ACTIONS(5037), - [anon_sym_annotation] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_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_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3912] = { - [aux_sym_user_type_repeat1] = STATE(3862), - [sym__alpha_identifier] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(4077), - [anon_sym_typealias] = ACTIONS(4075), - [anon_sym_class] = ACTIONS(4075), - [anon_sym_interface] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_val] = ACTIONS(4075), - [anon_sym_var] = ACTIONS(4075), - [anon_sym_object] = ACTIONS(4075), - [anon_sym_fun] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(6928), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_this] = ACTIONS(4075), - [anon_sym_super] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4077), - [sym_label] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [anon_sym_while] = ACTIONS(4075), - [anon_sym_do] = ACTIONS(4075), - [anon_sym_null] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_when] = ACTIONS(4075), - [anon_sym_try] = ACTIONS(4075), - [anon_sym_throw] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_COLON_COLON] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_PLUS_PLUS] = ACTIONS(4077), - [anon_sym_DASH_DASH] = ACTIONS(4077), - [anon_sym_BANG] = ACTIONS(4077), - [anon_sym_suspend] = ACTIONS(4075), - [anon_sym_sealed] = ACTIONS(4075), - [anon_sym_annotation] = ACTIONS(4075), - [anon_sym_data] = ACTIONS(4075), - [anon_sym_inner] = ACTIONS(4075), - [anon_sym_value] = ACTIONS(4075), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_lateinit] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4075), - [anon_sym_private] = ACTIONS(4075), - [anon_sym_internal] = ACTIONS(4075), - [anon_sym_protected] = ACTIONS(4075), - [anon_sym_tailrec] = ACTIONS(4075), - [anon_sym_operator] = ACTIONS(4075), - [anon_sym_infix] = ACTIONS(4075), - [anon_sym_inline] = ACTIONS(4075), - [anon_sym_external] = ACTIONS(4075), - [sym_property_modifier] = ACTIONS(4075), - [anon_sym_abstract] = ACTIONS(4075), - [anon_sym_final] = ACTIONS(4075), - [anon_sym_open] = ACTIONS(4075), - [anon_sym_vararg] = ACTIONS(4075), - [anon_sym_noinline] = ACTIONS(4075), - [anon_sym_crossinline] = ACTIONS(4075), - [anon_sym_expect] = ACTIONS(4075), - [anon_sym_actual] = ACTIONS(4075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4077), - [anon_sym_continue_AT] = ACTIONS(4077), - [anon_sym_break_AT] = ACTIONS(4077), - [sym_real_literal] = ACTIONS(4077), - [sym_integer_literal] = ACTIONS(4075), - [sym_hex_literal] = ACTIONS(4077), - [sym_bin_literal] = ACTIONS(4077), - [anon_sym_true] = ACTIONS(4075), - [anon_sym_false] = ACTIONS(4075), - [anon_sym_SQUOTE] = ACTIONS(4077), - [sym__backtick_identifier] = ACTIONS(4077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4077), + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), }, [3913] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(6991), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3914] = { - [sym__alpha_identifier] = ACTIONS(4865), - [anon_sym_AT] = ACTIONS(4867), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_as] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(4865), - [anon_sym_LBRACE] = ACTIONS(4867), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [anon_sym_COMMA] = ACTIONS(4867), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_where] = ACTIONS(4865), - [anon_sym_DOT] = ACTIONS(4865), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_get] = ACTIONS(4865), - [anon_sym_set] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [sym_label] = ACTIONS(4867), - [anon_sym_in] = ACTIONS(4865), - [anon_sym_DOT_DOT] = ACTIONS(4867), - [anon_sym_QMARK_COLON] = ACTIONS(4867), - [anon_sym_AMP_AMP] = ACTIONS(4867), - [anon_sym_PIPE_PIPE] = ACTIONS(4867), - [anon_sym_else] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4867), - [anon_sym_PLUS_EQ] = ACTIONS(4867), - [anon_sym_DASH_EQ] = ACTIONS(4867), - [anon_sym_STAR_EQ] = ACTIONS(4867), - [anon_sym_SLASH_EQ] = ACTIONS(4867), - [anon_sym_PERCENT_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), - [anon_sym_LT_EQ] = ACTIONS(4867), - [anon_sym_GT_EQ] = ACTIONS(4867), - [anon_sym_BANGin] = ACTIONS(4867), - [anon_sym_is] = ACTIONS(4865), - [anon_sym_BANGis] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_as_QMARK] = ACTIONS(4867), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_BANG_BANG] = ACTIONS(4867), - [anon_sym_suspend] = ACTIONS(4865), - [anon_sym_sealed] = ACTIONS(4865), - [anon_sym_annotation] = ACTIONS(4865), - [anon_sym_data] = ACTIONS(4865), - [anon_sym_inner] = ACTIONS(4865), - [anon_sym_value] = ACTIONS(4865), - [anon_sym_override] = ACTIONS(4865), - [anon_sym_lateinit] = ACTIONS(4865), - [anon_sym_public] = ACTIONS(4865), - [anon_sym_private] = ACTIONS(4865), - [anon_sym_internal] = ACTIONS(4865), - [anon_sym_protected] = ACTIONS(4865), - [anon_sym_tailrec] = ACTIONS(4865), - [anon_sym_operator] = ACTIONS(4865), - [anon_sym_infix] = ACTIONS(4865), - [anon_sym_inline] = ACTIONS(4865), - [anon_sym_external] = ACTIONS(4865), - [sym_property_modifier] = ACTIONS(4865), - [anon_sym_abstract] = ACTIONS(4865), - [anon_sym_final] = ACTIONS(4865), - [anon_sym_open] = ACTIONS(4865), - [anon_sym_vararg] = ACTIONS(4865), - [anon_sym_noinline] = ACTIONS(4865), - [anon_sym_crossinline] = ACTIONS(4865), - [anon_sym_expect] = ACTIONS(4865), - [anon_sym_actual] = ACTIONS(4865), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4867), - [sym__automatic_semicolon] = ACTIONS(4867), - [sym_safe_nav] = ACTIONS(4867), + [sym__alpha_identifier] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(5181), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5181), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(5179), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(5179), + [sym_label] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5181), + [anon_sym_QMARK_COLON] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_else] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_PLUS_EQ] = ACTIONS(5181), + [anon_sym_DASH_EQ] = ACTIONS(5181), + [anon_sym_STAR_EQ] = ACTIONS(5181), + [anon_sym_SLASH_EQ] = ACTIONS(5181), + [anon_sym_PERCENT_EQ] = ACTIONS(5181), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5181), + [anon_sym_GT_EQ] = ACTIONS(5181), + [anon_sym_BANGin] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_BANGis] = ACTIONS(5181), + [anon_sym_PLUS] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_as_QMARK] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5181), + [anon_sym_DASH_DASH] = ACTIONS(5181), + [anon_sym_BANG_BANG] = ACTIONS(5181), + [anon_sym_suspend] = ACTIONS(5179), + [anon_sym_sealed] = ACTIONS(5179), + [anon_sym_annotation] = ACTIONS(5179), + [anon_sym_data] = ACTIONS(5179), + [anon_sym_inner] = ACTIONS(5179), + [anon_sym_value] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_lateinit] = ACTIONS(5179), + [anon_sym_public] = ACTIONS(5179), + [anon_sym_private] = ACTIONS(5179), + [anon_sym_internal] = ACTIONS(5179), + [anon_sym_protected] = ACTIONS(5179), + [anon_sym_tailrec] = ACTIONS(5179), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_infix] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym_external] = ACTIONS(5179), + [sym_property_modifier] = ACTIONS(5179), + [anon_sym_abstract] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_open] = ACTIONS(5179), + [anon_sym_vararg] = ACTIONS(5179), + [anon_sym_noinline] = ACTIONS(5179), + [anon_sym_crossinline] = ACTIONS(5179), + [anon_sym_expect] = ACTIONS(5179), + [anon_sym_actual] = ACTIONS(5179), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5181), + [sym__automatic_semicolon] = ACTIONS(5181), + [sym_safe_nav] = ACTIONS(5181), [sym_multiline_comment] = ACTIONS(3), }, [3915] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_as] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_where] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_get] = ACTIONS(5029), - [anon_sym_set] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [sym_label] = ACTIONS(5031), - [anon_sym_in] = ACTIONS(5029), - [anon_sym_DOT_DOT] = ACTIONS(5031), - [anon_sym_QMARK_COLON] = ACTIONS(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_else] = ACTIONS(5029), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ] = ACTIONS(5029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), - [anon_sym_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_EQ] = ACTIONS(5031), - [anon_sym_BANGin] = ACTIONS(5031), - [anon_sym_is] = ACTIONS(5029), - [anon_sym_BANGis] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_PERCENT] = ACTIONS(5029), - [anon_sym_as_QMARK] = ACTIONS(5031), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5031), - [anon_sym_BANG_BANG] = ACTIONS(5031), - [anon_sym_suspend] = ACTIONS(5029), - [anon_sym_sealed] = ACTIONS(5029), - [anon_sym_annotation] = ACTIONS(5029), - [anon_sym_data] = ACTIONS(5029), - [anon_sym_inner] = ACTIONS(5029), - [anon_sym_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__alpha_identifier] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [sym_label] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_QMARK_COLON] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5065), + [anon_sym_PIPE_PIPE] = ACTIONS(5065), + [anon_sym_else] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5065), + [anon_sym_PLUS_EQ] = ACTIONS(5065), + [anon_sym_DASH_EQ] = ACTIONS(5065), + [anon_sym_STAR_EQ] = ACTIONS(5065), + [anon_sym_SLASH_EQ] = ACTIONS(5065), + [anon_sym_PERCENT_EQ] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), + [anon_sym_LT_EQ] = ACTIONS(5065), + [anon_sym_GT_EQ] = ACTIONS(5065), + [anon_sym_BANGin] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_BANGis] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_as_QMARK] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5065), + [anon_sym_BANG_BANG] = ACTIONS(5065), + [anon_sym_suspend] = ACTIONS(5063), + [anon_sym_sealed] = ACTIONS(5063), + [anon_sym_annotation] = ACTIONS(5063), + [anon_sym_data] = ACTIONS(5063), + [anon_sym_inner] = ACTIONS(5063), + [anon_sym_value] = ACTIONS(5063), + [anon_sym_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), [sym_multiline_comment] = ACTIONS(3), }, [3916] = { - [sym_function_body] = STATE(3443), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_RBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_RPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [anon_sym_DASH_GT] = ACTIONS(4472), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_while] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [3917] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [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_DOT] = 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), + [sym_function_body] = STATE(3115), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), }, [3918] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [3919] = { - [sym_function_body] = STATE(3438), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_RBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_RPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3920] = { - [sym__alpha_identifier] = ACTIONS(1582), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [sym_label] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_QMARK_COLON] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1580), - [anon_sym_PIPE_PIPE] = ACTIONS(1580), - [anon_sym_else] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PERCENT_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_BANGin] = ACTIONS(1580), - [anon_sym_is] = ACTIONS(1582), - [anon_sym_BANGis] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_BANG_BANG] = ACTIONS(1580), - [anon_sym_suspend] = ACTIONS(1582), - [anon_sym_sealed] = ACTIONS(1582), - [anon_sym_annotation] = ACTIONS(1582), - [anon_sym_data] = ACTIONS(1582), - [anon_sym_inner] = ACTIONS(1582), - [anon_sym_value] = ACTIONS(1582), - [anon_sym_override] = ACTIONS(1582), - [anon_sym_lateinit] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_internal] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_tailrec] = ACTIONS(1582), - [anon_sym_operator] = ACTIONS(1582), - [anon_sym_infix] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_external] = ACTIONS(1582), - [sym_property_modifier] = ACTIONS(1582), - [anon_sym_abstract] = ACTIONS(1582), - [anon_sym_final] = ACTIONS(1582), - [anon_sym_open] = ACTIONS(1582), - [anon_sym_vararg] = ACTIONS(1582), - [anon_sym_noinline] = ACTIONS(1582), - [anon_sym_crossinline] = ACTIONS(1582), - [anon_sym_expect] = ACTIONS(1582), - [anon_sym_actual] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1580), - [sym__automatic_semicolon] = ACTIONS(1580), - [sym_safe_nav] = ACTIONS(1580), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3921] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4506), - [anon_sym_DASH_EQ] = ACTIONS(4506), - [anon_sym_STAR_EQ] = ACTIONS(4506), - [anon_sym_SLASH_EQ] = ACTIONS(4506), - [anon_sym_PERCENT_EQ] = ACTIONS(4506), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3922] = { - [sym__alpha_identifier] = ACTIONS(5108), - [anon_sym_AT] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5108), - [anon_sym_EQ] = ACTIONS(5108), - [anon_sym_LBRACE] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_SEMI] = ACTIONS(5110), - [anon_sym_get] = ACTIONS(5108), - [anon_sym_set] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5108), - [sym_label] = ACTIONS(5110), - [anon_sym_in] = ACTIONS(5108), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_QMARK_COLON] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_else] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(5110), - [anon_sym_PLUS_EQ] = ACTIONS(5110), - [anon_sym_DASH_EQ] = ACTIONS(5110), - [anon_sym_STAR_EQ] = ACTIONS(5110), - [anon_sym_SLASH_EQ] = ACTIONS(5110), - [anon_sym_PERCENT_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_BANGin] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5108), - [anon_sym_BANGis] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5108), - [anon_sym_as_QMARK] = ACTIONS(5110), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_BANG_BANG] = ACTIONS(5110), - [anon_sym_suspend] = ACTIONS(5108), - [anon_sym_sealed] = ACTIONS(5108), - [anon_sym_annotation] = ACTIONS(5108), - [anon_sym_data] = ACTIONS(5108), - [anon_sym_inner] = ACTIONS(5108), - [anon_sym_value] = ACTIONS(5108), - [anon_sym_override] = ACTIONS(5108), - [anon_sym_lateinit] = ACTIONS(5108), - [anon_sym_public] = ACTIONS(5108), - [anon_sym_private] = ACTIONS(5108), - [anon_sym_internal] = ACTIONS(5108), - [anon_sym_protected] = ACTIONS(5108), - [anon_sym_tailrec] = ACTIONS(5108), - [anon_sym_operator] = ACTIONS(5108), - [anon_sym_infix] = ACTIONS(5108), - [anon_sym_inline] = ACTIONS(5108), - [anon_sym_external] = ACTIONS(5108), - [sym_property_modifier] = ACTIONS(5108), - [anon_sym_abstract] = ACTIONS(5108), - [anon_sym_final] = ACTIONS(5108), - [anon_sym_open] = ACTIONS(5108), - [anon_sym_vararg] = ACTIONS(5108), - [anon_sym_noinline] = ACTIONS(5108), - [anon_sym_crossinline] = ACTIONS(5108), - [anon_sym_expect] = ACTIONS(5108), - [anon_sym_actual] = ACTIONS(5108), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5110), - [sym__automatic_semicolon] = ACTIONS(5110), - [sym_safe_nav] = ACTIONS(5110), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3923] = { - [ts_builtin_sym_end] = ACTIONS(6993), - [sym__alpha_identifier] = ACTIONS(6995), - [anon_sym_AT] = ACTIONS(6993), - [anon_sym_LBRACK] = ACTIONS(6993), - [anon_sym_import] = ACTIONS(6995), - [anon_sym_typealias] = ACTIONS(6995), - [anon_sym_class] = ACTIONS(6995), - [anon_sym_interface] = ACTIONS(6995), - [anon_sym_enum] = ACTIONS(6995), - [anon_sym_LBRACE] = ACTIONS(6993), - [anon_sym_LPAREN] = ACTIONS(6993), - [anon_sym_val] = ACTIONS(6995), - [anon_sym_var] = ACTIONS(6995), - [anon_sym_object] = ACTIONS(6995), - [anon_sym_fun] = ACTIONS(6995), - [anon_sym_get] = ACTIONS(6995), - [anon_sym_set] = ACTIONS(6995), - [anon_sym_this] = ACTIONS(6995), - [anon_sym_super] = ACTIONS(6995), - [anon_sym_STAR] = ACTIONS(6993), - [sym_label] = ACTIONS(6995), - [anon_sym_for] = ACTIONS(6995), - [anon_sym_while] = ACTIONS(6995), - [anon_sym_do] = ACTIONS(6995), - [anon_sym_null] = ACTIONS(6995), - [anon_sym_if] = ACTIONS(6995), - [anon_sym_when] = ACTIONS(6995), - [anon_sym_try] = ACTIONS(6995), - [anon_sym_throw] = ACTIONS(6995), - [anon_sym_return] = ACTIONS(6995), - [anon_sym_continue] = ACTIONS(6995), - [anon_sym_break] = ACTIONS(6995), - [anon_sym_COLON_COLON] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6995), - [anon_sym_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6993), - [anon_sym_DASH_DASH] = ACTIONS(6993), - [anon_sym_BANG] = ACTIONS(6993), - [anon_sym_suspend] = ACTIONS(6995), - [anon_sym_sealed] = ACTIONS(6995), - [anon_sym_annotation] = ACTIONS(6995), - [anon_sym_data] = ACTIONS(6995), - [anon_sym_inner] = ACTIONS(6995), - [anon_sym_value] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_lateinit] = ACTIONS(6995), - [anon_sym_public] = ACTIONS(6995), - [anon_sym_private] = ACTIONS(6995), - [anon_sym_internal] = ACTIONS(6995), - [anon_sym_protected] = ACTIONS(6995), - [anon_sym_tailrec] = ACTIONS(6995), - [anon_sym_operator] = ACTIONS(6995), - [anon_sym_infix] = ACTIONS(6995), - [anon_sym_inline] = ACTIONS(6995), - [anon_sym_external] = ACTIONS(6995), - [sym_property_modifier] = ACTIONS(6995), - [anon_sym_abstract] = ACTIONS(6995), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_open] = ACTIONS(6995), - [anon_sym_vararg] = ACTIONS(6995), - [anon_sym_noinline] = ACTIONS(6995), - [anon_sym_crossinline] = ACTIONS(6995), - [anon_sym_expect] = ACTIONS(6995), - [anon_sym_actual] = ACTIONS(6995), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6993), - [anon_sym_continue_AT] = ACTIONS(6993), - [anon_sym_break_AT] = ACTIONS(6993), - [sym_real_literal] = ACTIONS(6993), - [sym_integer_literal] = ACTIONS(6995), - [sym_hex_literal] = ACTIONS(6993), - [sym_bin_literal] = ACTIONS(6993), - [anon_sym_true] = ACTIONS(6995), - [anon_sym_false] = ACTIONS(6995), - [anon_sym_SQUOTE] = ACTIONS(6993), - [sym__backtick_identifier] = ACTIONS(6993), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6993), + [sym__alpha_identifier] = ACTIONS(4946), + [anon_sym_AT] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_where] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_get] = ACTIONS(4946), + [anon_sym_set] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4946), + [anon_sym_DOT_DOT] = ACTIONS(4948), + [anon_sym_QMARK_COLON] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_BANGin] = ACTIONS(4948), + [anon_sym_is] = ACTIONS(4946), + [anon_sym_BANGis] = ACTIONS(4948), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_as_QMARK] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4948), + [anon_sym_suspend] = ACTIONS(4946), + [anon_sym_sealed] = ACTIONS(4946), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4946), + [anon_sym_inner] = ACTIONS(4946), + [anon_sym_value] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_lateinit] = ACTIONS(4946), + [anon_sym_public] = ACTIONS(4946), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_internal] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_tailrec] = ACTIONS(4946), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_infix] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym_external] = ACTIONS(4946), + [sym_property_modifier] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_open] = ACTIONS(4946), + [anon_sym_vararg] = ACTIONS(4946), + [anon_sym_noinline] = ACTIONS(4946), + [anon_sym_crossinline] = ACTIONS(4946), + [anon_sym_expect] = ACTIONS(4946), + [anon_sym_actual] = ACTIONS(4946), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4948), + [sym__automatic_semicolon] = ACTIONS(4948), + [sym_safe_nav] = ACTIONS(4948), + [sym_multiline_comment] = ACTIONS(3), }, [3924] = { - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4065), - [anon_sym_LBRACE] = ACTIONS(4067), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4065), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4067), - [anon_sym_STAR_EQ] = ACTIONS(4067), - [anon_sym_SLASH_EQ] = ACTIONS(4067), - [anon_sym_PERCENT_EQ] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4065), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3110), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, [3925] = { - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_PLUS_EQ] = ACTIONS(3208), - [anon_sym_DASH_EQ] = ACTIONS(3208), - [anon_sym_STAR_EQ] = ACTIONS(3208), - [anon_sym_SLASH_EQ] = ACTIONS(3208), - [anon_sym_PERCENT_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7159), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3926] = { - [sym__alpha_identifier] = ACTIONS(5112), - [anon_sym_AT] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5112), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_LBRACE] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5112), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_get] = ACTIONS(5112), - [anon_sym_set] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5112), - [sym_label] = ACTIONS(5114), - [anon_sym_in] = ACTIONS(5112), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_QMARK_COLON] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_else] = ACTIONS(5112), - [anon_sym_COLON_COLON] = ACTIONS(5114), - [anon_sym_PLUS_EQ] = ACTIONS(5114), - [anon_sym_DASH_EQ] = ACTIONS(5114), - [anon_sym_STAR_EQ] = ACTIONS(5114), - [anon_sym_SLASH_EQ] = ACTIONS(5114), - [anon_sym_PERCENT_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5112), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_BANGin] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5112), - [anon_sym_BANGis] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5112), - [anon_sym_as_QMARK] = ACTIONS(5114), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_BANG_BANG] = ACTIONS(5114), - [anon_sym_suspend] = ACTIONS(5112), - [anon_sym_sealed] = ACTIONS(5112), - [anon_sym_annotation] = ACTIONS(5112), - [anon_sym_data] = ACTIONS(5112), - [anon_sym_inner] = ACTIONS(5112), - [anon_sym_value] = ACTIONS(5112), - [anon_sym_override] = ACTIONS(5112), - [anon_sym_lateinit] = ACTIONS(5112), - [anon_sym_public] = ACTIONS(5112), - [anon_sym_private] = ACTIONS(5112), - [anon_sym_internal] = ACTIONS(5112), - [anon_sym_protected] = ACTIONS(5112), - [anon_sym_tailrec] = ACTIONS(5112), - [anon_sym_operator] = ACTIONS(5112), - [anon_sym_infix] = ACTIONS(5112), - [anon_sym_inline] = ACTIONS(5112), - [anon_sym_external] = ACTIONS(5112), - [sym_property_modifier] = ACTIONS(5112), - [anon_sym_abstract] = ACTIONS(5112), - [anon_sym_final] = ACTIONS(5112), - [anon_sym_open] = ACTIONS(5112), - [anon_sym_vararg] = ACTIONS(5112), - [anon_sym_noinline] = ACTIONS(5112), - [anon_sym_crossinline] = ACTIONS(5112), - [anon_sym_expect] = ACTIONS(5112), - [anon_sym_actual] = ACTIONS(5112), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5114), - [sym__automatic_semicolon] = ACTIONS(5114), - [sym_safe_nav] = ACTIONS(5114), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3927] = { - [sym__alpha_identifier] = ACTIONS(5128), - [anon_sym_AT] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5128), - [anon_sym_EQ] = ACTIONS(5128), - [anon_sym_LBRACE] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5128), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_get] = ACTIONS(5128), - [anon_sym_set] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5128), - [sym_label] = ACTIONS(5130), - [anon_sym_in] = ACTIONS(5128), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_QMARK_COLON] = ACTIONS(5130), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_else] = ACTIONS(5128), - [anon_sym_COLON_COLON] = ACTIONS(5130), - [anon_sym_PLUS_EQ] = ACTIONS(5130), - [anon_sym_DASH_EQ] = ACTIONS(5130), - [anon_sym_STAR_EQ] = ACTIONS(5130), - [anon_sym_SLASH_EQ] = ACTIONS(5130), - [anon_sym_PERCENT_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5128), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5128), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_BANGin] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5128), - [anon_sym_BANGis] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5128), - [anon_sym_as_QMARK] = ACTIONS(5130), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_BANG_BANG] = ACTIONS(5130), - [anon_sym_suspend] = ACTIONS(5128), - [anon_sym_sealed] = ACTIONS(5128), - [anon_sym_annotation] = ACTIONS(5128), - [anon_sym_data] = ACTIONS(5128), - [anon_sym_inner] = ACTIONS(5128), - [anon_sym_value] = ACTIONS(5128), - [anon_sym_override] = ACTIONS(5128), - [anon_sym_lateinit] = ACTIONS(5128), - [anon_sym_public] = ACTIONS(5128), - [anon_sym_private] = ACTIONS(5128), - [anon_sym_internal] = ACTIONS(5128), - [anon_sym_protected] = ACTIONS(5128), - [anon_sym_tailrec] = ACTIONS(5128), - [anon_sym_operator] = ACTIONS(5128), - [anon_sym_infix] = ACTIONS(5128), - [anon_sym_inline] = ACTIONS(5128), - [anon_sym_external] = ACTIONS(5128), - [sym_property_modifier] = ACTIONS(5128), - [anon_sym_abstract] = ACTIONS(5128), - [anon_sym_final] = ACTIONS(5128), - [anon_sym_open] = ACTIONS(5128), - [anon_sym_vararg] = ACTIONS(5128), - [anon_sym_noinline] = ACTIONS(5128), - [anon_sym_crossinline] = ACTIONS(5128), - [anon_sym_expect] = ACTIONS(5128), - [anon_sym_actual] = ACTIONS(5128), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5130), - [sym__automatic_semicolon] = ACTIONS(5130), - [sym_safe_nav] = ACTIONS(5130), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3928] = { - [sym__alpha_identifier] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(3039), - [anon_sym_set] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [sym_label] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3041), - [anon_sym_QMARK_COLON] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_as_QMARK] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_BANG_BANG] = ACTIONS(3041), - [anon_sym_suspend] = ACTIONS(3039), - [anon_sym_sealed] = ACTIONS(3039), - [anon_sym_annotation] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(3039), - [anon_sym_inner] = ACTIONS(3039), - [anon_sym_value] = ACTIONS(3039), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_lateinit] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_tailrec] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym_external] = ACTIONS(3039), - [sym_property_modifier] = ACTIONS(3039), - [anon_sym_abstract] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_vararg] = ACTIONS(3039), - [anon_sym_noinline] = ACTIONS(3039), - [anon_sym_crossinline] = ACTIONS(3039), - [anon_sym_expect] = ACTIONS(3039), - [anon_sym_actual] = ACTIONS(3039), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3041), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(3041), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3929] = { - [sym__alpha_identifier] = ACTIONS(5074), - [anon_sym_AT] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5074), - [anon_sym_EQ] = ACTIONS(5074), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_where] = ACTIONS(5074), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_SEMI] = ACTIONS(5076), - [anon_sym_get] = ACTIONS(5074), - [anon_sym_set] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5074), - [sym_label] = ACTIONS(5076), - [anon_sym_in] = ACTIONS(5074), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_QMARK_COLON] = ACTIONS(5076), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_else] = ACTIONS(5074), - [anon_sym_COLON_COLON] = ACTIONS(5076), - [anon_sym_PLUS_EQ] = ACTIONS(5076), - [anon_sym_DASH_EQ] = ACTIONS(5076), - [anon_sym_STAR_EQ] = ACTIONS(5076), - [anon_sym_SLASH_EQ] = ACTIONS(5076), - [anon_sym_PERCENT_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5074), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_BANGin] = ACTIONS(5076), - [anon_sym_is] = ACTIONS(5074), - [anon_sym_BANGis] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_as_QMARK] = ACTIONS(5076), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_BANG_BANG] = ACTIONS(5076), - [anon_sym_suspend] = ACTIONS(5074), - [anon_sym_sealed] = ACTIONS(5074), - [anon_sym_annotation] = ACTIONS(5074), - [anon_sym_data] = ACTIONS(5074), - [anon_sym_inner] = ACTIONS(5074), - [anon_sym_value] = ACTIONS(5074), - [anon_sym_override] = ACTIONS(5074), - [anon_sym_lateinit] = ACTIONS(5074), - [anon_sym_public] = ACTIONS(5074), - [anon_sym_private] = ACTIONS(5074), - [anon_sym_internal] = ACTIONS(5074), - [anon_sym_protected] = ACTIONS(5074), - [anon_sym_tailrec] = ACTIONS(5074), - [anon_sym_operator] = ACTIONS(5074), - [anon_sym_infix] = ACTIONS(5074), - [anon_sym_inline] = ACTIONS(5074), - [anon_sym_external] = ACTIONS(5074), - [sym_property_modifier] = ACTIONS(5074), - [anon_sym_abstract] = ACTIONS(5074), - [anon_sym_final] = ACTIONS(5074), - [anon_sym_open] = ACTIONS(5074), - [anon_sym_vararg] = ACTIONS(5074), - [anon_sym_noinline] = ACTIONS(5074), - [anon_sym_crossinline] = ACTIONS(5074), - [anon_sym_expect] = ACTIONS(5074), - [anon_sym_actual] = ACTIONS(5074), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5076), - [sym__automatic_semicolon] = ACTIONS(5076), - [sym_safe_nav] = ACTIONS(5076), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3930] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_typealias] = ACTIONS(3818), - [anon_sym_class] = ACTIONS(3818), - [anon_sym_interface] = ACTIONS(3818), - [anon_sym_enum] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_val] = ACTIONS(3818), - [anon_sym_var] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3823), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(3818), - [anon_sym_set] = ACTIONS(3818), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3823), - [sym_label] = ACTIONS(3818), - [anon_sym_for] = ACTIONS(3818), - [anon_sym_while] = ACTIONS(3818), - [anon_sym_do] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3818), - [anon_sym_sealed] = ACTIONS(3818), - [anon_sym_annotation] = ACTIONS(3818), - [anon_sym_data] = ACTIONS(3818), - [anon_sym_inner] = ACTIONS(3818), - [anon_sym_value] = ACTIONS(3818), - [anon_sym_override] = ACTIONS(3818), - [anon_sym_lateinit] = ACTIONS(3818), - [anon_sym_public] = ACTIONS(3818), - [anon_sym_private] = ACTIONS(3818), - [anon_sym_internal] = ACTIONS(3818), - [anon_sym_protected] = ACTIONS(3818), - [anon_sym_tailrec] = ACTIONS(3818), - [anon_sym_operator] = ACTIONS(3818), - [anon_sym_infix] = ACTIONS(3818), - [anon_sym_inline] = ACTIONS(3818), - [anon_sym_external] = ACTIONS(3818), - [sym_property_modifier] = ACTIONS(3818), - [anon_sym_abstract] = ACTIONS(3818), - [anon_sym_final] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3818), - [anon_sym_vararg] = ACTIONS(3818), - [anon_sym_noinline] = ACTIONS(3818), - [anon_sym_crossinline] = ACTIONS(3818), - [anon_sym_expect] = ACTIONS(3818), - [anon_sym_actual] = ACTIONS(3818), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [3931] = { - [sym__alpha_identifier] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_where] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1780), - [anon_sym_set] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_QMARK_COLON] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_BANGin] = ACTIONS(1782), - [anon_sym_is] = ACTIONS(1780), - [anon_sym_BANGis] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(1780), - [anon_sym_sealed] = ACTIONS(1780), - [anon_sym_annotation] = ACTIONS(1780), - [anon_sym_data] = ACTIONS(1780), - [anon_sym_inner] = ACTIONS(1780), - [anon_sym_value] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_lateinit] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_internal] = ACTIONS(1780), - [anon_sym_protected] = ACTIONS(1780), - [anon_sym_tailrec] = ACTIONS(1780), - [anon_sym_operator] = ACTIONS(1780), - [anon_sym_infix] = ACTIONS(1780), - [anon_sym_inline] = ACTIONS(1780), - [anon_sym_external] = ACTIONS(1780), - [sym_property_modifier] = ACTIONS(1780), - [anon_sym_abstract] = ACTIONS(1780), - [anon_sym_final] = ACTIONS(1780), - [anon_sym_open] = ACTIONS(1780), - [anon_sym_vararg] = ACTIONS(1780), - [anon_sym_noinline] = ACTIONS(1780), - [anon_sym_crossinline] = ACTIONS(1780), - [anon_sym_expect] = ACTIONS(1780), - [anon_sym_actual] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1782), - [sym_safe_nav] = ACTIONS(1782), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3932] = { - [sym_function_body] = STATE(3298), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(3290), + [anon_sym_DASH_EQ] = ACTIONS(3290), + [anon_sym_STAR_EQ] = ACTIONS(3290), + [anon_sym_SLASH_EQ] = ACTIONS(3290), + [anon_sym_PERCENT_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), + [sym_multiline_comment] = ACTIONS(3), }, [3933] = { - [sym__alpha_identifier] = ACTIONS(5116), - [anon_sym_AT] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5116), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5116), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_get] = ACTIONS(5116), - [anon_sym_set] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [sym_label] = ACTIONS(5118), - [anon_sym_in] = ACTIONS(5116), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_QMARK_COLON] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_else] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_BANGin] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5116), - [anon_sym_BANGis] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_as_QMARK] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_BANG_BANG] = ACTIONS(5118), - [anon_sym_suspend] = ACTIONS(5116), - [anon_sym_sealed] = ACTIONS(5116), - [anon_sym_annotation] = ACTIONS(5116), - [anon_sym_data] = ACTIONS(5116), - [anon_sym_inner] = ACTIONS(5116), - [anon_sym_value] = ACTIONS(5116), - [anon_sym_override] = ACTIONS(5116), - [anon_sym_lateinit] = ACTIONS(5116), - [anon_sym_public] = ACTIONS(5116), - [anon_sym_private] = ACTIONS(5116), - [anon_sym_internal] = ACTIONS(5116), - [anon_sym_protected] = ACTIONS(5116), - [anon_sym_tailrec] = ACTIONS(5116), - [anon_sym_operator] = ACTIONS(5116), - [anon_sym_infix] = ACTIONS(5116), - [anon_sym_inline] = ACTIONS(5116), - [anon_sym_external] = ACTIONS(5116), - [sym_property_modifier] = ACTIONS(5116), - [anon_sym_abstract] = ACTIONS(5116), - [anon_sym_final] = ACTIONS(5116), - [anon_sym_open] = ACTIONS(5116), - [anon_sym_vararg] = ACTIONS(5116), - [anon_sym_noinline] = ACTIONS(5116), - [anon_sym_crossinline] = ACTIONS(5116), - [anon_sym_expect] = ACTIONS(5116), - [anon_sym_actual] = ACTIONS(5116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5118), - [sym__automatic_semicolon] = ACTIONS(5118), - [sym_safe_nav] = ACTIONS(5118), + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5165), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5165), + [anon_sym_COMMA] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5163), + [anon_sym_GT] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5163), + [anon_sym_SEMI] = ACTIONS(5165), + [anon_sym_get] = ACTIONS(5163), + [anon_sym_set] = ACTIONS(5163), + [anon_sym_STAR] = ACTIONS(5163), + [sym_label] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_QMARK_COLON] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5165), + [anon_sym_PIPE_PIPE] = ACTIONS(5165), + [anon_sym_else] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5165), + [anon_sym_PLUS_EQ] = ACTIONS(5165), + [anon_sym_DASH_EQ] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5165), + [anon_sym_SLASH_EQ] = ACTIONS(5165), + [anon_sym_PERCENT_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5165), + [anon_sym_LT_EQ] = ACTIONS(5165), + [anon_sym_GT_EQ] = ACTIONS(5165), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_BANGis] = ACTIONS(5165), + [anon_sym_PLUS] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5163), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_as_QMARK] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5165), + [anon_sym_DASH_DASH] = ACTIONS(5165), + [anon_sym_BANG_BANG] = ACTIONS(5165), + [anon_sym_suspend] = ACTIONS(5163), + [anon_sym_sealed] = ACTIONS(5163), + [anon_sym_annotation] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5163), + [anon_sym_inner] = ACTIONS(5163), + [anon_sym_value] = ACTIONS(5163), + [anon_sym_override] = ACTIONS(5163), + [anon_sym_lateinit] = ACTIONS(5163), + [anon_sym_public] = ACTIONS(5163), + [anon_sym_private] = ACTIONS(5163), + [anon_sym_internal] = ACTIONS(5163), + [anon_sym_protected] = ACTIONS(5163), + [anon_sym_tailrec] = ACTIONS(5163), + [anon_sym_operator] = ACTIONS(5163), + [anon_sym_infix] = ACTIONS(5163), + [anon_sym_inline] = ACTIONS(5163), + [anon_sym_external] = ACTIONS(5163), + [sym_property_modifier] = ACTIONS(5163), + [anon_sym_abstract] = ACTIONS(5163), + [anon_sym_final] = ACTIONS(5163), + [anon_sym_open] = ACTIONS(5163), + [anon_sym_vararg] = ACTIONS(5163), + [anon_sym_noinline] = ACTIONS(5163), + [anon_sym_crossinline] = ACTIONS(5163), + [anon_sym_expect] = ACTIONS(5163), + [anon_sym_actual] = ACTIONS(5163), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), [sym_multiline_comment] = ACTIONS(3), }, [3934] = { - [sym__alpha_identifier] = ACTIONS(4857), - [anon_sym_AT] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_as] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_COMMA] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_where] = ACTIONS(4857), - [anon_sym_DOT] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4859), - [anon_sym_get] = ACTIONS(4857), - [anon_sym_set] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [sym_label] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4857), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_QMARK_COLON] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_else] = ACTIONS(4857), - [anon_sym_COLON_COLON] = ACTIONS(4859), - [anon_sym_PLUS_EQ] = ACTIONS(4859), - [anon_sym_DASH_EQ] = ACTIONS(4859), - [anon_sym_STAR_EQ] = ACTIONS(4859), - [anon_sym_SLASH_EQ] = ACTIONS(4859), - [anon_sym_PERCENT_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4859), - [anon_sym_LT_EQ] = ACTIONS(4859), - [anon_sym_GT_EQ] = ACTIONS(4859), - [anon_sym_BANGin] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4857), - [anon_sym_BANGis] = ACTIONS(4859), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_as_QMARK] = ACTIONS(4859), - [anon_sym_PLUS_PLUS] = ACTIONS(4859), - [anon_sym_DASH_DASH] = ACTIONS(4859), - [anon_sym_BANG_BANG] = ACTIONS(4859), - [anon_sym_suspend] = ACTIONS(4857), - [anon_sym_sealed] = ACTIONS(4857), - [anon_sym_annotation] = ACTIONS(4857), - [anon_sym_data] = ACTIONS(4857), - [anon_sym_inner] = ACTIONS(4857), - [anon_sym_value] = ACTIONS(4857), - [anon_sym_override] = ACTIONS(4857), - [anon_sym_lateinit] = ACTIONS(4857), - [anon_sym_public] = ACTIONS(4857), - [anon_sym_private] = ACTIONS(4857), - [anon_sym_internal] = ACTIONS(4857), - [anon_sym_protected] = ACTIONS(4857), - [anon_sym_tailrec] = ACTIONS(4857), - [anon_sym_operator] = ACTIONS(4857), - [anon_sym_infix] = ACTIONS(4857), - [anon_sym_inline] = ACTIONS(4857), - [anon_sym_external] = ACTIONS(4857), - [sym_property_modifier] = ACTIONS(4857), - [anon_sym_abstract] = ACTIONS(4857), - [anon_sym_final] = ACTIONS(4857), - [anon_sym_open] = ACTIONS(4857), - [anon_sym_vararg] = ACTIONS(4857), - [anon_sym_noinline] = ACTIONS(4857), - [anon_sym_crossinline] = ACTIONS(4857), - [anon_sym_expect] = ACTIONS(4857), - [anon_sym_actual] = ACTIONS(4857), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4859), - [sym__automatic_semicolon] = ACTIONS(4859), - [sym_safe_nav] = ACTIONS(4859), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3935] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(4950), + [anon_sym_AT] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_where] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_get] = ACTIONS(4950), + [anon_sym_set] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4950), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_QMARK_COLON] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_BANGin] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4950), + [anon_sym_BANGis] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_as_QMARK] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4952), + [anon_sym_suspend] = ACTIONS(4950), + [anon_sym_sealed] = ACTIONS(4950), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4950), + [anon_sym_inner] = ACTIONS(4950), + [anon_sym_value] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_lateinit] = ACTIONS(4950), + [anon_sym_public] = ACTIONS(4950), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_internal] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_tailrec] = ACTIONS(4950), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_infix] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym_external] = ACTIONS(4950), + [sym_property_modifier] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_open] = ACTIONS(4950), + [anon_sym_vararg] = ACTIONS(4950), + [anon_sym_noinline] = ACTIONS(4950), + [anon_sym_crossinline] = ACTIONS(4950), + [anon_sym_expect] = ACTIONS(4950), + [anon_sym_actual] = ACTIONS(4950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4952), + [sym__automatic_semicolon] = ACTIONS(4952), + [sym_safe_nav] = ACTIONS(4952), + [sym_multiline_comment] = ACTIONS(3), }, [3936] = { - [sym__alpha_identifier] = ACTIONS(5049), - [anon_sym_AT] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5049), - [anon_sym_set] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_DOT_DOT] = ACTIONS(5051), - [anon_sym_QMARK_COLON] = ACTIONS(5051), - [anon_sym_AMP_AMP] = ACTIONS(5051), - [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5049), - [anon_sym_COLON_COLON] = ACTIONS(5051), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PERCENT_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), - [anon_sym_LT_EQ] = ACTIONS(5051), - [anon_sym_GT_EQ] = ACTIONS(5051), - [anon_sym_BANGin] = ACTIONS(5051), - [anon_sym_is] = ACTIONS(5049), - [anon_sym_BANGis] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_as_QMARK] = ACTIONS(5051), - [anon_sym_PLUS_PLUS] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5051), - [anon_sym_suspend] = ACTIONS(5049), - [anon_sym_sealed] = ACTIONS(5049), - [anon_sym_annotation] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5049), - [anon_sym_inner] = ACTIONS(5049), - [anon_sym_value] = ACTIONS(5049), - [anon_sym_override] = ACTIONS(5049), - [anon_sym_lateinit] = ACTIONS(5049), - [anon_sym_public] = ACTIONS(5049), - [anon_sym_private] = ACTIONS(5049), - [anon_sym_internal] = ACTIONS(5049), - [anon_sym_protected] = ACTIONS(5049), - [anon_sym_tailrec] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5049), - [anon_sym_infix] = ACTIONS(5049), - [anon_sym_inline] = ACTIONS(5049), - [anon_sym_external] = ACTIONS(5049), - [sym_property_modifier] = ACTIONS(5049), - [anon_sym_abstract] = ACTIONS(5049), - [anon_sym_final] = ACTIONS(5049), - [anon_sym_open] = ACTIONS(5049), - [anon_sym_vararg] = ACTIONS(5049), - [anon_sym_noinline] = ACTIONS(5049), - [anon_sym_crossinline] = ACTIONS(5049), - [anon_sym_expect] = ACTIONS(5049), - [anon_sym_actual] = ACTIONS(5049), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5051), - [sym__automatic_semicolon] = ACTIONS(5051), - [sym_safe_nav] = ACTIONS(5051), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7147), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7151), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7155), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(7161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(7161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7163), + [anon_sym_LT_EQ] = ACTIONS(7165), + [anon_sym_GT_EQ] = ACTIONS(7165), + [anon_sym_BANGin] = ACTIONS(7167), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3937] = { - [sym__alpha_identifier] = ACTIONS(4905), - [anon_sym_AT] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_as] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_where] = ACTIONS(4905), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_SEMI] = ACTIONS(4907), - [anon_sym_get] = ACTIONS(4905), - [anon_sym_set] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [sym_label] = ACTIONS(4907), - [anon_sym_in] = ACTIONS(4905), - [anon_sym_DOT_DOT] = ACTIONS(4907), - [anon_sym_QMARK_COLON] = ACTIONS(4907), - [anon_sym_AMP_AMP] = ACTIONS(4907), - [anon_sym_PIPE_PIPE] = ACTIONS(4907), - [anon_sym_else] = ACTIONS(4905), - [anon_sym_COLON_COLON] = ACTIONS(4907), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), - [anon_sym_EQ_EQ] = ACTIONS(4905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), - [anon_sym_LT_EQ] = ACTIONS(4907), - [anon_sym_GT_EQ] = ACTIONS(4907), - [anon_sym_BANGin] = ACTIONS(4907), - [anon_sym_is] = ACTIONS(4905), - [anon_sym_BANGis] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_as_QMARK] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(4907), - [anon_sym_DASH_DASH] = ACTIONS(4907), - [anon_sym_BANG_BANG] = ACTIONS(4907), - [anon_sym_suspend] = ACTIONS(4905), - [anon_sym_sealed] = ACTIONS(4905), - [anon_sym_annotation] = ACTIONS(4905), - [anon_sym_data] = ACTIONS(4905), - [anon_sym_inner] = ACTIONS(4905), - [anon_sym_value] = ACTIONS(4905), - [anon_sym_override] = ACTIONS(4905), - [anon_sym_lateinit] = ACTIONS(4905), - [anon_sym_public] = ACTIONS(4905), - [anon_sym_private] = ACTIONS(4905), - [anon_sym_internal] = ACTIONS(4905), - [anon_sym_protected] = ACTIONS(4905), - [anon_sym_tailrec] = ACTIONS(4905), - [anon_sym_operator] = ACTIONS(4905), - [anon_sym_infix] = ACTIONS(4905), - [anon_sym_inline] = ACTIONS(4905), - [anon_sym_external] = ACTIONS(4905), - [sym_property_modifier] = ACTIONS(4905), - [anon_sym_abstract] = ACTIONS(4905), - [anon_sym_final] = ACTIONS(4905), - [anon_sym_open] = ACTIONS(4905), - [anon_sym_vararg] = ACTIONS(4905), - [anon_sym_noinline] = ACTIONS(4905), - [anon_sym_crossinline] = ACTIONS(4905), - [anon_sym_expect] = ACTIONS(4905), - [anon_sym_actual] = ACTIONS(4905), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4907), - [sym__automatic_semicolon] = ACTIONS(4907), - [sym_safe_nav] = ACTIONS(4907), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3938] = { - [sym__alpha_identifier] = ACTIONS(4504), - [anon_sym_AT] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_as] = ACTIONS(4504), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4506), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_LT] = ACTIONS(4504), - [anon_sym_GT] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_get] = ACTIONS(4504), - [anon_sym_set] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4504), - [sym_label] = ACTIONS(4506), - [anon_sym_in] = ACTIONS(4504), - [anon_sym_DOT_DOT] = ACTIONS(4506), - [anon_sym_QMARK_COLON] = ACTIONS(4506), - [anon_sym_AMP_AMP] = ACTIONS(4506), - [anon_sym_PIPE_PIPE] = ACTIONS(4506), - [anon_sym_else] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4506), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4506), - [anon_sym_EQ_EQ] = ACTIONS(4504), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4506), - [anon_sym_LT_EQ] = ACTIONS(4506), - [anon_sym_GT_EQ] = ACTIONS(4506), - [anon_sym_BANGin] = ACTIONS(4506), - [anon_sym_is] = ACTIONS(4504), - [anon_sym_BANGis] = ACTIONS(4506), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_SLASH] = ACTIONS(4504), - [anon_sym_PERCENT] = ACTIONS(4504), - [anon_sym_as_QMARK] = ACTIONS(4506), - [anon_sym_PLUS_PLUS] = ACTIONS(4506), - [anon_sym_DASH_DASH] = ACTIONS(4506), - [anon_sym_BANG_BANG] = ACTIONS(4506), - [anon_sym_suspend] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_annotation] = ACTIONS(4504), - [anon_sym_data] = ACTIONS(4504), - [anon_sym_inner] = ACTIONS(4504), - [anon_sym_value] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_lateinit] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_tailrec] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_infix] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym_external] = ACTIONS(4504), - [sym_property_modifier] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_final] = ACTIONS(4504), - [anon_sym_open] = ACTIONS(4504), - [anon_sym_vararg] = ACTIONS(4504), - [anon_sym_noinline] = ACTIONS(4504), - [anon_sym_crossinline] = ACTIONS(4504), - [anon_sym_expect] = ACTIONS(4504), - [anon_sym_actual] = ACTIONS(4504), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4506), - [sym__automatic_semicolon] = ACTIONS(4506), - [sym_safe_nav] = ACTIONS(4506), + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), [sym_multiline_comment] = ACTIONS(3), }, [3939] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_object] = ACTIONS(4505), + [anon_sym_fun] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_this] = ACTIONS(4505), + [anon_sym_super] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_throw] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4507), + [anon_sym_continue_AT] = ACTIONS(4507), + [anon_sym_break_AT] = ACTIONS(4507), + [anon_sym_this_AT] = ACTIONS(4507), + [anon_sym_super_AT] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4507), + [sym_integer_literal] = ACTIONS(4505), + [sym_hex_literal] = ACTIONS(4507), + [sym_bin_literal] = ACTIONS(4507), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4507), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4507), }, [3940] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3941] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7005), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1527), + [sym__in_operator] = STATE(1528), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1531), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1535), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7149), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7169), + [anon_sym_DASH] = ACTIONS(7169), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [3942] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3943] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_value] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(121), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_else] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), }, [3944] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [3945] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_where] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_get] = ACTIONS(4918), + [anon_sym_set] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4918), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_QMARK_COLON] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_BANGin] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4918), + [anon_sym_BANGis] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_as_QMARK] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4920), + [anon_sym_suspend] = ACTIONS(4918), + [anon_sym_sealed] = ACTIONS(4918), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4918), + [anon_sym_inner] = ACTIONS(4918), + [anon_sym_value] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_lateinit] = ACTIONS(4918), + [anon_sym_public] = ACTIONS(4918), + [anon_sym_private] = ACTIONS(4918), + [anon_sym_internal] = ACTIONS(4918), + [anon_sym_protected] = ACTIONS(4918), + [anon_sym_tailrec] = ACTIONS(4918), + [anon_sym_operator] = ACTIONS(4918), + [anon_sym_infix] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym_external] = ACTIONS(4918), + [sym_property_modifier] = ACTIONS(4918), + [anon_sym_abstract] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_open] = ACTIONS(4918), + [anon_sym_vararg] = ACTIONS(4918), + [anon_sym_noinline] = ACTIONS(4918), + [anon_sym_crossinline] = ACTIONS(4918), + [anon_sym_expect] = ACTIONS(4918), + [anon_sym_actual] = ACTIONS(4918), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4920), + [sym__automatic_semicolon] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), [sym_multiline_comment] = ACTIONS(3), }, [3946] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(7009), - [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__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_COMMA] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5159), + [anon_sym_GT] = ACTIONS(5159), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5159), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5159), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5161), + [anon_sym_QMARK_COLON] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5161), + [anon_sym_PIPE_PIPE] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS_EQ] = ACTIONS(5161), + [anon_sym_DASH_EQ] = ACTIONS(5161), + [anon_sym_STAR_EQ] = ACTIONS(5161), + [anon_sym_SLASH_EQ] = ACTIONS(5161), + [anon_sym_PERCENT_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5161), + [anon_sym_LT_EQ] = ACTIONS(5161), + [anon_sym_GT_EQ] = ACTIONS(5161), + [anon_sym_BANGin] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_BANGis] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_as_QMARK] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), [sym_multiline_comment] = ACTIONS(3), }, [3947] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(7012), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_QMARK_COLON] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_as_QMARK] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(3823), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(5059), + [anon_sym_AT] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_as] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [sym_label] = ACTIONS(5061), + [anon_sym_in] = ACTIONS(5059), + [anon_sym_DOT_DOT] = ACTIONS(5061), + [anon_sym_QMARK_COLON] = ACTIONS(5061), + [anon_sym_AMP_AMP] = ACTIONS(5061), + [anon_sym_PIPE_PIPE] = ACTIONS(5061), + [anon_sym_else] = ACTIONS(5059), + [anon_sym_COLON_COLON] = ACTIONS(5061), + [anon_sym_PLUS_EQ] = ACTIONS(5061), + [anon_sym_DASH_EQ] = ACTIONS(5061), + [anon_sym_STAR_EQ] = ACTIONS(5061), + [anon_sym_SLASH_EQ] = ACTIONS(5061), + [anon_sym_PERCENT_EQ] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), + [anon_sym_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_BANGin] = ACTIONS(5061), + [anon_sym_is] = ACTIONS(5059), + [anon_sym_BANGis] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_as_QMARK] = ACTIONS(5061), + [anon_sym_PLUS_PLUS] = ACTIONS(5061), + [anon_sym_DASH_DASH] = ACTIONS(5061), + [anon_sym_BANG_BANG] = ACTIONS(5061), + [anon_sym_suspend] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_annotation] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5059), + [anon_sym_inner] = ACTIONS(5059), + [anon_sym_value] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5061), + [sym__automatic_semicolon] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), + [sym_multiline_comment] = ACTIONS(3), }, [3948] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_STAR_EQ] = ACTIONS(4030), + [anon_sym_SLASH_EQ] = ACTIONS(4030), + [anon_sym_PERCENT_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4030), + [anon_sym_suspend] = ACTIONS(4028), + [anon_sym_sealed] = ACTIONS(4028), + [anon_sym_annotation] = ACTIONS(4028), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_override] = ACTIONS(4028), + [anon_sym_lateinit] = ACTIONS(4028), + [anon_sym_public] = ACTIONS(4028), + [anon_sym_private] = ACTIONS(4028), + [anon_sym_internal] = ACTIONS(4028), + [anon_sym_protected] = ACTIONS(4028), + [anon_sym_tailrec] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_infix] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym_external] = ACTIONS(4028), + [sym_property_modifier] = ACTIONS(4028), + [anon_sym_abstract] = ACTIONS(4028), + [anon_sym_final] = ACTIONS(4028), + [anon_sym_open] = ACTIONS(4028), + [anon_sym_vararg] = ACTIONS(4028), + [anon_sym_noinline] = ACTIONS(4028), + [anon_sym_crossinline] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym__automatic_semicolon] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4030), + [sym_multiline_comment] = ACTIONS(3), }, [3949] = { - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), }, [3950] = { - [sym__alpha_identifier] = ACTIONS(4721), - [anon_sym_AT] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [sym_label] = ACTIONS(4723), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_QMARK_COLON] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_COLON_COLON] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4723), - [anon_sym_DASH_EQ] = ACTIONS(4723), - [anon_sym_STAR_EQ] = ACTIONS(4723), - [anon_sym_SLASH_EQ] = ACTIONS(4723), - [anon_sym_PERCENT_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_BANGin] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4721), - [anon_sym_BANGis] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4721), - [anon_sym_as_QMARK] = ACTIONS(4723), - [anon_sym_PLUS_PLUS] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4723), - [anon_sym_BANG_BANG] = ACTIONS(4723), - [anon_sym_suspend] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_annotation] = ACTIONS(4721), - [anon_sym_data] = ACTIONS(4721), - [anon_sym_inner] = ACTIONS(4721), - [anon_sym_value] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_lateinit] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_tailrec] = ACTIONS(4721), - [anon_sym_operator] = ACTIONS(4721), - [anon_sym_infix] = ACTIONS(4721), - [anon_sym_inline] = ACTIONS(4721), - [anon_sym_external] = ACTIONS(4721), - [sym_property_modifier] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_final] = ACTIONS(4721), - [anon_sym_open] = ACTIONS(4721), - [anon_sym_vararg] = ACTIONS(4721), - [anon_sym_noinline] = ACTIONS(4721), - [anon_sym_crossinline] = ACTIONS(4721), - [anon_sym_expect] = ACTIONS(4721), - [anon_sym_actual] = ACTIONS(4721), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4723), - [sym__automatic_semicolon] = ACTIONS(4723), - [sym_safe_nav] = ACTIONS(4723), + [sym__alpha_identifier] = ACTIONS(5051), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(5051), + [anon_sym_set] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_QMARK_COLON] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5053), + [anon_sym_PIPE_PIPE] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5051), + [anon_sym_COLON_COLON] = ACTIONS(5053), + [anon_sym_PLUS_EQ] = ACTIONS(5053), + [anon_sym_DASH_EQ] = ACTIONS(5053), + [anon_sym_STAR_EQ] = ACTIONS(5053), + [anon_sym_SLASH_EQ] = ACTIONS(5053), + [anon_sym_PERCENT_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5053), + [anon_sym_GT_EQ] = ACTIONS(5053), + [anon_sym_BANGin] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_BANGis] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_as_QMARK] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5053), + [anon_sym_suspend] = ACTIONS(5051), + [anon_sym_sealed] = ACTIONS(5051), + [anon_sym_annotation] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5051), + [anon_sym_inner] = ACTIONS(5051), + [anon_sym_value] = ACTIONS(5051), + [anon_sym_override] = ACTIONS(5051), + [anon_sym_lateinit] = ACTIONS(5051), + [anon_sym_public] = ACTIONS(5051), + [anon_sym_private] = ACTIONS(5051), + [anon_sym_internal] = ACTIONS(5051), + [anon_sym_protected] = ACTIONS(5051), + [anon_sym_tailrec] = ACTIONS(5051), + [anon_sym_operator] = ACTIONS(5051), + [anon_sym_infix] = ACTIONS(5051), + [anon_sym_inline] = ACTIONS(5051), + [anon_sym_external] = ACTIONS(5051), + [sym_property_modifier] = ACTIONS(5051), + [anon_sym_abstract] = ACTIONS(5051), + [anon_sym_final] = ACTIONS(5051), + [anon_sym_open] = ACTIONS(5051), + [anon_sym_vararg] = ACTIONS(5051), + [anon_sym_noinline] = ACTIONS(5051), + [anon_sym_crossinline] = ACTIONS(5051), + [anon_sym_expect] = ACTIONS(5051), + [anon_sym_actual] = ACTIONS(5051), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, [3951] = { - [sym__alpha_identifier] = ACTIONS(5057), - [anon_sym_AT] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5086), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_get] = ACTIONS(5057), - [anon_sym_set] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_QMARK_COLON] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5057), - [anon_sym_COLON_COLON] = ACTIONS(7009), - [anon_sym_PLUS_EQ] = ACTIONS(5088), - [anon_sym_DASH_EQ] = ACTIONS(5088), - [anon_sym_STAR_EQ] = ACTIONS(5088), - [anon_sym_SLASH_EQ] = ACTIONS(5088), - [anon_sym_PERCENT_EQ] = ACTIONS(5088), - [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), + [sym_function_body] = STATE(3265), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [3952] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [sym_label] = ACTIONS(5035), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_suspend] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_annotation] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_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__alpha_identifier] = ACTIONS(4467), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_as] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4467), + [anon_sym_set] = ACTIONS(4467), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4469), + [anon_sym_in] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_QMARK_COLON] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_else] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(4469), + [anon_sym_PLUS_EQ] = ACTIONS(4469), + [anon_sym_DASH_EQ] = ACTIONS(4469), + [anon_sym_STAR_EQ] = ACTIONS(4469), + [anon_sym_SLASH_EQ] = ACTIONS(4469), + [anon_sym_PERCENT_EQ] = ACTIONS(4469), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4469), + [anon_sym_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4469), + [anon_sym_LT_EQ] = ACTIONS(4469), + [anon_sym_GT_EQ] = ACTIONS(4469), + [anon_sym_BANGin] = ACTIONS(4469), + [anon_sym_is] = ACTIONS(4467), + [anon_sym_BANGis] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_as_QMARK] = ACTIONS(4469), + [anon_sym_PLUS_PLUS] = ACTIONS(4469), + [anon_sym_DASH_DASH] = ACTIONS(4469), + [anon_sym_BANG_BANG] = ACTIONS(4469), + [anon_sym_suspend] = ACTIONS(4467), + [anon_sym_sealed] = ACTIONS(4467), + [anon_sym_annotation] = ACTIONS(4467), + [anon_sym_data] = ACTIONS(4467), + [anon_sym_inner] = ACTIONS(4467), + [anon_sym_value] = ACTIONS(4467), + [anon_sym_override] = ACTIONS(4467), + [anon_sym_lateinit] = ACTIONS(4467), + [anon_sym_public] = ACTIONS(4467), + [anon_sym_private] = ACTIONS(4467), + [anon_sym_internal] = ACTIONS(4467), + [anon_sym_protected] = ACTIONS(4467), + [anon_sym_tailrec] = ACTIONS(4467), + [anon_sym_operator] = ACTIONS(4467), + [anon_sym_infix] = ACTIONS(4467), + [anon_sym_inline] = ACTIONS(4467), + [anon_sym_external] = ACTIONS(4467), + [sym_property_modifier] = ACTIONS(4467), + [anon_sym_abstract] = ACTIONS(4467), + [anon_sym_final] = ACTIONS(4467), + [anon_sym_open] = ACTIONS(4467), + [anon_sym_vararg] = ACTIONS(4467), + [anon_sym_noinline] = ACTIONS(4467), + [anon_sym_crossinline] = ACTIONS(4467), + [anon_sym_expect] = ACTIONS(4467), + [anon_sym_actual] = ACTIONS(4467), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4469), + [sym__automatic_semicolon] = ACTIONS(4469), + [sym_safe_nav] = ACTIONS(4469), [sym_multiline_comment] = ACTIONS(3), }, [3953] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1773), - [sym__comparison_operator] = STATE(1776), - [sym__in_operator] = STATE(1777), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1778), - [sym__multiplicative_operator] = STATE(1779), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1781), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(6932), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(6934), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(6936), - [anon_sym_QMARK_COLON] = ACTIONS(6938), - [anon_sym_AMP_AMP] = ACTIONS(6940), - [anon_sym_PIPE_PIPE] = ACTIONS(6942), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6946), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6946), - [anon_sym_LT_EQ] = ACTIONS(6948), - [anon_sym_GT_EQ] = ACTIONS(6948), - [anon_sym_BANGin] = ACTIONS(6950), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6952), - [anon_sym_DASH] = ACTIONS(6952), - [anon_sym_SLASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_PLUS_EQ] = ACTIONS(4218), + [anon_sym_DASH_EQ] = ACTIONS(4218), + [anon_sym_STAR_EQ] = ACTIONS(4218), + [anon_sym_SLASH_EQ] = ACTIONS(4218), + [anon_sym_PERCENT_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4216), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [3954] = { - [sym__alpha_identifier] = ACTIONS(4558), - [anon_sym_AT] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACE] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_object] = ACTIONS(4558), - [anon_sym_fun] = ACTIONS(4558), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_get] = ACTIONS(4558), - [anon_sym_set] = ACTIONS(4558), - [anon_sym_this] = ACTIONS(4558), - [anon_sym_super] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4560), - [sym_label] = ACTIONS(4558), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_null] = ACTIONS(4558), - [anon_sym_if] = ACTIONS(4558), - [anon_sym_else] = ACTIONS(4558), - [anon_sym_when] = ACTIONS(4558), - [anon_sym_try] = ACTIONS(4558), - [anon_sym_throw] = ACTIONS(4558), - [anon_sym_return] = ACTIONS(4558), - [anon_sym_continue] = ACTIONS(4558), - [anon_sym_break] = ACTIONS(4558), - [anon_sym_COLON_COLON] = ACTIONS(4560), - [anon_sym_BANGin] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_BANGis] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_suspend] = ACTIONS(4558), - [anon_sym_sealed] = ACTIONS(4558), - [anon_sym_annotation] = ACTIONS(4558), - [anon_sym_data] = ACTIONS(4558), - [anon_sym_inner] = ACTIONS(4558), - [anon_sym_value] = ACTIONS(4558), - [anon_sym_override] = ACTIONS(4558), - [anon_sym_lateinit] = ACTIONS(4558), - [anon_sym_public] = ACTIONS(4558), - [anon_sym_private] = ACTIONS(4558), - [anon_sym_internal] = ACTIONS(4558), - [anon_sym_protected] = ACTIONS(4558), - [anon_sym_tailrec] = ACTIONS(4558), - [anon_sym_operator] = ACTIONS(4558), - [anon_sym_infix] = ACTIONS(4558), - [anon_sym_inline] = ACTIONS(4558), - [anon_sym_external] = ACTIONS(4558), - [sym_property_modifier] = ACTIONS(4558), - [anon_sym_abstract] = ACTIONS(4558), - [anon_sym_final] = ACTIONS(4558), - [anon_sym_open] = ACTIONS(4558), - [anon_sym_vararg] = ACTIONS(4558), - [anon_sym_noinline] = ACTIONS(4558), - [anon_sym_crossinline] = ACTIONS(4558), - [anon_sym_expect] = ACTIONS(4558), - [anon_sym_actual] = ACTIONS(4558), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4560), - [anon_sym_continue_AT] = ACTIONS(4560), - [anon_sym_break_AT] = ACTIONS(4560), - [sym_real_literal] = ACTIONS(4560), - [sym_integer_literal] = ACTIONS(4558), - [sym_hex_literal] = ACTIONS(4560), - [sym_bin_literal] = ACTIONS(4560), - [anon_sym_true] = ACTIONS(4558), - [anon_sym_false] = ACTIONS(4558), - [anon_sym_SQUOTE] = ACTIONS(4560), - [sym__backtick_identifier] = ACTIONS(4560), - [sym__automatic_semicolon] = ACTIONS(4560), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4560), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), }, [3955] = { - [sym__alpha_identifier] = ACTIONS(4947), - [anon_sym_AT] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_where] = ACTIONS(4947), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_get] = ACTIONS(4947), - [anon_sym_set] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [sym_label] = ACTIONS(4949), - [anon_sym_in] = ACTIONS(4947), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_QMARK_COLON] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_else] = ACTIONS(4947), - [anon_sym_COLON_COLON] = ACTIONS(4949), - [anon_sym_PLUS_EQ] = ACTIONS(4949), - [anon_sym_DASH_EQ] = ACTIONS(4949), - [anon_sym_STAR_EQ] = ACTIONS(4949), - [anon_sym_SLASH_EQ] = ACTIONS(4949), - [anon_sym_PERCENT_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4947), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_BANGin] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4947), - [anon_sym_BANGis] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_as_QMARK] = ACTIONS(4949), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_BANG_BANG] = ACTIONS(4949), - [anon_sym_suspend] = ACTIONS(4947), - [anon_sym_sealed] = ACTIONS(4947), - [anon_sym_annotation] = ACTIONS(4947), - [anon_sym_data] = ACTIONS(4947), - [anon_sym_inner] = ACTIONS(4947), - [anon_sym_value] = ACTIONS(4947), - [anon_sym_override] = ACTIONS(4947), - [anon_sym_lateinit] = ACTIONS(4947), - [anon_sym_public] = ACTIONS(4947), - [anon_sym_private] = ACTIONS(4947), - [anon_sym_internal] = ACTIONS(4947), - [anon_sym_protected] = ACTIONS(4947), - [anon_sym_tailrec] = ACTIONS(4947), - [anon_sym_operator] = ACTIONS(4947), - [anon_sym_infix] = ACTIONS(4947), - [anon_sym_inline] = ACTIONS(4947), - [anon_sym_external] = ACTIONS(4947), - [sym_property_modifier] = ACTIONS(4947), - [anon_sym_abstract] = ACTIONS(4947), - [anon_sym_final] = ACTIONS(4947), - [anon_sym_open] = ACTIONS(4947), - [anon_sym_vararg] = ACTIONS(4947), - [anon_sym_noinline] = ACTIONS(4947), - [anon_sym_crossinline] = ACTIONS(4947), - [anon_sym_expect] = ACTIONS(4947), - [anon_sym_actual] = ACTIONS(4947), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4949), - [sym__automatic_semicolon] = ACTIONS(4949), - [sym_safe_nav] = ACTIONS(4949), + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_value] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), [sym_multiline_comment] = ACTIONS(3), }, [3956] = { - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_PLUS_EQ] = ACTIONS(4329), + [anon_sym_DASH_EQ] = ACTIONS(4329), + [anon_sym_STAR_EQ] = ACTIONS(4329), + [anon_sym_SLASH_EQ] = ACTIONS(4329), + [anon_sym_PERCENT_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), + [sym_multiline_comment] = ACTIONS(3), }, [3957] = { - [sym__alpha_identifier] = ACTIONS(5078), - [anon_sym_AT] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5078), - [anon_sym_EQ] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_where] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_SEMI] = ACTIONS(5080), - [anon_sym_get] = ACTIONS(5078), - [anon_sym_set] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5078), - [sym_label] = ACTIONS(5080), - [anon_sym_in] = ACTIONS(5078), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_QMARK_COLON] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_else] = ACTIONS(5078), - [anon_sym_COLON_COLON] = ACTIONS(5080), - [anon_sym_PLUS_EQ] = ACTIONS(5080), - [anon_sym_DASH_EQ] = ACTIONS(5080), - [anon_sym_STAR_EQ] = ACTIONS(5080), - [anon_sym_SLASH_EQ] = ACTIONS(5080), - [anon_sym_PERCENT_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_BANGin] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5078), - [anon_sym_BANGis] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5078), - [anon_sym_as_QMARK] = ACTIONS(5080), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_BANG_BANG] = ACTIONS(5080), - [anon_sym_suspend] = ACTIONS(5078), - [anon_sym_sealed] = ACTIONS(5078), - [anon_sym_annotation] = ACTIONS(5078), - [anon_sym_data] = ACTIONS(5078), - [anon_sym_inner] = ACTIONS(5078), - [anon_sym_value] = ACTIONS(5078), - [anon_sym_override] = ACTIONS(5078), - [anon_sym_lateinit] = ACTIONS(5078), - [anon_sym_public] = ACTIONS(5078), - [anon_sym_private] = ACTIONS(5078), - [anon_sym_internal] = ACTIONS(5078), - [anon_sym_protected] = ACTIONS(5078), - [anon_sym_tailrec] = ACTIONS(5078), - [anon_sym_operator] = ACTIONS(5078), - [anon_sym_infix] = ACTIONS(5078), - [anon_sym_inline] = ACTIONS(5078), - [anon_sym_external] = ACTIONS(5078), - [sym_property_modifier] = ACTIONS(5078), - [anon_sym_abstract] = ACTIONS(5078), - [anon_sym_final] = ACTIONS(5078), - [anon_sym_open] = ACTIONS(5078), - [anon_sym_vararg] = ACTIONS(5078), - [anon_sym_noinline] = ACTIONS(5078), - [anon_sym_crossinline] = ACTIONS(5078), - [anon_sym_expect] = ACTIONS(5078), - [anon_sym_actual] = ACTIONS(5078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5080), - [sym__automatic_semicolon] = ACTIONS(5080), - [sym_safe_nav] = ACTIONS(5080), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5183), + [anon_sym_AT] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(5185), + [anon_sym_typealias] = ACTIONS(5183), + [anon_sym_class] = ACTIONS(5183), + [anon_sym_interface] = ACTIONS(5183), + [anon_sym_enum] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5185), + [anon_sym_val] = ACTIONS(5183), + [anon_sym_var] = ACTIONS(5183), + [anon_sym_object] = ACTIONS(5183), + [anon_sym_fun] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(5183), + [anon_sym_set] = ACTIONS(5183), + [anon_sym_this] = ACTIONS(5183), + [anon_sym_super] = ACTIONS(5183), + [anon_sym_STAR] = ACTIONS(5185), + [sym_label] = ACTIONS(5183), + [anon_sym_for] = ACTIONS(5183), + [anon_sym_while] = ACTIONS(5183), + [anon_sym_do] = ACTIONS(5183), + [anon_sym_null] = ACTIONS(5183), + [anon_sym_if] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_try] = ACTIONS(5183), + [anon_sym_throw] = ACTIONS(5183), + [anon_sym_return] = ACTIONS(5183), + [anon_sym_continue] = ACTIONS(5183), + [anon_sym_break] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(5183), + [anon_sym_PLUS_PLUS] = ACTIONS(5185), + [anon_sym_DASH_DASH] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_suspend] = ACTIONS(5183), + [anon_sym_sealed] = ACTIONS(5183), + [anon_sym_annotation] = ACTIONS(5183), + [anon_sym_data] = ACTIONS(5183), + [anon_sym_inner] = ACTIONS(5183), + [anon_sym_value] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_lateinit] = ACTIONS(5183), + [anon_sym_public] = ACTIONS(5183), + [anon_sym_private] = ACTIONS(5183), + [anon_sym_internal] = ACTIONS(5183), + [anon_sym_protected] = ACTIONS(5183), + [anon_sym_tailrec] = ACTIONS(5183), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_infix] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym_external] = ACTIONS(5183), + [sym_property_modifier] = ACTIONS(5183), + [anon_sym_abstract] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_open] = ACTIONS(5183), + [anon_sym_vararg] = ACTIONS(5183), + [anon_sym_noinline] = ACTIONS(5183), + [anon_sym_crossinline] = ACTIONS(5183), + [anon_sym_expect] = ACTIONS(5183), + [anon_sym_actual] = ACTIONS(5183), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5185), + [anon_sym_continue_AT] = ACTIONS(5185), + [anon_sym_break_AT] = ACTIONS(5185), + [anon_sym_this_AT] = ACTIONS(5185), + [anon_sym_super_AT] = ACTIONS(5185), + [sym_real_literal] = ACTIONS(5185), + [sym_integer_literal] = ACTIONS(5183), + [sym_hex_literal] = ACTIONS(5185), + [sym_bin_literal] = ACTIONS(5185), + [anon_sym_true] = ACTIONS(5183), + [anon_sym_false] = ACTIONS(5183), + [anon_sym_SQUOTE] = ACTIONS(5185), + [sym__backtick_identifier] = ACTIONS(5185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5185), }, [3958] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [sym_label] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_QMARK_COLON] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PERCENT_EQ] = ACTIONS(1792), + [anon_sym_BANG_EQ] = ACTIONS(1790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), + [anon_sym_BANGin] = ACTIONS(1792), + [anon_sym_is] = ACTIONS(1790), + [anon_sym_BANGis] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_as_QMARK] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_BANG_BANG] = ACTIONS(1792), + [anon_sym_suspend] = ACTIONS(1790), + [anon_sym_sealed] = ACTIONS(1790), + [anon_sym_annotation] = ACTIONS(1790), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_override] = ACTIONS(1790), + [anon_sym_lateinit] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_internal] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_tailrec] = ACTIONS(1790), + [anon_sym_operator] = ACTIONS(1790), + [anon_sym_infix] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_external] = ACTIONS(1790), + [sym_property_modifier] = ACTIONS(1790), + [anon_sym_abstract] = ACTIONS(1790), + [anon_sym_final] = ACTIONS(1790), + [anon_sym_open] = ACTIONS(1790), + [anon_sym_vararg] = ACTIONS(1790), + [anon_sym_noinline] = ACTIONS(1790), + [anon_sym_crossinline] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, [3959] = { - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3842), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3842), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3844), - [anon_sym_PLUS_EQ] = ACTIONS(3844), - [anon_sym_DASH_EQ] = ACTIONS(3844), - [anon_sym_STAR_EQ] = ACTIONS(3844), - [anon_sym_SLASH_EQ] = ACTIONS(3844), - [anon_sym_PERCENT_EQ] = ACTIONS(3844), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3844), - [anon_sym_DASH_DASH] = ACTIONS(3844), - [anon_sym_BANG_BANG] = ACTIONS(3844), - [anon_sym_suspend] = ACTIONS(3842), - [anon_sym_sealed] = ACTIONS(3842), - [anon_sym_annotation] = ACTIONS(3842), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_override] = ACTIONS(3842), - [anon_sym_lateinit] = ACTIONS(3842), - [anon_sym_public] = ACTIONS(3842), - [anon_sym_private] = ACTIONS(3842), - [anon_sym_internal] = ACTIONS(3842), - [anon_sym_protected] = ACTIONS(3842), - [anon_sym_tailrec] = ACTIONS(3842), - [anon_sym_operator] = ACTIONS(3842), - [anon_sym_infix] = ACTIONS(3842), - [anon_sym_inline] = ACTIONS(3842), - [anon_sym_external] = ACTIONS(3842), - [sym_property_modifier] = ACTIONS(3842), - [anon_sym_abstract] = ACTIONS(3842), - [anon_sym_final] = ACTIONS(3842), - [anon_sym_open] = ACTIONS(3842), - [anon_sym_vararg] = ACTIONS(3842), - [anon_sym_noinline] = ACTIONS(3842), - [anon_sym_crossinline] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym__automatic_semicolon] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3844), + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(5171), + [anon_sym_set] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [sym_label] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5173), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_else] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_PLUS_EQ] = ACTIONS(5173), + [anon_sym_DASH_EQ] = ACTIONS(5173), + [anon_sym_STAR_EQ] = ACTIONS(5173), + [anon_sym_SLASH_EQ] = ACTIONS(5173), + [anon_sym_PERCENT_EQ] = ACTIONS(5173), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5173), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5173), + [anon_sym_LT_EQ] = ACTIONS(5173), + [anon_sym_GT_EQ] = ACTIONS(5173), + [anon_sym_BANGin] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_BANGis] = ACTIONS(5173), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_as_QMARK] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5173), + [anon_sym_DASH_DASH] = ACTIONS(5173), + [anon_sym_BANG_BANG] = ACTIONS(5173), + [anon_sym_suspend] = ACTIONS(5171), + [anon_sym_sealed] = ACTIONS(5171), + [anon_sym_annotation] = ACTIONS(5171), + [anon_sym_data] = ACTIONS(5171), + [anon_sym_inner] = ACTIONS(5171), + [anon_sym_value] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_lateinit] = ACTIONS(5171), + [anon_sym_public] = ACTIONS(5171), + [anon_sym_private] = ACTIONS(5171), + [anon_sym_internal] = ACTIONS(5171), + [anon_sym_protected] = ACTIONS(5171), + [anon_sym_tailrec] = ACTIONS(5171), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_infix] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym_external] = ACTIONS(5171), + [sym_property_modifier] = ACTIONS(5171), + [anon_sym_abstract] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_open] = ACTIONS(5171), + [anon_sym_vararg] = ACTIONS(5171), + [anon_sym_noinline] = ACTIONS(5171), + [anon_sym_crossinline] = ACTIONS(5171), + [anon_sym_expect] = ACTIONS(5171), + [anon_sym_actual] = ACTIONS(5171), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5173), + [sym__automatic_semicolon] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), [sym_multiline_comment] = ACTIONS(3), }, [3960] = { - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_value] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), }, [3961] = { - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4633), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_PLUS_EQ] = ACTIONS(4635), + [anon_sym_DASH_EQ] = ACTIONS(4635), + [anon_sym_STAR_EQ] = ACTIONS(4635), + [anon_sym_SLASH_EQ] = ACTIONS(4635), + [anon_sym_PERCENT_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), }, [3962] = { - [sym__alpha_identifier] = ACTIONS(5096), - [anon_sym_AT] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_as] = ACTIONS(5096), - [anon_sym_EQ] = ACTIONS(5096), - [anon_sym_LBRACE] = ACTIONS(5098), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_LPAREN] = ACTIONS(5098), - [anon_sym_COMMA] = ACTIONS(5098), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5096), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_SEMI] = ACTIONS(5098), - [anon_sym_get] = ACTIONS(5096), - [anon_sym_set] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5096), - [sym_label] = ACTIONS(5098), - [anon_sym_in] = ACTIONS(5096), - [anon_sym_DOT_DOT] = ACTIONS(5098), - [anon_sym_QMARK_COLON] = ACTIONS(5098), - [anon_sym_AMP_AMP] = ACTIONS(5098), - [anon_sym_PIPE_PIPE] = ACTIONS(5098), - [anon_sym_else] = ACTIONS(5096), - [anon_sym_COLON_COLON] = ACTIONS(5098), - [anon_sym_PLUS_EQ] = ACTIONS(5098), - [anon_sym_DASH_EQ] = ACTIONS(5098), - [anon_sym_STAR_EQ] = ACTIONS(5098), - [anon_sym_SLASH_EQ] = ACTIONS(5098), - [anon_sym_PERCENT_EQ] = ACTIONS(5098), - [anon_sym_BANG_EQ] = ACTIONS(5096), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5098), - [anon_sym_EQ_EQ] = ACTIONS(5096), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5098), - [anon_sym_LT_EQ] = ACTIONS(5098), - [anon_sym_GT_EQ] = ACTIONS(5098), - [anon_sym_BANGin] = ACTIONS(5098), - [anon_sym_is] = ACTIONS(5096), - [anon_sym_BANGis] = ACTIONS(5098), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5096), - [anon_sym_as_QMARK] = ACTIONS(5098), - [anon_sym_PLUS_PLUS] = ACTIONS(5098), - [anon_sym_DASH_DASH] = ACTIONS(5098), - [anon_sym_BANG_BANG] = ACTIONS(5098), - [anon_sym_suspend] = ACTIONS(5096), - [anon_sym_sealed] = ACTIONS(5096), - [anon_sym_annotation] = ACTIONS(5096), - [anon_sym_data] = ACTIONS(5096), - [anon_sym_inner] = ACTIONS(5096), - [anon_sym_value] = ACTIONS(5096), - [anon_sym_override] = ACTIONS(5096), - [anon_sym_lateinit] = ACTIONS(5096), - [anon_sym_public] = ACTIONS(5096), - [anon_sym_private] = ACTIONS(5096), - [anon_sym_internal] = ACTIONS(5096), - [anon_sym_protected] = ACTIONS(5096), - [anon_sym_tailrec] = ACTIONS(5096), - [anon_sym_operator] = ACTIONS(5096), - [anon_sym_infix] = ACTIONS(5096), - [anon_sym_inline] = ACTIONS(5096), - [anon_sym_external] = ACTIONS(5096), - [sym_property_modifier] = ACTIONS(5096), - [anon_sym_abstract] = ACTIONS(5096), - [anon_sym_final] = ACTIONS(5096), - [anon_sym_open] = ACTIONS(5096), - [anon_sym_vararg] = ACTIONS(5096), - [anon_sym_noinline] = ACTIONS(5096), - [anon_sym_crossinline] = ACTIONS(5096), - [anon_sym_expect] = ACTIONS(5096), - [anon_sym_actual] = ACTIONS(5096), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5098), - [sym__automatic_semicolon] = ACTIONS(5098), - [sym_safe_nav] = ACTIONS(5098), + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_get] = ACTIONS(4906), + [anon_sym_set] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_QMARK_COLON] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_BANGin] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4906), + [anon_sym_BANGis] = ACTIONS(4908), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_as_QMARK] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4908), + [anon_sym_suspend] = ACTIONS(4906), + [anon_sym_sealed] = ACTIONS(4906), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4906), + [anon_sym_inner] = ACTIONS(4906), + [anon_sym_value] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_lateinit] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4906), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_internal] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_tailrec] = ACTIONS(4906), + [anon_sym_operator] = ACTIONS(4906), + [anon_sym_infix] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym_external] = ACTIONS(4906), + [sym_property_modifier] = ACTIONS(4906), + [anon_sym_abstract] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_open] = ACTIONS(4906), + [anon_sym_vararg] = ACTIONS(4906), + [anon_sym_noinline] = ACTIONS(4906), + [anon_sym_crossinline] = ACTIONS(4906), + [anon_sym_expect] = ACTIONS(4906), + [anon_sym_actual] = ACTIONS(4906), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4908), + [sym__automatic_semicolon] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [sym_multiline_comment] = ACTIONS(3), }, [3963] = { - [sym__alpha_identifier] = ACTIONS(4927), - [anon_sym_AT] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4927), - [anon_sym_GT] = ACTIONS(4927), - [anon_sym_where] = ACTIONS(4927), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4929), - [anon_sym_get] = ACTIONS(4927), - [anon_sym_set] = ACTIONS(4927), - [anon_sym_STAR] = ACTIONS(4927), - [sym_label] = ACTIONS(4929), - [anon_sym_in] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_QMARK_COLON] = ACTIONS(4929), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_else] = ACTIONS(4927), - [anon_sym_COLON_COLON] = ACTIONS(4929), - [anon_sym_PLUS_EQ] = ACTIONS(4929), - [anon_sym_DASH_EQ] = ACTIONS(4929), - [anon_sym_STAR_EQ] = ACTIONS(4929), - [anon_sym_SLASH_EQ] = ACTIONS(4929), - [anon_sym_PERCENT_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_BANGin] = ACTIONS(4929), - [anon_sym_is] = ACTIONS(4927), - [anon_sym_BANGis] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4927), - [anon_sym_DASH] = ACTIONS(4927), - [anon_sym_SLASH] = ACTIONS(4927), - [anon_sym_PERCENT] = ACTIONS(4927), - [anon_sym_as_QMARK] = ACTIONS(4929), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_BANG_BANG] = ACTIONS(4929), - [anon_sym_suspend] = ACTIONS(4927), - [anon_sym_sealed] = ACTIONS(4927), - [anon_sym_annotation] = ACTIONS(4927), - [anon_sym_data] = ACTIONS(4927), - [anon_sym_inner] = ACTIONS(4927), - [anon_sym_value] = ACTIONS(4927), - [anon_sym_override] = ACTIONS(4927), - [anon_sym_lateinit] = ACTIONS(4927), - [anon_sym_public] = ACTIONS(4927), - [anon_sym_private] = ACTIONS(4927), - [anon_sym_internal] = ACTIONS(4927), - [anon_sym_protected] = ACTIONS(4927), - [anon_sym_tailrec] = ACTIONS(4927), - [anon_sym_operator] = ACTIONS(4927), - [anon_sym_infix] = ACTIONS(4927), - [anon_sym_inline] = ACTIONS(4927), - [anon_sym_external] = ACTIONS(4927), - [sym_property_modifier] = ACTIONS(4927), - [anon_sym_abstract] = ACTIONS(4927), - [anon_sym_final] = ACTIONS(4927), - [anon_sym_open] = ACTIONS(4927), - [anon_sym_vararg] = ACTIONS(4927), - [anon_sym_noinline] = ACTIONS(4927), - [anon_sym_crossinline] = ACTIONS(4927), - [anon_sym_expect] = ACTIONS(4927), - [anon_sym_actual] = ACTIONS(4927), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4929), - [sym__automatic_semicolon] = ACTIONS(4929), - [sym_safe_nav] = ACTIONS(4929), + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_where] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_get] = ACTIONS(4902), + [anon_sym_set] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4902), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_QMARK_COLON] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_BANGin] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4902), + [anon_sym_BANGis] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_suspend] = ACTIONS(4902), + [anon_sym_sealed] = ACTIONS(4902), + [anon_sym_annotation] = ACTIONS(4902), + [anon_sym_data] = ACTIONS(4902), + [anon_sym_inner] = ACTIONS(4902), + [anon_sym_value] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_lateinit] = ACTIONS(4902), + [anon_sym_public] = ACTIONS(4902), + [anon_sym_private] = ACTIONS(4902), + [anon_sym_internal] = ACTIONS(4902), + [anon_sym_protected] = ACTIONS(4902), + [anon_sym_tailrec] = ACTIONS(4902), + [anon_sym_operator] = ACTIONS(4902), + [anon_sym_infix] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym_external] = ACTIONS(4902), + [sym_property_modifier] = ACTIONS(4902), + [anon_sym_abstract] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_open] = ACTIONS(4902), + [anon_sym_vararg] = ACTIONS(4902), + [anon_sym_noinline] = ACTIONS(4902), + [anon_sym_crossinline] = ACTIONS(4902), + [anon_sym_expect] = ACTIONS(4902), + [anon_sym_actual] = ACTIONS(4902), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4904), + [sym__automatic_semicolon] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), [sym_multiline_comment] = ACTIONS(3), }, [3964] = { - [sym__alpha_identifier] = ACTIONS(5092), - [anon_sym_AT] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5092), - [anon_sym_EQ] = ACTIONS(5092), - [anon_sym_LBRACE] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5092), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_SEMI] = ACTIONS(5094), - [anon_sym_get] = ACTIONS(5092), - [anon_sym_set] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5092), - [sym_label] = ACTIONS(5094), - [anon_sym_in] = ACTIONS(5092), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_QMARK_COLON] = ACTIONS(5094), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_else] = ACTIONS(5092), - [anon_sym_COLON_COLON] = ACTIONS(5094), - [anon_sym_PLUS_EQ] = ACTIONS(5094), - [anon_sym_DASH_EQ] = ACTIONS(5094), - [anon_sym_STAR_EQ] = ACTIONS(5094), - [anon_sym_SLASH_EQ] = ACTIONS(5094), - [anon_sym_PERCENT_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5092), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5092), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_BANGin] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5092), - [anon_sym_BANGis] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5092), - [anon_sym_as_QMARK] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_BANG_BANG] = ACTIONS(5094), - [anon_sym_suspend] = ACTIONS(5092), - [anon_sym_sealed] = ACTIONS(5092), - [anon_sym_annotation] = ACTIONS(5092), - [anon_sym_data] = ACTIONS(5092), - [anon_sym_inner] = ACTIONS(5092), - [anon_sym_value] = ACTIONS(5092), - [anon_sym_override] = ACTIONS(5092), - [anon_sym_lateinit] = ACTIONS(5092), - [anon_sym_public] = ACTIONS(5092), - [anon_sym_private] = ACTIONS(5092), - [anon_sym_internal] = ACTIONS(5092), - [anon_sym_protected] = ACTIONS(5092), - [anon_sym_tailrec] = ACTIONS(5092), - [anon_sym_operator] = ACTIONS(5092), - [anon_sym_infix] = ACTIONS(5092), - [anon_sym_inline] = ACTIONS(5092), - [anon_sym_external] = ACTIONS(5092), - [sym_property_modifier] = ACTIONS(5092), - [anon_sym_abstract] = ACTIONS(5092), - [anon_sym_final] = ACTIONS(5092), - [anon_sym_open] = ACTIONS(5092), - [anon_sym_vararg] = ACTIONS(5092), - [anon_sym_noinline] = ACTIONS(5092), - [anon_sym_crossinline] = ACTIONS(5092), - [anon_sym_expect] = ACTIONS(5092), - [anon_sym_actual] = ACTIONS(5092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5094), - [sym__automatic_semicolon] = ACTIONS(5094), - [sym_safe_nav] = ACTIONS(5094), + [sym__alpha_identifier] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5022), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_get] = ACTIONS(5020), + [anon_sym_set] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [sym_label] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_QMARK_COLON] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym_PLUS_EQ] = ACTIONS(5022), + [anon_sym_DASH_EQ] = ACTIONS(5022), + [anon_sym_STAR_EQ] = ACTIONS(5022), + [anon_sym_SLASH_EQ] = ACTIONS(5022), + [anon_sym_PERCENT_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_BANGin] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_BANGis] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5020), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_as_QMARK] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_BANG_BANG] = ACTIONS(5022), + [anon_sym_suspend] = ACTIONS(5020), + [anon_sym_sealed] = ACTIONS(5020), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_data] = ACTIONS(5020), + [anon_sym_inner] = ACTIONS(5020), + [anon_sym_value] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_lateinit] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_protected] = ACTIONS(5020), + [anon_sym_tailrec] = ACTIONS(5020), + [anon_sym_operator] = ACTIONS(5020), + [anon_sym_infix] = ACTIONS(5020), + [anon_sym_inline] = ACTIONS(5020), + [anon_sym_external] = ACTIONS(5020), + [sym_property_modifier] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_open] = ACTIONS(5020), + [anon_sym_vararg] = ACTIONS(5020), + [anon_sym_noinline] = ACTIONS(5020), + [anon_sym_crossinline] = ACTIONS(5020), + [anon_sym_expect] = ACTIONS(5020), + [anon_sym_actual] = ACTIONS(5020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5022), + [sym__automatic_semicolon] = ACTIONS(5022), + [sym_safe_nav] = ACTIONS(5022), [sym_multiline_comment] = ACTIONS(3), }, [3965] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [sym_label] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_suspend] = ACTIONS(5003), - [anon_sym_sealed] = ACTIONS(5003), - [anon_sym_annotation] = ACTIONS(5003), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_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), + [aux_sym__delegation_specifiers_repeat1] = STATE(3974), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_object] = ACTIONS(4684), + [anon_sym_fun] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_this] = ACTIONS(4684), + [anon_sym_super] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_when] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(4684), + [anon_sym_throw] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_continue] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4686), + [anon_sym_continue_AT] = ACTIONS(4686), + [anon_sym_break_AT] = ACTIONS(4686), + [anon_sym_this_AT] = ACTIONS(4686), + [anon_sym_super_AT] = ACTIONS(4686), + [sym_real_literal] = ACTIONS(4686), + [sym_integer_literal] = ACTIONS(4684), + [sym_hex_literal] = ACTIONS(4686), + [sym_bin_literal] = ACTIONS(4686), + [anon_sym_true] = ACTIONS(4684), + [anon_sym_false] = ACTIONS(4684), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4686), }, [3966] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7016), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_while] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_COMMA] = ACTIONS(4828), + [anon_sym_LT] = ACTIONS(4826), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_where] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4826), + [anon_sym_set] = ACTIONS(4826), + [anon_sym_STAR] = ACTIONS(4826), + [sym_label] = ACTIONS(4828), + [anon_sym_in] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_QMARK_COLON] = ACTIONS(4828), + [anon_sym_AMP_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4828), + [anon_sym_else] = ACTIONS(4826), + [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_PLUS_EQ] = ACTIONS(4828), + [anon_sym_DASH_EQ] = ACTIONS(4828), + [anon_sym_STAR_EQ] = ACTIONS(4828), + [anon_sym_SLASH_EQ] = ACTIONS(4828), + [anon_sym_PERCENT_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), + [anon_sym_LT_EQ] = ACTIONS(4828), + [anon_sym_GT_EQ] = ACTIONS(4828), + [anon_sym_BANGin] = ACTIONS(4828), + [anon_sym_is] = ACTIONS(4826), + [anon_sym_BANGis] = ACTIONS(4828), + [anon_sym_PLUS] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_as_QMARK] = ACTIONS(4828), + [anon_sym_PLUS_PLUS] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_BANG_BANG] = ACTIONS(4828), + [anon_sym_suspend] = ACTIONS(4826), + [anon_sym_sealed] = ACTIONS(4826), + [anon_sym_annotation] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4826), + [anon_sym_inner] = ACTIONS(4826), + [anon_sym_value] = ACTIONS(4826), + [anon_sym_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), [sym_multiline_comment] = ACTIONS(3), }, [3967] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, [3968] = { - [sym_type_constraints] = STATE(4181), - [sym_function_body] = STATE(3509), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(7024), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_RPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = 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_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(4124), - [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__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [3969] = { - [sym_value_arguments] = STATE(3418), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_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_by] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_while] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_where] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_get] = ACTIONS(4970), + [anon_sym_set] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_QMARK_COLON] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_BANGin] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4970), + [anon_sym_BANGis] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_as_QMARK] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4972), + [anon_sym_suspend] = ACTIONS(4970), + [anon_sym_sealed] = ACTIONS(4970), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4970), + [anon_sym_inner] = ACTIONS(4970), + [anon_sym_value] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_lateinit] = ACTIONS(4970), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_internal] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_tailrec] = ACTIONS(4970), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_infix] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym_external] = ACTIONS(4970), + [sym_property_modifier] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_open] = ACTIONS(4970), + [anon_sym_vararg] = ACTIONS(4970), + [anon_sym_noinline] = ACTIONS(4970), + [anon_sym_crossinline] = ACTIONS(4970), + [anon_sym_expect] = ACTIONS(4970), + [anon_sym_actual] = ACTIONS(4970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), [sym_multiline_comment] = ACTIONS(3), }, [3970] = { - [sym_value_arguments] = STATE(3362), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(7030), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(5195), + [anon_sym_AT] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_RBRACE] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5195), + [anon_sym_GT] = ACTIONS(5195), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5195), + [anon_sym_set] = ACTIONS(5195), + [anon_sym_STAR] = ACTIONS(5195), + [sym_label] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5197), + [anon_sym_QMARK_COLON] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_else] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_PLUS_EQ] = ACTIONS(5197), + [anon_sym_DASH_EQ] = ACTIONS(5197), + [anon_sym_STAR_EQ] = ACTIONS(5197), + [anon_sym_SLASH_EQ] = ACTIONS(5197), + [anon_sym_PERCENT_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5197), + [anon_sym_LT_EQ] = ACTIONS(5197), + [anon_sym_GT_EQ] = ACTIONS(5197), + [anon_sym_BANGin] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_BANGis] = ACTIONS(5197), + [anon_sym_PLUS] = ACTIONS(5195), + [anon_sym_DASH] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5195), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_as_QMARK] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5197), + [anon_sym_BANG_BANG] = ACTIONS(5197), + [anon_sym_suspend] = ACTIONS(5195), + [anon_sym_sealed] = ACTIONS(5195), + [anon_sym_annotation] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5195), + [anon_sym_inner] = ACTIONS(5195), + [anon_sym_value] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_lateinit] = ACTIONS(5195), + [anon_sym_public] = ACTIONS(5195), + [anon_sym_private] = ACTIONS(5195), + [anon_sym_internal] = ACTIONS(5195), + [anon_sym_protected] = ACTIONS(5195), + [anon_sym_tailrec] = ACTIONS(5195), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_infix] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym_external] = ACTIONS(5195), + [sym_property_modifier] = ACTIONS(5195), + [anon_sym_abstract] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_open] = ACTIONS(5195), + [anon_sym_vararg] = ACTIONS(5195), + [anon_sym_noinline] = ACTIONS(5195), + [anon_sym_crossinline] = ACTIONS(5195), + [anon_sym_expect] = ACTIONS(5195), + [anon_sym_actual] = ACTIONS(5195), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5197), + [sym__automatic_semicolon] = ACTIONS(5197), + [sym_safe_nav] = ACTIONS(5197), + [sym_multiline_comment] = ACTIONS(3), }, [3971] = { - [sym_type_constraints] = STATE(4180), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_get] = ACTIONS(4958), + [anon_sym_set] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4960), + [anon_sym_QMARK_COLON] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_BANGin] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_BANGis] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_as_QMARK] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4960), + [anon_sym_suspend] = ACTIONS(4958), + [anon_sym_sealed] = ACTIONS(4958), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4958), + [anon_sym_inner] = ACTIONS(4958), + [anon_sym_value] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_lateinit] = ACTIONS(4958), + [anon_sym_public] = ACTIONS(4958), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_internal] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_tailrec] = ACTIONS(4958), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_infix] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym_external] = ACTIONS(4958), + [sym_property_modifier] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_open] = ACTIONS(4958), + [anon_sym_vararg] = ACTIONS(4958), + [anon_sym_noinline] = ACTIONS(4958), + [anon_sym_crossinline] = ACTIONS(4958), + [anon_sym_expect] = ACTIONS(4958), + [anon_sym_actual] = ACTIONS(4958), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), [sym_multiline_comment] = ACTIONS(3), }, [3972] = { - [sym_class_body] = STATE(3333), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(7034), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_RBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_DASH_GT] = ACTIONS(4522), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_while] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3973] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_DASH_GT] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [3974] = { - [sym_function_body] = STATE(3339), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7054), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [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), + [aux_sym__delegation_specifiers_repeat1] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_null] = ACTIONS(4736), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, [3975] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(7056), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(7187), + [anon_sym_AT] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_typealias] = ACTIONS(7187), + [anon_sym_class] = ACTIONS(7187), + [anon_sym_interface] = ACTIONS(7187), + [anon_sym_enum] = ACTIONS(7187), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LPAREN] = ACTIONS(7189), + [anon_sym_val] = ACTIONS(7187), + [anon_sym_var] = ACTIONS(7187), + [anon_sym_object] = ACTIONS(7187), + [anon_sym_fun] = ACTIONS(7187), + [anon_sym_get] = ACTIONS(7187), + [anon_sym_set] = ACTIONS(7187), + [anon_sym_this] = ACTIONS(7187), + [anon_sym_super] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7189), + [sym_label] = ACTIONS(7187), + [anon_sym_for] = ACTIONS(7187), + [anon_sym_while] = ACTIONS(7187), + [anon_sym_do] = ACTIONS(7187), + [anon_sym_null] = ACTIONS(7187), + [anon_sym_if] = ACTIONS(7187), + [anon_sym_when] = ACTIONS(7187), + [anon_sym_try] = ACTIONS(7187), + [anon_sym_throw] = ACTIONS(7187), + [anon_sym_return] = ACTIONS(7187), + [anon_sym_continue] = ACTIONS(7187), + [anon_sym_break] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_BANG] = ACTIONS(7189), + [anon_sym_suspend] = ACTIONS(7187), + [anon_sym_sealed] = ACTIONS(7187), + [anon_sym_annotation] = ACTIONS(7187), + [anon_sym_data] = ACTIONS(7187), + [anon_sym_inner] = ACTIONS(7187), + [anon_sym_value] = ACTIONS(7187), + [anon_sym_override] = ACTIONS(7187), + [anon_sym_lateinit] = ACTIONS(7187), + [anon_sym_public] = ACTIONS(7187), + [anon_sym_private] = ACTIONS(7187), + [anon_sym_internal] = ACTIONS(7187), + [anon_sym_protected] = ACTIONS(7187), + [anon_sym_tailrec] = ACTIONS(7187), + [anon_sym_operator] = ACTIONS(7187), + [anon_sym_infix] = ACTIONS(7187), + [anon_sym_inline] = ACTIONS(7187), + [anon_sym_external] = ACTIONS(7187), + [sym_property_modifier] = ACTIONS(7187), + [anon_sym_abstract] = ACTIONS(7187), + [anon_sym_final] = ACTIONS(7187), + [anon_sym_open] = ACTIONS(7187), + [anon_sym_vararg] = ACTIONS(7187), + [anon_sym_noinline] = ACTIONS(7187), + [anon_sym_crossinline] = ACTIONS(7187), + [anon_sym_expect] = ACTIONS(7187), + [anon_sym_actual] = ACTIONS(7187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7189), + [anon_sym_continue_AT] = ACTIONS(7189), + [anon_sym_break_AT] = ACTIONS(7189), + [anon_sym_this_AT] = ACTIONS(7189), + [anon_sym_super_AT] = ACTIONS(7189), + [sym_real_literal] = ACTIONS(7189), + [sym_integer_literal] = ACTIONS(7187), + [sym_hex_literal] = ACTIONS(7189), + [sym_bin_literal] = ACTIONS(7189), + [anon_sym_true] = ACTIONS(7187), + [anon_sym_false] = ACTIONS(7187), + [anon_sym_SQUOTE] = ACTIONS(7189), + [sym__backtick_identifier] = ACTIONS(7189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7189), }, [3976] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(6853), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_typealias] = ACTIONS(5187), + [anon_sym_class] = ACTIONS(5187), + [anon_sym_interface] = ACTIONS(5187), + [anon_sym_enum] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_val] = ACTIONS(5187), + [anon_sym_var] = ACTIONS(5187), + [anon_sym_object] = ACTIONS(5187), + [anon_sym_fun] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_this] = ACTIONS(5187), + [anon_sym_super] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5189), + [sym_label] = ACTIONS(5187), + [anon_sym_for] = ACTIONS(5187), + [anon_sym_while] = ACTIONS(5187), + [anon_sym_do] = ACTIONS(5187), + [anon_sym_null] = ACTIONS(5187), + [anon_sym_if] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_try] = ACTIONS(5187), + [anon_sym_throw] = ACTIONS(5187), + [anon_sym_return] = ACTIONS(5187), + [anon_sym_continue] = ACTIONS(5187), + [anon_sym_break] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5189), + [anon_sym_continue_AT] = ACTIONS(5189), + [anon_sym_break_AT] = ACTIONS(5189), + [anon_sym_this_AT] = ACTIONS(5189), + [anon_sym_super_AT] = ACTIONS(5189), + [sym_real_literal] = ACTIONS(5189), + [sym_integer_literal] = ACTIONS(5187), + [sym_hex_literal] = ACTIONS(5189), + [sym_bin_literal] = ACTIONS(5189), + [anon_sym_true] = ACTIONS(5187), + [anon_sym_false] = ACTIONS(5187), + [anon_sym_SQUOTE] = ACTIONS(5189), + [sym__backtick_identifier] = ACTIONS(5189), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5189), }, [3977] = { - [sym_class_body] = STATE(3459), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(7058), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_RBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_RPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_DASH_GT] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_QMARK_COLON] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3160), + [anon_sym_sealed] = ACTIONS(3160), + [anon_sym_annotation] = ACTIONS(3160), + [anon_sym_data] = ACTIONS(3160), + [anon_sym_inner] = ACTIONS(3160), + [anon_sym_value] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_lateinit] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_internal] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_tailrec] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_infix] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_external] = ACTIONS(3160), + [sym_property_modifier] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_final] = ACTIONS(3160), + [anon_sym_open] = ACTIONS(3160), + [anon_sym_vararg] = ACTIONS(3160), + [anon_sym_noinline] = ACTIONS(3160), + [anon_sym_crossinline] = ACTIONS(3160), + [anon_sym_expect] = ACTIONS(3160), + [anon_sym_actual] = ACTIONS(3160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3162), [sym_multiline_comment] = ACTIONS(3), }, [3978] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5951), - [anon_sym_RPAREN] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [sym_label] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_PIPE_PIPE] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_PLUS_EQ] = ACTIONS(1810), + [anon_sym_DASH_EQ] = ACTIONS(1810), + [anon_sym_STAR_EQ] = ACTIONS(1810), + [anon_sym_SLASH_EQ] = ACTIONS(1810), + [anon_sym_PERCENT_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ] = ACTIONS(1808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_BANGin] = ACTIONS(1810), + [anon_sym_is] = ACTIONS(1808), + [anon_sym_BANGis] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1808), + [anon_sym_as_QMARK] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_suspend] = ACTIONS(1808), + [anon_sym_sealed] = ACTIONS(1808), + [anon_sym_annotation] = ACTIONS(1808), + [anon_sym_data] = ACTIONS(1808), + [anon_sym_inner] = ACTIONS(1808), + [anon_sym_value] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_lateinit] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_internal] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_tailrec] = ACTIONS(1808), + [anon_sym_operator] = ACTIONS(1808), + [anon_sym_infix] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym_external] = ACTIONS(1808), + [sym_property_modifier] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_final] = ACTIONS(1808), + [anon_sym_open] = ACTIONS(1808), + [anon_sym_vararg] = ACTIONS(1808), + [anon_sym_noinline] = ACTIONS(1808), + [anon_sym_crossinline] = ACTIONS(1808), + [anon_sym_expect] = ACTIONS(1808), + [anon_sym_actual] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, [3979] = { - [sym__alpha_identifier] = ACTIONS(4101), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_typealias] = ACTIONS(4101), - [anon_sym_class] = ACTIONS(4101), - [anon_sym_interface] = ACTIONS(4101), - [anon_sym_enum] = ACTIONS(4101), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_val] = ACTIONS(4101), - [anon_sym_var] = ACTIONS(4101), - [anon_sym_object] = ACTIONS(4101), - [anon_sym_fun] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4101), - [anon_sym_set] = ACTIONS(4101), - [anon_sym_this] = ACTIONS(4101), - [anon_sym_super] = ACTIONS(4101), - [anon_sym_STAR] = ACTIONS(4103), - [sym_label] = ACTIONS(4101), - [anon_sym_for] = ACTIONS(4101), - [anon_sym_while] = ACTIONS(4101), - [anon_sym_do] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_if] = ACTIONS(4101), - [anon_sym_when] = ACTIONS(4101), - [anon_sym_try] = ACTIONS(4101), - [anon_sym_throw] = ACTIONS(4101), - [anon_sym_return] = ACTIONS(4101), - [anon_sym_continue] = ACTIONS(4101), - [anon_sym_break] = ACTIONS(4101), - [anon_sym_COLON_COLON] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4103), - [anon_sym_suspend] = ACTIONS(4101), - [anon_sym_sealed] = ACTIONS(4101), - [anon_sym_annotation] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4101), - [anon_sym_inner] = ACTIONS(4101), - [anon_sym_value] = ACTIONS(4101), - [anon_sym_override] = ACTIONS(4101), - [anon_sym_lateinit] = ACTIONS(4101), - [anon_sym_public] = ACTIONS(4101), - [anon_sym_private] = ACTIONS(4101), - [anon_sym_internal] = ACTIONS(4101), - [anon_sym_protected] = ACTIONS(4101), - [anon_sym_tailrec] = ACTIONS(4101), - [anon_sym_operator] = ACTIONS(4101), - [anon_sym_infix] = ACTIONS(4101), - [anon_sym_inline] = ACTIONS(4101), - [anon_sym_external] = ACTIONS(4101), - [sym_property_modifier] = ACTIONS(4101), - [anon_sym_abstract] = ACTIONS(4101), - [anon_sym_final] = ACTIONS(4101), - [anon_sym_open] = ACTIONS(4101), - [anon_sym_vararg] = ACTIONS(4101), - [anon_sym_noinline] = ACTIONS(4101), - [anon_sym_crossinline] = ACTIONS(4101), - [anon_sym_expect] = ACTIONS(4101), - [anon_sym_actual] = ACTIONS(4101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4103), - [anon_sym_continue_AT] = ACTIONS(4103), - [anon_sym_break_AT] = ACTIONS(4103), - [sym_real_literal] = ACTIONS(4103), - [sym_integer_literal] = ACTIONS(4101), - [sym_hex_literal] = ACTIONS(4103), - [sym_bin_literal] = ACTIONS(4103), - [anon_sym_true] = ACTIONS(4101), - [anon_sym_false] = ACTIONS(4101), - [anon_sym_SQUOTE] = ACTIONS(4103), - [sym__backtick_identifier] = ACTIONS(4103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4103), + [sym__alpha_identifier] = ACTIONS(7191), + [anon_sym_AT] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_typealias] = ACTIONS(7191), + [anon_sym_class] = ACTIONS(7191), + [anon_sym_interface] = ACTIONS(7191), + [anon_sym_enum] = ACTIONS(7191), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LPAREN] = ACTIONS(7193), + [anon_sym_val] = ACTIONS(7191), + [anon_sym_var] = ACTIONS(7191), + [anon_sym_object] = ACTIONS(7191), + [anon_sym_fun] = ACTIONS(7191), + [anon_sym_get] = ACTIONS(7191), + [anon_sym_set] = ACTIONS(7191), + [anon_sym_this] = ACTIONS(7191), + [anon_sym_super] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7193), + [sym_label] = ACTIONS(7191), + [anon_sym_for] = ACTIONS(7191), + [anon_sym_while] = ACTIONS(7191), + [anon_sym_do] = ACTIONS(7191), + [anon_sym_null] = ACTIONS(7191), + [anon_sym_if] = ACTIONS(7191), + [anon_sym_when] = ACTIONS(7191), + [anon_sym_try] = ACTIONS(7191), + [anon_sym_throw] = ACTIONS(7191), + [anon_sym_return] = ACTIONS(7191), + [anon_sym_continue] = ACTIONS(7191), + [anon_sym_break] = ACTIONS(7191), + [anon_sym_COLON_COLON] = ACTIONS(7193), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_BANG] = ACTIONS(7193), + [anon_sym_suspend] = ACTIONS(7191), + [anon_sym_sealed] = ACTIONS(7191), + [anon_sym_annotation] = ACTIONS(7191), + [anon_sym_data] = ACTIONS(7191), + [anon_sym_inner] = ACTIONS(7191), + [anon_sym_value] = ACTIONS(7191), + [anon_sym_override] = ACTIONS(7191), + [anon_sym_lateinit] = ACTIONS(7191), + [anon_sym_public] = ACTIONS(7191), + [anon_sym_private] = ACTIONS(7191), + [anon_sym_internal] = ACTIONS(7191), + [anon_sym_protected] = ACTIONS(7191), + [anon_sym_tailrec] = ACTIONS(7191), + [anon_sym_operator] = ACTIONS(7191), + [anon_sym_infix] = ACTIONS(7191), + [anon_sym_inline] = ACTIONS(7191), + [anon_sym_external] = ACTIONS(7191), + [sym_property_modifier] = ACTIONS(7191), + [anon_sym_abstract] = ACTIONS(7191), + [anon_sym_final] = ACTIONS(7191), + [anon_sym_open] = ACTIONS(7191), + [anon_sym_vararg] = ACTIONS(7191), + [anon_sym_noinline] = ACTIONS(7191), + [anon_sym_crossinline] = ACTIONS(7191), + [anon_sym_expect] = ACTIONS(7191), + [anon_sym_actual] = ACTIONS(7191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7193), + [anon_sym_continue_AT] = ACTIONS(7193), + [anon_sym_break_AT] = ACTIONS(7193), + [anon_sym_this_AT] = ACTIONS(7193), + [anon_sym_super_AT] = ACTIONS(7193), + [sym_real_literal] = ACTIONS(7193), + [sym_integer_literal] = ACTIONS(7191), + [sym_hex_literal] = ACTIONS(7193), + [sym_bin_literal] = ACTIONS(7193), + [anon_sym_true] = ACTIONS(7191), + [anon_sym_false] = ACTIONS(7191), + [anon_sym_SQUOTE] = ACTIONS(7193), + [sym__backtick_identifier] = ACTIONS(7193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7193), }, [3980] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [3981] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), }, [3982] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7060), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [3983] = { - [sym_type_constraints] = STATE(4141), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(7062), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), [sym_multiline_comment] = ACTIONS(3), }, [3984] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_DASH_GT] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [3985] = { - [sym_type_constraints] = STATE(3088), - [sym_enum_class_body] = STATE(3262), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(7068), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4272), - [anon_sym_fun] = ACTIONS(4272), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_this] = ACTIONS(4272), - [anon_sym_super] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_null] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_try] = ACTIONS(4272), - [anon_sym_throw] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4274), - [anon_sym_continue_AT] = ACTIONS(4274), - [anon_sym_break_AT] = ACTIONS(4274), - [sym_real_literal] = ACTIONS(4274), - [sym_integer_literal] = ACTIONS(4272), - [sym_hex_literal] = ACTIONS(4274), - [sym_bin_literal] = ACTIONS(4274), - [anon_sym_true] = ACTIONS(4272), - [anon_sym_false] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4274), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4274), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7195), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), }, [3986] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_get] = ACTIONS(4898), + [anon_sym_set] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [sym_label] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_QMARK_COLON] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_BANGin] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_BANGis] = ACTIONS(4900), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_as_QMARK] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_BANG_BANG] = ACTIONS(4900), + [anon_sym_suspend] = ACTIONS(4898), + [anon_sym_sealed] = ACTIONS(4898), + [anon_sym_annotation] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4898), + [anon_sym_inner] = ACTIONS(4898), + [anon_sym_value] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_lateinit] = ACTIONS(4898), + [anon_sym_public] = ACTIONS(4898), + [anon_sym_private] = ACTIONS(4898), + [anon_sym_internal] = ACTIONS(4898), + [anon_sym_protected] = ACTIONS(4898), + [anon_sym_tailrec] = ACTIONS(4898), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_infix] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym_external] = ACTIONS(4898), + [sym_property_modifier] = ACTIONS(4898), + [anon_sym_abstract] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_open] = ACTIONS(4898), + [anon_sym_vararg] = ACTIONS(4898), + [anon_sym_noinline] = ACTIONS(4898), + [anon_sym_crossinline] = ACTIONS(4898), + [anon_sym_expect] = ACTIONS(4898), + [anon_sym_actual] = ACTIONS(4898), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4900), + [sym__automatic_semicolon] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), [sym_multiline_comment] = ACTIONS(3), }, [3987] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7070), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_while] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(5205), + [anon_sym_AT] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5205), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_get] = ACTIONS(5205), + [anon_sym_set] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [sym_label] = ACTIONS(5207), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_else] = ACTIONS(5205), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [anon_sym_PLUS_EQ] = ACTIONS(5207), + [anon_sym_DASH_EQ] = ACTIONS(5207), + [anon_sym_STAR_EQ] = ACTIONS(5207), + [anon_sym_SLASH_EQ] = ACTIONS(5207), + [anon_sym_PERCENT_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_BANGin] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5205), + [anon_sym_BANGis] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5205), + [anon_sym_as_QMARK] = ACTIONS(5207), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_BANG_BANG] = ACTIONS(5207), + [anon_sym_suspend] = ACTIONS(5205), + [anon_sym_sealed] = ACTIONS(5205), + [anon_sym_annotation] = ACTIONS(5205), + [anon_sym_data] = ACTIONS(5205), + [anon_sym_inner] = ACTIONS(5205), + [anon_sym_value] = ACTIONS(5205), + [anon_sym_override] = ACTIONS(5205), + [anon_sym_lateinit] = ACTIONS(5205), + [anon_sym_public] = ACTIONS(5205), + [anon_sym_private] = ACTIONS(5205), + [anon_sym_internal] = ACTIONS(5205), + [anon_sym_protected] = ACTIONS(5205), + [anon_sym_tailrec] = ACTIONS(5205), + [anon_sym_operator] = ACTIONS(5205), + [anon_sym_infix] = ACTIONS(5205), + [anon_sym_inline] = ACTIONS(5205), + [anon_sym_external] = ACTIONS(5205), + [sym_property_modifier] = ACTIONS(5205), + [anon_sym_abstract] = ACTIONS(5205), + [anon_sym_final] = ACTIONS(5205), + [anon_sym_open] = ACTIONS(5205), + [anon_sym_vararg] = ACTIONS(5205), + [anon_sym_noinline] = ACTIONS(5205), + [anon_sym_crossinline] = ACTIONS(5205), + [anon_sym_expect] = ACTIONS(5205), + [anon_sym_actual] = ACTIONS(5205), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5207), + [sym__automatic_semicolon] = ACTIONS(5207), + [sym_safe_nav] = ACTIONS(5207), [sym_multiline_comment] = ACTIONS(3), }, [3988] = { - [sym__alpha_identifier] = ACTIONS(4171), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(4173), - [anon_sym_typealias] = ACTIONS(4171), - [anon_sym_class] = ACTIONS(4171), - [anon_sym_interface] = ACTIONS(4171), - [anon_sym_enum] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_val] = ACTIONS(4171), - [anon_sym_var] = ACTIONS(4171), - [anon_sym_object] = ACTIONS(4171), - [anon_sym_fun] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_get] = ACTIONS(4171), - [anon_sym_set] = ACTIONS(4171), - [anon_sym_this] = ACTIONS(4171), - [anon_sym_super] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4173), - [sym_label] = ACTIONS(4171), - [anon_sym_for] = ACTIONS(4171), - [anon_sym_while] = ACTIONS(4171), - [anon_sym_do] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4171), - [anon_sym_if] = ACTIONS(4171), - [anon_sym_when] = ACTIONS(4171), - [anon_sym_try] = ACTIONS(4171), - [anon_sym_throw] = ACTIONS(4171), - [anon_sym_return] = ACTIONS(4171), - [anon_sym_continue] = ACTIONS(4171), - [anon_sym_break] = ACTIONS(4171), - [anon_sym_COLON_COLON] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_PLUS_PLUS] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(4173), - [anon_sym_suspend] = ACTIONS(4171), - [anon_sym_sealed] = ACTIONS(4171), - [anon_sym_annotation] = ACTIONS(4171), - [anon_sym_data] = ACTIONS(4171), - [anon_sym_inner] = ACTIONS(4171), - [anon_sym_value] = ACTIONS(4171), - [anon_sym_override] = ACTIONS(4171), - [anon_sym_lateinit] = ACTIONS(4171), - [anon_sym_public] = ACTIONS(4171), - [anon_sym_private] = ACTIONS(4171), - [anon_sym_internal] = ACTIONS(4171), - [anon_sym_protected] = ACTIONS(4171), - [anon_sym_tailrec] = ACTIONS(4171), - [anon_sym_operator] = ACTIONS(4171), - [anon_sym_infix] = ACTIONS(4171), - [anon_sym_inline] = ACTIONS(4171), - [anon_sym_external] = ACTIONS(4171), - [sym_property_modifier] = ACTIONS(4171), - [anon_sym_abstract] = ACTIONS(4171), - [anon_sym_final] = ACTIONS(4171), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_vararg] = ACTIONS(4171), - [anon_sym_noinline] = ACTIONS(4171), - [anon_sym_crossinline] = ACTIONS(4171), - [anon_sym_expect] = ACTIONS(4171), - [anon_sym_actual] = ACTIONS(4171), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4173), - [anon_sym_continue_AT] = ACTIONS(4173), - [anon_sym_break_AT] = ACTIONS(4173), - [sym_real_literal] = ACTIONS(4173), - [sym_integer_literal] = ACTIONS(4171), - [sym_hex_literal] = ACTIONS(4173), - [sym_bin_literal] = ACTIONS(4173), - [anon_sym_true] = ACTIONS(4171), - [anon_sym_false] = ACTIONS(4171), - [anon_sym_SQUOTE] = ACTIONS(4173), - [sym__backtick_identifier] = ACTIONS(4173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4173), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), }, [3989] = { - [sym_type_constraints] = STATE(3124), - [sym_enum_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(4954), + [anon_sym_AT] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(4954), + [anon_sym_set] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_DOT_DOT] = ACTIONS(4956), + [anon_sym_QMARK_COLON] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_BANGin] = ACTIONS(4956), + [anon_sym_is] = ACTIONS(4954), + [anon_sym_BANGis] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_as_QMARK] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4956), + [anon_sym_suspend] = ACTIONS(4954), + [anon_sym_sealed] = ACTIONS(4954), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4954), + [anon_sym_inner] = ACTIONS(4954), + [anon_sym_value] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_lateinit] = ACTIONS(4954), + [anon_sym_public] = ACTIONS(4954), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_internal] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_tailrec] = ACTIONS(4954), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_infix] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym_external] = ACTIONS(4954), + [sym_property_modifier] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_open] = ACTIONS(4954), + [anon_sym_vararg] = ACTIONS(4954), + [anon_sym_noinline] = ACTIONS(4954), + [anon_sym_crossinline] = ACTIONS(4954), + [anon_sym_expect] = ACTIONS(4954), + [anon_sym_actual] = ACTIONS(4954), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4956), + [sym__automatic_semicolon] = ACTIONS(4956), + [sym_safe_nav] = ACTIONS(4956), + [sym_multiline_comment] = ACTIONS(3), }, [3990] = { - [sym_class_body] = STATE(3211), - [sym_type_constraints] = STATE(3137), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7072), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_COMMA] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_where] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4782), + [sym_label] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4782), + [anon_sym_DOT_DOT] = ACTIONS(4784), + [anon_sym_QMARK_COLON] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_PLUS_EQ] = ACTIONS(4784), + [anon_sym_DASH_EQ] = ACTIONS(4784), + [anon_sym_STAR_EQ] = ACTIONS(4784), + [anon_sym_SLASH_EQ] = ACTIONS(4784), + [anon_sym_PERCENT_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT_EQ] = ACTIONS(4784), + [anon_sym_GT_EQ] = ACTIONS(4784), + [anon_sym_BANGin] = ACTIONS(4784), + [anon_sym_is] = ACTIONS(4782), + [anon_sym_BANGis] = ACTIONS(4784), + [anon_sym_PLUS] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_SLASH] = ACTIONS(4782), + [anon_sym_PERCENT] = ACTIONS(4782), + [anon_sym_as_QMARK] = ACTIONS(4784), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_BANG_BANG] = ACTIONS(4784), + [anon_sym_suspend] = ACTIONS(4782), + [anon_sym_sealed] = ACTIONS(4782), + [anon_sym_annotation] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4782), + [anon_sym_inner] = ACTIONS(4782), + [anon_sym_value] = ACTIONS(4782), + [anon_sym_override] = ACTIONS(4782), + [anon_sym_lateinit] = ACTIONS(4782), + [anon_sym_public] = ACTIONS(4782), + [anon_sym_private] = ACTIONS(4782), + [anon_sym_internal] = ACTIONS(4782), + [anon_sym_protected] = ACTIONS(4782), + [anon_sym_tailrec] = ACTIONS(4782), + [anon_sym_operator] = ACTIONS(4782), + [anon_sym_infix] = ACTIONS(4782), + [anon_sym_inline] = ACTIONS(4782), + [anon_sym_external] = ACTIONS(4782), + [sym_property_modifier] = ACTIONS(4782), + [anon_sym_abstract] = ACTIONS(4782), + [anon_sym_final] = ACTIONS(4782), + [anon_sym_open] = ACTIONS(4782), + [anon_sym_vararg] = ACTIONS(4782), + [anon_sym_noinline] = ACTIONS(4782), + [anon_sym_crossinline] = ACTIONS(4782), + [anon_sym_expect] = ACTIONS(4782), + [anon_sym_actual] = ACTIONS(4782), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4784), + [sym__automatic_semicolon] = ACTIONS(4784), + [sym_safe_nav] = ACTIONS(4784), + [sym_multiline_comment] = ACTIONS(3), }, [3991] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5945), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_while] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7199), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [3992] = { - [sym_type_constraints] = STATE(4111), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(7074), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [3993] = { - [sym__alpha_identifier] = ACTIONS(4482), - [anon_sym_AT] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_constructor] = ACTIONS(4482), - [anon_sym_LBRACE] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_object] = ACTIONS(4482), - [anon_sym_fun] = ACTIONS(4482), - [anon_sym_get] = ACTIONS(4482), - [anon_sym_set] = ACTIONS(4482), - [anon_sym_this] = ACTIONS(4482), - [anon_sym_super] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4484), - [sym_label] = ACTIONS(4482), - [anon_sym_in] = ACTIONS(4482), - [anon_sym_null] = ACTIONS(4482), - [anon_sym_if] = ACTIONS(4482), - [anon_sym_else] = ACTIONS(4482), - [anon_sym_when] = ACTIONS(4482), - [anon_sym_try] = ACTIONS(4482), - [anon_sym_throw] = ACTIONS(4482), - [anon_sym_return] = ACTIONS(4482), - [anon_sym_continue] = ACTIONS(4482), - [anon_sym_break] = ACTIONS(4482), - [anon_sym_COLON_COLON] = ACTIONS(4484), - [anon_sym_BANGin] = ACTIONS(4484), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_BANGis] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_suspend] = ACTIONS(4482), - [anon_sym_sealed] = ACTIONS(4482), - [anon_sym_annotation] = ACTIONS(4482), - [anon_sym_data] = ACTIONS(4482), - [anon_sym_inner] = ACTIONS(4482), - [anon_sym_value] = ACTIONS(4482), - [anon_sym_override] = ACTIONS(4482), - [anon_sym_lateinit] = ACTIONS(4482), - [anon_sym_public] = ACTIONS(4482), - [anon_sym_private] = ACTIONS(4482), - [anon_sym_internal] = ACTIONS(4482), - [anon_sym_protected] = ACTIONS(4482), - [anon_sym_tailrec] = ACTIONS(4482), - [anon_sym_operator] = ACTIONS(4482), - [anon_sym_infix] = ACTIONS(4482), - [anon_sym_inline] = ACTIONS(4482), - [anon_sym_external] = ACTIONS(4482), - [sym_property_modifier] = ACTIONS(4482), - [anon_sym_abstract] = ACTIONS(4482), - [anon_sym_final] = ACTIONS(4482), - [anon_sym_open] = ACTIONS(4482), - [anon_sym_vararg] = ACTIONS(4482), - [anon_sym_noinline] = ACTIONS(4482), - [anon_sym_crossinline] = ACTIONS(4482), - [anon_sym_expect] = ACTIONS(4482), - [anon_sym_actual] = ACTIONS(4482), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4484), - [anon_sym_continue_AT] = ACTIONS(4484), - [anon_sym_break_AT] = ACTIONS(4484), - [sym_real_literal] = ACTIONS(4484), - [sym_integer_literal] = ACTIONS(4482), - [sym_hex_literal] = ACTIONS(4484), - [sym_bin_literal] = ACTIONS(4484), - [anon_sym_true] = ACTIONS(4482), - [anon_sym_false] = ACTIONS(4482), - [anon_sym_SQUOTE] = ACTIONS(4484), - [sym__backtick_identifier] = ACTIONS(4484), - [sym__automatic_semicolon] = ACTIONS(4484), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4484), + [sym__alpha_identifier] = ACTIONS(5187), + [anon_sym_AT] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(5189), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5189), + [anon_sym_RBRACE] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5187), + [anon_sym_GT] = ACTIONS(5187), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5187), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5187), + [anon_sym_set] = ACTIONS(5187), + [anon_sym_STAR] = ACTIONS(5187), + [sym_label] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5189), + [anon_sym_QMARK_COLON] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5189), + [anon_sym_PIPE_PIPE] = ACTIONS(5189), + [anon_sym_else] = ACTIONS(5187), + [anon_sym_COLON_COLON] = ACTIONS(5189), + [anon_sym_PLUS_EQ] = ACTIONS(5189), + [anon_sym_DASH_EQ] = ACTIONS(5189), + [anon_sym_STAR_EQ] = ACTIONS(5189), + [anon_sym_SLASH_EQ] = ACTIONS(5189), + [anon_sym_PERCENT_EQ] = ACTIONS(5189), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5189), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5189), + [anon_sym_LT_EQ] = ACTIONS(5189), + [anon_sym_GT_EQ] = ACTIONS(5189), + [anon_sym_BANGin] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_BANGis] = ACTIONS(5189), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_as_QMARK] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5189), + [anon_sym_DASH_DASH] = ACTIONS(5189), + [anon_sym_BANG_BANG] = ACTIONS(5189), + [anon_sym_suspend] = ACTIONS(5187), + [anon_sym_sealed] = ACTIONS(5187), + [anon_sym_annotation] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5187), + [anon_sym_inner] = ACTIONS(5187), + [anon_sym_value] = ACTIONS(5187), + [anon_sym_override] = ACTIONS(5187), + [anon_sym_lateinit] = ACTIONS(5187), + [anon_sym_public] = ACTIONS(5187), + [anon_sym_private] = ACTIONS(5187), + [anon_sym_internal] = ACTIONS(5187), + [anon_sym_protected] = ACTIONS(5187), + [anon_sym_tailrec] = ACTIONS(5187), + [anon_sym_operator] = ACTIONS(5187), + [anon_sym_infix] = ACTIONS(5187), + [anon_sym_inline] = ACTIONS(5187), + [anon_sym_external] = ACTIONS(5187), + [sym_property_modifier] = ACTIONS(5187), + [anon_sym_abstract] = ACTIONS(5187), + [anon_sym_final] = ACTIONS(5187), + [anon_sym_open] = ACTIONS(5187), + [anon_sym_vararg] = ACTIONS(5187), + [anon_sym_noinline] = ACTIONS(5187), + [anon_sym_crossinline] = ACTIONS(5187), + [anon_sym_expect] = ACTIONS(5187), + [anon_sym_actual] = ACTIONS(5187), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5189), + [sym__automatic_semicolon] = ACTIONS(5189), + [sym_safe_nav] = ACTIONS(5189), + [sym_multiline_comment] = ACTIONS(3), }, [3994] = { - [sym_type_constraints] = STATE(4167), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(7076), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4942), + [anon_sym_AT] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_where] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_get] = ACTIONS(4942), + [anon_sym_set] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4942), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_QMARK_COLON] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_BANGin] = ACTIONS(4944), + [anon_sym_is] = ACTIONS(4942), + [anon_sym_BANGis] = ACTIONS(4944), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_as_QMARK] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4944), + [anon_sym_suspend] = ACTIONS(4942), + [anon_sym_sealed] = ACTIONS(4942), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4942), + [anon_sym_inner] = ACTIONS(4942), + [anon_sym_value] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_lateinit] = ACTIONS(4942), + [anon_sym_public] = ACTIONS(4942), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_internal] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_tailrec] = ACTIONS(4942), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_infix] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym_external] = ACTIONS(4942), + [sym_property_modifier] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_open] = ACTIONS(4942), + [anon_sym_vararg] = ACTIONS(4942), + [anon_sym_noinline] = ACTIONS(4942), + [anon_sym_crossinline] = ACTIONS(4942), + [anon_sym_expect] = ACTIONS(4942), + [anon_sym_actual] = ACTIONS(4942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4944), + [sym__automatic_semicolon] = ACTIONS(4944), + [sym_safe_nav] = ACTIONS(4944), [sym_multiline_comment] = ACTIONS(3), }, [3995] = { - [sym_type_constraints] = STATE(3146), - [sym_enum_class_body] = STATE(3211), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7078), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_where] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_QMARK_COLON] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_BANGin] = ACTIONS(4976), + [anon_sym_is] = ACTIONS(4974), + [anon_sym_BANGis] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_as_QMARK] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4976), + [anon_sym_suspend] = ACTIONS(4974), + [anon_sym_sealed] = ACTIONS(4974), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4974), + [anon_sym_inner] = ACTIONS(4974), + [anon_sym_value] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_lateinit] = ACTIONS(4974), + [anon_sym_public] = ACTIONS(4974), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_internal] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_tailrec] = ACTIONS(4974), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_infix] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym_external] = ACTIONS(4974), + [sym_property_modifier] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_open] = ACTIONS(4974), + [anon_sym_vararg] = ACTIONS(4974), + [anon_sym_noinline] = ACTIONS(4974), + [anon_sym_crossinline] = ACTIONS(4974), + [anon_sym_expect] = ACTIONS(4974), + [anon_sym_actual] = ACTIONS(4974), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), + [sym_multiline_comment] = ACTIONS(3), }, [3996] = { - [sym_class_body] = STATE(3181), - [sym_type_constraints] = STATE(3173), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4938), + [anon_sym_AT] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_where] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_get] = ACTIONS(4938), + [anon_sym_set] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_QMARK_COLON] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_BANGin] = ACTIONS(4940), + [anon_sym_is] = ACTIONS(4938), + [anon_sym_BANGis] = ACTIONS(4940), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_as_QMARK] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4940), + [anon_sym_suspend] = ACTIONS(4938), + [anon_sym_sealed] = ACTIONS(4938), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4938), + [anon_sym_inner] = ACTIONS(4938), + [anon_sym_value] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_lateinit] = ACTIONS(4938), + [anon_sym_public] = ACTIONS(4938), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_internal] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_tailrec] = ACTIONS(4938), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_infix] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym_external] = ACTIONS(4938), + [sym_property_modifier] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_open] = ACTIONS(4938), + [anon_sym_vararg] = ACTIONS(4938), + [anon_sym_noinline] = ACTIONS(4938), + [anon_sym_crossinline] = ACTIONS(4938), + [anon_sym_expect] = ACTIONS(4938), + [anon_sym_actual] = ACTIONS(4938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4940), + [sym__automatic_semicolon] = ACTIONS(4940), + [sym_safe_nav] = ACTIONS(4940), + [sym_multiline_comment] = ACTIONS(3), }, [3997] = { - [sym_type_constraints] = STATE(4112), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(7080), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4934), + [anon_sym_AT] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_where] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_get] = ACTIONS(4934), + [anon_sym_set] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4934), + [anon_sym_DOT_DOT] = ACTIONS(4936), + [anon_sym_QMARK_COLON] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym_PLUS_EQ] = ACTIONS(4936), + [anon_sym_DASH_EQ] = ACTIONS(4936), + [anon_sym_STAR_EQ] = ACTIONS(4936), + [anon_sym_SLASH_EQ] = ACTIONS(4936), + [anon_sym_PERCENT_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4936), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_BANGin] = ACTIONS(4936), + [anon_sym_is] = ACTIONS(4934), + [anon_sym_BANGis] = ACTIONS(4936), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_as_QMARK] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4936), + [anon_sym_suspend] = ACTIONS(4934), + [anon_sym_sealed] = ACTIONS(4934), + [anon_sym_annotation] = ACTIONS(4934), + [anon_sym_data] = ACTIONS(4934), + [anon_sym_inner] = ACTIONS(4934), + [anon_sym_value] = ACTIONS(4934), + [anon_sym_override] = ACTIONS(4934), + [anon_sym_lateinit] = ACTIONS(4934), + [anon_sym_public] = ACTIONS(4934), + [anon_sym_private] = ACTIONS(4934), + [anon_sym_internal] = ACTIONS(4934), + [anon_sym_protected] = ACTIONS(4934), + [anon_sym_tailrec] = ACTIONS(4934), + [anon_sym_operator] = ACTIONS(4934), + [anon_sym_infix] = ACTIONS(4934), + [anon_sym_inline] = ACTIONS(4934), + [anon_sym_external] = ACTIONS(4934), + [sym_property_modifier] = ACTIONS(4934), + [anon_sym_abstract] = ACTIONS(4934), + [anon_sym_final] = ACTIONS(4934), + [anon_sym_open] = ACTIONS(4934), + [anon_sym_vararg] = ACTIONS(4934), + [anon_sym_noinline] = ACTIONS(4934), + [anon_sym_crossinline] = ACTIONS(4934), + [anon_sym_expect] = ACTIONS(4934), + [anon_sym_actual] = ACTIONS(4934), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4936), + [sym__automatic_semicolon] = ACTIONS(4936), + [sym_safe_nav] = ACTIONS(4936), [sym_multiline_comment] = ACTIONS(3), }, [3998] = { - [sym_type_constraints] = STATE(3170), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_fun] = ACTIONS(3194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_super] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_when] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3198), - [anon_sym_continue_AT] = ACTIONS(3198), - [anon_sym_break_AT] = ACTIONS(3198), - [sym_real_literal] = ACTIONS(3198), - [sym_integer_literal] = ACTIONS(3194), - [sym_hex_literal] = ACTIONS(3198), - [sym_bin_literal] = ACTIONS(3198), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_typealias] = ACTIONS(5159), + [anon_sym_class] = ACTIONS(5159), + [anon_sym_interface] = ACTIONS(5159), + [anon_sym_enum] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_val] = ACTIONS(5159), + [anon_sym_var] = ACTIONS(5159), + [anon_sym_object] = ACTIONS(5159), + [anon_sym_fun] = ACTIONS(5159), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5159), + [anon_sym_for] = ACTIONS(5159), + [anon_sym_while] = ACTIONS(5159), + [anon_sym_do] = ACTIONS(5159), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_if] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_try] = ACTIONS(5159), + [anon_sym_throw] = ACTIONS(5159), + [anon_sym_return] = ACTIONS(5159), + [anon_sym_continue] = ACTIONS(5159), + [anon_sym_break] = ACTIONS(5159), + [anon_sym_COLON_COLON] = ACTIONS(5161), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_suspend] = ACTIONS(5159), + [anon_sym_sealed] = ACTIONS(5159), + [anon_sym_annotation] = ACTIONS(5159), + [anon_sym_data] = ACTIONS(5159), + [anon_sym_inner] = ACTIONS(5159), + [anon_sym_value] = ACTIONS(5159), + [anon_sym_override] = ACTIONS(5159), + [anon_sym_lateinit] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_internal] = ACTIONS(5159), + [anon_sym_protected] = ACTIONS(5159), + [anon_sym_tailrec] = ACTIONS(5159), + [anon_sym_operator] = ACTIONS(5159), + [anon_sym_infix] = ACTIONS(5159), + [anon_sym_inline] = ACTIONS(5159), + [anon_sym_external] = ACTIONS(5159), + [sym_property_modifier] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_open] = ACTIONS(5159), + [anon_sym_vararg] = ACTIONS(5159), + [anon_sym_noinline] = ACTIONS(5159), + [anon_sym_crossinline] = ACTIONS(5159), + [anon_sym_expect] = ACTIONS(5159), + [anon_sym_actual] = ACTIONS(5159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5161), + [anon_sym_continue_AT] = ACTIONS(5161), + [anon_sym_break_AT] = ACTIONS(5161), + [anon_sym_this_AT] = ACTIONS(5161), + [anon_sym_super_AT] = ACTIONS(5161), + [sym_real_literal] = ACTIONS(5161), + [sym_integer_literal] = ACTIONS(5159), + [sym_hex_literal] = ACTIONS(5161), + [sym_bin_literal] = ACTIONS(5161), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5161), }, [3999] = { - [sym__alpha_identifier] = ACTIONS(4308), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_typealias] = ACTIONS(4308), - [anon_sym_class] = ACTIONS(4308), - [anon_sym_interface] = ACTIONS(4308), - [anon_sym_enum] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_val] = ACTIONS(4308), - [anon_sym_var] = ACTIONS(4308), - [anon_sym_object] = ACTIONS(4308), - [anon_sym_fun] = ACTIONS(4308), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_get] = ACTIONS(4308), - [anon_sym_set] = ACTIONS(4308), - [anon_sym_this] = ACTIONS(4308), - [anon_sym_super] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4310), - [sym_label] = ACTIONS(4308), - [anon_sym_for] = ACTIONS(4308), - [anon_sym_while] = ACTIONS(4308), - [anon_sym_do] = ACTIONS(4308), - [anon_sym_null] = ACTIONS(4308), - [anon_sym_if] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [anon_sym_try] = ACTIONS(4308), - [anon_sym_throw] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4308), - [anon_sym_continue] = ACTIONS(4308), - [anon_sym_break] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4310), - [anon_sym_DASH_DASH] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_suspend] = ACTIONS(4308), - [anon_sym_sealed] = ACTIONS(4308), - [anon_sym_annotation] = ACTIONS(4308), - [anon_sym_data] = ACTIONS(4308), - [anon_sym_inner] = ACTIONS(4308), - [anon_sym_value] = ACTIONS(4308), - [anon_sym_override] = ACTIONS(4308), - [anon_sym_lateinit] = ACTIONS(4308), - [anon_sym_public] = ACTIONS(4308), - [anon_sym_private] = ACTIONS(4308), - [anon_sym_internal] = ACTIONS(4308), - [anon_sym_protected] = ACTIONS(4308), - [anon_sym_tailrec] = ACTIONS(4308), - [anon_sym_operator] = ACTIONS(4308), - [anon_sym_infix] = ACTIONS(4308), - [anon_sym_inline] = ACTIONS(4308), - [anon_sym_external] = ACTIONS(4308), - [sym_property_modifier] = ACTIONS(4308), - [anon_sym_abstract] = ACTIONS(4308), - [anon_sym_final] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4308), - [anon_sym_vararg] = ACTIONS(4308), - [anon_sym_noinline] = ACTIONS(4308), - [anon_sym_crossinline] = ACTIONS(4308), - [anon_sym_expect] = ACTIONS(4308), - [anon_sym_actual] = ACTIONS(4308), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4310), - [anon_sym_continue_AT] = ACTIONS(4310), - [anon_sym_break_AT] = ACTIONS(4310), - [sym_real_literal] = ACTIONS(4310), - [sym_integer_literal] = ACTIONS(4308), - [sym_hex_literal] = ACTIONS(4310), - [sym_bin_literal] = ACTIONS(4310), - [anon_sym_true] = ACTIONS(4308), - [anon_sym_false] = ACTIONS(4308), - [anon_sym_SQUOTE] = ACTIONS(4310), - [sym__backtick_identifier] = ACTIONS(4310), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4310), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), }, [4000] = { - [sym_class_body] = STATE(3179), - [sym_type_constraints] = STATE(3163), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(7082), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(4266), - [anon_sym_fun] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_this] = ACTIONS(4266), - [anon_sym_super] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_when] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4268), - [anon_sym_continue_AT] = ACTIONS(4268), - [anon_sym_break_AT] = ACTIONS(4268), - [sym_real_literal] = ACTIONS(4268), - [sym_integer_literal] = ACTIONS(4266), - [sym_hex_literal] = ACTIONS(4268), - [sym_bin_literal] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4266), - [anon_sym_false] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4268), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4268), + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_suspend] = ACTIONS(4786), + [anon_sym_sealed] = ACTIONS(4786), + [anon_sym_annotation] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_value] = ACTIONS(4786), + [anon_sym_override] = ACTIONS(4786), + [anon_sym_lateinit] = ACTIONS(4786), + [anon_sym_public] = ACTIONS(4786), + [anon_sym_private] = ACTIONS(4786), + [anon_sym_internal] = ACTIONS(4786), + [anon_sym_protected] = ACTIONS(4786), + [anon_sym_tailrec] = ACTIONS(4786), + [anon_sym_operator] = ACTIONS(4786), + [anon_sym_infix] = ACTIONS(4786), + [anon_sym_inline] = ACTIONS(4786), + [anon_sym_external] = ACTIONS(4786), + [sym_property_modifier] = ACTIONS(4786), + [anon_sym_abstract] = ACTIONS(4786), + [anon_sym_final] = ACTIONS(4786), + [anon_sym_open] = ACTIONS(4786), + [anon_sym_vararg] = ACTIONS(4786), + [anon_sym_noinline] = ACTIONS(4786), + [anon_sym_crossinline] = ACTIONS(4786), + [anon_sym_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), + [sym_multiline_comment] = ACTIONS(3), }, [4001] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7084), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7086), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(5209), + [anon_sym_AT] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_get] = ACTIONS(5209), + [anon_sym_set] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [sym_label] = ACTIONS(5211), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_QMARK_COLON] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_else] = ACTIONS(5209), + [anon_sym_COLON_COLON] = ACTIONS(5211), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_BANGin] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5209), + [anon_sym_BANGis] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5209), + [anon_sym_as_QMARK] = ACTIONS(5211), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_BANG_BANG] = ACTIONS(5211), + [anon_sym_suspend] = ACTIONS(5209), + [anon_sym_sealed] = ACTIONS(5209), + [anon_sym_annotation] = ACTIONS(5209), + [anon_sym_data] = ACTIONS(5209), + [anon_sym_inner] = ACTIONS(5209), + [anon_sym_value] = ACTIONS(5209), + [anon_sym_override] = ACTIONS(5209), + [anon_sym_lateinit] = ACTIONS(5209), + [anon_sym_public] = ACTIONS(5209), + [anon_sym_private] = ACTIONS(5209), + [anon_sym_internal] = ACTIONS(5209), + [anon_sym_protected] = ACTIONS(5209), + [anon_sym_tailrec] = ACTIONS(5209), + [anon_sym_operator] = ACTIONS(5209), + [anon_sym_infix] = ACTIONS(5209), + [anon_sym_inline] = ACTIONS(5209), + [anon_sym_external] = ACTIONS(5209), + [sym_property_modifier] = ACTIONS(5209), + [anon_sym_abstract] = ACTIONS(5209), + [anon_sym_final] = ACTIONS(5209), + [anon_sym_open] = ACTIONS(5209), + [anon_sym_vararg] = ACTIONS(5209), + [anon_sym_noinline] = ACTIONS(5209), + [anon_sym_crossinline] = ACTIONS(5209), + [anon_sym_expect] = ACTIONS(5209), + [anon_sym_actual] = ACTIONS(5209), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5211), + [sym__automatic_semicolon] = ACTIONS(5211), + [sym_safe_nav] = ACTIONS(5211), [sym_multiline_comment] = ACTIONS(3), }, [4002] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7086), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4481), + [anon_sym_AT] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_as] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_COMMA] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_get] = ACTIONS(4481), + [anon_sym_set] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [sym_label] = ACTIONS(4483), + [anon_sym_in] = ACTIONS(4481), + [anon_sym_DOT_DOT] = ACTIONS(4483), + [anon_sym_QMARK_COLON] = ACTIONS(4483), + [anon_sym_AMP_AMP] = ACTIONS(4483), + [anon_sym_PIPE_PIPE] = ACTIONS(4483), + [anon_sym_else] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4483), + [anon_sym_PLUS_EQ] = ACTIONS(4483), + [anon_sym_DASH_EQ] = ACTIONS(4483), + [anon_sym_STAR_EQ] = ACTIONS(4483), + [anon_sym_SLASH_EQ] = ACTIONS(4483), + [anon_sym_PERCENT_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ] = ACTIONS(4481), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ] = ACTIONS(4481), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4481), + [anon_sym_BANGis] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_as_QMARK] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(4483), + [anon_sym_DASH_DASH] = ACTIONS(4483), + [anon_sym_BANG_BANG] = ACTIONS(4483), + [anon_sym_suspend] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_annotation] = ACTIONS(4481), + [anon_sym_data] = ACTIONS(4481), + [anon_sym_inner] = ACTIONS(4481), + [anon_sym_value] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_lateinit] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_tailrec] = ACTIONS(4481), + [anon_sym_operator] = ACTIONS(4481), + [anon_sym_infix] = ACTIONS(4481), + [anon_sym_inline] = ACTIONS(4481), + [anon_sym_external] = ACTIONS(4481), + [sym_property_modifier] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_final] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4481), + [anon_sym_vararg] = ACTIONS(4481), + [anon_sym_noinline] = ACTIONS(4481), + [anon_sym_crossinline] = ACTIONS(4481), + [anon_sym_expect] = ACTIONS(4481), + [anon_sym_actual] = ACTIONS(4481), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4483), + [sym__automatic_semicolon] = ACTIONS(4483), + [sym_safe_nav] = ACTIONS(4483), [sym_multiline_comment] = ACTIONS(3), }, [4003] = { - [sym_type_constraints] = STATE(4135), - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(5024), + [anon_sym_AT] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym_get] = ACTIONS(5024), + [anon_sym_set] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_QMARK_COLON] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(7138), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_BANGin] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_BANGis] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_as_QMARK] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5026), + [anon_sym_suspend] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_annotation] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5024), + [anon_sym_inner] = ACTIONS(5024), + [anon_sym_value] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_lateinit] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_tailrec] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_infix] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym_external] = ACTIONS(5024), + [sym_property_modifier] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_open] = ACTIONS(5024), + [anon_sym_vararg] = ACTIONS(5024), + [anon_sym_noinline] = ACTIONS(5024), + [anon_sym_crossinline] = ACTIONS(5024), + [anon_sym_expect] = ACTIONS(5024), + [anon_sym_actual] = ACTIONS(5024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5026), + [sym__automatic_semicolon] = ACTIONS(5026), + [sym_safe_nav] = ACTIONS(5026), [sym_multiline_comment] = ACTIONS(3), }, [4004] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym__alpha_identifier] = ACTIONS(7090), - [anon_sym_AT] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_typealias] = ACTIONS(7090), - [anon_sym_class] = ACTIONS(7090), - [anon_sym_interface] = ACTIONS(7090), - [anon_sym_enum] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_val] = ACTIONS(7090), - [anon_sym_var] = ACTIONS(7090), - [anon_sym_object] = ACTIONS(7090), - [anon_sym_fun] = ACTIONS(7090), - [anon_sym_get] = ACTIONS(7090), - [anon_sym_set] = ACTIONS(7090), - [anon_sym_this] = ACTIONS(7090), - [anon_sym_super] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(1415), - [sym_label] = ACTIONS(7090), - [anon_sym_for] = ACTIONS(7090), - [anon_sym_while] = ACTIONS(7090), - [anon_sym_do] = ACTIONS(7090), - [anon_sym_null] = ACTIONS(7090), - [anon_sym_if] = ACTIONS(7090), - [anon_sym_when] = ACTIONS(7090), - [anon_sym_try] = ACTIONS(7090), - [anon_sym_throw] = ACTIONS(7090), - [anon_sym_return] = ACTIONS(7090), - [anon_sym_continue] = ACTIONS(7090), - [anon_sym_break] = ACTIONS(7090), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_suspend] = ACTIONS(7090), - [anon_sym_sealed] = ACTIONS(7090), - [anon_sym_annotation] = ACTIONS(7090), - [anon_sym_data] = ACTIONS(7090), - [anon_sym_inner] = ACTIONS(7090), - [anon_sym_value] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_lateinit] = ACTIONS(7090), - [anon_sym_public] = ACTIONS(7090), - [anon_sym_private] = ACTIONS(7090), - [anon_sym_internal] = ACTIONS(7090), - [anon_sym_protected] = ACTIONS(7090), - [anon_sym_tailrec] = ACTIONS(7090), - [anon_sym_operator] = ACTIONS(7090), - [anon_sym_infix] = ACTIONS(7090), - [anon_sym_inline] = ACTIONS(7090), - [anon_sym_external] = ACTIONS(7090), - [sym_property_modifier] = ACTIONS(7090), - [anon_sym_abstract] = ACTIONS(7090), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_open] = ACTIONS(7090), - [anon_sym_vararg] = ACTIONS(7090), - [anon_sym_noinline] = ACTIONS(7090), - [anon_sym_crossinline] = ACTIONS(7090), - [anon_sym_expect] = ACTIONS(7090), - [anon_sym_actual] = ACTIONS(7090), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1415), - [anon_sym_continue_AT] = ACTIONS(1415), - [anon_sym_break_AT] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(7090), - [sym_hex_literal] = ACTIONS(1415), - [sym_bin_literal] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(7090), - [anon_sym_false] = ACTIONS(7090), - [anon_sym_SQUOTE] = ACTIONS(1415), - [sym__backtick_identifier] = ACTIONS(1415), + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1415), }, [4005] = { - [sym_type_constraints] = STATE(4161), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - }, - [4006] = { - [sym_type_constraints] = STATE(4144), - [sym_function_body] = STATE(3828), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(7094), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [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(5416), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [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_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(4124), - [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__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_suspend] = ACTIONS(4094), + [anon_sym_sealed] = ACTIONS(4094), + [anon_sym_annotation] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_override] = ACTIONS(4094), + [anon_sym_lateinit] = ACTIONS(4094), + [anon_sym_public] = ACTIONS(4094), + [anon_sym_private] = ACTIONS(4094), + [anon_sym_internal] = ACTIONS(4094), + [anon_sym_protected] = ACTIONS(4094), + [anon_sym_tailrec] = ACTIONS(4094), + [anon_sym_operator] = ACTIONS(4094), + [anon_sym_infix] = ACTIONS(4094), + [anon_sym_inline] = ACTIONS(4094), + [anon_sym_external] = ACTIONS(4094), + [sym_property_modifier] = ACTIONS(4094), + [anon_sym_abstract] = ACTIONS(4094), + [anon_sym_final] = ACTIONS(4094), + [anon_sym_open] = ACTIONS(4094), + [anon_sym_vararg] = ACTIONS(4094), + [anon_sym_noinline] = ACTIONS(4094), + [anon_sym_crossinline] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4096), + [sym__automatic_semicolon] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), + [sym_multiline_comment] = ACTIONS(3), + }, + [4006] = { + [sym__alpha_identifier] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3113), + [anon_sym_set] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [sym_label] = ACTIONS(3115), + [anon_sym_in] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_QMARK_COLON] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_BANGin] = ACTIONS(3115), + [anon_sym_is] = ACTIONS(3113), + [anon_sym_BANGis] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_as_QMARK] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(3115), + [anon_sym_suspend] = ACTIONS(3113), + [anon_sym_sealed] = ACTIONS(3113), + [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_data] = ACTIONS(3113), + [anon_sym_inner] = ACTIONS(3113), + [anon_sym_value] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_lateinit] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_internal] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_tailrec] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_infix] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_external] = ACTIONS(3113), + [sym_property_modifier] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_vararg] = ACTIONS(3113), + [anon_sym_noinline] = ACTIONS(3113), + [anon_sym_crossinline] = ACTIONS(3113), + [anon_sym_expect] = ACTIONS(3113), + [anon_sym_actual] = ACTIONS(3113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(3115), [sym_multiline_comment] = ACTIONS(3), }, [4007] = { - [sym_class_body] = STATE(3234), - [sym_type_constraints] = STATE(3130), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_fun] = ACTIONS(3204), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3204), - [anon_sym_super] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3204), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_when] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3208), - [anon_sym_continue_AT] = ACTIONS(3208), - [anon_sym_break_AT] = ACTIONS(3208), - [sym_real_literal] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(3204), - [sym_hex_literal] = ACTIONS(3208), - [sym_bin_literal] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3204), - [anon_sym_false] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3208), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3208), + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_LPAREN] = ACTIONS(4792), + [anon_sym_COMMA] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_where] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_get] = ACTIONS(4790), + [anon_sym_set] = ACTIONS(4790), + [anon_sym_STAR] = ACTIONS(4790), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4790), + [anon_sym_DOT_DOT] = ACTIONS(4792), + [anon_sym_QMARK_COLON] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4790), + [anon_sym_COLON_COLON] = ACTIONS(4792), + [anon_sym_PLUS_EQ] = ACTIONS(4792), + [anon_sym_DASH_EQ] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4792), + [anon_sym_SLASH_EQ] = ACTIONS(4792), + [anon_sym_PERCENT_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT_EQ] = ACTIONS(4792), + [anon_sym_GT_EQ] = ACTIONS(4792), + [anon_sym_BANGin] = ACTIONS(4792), + [anon_sym_is] = ACTIONS(4790), + [anon_sym_BANGis] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4790), + [anon_sym_SLASH] = ACTIONS(4790), + [anon_sym_PERCENT] = ACTIONS(4790), + [anon_sym_as_QMARK] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4792), + [anon_sym_suspend] = ACTIONS(4790), + [anon_sym_sealed] = ACTIONS(4790), + [anon_sym_annotation] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4790), + [anon_sym_inner] = ACTIONS(4790), + [anon_sym_value] = ACTIONS(4790), + [anon_sym_override] = ACTIONS(4790), + [anon_sym_lateinit] = ACTIONS(4790), + [anon_sym_public] = ACTIONS(4790), + [anon_sym_private] = ACTIONS(4790), + [anon_sym_internal] = ACTIONS(4790), + [anon_sym_protected] = ACTIONS(4790), + [anon_sym_tailrec] = ACTIONS(4790), + [anon_sym_operator] = ACTIONS(4790), + [anon_sym_infix] = ACTIONS(4790), + [anon_sym_inline] = ACTIONS(4790), + [anon_sym_external] = ACTIONS(4790), + [sym_property_modifier] = ACTIONS(4790), + [anon_sym_abstract] = ACTIONS(4790), + [anon_sym_final] = ACTIONS(4790), + [anon_sym_open] = ACTIONS(4790), + [anon_sym_vararg] = ACTIONS(4790), + [anon_sym_noinline] = ACTIONS(4790), + [anon_sym_crossinline] = ACTIONS(4790), + [anon_sym_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4792), + [sym__automatic_semicolon] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), + [sym_multiline_comment] = ACTIONS(3), }, [4008] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_while] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [4009] = { - [sym_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(7096), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), + [sym_multiline_comment] = ACTIONS(3), }, [4010] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_RPAREN] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_value] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), [sym_multiline_comment] = ACTIONS(3), }, [4011] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_RBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4012] = { - [sym_class_body] = STATE(3176), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(7098), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7205), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, [4013] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4014] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4834), + [anon_sym_AT] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_LT] = ACTIONS(4834), + [anon_sym_GT] = ACTIONS(4834), + [anon_sym_where] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4834), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_get] = ACTIONS(4834), + [anon_sym_set] = ACTIONS(4834), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(4836), + [anon_sym_in] = ACTIONS(4834), + [anon_sym_DOT_DOT] = ACTIONS(4836), + [anon_sym_QMARK_COLON] = ACTIONS(4836), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_PIPE_PIPE] = ACTIONS(4836), + [anon_sym_else] = ACTIONS(4834), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_PLUS_EQ] = ACTIONS(4836), + [anon_sym_DASH_EQ] = ACTIONS(4836), + [anon_sym_STAR_EQ] = ACTIONS(4836), + [anon_sym_SLASH_EQ] = ACTIONS(4836), + [anon_sym_PERCENT_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4836), + [anon_sym_LT_EQ] = ACTIONS(4836), + [anon_sym_GT_EQ] = ACTIONS(4836), + [anon_sym_BANGin] = ACTIONS(4836), + [anon_sym_is] = ACTIONS(4834), + [anon_sym_BANGis] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_SLASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_BANG_BANG] = ACTIONS(4836), + [anon_sym_suspend] = ACTIONS(4834), + [anon_sym_sealed] = ACTIONS(4834), + [anon_sym_annotation] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4834), + [anon_sym_inner] = ACTIONS(4834), + [anon_sym_value] = ACTIONS(4834), + [anon_sym_override] = ACTIONS(4834), + [anon_sym_lateinit] = ACTIONS(4834), + [anon_sym_public] = ACTIONS(4834), + [anon_sym_private] = ACTIONS(4834), + [anon_sym_internal] = ACTIONS(4834), + [anon_sym_protected] = ACTIONS(4834), + [anon_sym_tailrec] = ACTIONS(4834), + [anon_sym_operator] = ACTIONS(4834), + [anon_sym_infix] = ACTIONS(4834), + [anon_sym_inline] = ACTIONS(4834), + [anon_sym_external] = ACTIONS(4834), + [sym_property_modifier] = ACTIONS(4834), + [anon_sym_abstract] = ACTIONS(4834), + [anon_sym_final] = ACTIONS(4834), + [anon_sym_open] = ACTIONS(4834), + [anon_sym_vararg] = ACTIONS(4834), + [anon_sym_noinline] = ACTIONS(4834), + [anon_sym_crossinline] = ACTIONS(4834), + [anon_sym_expect] = ACTIONS(4834), + [anon_sym_actual] = ACTIONS(4834), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4836), + [sym__automatic_semicolon] = ACTIONS(4836), + [sym_safe_nav] = ACTIONS(4836), [sym_multiline_comment] = ACTIONS(3), }, [4015] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [4016] = { - [sym__alpha_identifier] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_typealias] = ACTIONS(4314), - [anon_sym_class] = ACTIONS(4314), - [anon_sym_interface] = ACTIONS(4314), - [anon_sym_enum] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_val] = ACTIONS(4314), - [anon_sym_var] = ACTIONS(4314), - [anon_sym_object] = ACTIONS(4314), - [anon_sym_fun] = ACTIONS(4314), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_get] = ACTIONS(4314), - [anon_sym_set] = ACTIONS(4314), - [anon_sym_this] = ACTIONS(4314), - [anon_sym_super] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [sym_label] = ACTIONS(4314), - [anon_sym_for] = ACTIONS(4314), - [anon_sym_while] = ACTIONS(4314), - [anon_sym_do] = ACTIONS(4314), - [anon_sym_null] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_when] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_continue] = ACTIONS(4314), - [anon_sym_break] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_suspend] = ACTIONS(4314), - [anon_sym_sealed] = ACTIONS(4314), - [anon_sym_annotation] = ACTIONS(4314), - [anon_sym_data] = ACTIONS(4314), - [anon_sym_inner] = ACTIONS(4314), - [anon_sym_value] = ACTIONS(4314), - [anon_sym_override] = ACTIONS(4314), - [anon_sym_lateinit] = ACTIONS(4314), - [anon_sym_public] = ACTIONS(4314), - [anon_sym_private] = ACTIONS(4314), - [anon_sym_internal] = ACTIONS(4314), - [anon_sym_protected] = ACTIONS(4314), - [anon_sym_tailrec] = ACTIONS(4314), - [anon_sym_operator] = ACTIONS(4314), - [anon_sym_infix] = ACTIONS(4314), - [anon_sym_inline] = ACTIONS(4314), - [anon_sym_external] = ACTIONS(4314), - [sym_property_modifier] = ACTIONS(4314), - [anon_sym_abstract] = ACTIONS(4314), - [anon_sym_final] = ACTIONS(4314), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_vararg] = ACTIONS(4314), - [anon_sym_noinline] = ACTIONS(4314), - [anon_sym_crossinline] = ACTIONS(4314), - [anon_sym_expect] = ACTIONS(4314), - [anon_sym_actual] = ACTIONS(4314), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4316), - [anon_sym_continue_AT] = ACTIONS(4316), - [anon_sym_break_AT] = ACTIONS(4316), - [sym_real_literal] = ACTIONS(4316), - [sym_integer_literal] = ACTIONS(4314), - [sym_hex_literal] = ACTIONS(4316), - [sym_bin_literal] = ACTIONS(4316), - [anon_sym_true] = ACTIONS(4314), - [anon_sym_false] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4316), - [sym__backtick_identifier] = ACTIONS(4316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4316), + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7209), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), }, [4017] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [4018] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(2996), - [anon_sym_DASH_EQ] = ACTIONS(2996), - [anon_sym_STAR_EQ] = ACTIONS(2996), - [anon_sym_SLASH_EQ] = ACTIONS(2996), - [anon_sym_PERCENT_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_value] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5041), + [sym__automatic_semicolon] = ACTIONS(5041), + [sym_safe_nav] = ACTIONS(5041), [sym_multiline_comment] = ACTIONS(3), }, [4019] = { - [sym_function_body] = STATE(3386), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_object] = ACTIONS(4284), - [anon_sym_fun] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_this] = ACTIONS(4284), - [anon_sym_super] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4284), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_try] = ACTIONS(4284), - [anon_sym_throw] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4284), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4284), - [anon_sym_false] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [4020] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7044), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7050), - [anon_sym_GT_EQ] = ACTIONS(7050), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(6853), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3220), + [sym__block] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(6905), + [anon_sym_LBRACE] = ACTIONS(6430), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_object] = ACTIONS(4160), + [anon_sym_fun] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_this] = ACTIONS(4160), + [anon_sym_super] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_when] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4162), + [anon_sym_continue_AT] = ACTIONS(4162), + [anon_sym_break_AT] = ACTIONS(4162), + [anon_sym_this_AT] = ACTIONS(4162), + [anon_sym_super_AT] = ACTIONS(4162), + [sym_real_literal] = ACTIONS(4162), + [sym_integer_literal] = ACTIONS(4160), + [sym_hex_literal] = ACTIONS(4162), + [sym_bin_literal] = ACTIONS(4162), + [anon_sym_true] = ACTIONS(4160), + [anon_sym_false] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4162), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4162), }, [4021] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), [sym_multiline_comment] = ACTIONS(3), }, [4022] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_QMARK_COLON] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_as] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_DOT] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [sym_label] = ACTIONS(5221), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_QMARK_COLON] = ACTIONS(5221), + [anon_sym_AMP_AMP] = ACTIONS(5221), + [anon_sym_PIPE_PIPE] = ACTIONS(5221), + [anon_sym_else] = ACTIONS(5219), + [anon_sym_COLON_COLON] = ACTIONS(5221), + [anon_sym_PLUS_EQ] = ACTIONS(5221), + [anon_sym_DASH_EQ] = ACTIONS(5221), + [anon_sym_STAR_EQ] = ACTIONS(5221), + [anon_sym_SLASH_EQ] = ACTIONS(5221), + [anon_sym_PERCENT_EQ] = ACTIONS(5221), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5221), + [anon_sym_GT_EQ] = ACTIONS(5221), + [anon_sym_BANGin] = ACTIONS(5221), + [anon_sym_is] = ACTIONS(5219), + [anon_sym_BANGis] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_PERCENT] = ACTIONS(5219), + [anon_sym_as_QMARK] = ACTIONS(5221), + [anon_sym_PLUS_PLUS] = ACTIONS(5221), + [anon_sym_DASH_DASH] = ACTIONS(5221), + [anon_sym_BANG_BANG] = ACTIONS(5221), + [anon_sym_suspend] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_annotation] = ACTIONS(5219), + [anon_sym_data] = ACTIONS(5219), + [anon_sym_inner] = ACTIONS(5219), + [anon_sym_value] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_lateinit] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_tailrec] = ACTIONS(5219), + [anon_sym_operator] = ACTIONS(5219), + [anon_sym_infix] = ACTIONS(5219), + [anon_sym_inline] = ACTIONS(5219), + [anon_sym_external] = ACTIONS(5219), + [sym_property_modifier] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_final] = ACTIONS(5219), + [anon_sym_open] = ACTIONS(5219), + [anon_sym_vararg] = ACTIONS(5219), + [anon_sym_noinline] = ACTIONS(5219), + [anon_sym_crossinline] = ACTIONS(5219), + [anon_sym_expect] = ACTIONS(5219), + [anon_sym_actual] = ACTIONS(5219), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5221), + [sym__automatic_semicolon] = ACTIONS(5221), + [sym_safe_nav] = ACTIONS(5221), [sym_multiline_comment] = ACTIONS(3), }, [4023] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(7018), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3000), - [anon_sym_DASH_EQ] = ACTIONS(3000), - [anon_sym_STAR_EQ] = ACTIONS(3000), - [anon_sym_SLASH_EQ] = ACTIONS(3000), - [anon_sym_PERCENT_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7018), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [4024] = { - [sym_type_constraints] = STATE(4156), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(7102), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), [sym_multiline_comment] = ACTIONS(3), }, [4025] = { - [sym__alpha_identifier] = ACTIONS(4478), - [anon_sym_AT] = ACTIONS(4480), - [anon_sym_COLON] = ACTIONS(4478), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_constructor] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(4480), - [anon_sym_RBRACE] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4480), - [anon_sym_where] = ACTIONS(4478), - [anon_sym_object] = ACTIONS(4478), - [anon_sym_fun] = ACTIONS(4478), - [anon_sym_get] = ACTIONS(4478), - [anon_sym_set] = ACTIONS(4478), - [anon_sym_this] = ACTIONS(4478), - [anon_sym_super] = ACTIONS(4478), - [anon_sym_STAR] = ACTIONS(4480), - [sym_label] = ACTIONS(4478), - [anon_sym_in] = ACTIONS(4478), - [anon_sym_null] = ACTIONS(4478), - [anon_sym_if] = ACTIONS(4478), - [anon_sym_else] = ACTIONS(4478), - [anon_sym_when] = ACTIONS(4478), - [anon_sym_try] = ACTIONS(4478), - [anon_sym_throw] = ACTIONS(4478), - [anon_sym_return] = ACTIONS(4478), - [anon_sym_continue] = ACTIONS(4478), - [anon_sym_break] = ACTIONS(4478), - [anon_sym_COLON_COLON] = ACTIONS(4480), - [anon_sym_BANGin] = ACTIONS(4480), - [anon_sym_is] = ACTIONS(4478), - [anon_sym_BANGis] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_BANG] = ACTIONS(4478), - [anon_sym_suspend] = ACTIONS(4478), - [anon_sym_sealed] = ACTIONS(4478), - [anon_sym_annotation] = ACTIONS(4478), - [anon_sym_data] = ACTIONS(4478), - [anon_sym_inner] = ACTIONS(4478), - [anon_sym_value] = ACTIONS(4478), - [anon_sym_override] = ACTIONS(4478), - [anon_sym_lateinit] = ACTIONS(4478), - [anon_sym_public] = ACTIONS(4478), - [anon_sym_private] = ACTIONS(4478), - [anon_sym_internal] = ACTIONS(4478), - [anon_sym_protected] = ACTIONS(4478), - [anon_sym_tailrec] = ACTIONS(4478), - [anon_sym_operator] = ACTIONS(4478), - [anon_sym_infix] = ACTIONS(4478), - [anon_sym_inline] = ACTIONS(4478), - [anon_sym_external] = ACTIONS(4478), - [sym_property_modifier] = ACTIONS(4478), - [anon_sym_abstract] = ACTIONS(4478), - [anon_sym_final] = ACTIONS(4478), - [anon_sym_open] = ACTIONS(4478), - [anon_sym_vararg] = ACTIONS(4478), - [anon_sym_noinline] = ACTIONS(4478), - [anon_sym_crossinline] = ACTIONS(4478), - [anon_sym_expect] = ACTIONS(4478), - [anon_sym_actual] = ACTIONS(4478), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4480), - [anon_sym_continue_AT] = ACTIONS(4480), - [anon_sym_break_AT] = ACTIONS(4480), - [sym_real_literal] = ACTIONS(4480), - [sym_integer_literal] = ACTIONS(4478), - [sym_hex_literal] = ACTIONS(4480), - [sym_bin_literal] = ACTIONS(4480), - [anon_sym_true] = ACTIONS(4478), - [anon_sym_false] = ACTIONS(4478), - [anon_sym_SQUOTE] = ACTIONS(4480), - [sym__backtick_identifier] = ACTIONS(4480), - [sym__automatic_semicolon] = ACTIONS(4480), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4480), + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_get] = ACTIONS(4926), + [anon_sym_set] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_QMARK_COLON] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_BANGin] = ACTIONS(4928), + [anon_sym_is] = ACTIONS(4926), + [anon_sym_BANGis] = ACTIONS(4928), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_as_QMARK] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4928), + [anon_sym_suspend] = ACTIONS(4926), + [anon_sym_sealed] = ACTIONS(4926), + [anon_sym_annotation] = ACTIONS(4926), + [anon_sym_data] = ACTIONS(4926), + [anon_sym_inner] = ACTIONS(4926), + [anon_sym_value] = ACTIONS(4926), + [anon_sym_override] = ACTIONS(4926), + [anon_sym_lateinit] = ACTIONS(4926), + [anon_sym_public] = ACTIONS(4926), + [anon_sym_private] = ACTIONS(4926), + [anon_sym_internal] = ACTIONS(4926), + [anon_sym_protected] = ACTIONS(4926), + [anon_sym_tailrec] = ACTIONS(4926), + [anon_sym_operator] = ACTIONS(4926), + [anon_sym_infix] = ACTIONS(4926), + [anon_sym_inline] = ACTIONS(4926), + [anon_sym_external] = ACTIONS(4926), + [sym_property_modifier] = ACTIONS(4926), + [anon_sym_abstract] = ACTIONS(4926), + [anon_sym_final] = ACTIONS(4926), + [anon_sym_open] = ACTIONS(4926), + [anon_sym_vararg] = ACTIONS(4926), + [anon_sym_noinline] = ACTIONS(4926), + [anon_sym_crossinline] = ACTIONS(4926), + [anon_sym_expect] = ACTIONS(4926), + [anon_sym_actual] = ACTIONS(4926), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4928), + [sym__automatic_semicolon] = ACTIONS(4928), + [sym_safe_nav] = ACTIONS(4928), + [sym_multiline_comment] = ACTIONS(3), }, [4026] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(2010), - [sym__comparison_operator] = STATE(2009), - [sym__in_operator] = STATE(2008), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(2007), - [sym__multiplicative_operator] = STATE(2006), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(2005), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4477), + [anon_sym_AT] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_as] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_COMMA] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_get] = ACTIONS(4477), + [anon_sym_set] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [sym_label] = ACTIONS(4479), + [anon_sym_in] = ACTIONS(4477), + [anon_sym_DOT_DOT] = ACTIONS(4479), + [anon_sym_QMARK_COLON] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_else] = ACTIONS(4477), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(4479), + [anon_sym_DASH_EQ] = ACTIONS(4479), + [anon_sym_STAR_EQ] = ACTIONS(4479), + [anon_sym_SLASH_EQ] = ACTIONS(4479), + [anon_sym_PERCENT_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(4477), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ] = ACTIONS(4477), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_BANGin] = ACTIONS(4479), + [anon_sym_is] = ACTIONS(4477), + [anon_sym_BANGis] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_SLASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_as_QMARK] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(4479), + [anon_sym_DASH_DASH] = ACTIONS(4479), + [anon_sym_BANG_BANG] = ACTIONS(4479), + [anon_sym_suspend] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_annotation] = ACTIONS(4477), + [anon_sym_data] = ACTIONS(4477), + [anon_sym_inner] = ACTIONS(4477), + [anon_sym_value] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_lateinit] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_tailrec] = ACTIONS(4477), + [anon_sym_operator] = ACTIONS(4477), + [anon_sym_infix] = ACTIONS(4477), + [anon_sym_inline] = ACTIONS(4477), + [anon_sym_external] = ACTIONS(4477), + [sym_property_modifier] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_final] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4477), + [anon_sym_vararg] = ACTIONS(4477), + [anon_sym_noinline] = ACTIONS(4477), + [anon_sym_crossinline] = ACTIONS(4477), + [anon_sym_expect] = ACTIONS(4477), + [anon_sym_actual] = ACTIONS(4477), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4479), + [sym__automatic_semicolon] = ACTIONS(4479), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), }, [4027] = { - [sym_value_arguments] = STATE(4036), - [sym__alpha_identifier] = ACTIONS(7104), - [anon_sym_AT] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_typealias] = ACTIONS(7104), - [anon_sym_class] = ACTIONS(7104), - [anon_sym_interface] = ACTIONS(7104), - [anon_sym_enum] = ACTIONS(7104), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_LPAREN] = ACTIONS(7108), - [anon_sym_val] = ACTIONS(7104), - [anon_sym_var] = ACTIONS(7104), - [anon_sym_object] = ACTIONS(7104), - [anon_sym_fun] = ACTIONS(7104), - [anon_sym_get] = ACTIONS(7104), - [anon_sym_set] = ACTIONS(7104), - [anon_sym_this] = ACTIONS(7104), - [anon_sym_super] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7106), - [sym_label] = ACTIONS(7104), - [anon_sym_for] = ACTIONS(7104), - [anon_sym_while] = ACTIONS(7104), - [anon_sym_do] = ACTIONS(7104), - [anon_sym_null] = ACTIONS(7104), - [anon_sym_if] = ACTIONS(7104), - [anon_sym_when] = ACTIONS(7104), - [anon_sym_try] = ACTIONS(7104), - [anon_sym_throw] = ACTIONS(7104), - [anon_sym_return] = ACTIONS(7104), - [anon_sym_continue] = ACTIONS(7104), - [anon_sym_break] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_BANG] = ACTIONS(7106), - [anon_sym_suspend] = ACTIONS(7104), - [anon_sym_sealed] = ACTIONS(7104), - [anon_sym_annotation] = ACTIONS(7104), - [anon_sym_data] = ACTIONS(7104), - [anon_sym_inner] = ACTIONS(7104), - [anon_sym_value] = ACTIONS(7104), - [anon_sym_override] = ACTIONS(7104), - [anon_sym_lateinit] = ACTIONS(7104), - [anon_sym_public] = ACTIONS(7104), - [anon_sym_private] = ACTIONS(7104), - [anon_sym_internal] = ACTIONS(7104), - [anon_sym_protected] = ACTIONS(7104), - [anon_sym_tailrec] = ACTIONS(7104), - [anon_sym_operator] = ACTIONS(7104), - [anon_sym_infix] = ACTIONS(7104), - [anon_sym_inline] = ACTIONS(7104), - [anon_sym_external] = ACTIONS(7104), - [sym_property_modifier] = ACTIONS(7104), - [anon_sym_abstract] = ACTIONS(7104), - [anon_sym_final] = ACTIONS(7104), - [anon_sym_open] = ACTIONS(7104), - [anon_sym_vararg] = ACTIONS(7104), - [anon_sym_noinline] = ACTIONS(7104), - [anon_sym_crossinline] = ACTIONS(7104), - [anon_sym_expect] = ACTIONS(7104), - [anon_sym_actual] = ACTIONS(7104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7106), - [anon_sym_continue_AT] = ACTIONS(7106), - [anon_sym_break_AT] = ACTIONS(7106), - [sym_real_literal] = ACTIONS(7106), - [sym_integer_literal] = ACTIONS(7104), - [sym_hex_literal] = ACTIONS(7106), - [sym_bin_literal] = ACTIONS(7106), - [anon_sym_true] = ACTIONS(7104), - [anon_sym_false] = ACTIONS(7104), - [anon_sym_SQUOTE] = ACTIONS(7106), - [sym__backtick_identifier] = ACTIONS(7106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7106), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), }, [4028] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(4321), - [anon_sym_DASH_EQ] = ACTIONS(4321), - [anon_sym_STAR_EQ] = ACTIONS(4321), - [anon_sym_SLASH_EQ] = ACTIONS(4321), - [anon_sym_PERCENT_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), [sym_multiline_comment] = ACTIONS(3), }, [4029] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7111), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_PLUS_EQ] = ACTIONS(4351), + [anon_sym_DASH_EQ] = ACTIONS(4351), + [anon_sym_STAR_EQ] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [anon_sym_PERCENT_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [4030] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(4318), - [anon_sym_GT] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4321), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4321), - [anon_sym_QMARK_COLON] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4321), - [anon_sym_LT_EQ] = ACTIONS(4321), - [anon_sym_GT_EQ] = ACTIONS(4321), - [anon_sym_BANGin] = ACTIONS(4321), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_BANGis] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4318), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_as_QMARK] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4318), - [anon_sym_sealed] = ACTIONS(4318), - [anon_sym_annotation] = ACTIONS(4318), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_override] = ACTIONS(4318), - [anon_sym_lateinit] = ACTIONS(4318), - [anon_sym_public] = ACTIONS(4318), - [anon_sym_private] = ACTIONS(4318), - [anon_sym_internal] = ACTIONS(4318), - [anon_sym_protected] = ACTIONS(4318), - [anon_sym_tailrec] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_infix] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym_external] = ACTIONS(4318), - [sym_property_modifier] = ACTIONS(4318), - [anon_sym_abstract] = ACTIONS(4318), - [anon_sym_final] = ACTIONS(4318), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_vararg] = ACTIONS(4318), - [anon_sym_noinline] = ACTIONS(4318), - [anon_sym_crossinline] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4321), + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), [sym_multiline_comment] = ACTIONS(3), }, [4031] = { - [sym__alpha_identifier] = ACTIONS(7113), - [anon_sym_AT] = ACTIONS(7115), - [anon_sym_LBRACK] = ACTIONS(7115), - [anon_sym_typealias] = ACTIONS(7113), - [anon_sym_class] = ACTIONS(7113), - [anon_sym_interface] = ACTIONS(7113), - [anon_sym_enum] = ACTIONS(7113), - [anon_sym_LBRACE] = ACTIONS(7115), - [anon_sym_LPAREN] = ACTIONS(7115), - [anon_sym_val] = ACTIONS(7113), - [anon_sym_var] = ACTIONS(7113), - [anon_sym_object] = ACTIONS(7113), - [anon_sym_fun] = ACTIONS(7113), - [anon_sym_get] = ACTIONS(7113), - [anon_sym_set] = ACTIONS(7113), - [anon_sym_this] = ACTIONS(7113), - [anon_sym_super] = ACTIONS(7113), - [anon_sym_STAR] = ACTIONS(7115), - [sym_label] = ACTIONS(7113), - [anon_sym_for] = ACTIONS(7113), - [anon_sym_while] = ACTIONS(7113), - [anon_sym_do] = ACTIONS(7113), - [anon_sym_null] = ACTIONS(7113), - [anon_sym_if] = ACTIONS(7113), - [anon_sym_when] = ACTIONS(7113), - [anon_sym_try] = ACTIONS(7113), - [anon_sym_throw] = ACTIONS(7113), - [anon_sym_return] = ACTIONS(7113), - [anon_sym_continue] = ACTIONS(7113), - [anon_sym_break] = ACTIONS(7113), - [anon_sym_COLON_COLON] = ACTIONS(7115), - [anon_sym_PLUS] = ACTIONS(7113), - [anon_sym_DASH] = ACTIONS(7113), - [anon_sym_PLUS_PLUS] = ACTIONS(7115), - [anon_sym_DASH_DASH] = ACTIONS(7115), - [anon_sym_BANG] = ACTIONS(7115), - [anon_sym_suspend] = ACTIONS(7113), - [anon_sym_sealed] = ACTIONS(7113), - [anon_sym_annotation] = ACTIONS(7113), - [anon_sym_data] = ACTIONS(7113), - [anon_sym_inner] = ACTIONS(7113), - [anon_sym_value] = ACTIONS(7113), - [anon_sym_override] = ACTIONS(7113), - [anon_sym_lateinit] = ACTIONS(7113), - [anon_sym_public] = ACTIONS(7113), - [anon_sym_private] = ACTIONS(7113), - [anon_sym_internal] = ACTIONS(7113), - [anon_sym_protected] = ACTIONS(7113), - [anon_sym_tailrec] = ACTIONS(7113), - [anon_sym_operator] = ACTIONS(7113), - [anon_sym_infix] = ACTIONS(7113), - [anon_sym_inline] = ACTIONS(7113), - [anon_sym_external] = ACTIONS(7113), - [sym_property_modifier] = ACTIONS(7113), - [anon_sym_abstract] = ACTIONS(7113), - [anon_sym_final] = ACTIONS(7113), - [anon_sym_open] = ACTIONS(7113), - [anon_sym_vararg] = ACTIONS(7113), - [anon_sym_noinline] = ACTIONS(7113), - [anon_sym_crossinline] = ACTIONS(7113), - [anon_sym_expect] = ACTIONS(7113), - [anon_sym_actual] = ACTIONS(7113), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7115), - [anon_sym_continue_AT] = ACTIONS(7115), - [anon_sym_break_AT] = ACTIONS(7115), - [sym_real_literal] = ACTIONS(7115), - [sym_integer_literal] = ACTIONS(7113), - [sym_hex_literal] = ACTIONS(7115), - [sym_bin_literal] = ACTIONS(7115), - [anon_sym_true] = ACTIONS(7113), - [anon_sym_false] = ACTIONS(7113), - [anon_sym_SQUOTE] = ACTIONS(7115), - [sym__backtick_identifier] = ACTIONS(7115), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7115), + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_where] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4966), + [anon_sym_set] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_QMARK_COLON] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_BANGin] = ACTIONS(4968), + [anon_sym_is] = ACTIONS(4966), + [anon_sym_BANGis] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_as_QMARK] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4968), + [anon_sym_suspend] = ACTIONS(4966), + [anon_sym_sealed] = ACTIONS(4966), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4966), + [anon_sym_inner] = ACTIONS(4966), + [anon_sym_value] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_lateinit] = ACTIONS(4966), + [anon_sym_public] = ACTIONS(4966), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_internal] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_tailrec] = ACTIONS(4966), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_infix] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym_external] = ACTIONS(4966), + [sym_property_modifier] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_open] = ACTIONS(4966), + [anon_sym_vararg] = ACTIONS(4966), + [anon_sym_noinline] = ACTIONS(4966), + [anon_sym_crossinline] = ACTIONS(4966), + [anon_sym_expect] = ACTIONS(4966), + [anon_sym_actual] = ACTIONS(4966), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), + [sym_multiline_comment] = ACTIONS(3), }, [4032] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(7117), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_where] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_get] = ACTIONS(4930), + [anon_sym_set] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4930), + [anon_sym_DOT_DOT] = ACTIONS(4932), + [anon_sym_QMARK_COLON] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_BANGin] = ACTIONS(4932), + [anon_sym_is] = ACTIONS(4930), + [anon_sym_BANGis] = ACTIONS(4932), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_as_QMARK] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4932), + [anon_sym_suspend] = ACTIONS(4930), + [anon_sym_sealed] = ACTIONS(4930), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4930), + [anon_sym_inner] = ACTIONS(4930), + [anon_sym_value] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_lateinit] = ACTIONS(4930), + [anon_sym_public] = ACTIONS(4930), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_internal] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_tailrec] = ACTIONS(4930), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_infix] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym_external] = ACTIONS(4930), + [sym_property_modifier] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_open] = ACTIONS(4930), + [anon_sym_vararg] = ACTIONS(4930), + [anon_sym_noinline] = ACTIONS(4930), + [anon_sym_crossinline] = ACTIONS(4930), + [anon_sym_expect] = ACTIONS(4930), + [anon_sym_actual] = ACTIONS(4930), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), [sym_multiline_comment] = ACTIONS(3), }, [4033] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(5286), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(4295), - [anon_sym_DASH_EQ] = ACTIONS(4295), - [anon_sym_STAR_EQ] = ACTIONS(4295), - [anon_sym_SLASH_EQ] = ACTIONS(4295), - [anon_sym_PERCENT_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [sym_label] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_QMARK_COLON] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PERCENT_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_BANGin] = ACTIONS(1816), + [anon_sym_is] = ACTIONS(1814), + [anon_sym_BANGis] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_as_QMARK] = ACTIONS(1816), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_BANG_BANG] = ACTIONS(1816), + [anon_sym_suspend] = ACTIONS(1814), + [anon_sym_sealed] = ACTIONS(1814), + [anon_sym_annotation] = ACTIONS(1814), + [anon_sym_data] = ACTIONS(1814), + [anon_sym_inner] = ACTIONS(1814), + [anon_sym_value] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_lateinit] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_internal] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_tailrec] = ACTIONS(1814), + [anon_sym_operator] = ACTIONS(1814), + [anon_sym_infix] = ACTIONS(1814), + [anon_sym_inline] = ACTIONS(1814), + [anon_sym_external] = ACTIONS(1814), + [sym_property_modifier] = ACTIONS(1814), + [anon_sym_abstract] = ACTIONS(1814), + [anon_sym_final] = ACTIONS(1814), + [anon_sym_open] = ACTIONS(1814), + [anon_sym_vararg] = ACTIONS(1814), + [anon_sym_noinline] = ACTIONS(1814), + [anon_sym_crossinline] = ACTIONS(1814), + [anon_sym_expect] = ACTIONS(1814), + [anon_sym_actual] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, [4034] = { - [sym_type_constraints] = STATE(4197), - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(7119), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3420), + [anon_sym_set] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_QMARK_COLON] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_as_QMARK] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3422), + [anon_sym_suspend] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_annotation] = ACTIONS(3420), + [anon_sym_data] = ACTIONS(3420), + [anon_sym_inner] = ACTIONS(3420), + [anon_sym_value] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_lateinit] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_tailrec] = ACTIONS(3420), + [anon_sym_operator] = ACTIONS(3420), + [anon_sym_infix] = ACTIONS(3420), + [anon_sym_inline] = ACTIONS(3420), + [anon_sym_external] = ACTIONS(3420), + [sym_property_modifier] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_final] = ACTIONS(3420), + [anon_sym_open] = ACTIONS(3420), + [anon_sym_vararg] = ACTIONS(3420), + [anon_sym_noinline] = ACTIONS(3420), + [anon_sym_crossinline] = ACTIONS(3420), + [anon_sym_expect] = ACTIONS(3420), + [anon_sym_actual] = ACTIONS(3420), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3422), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_safe_nav] = ACTIONS(3422), [sym_multiline_comment] = ACTIONS(3), }, [4035] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7123), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4147), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_PLUS_EQ] = ACTIONS(4149), + [anon_sym_DASH_EQ] = ACTIONS(4149), + [anon_sym_STAR_EQ] = ACTIONS(4149), + [anon_sym_SLASH_EQ] = ACTIONS(4149), + [anon_sym_PERCENT_EQ] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4036] = { - [sym__alpha_identifier] = ACTIONS(5138), - [anon_sym_AT] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_typealias] = ACTIONS(5138), - [anon_sym_class] = ACTIONS(5138), - [anon_sym_interface] = ACTIONS(5138), - [anon_sym_enum] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_val] = ACTIONS(5138), - [anon_sym_var] = ACTIONS(5138), - [anon_sym_object] = ACTIONS(5138), - [anon_sym_fun] = ACTIONS(5138), - [anon_sym_get] = ACTIONS(5138), - [anon_sym_set] = ACTIONS(5138), - [anon_sym_this] = ACTIONS(5138), - [anon_sym_super] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5140), - [sym_label] = ACTIONS(5138), - [anon_sym_for] = ACTIONS(5138), - [anon_sym_while] = ACTIONS(5138), - [anon_sym_do] = ACTIONS(5138), - [anon_sym_null] = ACTIONS(5138), - [anon_sym_if] = ACTIONS(5138), - [anon_sym_when] = ACTIONS(5138), - [anon_sym_try] = ACTIONS(5138), - [anon_sym_throw] = ACTIONS(5138), - [anon_sym_return] = ACTIONS(5138), - [anon_sym_continue] = ACTIONS(5138), - [anon_sym_break] = ACTIONS(5138), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5140), - [anon_sym_suspend] = ACTIONS(5138), - [anon_sym_sealed] = ACTIONS(5138), - [anon_sym_annotation] = ACTIONS(5138), - [anon_sym_data] = ACTIONS(5138), - [anon_sym_inner] = ACTIONS(5138), - [anon_sym_value] = ACTIONS(5138), - [anon_sym_override] = ACTIONS(5138), - [anon_sym_lateinit] = ACTIONS(5138), - [anon_sym_public] = ACTIONS(5138), - [anon_sym_private] = ACTIONS(5138), - [anon_sym_internal] = ACTIONS(5138), - [anon_sym_protected] = ACTIONS(5138), - [anon_sym_tailrec] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5138), - [anon_sym_infix] = ACTIONS(5138), - [anon_sym_inline] = ACTIONS(5138), - [anon_sym_external] = ACTIONS(5138), - [sym_property_modifier] = ACTIONS(5138), - [anon_sym_abstract] = ACTIONS(5138), - [anon_sym_final] = ACTIONS(5138), - [anon_sym_open] = ACTIONS(5138), - [anon_sym_vararg] = ACTIONS(5138), - [anon_sym_noinline] = ACTIONS(5138), - [anon_sym_crossinline] = ACTIONS(5138), - [anon_sym_expect] = ACTIONS(5138), - [anon_sym_actual] = ACTIONS(5138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5140), - [anon_sym_continue_AT] = ACTIONS(5140), - [anon_sym_break_AT] = ACTIONS(5140), - [sym_real_literal] = ACTIONS(5140), - [sym_integer_literal] = ACTIONS(5138), - [sym_hex_literal] = ACTIONS(5140), - [sym_bin_literal] = ACTIONS(5140), - [anon_sym_true] = ACTIONS(5138), - [anon_sym_false] = ACTIONS(5138), - [anon_sym_SQUOTE] = ACTIONS(5140), - [sym__backtick_identifier] = ACTIONS(5140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5140), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), }, [4037] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3000), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4838), + [anon_sym_AT] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_COMMA] = ACTIONS(4840), + [anon_sym_LT] = ACTIONS(4838), + [anon_sym_GT] = ACTIONS(4838), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_get] = ACTIONS(4838), + [anon_sym_set] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4838), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4840), + [anon_sym_PIPE_PIPE] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4840), + [anon_sym_PLUS_EQ] = ACTIONS(4840), + [anon_sym_DASH_EQ] = ACTIONS(4840), + [anon_sym_STAR_EQ] = ACTIONS(4840), + [anon_sym_SLASH_EQ] = ACTIONS(4840), + [anon_sym_PERCENT_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_BANGin] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_BANGis] = ACTIONS(4840), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4838), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_as_QMARK] = ACTIONS(4840), + [anon_sym_PLUS_PLUS] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4840), + [anon_sym_suspend] = ACTIONS(4838), + [anon_sym_sealed] = ACTIONS(4838), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4838), + [anon_sym_inner] = ACTIONS(4838), + [anon_sym_value] = ACTIONS(4838), + [anon_sym_override] = ACTIONS(4838), + [anon_sym_lateinit] = ACTIONS(4838), + [anon_sym_public] = ACTIONS(4838), + [anon_sym_private] = ACTIONS(4838), + [anon_sym_internal] = ACTIONS(4838), + [anon_sym_protected] = ACTIONS(4838), + [anon_sym_tailrec] = ACTIONS(4838), + [anon_sym_operator] = ACTIONS(4838), + [anon_sym_infix] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_external] = ACTIONS(4838), + [sym_property_modifier] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_final] = ACTIONS(4838), + [anon_sym_open] = ACTIONS(4838), + [anon_sym_vararg] = ACTIONS(4838), + [anon_sym_noinline] = ACTIONS(4838), + [anon_sym_crossinline] = ACTIONS(4838), + [anon_sym_expect] = ACTIONS(4838), + [anon_sym_actual] = ACTIONS(4838), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4840), + [sym__automatic_semicolon] = ACTIONS(4840), + [sym_safe_nav] = ACTIONS(4840), [sym_multiline_comment] = ACTIONS(3), }, [4038] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3037), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4842), + [anon_sym_AT] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_EQ] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_COMMA] = ACTIONS(4844), + [anon_sym_LT] = ACTIONS(4842), + [anon_sym_GT] = ACTIONS(4842), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_get] = ACTIONS(4842), + [anon_sym_set] = ACTIONS(4842), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_QMARK_COLON] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [anon_sym_PLUS_EQ] = ACTIONS(4844), + [anon_sym_DASH_EQ] = ACTIONS(4844), + [anon_sym_STAR_EQ] = ACTIONS(4844), + [anon_sym_SLASH_EQ] = ACTIONS(4844), + [anon_sym_PERCENT_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4844), + [anon_sym_LT_EQ] = ACTIONS(4844), + [anon_sym_GT_EQ] = ACTIONS(4844), + [anon_sym_BANGin] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_BANGis] = ACTIONS(4844), + [anon_sym_PLUS] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4842), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_as_QMARK] = ACTIONS(4844), + [anon_sym_PLUS_PLUS] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_BANG_BANG] = ACTIONS(4844), + [anon_sym_suspend] = ACTIONS(4842), + [anon_sym_sealed] = ACTIONS(4842), + [anon_sym_annotation] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4842), + [anon_sym_inner] = ACTIONS(4842), + [anon_sym_value] = ACTIONS(4842), + [anon_sym_override] = ACTIONS(4842), + [anon_sym_lateinit] = ACTIONS(4842), + [anon_sym_public] = ACTIONS(4842), + [anon_sym_private] = ACTIONS(4842), + [anon_sym_internal] = ACTIONS(4842), + [anon_sym_protected] = ACTIONS(4842), + [anon_sym_tailrec] = ACTIONS(4842), + [anon_sym_operator] = ACTIONS(4842), + [anon_sym_infix] = ACTIONS(4842), + [anon_sym_inline] = ACTIONS(4842), + [anon_sym_external] = ACTIONS(4842), + [sym_property_modifier] = ACTIONS(4842), + [anon_sym_abstract] = ACTIONS(4842), + [anon_sym_final] = ACTIONS(4842), + [anon_sym_open] = ACTIONS(4842), + [anon_sym_vararg] = ACTIONS(4842), + [anon_sym_noinline] = ACTIONS(4842), + [anon_sym_crossinline] = ACTIONS(4842), + [anon_sym_expect] = ACTIONS(4842), + [anon_sym_actual] = ACTIONS(4842), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4844), + [sym__automatic_semicolon] = ACTIONS(4844), + [sym_safe_nav] = ACTIONS(4844), [sym_multiline_comment] = ACTIONS(3), }, [4039] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_DASH_GT] = ACTIONS(3091), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4854), + [anon_sym_AT] = ACTIONS(4856), + [anon_sym_LBRACK] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(4854), + [anon_sym_LBRACE] = ACTIONS(4856), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_LPAREN] = ACTIONS(4856), + [anon_sym_COMMA] = ACTIONS(4856), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_where] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4856), + [anon_sym_get] = ACTIONS(4854), + [anon_sym_set] = ACTIONS(4854), + [anon_sym_STAR] = ACTIONS(4854), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4854), + [anon_sym_DOT_DOT] = ACTIONS(4856), + [anon_sym_QMARK_COLON] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4856), + [anon_sym_PIPE_PIPE] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4856), + [anon_sym_PLUS_EQ] = ACTIONS(4856), + [anon_sym_DASH_EQ] = ACTIONS(4856), + [anon_sym_STAR_EQ] = ACTIONS(4856), + [anon_sym_SLASH_EQ] = ACTIONS(4856), + [anon_sym_PERCENT_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4856), + [anon_sym_LT_EQ] = ACTIONS(4856), + [anon_sym_GT_EQ] = ACTIONS(4856), + [anon_sym_BANGin] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4854), + [anon_sym_BANGis] = ACTIONS(4856), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4854), + [anon_sym_PERCENT] = ACTIONS(4854), + [anon_sym_as_QMARK] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4856), + [anon_sym_DASH_DASH] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4856), + [anon_sym_suspend] = ACTIONS(4854), + [anon_sym_sealed] = ACTIONS(4854), + [anon_sym_annotation] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4854), + [anon_sym_inner] = ACTIONS(4854), + [anon_sym_value] = ACTIONS(4854), + [anon_sym_override] = ACTIONS(4854), + [anon_sym_lateinit] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_internal] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_tailrec] = ACTIONS(4854), + [anon_sym_operator] = ACTIONS(4854), + [anon_sym_infix] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_external] = ACTIONS(4854), + [sym_property_modifier] = ACTIONS(4854), + [anon_sym_abstract] = ACTIONS(4854), + [anon_sym_final] = ACTIONS(4854), + [anon_sym_open] = ACTIONS(4854), + [anon_sym_vararg] = ACTIONS(4854), + [anon_sym_noinline] = ACTIONS(4854), + [anon_sym_crossinline] = ACTIONS(4854), + [anon_sym_expect] = ACTIONS(4854), + [anon_sym_actual] = ACTIONS(4854), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4856), + [sym__automatic_semicolon] = ACTIONS(4856), + [sym_safe_nav] = ACTIONS(4856), [sym_multiline_comment] = ACTIONS(3), }, [4040] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3018), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), [sym_multiline_comment] = ACTIONS(3), }, [4041] = { - [sym_function_body] = STATE(3762), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(7151), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_COMMA] = ACTIONS(4872), + [anon_sym_LT] = ACTIONS(4870), + [anon_sym_GT] = ACTIONS(4870), + [anon_sym_where] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4870), + [anon_sym_set] = ACTIONS(4870), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4872), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4872), + [anon_sym_AMP_AMP] = ACTIONS(4872), + [anon_sym_PIPE_PIPE] = ACTIONS(4872), + [anon_sym_else] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_PLUS_EQ] = ACTIONS(4872), + [anon_sym_DASH_EQ] = ACTIONS(4872), + [anon_sym_STAR_EQ] = ACTIONS(4872), + [anon_sym_SLASH_EQ] = ACTIONS(4872), + [anon_sym_PERCENT_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4872), + [anon_sym_LT_EQ] = ACTIONS(4872), + [anon_sym_GT_EQ] = ACTIONS(4872), + [anon_sym_BANGin] = ACTIONS(4872), + [anon_sym_is] = ACTIONS(4870), + [anon_sym_BANGis] = ACTIONS(4872), + [anon_sym_PLUS] = ACTIONS(4870), + [anon_sym_DASH] = ACTIONS(4870), + [anon_sym_SLASH] = ACTIONS(4870), + [anon_sym_PERCENT] = ACTIONS(4870), + [anon_sym_as_QMARK] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_BANG_BANG] = ACTIONS(4872), + [anon_sym_suspend] = ACTIONS(4870), + [anon_sym_sealed] = ACTIONS(4870), + [anon_sym_annotation] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4870), + [anon_sym_inner] = ACTIONS(4870), + [anon_sym_value] = ACTIONS(4870), + [anon_sym_override] = ACTIONS(4870), + [anon_sym_lateinit] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_internal] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_tailrec] = ACTIONS(4870), + [anon_sym_operator] = ACTIONS(4870), + [anon_sym_infix] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_external] = ACTIONS(4870), + [sym_property_modifier] = ACTIONS(4870), + [anon_sym_abstract] = ACTIONS(4870), + [anon_sym_final] = ACTIONS(4870), + [anon_sym_open] = ACTIONS(4870), + [anon_sym_vararg] = ACTIONS(4870), + [anon_sym_noinline] = ACTIONS(4870), + [anon_sym_crossinline] = ACTIONS(4870), + [anon_sym_expect] = ACTIONS(4870), + [anon_sym_actual] = ACTIONS(4870), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4872), + [sym__automatic_semicolon] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), [sym_multiline_comment] = ACTIONS(3), }, [4042] = { - [sym__alpha_identifier] = ACTIONS(7153), - [anon_sym_AT] = ACTIONS(7155), - [anon_sym_LBRACK] = ACTIONS(7155), - [anon_sym_typealias] = ACTIONS(7153), - [anon_sym_class] = ACTIONS(7153), - [anon_sym_interface] = ACTIONS(7153), - [anon_sym_enum] = ACTIONS(7153), - [anon_sym_LBRACE] = ACTIONS(7155), - [anon_sym_LPAREN] = ACTIONS(7155), - [anon_sym_val] = ACTIONS(7153), - [anon_sym_var] = ACTIONS(7153), - [anon_sym_object] = ACTIONS(7153), - [anon_sym_fun] = ACTIONS(7153), - [anon_sym_get] = ACTIONS(7153), - [anon_sym_set] = ACTIONS(7153), - [anon_sym_this] = ACTIONS(7153), - [anon_sym_super] = ACTIONS(7153), - [anon_sym_STAR] = ACTIONS(7155), - [sym_label] = ACTIONS(7153), - [anon_sym_for] = ACTIONS(7153), - [anon_sym_while] = ACTIONS(7153), - [anon_sym_do] = ACTIONS(7153), - [anon_sym_null] = ACTIONS(7153), - [anon_sym_if] = ACTIONS(7153), - [anon_sym_when] = ACTIONS(7153), - [anon_sym_try] = ACTIONS(7153), - [anon_sym_throw] = ACTIONS(7153), - [anon_sym_return] = ACTIONS(7153), - [anon_sym_continue] = ACTIONS(7153), - [anon_sym_break] = ACTIONS(7153), - [anon_sym_COLON_COLON] = ACTIONS(7155), - [anon_sym_PLUS] = ACTIONS(7153), - [anon_sym_DASH] = ACTIONS(7153), - [anon_sym_PLUS_PLUS] = ACTIONS(7155), - [anon_sym_DASH_DASH] = ACTIONS(7155), - [anon_sym_BANG] = ACTIONS(7155), - [anon_sym_suspend] = ACTIONS(7153), - [anon_sym_sealed] = ACTIONS(7153), - [anon_sym_annotation] = ACTIONS(7153), - [anon_sym_data] = ACTIONS(7153), - [anon_sym_inner] = ACTIONS(7153), - [anon_sym_value] = ACTIONS(7153), - [anon_sym_override] = ACTIONS(7153), - [anon_sym_lateinit] = ACTIONS(7153), - [anon_sym_public] = ACTIONS(7153), - [anon_sym_private] = ACTIONS(7153), - [anon_sym_internal] = ACTIONS(7153), - [anon_sym_protected] = ACTIONS(7153), - [anon_sym_tailrec] = ACTIONS(7153), - [anon_sym_operator] = ACTIONS(7153), - [anon_sym_infix] = ACTIONS(7153), - [anon_sym_inline] = ACTIONS(7153), - [anon_sym_external] = ACTIONS(7153), - [sym_property_modifier] = ACTIONS(7153), - [anon_sym_abstract] = ACTIONS(7153), - [anon_sym_final] = ACTIONS(7153), - [anon_sym_open] = ACTIONS(7153), - [anon_sym_vararg] = ACTIONS(7153), - [anon_sym_noinline] = ACTIONS(7153), - [anon_sym_crossinline] = ACTIONS(7153), - [anon_sym_expect] = ACTIONS(7153), - [anon_sym_actual] = ACTIONS(7153), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7155), - [anon_sym_continue_AT] = ACTIONS(7155), - [anon_sym_break_AT] = ACTIONS(7155), - [sym_real_literal] = ACTIONS(7155), - [sym_integer_literal] = ACTIONS(7153), - [sym_hex_literal] = ACTIONS(7155), - [sym_bin_literal] = ACTIONS(7155), - [anon_sym_true] = ACTIONS(7153), - [anon_sym_false] = ACTIONS(7153), - [anon_sym_SQUOTE] = ACTIONS(7155), - [sym__backtick_identifier] = ACTIONS(7155), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7155), + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), }, [4043] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3025), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), }, [4044] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7157), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_get] = ACTIONS(4910), + [anon_sym_set] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_DOT_DOT] = ACTIONS(4912), + [anon_sym_QMARK_COLON] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_BANGin] = ACTIONS(4912), + [anon_sym_is] = ACTIONS(4910), + [anon_sym_BANGis] = ACTIONS(4912), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_as_QMARK] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4912), + [anon_sym_suspend] = ACTIONS(4910), + [anon_sym_sealed] = ACTIONS(4910), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4910), + [anon_sym_inner] = ACTIONS(4910), + [anon_sym_value] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_lateinit] = ACTIONS(4910), + [anon_sym_public] = ACTIONS(4910), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_internal] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_tailrec] = ACTIONS(4910), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_infix] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym_external] = ACTIONS(4910), + [sym_property_modifier] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_open] = ACTIONS(4910), + [anon_sym_vararg] = ACTIONS(4910), + [anon_sym_noinline] = ACTIONS(4910), + [anon_sym_crossinline] = ACTIONS(4910), + [anon_sym_expect] = ACTIONS(4910), + [anon_sym_actual] = ACTIONS(4910), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4912), + [sym__automatic_semicolon] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), [sym_multiline_comment] = ACTIONS(3), }, [4045] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3049), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7213), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, [4046] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3080), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3119), + [anon_sym_DASH_EQ] = ACTIONS(3119), + [anon_sym_STAR_EQ] = ACTIONS(3119), + [anon_sym_SLASH_EQ] = ACTIONS(3119), + [anon_sym_PERCENT_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4047] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7159), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4873), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7157), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_PLUS_EQ] = ACTIONS(4875), - [anon_sym_DASH_EQ] = ACTIONS(4875), - [anon_sym_STAR_EQ] = ACTIONS(4875), - [anon_sym_SLASH_EQ] = ACTIONS(4875), - [anon_sym_PERCENT_EQ] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4873), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4048] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3041), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4049] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(2996), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_value_arguments] = STATE(3531), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [4050] = { - [sym__alpha_identifier] = ACTIONS(4865), - [anon_sym_AT] = ACTIONS(4867), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_typealias] = ACTIONS(4865), - [anon_sym_class] = ACTIONS(4865), - [anon_sym_interface] = ACTIONS(4865), - [anon_sym_enum] = ACTIONS(4865), - [anon_sym_LBRACE] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [anon_sym_val] = ACTIONS(4865), - [anon_sym_var] = ACTIONS(4865), - [anon_sym_object] = ACTIONS(4865), - [anon_sym_fun] = ACTIONS(4865), - [anon_sym_get] = ACTIONS(4865), - [anon_sym_set] = ACTIONS(4865), - [anon_sym_this] = ACTIONS(4865), - [anon_sym_super] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4867), - [sym_label] = ACTIONS(4865), - [anon_sym_for] = ACTIONS(4865), - [anon_sym_while] = ACTIONS(4865), - [anon_sym_do] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(4865), - [anon_sym_if] = ACTIONS(4865), - [anon_sym_when] = ACTIONS(4865), - [anon_sym_try] = ACTIONS(4865), - [anon_sym_throw] = ACTIONS(4865), - [anon_sym_return] = ACTIONS(4865), - [anon_sym_continue] = ACTIONS(4865), - [anon_sym_break] = ACTIONS(4865), - [anon_sym_COLON_COLON] = ACTIONS(4867), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_BANG] = ACTIONS(4867), - [anon_sym_suspend] = ACTIONS(4865), - [anon_sym_sealed] = ACTIONS(4865), - [anon_sym_annotation] = ACTIONS(4865), - [anon_sym_data] = ACTIONS(4865), - [anon_sym_inner] = ACTIONS(4865), - [anon_sym_value] = ACTIONS(4865), - [anon_sym_override] = ACTIONS(4865), - [anon_sym_lateinit] = ACTIONS(4865), - [anon_sym_public] = ACTIONS(4865), - [anon_sym_private] = ACTIONS(4865), - [anon_sym_internal] = ACTIONS(4865), - [anon_sym_protected] = ACTIONS(4865), - [anon_sym_tailrec] = ACTIONS(4865), - [anon_sym_operator] = ACTIONS(4865), - [anon_sym_infix] = ACTIONS(4865), - [anon_sym_inline] = ACTIONS(4865), - [anon_sym_external] = ACTIONS(4865), - [sym_property_modifier] = ACTIONS(4865), - [anon_sym_abstract] = ACTIONS(4865), - [anon_sym_final] = ACTIONS(4865), - [anon_sym_open] = ACTIONS(4865), - [anon_sym_vararg] = ACTIONS(4865), - [anon_sym_noinline] = ACTIONS(4865), - [anon_sym_crossinline] = ACTIONS(4865), - [anon_sym_expect] = ACTIONS(4865), - [anon_sym_actual] = ACTIONS(4865), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4867), - [anon_sym_continue_AT] = ACTIONS(4867), - [anon_sym_break_AT] = ACTIONS(4867), - [sym_real_literal] = ACTIONS(4867), - [sym_integer_literal] = ACTIONS(4865), - [sym_hex_literal] = ACTIONS(4867), - [sym_bin_literal] = ACTIONS(4867), - [anon_sym_true] = ACTIONS(4865), - [anon_sym_false] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4867), - [sym__backtick_identifier] = ACTIONS(4867), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4867), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4051] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4051), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_RBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(7161), - [anon_sym_RPAREN] = ACTIONS(4582), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4582), - [anon_sym_DASH_GT] = ACTIONS(4582), - [sym_label] = ACTIONS(4582), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_while] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4582), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4052] = { - [sym_type_constraints] = STATE(4209), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_COLON] = ACTIONS(7164), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7241), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_DASH_GT] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [4053] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7166), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_PLUS_EQ] = ACTIONS(4779), - [anon_sym_DASH_EQ] = ACTIONS(4779), - [anon_sym_STAR_EQ] = ACTIONS(4779), - [anon_sym_SLASH_EQ] = ACTIONS(4779), - [anon_sym_PERCENT_EQ] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4777), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3134), + [anon_sym_DASH_EQ] = ACTIONS(3134), + [anon_sym_STAR_EQ] = ACTIONS(3134), + [anon_sym_SLASH_EQ] = ACTIONS(3134), + [anon_sym_PERCENT_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4054] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3057), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_RBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [anon_sym_DASH_GT] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4055] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7245), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4056] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7168), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4767), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_PLUS_EQ] = ACTIONS(4769), - [anon_sym_DASH_EQ] = ACTIONS(4769), - [anon_sym_STAR_EQ] = ACTIONS(4769), - [anon_sym_SLASH_EQ] = ACTIONS(4769), - [anon_sym_PERCENT_EQ] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [4057] = { - [sym_type_constraints] = STATE(4154), - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4058] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3029), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [4059] = { - [sym_function_body] = STATE(3195), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_object] = ACTIONS(4116), - [anon_sym_fun] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_this] = ACTIONS(4116), - [anon_sym_super] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4118), - [anon_sym_continue_AT] = ACTIONS(4118), - [anon_sym_break_AT] = ACTIONS(4118), - [sym_real_literal] = ACTIONS(4118), - [sym_integer_literal] = ACTIONS(4116), - [sym_hex_literal] = ACTIONS(4118), - [sym_bin_literal] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4116), - [anon_sym_false] = ACTIONS(4116), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4118), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), }, [4060] = { - [sym_type_constraints] = STATE(4160), - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3138), + [anon_sym_DASH_EQ] = ACTIONS(3138), + [anon_sym_STAR_EQ] = ACTIONS(3138), + [anon_sym_SLASH_EQ] = ACTIONS(3138), + [anon_sym_PERCENT_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4061] = { - [sym_function_body] = STATE(3224), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_object] = ACTIONS(4065), - [anon_sym_fun] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_this] = ACTIONS(4065), - [anon_sym_super] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_null] = ACTIONS(4065), - [anon_sym_if] = ACTIONS(4065), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_when] = ACTIONS(4065), - [anon_sym_try] = ACTIONS(4065), - [anon_sym_throw] = ACTIONS(4065), - [anon_sym_return] = ACTIONS(4065), - [anon_sym_continue] = ACTIONS(4065), - [anon_sym_break] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4065), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4067), - [anon_sym_continue_AT] = ACTIONS(4067), - [anon_sym_break_AT] = ACTIONS(4067), - [sym_real_literal] = ACTIONS(4067), - [sym_integer_literal] = ACTIONS(4065), - [sym_hex_literal] = ACTIONS(4067), - [sym_bin_literal] = ACTIONS(4067), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [anon_sym_SQUOTE] = ACTIONS(4067), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7251), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), }, [4062] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4063] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7170), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_PLUS_EQ] = ACTIONS(4324), - [anon_sym_DASH_EQ] = ACTIONS(4324), - [anon_sym_STAR_EQ] = ACTIONS(4324), - [anon_sym_SLASH_EQ] = ACTIONS(4324), - [anon_sym_PERCENT_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [4064] = { - [sym_function_body] = STATE(3254), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_object] = ACTIONS(4088), - [anon_sym_fun] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_this] = ACTIONS(4088), - [anon_sym_super] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4088), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_when] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4090), - [anon_sym_continue_AT] = ACTIONS(4090), - [anon_sym_break_AT] = ACTIONS(4090), - [sym_real_literal] = ACTIONS(4090), - [sym_integer_literal] = ACTIONS(4088), - [sym_hex_literal] = ACTIONS(4090), - [sym_bin_literal] = ACTIONS(4090), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_false] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4090), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4090), + [sym_type_constraints] = STATE(4200), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [4065] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4292), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_SEMI] = ACTIONS(4295), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4292), - [anon_sym_DOT_DOT] = ACTIONS(4295), - [anon_sym_QMARK_COLON] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(4292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_BANGin] = ACTIONS(4295), - [anon_sym_is] = ACTIONS(4292), - [anon_sym_BANGis] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4292), - [anon_sym_PERCENT] = ACTIONS(4292), - [anon_sym_as_QMARK] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_annotation] = ACTIONS(4292), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_lateinit] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_tailrec] = ACTIONS(4292), - [anon_sym_operator] = ACTIONS(4292), - [anon_sym_infix] = ACTIONS(4292), - [anon_sym_inline] = ACTIONS(4292), - [anon_sym_external] = ACTIONS(4292), - [sym_property_modifier] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_final] = ACTIONS(4292), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_vararg] = ACTIONS(4292), - [anon_sym_noinline] = ACTIONS(4292), - [anon_sym_crossinline] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4295), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4066] = { - [sym_type_constraints] = STATE(4161), - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_type_constraints] = STATE(4162), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, [4067] = { - [sym_function_body] = STATE(3275), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_object] = ACTIONS(4159), - [anon_sym_fun] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_this] = ACTIONS(4159), - [anon_sym_super] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4159), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_when] = ACTIONS(4159), - [anon_sym_try] = ACTIONS(4159), - [anon_sym_throw] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4161), - [anon_sym_continue_AT] = ACTIONS(4161), - [anon_sym_break_AT] = ACTIONS(4161), - [sym_real_literal] = ACTIONS(4161), - [sym_integer_literal] = ACTIONS(4159), - [sym_hex_literal] = ACTIONS(4161), - [sym_bin_literal] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [anon_sym_SQUOTE] = ACTIONS(4161), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4161), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4068] = { - [sym_function_body] = STATE(3288), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_object] = ACTIONS(4179), - [anon_sym_fun] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_this] = ACTIONS(4179), - [anon_sym_super] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4179), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4179), - [anon_sym_if] = ACTIONS(4179), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_try] = ACTIONS(4179), - [anon_sym_throw] = ACTIONS(4179), - [anon_sym_return] = ACTIONS(4179), - [anon_sym_continue] = ACTIONS(4179), - [anon_sym_break] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4179), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4181), - [anon_sym_continue_AT] = ACTIONS(4181), - [anon_sym_break_AT] = ACTIONS(4181), - [sym_real_literal] = ACTIONS(4181), - [sym_integer_literal] = ACTIONS(4179), - [sym_hex_literal] = ACTIONS(4181), - [sym_bin_literal] = ACTIONS(4181), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [anon_sym_SQUOTE] = ACTIONS(4181), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7263), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, [4069] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3014), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [anon_sym_DASH_EQ] = ACTIONS(3188), + [anon_sym_STAR_EQ] = ACTIONS(3188), + [anon_sym_SLASH_EQ] = ACTIONS(3188), + [anon_sym_PERCENT_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4070] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_object] = ACTIONS(4217), - [anon_sym_fun] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_this] = ACTIONS(4217), - [anon_sym_super] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4217), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_null] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_try] = ACTIONS(4217), - [anon_sym_throw] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4219), - [anon_sym_continue_AT] = ACTIONS(4219), - [anon_sym_break_AT] = ACTIONS(4219), - [sym_real_literal] = ACTIONS(4219), - [sym_integer_literal] = ACTIONS(4217), - [sym_hex_literal] = ACTIONS(4219), - [sym_bin_literal] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4219), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4219), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3169), + [anon_sym_DASH_EQ] = ACTIONS(3169), + [anon_sym_STAR_EQ] = ACTIONS(3169), + [anon_sym_SLASH_EQ] = ACTIONS(3169), + [anon_sym_PERCENT_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4071] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3007), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4072] = { - [sym_function_body] = STATE(3298), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_object] = ACTIONS(4512), - [anon_sym_fun] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_this] = ACTIONS(4512), - [anon_sym_super] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4512), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4512), - [anon_sym_if] = ACTIONS(4512), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4512), - [anon_sym_throw] = ACTIONS(4512), - [anon_sym_return] = ACTIONS(4512), - [anon_sym_continue] = ACTIONS(4512), - [anon_sym_break] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4514), - [anon_sym_continue_AT] = ACTIONS(4514), - [anon_sym_break_AT] = ACTIONS(4514), - [sym_real_literal] = ACTIONS(4514), - [sym_integer_literal] = ACTIONS(4512), - [sym_hex_literal] = ACTIONS(4514), - [sym_bin_literal] = ACTIONS(4514), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4514), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4514), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4073] = { - [sym_type_constraints] = STATE(4167), - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7267), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [4074] = { - [sym__alpha_identifier] = ACTIONS(4927), - [anon_sym_AT] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_typealias] = ACTIONS(4927), - [anon_sym_class] = ACTIONS(4927), - [anon_sym_interface] = ACTIONS(4927), - [anon_sym_enum] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_val] = ACTIONS(4927), - [anon_sym_var] = ACTIONS(4927), - [anon_sym_object] = ACTIONS(4927), - [anon_sym_fun] = ACTIONS(4927), - [anon_sym_get] = ACTIONS(4927), - [anon_sym_set] = ACTIONS(4927), - [anon_sym_this] = ACTIONS(4927), - [anon_sym_super] = ACTIONS(4927), - [anon_sym_STAR] = ACTIONS(4929), - [sym_label] = ACTIONS(4927), - [anon_sym_for] = ACTIONS(4927), - [anon_sym_while] = ACTIONS(4927), - [anon_sym_do] = ACTIONS(4927), - [anon_sym_null] = ACTIONS(4927), - [anon_sym_if] = ACTIONS(4927), - [anon_sym_when] = ACTIONS(4927), - [anon_sym_try] = ACTIONS(4927), - [anon_sym_throw] = ACTIONS(4927), - [anon_sym_return] = ACTIONS(4927), - [anon_sym_continue] = ACTIONS(4927), - [anon_sym_break] = ACTIONS(4927), - [anon_sym_COLON_COLON] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4927), - [anon_sym_DASH] = ACTIONS(4927), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_suspend] = ACTIONS(4927), - [anon_sym_sealed] = ACTIONS(4927), - [anon_sym_annotation] = ACTIONS(4927), - [anon_sym_data] = ACTIONS(4927), - [anon_sym_inner] = ACTIONS(4927), - [anon_sym_value] = ACTIONS(4927), - [anon_sym_override] = ACTIONS(4927), - [anon_sym_lateinit] = ACTIONS(4927), - [anon_sym_public] = ACTIONS(4927), - [anon_sym_private] = ACTIONS(4927), - [anon_sym_internal] = ACTIONS(4927), - [anon_sym_protected] = ACTIONS(4927), - [anon_sym_tailrec] = ACTIONS(4927), - [anon_sym_operator] = ACTIONS(4927), - [anon_sym_infix] = ACTIONS(4927), - [anon_sym_inline] = ACTIONS(4927), - [anon_sym_external] = ACTIONS(4927), - [sym_property_modifier] = ACTIONS(4927), - [anon_sym_abstract] = ACTIONS(4927), - [anon_sym_final] = ACTIONS(4927), - [anon_sym_open] = ACTIONS(4927), - [anon_sym_vararg] = ACTIONS(4927), - [anon_sym_noinline] = ACTIONS(4927), - [anon_sym_crossinline] = ACTIONS(4927), - [anon_sym_expect] = ACTIONS(4927), - [anon_sym_actual] = ACTIONS(4927), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4929), - [anon_sym_continue_AT] = ACTIONS(4929), - [anon_sym_break_AT] = ACTIONS(4929), - [sym_real_literal] = ACTIONS(4929), - [sym_integer_literal] = ACTIONS(4927), - [sym_hex_literal] = ACTIONS(4929), - [sym_bin_literal] = ACTIONS(4929), - [anon_sym_true] = ACTIONS(4927), - [anon_sym_false] = ACTIONS(4927), - [anon_sym_SQUOTE] = ACTIONS(4929), - [sym__backtick_identifier] = ACTIONS(4929), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4929), + [sym_type_constraints] = STATE(4163), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), }, [4075] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3087), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7271), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4076] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_typealias] = ACTIONS(5045), - [anon_sym_class] = ACTIONS(5045), - [anon_sym_interface] = ACTIONS(5045), - [anon_sym_enum] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_val] = ACTIONS(5045), - [anon_sym_var] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5047), - [sym_label] = ACTIONS(5045), - [anon_sym_for] = ACTIONS(5045), - [anon_sym_while] = ACTIONS(5045), - [anon_sym_do] = ACTIONS(5045), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = 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] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [sym_type_constraints] = STATE(4167), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), }, [4077] = { - [sym__alpha_identifier] = ACTIONS(7172), - [anon_sym_AT] = ACTIONS(7174), - [anon_sym_LBRACK] = ACTIONS(7174), - [anon_sym_typealias] = ACTIONS(7172), - [anon_sym_class] = ACTIONS(7172), - [anon_sym_interface] = ACTIONS(7172), - [anon_sym_enum] = ACTIONS(7172), - [anon_sym_LBRACE] = ACTIONS(7174), - [anon_sym_LPAREN] = ACTIONS(7174), - [anon_sym_val] = ACTIONS(7172), - [anon_sym_var] = ACTIONS(7172), - [anon_sym_object] = ACTIONS(7172), - [anon_sym_fun] = ACTIONS(7172), - [anon_sym_get] = ACTIONS(7172), - [anon_sym_set] = ACTIONS(7172), - [anon_sym_this] = ACTIONS(7172), - [anon_sym_super] = ACTIONS(7172), - [anon_sym_STAR] = ACTIONS(7174), - [sym_label] = ACTIONS(7172), - [anon_sym_for] = ACTIONS(7172), - [anon_sym_while] = ACTIONS(7172), - [anon_sym_do] = ACTIONS(7172), - [anon_sym_null] = ACTIONS(7172), - [anon_sym_if] = ACTIONS(7172), - [anon_sym_when] = ACTIONS(7172), - [anon_sym_try] = ACTIONS(7172), - [anon_sym_throw] = ACTIONS(7172), - [anon_sym_return] = ACTIONS(7172), - [anon_sym_continue] = ACTIONS(7172), - [anon_sym_break] = ACTIONS(7172), - [anon_sym_COLON_COLON] = ACTIONS(7174), - [anon_sym_PLUS] = ACTIONS(7172), - [anon_sym_DASH] = ACTIONS(7172), - [anon_sym_PLUS_PLUS] = ACTIONS(7174), - [anon_sym_DASH_DASH] = ACTIONS(7174), - [anon_sym_BANG] = ACTIONS(7174), - [anon_sym_suspend] = ACTIONS(7172), - [anon_sym_sealed] = ACTIONS(7172), - [anon_sym_annotation] = ACTIONS(7172), - [anon_sym_data] = ACTIONS(7172), - [anon_sym_inner] = ACTIONS(7172), - [anon_sym_value] = ACTIONS(7172), - [anon_sym_override] = ACTIONS(7172), - [anon_sym_lateinit] = ACTIONS(7172), - [anon_sym_public] = ACTIONS(7172), - [anon_sym_private] = ACTIONS(7172), - [anon_sym_internal] = ACTIONS(7172), - [anon_sym_protected] = ACTIONS(7172), - [anon_sym_tailrec] = ACTIONS(7172), - [anon_sym_operator] = ACTIONS(7172), - [anon_sym_infix] = ACTIONS(7172), - [anon_sym_inline] = ACTIONS(7172), - [anon_sym_external] = ACTIONS(7172), - [sym_property_modifier] = ACTIONS(7172), - [anon_sym_abstract] = ACTIONS(7172), - [anon_sym_final] = ACTIONS(7172), - [anon_sym_open] = ACTIONS(7172), - [anon_sym_vararg] = ACTIONS(7172), - [anon_sym_noinline] = ACTIONS(7172), - [anon_sym_crossinline] = ACTIONS(7172), - [anon_sym_expect] = ACTIONS(7172), - [anon_sym_actual] = ACTIONS(7172), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7174), - [anon_sym_continue_AT] = ACTIONS(7174), - [anon_sym_break_AT] = ACTIONS(7174), - [sym_real_literal] = ACTIONS(7174), - [sym_integer_literal] = ACTIONS(7172), - [sym_hex_literal] = ACTIONS(7174), - [sym_bin_literal] = ACTIONS(7174), - [anon_sym_true] = ACTIONS(7172), - [anon_sym_false] = ACTIONS(7172), - [anon_sym_SQUOTE] = ACTIONS(7174), - [sym__backtick_identifier] = ACTIONS(7174), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7174), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7275), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7277), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [4078] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4080), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [sym_type_constraints] = STATE(4168), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [4079] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_typealias] = ACTIONS(4955), - [anon_sym_class] = ACTIONS(4955), - [anon_sym_interface] = ACTIONS(4955), - [anon_sym_enum] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_val] = ACTIONS(4955), - [anon_sym_var] = ACTIONS(4955), - [anon_sym_object] = ACTIONS(4955), - [anon_sym_fun] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4955), - [anon_sym_set] = ACTIONS(4955), - [anon_sym_this] = ACTIONS(4955), - [anon_sym_super] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4957), - [sym_label] = ACTIONS(4955), - [anon_sym_for] = ACTIONS(4955), - [anon_sym_while] = ACTIONS(4955), - [anon_sym_do] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_if] = 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] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4957), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7277), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [4080] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4080), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(7176), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_object] = ACTIONS(4580), - [anon_sym_fun] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_this] = ACTIONS(4580), - [anon_sym_super] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4582), - [sym_label] = ACTIONS(4580), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_null] = ACTIONS(4580), - [anon_sym_if] = ACTIONS(4580), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_when] = ACTIONS(4580), - [anon_sym_try] = ACTIONS(4580), - [anon_sym_throw] = ACTIONS(4580), - [anon_sym_return] = ACTIONS(4580), - [anon_sym_continue] = ACTIONS(4580), - [anon_sym_break] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4582), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4580), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4582), - [anon_sym_continue_AT] = ACTIONS(4582), - [anon_sym_break_AT] = ACTIONS(4582), - [sym_real_literal] = ACTIONS(4582), - [sym_integer_literal] = ACTIONS(4580), - [sym_hex_literal] = ACTIONS(4582), - [sym_bin_literal] = ACTIONS(4582), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [anon_sym_SQUOTE] = ACTIONS(4582), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4582), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3103), + [anon_sym_DASH_EQ] = ACTIONS(3103), + [anon_sym_STAR_EQ] = ACTIONS(3103), + [anon_sym_SLASH_EQ] = ACTIONS(3103), + [anon_sym_PERCENT_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4081] = { - [sym_type_constraints] = STATE(4214), - [sym_function_body] = STATE(3828), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(7179), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [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_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(4124), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3203), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_object] = ACTIONS(4349), + [anon_sym_fun] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_this] = ACTIONS(4349), + [anon_sym_super] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_try] = ACTIONS(4349), + [anon_sym_throw] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4351), + [anon_sym_continue_AT] = ACTIONS(4351), + [anon_sym_break_AT] = ACTIONS(4351), + [anon_sym_this_AT] = ACTIONS(4351), + [anon_sym_super_AT] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4351), + [sym_integer_literal] = ACTIONS(4349), + [sym_hex_literal] = ACTIONS(4351), + [sym_bin_literal] = ACTIONS(4351), + [anon_sym_true] = ACTIONS(4349), + [anon_sym_false] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4351), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4351), }, [4082] = { - [sym_type_constraints] = STATE(4112), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [anon_sym_DASH_EQ] = ACTIONS(3184), + [anon_sym_STAR_EQ] = ACTIONS(3184), + [anon_sym_SLASH_EQ] = ACTIONS(3184), + [anon_sym_PERCENT_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4083] = { - [sym_type_constraints] = STATE(4111), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5852), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [4084] = { - [sym_type_constraints] = STATE(4196), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(7181), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_type_constraints] = STATE(4174), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7283), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4085] = { - [sym_type_constraints] = STATE(4141), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [4086] = { - [sym_type_constraints] = STATE(4106), - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3157), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_object] = ACTIONS(4497), + [anon_sym_fun] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_this] = ACTIONS(4497), + [anon_sym_super] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_try] = ACTIONS(4497), + [anon_sym_throw] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4499), + [anon_sym_continue_AT] = ACTIONS(4499), + [anon_sym_break_AT] = ACTIONS(4499), + [anon_sym_this_AT] = ACTIONS(4499), + [anon_sym_super_AT] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4499), + [sym_integer_literal] = ACTIONS(4497), + [sym_hex_literal] = ACTIONS(4499), + [sym_bin_literal] = ACTIONS(4499), + [anon_sym_true] = ACTIONS(4497), + [anon_sym_false] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4499), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4499), }, [4087] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4090), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_object] = ACTIONS(4576), - [anon_sym_fun] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_this] = ACTIONS(4576), - [anon_sym_super] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4578), - [sym_label] = ACTIONS(4576), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_null] = ACTIONS(4576), - [anon_sym_if] = ACTIONS(4576), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_when] = ACTIONS(4576), - [anon_sym_try] = ACTIONS(4576), - [anon_sym_throw] = ACTIONS(4576), - [anon_sym_return] = ACTIONS(4576), - [anon_sym_continue] = ACTIONS(4576), - [anon_sym_break] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4578), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG] = ACTIONS(4576), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4578), - [anon_sym_continue_AT] = ACTIONS(4578), - [anon_sym_break_AT] = ACTIONS(4578), - [sym_real_literal] = ACTIONS(4578), - [sym_integer_literal] = ACTIONS(4576), - [sym_hex_literal] = ACTIONS(4578), - [sym_bin_literal] = ACTIONS(4578), - [anon_sym_true] = ACTIONS(4576), - [anon_sym_false] = ACTIONS(4576), - [anon_sym_SQUOTE] = ACTIONS(4578), - [sym__backtick_identifier] = ACTIONS(4578), - [sym__automatic_semicolon] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4578), + [sym_type_constraints] = STATE(4206), + [sym_function_body] = STATE(3552), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), + [sym_multiline_comment] = ACTIONS(3), }, [4088] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4051), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [sym_type_constraints] = STATE(4222), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4089] = { - [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), - [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), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7219), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3115), + [anon_sym_DASH_EQ] = ACTIONS(3115), + [anon_sym_STAR_EQ] = ACTIONS(3115), + [anon_sym_SLASH_EQ] = ACTIONS(3115), + [anon_sym_PERCENT_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4090] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4080), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_object] = ACTIONS(4534), - [anon_sym_fun] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_this] = ACTIONS(4534), - [anon_sym_super] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4534), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4534), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4536), - [anon_sym_continue_AT] = ACTIONS(4536), - [anon_sym_break_AT] = ACTIONS(4536), - [sym_real_literal] = ACTIONS(4536), - [sym_integer_literal] = ACTIONS(4534), - [sym_hex_literal] = ACTIONS(4536), - [sym_bin_literal] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4534), - [anon_sym_false] = ACTIONS(4534), - [anon_sym_SQUOTE] = ACTIONS(4536), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4536), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7291), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4091] = { - [sym_type_constraints] = STATE(4105), - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7295), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4092] = { - [sym_function_body] = STATE(3340), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1823), + [sym__in_operator] = STATE(1822), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1820), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1818), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7217), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7221), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_PLUS_EQ] = ACTIONS(3127), + [anon_sym_DASH_EQ] = ACTIONS(3127), + [anon_sym_STAR_EQ] = ACTIONS(3127), + [anon_sym_SLASH_EQ] = ACTIONS(3127), + [anon_sym_PERCENT_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7217), + [anon_sym_PERCENT] = ACTIONS(7217), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), + [sym_multiline_comment] = ACTIONS(3), }, [4093] = { - [sym_function_body] = STATE(3337), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_object] = ACTIONS(4470), - [anon_sym_fun] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_this] = ACTIONS(4470), - [anon_sym_super] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_when] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_throw] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4472), - [anon_sym_continue_AT] = ACTIONS(4472), - [anon_sym_break_AT] = ACTIONS(4472), - [sym_real_literal] = ACTIONS(4472), - [sym_integer_literal] = ACTIONS(4470), - [sym_hex_literal] = ACTIONS(4472), - [sym_bin_literal] = ACTIONS(4472), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4472), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4472), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6650), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [4094] = { - [sym_type_constraints] = STATE(4180), - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6646), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [4095] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(7030), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_object] = ACTIONS(4452), - [anon_sym_fun] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_this] = ACTIONS(4452), - [anon_sym_super] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4452), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4452), - [anon_sym_if] = ACTIONS(4452), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_try] = ACTIONS(4452), - [anon_sym_throw] = ACTIONS(4452), - [anon_sym_return] = ACTIONS(4452), - [anon_sym_continue] = ACTIONS(4452), - [anon_sym_break] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4452), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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), - [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), + [sym_type_constraints] = STATE(4219), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), }, [4096] = { - [sym_function_body] = STATE(3334), - [sym__block] = STATE(3353), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_LBRACE] = ACTIONS(6308), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_object] = ACTIONS(4466), - [anon_sym_fun] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_this] = ACTIONS(4466), - [anon_sym_super] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4466), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4468), - [anon_sym_continue_AT] = ACTIONS(4468), - [anon_sym_break_AT] = ACTIONS(4468), - [sym_real_literal] = ACTIONS(4468), - [sym_integer_literal] = ACTIONS(4466), - [sym_hex_literal] = ACTIONS(4468), - [sym_bin_literal] = ACTIONS(4468), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4468), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4468), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, [4097] = { - [sym__alpha_identifier] = ACTIONS(7189), - [anon_sym_AT] = ACTIONS(7191), - [anon_sym_LBRACK] = ACTIONS(7191), - [anon_sym_typealias] = ACTIONS(7189), - [anon_sym_class] = ACTIONS(7189), - [anon_sym_interface] = ACTIONS(7189), - [anon_sym_enum] = ACTIONS(7189), - [anon_sym_LBRACE] = ACTIONS(7191), - [anon_sym_LPAREN] = ACTIONS(7191), - [anon_sym_val] = ACTIONS(7189), - [anon_sym_var] = ACTIONS(7189), - [anon_sym_object] = ACTIONS(7189), - [anon_sym_fun] = ACTIONS(7189), - [anon_sym_get] = ACTIONS(7189), - [anon_sym_set] = ACTIONS(7189), - [anon_sym_this] = ACTIONS(7189), - [anon_sym_super] = ACTIONS(7189), - [anon_sym_STAR] = ACTIONS(7191), - [sym_label] = ACTIONS(7189), - [anon_sym_for] = ACTIONS(7189), - [anon_sym_while] = ACTIONS(7189), - [anon_sym_do] = ACTIONS(7189), - [anon_sym_null] = ACTIONS(7189), - [anon_sym_if] = ACTIONS(7189), - [anon_sym_when] = ACTIONS(7189), - [anon_sym_try] = ACTIONS(7189), - [anon_sym_throw] = ACTIONS(7189), - [anon_sym_return] = ACTIONS(7189), - [anon_sym_continue] = ACTIONS(7189), - [anon_sym_break] = ACTIONS(7189), - [anon_sym_COLON_COLON] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7189), - [anon_sym_DASH] = ACTIONS(7189), - [anon_sym_PLUS_PLUS] = ACTIONS(7191), - [anon_sym_DASH_DASH] = ACTIONS(7191), - [anon_sym_BANG] = ACTIONS(7191), - [anon_sym_suspend] = ACTIONS(7189), - [anon_sym_sealed] = ACTIONS(7189), - [anon_sym_annotation] = ACTIONS(7189), - [anon_sym_data] = ACTIONS(7189), - [anon_sym_inner] = ACTIONS(7189), - [anon_sym_value] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_lateinit] = ACTIONS(7189), - [anon_sym_public] = ACTIONS(7189), - [anon_sym_private] = ACTIONS(7189), - [anon_sym_internal] = ACTIONS(7189), - [anon_sym_protected] = ACTIONS(7189), - [anon_sym_tailrec] = ACTIONS(7189), - [anon_sym_operator] = ACTIONS(7189), - [anon_sym_infix] = ACTIONS(7189), - [anon_sym_inline] = ACTIONS(7189), - [anon_sym_external] = ACTIONS(7189), - [sym_property_modifier] = ACTIONS(7189), - [anon_sym_abstract] = ACTIONS(7189), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_open] = ACTIONS(7189), - [anon_sym_vararg] = ACTIONS(7189), - [anon_sym_noinline] = ACTIONS(7189), - [anon_sym_crossinline] = ACTIONS(7189), - [anon_sym_expect] = ACTIONS(7189), - [anon_sym_actual] = ACTIONS(7189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7191), - [anon_sym_continue_AT] = ACTIONS(7191), - [anon_sym_break_AT] = ACTIONS(7191), - [sym_real_literal] = ACTIONS(7191), - [sym_integer_literal] = ACTIONS(7189), - [sym_hex_literal] = ACTIONS(7191), - [sym_bin_literal] = ACTIONS(7191), - [anon_sym_true] = ACTIONS(7189), - [anon_sym_false] = ACTIONS(7189), - [anon_sym_SQUOTE] = ACTIONS(7191), - [sym__backtick_identifier] = ACTIONS(7191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7191), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PERCENT_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), }, [4098] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3053), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [aux_sym__delegation_specifiers_repeat1] = STATE(4140), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_DASH_GT] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, [4099] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_as] = 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_by] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_while] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(5410), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [4100] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(3033), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), [sym_multiline_comment] = ACTIONS(3), }, [4101] = { - [sym_type_constraints] = STATE(4211), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(7193), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4102] = { - [sym_function_body] = STATE(3743), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_COMMA] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), + [sym_type_constraints] = STATE(4183), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4103] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7195), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_where] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), }, [4104] = { - [sym_type_constraints] = STATE(4209), - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_type_constraints] = STATE(4176), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [4105] = { - [sym_function_body] = STATE(3856), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym_type_constraints] = STATE(4174), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4106] = { - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_COMMA] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_type_constraints] = STATE(4213), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4107] = { - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(6219), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4108] = { - [sym_class_body] = STATE(3859), - [sym_type_constraints] = STATE(3615), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_COMMA] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4109] = { - [sym_function_body] = STATE(3494), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(7199), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_while] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym_type_constraints] = STATE(4168), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4110] = { - [sym_type_constraints] = STATE(3168), - [sym_enum_class_body] = STATE(3182), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3127), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4111] = { - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_type_constraints] = STATE(4245), + [sym_function_body] = STATE(3866), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4173), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_get] = ACTIONS(4173), + [anon_sym_set] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4175), + [sym_label] = ACTIONS(4175), + [anon_sym_in] = ACTIONS(4173), + [anon_sym_DOT_DOT] = ACTIONS(4175), + [anon_sym_QMARK_COLON] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_PIPE_PIPE] = ACTIONS(4175), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_COLON_COLON] = ACTIONS(4175), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_BANGin] = ACTIONS(4175), + [anon_sym_is] = ACTIONS(4173), + [anon_sym_BANGis] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_as_QMARK] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_BANG_BANG] = ACTIONS(4175), + [anon_sym_suspend] = ACTIONS(4173), + [anon_sym_sealed] = ACTIONS(4173), + [anon_sym_annotation] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4173), + [anon_sym_inner] = ACTIONS(4173), + [anon_sym_value] = ACTIONS(4173), + [anon_sym_override] = ACTIONS(4173), + [anon_sym_lateinit] = ACTIONS(4173), + [anon_sym_public] = ACTIONS(4173), + [anon_sym_private] = ACTIONS(4173), + [anon_sym_internal] = ACTIONS(4173), + [anon_sym_protected] = ACTIONS(4173), + [anon_sym_tailrec] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4173), + [anon_sym_infix] = ACTIONS(4173), + [anon_sym_inline] = ACTIONS(4173), + [anon_sym_external] = ACTIONS(4173), + [sym_property_modifier] = ACTIONS(4173), + [anon_sym_abstract] = ACTIONS(4173), + [anon_sym_final] = ACTIONS(4173), + [anon_sym_open] = ACTIONS(4173), + [anon_sym_vararg] = ACTIONS(4173), + [anon_sym_noinline] = ACTIONS(4173), + [anon_sym_crossinline] = ACTIONS(4173), + [anon_sym_expect] = ACTIONS(4173), + [anon_sym_actual] = ACTIONS(4173), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4175), + [sym__automatic_semicolon] = ACTIONS(4175), + [sym_safe_nav] = ACTIONS(4175), [sym_multiline_comment] = ACTIONS(3), }, [4112] = { - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_PLUS_EQ] = ACTIONS(4287), + [anon_sym_DASH_EQ] = ACTIONS(4287), + [anon_sym_STAR_EQ] = ACTIONS(4287), + [anon_sym_SLASH_EQ] = ACTIONS(4287), + [anon_sym_PERCENT_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4113] = { - [sym_class_body] = STATE(3267), - [sym_type_constraints] = STATE(3172), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4114] = { - [sym_type_constraints] = STATE(3640), - [sym_enum_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3134), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4115] = { - [sym_type_constraints] = STATE(4206), - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, [4116] = { - [sym_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(7205), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_object] = ACTIONS(4520), - [anon_sym_fun] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_this] = ACTIONS(4520), - [anon_sym_super] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_null] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4520), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4520), - [anon_sym_throw] = ACTIONS(4520), - [anon_sym_return] = ACTIONS(4520), - [anon_sym_continue] = ACTIONS(4520), - [anon_sym_break] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4522), - [anon_sym_continue_AT] = ACTIONS(4522), - [anon_sym_break_AT] = ACTIONS(4522), - [sym_real_literal] = ACTIONS(4522), - [sym_integer_literal] = ACTIONS(4520), - [sym_hex_literal] = ACTIONS(4522), - [sym_bin_literal] = ACTIONS(4522), - [anon_sym_true] = ACTIONS(4520), - [anon_sym_false] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4522), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4522), + [sym_type_constraints] = STATE(4202), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), }, [4117] = { - [sym_class_body] = STATE(3880), - [sym_type_constraints] = STATE(3695), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), + [sym_type_constraints] = STATE(4167), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4118] = { - [sym_type_constraints] = STATE(4182), - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4119] = { - [sym_type_constraints] = STATE(4196), - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4120] = { - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7349), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4121] = { - [sym_class_body] = STATE(3182), - [sym_type_constraints] = STATE(3135), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS_EQ] = ACTIONS(4265), + [anon_sym_DASH_EQ] = ACTIONS(4265), + [anon_sym_STAR_EQ] = ACTIONS(4265), + [anon_sym_SLASH_EQ] = ACTIONS(4265), + [anon_sym_PERCENT_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4122] = { - [sym_class_body] = STATE(3820), - [sym_type_constraints] = STATE(3667), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(7209), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3115), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4123] = { - [sym_class_body] = STATE(3784), - [sym_type_constraints] = STATE(3696), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(6119), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym_type_constraints] = STATE(4222), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4124] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3453), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7211), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = 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_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(4250), - [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_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3138), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4125] = { - [sym_function_body] = STATE(3447), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7213), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4126] = { - [sym_function_body] = STATE(3965), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_COMMA] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4127] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(7215), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(6038), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4259), + [anon_sym_sealed] = ACTIONS(4259), + [anon_sym_annotation] = ACTIONS(4259), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_override] = ACTIONS(4259), + [anon_sym_lateinit] = ACTIONS(4259), + [anon_sym_public] = ACTIONS(4259), + [anon_sym_private] = ACTIONS(4259), + [anon_sym_internal] = ACTIONS(4259), + [anon_sym_protected] = ACTIONS(4259), + [anon_sym_tailrec] = ACTIONS(4259), + [anon_sym_operator] = ACTIONS(4259), + [anon_sym_infix] = ACTIONS(4259), + [anon_sym_inline] = ACTIONS(4259), + [anon_sym_external] = ACTIONS(4259), + [sym_property_modifier] = ACTIONS(4259), + [anon_sym_abstract] = ACTIONS(4259), + [anon_sym_final] = ACTIONS(4259), + [anon_sym_open] = ACTIONS(4259), + [anon_sym_vararg] = ACTIONS(4259), + [anon_sym_noinline] = ACTIONS(4259), + [anon_sym_crossinline] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), }, [4128] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7217), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(7215), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4129] = { - [sym_type_constraints] = STATE(3648), - [sym_enum_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(7219), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), + [sym_type_constraints] = STATE(4231), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [4130] = { - [sym_class_body] = STATE(3392), - [sym_type_constraints] = STATE(3092), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(3), - }, - [4131] = { - [sym_type_constraints] = STATE(4211), - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), - }, - [4132] = { - [sym_type_constraints] = STATE(3040), - [sym_enum_class_body] = STATE(3331), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_while] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), - }, - [4133] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7223), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [anon_sym_DASH_GT] = ACTIONS(4779), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_while] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - }, - [4134] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - }, - [4135] = { - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_COMMA] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_where] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), - [sym_multiline_comment] = ACTIONS(3), - }, - [4136] = { - [sym_class_body] = STATE(3176), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_object] = ACTIONS(4528), - [anon_sym_fun] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_this] = ACTIONS(4528), - [anon_sym_super] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_null] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4530), - [anon_sym_continue_AT] = ACTIONS(4530), - [anon_sym_break_AT] = ACTIONS(4530), - [sym_real_literal] = ACTIONS(4530), - [sym_integer_literal] = ACTIONS(4528), - [sym_hex_literal] = ACTIONS(4530), - [sym_bin_literal] = ACTIONS(4530), - [anon_sym_true] = ACTIONS(4528), - [anon_sym_false] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4530), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4530), - }, - [4137] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), - }, - [4138] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_RBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_DASH_GT] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7227), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - }, - [4139] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6608), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), - }, - [4140] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_RBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7229), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_DASH_GT] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7227), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), - }, - [4141] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + }, + [4131] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4132] = { + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), + }, + [4133] = { + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(6042), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4284), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_QMARK_COLON] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4009), + [anon_sym_DASH_EQ] = ACTIONS(4009), + [anon_sym_STAR_EQ] = ACTIONS(4009), + [anon_sym_SLASH_EQ] = ACTIONS(4009), + [anon_sym_PERCENT_EQ] = ACTIONS(4009), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4284), + [anon_sym_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_EQ] = ACTIONS(4284), + [anon_sym_BANGin] = ACTIONS(4284), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + }, + [4134] = { + [sym_type_constraints] = STATE(4200), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), + }, + [4135] = { + [sym_type_constraints] = STATE(4252), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_COLON] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [4136] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3103), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4137] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + }, + [4138] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_PLUS_EQ] = ACTIONS(4820), + [anon_sym_DASH_EQ] = ACTIONS(4820), + [anon_sym_STAR_EQ] = ACTIONS(4820), + [anon_sym_SLASH_EQ] = ACTIONS(4820), + [anon_sym_PERCENT_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + }, + [4139] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3123), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4140] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4140), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7363), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_DASH_GT] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_while] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), + [sym_multiline_comment] = ACTIONS(3), + }, + [4141] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(3188), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4142] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7231), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym_type_constraints] = STATE(4232), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_COLON] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4143] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3177), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4144] = { - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4145] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym_type_constraints] = STATE(4241), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4146] = { - [sym_type_constraints] = STATE(3085), - [sym_enum_class_body] = STATE(3390), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4147] = { - [sym_class_body] = STATE(3453), - [sym_type_constraints] = STATE(3087), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7239), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = 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_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(4250), - [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_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4148] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_RBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_DASH_GT] = ACTIONS(4769), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_while] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7370), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4149] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7243), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_DASH_GT] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), }, [4150] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7245), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7374), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [4151] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [anon_sym_DASH_GT] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym_type_constraints] = STATE(4259), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [4152] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6304), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), + [sym_multiline_comment] = ACTIONS(3), }, [4153] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(6893), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_throw] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [4154] = { - [sym_function_body] = STATE(3291), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_while] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [4155] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4172), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(7253), - [anon_sym_RPAREN] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4578), - [sym_label] = ACTIONS(4578), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_while] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4578), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_suspend] = ACTIONS(4576), - [anon_sym_sealed] = ACTIONS(4576), - [anon_sym_annotation] = ACTIONS(4576), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_override] = ACTIONS(4576), - [anon_sym_lateinit] = ACTIONS(4576), - [anon_sym_public] = ACTIONS(4576), - [anon_sym_private] = ACTIONS(4576), - [anon_sym_internal] = ACTIONS(4576), - [anon_sym_protected] = ACTIONS(4576), - [anon_sym_tailrec] = ACTIONS(4576), - [anon_sym_operator] = ACTIONS(4576), - [anon_sym_infix] = ACTIONS(4576), - [anon_sym_inline] = ACTIONS(4576), - [anon_sym_external] = ACTIONS(4576), - [sym_property_modifier] = ACTIONS(4576), - [anon_sym_abstract] = ACTIONS(4576), - [anon_sym_final] = ACTIONS(4576), - [anon_sym_open] = ACTIONS(4576), - [anon_sym_vararg] = ACTIONS(4576), - [anon_sym_noinline] = ACTIONS(4576), - [anon_sym_crossinline] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), + [sym_class_body] = STATE(3513), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7378), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4156] = { - [sym_function_body] = STATE(3411), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_while] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6306), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4157] = { - [sym_type_constraints] = STATE(3640), - [sym_enum_class_body] = STATE(3880), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6308), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4158] = { - [sym_function_body] = STATE(3762), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4284), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_COLON] = ACTIONS(7257), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4284), - [anon_sym_set] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4284), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4284), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_SLASH] = ACTIONS(4284), - [anon_sym_PERCENT] = ACTIONS(4286), - [anon_sym_as_QMARK] = ACTIONS(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_suspend] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_annotation] = ACTIONS(4284), - [anon_sym_data] = ACTIONS(4284), - [anon_sym_inner] = ACTIONS(4284), - [anon_sym_value] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_lateinit] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_tailrec] = ACTIONS(4284), - [anon_sym_operator] = ACTIONS(4284), - [anon_sym_infix] = ACTIONS(4284), - [anon_sym_inline] = ACTIONS(4284), - [anon_sym_external] = ACTIONS(4284), - [sym_property_modifier] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_final] = ACTIONS(4284), - [anon_sym_open] = ACTIONS(4284), - [anon_sym_vararg] = ACTIONS(4284), - [anon_sym_noinline] = ACTIONS(4284), - [anon_sym_crossinline] = ACTIONS(4284), - [anon_sym_expect] = ACTIONS(4284), - [anon_sym_actual] = ACTIONS(4284), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym_class_body] = STATE(3543), + [sym_type_constraints] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [4159] = { - [sym_function_body] = STATE(3451), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), + [sym__type] = STATE(9386), + [sym__type_reference] = STATE(8216), + [sym_not_nullable_type] = STATE(9386), + [sym_nullable_type] = STATE(9386), + [sym_user_type] = STATE(8332), + [sym__simple_user_type] = STATE(8138), + [sym_type_projection] = STATE(8908), + [sym_type_projection_modifiers] = STATE(6124), + [sym__type_projection_modifier] = STATE(7214), + [sym_function_type] = STATE(9386), + [sym_function_type_parameters] = STATE(9736), + [sym_parenthesized_type] = STATE(8216), + [sym_parenthesized_user_type] = STATE(9735), + [sym_type_modifiers] = STATE(6420), + [sym__type_modifier] = STATE(7213), + [sym_variance_modifier] = STATE(7214), + [sym_annotation] = STATE(7213), + [sym__single_annotation] = STATE(7848), + [sym__multi_annotation] = STATE(7848), + [sym_simple_identifier] = STATE(7893), + [sym__lexical_identifier] = STATE(6224), + [aux_sym_type_projection_modifiers_repeat1] = STATE(7214), + [aux_sym_type_modifiers_repeat1] = STATE(7213), + [sym__alpha_identifier] = ACTIONS(7382), + [anon_sym_AT] = ACTIONS(7385), + [anon_sym_LBRACK] = ACTIONS(7388), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_LPAREN] = ACTIONS(7390), + [anon_sym_object] = ACTIONS(7393), + [anon_sym_fun] = ACTIONS(7393), + [anon_sym_get] = ACTIONS(7395), + [anon_sym_set] = ACTIONS(7395), + [anon_sym_this] = ACTIONS(7393), + [anon_sym_super] = ACTIONS(7393), + [anon_sym_dynamic] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7400), + [sym_label] = ACTIONS(7393), + [anon_sym_in] = ACTIONS(7403), + [anon_sym_null] = ACTIONS(7393), + [anon_sym_if] = ACTIONS(7393), + [anon_sym_when] = ACTIONS(7393), + [anon_sym_try] = ACTIONS(7393), + [anon_sym_throw] = ACTIONS(7393), + [anon_sym_return] = ACTIONS(7393), + [anon_sym_continue] = ACTIONS(7393), + [anon_sym_break] = ACTIONS(7393), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7388), + [anon_sym_DASH_DASH] = ACTIONS(7388), + [anon_sym_BANG] = ACTIONS(7388), + [anon_sym_suspend] = ACTIONS(7405), + [anon_sym_data] = ACTIONS(7395), + [anon_sym_inner] = ACTIONS(7395), + [anon_sym_value] = ACTIONS(7395), + [anon_sym_out] = ACTIONS(7403), + [anon_sym_expect] = ACTIONS(7395), + [anon_sym_actual] = ACTIONS(7395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7388), + [anon_sym_continue_AT] = ACTIONS(7388), + [anon_sym_break_AT] = ACTIONS(7388), + [anon_sym_this_AT] = ACTIONS(7388), + [anon_sym_super_AT] = ACTIONS(7388), + [sym_real_literal] = ACTIONS(7388), + [sym_integer_literal] = ACTIONS(7393), + [sym_hex_literal] = ACTIONS(7388), + [sym_bin_literal] = ACTIONS(7388), + [anon_sym_true] = ACTIONS(7393), + [anon_sym_false] = ACTIONS(7393), + [anon_sym_SQUOTE] = ACTIONS(7388), + [sym__backtick_identifier] = ACTIONS(7407), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7388), }, [4160] = { - [sym_function_body] = STATE(3301), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_RPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_type_constraints] = STATE(3327), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [4161] = { - [sym_function_body] = STATE(3311), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3539), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4162] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7259), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_COMMA] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_where] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), + [sym_multiline_comment] = ACTIONS(3), }, [4163] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7263), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_COMMA] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), + [sym_multiline_comment] = ACTIONS(3), }, [4164] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_COLON] = ACTIONS(7267), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7410), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4165] = { - [sym_function_body] = STATE(3443), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_RPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_while] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [4166] = { - [sym_value_arguments] = STATE(3740), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(7269), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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_type_constraints] = STATE(4232), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4167] = { - [sym_function_body] = STATE(3318), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_while] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_COMMA] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_where] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4168] = { - [sym_function_body] = STATE(3438), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_RPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4169] = { - [sym_class_body] = STATE(3859), - [sym_type_constraints] = STATE(3615), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [4170] = { - [sym_class_body] = STATE(3760), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(7271), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7412), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4265), + [anon_sym_continue_AT] = ACTIONS(4265), + [anon_sym_break_AT] = ACTIONS(4265), + [anon_sym_this_AT] = ACTIONS(4265), + [anon_sym_super_AT] = ACTIONS(4265), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, [4171] = { - [sym_class_body] = STATE(3820), - [sym_type_constraints] = STATE(3667), - [sym__alpha_identifier] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_COLON] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4266), - [anon_sym_GT] = ACTIONS(4266), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4266), - [anon_sym_set] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4266), - [anon_sym_DOT_DOT] = ACTIONS(4268), - [anon_sym_QMARK_COLON] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4268), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_BANGin] = ACTIONS(4268), - [anon_sym_is] = ACTIONS(4266), - [anon_sym_BANGis] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_SLASH] = ACTIONS(4266), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4268), - [anon_sym_suspend] = ACTIONS(4266), - [anon_sym_sealed] = ACTIONS(4266), - [anon_sym_annotation] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4266), - [anon_sym_inner] = ACTIONS(4266), - [anon_sym_value] = ACTIONS(4266), - [anon_sym_override] = ACTIONS(4266), - [anon_sym_lateinit] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_internal] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_tailrec] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_infix] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym_external] = ACTIONS(4266), - [sym_property_modifier] = ACTIONS(4266), - [anon_sym_abstract] = ACTIONS(4266), - [anon_sym_final] = ACTIONS(4266), - [anon_sym_open] = ACTIONS(4266), - [anon_sym_vararg] = ACTIONS(4266), - [anon_sym_noinline] = ACTIONS(4266), - [anon_sym_crossinline] = ACTIONS(4266), - [anon_sym_expect] = ACTIONS(4266), - [anon_sym_actual] = ACTIONS(4266), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4268), - [sym__automatic_semicolon] = ACTIONS(4268), - [sym_safe_nav] = ACTIONS(4268), + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [4172] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4051), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(7253), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4173] = { - [sym_type_constraints] = STATE(3689), - [sym_enum_class_body] = STATE(3790), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_value] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4174] = { - [sym_class_body] = STATE(3852), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [4175] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_COLON] = ACTIONS(7277), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7418), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_value] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4176] = { - [sym_type_constraints] = STATE(3654), - [sym_enum_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_as] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3198), - [sym_label] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_DOT_DOT] = ACTIONS(3198), - [anon_sym_QMARK_COLON] = ACTIONS(3198), - [anon_sym_AMP_AMP] = ACTIONS(3198), - [anon_sym_PIPE_PIPE] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3198), - [anon_sym_BANGin] = ACTIONS(3198), - [anon_sym_is] = ACTIONS(3194), - [anon_sym_BANGis] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PERCENT] = ACTIONS(3198), - [anon_sym_as_QMARK] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_BANG_BANG] = ACTIONS(3198), - [anon_sym_suspend] = ACTIONS(3194), - [anon_sym_sealed] = ACTIONS(3194), - [anon_sym_annotation] = ACTIONS(3194), - [anon_sym_data] = ACTIONS(3194), - [anon_sym_inner] = ACTIONS(3194), - [anon_sym_value] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_lateinit] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_internal] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_tailrec] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_infix] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_external] = ACTIONS(3194), - [sym_property_modifier] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_vararg] = ACTIONS(3194), - [anon_sym_noinline] = ACTIONS(3194), - [anon_sym_crossinline] = ACTIONS(3194), - [anon_sym_expect] = ACTIONS(3194), - [anon_sym_actual] = ACTIONS(3194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3198), - [sym__automatic_semicolon] = ACTIONS(3198), - [sym_safe_nav] = ACTIONS(3198), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4177] = { - [sym_type_constraints] = STATE(3648), - [sym_enum_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_COLON] = ACTIONS(7279), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_as] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(5420), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_LT] = ACTIONS(4272), - [anon_sym_GT] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_get] = ACTIONS(4272), - [anon_sym_set] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4274), - [sym_label] = ACTIONS(4274), - [anon_sym_in] = ACTIONS(4272), - [anon_sym_DOT_DOT] = ACTIONS(4274), - [anon_sym_QMARK_COLON] = ACTIONS(4274), - [anon_sym_AMP_AMP] = ACTIONS(4274), - [anon_sym_PIPE_PIPE] = ACTIONS(4274), - [anon_sym_else] = ACTIONS(4272), - [anon_sym_COLON_COLON] = ACTIONS(4274), - [anon_sym_BANG_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4274), - [anon_sym_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4274), - [anon_sym_LT_EQ] = ACTIONS(4274), - [anon_sym_GT_EQ] = ACTIONS(4274), - [anon_sym_BANGin] = ACTIONS(4274), - [anon_sym_is] = ACTIONS(4272), - [anon_sym_BANGis] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_SLASH] = ACTIONS(4272), - [anon_sym_PERCENT] = ACTIONS(4274), - [anon_sym_as_QMARK] = ACTIONS(4274), - [anon_sym_PLUS_PLUS] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4274), - [anon_sym_BANG_BANG] = ACTIONS(4274), - [anon_sym_suspend] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_annotation] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4272), - [anon_sym_inner] = ACTIONS(4272), - [anon_sym_value] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_lateinit] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_tailrec] = ACTIONS(4272), - [anon_sym_operator] = ACTIONS(4272), - [anon_sym_infix] = ACTIONS(4272), - [anon_sym_inline] = ACTIONS(4272), - [anon_sym_external] = ACTIONS(4272), - [sym_property_modifier] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_final] = ACTIONS(4272), - [anon_sym_open] = ACTIONS(4272), - [anon_sym_vararg] = ACTIONS(4272), - [anon_sym_noinline] = ACTIONS(4272), - [anon_sym_crossinline] = ACTIONS(4272), - [anon_sym_expect] = ACTIONS(4272), - [anon_sym_actual] = ACTIONS(4272), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4274), - [sym__automatic_semicolon] = ACTIONS(4274), - [sym_safe_nav] = ACTIONS(4274), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_object] = ACTIONS(4818), + [anon_sym_fun] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7422), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_this] = ACTIONS(4818), + [anon_sym_super] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(7374), + [anon_sym_when] = ACTIONS(4818), + [anon_sym_try] = ACTIONS(4818), + [anon_sym_throw] = ACTIONS(4818), + [anon_sym_return] = ACTIONS(4818), + [anon_sym_continue] = ACTIONS(4818), + [anon_sym_break] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4820), + [anon_sym_continue_AT] = ACTIONS(4820), + [anon_sym_break_AT] = ACTIONS(4820), + [anon_sym_this_AT] = ACTIONS(4820), + [anon_sym_super_AT] = ACTIONS(4820), + [sym_real_literal] = ACTIONS(4820), + [sym_integer_literal] = ACTIONS(4818), + [sym_hex_literal] = ACTIONS(4820), + [sym_bin_literal] = ACTIONS(4820), + [anon_sym_true] = ACTIONS(4818), + [anon_sym_false] = ACTIONS(4818), + [anon_sym_SQUOTE] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4820), }, [4178] = { - [sym_class_body] = STATE(3880), - [sym_type_constraints] = STATE(3695), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(7281), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4250), - [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_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(4250), - [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), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7424), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4179] = { - [sym_class_body] = STATE(3784), - [sym_type_constraints] = STATE(3696), - [sym__alpha_identifier] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_as] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [sym_label] = ACTIONS(3208), - [anon_sym_in] = ACTIONS(3204), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [anon_sym_QMARK_COLON] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_BANGin] = ACTIONS(3208), - [anon_sym_is] = ACTIONS(3204), - [anon_sym_BANGis] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_as_QMARK] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_BANG_BANG] = ACTIONS(3208), - [anon_sym_suspend] = ACTIONS(3204), - [anon_sym_sealed] = ACTIONS(3204), - [anon_sym_annotation] = ACTIONS(3204), - [anon_sym_data] = ACTIONS(3204), - [anon_sym_inner] = ACTIONS(3204), - [anon_sym_value] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_lateinit] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_tailrec] = ACTIONS(3204), - [anon_sym_operator] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_inline] = ACTIONS(3204), - [anon_sym_external] = ACTIONS(3204), - [sym_property_modifier] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_vararg] = ACTIONS(3204), - [anon_sym_noinline] = ACTIONS(3204), - [anon_sym_crossinline] = ACTIONS(3204), - [anon_sym_expect] = ACTIONS(3204), - [anon_sym_actual] = ACTIONS(3204), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3208), - [sym__automatic_semicolon] = ACTIONS(3208), - [sym_safe_nav] = ACTIONS(3208), + [sym_class_body] = STATE(3565), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [4180] = { - [sym_function_body] = STATE(3348), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7428), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4287), + [anon_sym_continue_AT] = ACTIONS(4287), + [anon_sym_break_AT] = ACTIONS(4287), + [anon_sym_this_AT] = ACTIONS(4287), + [anon_sym_super_AT] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4287), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4287), + [sym_bin_literal] = ACTIONS(4287), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4287), }, [4181] = { - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3282), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [4182] = { - [sym_function_body] = STATE(3850), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4217), - [anon_sym_AT] = ACTIONS(4219), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_as] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_LPAREN] = ACTIONS(4219), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_get] = ACTIONS(4217), - [anon_sym_set] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4219), - [sym_label] = ACTIONS(4219), - [anon_sym_in] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_QMARK_COLON] = ACTIONS(4219), - [anon_sym_AMP_AMP] = ACTIONS(4219), - [anon_sym_PIPE_PIPE] = ACTIONS(4219), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_COLON_COLON] = ACTIONS(4219), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), - [anon_sym_LT_EQ] = ACTIONS(4219), - [anon_sym_GT_EQ] = ACTIONS(4219), - [anon_sym_BANGin] = ACTIONS(4219), - [anon_sym_is] = ACTIONS(4217), - [anon_sym_BANGis] = ACTIONS(4219), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4219), - [anon_sym_as_QMARK] = ACTIONS(4219), - [anon_sym_PLUS_PLUS] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_BANG_BANG] = ACTIONS(4219), - [anon_sym_suspend] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_annotation] = ACTIONS(4217), - [anon_sym_data] = ACTIONS(4217), - [anon_sym_inner] = ACTIONS(4217), - [anon_sym_value] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_lateinit] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_tailrec] = ACTIONS(4217), - [anon_sym_operator] = ACTIONS(4217), - [anon_sym_infix] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_external] = ACTIONS(4217), - [sym_property_modifier] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_final] = ACTIONS(4217), - [anon_sym_open] = ACTIONS(4217), - [anon_sym_vararg] = ACTIONS(4217), - [anon_sym_noinline] = ACTIONS(4217), - [anon_sym_crossinline] = ACTIONS(4217), - [anon_sym_expect] = ACTIONS(4217), - [anon_sym_actual] = ACTIONS(4217), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4219), - [sym__automatic_semicolon] = ACTIONS(4219), - [sym_safe_nav] = ACTIONS(4219), + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7430), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [4183] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4326), - [anon_sym_fun] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4326), - [anon_sym_super] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_try] = ACTIONS(4326), - [anon_sym_throw] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4324), - [anon_sym_continue_AT] = ACTIONS(4324), - [anon_sym_break_AT] = ACTIONS(4324), - [sym_real_literal] = ACTIONS(4324), - [sym_integer_literal] = ACTIONS(4326), - [sym_hex_literal] = ACTIONS(4324), - [sym_bin_literal] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4326), - [anon_sym_false] = ACTIONS(4326), - [anon_sym_SQUOTE] = ACTIONS(4324), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4324), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), }, [4184] = { - [sym_function_body] = STATE(3965), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4466), - [anon_sym_AT] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym_get] = ACTIONS(4466), - [anon_sym_set] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4468), - [anon_sym_QMARK_COLON] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_PIPE_PIPE] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4468), - [anon_sym_GT_EQ] = ACTIONS(4468), - [anon_sym_BANGin] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_BANGis] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4466), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4468), - [anon_sym_suspend] = ACTIONS(4466), - [anon_sym_sealed] = ACTIONS(4466), - [anon_sym_annotation] = ACTIONS(4466), - [anon_sym_data] = ACTIONS(4466), - [anon_sym_inner] = ACTIONS(4466), - [anon_sym_value] = ACTIONS(4466), - [anon_sym_override] = ACTIONS(4466), - [anon_sym_lateinit] = ACTIONS(4466), - [anon_sym_public] = ACTIONS(4466), - [anon_sym_private] = ACTIONS(4466), - [anon_sym_internal] = ACTIONS(4466), - [anon_sym_protected] = ACTIONS(4466), - [anon_sym_tailrec] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_infix] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym_external] = ACTIONS(4466), - [sym_property_modifier] = ACTIONS(4466), - [anon_sym_abstract] = ACTIONS(4466), - [anon_sym_final] = ACTIONS(4466), - [anon_sym_open] = ACTIONS(4466), - [anon_sym_vararg] = ACTIONS(4466), - [anon_sym_noinline] = ACTIONS(4466), - [anon_sym_crossinline] = ACTIONS(4466), - [anon_sym_expect] = ACTIONS(4466), - [anon_sym_actual] = ACTIONS(4466), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4468), - [sym__automatic_semicolon] = ACTIONS(4468), - [sym_safe_nav] = ACTIONS(4468), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7432), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_object] = ACTIONS(4874), + [anon_sym_fun] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_this] = ACTIONS(4874), + [anon_sym_super] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_if] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_try] = ACTIONS(4874), + [anon_sym_throw] = ACTIONS(4874), + [anon_sym_return] = ACTIONS(4874), + [anon_sym_continue] = ACTIONS(4874), + [anon_sym_break] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4876), + [anon_sym_continue_AT] = ACTIONS(4876), + [anon_sym_break_AT] = ACTIONS(4876), + [anon_sym_this_AT] = ACTIONS(4876), + [anon_sym_super_AT] = ACTIONS(4876), + [sym_real_literal] = ACTIONS(4876), + [sym_integer_literal] = ACTIONS(4874), + [sym_hex_literal] = ACTIONS(4876), + [sym_bin_literal] = ACTIONS(4876), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [anon_sym_SQUOTE] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4876), }, [4185] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(6853), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7434), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, [4186] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7311), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(7313), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7436), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), + [sym_multiline_comment] = ACTIONS(3), }, [4187] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7438), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_DASH_GT] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7436), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4188] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_where] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3303), + [sym_enum_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7440), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4189] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4189), - [sym__alpha_identifier] = ACTIONS(4580), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_LBRACK] = ACTIONS(4582), - [anon_sym_as] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(4582), - [anon_sym_COMMA] = ACTIONS(7315), - [anon_sym_LT] = ACTIONS(4580), - [anon_sym_GT] = ACTIONS(4580), - [anon_sym_where] = ACTIONS(4580), - [anon_sym_DOT] = ACTIONS(4580), - [anon_sym_SEMI] = ACTIONS(4582), - [anon_sym_get] = ACTIONS(4580), - [anon_sym_set] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4582), - [sym_label] = ACTIONS(4582), - [anon_sym_in] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4582), - [anon_sym_QMARK_COLON] = ACTIONS(4582), - [anon_sym_AMP_AMP] = ACTIONS(4582), - [anon_sym_PIPE_PIPE] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4580), - [anon_sym_COLON_COLON] = ACTIONS(4582), - [anon_sym_BANG_EQ] = ACTIONS(4580), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4582), - [anon_sym_EQ_EQ] = ACTIONS(4580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4582), - [anon_sym_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_EQ] = ACTIONS(4582), - [anon_sym_BANGin] = ACTIONS(4582), - [anon_sym_is] = ACTIONS(4580), - [anon_sym_BANGis] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_PERCENT] = ACTIONS(4582), - [anon_sym_as_QMARK] = ACTIONS(4582), - [anon_sym_PLUS_PLUS] = ACTIONS(4582), - [anon_sym_DASH_DASH] = ACTIONS(4582), - [anon_sym_BANG_BANG] = ACTIONS(4582), - [anon_sym_suspend] = ACTIONS(4580), - [anon_sym_sealed] = ACTIONS(4580), - [anon_sym_annotation] = ACTIONS(4580), - [anon_sym_data] = ACTIONS(4580), - [anon_sym_inner] = ACTIONS(4580), - [anon_sym_value] = ACTIONS(4580), - [anon_sym_override] = ACTIONS(4580), - [anon_sym_lateinit] = ACTIONS(4580), - [anon_sym_public] = ACTIONS(4580), - [anon_sym_private] = ACTIONS(4580), - [anon_sym_internal] = ACTIONS(4580), - [anon_sym_protected] = ACTIONS(4580), - [anon_sym_tailrec] = ACTIONS(4580), - [anon_sym_operator] = ACTIONS(4580), - [anon_sym_infix] = ACTIONS(4580), - [anon_sym_inline] = ACTIONS(4580), - [anon_sym_external] = ACTIONS(4580), - [sym_property_modifier] = ACTIONS(4580), - [anon_sym_abstract] = ACTIONS(4580), - [anon_sym_final] = ACTIONS(4580), - [anon_sym_open] = ACTIONS(4580), - [anon_sym_vararg] = ACTIONS(4580), - [anon_sym_noinline] = ACTIONS(4580), - [anon_sym_crossinline] = ACTIONS(4580), - [anon_sym_expect] = ACTIONS(4580), - [anon_sym_actual] = ACTIONS(4580), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4582), - [sym__automatic_semicolon] = ACTIONS(4582), - [sym_safe_nav] = ACTIONS(4582), + [sym_type_constraints] = STATE(4252), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4190] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3414), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, [4191] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7444), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), [sym_multiline_comment] = ACTIONS(3), }, [4192] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3057), - [sym_safe_nav] = ACTIONS(6853), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(6897), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [anon_sym_this_AT] = ACTIONS(4284), + [anon_sym_super_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [4193] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4189), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(7318), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7446), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4194] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_where] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3539), + [sym_type_constraints] = STATE(3280), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4195] = { - [sym_function_body] = STATE(3743), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4470), - [anon_sym_AT] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym_LT] = ACTIONS(4470), - [anon_sym_GT] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4470), - [anon_sym_set] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4472), - [sym_label] = ACTIONS(4472), - [anon_sym_in] = ACTIONS(4470), - [anon_sym_DOT_DOT] = ACTIONS(4472), - [anon_sym_QMARK_COLON] = ACTIONS(4472), - [anon_sym_AMP_AMP] = ACTIONS(4472), - [anon_sym_PIPE_PIPE] = ACTIONS(4472), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_COLON_COLON] = ACTIONS(4472), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4472), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4472), - [anon_sym_LT_EQ] = ACTIONS(4472), - [anon_sym_GT_EQ] = ACTIONS(4472), - [anon_sym_BANGin] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4470), - [anon_sym_BANGis] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4470), - [anon_sym_PERCENT] = ACTIONS(4472), - [anon_sym_as_QMARK] = ACTIONS(4472), - [anon_sym_PLUS_PLUS] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4472), - [anon_sym_BANG_BANG] = ACTIONS(4472), - [anon_sym_suspend] = ACTIONS(4470), - [anon_sym_sealed] = ACTIONS(4470), - [anon_sym_annotation] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4470), - [anon_sym_inner] = ACTIONS(4470), - [anon_sym_value] = ACTIONS(4470), - [anon_sym_override] = ACTIONS(4470), - [anon_sym_lateinit] = ACTIONS(4470), - [anon_sym_public] = ACTIONS(4470), - [anon_sym_private] = ACTIONS(4470), - [anon_sym_internal] = ACTIONS(4470), - [anon_sym_protected] = ACTIONS(4470), - [anon_sym_tailrec] = ACTIONS(4470), - [anon_sym_operator] = ACTIONS(4470), - [anon_sym_infix] = ACTIONS(4470), - [anon_sym_inline] = ACTIONS(4470), - [anon_sym_external] = ACTIONS(4470), - [sym_property_modifier] = ACTIONS(4470), - [anon_sym_abstract] = ACTIONS(4470), - [anon_sym_final] = ACTIONS(4470), - [anon_sym_open] = ACTIONS(4470), - [anon_sym_vararg] = ACTIONS(4470), - [anon_sym_noinline] = ACTIONS(4470), - [anon_sym_crossinline] = ACTIONS(4470), - [anon_sym_expect] = ACTIONS(4470), - [anon_sym_actual] = ACTIONS(4470), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4472), - [sym__automatic_semicolon] = ACTIONS(4472), - [sym_safe_nav] = ACTIONS(4472), + [sym_type_constraints] = STATE(4256), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4196] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4179), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4179), - [anon_sym_GT] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_get] = ACTIONS(4179), - [anon_sym_set] = ACTIONS(4179), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_QMARK_COLON] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4179), - [anon_sym_COLON_COLON] = ACTIONS(4181), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4181), - [anon_sym_LT_EQ] = ACTIONS(4181), - [anon_sym_GT_EQ] = ACTIONS(4181), - [anon_sym_BANGin] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_BANGis] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4179), - [anon_sym_DASH] = ACTIONS(4179), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4179), - [anon_sym_sealed] = ACTIONS(4179), - [anon_sym_annotation] = ACTIONS(4179), - [anon_sym_data] = ACTIONS(4179), - [anon_sym_inner] = ACTIONS(4179), - [anon_sym_value] = ACTIONS(4179), - [anon_sym_override] = ACTIONS(4179), - [anon_sym_lateinit] = ACTIONS(4179), - [anon_sym_public] = ACTIONS(4179), - [anon_sym_private] = ACTIONS(4179), - [anon_sym_internal] = ACTIONS(4179), - [anon_sym_protected] = ACTIONS(4179), - [anon_sym_tailrec] = ACTIONS(4179), - [anon_sym_operator] = ACTIONS(4179), - [anon_sym_infix] = ACTIONS(4179), - [anon_sym_inline] = ACTIONS(4179), - [anon_sym_external] = ACTIONS(4179), - [sym_property_modifier] = ACTIONS(4179), - [anon_sym_abstract] = ACTIONS(4179), - [anon_sym_final] = ACTIONS(4179), - [anon_sym_open] = ACTIONS(4179), - [anon_sym_vararg] = ACTIONS(4179), - [anon_sym_noinline] = ACTIONS(4179), - [anon_sym_crossinline] = ACTIONS(4179), - [anon_sym_expect] = ACTIONS(4179), - [anon_sym_actual] = ACTIONS(4179), + [sym_type_constraints] = STATE(4241), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4181), - [sym__automatic_semicolon] = ACTIONS(4181), - [sym_safe_nav] = ACTIONS(4181), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4197] = { - [sym_function_body] = STATE(3847), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4065), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(4067), - [anon_sym_as] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_STAR] = ACTIONS(4067), - [sym_label] = ACTIONS(4067), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4067), - [anon_sym_PIPE_PIPE] = ACTIONS(4067), - [anon_sym_else] = ACTIONS(4065), - [anon_sym_COLON_COLON] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT_EQ] = ACTIONS(4067), - [anon_sym_GT_EQ] = ACTIONS(4067), - [anon_sym_BANGin] = ACTIONS(4067), - [anon_sym_is] = ACTIONS(4065), - [anon_sym_BANGis] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4065), - [anon_sym_DASH] = ACTIONS(4065), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_as_QMARK] = ACTIONS(4067), - [anon_sym_PLUS_PLUS] = ACTIONS(4067), - [anon_sym_DASH_DASH] = ACTIONS(4067), - [anon_sym_BANG_BANG] = ACTIONS(4067), - [anon_sym_suspend] = ACTIONS(4065), - [anon_sym_sealed] = ACTIONS(4065), - [anon_sym_annotation] = ACTIONS(4065), - [anon_sym_data] = ACTIONS(4065), - [anon_sym_inner] = ACTIONS(4065), - [anon_sym_value] = ACTIONS(4065), - [anon_sym_override] = ACTIONS(4065), - [anon_sym_lateinit] = ACTIONS(4065), - [anon_sym_public] = ACTIONS(4065), - [anon_sym_private] = ACTIONS(4065), - [anon_sym_internal] = ACTIONS(4065), - [anon_sym_protected] = ACTIONS(4065), - [anon_sym_tailrec] = ACTIONS(4065), - [anon_sym_operator] = ACTIONS(4065), - [anon_sym_infix] = ACTIONS(4065), - [anon_sym_inline] = ACTIONS(4065), - [anon_sym_external] = ACTIONS(4065), - [sym_property_modifier] = ACTIONS(4065), - [anon_sym_abstract] = ACTIONS(4065), - [anon_sym_final] = ACTIONS(4065), - [anon_sym_open] = ACTIONS(4065), - [anon_sym_vararg] = ACTIONS(4065), - [anon_sym_noinline] = ACTIONS(4065), - [anon_sym_crossinline] = ACTIONS(4065), - [anon_sym_expect] = ACTIONS(4065), - [anon_sym_actual] = ACTIONS(4065), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4067), - [sym__automatic_semicolon] = ACTIONS(4067), - [sym_safe_nav] = ACTIONS(4067), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7448), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_DASH_GT] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4198] = { - [sym_function_body] = STATE(3887), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4244), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_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(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_DASH_GT] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [4199] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_object] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_this] = ACTIONS(4873), - [anon_sym_super] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(4873), - [anon_sym_if] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(7313), - [anon_sym_when] = ACTIONS(4873), - [anon_sym_try] = ACTIONS(4873), - [anon_sym_throw] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_continue] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4875), - [anon_sym_continue_AT] = ACTIONS(4875), - [anon_sym_break_AT] = ACTIONS(4875), - [sym_real_literal] = ACTIONS(4875), - [sym_integer_literal] = ACTIONS(4873), - [sym_hex_literal] = ACTIONS(4875), - [sym_bin_literal] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4873), - [anon_sym_false] = ACTIONS(4873), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4875), + [sym_value_arguments] = STATE(3993), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7452), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), + [sym_multiline_comment] = ACTIONS(3), }, [4200] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_where] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3475), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4201] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7320), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_object] = ACTIONS(4777), - [anon_sym_fun] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_this] = ACTIONS(4777), - [anon_sym_super] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4777), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_when] = ACTIONS(4777), - [anon_sym_try] = ACTIONS(4777), - [anon_sym_throw] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4779), - [anon_sym_continue_AT] = ACTIONS(4779), - [anon_sym_break_AT] = ACTIONS(4779), - [sym_real_literal] = ACTIONS(4779), - [sym_integer_literal] = ACTIONS(4777), - [sym_hex_literal] = ACTIONS(4779), - [sym_bin_literal] = ACTIONS(4779), - [anon_sym_true] = ACTIONS(4777), - [anon_sym_false] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4779), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4779), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), }, [4202] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3461), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4203] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7322), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_object] = ACTIONS(4767), - [anon_sym_fun] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_this] = ACTIONS(4767), - [anon_sym_super] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4767), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4767), - [anon_sym_if] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_try] = ACTIONS(4767), - [anon_sym_throw] = ACTIONS(4767), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_continue] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4769), - [anon_sym_continue_AT] = ACTIONS(4769), - [anon_sym_break_AT] = ACTIONS(4769), - [sym_real_literal] = ACTIONS(4769), - [sym_integer_literal] = ACTIONS(4767), - [sym_hex_literal] = ACTIONS(4769), - [sym_bin_literal] = ACTIONS(4769), - [anon_sym_true] = ACTIONS(4767), - [anon_sym_false] = ACTIONS(4767), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4769), + [sym_class_body] = STATE(3861), + [sym_type_constraints] = STATE(3816), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), + [sym_multiline_comment] = ACTIONS(3), }, [4204] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_COLON] = ACTIONS(7456), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4205] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3753), + [sym_enum_class_body] = STATE(3953), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4206] = { - [sym_function_body] = STATE(3856), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4512), - [anon_sym_AT] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_as] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_LT] = ACTIONS(4512), - [anon_sym_GT] = ACTIONS(4512), - [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_get] = ACTIONS(4512), - [anon_sym_set] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4514), - [sym_label] = ACTIONS(4514), - [anon_sym_in] = ACTIONS(4512), - [anon_sym_DOT_DOT] = ACTIONS(4514), - [anon_sym_QMARK_COLON] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_PIPE_PIPE] = ACTIONS(4514), - [anon_sym_else] = ACTIONS(4512), - [anon_sym_COLON_COLON] = ACTIONS(4514), - [anon_sym_BANG_EQ] = ACTIONS(4512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4514), - [anon_sym_EQ_EQ] = ACTIONS(4512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4514), - [anon_sym_LT_EQ] = ACTIONS(4514), - [anon_sym_GT_EQ] = ACTIONS(4514), - [anon_sym_BANGin] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4512), - [anon_sym_BANGis] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4512), - [anon_sym_SLASH] = ACTIONS(4512), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_as_QMARK] = ACTIONS(4514), - [anon_sym_PLUS_PLUS] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4514), - [anon_sym_BANG_BANG] = ACTIONS(4514), - [anon_sym_suspend] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_annotation] = ACTIONS(4512), - [anon_sym_data] = ACTIONS(4512), - [anon_sym_inner] = ACTIONS(4512), - [anon_sym_value] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_lateinit] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_tailrec] = ACTIONS(4512), - [anon_sym_operator] = ACTIONS(4512), - [anon_sym_infix] = ACTIONS(4512), - [anon_sym_inline] = ACTIONS(4512), - [anon_sym_external] = ACTIONS(4512), - [sym_property_modifier] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_final] = ACTIONS(4512), - [anon_sym_open] = ACTIONS(4512), - [anon_sym_vararg] = ACTIONS(4512), - [anon_sym_noinline] = ACTIONS(4512), - [anon_sym_crossinline] = ACTIONS(4512), - [anon_sym_expect] = ACTIONS(4512), - [anon_sym_actual] = ACTIONS(4512), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4514), - [sym__automatic_semicolon] = ACTIONS(4514), - [sym_safe_nav] = ACTIONS(4514), + [sym_function_body] = STATE(3530), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_while] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [4207] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_COMMA] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(7269), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym_get] = ACTIONS(4452), - [anon_sym_set] = ACTIONS(4452), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4452), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_QMARK_COLON] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_PIPE_PIPE] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_BANG_EQ] = ACTIONS(4452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ] = ACTIONS(4452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), - [anon_sym_LT_EQ] = ACTIONS(4454), - [anon_sym_GT_EQ] = ACTIONS(4454), - [anon_sym_BANGin] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4452), - [anon_sym_BANGis] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4452), - [anon_sym_DASH] = ACTIONS(4452), - [anon_sym_SLASH] = ACTIONS(4452), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_annotation] = ACTIONS(4452), - [anon_sym_data] = ACTIONS(4452), - [anon_sym_inner] = ACTIONS(4452), - [anon_sym_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_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4208] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3430), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4209] = { - [sym_function_body] = STATE(3882), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4088), - [anon_sym_GT] = ACTIONS(4088), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4088), - [anon_sym_set] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [sym_label] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4088), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_QMARK_COLON] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_else] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_BANG_EQ] = ACTIONS(4088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4090), - [anon_sym_EQ_EQ] = ACTIONS(4088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4090), - [anon_sym_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_EQ] = ACTIONS(4090), - [anon_sym_BANGin] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4088), - [anon_sym_BANGis] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_SLASH] = ACTIONS(4088), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_as_QMARK] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_BANG_BANG] = ACTIONS(4090), - [anon_sym_suspend] = ACTIONS(4088), - [anon_sym_sealed] = ACTIONS(4088), - [anon_sym_annotation] = ACTIONS(4088), - [anon_sym_data] = ACTIONS(4088), - [anon_sym_inner] = ACTIONS(4088), - [anon_sym_value] = ACTIONS(4088), - [anon_sym_override] = ACTIONS(4088), - [anon_sym_lateinit] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_internal] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_tailrec] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_infix] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym_external] = ACTIONS(4088), - [sym_property_modifier] = ACTIONS(4088), - [anon_sym_abstract] = ACTIONS(4088), - [anon_sym_final] = ACTIONS(4088), - [anon_sym_open] = ACTIONS(4088), - [anon_sym_vararg] = ACTIONS(4088), - [anon_sym_noinline] = ACTIONS(4088), - [anon_sym_crossinline] = ACTIONS(4088), - [anon_sym_expect] = ACTIONS(4088), - [anon_sym_actual] = ACTIONS(4088), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4090), - [sym__automatic_semicolon] = ACTIONS(4090), - [sym_safe_nav] = ACTIONS(4090), + [sym_class_body] = STATE(3884), + [sym_type_constraints] = STATE(3739), + [sym__alpha_identifier] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(7460), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_get] = ACTIONS(4327), + [anon_sym_set] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_PIPE_PIPE] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4329), + [anon_sym_GT_EQ] = ACTIONS(4329), + [anon_sym_BANGin] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4327), + [anon_sym_BANGis] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4329), + [anon_sym_suspend] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_annotation] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4327), + [anon_sym_inner] = ACTIONS(4327), + [anon_sym_value] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_lateinit] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_tailrec] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_infix] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym_external] = ACTIONS(4327), + [sym_property_modifier] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_final] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4327), + [anon_sym_vararg] = ACTIONS(4327), + [anon_sym_noinline] = ACTIONS(4327), + [anon_sym_crossinline] = ACTIONS(4327), + [anon_sym_expect] = ACTIONS(4327), + [anon_sym_actual] = ACTIONS(4327), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4329), + [sym__automatic_semicolon] = ACTIONS(4329), + [sym_safe_nav] = ACTIONS(4329), [sym_multiline_comment] = ACTIONS(3), }, [4210] = { - [sym__type] = STATE(9277), - [sym__type_reference] = STATE(8061), - [sym_not_nullable_type] = STATE(9277), - [sym_nullable_type] = STATE(9277), - [sym_user_type] = STATE(8268), - [sym__simple_user_type] = STATE(8071), - [sym_type_projection] = STATE(8903), - [sym_type_projection_modifiers] = STATE(5959), - [sym__type_projection_modifier] = STATE(7162), - [sym_function_type] = STATE(9277), - [sym_function_type_parameters] = STATE(9675), - [sym_parenthesized_type] = STATE(8061), - [sym_parenthesized_user_type] = STATE(9680), - [sym_type_modifiers] = STATE(6382), - [sym__type_modifier] = STATE(7161), - [sym_variance_modifier] = STATE(7162), - [sym_annotation] = STATE(7161), - [sym__single_annotation] = STATE(7800), - [sym__multi_annotation] = STATE(7800), - [sym_simple_identifier] = STATE(7952), - [sym__lexical_identifier] = STATE(6123), - [aux_sym_type_projection_modifiers_repeat1] = STATE(7162), - [aux_sym_type_modifiers_repeat1] = STATE(7161), - [sym__alpha_identifier] = ACTIONS(7324), - [anon_sym_AT] = ACTIONS(7327), - [anon_sym_LBRACK] = ACTIONS(7330), - [anon_sym_LBRACE] = ACTIONS(7330), - [anon_sym_LPAREN] = ACTIONS(7332), - [anon_sym_object] = ACTIONS(7335), - [anon_sym_fun] = ACTIONS(7335), - [anon_sym_get] = ACTIONS(7324), - [anon_sym_set] = ACTIONS(7324), - [anon_sym_this] = ACTIONS(7335), - [anon_sym_super] = ACTIONS(7335), - [anon_sym_dynamic] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7339), - [sym_label] = ACTIONS(7335), - [anon_sym_in] = ACTIONS(7342), - [anon_sym_null] = ACTIONS(7335), - [anon_sym_if] = ACTIONS(7335), - [anon_sym_when] = ACTIONS(7335), - [anon_sym_try] = ACTIONS(7335), - [anon_sym_throw] = ACTIONS(7335), - [anon_sym_return] = ACTIONS(7335), - [anon_sym_continue] = ACTIONS(7335), - [anon_sym_break] = ACTIONS(7335), - [anon_sym_COLON_COLON] = ACTIONS(7330), - [anon_sym_PLUS] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7330), - [anon_sym_DASH_DASH] = ACTIONS(7330), - [anon_sym_BANG] = ACTIONS(7330), - [anon_sym_suspend] = ACTIONS(7344), - [anon_sym_data] = ACTIONS(7324), - [anon_sym_inner] = ACTIONS(7324), - [anon_sym_value] = ACTIONS(7324), - [anon_sym_out] = ACTIONS(7342), - [anon_sym_expect] = ACTIONS(7324), - [anon_sym_actual] = ACTIONS(7324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7330), - [anon_sym_continue_AT] = ACTIONS(7330), - [anon_sym_break_AT] = ACTIONS(7330), - [sym_real_literal] = ACTIONS(7330), - [sym_integer_literal] = ACTIONS(7335), - [sym_hex_literal] = ACTIONS(7330), - [sym_bin_literal] = ACTIONS(7330), - [anon_sym_true] = ACTIONS(7335), - [anon_sym_false] = ACTIONS(7335), - [anon_sym_SQUOTE] = ACTIONS(7330), - [sym__backtick_identifier] = ACTIONS(7346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7330), + [sym_function_body] = STATE(4010), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(7462), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_get] = ACTIONS(4229), + [anon_sym_set] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4231), + [sym_label] = ACTIONS(4231), + [anon_sym_in] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_QMARK_COLON] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_else] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_BANG_EQ] = ACTIONS(4229), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ] = ACTIONS(4229), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_BANGin] = ACTIONS(4231), + [anon_sym_is] = ACTIONS(4229), + [anon_sym_BANGis] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_as_QMARK] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_BANG_BANG] = ACTIONS(4231), + [anon_sym_suspend] = ACTIONS(4229), + [anon_sym_sealed] = ACTIONS(4229), + [anon_sym_annotation] = ACTIONS(4229), + [anon_sym_data] = ACTIONS(4229), + [anon_sym_inner] = ACTIONS(4229), + [anon_sym_value] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_lateinit] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_private] = ACTIONS(4229), + [anon_sym_internal] = ACTIONS(4229), + [anon_sym_protected] = ACTIONS(4229), + [anon_sym_tailrec] = ACTIONS(4229), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_infix] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_external] = ACTIONS(4229), + [sym_property_modifier] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_open] = ACTIONS(4229), + [anon_sym_vararg] = ACTIONS(4229), + [anon_sym_noinline] = ACTIONS(4229), + [anon_sym_crossinline] = ACTIONS(4229), + [anon_sym_expect] = ACTIONS(4229), + [anon_sym_actual] = ACTIONS(4229), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4231), + [sym__automatic_semicolon] = ACTIONS(4231), + [sym_safe_nav] = ACTIONS(4231), + [sym_multiline_comment] = ACTIONS(3), }, [4211] = { - [sym_function_body] = STATE(3792), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_as] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_LT] = ACTIONS(4159), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_get] = ACTIONS(4159), - [anon_sym_set] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4161), - [sym_label] = ACTIONS(4161), - [anon_sym_in] = ACTIONS(4159), - [anon_sym_DOT_DOT] = ACTIONS(4161), - [anon_sym_QMARK_COLON] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_else] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), - [anon_sym_EQ_EQ] = ACTIONS(4159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_BANGin] = ACTIONS(4161), - [anon_sym_is] = ACTIONS(4159), - [anon_sym_BANGis] = ACTIONS(4161), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_as_QMARK] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_BANG_BANG] = ACTIONS(4161), - [anon_sym_suspend] = ACTIONS(4159), - [anon_sym_sealed] = ACTIONS(4159), - [anon_sym_annotation] = ACTIONS(4159), - [anon_sym_data] = ACTIONS(4159), - [anon_sym_inner] = ACTIONS(4159), - [anon_sym_value] = ACTIONS(4159), - [anon_sym_override] = ACTIONS(4159), - [anon_sym_lateinit] = ACTIONS(4159), - [anon_sym_public] = ACTIONS(4159), - [anon_sym_private] = ACTIONS(4159), - [anon_sym_internal] = ACTIONS(4159), - [anon_sym_protected] = ACTIONS(4159), - [anon_sym_tailrec] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_infix] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym_external] = ACTIONS(4159), - [sym_property_modifier] = ACTIONS(4159), - [anon_sym_abstract] = ACTIONS(4159), - [anon_sym_final] = ACTIONS(4159), - [anon_sym_open] = ACTIONS(4159), - [anon_sym_vararg] = ACTIONS(4159), - [anon_sym_noinline] = ACTIONS(4159), - [anon_sym_crossinline] = ACTIONS(4159), - [anon_sym_expect] = ACTIONS(4159), - [anon_sym_actual] = ACTIONS(4159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4161), - [sym__automatic_semicolon] = ACTIONS(4161), - [sym_safe_nav] = ACTIONS(4161), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [4212] = { - [sym_class_body] = STATE(3333), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_while] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym_type_constraints] = STATE(3791), + [sym_enum_class_body] = STATE(3952), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(7466), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, [4213] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_this] = ACTIONS(4300), - [anon_sym_super] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4300), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_throw] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4298), - [anon_sym_continue_AT] = ACTIONS(4298), - [anon_sym_break_AT] = ACTIONS(4298), - [sym_real_literal] = ACTIONS(4298), - [sym_integer_literal] = ACTIONS(4300), - [sym_hex_literal] = ACTIONS(4298), - [sym_bin_literal] = ACTIONS(4298), - [anon_sym_true] = ACTIONS(4300), - [anon_sym_false] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4298), + [sym_function_body] = STATE(3457), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), }, [4214] = { - [sym_function_body] = STATE(3924), - [sym__block] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(7121), - [anon_sym_LBRACE] = ACTIONS(6564), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4116), - [anon_sym_set] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [sym_label] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_QMARK_COLON] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_else] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4116), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_BANGin] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_BANGis] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_as_QMARK] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_BANG_BANG] = ACTIONS(4118), - [anon_sym_suspend] = ACTIONS(4116), - [anon_sym_sealed] = ACTIONS(4116), - [anon_sym_annotation] = ACTIONS(4116), - [anon_sym_data] = ACTIONS(4116), - [anon_sym_inner] = ACTIONS(4116), - [anon_sym_value] = ACTIONS(4116), - [anon_sym_override] = ACTIONS(4116), - [anon_sym_lateinit] = ACTIONS(4116), - [anon_sym_public] = ACTIONS(4116), - [anon_sym_private] = ACTIONS(4116), - [anon_sym_internal] = ACTIONS(4116), - [anon_sym_protected] = ACTIONS(4116), - [anon_sym_tailrec] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_infix] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym_external] = ACTIONS(4116), - [sym_property_modifier] = ACTIONS(4116), - [anon_sym_abstract] = ACTIONS(4116), - [anon_sym_final] = ACTIONS(4116), - [anon_sym_open] = ACTIONS(4116), - [anon_sym_vararg] = ACTIONS(4116), - [anon_sym_noinline] = ACTIONS(4116), - [anon_sym_crossinline] = ACTIONS(4116), - [anon_sym_expect] = ACTIONS(4116), - [anon_sym_actual] = ACTIONS(4116), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4118), - [sym__automatic_semicolon] = ACTIONS(4118), - [sym_safe_nav] = ACTIONS(4118), + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(7468), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4277), + [sym_label] = ACTIONS(4277), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_QMARK_COLON] = ACTIONS(4277), + [anon_sym_AMP_AMP] = ACTIONS(4277), + [anon_sym_PIPE_PIPE] = ACTIONS(4277), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4277), + [anon_sym_LT_EQ] = ACTIONS(4277), + [anon_sym_GT_EQ] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4277), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_as_QMARK] = ACTIONS(4277), + [anon_sym_PLUS_PLUS] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_suspend] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_annotation] = ACTIONS(4275), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_lateinit] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_tailrec] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_infix] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym_external] = ACTIONS(4275), + [sym_property_modifier] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_final] = ACTIONS(4275), + [anon_sym_open] = ACTIONS(4275), + [anon_sym_vararg] = ACTIONS(4275), + [anon_sym_noinline] = ACTIONS(4275), + [anon_sym_crossinline] = ACTIONS(4275), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4277), + [sym__automatic_semicolon] = ACTIONS(4277), + [sym_safe_nav] = ACTIONS(4277), [sym_multiline_comment] = ACTIONS(3), }, [4215] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4189), - [sym__alpha_identifier] = ACTIONS(4534), - [anon_sym_AT] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4534), - [anon_sym_GT] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_get] = ACTIONS(4534), - [anon_sym_set] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [sym_label] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_QMARK_COLON] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [anon_sym_else] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_BANGin] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_BANGis] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_SLASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_as_QMARK] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_BANG_BANG] = ACTIONS(4536), - [anon_sym_suspend] = ACTIONS(4534), - [anon_sym_sealed] = ACTIONS(4534), - [anon_sym_annotation] = ACTIONS(4534), - [anon_sym_data] = ACTIONS(4534), - [anon_sym_inner] = ACTIONS(4534), - [anon_sym_value] = ACTIONS(4534), - [anon_sym_override] = ACTIONS(4534), - [anon_sym_lateinit] = ACTIONS(4534), - [anon_sym_public] = ACTIONS(4534), - [anon_sym_private] = ACTIONS(4534), - [anon_sym_internal] = ACTIONS(4534), - [anon_sym_protected] = ACTIONS(4534), - [anon_sym_tailrec] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_infix] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym_external] = ACTIONS(4534), - [sym_property_modifier] = ACTIONS(4534), - [anon_sym_abstract] = ACTIONS(4534), - [anon_sym_final] = ACTIONS(4534), - [anon_sym_open] = ACTIONS(4534), - [anon_sym_vararg] = ACTIONS(4534), - [anon_sym_noinline] = ACTIONS(4534), - [anon_sym_crossinline] = ACTIONS(4534), - [anon_sym_expect] = ACTIONS(4534), - [anon_sym_actual] = ACTIONS(4534), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4536), - [sym__automatic_semicolon] = ACTIONS(4536), - [sym_safe_nav] = ACTIONS(4536), + [sym_type_constraints] = STATE(3823), + [sym_enum_class_body] = STATE(3839), + [sym__alpha_identifier] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(6394), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3290), + [sym_label] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_QMARK_COLON] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_as_QMARK] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_BANG_BANG] = ACTIONS(3290), + [anon_sym_suspend] = ACTIONS(3286), + [anon_sym_sealed] = ACTIONS(3286), + [anon_sym_annotation] = ACTIONS(3286), + [anon_sym_data] = ACTIONS(3286), + [anon_sym_inner] = ACTIONS(3286), + [anon_sym_value] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_lateinit] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_internal] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_tailrec] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_infix] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_external] = ACTIONS(3286), + [sym_property_modifier] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_final] = ACTIONS(3286), + [anon_sym_open] = ACTIONS(3286), + [anon_sym_vararg] = ACTIONS(3286), + [anon_sym_noinline] = ACTIONS(3286), + [anon_sym_crossinline] = ACTIONS(3286), + [anon_sym_expect] = ACTIONS(3286), + [anon_sym_actual] = ACTIONS(3286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3290), + [sym__automatic_semicolon] = ACTIONS(3290), + [sym_safe_nav] = ACTIONS(3290), [sym_multiline_comment] = ACTIONS(3), }, [4216] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3956), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(6374), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3274), + [sym_label] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_QMARK_COLON] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_as_QMARK] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_BANG_BANG] = ACTIONS(3274), + [anon_sym_suspend] = ACTIONS(3270), + [anon_sym_sealed] = ACTIONS(3270), + [anon_sym_annotation] = ACTIONS(3270), + [anon_sym_data] = ACTIONS(3270), + [anon_sym_inner] = ACTIONS(3270), + [anon_sym_value] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_lateinit] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_internal] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_tailrec] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_infix] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_external] = ACTIONS(3270), + [sym_property_modifier] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_open] = ACTIONS(3270), + [anon_sym_vararg] = ACTIONS(3270), + [anon_sym_noinline] = ACTIONS(3270), + [anon_sym_crossinline] = ACTIONS(3270), + [anon_sym_expect] = ACTIONS(3270), + [anon_sym_actual] = ACTIONS(3270), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3274), + [sym__automatic_semicolon] = ACTIONS(3274), + [sym_safe_nav] = ACTIONS(3274), [sym_multiline_comment] = ACTIONS(3), }, [4217] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(6853), + [aux_sym__delegation_specifiers_repeat1] = STATE(4223), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7470), + [anon_sym_RPAREN] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_while] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), [sym_multiline_comment] = ACTIONS(3), }, [4218] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7285), - [anon_sym_where] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7289), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_BANGin] = ACTIONS(7305), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(6853), + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3861), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4216), + [anon_sym_DOT_DOT] = ACTIONS(4218), + [anon_sym_QMARK_COLON] = ACTIONS(4218), + [anon_sym_AMP_AMP] = ACTIONS(4218), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4218), + [anon_sym_BANG_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4218), + [anon_sym_LT_EQ] = ACTIONS(4218), + [anon_sym_GT_EQ] = ACTIONS(4218), + [anon_sym_BANGin] = ACTIONS(4218), + [anon_sym_is] = ACTIONS(4216), + [anon_sym_BANGis] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4216), + [anon_sym_sealed] = ACTIONS(4216), + [anon_sym_annotation] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4216), + [anon_sym_inner] = ACTIONS(4216), + [anon_sym_value] = ACTIONS(4216), + [anon_sym_override] = ACTIONS(4216), + [anon_sym_lateinit] = ACTIONS(4216), + [anon_sym_public] = ACTIONS(4216), + [anon_sym_private] = ACTIONS(4216), + [anon_sym_internal] = ACTIONS(4216), + [anon_sym_protected] = ACTIONS(4216), + [anon_sym_tailrec] = ACTIONS(4216), + [anon_sym_operator] = ACTIONS(4216), + [anon_sym_infix] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4216), + [anon_sym_external] = ACTIONS(4216), + [sym_property_modifier] = ACTIONS(4216), + [anon_sym_abstract] = ACTIONS(4216), + [anon_sym_final] = ACTIONS(4216), + [anon_sym_open] = ACTIONS(4216), + [anon_sym_vararg] = ACTIONS(4216), + [anon_sym_noinline] = ACTIONS(4216), + [anon_sym_crossinline] = ACTIONS(4216), + [anon_sym_expect] = ACTIONS(4216), + [anon_sym_actual] = ACTIONS(4216), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, [4219] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3507), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4220] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(6914), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(4292), - [anon_sym_super] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_throw] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4295), - [anon_sym_continue_AT] = ACTIONS(4295), - [anon_sym_break_AT] = ACTIONS(4295), - [sym_real_literal] = ACTIONS(4295), - [sym_integer_literal] = ACTIONS(4292), - [sym_hex_literal] = ACTIONS(4295), - [sym_bin_literal] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4295), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4295), + [sym_function_body] = STATE(3490), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_RPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), + [sym_multiline_comment] = ACTIONS(3), }, [4221] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7291), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3953), + [sym_type_constraints] = STATE(3786), + [sym__alpha_identifier] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3278), + [anon_sym_where] = ACTIONS(5824), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3282), + [sym_label] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_QMARK_COLON] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3282), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_BANGin] = ACTIONS(3282), + [anon_sym_is] = ACTIONS(3278), + [anon_sym_BANGis] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_as_QMARK] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_BANG_BANG] = ACTIONS(3282), + [anon_sym_suspend] = ACTIONS(3278), + [anon_sym_sealed] = ACTIONS(3278), + [anon_sym_annotation] = ACTIONS(3278), + [anon_sym_data] = ACTIONS(3278), + [anon_sym_inner] = ACTIONS(3278), + [anon_sym_value] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_lateinit] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_internal] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_tailrec] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_infix] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_external] = ACTIONS(3278), + [sym_property_modifier] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_final] = ACTIONS(3278), + [anon_sym_open] = ACTIONS(3278), + [anon_sym_vararg] = ACTIONS(3278), + [anon_sym_noinline] = ACTIONS(3278), + [anon_sym_crossinline] = ACTIONS(3278), + [anon_sym_expect] = ACTIONS(3278), + [anon_sym_actual] = ACTIONS(3278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3282), + [sym__automatic_semicolon] = ACTIONS(3282), + [sym_safe_nav] = ACTIONS(3282), [sym_multiline_comment] = ACTIONS(3), }, [4222] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(6910), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4318), - [anon_sym_super] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4321), - [anon_sym_continue_AT] = ACTIONS(4321), - [anon_sym_break_AT] = ACTIONS(4321), - [sym_real_literal] = ACTIONS(4321), - [sym_integer_literal] = ACTIONS(4318), - [sym_hex_literal] = ACTIONS(4321), - [sym_bin_literal] = ACTIONS(4321), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4321), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4321), + [sym_function_body] = STATE(3467), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), }, [4223] = { - [sym__alpha_identifier] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4321), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4318), - [anon_sym_set] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4321), - [sym_label] = ACTIONS(4318), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4321), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4321), - [anon_sym_DASH_DASH] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4318), - [anon_sym_inner] = ACTIONS(4318), - [anon_sym_value] = ACTIONS(4318), - [anon_sym_expect] = ACTIONS(4318), - [anon_sym_actual] = ACTIONS(4318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4321), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [aux_sym__delegation_specifiers_repeat1] = STATE(4140), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7470), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), }, [4224] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1696), - [sym__comparison_operator] = STATE(1695), - [sym__in_operator] = STATE(1694), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1690), - [sym__multiplicative_operator] = STATE(1687), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1686), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_where] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(7287), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(7307), - [anon_sym_DASH] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7309), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(3397), + [sym__block] = STATE(3402), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(7257), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [4225] = { - [sym_class_body] = STATE(3459), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5218), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_RPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4226] = { - [sym__alpha_identifier] = ACTIONS(4292), - [anon_sym_AT] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4292), - [anon_sym_set] = ACTIONS(4292), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4292), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_data] = ACTIONS(4292), - [anon_sym_inner] = ACTIONS(4292), - [anon_sym_value] = ACTIONS(4292), - [anon_sym_expect] = ACTIONS(4292), - [anon_sym_actual] = ACTIONS(4292), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(4295), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_function_body] = STATE(3972), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), }, [4227] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4193), - [sym__alpha_identifier] = ACTIONS(4576), - [anon_sym_AT] = ACTIONS(4578), - [anon_sym_LBRACK] = ACTIONS(4578), - [anon_sym_as] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(4578), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_COMMA] = ACTIONS(7318), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_where] = ACTIONS(4576), - [anon_sym_DOT] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_get] = ACTIONS(4576), - [anon_sym_set] = ACTIONS(4576), - [anon_sym_STAR] = ACTIONS(4578), - [sym_label] = ACTIONS(4578), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_DOT_DOT] = ACTIONS(4578), - [anon_sym_QMARK_COLON] = ACTIONS(4578), - [anon_sym_AMP_AMP] = ACTIONS(4578), - [anon_sym_PIPE_PIPE] = ACTIONS(4578), - [anon_sym_else] = ACTIONS(4576), - [anon_sym_COLON_COLON] = ACTIONS(4578), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT_EQ] = ACTIONS(4578), - [anon_sym_GT_EQ] = ACTIONS(4578), - [anon_sym_BANGin] = ACTIONS(4578), - [anon_sym_is] = ACTIONS(4576), - [anon_sym_BANGis] = ACTIONS(4578), - [anon_sym_PLUS] = ACTIONS(4576), - [anon_sym_DASH] = ACTIONS(4576), - [anon_sym_SLASH] = ACTIONS(4576), - [anon_sym_PERCENT] = ACTIONS(4578), - [anon_sym_as_QMARK] = ACTIONS(4578), - [anon_sym_PLUS_PLUS] = ACTIONS(4578), - [anon_sym_DASH_DASH] = ACTIONS(4578), - [anon_sym_BANG_BANG] = ACTIONS(4578), - [anon_sym_suspend] = ACTIONS(4576), - [anon_sym_sealed] = ACTIONS(4576), - [anon_sym_annotation] = ACTIONS(4576), - [anon_sym_data] = ACTIONS(4576), - [anon_sym_inner] = ACTIONS(4576), - [anon_sym_value] = ACTIONS(4576), - [anon_sym_override] = ACTIONS(4576), - [anon_sym_lateinit] = ACTIONS(4576), - [anon_sym_public] = ACTIONS(4576), - [anon_sym_private] = ACTIONS(4576), - [anon_sym_internal] = ACTIONS(4576), - [anon_sym_protected] = ACTIONS(4576), - [anon_sym_tailrec] = ACTIONS(4576), - [anon_sym_operator] = ACTIONS(4576), - [anon_sym_infix] = ACTIONS(4576), - [anon_sym_inline] = ACTIONS(4576), - [anon_sym_external] = ACTIONS(4576), - [sym_property_modifier] = ACTIONS(4576), - [anon_sym_abstract] = ACTIONS(4576), - [anon_sym_final] = ACTIONS(4576), - [anon_sym_open] = ACTIONS(4576), - [anon_sym_vararg] = ACTIONS(4576), - [anon_sym_noinline] = ACTIONS(4576), - [anon_sym_crossinline] = ACTIONS(4576), - [anon_sym_expect] = ACTIONS(4576), - [anon_sym_actual] = ACTIONS(4576), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4578), - [sym__automatic_semicolon] = ACTIONS(4578), - [sym_safe_nav] = ACTIONS(4578), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4228] = { - [sym_class_body] = STATE(3852), - [sym__alpha_identifier] = ACTIONS(4520), - [anon_sym_AT] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(7363), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_get] = ACTIONS(4520), - [anon_sym_set] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [sym_label] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_QMARK_COLON] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [anon_sym_else] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_BANGin] = ACTIONS(4522), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_BANGis] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_as_QMARK] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_BANG_BANG] = ACTIONS(4522), - [anon_sym_suspend] = ACTIONS(4520), - [anon_sym_sealed] = ACTIONS(4520), - [anon_sym_annotation] = ACTIONS(4520), - [anon_sym_data] = ACTIONS(4520), - [anon_sym_inner] = ACTIONS(4520), - [anon_sym_value] = ACTIONS(4520), - [anon_sym_override] = ACTIONS(4520), - [anon_sym_lateinit] = ACTIONS(4520), - [anon_sym_public] = ACTIONS(4520), - [anon_sym_private] = ACTIONS(4520), - [anon_sym_internal] = ACTIONS(4520), - [anon_sym_protected] = ACTIONS(4520), - [anon_sym_tailrec] = ACTIONS(4520), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_infix] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym_external] = ACTIONS(4520), - [sym_property_modifier] = ACTIONS(4520), - [anon_sym_abstract] = ACTIONS(4520), - [anon_sym_final] = ACTIONS(4520), - [anon_sym_open] = ACTIONS(4520), - [anon_sym_vararg] = ACTIONS(4520), - [anon_sym_noinline] = ACTIONS(4520), - [anon_sym_crossinline] = ACTIONS(4520), - [anon_sym_expect] = ACTIONS(4520), - [anon_sym_actual] = ACTIONS(4520), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4522), - [sym__automatic_semicolon] = ACTIONS(4522), - [sym_safe_nav] = ACTIONS(4522), + [sym_class_body] = STATE(3546), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7500), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [4229] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(3873), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4449), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [4230] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4231] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(3846), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4147), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_as] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_SEMI] = ACTIONS(4149), + [anon_sym_get] = ACTIONS(4147), + [anon_sym_set] = ACTIONS(4147), + [anon_sym_STAR] = ACTIONS(4149), + [sym_label] = ACTIONS(4149), + [anon_sym_in] = ACTIONS(4147), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_QMARK_COLON] = ACTIONS(4149), + [anon_sym_AMP_AMP] = ACTIONS(4149), + [anon_sym_PIPE_PIPE] = ACTIONS(4149), + [anon_sym_else] = ACTIONS(4147), + [anon_sym_COLON_COLON] = ACTIONS(4149), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4149), + [anon_sym_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4149), + [anon_sym_LT_EQ] = ACTIONS(4149), + [anon_sym_GT_EQ] = ACTIONS(4149), + [anon_sym_BANGin] = ACTIONS(4149), + [anon_sym_is] = ACTIONS(4147), + [anon_sym_BANGis] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4147), + [anon_sym_DASH] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_as_QMARK] = ACTIONS(4149), + [anon_sym_PLUS_PLUS] = ACTIONS(4149), + [anon_sym_DASH_DASH] = ACTIONS(4149), + [anon_sym_BANG_BANG] = ACTIONS(4149), + [anon_sym_suspend] = ACTIONS(4147), + [anon_sym_sealed] = ACTIONS(4147), + [anon_sym_annotation] = ACTIONS(4147), + [anon_sym_data] = ACTIONS(4147), + [anon_sym_inner] = ACTIONS(4147), + [anon_sym_value] = ACTIONS(4147), + [anon_sym_override] = ACTIONS(4147), + [anon_sym_lateinit] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_private] = ACTIONS(4147), + [anon_sym_internal] = ACTIONS(4147), + [anon_sym_protected] = ACTIONS(4147), + [anon_sym_tailrec] = ACTIONS(4147), + [anon_sym_operator] = ACTIONS(4147), + [anon_sym_infix] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_external] = ACTIONS(4147), + [sym_property_modifier] = ACTIONS(4147), + [anon_sym_abstract] = ACTIONS(4147), + [anon_sym_final] = ACTIONS(4147), + [anon_sym_open] = ACTIONS(4147), + [anon_sym_vararg] = ACTIONS(4147), + [anon_sym_noinline] = ACTIONS(4147), + [anon_sym_crossinline] = ACTIONS(4147), + [anon_sym_expect] = ACTIONS(4147), + [anon_sym_actual] = ACTIONS(4147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4149), + [sym__automatic_semicolon] = ACTIONS(4149), + [sym_safe_nav] = ACTIONS(4149), [sym_multiline_comment] = ACTIONS(3), }, [4232] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(3982), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4183), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_as] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4183), + [anon_sym_set] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4183), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4183), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4183), + [anon_sym_sealed] = ACTIONS(4183), + [anon_sym_annotation] = ACTIONS(4183), + [anon_sym_data] = ACTIONS(4183), + [anon_sym_inner] = ACTIONS(4183), + [anon_sym_value] = ACTIONS(4183), + [anon_sym_override] = ACTIONS(4183), + [anon_sym_lateinit] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_private] = ACTIONS(4183), + [anon_sym_internal] = ACTIONS(4183), + [anon_sym_protected] = ACTIONS(4183), + [anon_sym_tailrec] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4183), + [anon_sym_infix] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_external] = ACTIONS(4183), + [sym_property_modifier] = ACTIONS(4183), + [anon_sym_abstract] = ACTIONS(4183), + [anon_sym_final] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4183), + [anon_sym_vararg] = ACTIONS(4183), + [anon_sym_noinline] = ACTIONS(4183), + [anon_sym_crossinline] = ACTIONS(4183), + [anon_sym_expect] = ACTIONS(4183), + [anon_sym_actual] = ACTIONS(4183), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, [4233] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [aux_sym__delegation_specifiers_repeat1] = STATE(4258), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, [4234] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6497), + [aux_sym__delegation_specifiers_repeat1] = STATE(4258), + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), [sym_multiline_comment] = ACTIONS(3), }, [4235] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4236] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4505), + [anon_sym_AT] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(7452), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_get] = ACTIONS(4505), + [anon_sym_set] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4505), + [anon_sym_DOT_DOT] = ACTIONS(4507), + [anon_sym_QMARK_COLON] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_BANG_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_BANGin] = ACTIONS(4507), + [anon_sym_is] = ACTIONS(4505), + [anon_sym_BANGis] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4507), + [anon_sym_suspend] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_annotation] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4505), + [anon_sym_inner] = ACTIONS(4505), + [anon_sym_value] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_lateinit] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_tailrec] = ACTIONS(4505), + [anon_sym_operator] = ACTIONS(4505), + [anon_sym_infix] = ACTIONS(4505), + [anon_sym_inline] = ACTIONS(4505), + [anon_sym_external] = ACTIONS(4505), + [sym_property_modifier] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_final] = ACTIONS(4505), + [anon_sym_open] = ACTIONS(4505), + [anon_sym_vararg] = ACTIONS(4505), + [anon_sym_noinline] = ACTIONS(4505), + [anon_sym_crossinline] = ACTIONS(4505), + [anon_sym_expect] = ACTIONS(4505), + [anon_sym_actual] = ACTIONS(4505), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4507), + [sym__automatic_semicolon] = ACTIONS(4507), + [sym_safe_nav] = ACTIONS(4507), [sym_multiline_comment] = ACTIONS(3), }, [4237] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4238] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4239] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_where] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4240] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4241] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6497), + [sym_function_body] = STATE(3916), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4160), + [anon_sym_AT] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LT] = ACTIONS(4160), + [anon_sym_GT] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4160), + [anon_sym_set] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4160), + [anon_sym_DOT_DOT] = ACTIONS(4162), + [anon_sym_QMARK_COLON] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_PIPE_PIPE] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_BANG_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4162), + [anon_sym_LT_EQ] = ACTIONS(4162), + [anon_sym_GT_EQ] = ACTIONS(4162), + [anon_sym_BANGin] = ACTIONS(4162), + [anon_sym_is] = ACTIONS(4160), + [anon_sym_BANGis] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4162), + [anon_sym_suspend] = ACTIONS(4160), + [anon_sym_sealed] = ACTIONS(4160), + [anon_sym_annotation] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4160), + [anon_sym_inner] = ACTIONS(4160), + [anon_sym_value] = ACTIONS(4160), + [anon_sym_override] = ACTIONS(4160), + [anon_sym_lateinit] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_internal] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_tailrec] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_infix] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym_external] = ACTIONS(4160), + [sym_property_modifier] = ACTIONS(4160), + [anon_sym_abstract] = ACTIONS(4160), + [anon_sym_final] = ACTIONS(4160), + [anon_sym_open] = ACTIONS(4160), + [anon_sym_vararg] = ACTIONS(4160), + [anon_sym_noinline] = ACTIONS(4160), + [anon_sym_crossinline] = ACTIONS(4160), + [anon_sym_expect] = ACTIONS(4160), + [anon_sym_actual] = ACTIONS(4160), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4162), + [sym__automatic_semicolon] = ACTIONS(4162), + [sym_safe_nav] = ACTIONS(4162), [sym_multiline_comment] = ACTIONS(3), }, [4242] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4243] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [aux_sym__delegation_specifiers_repeat1] = STATE(4234), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_get] = ACTIONS(4684), + [anon_sym_set] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4684), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_QMARK_COLON] = ACTIONS(4686), + [anon_sym_AMP_AMP] = ACTIONS(4686), + [anon_sym_PIPE_PIPE] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4686), + [anon_sym_GT_EQ] = ACTIONS(4686), + [anon_sym_BANGin] = ACTIONS(4686), + [anon_sym_is] = ACTIONS(4684), + [anon_sym_BANGis] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_SLASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4686), + [anon_sym_DASH_DASH] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4684), + [anon_sym_sealed] = ACTIONS(4684), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4684), + [anon_sym_inner] = ACTIONS(4684), + [anon_sym_value] = ACTIONS(4684), + [anon_sym_override] = ACTIONS(4684), + [anon_sym_lateinit] = ACTIONS(4684), + [anon_sym_public] = ACTIONS(4684), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_internal] = ACTIONS(4684), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_tailrec] = ACTIONS(4684), + [anon_sym_operator] = ACTIONS(4684), + [anon_sym_infix] = ACTIONS(4684), + [anon_sym_inline] = ACTIONS(4684), + [anon_sym_external] = ACTIONS(4684), + [sym_property_modifier] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_final] = ACTIONS(4684), + [anon_sym_open] = ACTIONS(4684), + [anon_sym_vararg] = ACTIONS(4684), + [anon_sym_noinline] = ACTIONS(4684), + [anon_sym_crossinline] = ACTIONS(4684), + [anon_sym_expect] = ACTIONS(4684), + [anon_sym_actual] = ACTIONS(4684), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), [sym_multiline_comment] = ACTIONS(3), }, [4244] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7395), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7397), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4245] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7399), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym_function_body] = STATE(4035), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_as] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_SEMI] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4137), + [anon_sym_set] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4137), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_QMARK_COLON] = ACTIONS(4139), + [anon_sym_AMP_AMP] = ACTIONS(4139), + [anon_sym_PIPE_PIPE] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4139), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_BANGin] = ACTIONS(4139), + [anon_sym_is] = ACTIONS(4137), + [anon_sym_BANGis] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4139), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4137), + [anon_sym_sealed] = ACTIONS(4137), + [anon_sym_annotation] = ACTIONS(4137), + [anon_sym_data] = ACTIONS(4137), + [anon_sym_inner] = ACTIONS(4137), + [anon_sym_value] = ACTIONS(4137), + [anon_sym_override] = ACTIONS(4137), + [anon_sym_lateinit] = ACTIONS(4137), + [anon_sym_public] = ACTIONS(4137), + [anon_sym_private] = ACTIONS(4137), + [anon_sym_internal] = ACTIONS(4137), + [anon_sym_protected] = ACTIONS(4137), + [anon_sym_tailrec] = ACTIONS(4137), + [anon_sym_operator] = ACTIONS(4137), + [anon_sym_infix] = ACTIONS(4137), + [anon_sym_inline] = ACTIONS(4137), + [anon_sym_external] = ACTIONS(4137), + [sym_property_modifier] = ACTIONS(4137), + [anon_sym_abstract] = ACTIONS(4137), + [anon_sym_final] = ACTIONS(4137), + [anon_sym_open] = ACTIONS(4137), + [anon_sym_vararg] = ACTIONS(4137), + [anon_sym_noinline] = ACTIONS(4137), + [anon_sym_crossinline] = ACTIONS(4137), + [anon_sym_expect] = ACTIONS(4137), + [anon_sym_actual] = ACTIONS(4137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4139), + [sym__automatic_semicolon] = ACTIONS(4139), + [sym_safe_nav] = ACTIONS(4139), [sym_multiline_comment] = ACTIONS(3), }, [4246] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_where] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4247] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7401), - [anon_sym_COMMA] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4248] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6497), + [sym_class_body] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7504), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4249] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_COMMA] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_where] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7397), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4250] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4251] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_while] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), + [anon_sym_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7490), + [anon_sym_LT_EQ] = ACTIONS(7492), + [anon_sym_GT_EQ] = ACTIONS(7492), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4252] = { - [sym_class_body] = STATE(3760), - [sym__alpha_identifier] = ACTIONS(4528), - [anon_sym_AT] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(7403), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_get] = ACTIONS(4528), - [anon_sym_set] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4530), - [sym_label] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_QMARK_COLON] = ACTIONS(4530), - [anon_sym_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [anon_sym_else] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_BANGin] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_BANGis] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_as_QMARK] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_BANG_BANG] = ACTIONS(4530), - [anon_sym_suspend] = ACTIONS(4528), - [anon_sym_sealed] = ACTIONS(4528), - [anon_sym_annotation] = ACTIONS(4528), - [anon_sym_data] = ACTIONS(4528), - [anon_sym_inner] = ACTIONS(4528), - [anon_sym_value] = ACTIONS(4528), - [anon_sym_override] = ACTIONS(4528), - [anon_sym_lateinit] = ACTIONS(4528), - [anon_sym_public] = ACTIONS(4528), - [anon_sym_private] = ACTIONS(4528), - [anon_sym_internal] = ACTIONS(4528), - [anon_sym_protected] = ACTIONS(4528), - [anon_sym_tailrec] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_infix] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym_external] = ACTIONS(4528), - [sym_property_modifier] = ACTIONS(4528), - [anon_sym_abstract] = ACTIONS(4528), - [anon_sym_final] = ACTIONS(4528), - [anon_sym_open] = ACTIONS(4528), - [anon_sym_vararg] = ACTIONS(4528), - [anon_sym_noinline] = ACTIONS(4528), - [anon_sym_crossinline] = ACTIONS(4528), - [anon_sym_expect] = ACTIONS(4528), - [anon_sym_actual] = ACTIONS(4528), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4530), - [sym__automatic_semicolon] = ACTIONS(4530), - [sym_safe_nav] = ACTIONS(4530), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), [sym_multiline_comment] = ACTIONS(3), }, [4253] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_QMARK_COLON] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3089), - [anon_sym_inner] = ACTIONS(3089), - [anon_sym_value] = ACTIONS(3089), - [anon_sym_expect] = ACTIONS(3089), - [anon_sym_actual] = ACTIONS(3089), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3091), - [sym__automatic_semicolon] = ACTIONS(3091), - [sym_safe_nav] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4254] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7405), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7407), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4255] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1559), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1549), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3014), - [sym_safe_nav] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7496), + [anon_sym_DASH] = ACTIONS(7496), + [anon_sym_SLASH] = ACTIONS(7498), + [anon_sym_PERCENT] = ACTIONS(7476), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4256] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7435), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_while] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym_function_body] = STATE(3995), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, [4257] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7437), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_while] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym_function_body] = STATE(3894), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4309), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), [sym_multiline_comment] = ACTIONS(3), }, [4258] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_QMARK_COLON] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(2998), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(2998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_is] = ACTIONS(2998), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(2998), - [anon_sym_inner] = ACTIONS(2998), - [anon_sym_value] = ACTIONS(2998), - [anon_sym_expect] = ACTIONS(2998), - [anon_sym_actual] = ACTIONS(2998), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(3000), - [sym_safe_nav] = ACTIONS(6853), + [aux_sym__delegation_specifiers_repeat1] = STATE(4258), + [sym__alpha_identifier] = ACTIONS(4633), + [anon_sym_AT] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4633), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(7506), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_get] = ACTIONS(4633), + [anon_sym_set] = ACTIONS(4633), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4633), + [anon_sym_DOT_DOT] = ACTIONS(4635), + [anon_sym_QMARK_COLON] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4633), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_BANGin] = ACTIONS(4635), + [anon_sym_is] = ACTIONS(4633), + [anon_sym_BANGis] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4635), + [anon_sym_suspend] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_annotation] = ACTIONS(4633), + [anon_sym_data] = ACTIONS(4633), + [anon_sym_inner] = ACTIONS(4633), + [anon_sym_value] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_lateinit] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_tailrec] = ACTIONS(4633), + [anon_sym_operator] = ACTIONS(4633), + [anon_sym_infix] = ACTIONS(4633), + [anon_sym_inline] = ACTIONS(4633), + [anon_sym_external] = ACTIONS(4633), + [sym_property_modifier] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_open] = ACTIONS(4633), + [anon_sym_vararg] = ACTIONS(4633), + [anon_sym_noinline] = ACTIONS(4633), + [anon_sym_crossinline] = ACTIONS(4633), + [anon_sym_expect] = ACTIONS(4633), + [anon_sym_actual] = ACTIONS(4633), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4635), + [sym__automatic_semicolon] = ACTIONS(4635), + [sym_safe_nav] = ACTIONS(4635), [sym_multiline_comment] = ACTIONS(3), }, [4259] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3037), - [sym_safe_nav] = ACTIONS(6853), + [sym_function_body] = STATE(4027), + [sym__block] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(6714), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), [sym_multiline_comment] = ACTIONS(3), }, [4260] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7439), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4261] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7441), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_while] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4262] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3087), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4263] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3016), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3018), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7519), + [anon_sym_COMMA] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [4264] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(2996), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4265] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_RPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7407), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4266] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3025), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4267] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3049), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4268] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_get] = ACTIONS(3005), - [anon_sym_set] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_QMARK_COLON] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3005), - [anon_sym_inner] = ACTIONS(3005), - [anon_sym_value] = ACTIONS(3005), - [anon_sym_expect] = ACTIONS(3005), - [anon_sym_actual] = ACTIONS(3005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3007), - [sym__automatic_semicolon] = ACTIONS(3007), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7541), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4269] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4270] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3053), - [sym_safe_nav] = ACTIONS(6853), + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4349), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4349), + [anon_sym_set] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4351), + [sym_label] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4351), + [anon_sym_AMP_AMP] = ACTIONS(4351), + [anon_sym_PIPE_PIPE] = ACTIONS(4351), + [anon_sym_else] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(4351), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_BANGin] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_BANGis] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_as_QMARK] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [anon_sym_BANG_BANG] = ACTIONS(4351), + [anon_sym_suspend] = ACTIONS(4349), + [anon_sym_sealed] = ACTIONS(4349), + [anon_sym_annotation] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4349), + [anon_sym_inner] = ACTIONS(4349), + [anon_sym_value] = ACTIONS(4349), + [anon_sym_override] = ACTIONS(4349), + [anon_sym_lateinit] = ACTIONS(4349), + [anon_sym_public] = ACTIONS(4349), + [anon_sym_private] = ACTIONS(4349), + [anon_sym_internal] = ACTIONS(4349), + [anon_sym_protected] = ACTIONS(4349), + [anon_sym_tailrec] = ACTIONS(4349), + [anon_sym_operator] = ACTIONS(4349), + [anon_sym_infix] = ACTIONS(4349), + [anon_sym_inline] = ACTIONS(4349), + [anon_sym_external] = ACTIONS(4349), + [sym_property_modifier] = ACTIONS(4349), + [anon_sym_abstract] = ACTIONS(4349), + [anon_sym_final] = ACTIONS(4349), + [anon_sym_open] = ACTIONS(4349), + [anon_sym_vararg] = ACTIONS(4349), + [anon_sym_noinline] = ACTIONS(4349), + [anon_sym_crossinline] = ACTIONS(4349), + [anon_sym_expect] = ACTIONS(4349), + [anon_sym_actual] = ACTIONS(4349), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4351), + [sym__automatic_semicolon] = ACTIONS(4351), + [sym_safe_nav] = ACTIONS(4351), [sym_multiline_comment] = ACTIONS(3), }, [4271] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(3078), - [anon_sym_inner] = ACTIONS(3078), - [anon_sym_value] = ACTIONS(3078), - [anon_sym_expect] = ACTIONS(3078), - [anon_sym_actual] = ACTIONS(3078), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3080), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4272] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6853), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7545), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7541), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4273] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3029), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4274] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3041), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4275] = { - [sym_indexing_suffix] = STATE(5071), - [sym_navigation_suffix] = STATE(5072), - [sym_call_suffix] = STATE(5076), - [sym_annotated_lambda] = STATE(5079), - [sym_type_arguments] = STATE(8212), - [sym_value_arguments] = STATE(4532), - [sym_lambda_literal] = STATE(5081), - [sym__equality_operator] = STATE(1832), - [sym__comparison_operator] = STATE(1833), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6264), - [sym__additive_operator] = STATE(1859), - [sym__multiplicative_operator] = STATE(1861), - [sym__as_operator] = STATE(6263), - [sym__postfix_unary_operator] = STATE(5082), - [sym__member_access_operator] = STATE(7639), - [sym_annotation] = STATE(8271), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1863), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8271), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6829), - [anon_sym_as] = ACTIONS(6831), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7409), - [anon_sym_DOT] = ACTIONS(6837), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7411), - [sym_label] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(7413), - [anon_sym_DOT_DOT] = ACTIONS(7415), - [anon_sym_QMARK_COLON] = ACTIONS(7417), - [anon_sym_AMP_AMP] = ACTIONS(7419), - [anon_sym_PIPE_PIPE] = ACTIONS(7421), - [anon_sym_else] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(6853), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7425), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_BANGin] = ACTIONS(7429), - [anon_sym_is] = ACTIONS(6863), - [anon_sym_BANGis] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7433), - [anon_sym_PERCENT] = ACTIONS(7411), - [anon_sym_as_QMARK] = ACTIONS(6869), - [anon_sym_PLUS_PLUS] = ACTIONS(6871), - [anon_sym_DASH_DASH] = ACTIONS(6871), - [anon_sym_BANG_BANG] = ACTIONS(6871), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(3033), - [sym_safe_nav] = ACTIONS(6853), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4276] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8765), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7443), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4277] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8780), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7447), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4278] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8789), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7449), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4279] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8979), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7451), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4280] = { - [sym__alpha_identifier] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(7453), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_SEMI] = ACTIONS(4324), - [anon_sym_get] = ACTIONS(4326), - [anon_sym_set] = ACTIONS(4326), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_QMARK_COLON] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4324), - [anon_sym_PIPE_PIPE] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(4324), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4324), - [anon_sym_LT_EQ] = ACTIONS(4324), - [anon_sym_GT_EQ] = ACTIONS(4324), - [anon_sym_BANGin] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_BANGis] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4326), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4324), - [anon_sym_suspend] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_annotation] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4326), - [anon_sym_inner] = ACTIONS(4326), - [anon_sym_value] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_lateinit] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_tailrec] = ACTIONS(4326), - [anon_sym_operator] = ACTIONS(4326), - [anon_sym_infix] = ACTIONS(4326), - [anon_sym_inline] = ACTIONS(4326), - [anon_sym_external] = ACTIONS(4326), - [sym_property_modifier] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_final] = ACTIONS(4326), - [anon_sym_open] = ACTIONS(4326), - [anon_sym_vararg] = ACTIONS(4326), - [anon_sym_noinline] = ACTIONS(4326), - [anon_sym_crossinline] = ACTIONS(4326), - [anon_sym_expect] = ACTIONS(4326), - [anon_sym_actual] = ACTIONS(4326), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4324), - [sym__automatic_semicolon] = ACTIONS(4324), - [sym_safe_nav] = ACTIONS(4324), + [sym_class_body] = STATE(3881), + [sym__alpha_identifier] = ACTIONS(4497), + [anon_sym_AT] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_get] = ACTIONS(4497), + [anon_sym_set] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4497), + [anon_sym_DOT_DOT] = ACTIONS(4499), + [anon_sym_QMARK_COLON] = ACTIONS(4499), + [anon_sym_AMP_AMP] = ACTIONS(4499), + [anon_sym_PIPE_PIPE] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4499), + [anon_sym_BANG_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_BANGin] = ACTIONS(4499), + [anon_sym_is] = ACTIONS(4497), + [anon_sym_BANGis] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4499), + [anon_sym_suspend] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_annotation] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4497), + [anon_sym_inner] = ACTIONS(4497), + [anon_sym_value] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_lateinit] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_tailrec] = ACTIONS(4497), + [anon_sym_operator] = ACTIONS(4497), + [anon_sym_infix] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_external] = ACTIONS(4497), + [sym_property_modifier] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_open] = ACTIONS(4497), + [anon_sym_vararg] = ACTIONS(4497), + [anon_sym_noinline] = ACTIONS(4497), + [anon_sym_crossinline] = ACTIONS(4497), + [anon_sym_expect] = ACTIONS(4497), + [anon_sym_actual] = ACTIONS(4497), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4499), + [sym__automatic_semicolon] = ACTIONS(4499), + [sym_safe_nav] = ACTIONS(4499), [sym_multiline_comment] = ACTIONS(3), }, [4281] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8865), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7455), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4282] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8849), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7457), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4283] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8981), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7459), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4284] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7461), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4285] = { - [sym__alpha_identifier] = ACTIONS(4777), - [anon_sym_AT] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_as] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LPAREN] = ACTIONS(7463), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4779), - [anon_sym_get] = ACTIONS(4777), - [anon_sym_set] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4779), - [sym_label] = ACTIONS(4779), - [anon_sym_in] = ACTIONS(4777), - [anon_sym_DOT_DOT] = ACTIONS(4779), - [anon_sym_QMARK_COLON] = ACTIONS(4779), - [anon_sym_AMP_AMP] = ACTIONS(4779), - [anon_sym_PIPE_PIPE] = ACTIONS(4779), - [anon_sym_else] = ACTIONS(4777), - [anon_sym_COLON_COLON] = ACTIONS(4779), - [anon_sym_BANG_EQ] = ACTIONS(4777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), - [anon_sym_EQ_EQ] = ACTIONS(4777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), - [anon_sym_LT_EQ] = ACTIONS(4779), - [anon_sym_GT_EQ] = ACTIONS(4779), - [anon_sym_BANGin] = ACTIONS(4779), - [anon_sym_is] = ACTIONS(4777), - [anon_sym_BANGis] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_PERCENT] = ACTIONS(4779), - [anon_sym_as_QMARK] = ACTIONS(4779), - [anon_sym_PLUS_PLUS] = ACTIONS(4779), - [anon_sym_DASH_DASH] = ACTIONS(4779), - [anon_sym_BANG_BANG] = ACTIONS(4779), - [anon_sym_suspend] = ACTIONS(4777), - [anon_sym_sealed] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4777), - [anon_sym_data] = ACTIONS(4777), - [anon_sym_inner] = ACTIONS(4777), - [anon_sym_value] = ACTIONS(4777), - [anon_sym_override] = ACTIONS(4777), - [anon_sym_lateinit] = ACTIONS(4777), - [anon_sym_public] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4777), - [anon_sym_internal] = ACTIONS(4777), - [anon_sym_protected] = ACTIONS(4777), - [anon_sym_tailrec] = ACTIONS(4777), - [anon_sym_operator] = ACTIONS(4777), - [anon_sym_infix] = ACTIONS(4777), - [anon_sym_inline] = ACTIONS(4777), - [anon_sym_external] = ACTIONS(4777), - [sym_property_modifier] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4777), - [anon_sym_final] = ACTIONS(4777), - [anon_sym_open] = ACTIONS(4777), - [anon_sym_vararg] = ACTIONS(4777), - [anon_sym_noinline] = ACTIONS(4777), - [anon_sym_crossinline] = ACTIONS(4777), - [anon_sym_expect] = ACTIONS(4777), - [anon_sym_actual] = ACTIONS(4777), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4779), - [sym__automatic_semicolon] = ACTIONS(4779), - [sym_safe_nav] = ACTIONS(4779), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3138), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4286] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8999), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7465), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7575), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7577), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4287] = { - [sym__alpha_identifier] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_as] = ACTIONS(4873), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(7467), - [anon_sym_get] = ACTIONS(4873), - [anon_sym_set] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [sym_label] = ACTIONS(4875), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_QMARK_COLON] = ACTIONS(4875), - [anon_sym_AMP_AMP] = ACTIONS(4875), - [anon_sym_PIPE_PIPE] = ACTIONS(4875), - [anon_sym_else] = ACTIONS(7461), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym_BANG_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), - [anon_sym_LT_EQ] = ACTIONS(4875), - [anon_sym_GT_EQ] = ACTIONS(4875), - [anon_sym_BANGin] = ACTIONS(4875), - [anon_sym_is] = ACTIONS(4873), - [anon_sym_BANGis] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_PERCENT] = ACTIONS(4875), - [anon_sym_as_QMARK] = ACTIONS(4875), - [anon_sym_PLUS_PLUS] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4875), - [anon_sym_BANG_BANG] = ACTIONS(4875), - [anon_sym_suspend] = ACTIONS(4873), - [anon_sym_sealed] = ACTIONS(4873), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4873), - [anon_sym_inner] = ACTIONS(4873), - [anon_sym_value] = ACTIONS(4873), - [anon_sym_override] = ACTIONS(4873), - [anon_sym_lateinit] = ACTIONS(4873), - [anon_sym_public] = ACTIONS(4873), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_internal] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_tailrec] = ACTIONS(4873), - [anon_sym_operator] = ACTIONS(4873), - [anon_sym_infix] = ACTIONS(4873), - [anon_sym_inline] = ACTIONS(4873), - [anon_sym_external] = ACTIONS(4873), - [sym_property_modifier] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_final] = ACTIONS(4873), - [anon_sym_open] = ACTIONS(4873), - [anon_sym_vararg] = ACTIONS(4873), - [anon_sym_noinline] = ACTIONS(4873), - [anon_sym_crossinline] = ACTIONS(4873), - [anon_sym_expect] = ACTIONS(4873), - [anon_sym_actual] = ACTIONS(4873), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4875), - [sym__automatic_semicolon] = ACTIONS(4875), - [sym_safe_nav] = ACTIONS(4875), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_RPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_while] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7577), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4288] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8983), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7469), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3096), + [anon_sym_QMARK_COLON] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3094), + [anon_sym_inner] = ACTIONS(3094), + [anon_sym_value] = ACTIONS(3094), + [anon_sym_expect] = ACTIONS(3094), + [anon_sym_actual] = ACTIONS(3094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3096), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4289] = { - [sym__alpha_identifier] = ACTIONS(4300), - [anon_sym_AT] = ACTIONS(4298), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(7471), - [anon_sym_LT] = ACTIONS(4300), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_get] = ACTIONS(4300), - [anon_sym_set] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4298), - [sym_label] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_QMARK_COLON] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_else] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4298), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4298), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_BANGin] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4300), - [anon_sym_BANGis] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_as_QMARK] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_BANG_BANG] = ACTIONS(4298), - [anon_sym_suspend] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_annotation] = ACTIONS(4300), - [anon_sym_data] = ACTIONS(4300), - [anon_sym_inner] = ACTIONS(4300), - [anon_sym_value] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_lateinit] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_tailrec] = ACTIONS(4300), - [anon_sym_operator] = ACTIONS(4300), - [anon_sym_infix] = ACTIONS(4300), - [anon_sym_inline] = ACTIONS(4300), - [anon_sym_external] = ACTIONS(4300), - [sym_property_modifier] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_final] = ACTIONS(4300), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_vararg] = ACTIONS(4300), - [anon_sym_noinline] = ACTIONS(4300), - [anon_sym_crossinline] = ACTIONS(4300), - [anon_sym_expect] = ACTIONS(4300), - [anon_sym_actual] = ACTIONS(4300), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4298), - [sym__automatic_semicolon] = ACTIONS(4298), - [sym_safe_nav] = ACTIONS(4298), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7579), + [anon_sym_RPAREN] = ACTIONS(4876), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_while] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [4290] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8746), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7473), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4291] = { - [sym__alpha_identifier] = ACTIONS(4767), - [anon_sym_AT] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_as] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(7475), - [anon_sym_LT] = ACTIONS(4767), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_DOT] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [sym_label] = ACTIONS(4769), - [anon_sym_in] = ACTIONS(4767), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_QMARK_COLON] = ACTIONS(4769), - [anon_sym_AMP_AMP] = ACTIONS(4769), - [anon_sym_PIPE_PIPE] = ACTIONS(4769), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym_BANG_EQ] = ACTIONS(4767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4769), - [anon_sym_EQ_EQ] = ACTIONS(4767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4769), - [anon_sym_LT_EQ] = ACTIONS(4769), - [anon_sym_GT_EQ] = ACTIONS(4769), - [anon_sym_BANGin] = ACTIONS(4769), - [anon_sym_is] = ACTIONS(4767), - [anon_sym_BANGis] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4769), - [anon_sym_as_QMARK] = ACTIONS(4769), - [anon_sym_PLUS_PLUS] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_BANG_BANG] = ACTIONS(4769), - [anon_sym_suspend] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_data] = ACTIONS(4767), - [anon_sym_inner] = ACTIONS(4767), - [anon_sym_value] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_lateinit] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_tailrec] = ACTIONS(4767), - [anon_sym_operator] = ACTIONS(4767), - [anon_sym_infix] = ACTIONS(4767), - [anon_sym_inline] = ACTIONS(4767), - [anon_sym_external] = ACTIONS(4767), - [sym_property_modifier] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_final] = ACTIONS(4767), - [anon_sym_open] = ACTIONS(4767), - [anon_sym_vararg] = ACTIONS(4767), - [anon_sym_noinline] = ACTIONS(4767), - [anon_sym_crossinline] = ACTIONS(4767), - [anon_sym_expect] = ACTIONS(4767), - [anon_sym_actual] = ACTIONS(4767), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4769), - [sym__automatic_semicolon] = ACTIONS(4769), - [sym_safe_nav] = ACTIONS(4769), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7581), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4292] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8733), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7477), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4293] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [aux_sym_indexing_suffix_repeat1] = STATE(8786), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7479), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7445), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4294] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7489), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7585), + [anon_sym_RPAREN] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4295] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7517), - [anon_sym_RPAREN] = ACTIONS(7517), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3103), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4296] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7519), - [anon_sym_RPAREN] = ACTIONS(7519), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4297] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7521), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7521), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4298] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7523), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4299] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4312), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7523), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4300] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4301] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7527), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3115), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4302] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7529), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7583), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4303] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4304] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4317), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7527), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3188), + [anon_sym_QMARK_COLON] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3186), + [anon_sym_inner] = ACTIONS(3186), + [anon_sym_value] = ACTIONS(3186), + [anon_sym_expect] = ACTIONS(3186), + [anon_sym_actual] = ACTIONS(3186), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4305] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4298), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7531), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_QMARK_COLON] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3193), + [anon_sym_inner] = ACTIONS(3193), + [anon_sym_value] = ACTIONS(3193), + [anon_sym_expect] = ACTIONS(3193), + [anon_sym_actual] = ACTIONS(3193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4306] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7533), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3175), + [anon_sym_inner] = ACTIONS(3175), + [anon_sym_value] = ACTIONS(3175), + [anon_sym_expect] = ACTIONS(3175), + [anon_sym_actual] = ACTIONS(3175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3177), + [sym__automatic_semicolon] = ACTIONS(3177), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4307] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7535), - [anon_sym_RPAREN] = ACTIONS(7535), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(5104), + [sym_navigation_suffix] = STATE(5124), + [sym_call_suffix] = STATE(5139), + [sym_annotated_lambda] = STATE(5156), + [sym_type_arguments] = STATE(8281), + [sym_value_arguments] = STATE(4555), + [sym_lambda_literal] = STATE(5158), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1925), + [sym__is_operator] = STATE(6149), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1928), + [sym__as_operator] = STATE(6229), + [sym__postfix_unary_operator] = STATE(5252), + [sym__member_access_operator] = STATE(7836), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1931), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7037), + [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7049), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_BANGin] = ACTIONS(7569), + [anon_sym_is] = ACTIONS(7071), + [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_PLUS] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7573), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7077), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_BANG_BANG] = ACTIONS(7079), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7061), [sym_multiline_comment] = ACTIONS(3), }, [4308] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4318), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7537), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8995), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7589), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4309] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4306), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7539), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(9046), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7593), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4310] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4301), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7541), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(9034), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7595), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4311] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7543), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(7597), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, [4312] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7545), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8924), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7599), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4313] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4314), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7547), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8956), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7601), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4314] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8853), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7603), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4315] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7551), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(7605), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4265), + [anon_sym_QMARK_COLON] = ACTIONS(4265), + [anon_sym_AMP_AMP] = ACTIONS(4265), + [anon_sym_PIPE_PIPE] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4265), + [anon_sym_LT_EQ] = ACTIONS(4265), + [anon_sym_GT_EQ] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4267), + [anon_sym_sealed] = ACTIONS(4267), + [anon_sym_annotation] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4267), + [anon_sym_inner] = ACTIONS(4267), + [anon_sym_value] = ACTIONS(4267), + [anon_sym_override] = ACTIONS(4267), + [anon_sym_lateinit] = ACTIONS(4267), + [anon_sym_public] = ACTIONS(4267), + [anon_sym_private] = ACTIONS(4267), + [anon_sym_internal] = ACTIONS(4267), + [anon_sym_protected] = ACTIONS(4267), + [anon_sym_tailrec] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_infix] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym_external] = ACTIONS(4267), + [sym_property_modifier] = ACTIONS(4267), + [anon_sym_abstract] = ACTIONS(4267), + [anon_sym_final] = ACTIONS(4267), + [anon_sym_open] = ACTIONS(4267), + [anon_sym_vararg] = ACTIONS(4267), + [anon_sym_noinline] = ACTIONS(4267), + [anon_sym_crossinline] = ACTIONS(4267), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), }, [4316] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4294), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7553), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8849), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7607), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4317] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7555), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(7609), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4287), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_QMARK_COLON] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_PIPE_PIPE] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_BANGin] = ACTIONS(4287), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4289), + [anon_sym_sealed] = ACTIONS(4289), + [anon_sym_annotation] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [anon_sym_override] = ACTIONS(4289), + [anon_sym_lateinit] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_internal] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_tailrec] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_infix] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym_external] = ACTIONS(4289), + [sym_property_modifier] = ACTIONS(4289), + [anon_sym_abstract] = ACTIONS(4289), + [anon_sym_final] = ACTIONS(4289), + [anon_sym_open] = ACTIONS(4289), + [anon_sym_vararg] = ACTIONS(4289), + [anon_sym_noinline] = ACTIONS(4289), + [anon_sym_crossinline] = ACTIONS(4289), + [anon_sym_expect] = ACTIONS(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4287), + [sym__automatic_semicolon] = ACTIONS(4287), + [sym_safe_nav] = ACTIONS(4287), [sym_multiline_comment] = ACTIONS(3), }, [4318] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7557), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7613), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4319] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7559), - [anon_sym_RPAREN] = ACTIONS(7559), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(7613), + [anon_sym_COLON_COLON] = ACTIONS(4820), + [anon_sym_BANG_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4820), + [anon_sym_LT_EQ] = ACTIONS(4820), + [anon_sym_GT_EQ] = ACTIONS(4820), + [anon_sym_BANGin] = ACTIONS(4820), + [anon_sym_is] = ACTIONS(4818), + [anon_sym_BANGis] = ACTIONS(4820), + [anon_sym_PLUS] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4820), + [anon_sym_PLUS_PLUS] = ACTIONS(4820), + [anon_sym_DASH_DASH] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4820), + [anon_sym_suspend] = ACTIONS(4818), + [anon_sym_sealed] = ACTIONS(4818), + [anon_sym_annotation] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4818), + [anon_sym_inner] = ACTIONS(4818), + [anon_sym_value] = ACTIONS(4818), + [anon_sym_override] = ACTIONS(4818), + [anon_sym_lateinit] = ACTIONS(4818), + [anon_sym_public] = ACTIONS(4818), + [anon_sym_private] = ACTIONS(4818), + [anon_sym_internal] = ACTIONS(4818), + [anon_sym_protected] = ACTIONS(4818), + [anon_sym_tailrec] = ACTIONS(4818), + [anon_sym_operator] = ACTIONS(4818), + [anon_sym_infix] = ACTIONS(4818), + [anon_sym_inline] = ACTIONS(4818), + [anon_sym_external] = ACTIONS(4818), + [sym_property_modifier] = ACTIONS(4818), + [anon_sym_abstract] = ACTIONS(4818), + [anon_sym_final] = ACTIONS(4818), + [anon_sym_open] = ACTIONS(4818), + [anon_sym_vararg] = ACTIONS(4818), + [anon_sym_noinline] = ACTIONS(4818), + [anon_sym_crossinline] = ACTIONS(4818), + [anon_sym_expect] = ACTIONS(4818), + [anon_sym_actual] = ACTIONS(4818), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4820), + [sym__automatic_semicolon] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [sym_multiline_comment] = ACTIONS(3), }, [4320] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7561), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(9082), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7615), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4321] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4302), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8930), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7617), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4322] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7565), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(7619), + [anon_sym_LT] = ACTIONS(4874), + [anon_sym_GT] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4874), + [anon_sym_set] = ACTIONS(4874), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_QMARK_COLON] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4874), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), + [anon_sym_LT_EQ] = ACTIONS(4876), + [anon_sym_GT_EQ] = ACTIONS(4876), + [anon_sym_BANGin] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_BANGis] = ACTIONS(4876), + [anon_sym_PLUS] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4874), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4876), + [anon_sym_suspend] = ACTIONS(4874), + [anon_sym_sealed] = ACTIONS(4874), + [anon_sym_annotation] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4874), + [anon_sym_inner] = ACTIONS(4874), + [anon_sym_value] = ACTIONS(4874), + [anon_sym_override] = ACTIONS(4874), + [anon_sym_lateinit] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4874), + [anon_sym_private] = ACTIONS(4874), + [anon_sym_internal] = ACTIONS(4874), + [anon_sym_protected] = ACTIONS(4874), + [anon_sym_tailrec] = ACTIONS(4874), + [anon_sym_operator] = ACTIONS(4874), + [anon_sym_infix] = ACTIONS(4874), + [anon_sym_inline] = ACTIONS(4874), + [anon_sym_external] = ACTIONS(4874), + [sym_property_modifier] = ACTIONS(4874), + [anon_sym_abstract] = ACTIONS(4874), + [anon_sym_final] = ACTIONS(4874), + [anon_sym_open] = ACTIONS(4874), + [anon_sym_vararg] = ACTIONS(4874), + [anon_sym_noinline] = ACTIONS(4874), + [anon_sym_crossinline] = ACTIONS(4874), + [anon_sym_expect] = ACTIONS(4874), + [anon_sym_actual] = ACTIONS(4874), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4876), + [sym__automatic_semicolon] = ACTIONS(4876), + [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, [4323] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8813), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7621), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4324] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4340), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7567), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8843), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7623), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4325] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4326), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7569), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [aux_sym_indexing_suffix_repeat1] = STATE(8821), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7625), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7591), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4326] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7571), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7635), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4327] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7663), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4328] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7573), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7665), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4329] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(7575), - [anon_sym_typealias] = ACTIONS(7578), - [anon_sym_class] = ACTIONS(7581), - [anon_sym_interface] = ACTIONS(7581), - [anon_sym_enum] = ACTIONS(7584), - [anon_sym_constructor] = ACTIONS(7587), - [anon_sym_RBRACE] = ACTIONS(7590), - [anon_sym_val] = ACTIONS(7592), - [anon_sym_var] = ACTIONS(7592), - [anon_sym_init] = ACTIONS(7595), - [anon_sym_companion] = ACTIONS(7598), - [anon_sym_object] = ACTIONS(7601), - [anon_sym_fun] = ACTIONS(7604), - [anon_sym_get] = ACTIONS(7607), - [anon_sym_set] = ACTIONS(7610), - [anon_sym_suspend] = ACTIONS(7613), - [anon_sym_sealed] = ACTIONS(7616), - [anon_sym_annotation] = ACTIONS(7616), - [anon_sym_data] = ACTIONS(7616), - [anon_sym_inner] = ACTIONS(7616), - [anon_sym_value] = ACTIONS(7616), - [anon_sym_override] = ACTIONS(7619), - [anon_sym_lateinit] = ACTIONS(7619), - [anon_sym_public] = ACTIONS(7622), - [anon_sym_private] = ACTIONS(7622), - [anon_sym_internal] = ACTIONS(7622), - [anon_sym_protected] = ACTIONS(7622), - [anon_sym_tailrec] = ACTIONS(7613), - [anon_sym_operator] = ACTIONS(7613), - [anon_sym_infix] = ACTIONS(7613), - [anon_sym_inline] = ACTIONS(7613), - [anon_sym_external] = ACTIONS(7613), - [sym_property_modifier] = ACTIONS(7625), - [anon_sym_abstract] = ACTIONS(7628), - [anon_sym_final] = ACTIONS(7628), - [anon_sym_open] = ACTIONS(7628), - [anon_sym_vararg] = ACTIONS(7631), - [anon_sym_noinline] = ACTIONS(7631), - [anon_sym_crossinline] = ACTIONS(7631), - [anon_sym_expect] = ACTIONS(7634), - [anon_sym_actual] = ACTIONS(7634), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4328), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7667), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4330] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(7637), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4348), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7669), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4331] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7639), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7667), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4332] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4355), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7641), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4331), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7671), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4333] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4323), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7643), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4334] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4336), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7645), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(7673), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4335] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4354), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7647), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7675), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4336] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7649), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7677), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4337] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4339), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7649), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7679), + [anon_sym_RPAREN] = ACTIONS(7679), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4338] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4328), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7651), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4375), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7681), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4339] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7653), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4378), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7683), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4340] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7655), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7685), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4341] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4386), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7687), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4342] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4331), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7657), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7689), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4343] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7659), - [anon_sym_RPAREN] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4350), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7691), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4344] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7651), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4336), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7693), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4345] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4320), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7662), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7695), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4346] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7664), - [anon_sym_RPAREN] = ACTIONS(7664), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7697), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4347] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4322), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7666), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4370), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7699), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4348] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7668), - [anon_sym_RPAREN] = ACTIONS(7668), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7701), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4349] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(7670), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(7670), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4327), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7703), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4350] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1887), - [sym__comparison_operator] = STATE(1891), - [sym__in_operator] = STATE(1911), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1914), - [sym__multiplicative_operator] = STATE(1915), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1920), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7129), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7125), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7131), - [anon_sym_DOT_DOT] = ACTIONS(7133), - [anon_sym_QMARK_COLON] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7137), - [anon_sym_PIPE_PIPE] = ACTIONS(7139), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7143), - [anon_sym_EQ_EQ] = ACTIONS(7141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7143), - [anon_sym_LT_EQ] = ACTIONS(7145), - [anon_sym_GT_EQ] = ACTIONS(7145), - [anon_sym_BANGin] = ACTIONS(7147), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7149), - [anon_sym_DASH] = ACTIONS(7149), - [anon_sym_SLASH] = ACTIONS(7127), - [anon_sym_PERCENT] = ACTIONS(7125), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7705), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4351] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7672), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4326), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7707), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4352] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), [aux_sym__class_member_declarations] = STATE(4357), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7674), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7709), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4353] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7666), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4388), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7711), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4354] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7676), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4359), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7705), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4355] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7678), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4356] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4361), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7680), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4352), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7715), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4357] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7553), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(7717), + [anon_sym_typealias] = ACTIONS(7720), + [anon_sym_class] = ACTIONS(7723), + [anon_sym_interface] = ACTIONS(7723), + [anon_sym_enum] = ACTIONS(7726), + [anon_sym_constructor] = ACTIONS(7729), + [anon_sym_RBRACE] = ACTIONS(7732), + [anon_sym_val] = ACTIONS(7734), + [anon_sym_var] = ACTIONS(7734), + [anon_sym_init] = ACTIONS(7737), + [anon_sym_companion] = ACTIONS(7740), + [anon_sym_object] = ACTIONS(7743), + [anon_sym_fun] = ACTIONS(7746), + [anon_sym_get] = ACTIONS(7749), + [anon_sym_set] = ACTIONS(7752), + [anon_sym_suspend] = ACTIONS(7755), + [anon_sym_sealed] = ACTIONS(7758), + [anon_sym_annotation] = ACTIONS(7758), + [anon_sym_data] = ACTIONS(7758), + [anon_sym_inner] = ACTIONS(7758), + [anon_sym_value] = ACTIONS(7758), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_lateinit] = ACTIONS(7761), + [anon_sym_public] = ACTIONS(7764), + [anon_sym_private] = ACTIONS(7764), + [anon_sym_internal] = ACTIONS(7764), + [anon_sym_protected] = ACTIONS(7764), + [anon_sym_tailrec] = ACTIONS(7755), + [anon_sym_operator] = ACTIONS(7755), + [anon_sym_infix] = ACTIONS(7755), + [anon_sym_inline] = ACTIONS(7755), + [anon_sym_external] = ACTIONS(7755), + [sym_property_modifier] = ACTIONS(7767), + [anon_sym_abstract] = ACTIONS(7770), + [anon_sym_final] = ACTIONS(7770), + [anon_sym_open] = ACTIONS(7770), + [anon_sym_vararg] = ACTIONS(7773), + [anon_sym_noinline] = ACTIONS(7773), + [anon_sym_crossinline] = ACTIONS(7773), + [anon_sym_expect] = ACTIONS(7776), + [anon_sym_actual] = ACTIONS(7776), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4358] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4364), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7672), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7779), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4359] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4351), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7682), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7781), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4360] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4344), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7684), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4342), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7783), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4361] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7686), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4362] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4311), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7686), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4365), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7787), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4363] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4353), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7688), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7709), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4364] = { - [sym_type_alias] = STATE(9214), - [sym__declaration] = STATE(9214), - [sym_class_declaration] = STATE(9214), - [aux_sym__class_member_declarations] = STATE(4329), - [sym__class_member_declaration] = STATE(9214), - [sym_anonymous_initializer] = STATE(9214), - [sym_companion_object] = STATE(9214), - [sym_function_declaration] = STATE(9214), - [sym_property_declaration] = STATE(9214), - [sym_getter] = STATE(9214), - [sym_setter] = STATE(9214), - [sym_object_declaration] = STATE(9214), - [sym_secondary_constructor] = STATE(9214), - [sym_modifiers] = STATE(7885), - [sym__modifier] = STATE(5447), - [sym_class_modifier] = STATE(5447), - [sym_member_modifier] = STATE(5447), - [sym_visibility_modifier] = STATE(5447), - [sym_function_modifier] = STATE(5447), - [sym_inheritance_modifier] = STATE(5447), - [sym_parameter_modifier] = STATE(5447), - [sym_platform_modifier] = STATE(5447), - [sym_annotation] = STATE(5447), - [sym__single_annotation] = STATE(5677), - [sym__multi_annotation] = STATE(5677), - [aux_sym_modifiers_repeat1] = STATE(5447), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_typealias] = ACTIONS(7481), - [anon_sym_class] = ACTIONS(7483), - [anon_sym_interface] = ACTIONS(7483), - [anon_sym_enum] = ACTIONS(7485), - [anon_sym_constructor] = ACTIONS(7487), - [anon_sym_RBRACE] = ACTIONS(7690), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7491), - [anon_sym_companion] = ACTIONS(7493), - [anon_sym_object] = ACTIONS(7495), - [anon_sym_fun] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(7499), - [anon_sym_set] = ACTIONS(7501), - [anon_sym_suspend] = ACTIONS(7503), - [anon_sym_sealed] = ACTIONS(7505), - [anon_sym_annotation] = ACTIONS(7505), - [anon_sym_data] = ACTIONS(7505), - [anon_sym_inner] = ACTIONS(7505), - [anon_sym_value] = ACTIONS(7505), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_lateinit] = ACTIONS(7507), - [anon_sym_public] = ACTIONS(7509), - [anon_sym_private] = ACTIONS(7509), - [anon_sym_internal] = ACTIONS(7509), - [anon_sym_protected] = ACTIONS(7509), - [anon_sym_tailrec] = ACTIONS(7503), - [anon_sym_operator] = ACTIONS(7503), - [anon_sym_infix] = ACTIONS(7503), - [anon_sym_inline] = ACTIONS(7503), - [anon_sym_external] = ACTIONS(7503), - [sym_property_modifier] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(7511), - [anon_sym_final] = ACTIONS(7511), - [anon_sym_open] = ACTIONS(7511), - [anon_sym_vararg] = ACTIONS(7513), - [anon_sym_noinline] = ACTIONS(7513), - [anon_sym_crossinline] = ACTIONS(7513), - [anon_sym_expect] = ACTIONS(7515), - [anon_sym_actual] = ACTIONS(7515), - [sym_line_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4365] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7692), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7789), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4366] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7694), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4023), + [anon_sym_set] = ACTIONS(4023), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4021), + [anon_sym_sealed] = ACTIONS(4021), + [anon_sym_annotation] = ACTIONS(4021), + [anon_sym_data] = ACTIONS(4023), + [anon_sym_inner] = ACTIONS(4023), + [anon_sym_value] = ACTIONS(4023), + [anon_sym_override] = ACTIONS(4021), + [anon_sym_lateinit] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_internal] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_tailrec] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_infix] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym_external] = ACTIONS(4021), + [sym_property_modifier] = ACTIONS(4021), + [anon_sym_abstract] = ACTIONS(4021), + [anon_sym_final] = ACTIONS(4021), + [anon_sym_open] = ACTIONS(4021), + [anon_sym_vararg] = ACTIONS(4021), + [anon_sym_noinline] = ACTIONS(4021), + [anon_sym_crossinline] = ACTIONS(4021), + [anon_sym_expect] = ACTIONS(4023), + [anon_sym_actual] = ACTIONS(4023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4367] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7696), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4358), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4368] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7698), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4345), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7793), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4369] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4396), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7795), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4370] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7797), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4371] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7704), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4384), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7797), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4372] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7706), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7799), + [anon_sym_RPAREN] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4373] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7708), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_object] = ACTIONS(4004), + [anon_sym_fun] = ACTIONS(4004), + [anon_sym_get] = ACTIONS(4013), + [anon_sym_set] = ACTIONS(4013), + [anon_sym_this] = ACTIONS(4004), + [anon_sym_super] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4009), + [sym_label] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_when] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_suspend] = ACTIONS(4011), + [anon_sym_sealed] = ACTIONS(4011), + [anon_sym_annotation] = ACTIONS(4011), + [anon_sym_data] = ACTIONS(4013), + [anon_sym_inner] = ACTIONS(4013), + [anon_sym_value] = ACTIONS(4013), + [anon_sym_override] = ACTIONS(4011), + [anon_sym_lateinit] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4011), + [anon_sym_private] = ACTIONS(4011), + [anon_sym_internal] = ACTIONS(4011), + [anon_sym_protected] = ACTIONS(4011), + [anon_sym_tailrec] = ACTIONS(4011), + [anon_sym_operator] = ACTIONS(4011), + [anon_sym_infix] = ACTIONS(4011), + [anon_sym_inline] = ACTIONS(4011), + [anon_sym_external] = ACTIONS(4011), + [sym_property_modifier] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4011), + [anon_sym_final] = ACTIONS(4011), + [anon_sym_open] = ACTIONS(4011), + [anon_sym_vararg] = ACTIONS(4011), + [anon_sym_noinline] = ACTIONS(4011), + [anon_sym_crossinline] = ACTIONS(4011), + [anon_sym_expect] = ACTIONS(4013), + [anon_sym_actual] = ACTIONS(4013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4009), + [anon_sym_continue_AT] = ACTIONS(4009), + [anon_sym_break_AT] = ACTIONS(4009), + [anon_sym_this_AT] = ACTIONS(4009), + [anon_sym_super_AT] = ACTIONS(4009), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4004), + [sym_hex_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4004), + [anon_sym_false] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4009), + [sym__backtick_identifier] = ACTIONS(4009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4009), }, [4374] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7710), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7801), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(7801), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4375] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7712), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7803), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4376] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7714), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7805), + [anon_sym_RPAREN] = ACTIONS(7805), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4377] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7716), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4340), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7697), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4378] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7718), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4379] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7720), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4397), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7689), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4380] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7722), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4381] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7724), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7810), + [anon_sym_RPAREN] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4382] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7726), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4393), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4383] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7728), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7814), + [anon_sym_RPAREN] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4384] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7730), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4385] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7732), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4386] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7734), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4387] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7736), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_DASH_GT] = ACTIONS(7818), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4388] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7738), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4389] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7740), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4392), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4390] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7742), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4346), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7822), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4391] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7744), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4392] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7746), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7826), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4393] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7748), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4394] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7750), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4395), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4395] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7752), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7830), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4396] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7754), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4397] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7756), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_type_alias] = STATE(9356), + [sym__declaration] = STATE(9356), + [sym_class_declaration] = STATE(9356), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9356), + [sym_anonymous_initializer] = STATE(9356), + [sym_companion_object] = STATE(9356), + [sym_function_declaration] = STATE(9356), + [sym_property_declaration] = STATE(9356), + [sym_getter] = STATE(9356), + [sym_setter] = STATE(9356), + [sym_object_declaration] = STATE(9356), + [sym_secondary_constructor] = STATE(9356), + [sym_modifiers] = STATE(8003), + [sym__modifier] = STATE(5517), + [sym_class_modifier] = STATE(5517), + [sym_member_modifier] = STATE(5517), + [sym_visibility_modifier] = STATE(5517), + [sym_function_modifier] = STATE(5517), + [sym_inheritance_modifier] = STATE(5517), + [sym_parameter_modifier] = STATE(5517), + [sym_platform_modifier] = STATE(5517), + [sym_annotation] = STATE(5517), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5517), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_typealias] = ACTIONS(7627), + [anon_sym_class] = ACTIONS(7629), + [anon_sym_interface] = ACTIONS(7629), + [anon_sym_enum] = ACTIONS(7631), + [anon_sym_constructor] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7834), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7637), + [anon_sym_companion] = ACTIONS(7639), + [anon_sym_object] = ACTIONS(7641), + [anon_sym_fun] = ACTIONS(7643), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7647), + [anon_sym_suspend] = ACTIONS(7649), + [anon_sym_sealed] = ACTIONS(7651), + [anon_sym_annotation] = ACTIONS(7651), + [anon_sym_data] = ACTIONS(7651), + [anon_sym_inner] = ACTIONS(7651), + [anon_sym_value] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_lateinit] = ACTIONS(7653), + [anon_sym_public] = ACTIONS(7655), + [anon_sym_private] = ACTIONS(7655), + [anon_sym_internal] = ACTIONS(7655), + [anon_sym_protected] = ACTIONS(7655), + [anon_sym_tailrec] = ACTIONS(7649), + [anon_sym_operator] = ACTIONS(7649), + [anon_sym_infix] = ACTIONS(7649), + [anon_sym_inline] = ACTIONS(7649), + [anon_sym_external] = ACTIONS(7649), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(7657), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_open] = ACTIONS(7657), + [anon_sym_vararg] = ACTIONS(7659), + [anon_sym_noinline] = ACTIONS(7659), + [anon_sym_crossinline] = ACTIONS(7659), + [anon_sym_expect] = ACTIONS(7661), + [anon_sym_actual] = ACTIONS(7661), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4398] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7758), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1979), + [sym__in_operator] = STATE(1995), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2001), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7307), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7311), + [anon_sym_QMARK_COLON] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7315), + [anon_sym_PIPE_PIPE] = ACTIONS(7317), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7321), + [anon_sym_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7321), + [anon_sym_LT_EQ] = ACTIONS(7323), + [anon_sym_GT_EQ] = ACTIONS(7323), + [anon_sym_BANGin] = ACTIONS(7325), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7307), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4399] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7760), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4400] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7762), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7840), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4401] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7764), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4402] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7766), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4403] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7768), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4404] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7770), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4405] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7772), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4406] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7774), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7852), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4407] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7776), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4408] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7778), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7856), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4409] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7780), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4410] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7782), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4411] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7784), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4412] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7786), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4413] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7788), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7866), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4414] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7790), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7868), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4415] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7792), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7870), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4416] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7794), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7872), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4417] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7796), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4418] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7798), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4419] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7800), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7878), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4420] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7802), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7880), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4421] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7804), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7882), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4422] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7806), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7884), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4423] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7808), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7886), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4424] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7810), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7888), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4425] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7812), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7890), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4426] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7814), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7892), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4427] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7816), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7894), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4428] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7818), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7896), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4429] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7820), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7898), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4430] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7822), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7900), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4431] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7824), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7902), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4432] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7826), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7904), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4433] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7828), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7906), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4434] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7830), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7908), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4435] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7832), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7910), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4436] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7834), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7912), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4437] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7836), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7914), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4438] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7838), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7916), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4439] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7840), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7918), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4440] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7842), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7920), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4441] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7844), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7922), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4442] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7846), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7924), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4443] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7848), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7926), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4444] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7850), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7928), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4445] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7852), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7930), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4446] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7854), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7932), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4447] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7856), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7934), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4448] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7858), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7936), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4449] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7860), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7938), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4450] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7862), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7940), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4451] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7864), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7942), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4452] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7866), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7944), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4453] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7868), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7946), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4454] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7870), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7948), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4455] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7872), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7950), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4456] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7874), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7952), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4457] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7876), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7954), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4458] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7878), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7956), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4459] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7880), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7958), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4460] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7882), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7960), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4461] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7884), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4462] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7886), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7964), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4463] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7888), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4464] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7890), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4465] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7892), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4466] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7894), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4467] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7896), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7974), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4468] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7898), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7976), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4469] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7900), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7978), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4470] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7902), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7980), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4471] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7904), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7982), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4472] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7906), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7984), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4473] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7908), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7986), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4474] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7910), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7988), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4475] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7912), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7990), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4476] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7914), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7992), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4477] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7916), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7994), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4478] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7918), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7996), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4479] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7920), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(7998), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4480] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7922), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4481] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7924), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4482] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7926), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8004), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4483] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(7928), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4484] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7930), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4485] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7932), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8010), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4486] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7934), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8012), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4487] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7936), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8014), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4488] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7938), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8016), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4489] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7940), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8018), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4490] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7942), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8020), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4491] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7944), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8022), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4492] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7946), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8024), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4493] = { - [sym_indexing_suffix] = STATE(4672), - [sym_navigation_suffix] = STATE(4666), - [sym_call_suffix] = STATE(4665), - [sym_annotated_lambda] = STATE(4651), - [sym_type_arguments] = STATE(8005), - [sym_value_arguments] = STATE(4499), - [sym_lambda_literal] = STATE(4683), - [sym__equality_operator] = STATE(1985), - [sym__comparison_operator] = STATE(1984), - [sym__in_operator] = STATE(1982), - [sym__is_operator] = STATE(5930), - [sym__additive_operator] = STATE(1981), - [sym__multiplicative_operator] = STATE(1980), - [sym__as_operator] = STATE(5931), - [sym__postfix_unary_operator] = STATE(4690), - [sym__member_access_operator] = STATE(7774), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [sym_simple_identifier] = STATE(1979), - [sym__lexical_identifier] = STATE(5504), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_as] = ACTIONS(6485), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(7948), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(7365), - [anon_sym_DOT] = ACTIONS(6489), - [anon_sym_get] = ACTIONS(1688), - [anon_sym_set] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(7367), - [sym_label] = ACTIONS(6493), - [anon_sym_in] = ACTIONS(7369), - [anon_sym_DOT_DOT] = ACTIONS(7371), - [anon_sym_QMARK_COLON] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_COLON_COLON] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(7379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_BANGin] = ACTIONS(7385), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_BANGis] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7389), - [anon_sym_PERCENT] = ACTIONS(7367), - [anon_sym_as_QMARK] = ACTIONS(6501), - [anon_sym_PLUS_PLUS] = ACTIONS(6503), - [anon_sym_DASH_DASH] = ACTIONS(6503), - [anon_sym_BANG_BANG] = ACTIONS(6503), - [anon_sym_data] = ACTIONS(1688), - [anon_sym_inner] = ACTIONS(1688), - [anon_sym_value] = ACTIONS(1688), - [anon_sym_expect] = ACTIONS(1688), - [anon_sym_actual] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1752), - [sym_safe_nav] = ACTIONS(6497), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8026), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4494] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(3869), - [anon_sym_set] = ACTIONS(3869), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3823), - [sym_label] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3867), - [anon_sym_sealed] = ACTIONS(3867), - [anon_sym_annotation] = ACTIONS(3867), - [anon_sym_data] = ACTIONS(3869), - [anon_sym_inner] = ACTIONS(3869), - [anon_sym_value] = ACTIONS(3869), - [anon_sym_override] = ACTIONS(3867), - [anon_sym_lateinit] = ACTIONS(3867), - [anon_sym_public] = ACTIONS(3867), - [anon_sym_private] = ACTIONS(3867), - [anon_sym_internal] = ACTIONS(3867), - [anon_sym_protected] = ACTIONS(3867), - [anon_sym_tailrec] = ACTIONS(3867), - [anon_sym_operator] = ACTIONS(3867), - [anon_sym_infix] = ACTIONS(3867), - [anon_sym_inline] = ACTIONS(3867), - [anon_sym_external] = ACTIONS(3867), - [sym_property_modifier] = ACTIONS(3867), - [anon_sym_abstract] = ACTIONS(3867), - [anon_sym_final] = ACTIONS(3867), - [anon_sym_open] = ACTIONS(3867), - [anon_sym_vararg] = ACTIONS(3867), - [anon_sym_noinline] = ACTIONS(3867), - [anon_sym_crossinline] = ACTIONS(3867), - [anon_sym_expect] = ACTIONS(3869), - [anon_sym_actual] = ACTIONS(3869), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8028), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4495] = { - [sym__alpha_identifier] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_object] = ACTIONS(3818), - [anon_sym_fun] = ACTIONS(3818), - [anon_sym_get] = ACTIONS(3827), - [anon_sym_set] = ACTIONS(3827), - [anon_sym_this] = ACTIONS(3818), - [anon_sym_super] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3823), - [sym_label] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_if] = ACTIONS(3818), - [anon_sym_when] = ACTIONS(3818), - [anon_sym_try] = ACTIONS(3818), - [anon_sym_throw] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3818), - [anon_sym_continue] = ACTIONS(3818), - [anon_sym_break] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_suspend] = ACTIONS(3825), - [anon_sym_sealed] = ACTIONS(3825), - [anon_sym_annotation] = ACTIONS(3825), - [anon_sym_data] = ACTIONS(3827), - [anon_sym_inner] = ACTIONS(3827), - [anon_sym_value] = ACTIONS(3827), - [anon_sym_override] = ACTIONS(3825), - [anon_sym_lateinit] = ACTIONS(3825), - [anon_sym_public] = ACTIONS(3825), - [anon_sym_private] = ACTIONS(3825), - [anon_sym_internal] = ACTIONS(3825), - [anon_sym_protected] = ACTIONS(3825), - [anon_sym_tailrec] = ACTIONS(3825), - [anon_sym_operator] = ACTIONS(3825), - [anon_sym_infix] = ACTIONS(3825), - [anon_sym_inline] = ACTIONS(3825), - [anon_sym_external] = ACTIONS(3825), - [sym_property_modifier] = ACTIONS(3825), - [anon_sym_abstract] = ACTIONS(3825), - [anon_sym_final] = ACTIONS(3825), - [anon_sym_open] = ACTIONS(3825), - [anon_sym_vararg] = ACTIONS(3825), - [anon_sym_noinline] = ACTIONS(3825), - [anon_sym_crossinline] = ACTIONS(3825), - [anon_sym_expect] = ACTIONS(3827), - [anon_sym_actual] = ACTIONS(3827), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3823), - [anon_sym_continue_AT] = ACTIONS(3823), - [anon_sym_break_AT] = ACTIONS(3823), - [sym_real_literal] = ACTIONS(3823), - [sym_integer_literal] = ACTIONS(3818), - [sym_hex_literal] = ACTIONS(3823), - [sym_bin_literal] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3823), - [sym__backtick_identifier] = ACTIONS(3823), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3823), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8030), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), }, [4496] = { - [sym_annotated_lambda] = STATE(4821), - [sym_lambda_literal] = STATE(4683), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_EQ] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_GT] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_get] = ACTIONS(4015), - [anon_sym_set] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4017), - [sym_label] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_while] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_QMARK_COLON] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [anon_sym_else] = ACTIONS(4015), - [anon_sym_COLON_COLON] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_BANGin] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_BANGis] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_as_QMARK] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_BANG_BANG] = ACTIONS(4017), - [anon_sym_data] = ACTIONS(4015), - [anon_sym_inner] = ACTIONS(4015), - [anon_sym_value] = ACTIONS(4015), - [anon_sym_expect] = ACTIONS(4015), - [anon_sym_actual] = ACTIONS(4015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4017), - [sym_safe_nav] = ACTIONS(4017), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8032), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4497] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_RBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_RPAREN] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(3844), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_while] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(3857), - [anon_sym_DASH_EQ] = ACTIONS(3857), - [anon_sym_STAR_EQ] = ACTIONS(3857), - [anon_sym_SLASH_EQ] = ACTIONS(3857), - [anon_sym_PERCENT_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8034), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4498] = { - [sym_indexing_suffix] = STATE(7147), - [sym_navigation_suffix] = STATE(7147), - [sym__postfix_unary_operator] = STATE(7147), - [sym__member_access_operator] = STATE(7774), - [sym__postfix_unary_suffix] = STATE(7147), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7147), - [sym__alpha_identifier] = ACTIONS(3842), - [anon_sym_AT] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_RBRACK] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3844), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(3844), - [anon_sym_COMMA] = ACTIONS(3844), - [anon_sym_RPAREN] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3842), - [anon_sym_GT] = ACTIONS(3842), - [anon_sym_where] = ACTIONS(3842), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_SEMI] = ACTIONS(3844), - [anon_sym_get] = ACTIONS(3842), - [anon_sym_set] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(3844), - [sym_label] = ACTIONS(3844), - [anon_sym_in] = ACTIONS(3842), - [anon_sym_while] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3844), - [anon_sym_QMARK_COLON] = ACTIONS(3844), - [anon_sym_AMP_AMP] = ACTIONS(3844), - [anon_sym_PIPE_PIPE] = ACTIONS(3844), - [anon_sym_else] = ACTIONS(3842), - [anon_sym_COLON_COLON] = ACTIONS(3854), - [anon_sym_PLUS_EQ] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(4000), - [anon_sym_STAR_EQ] = ACTIONS(4000), - [anon_sym_SLASH_EQ] = ACTIONS(4000), - [anon_sym_PERCENT_EQ] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3844), - [anon_sym_EQ_EQ] = ACTIONS(3842), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3844), - [anon_sym_LT_EQ] = ACTIONS(3844), - [anon_sym_GT_EQ] = ACTIONS(3844), - [anon_sym_BANGin] = ACTIONS(3844), - [anon_sym_is] = ACTIONS(3842), - [anon_sym_BANGis] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3842), - [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_SLASH] = ACTIONS(3842), - [anon_sym_PERCENT] = ACTIONS(3842), - [anon_sym_as_QMARK] = ACTIONS(3844), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_BANG_BANG] = ACTIONS(3859), - [anon_sym_data] = ACTIONS(3842), - [anon_sym_inner] = ACTIONS(3842), - [anon_sym_value] = ACTIONS(3842), - [anon_sym_expect] = ACTIONS(3842), - [anon_sym_actual] = ACTIONS(3842), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3844), - [sym_safe_nav] = ACTIONS(3854), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8036), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4499] = { - [sym_annotated_lambda] = STATE(4756), - [sym_lambda_literal] = STATE(4683), - [sym_annotation] = STATE(8290), - [sym__single_annotation] = STATE(5867), - [sym__multi_annotation] = STATE(5867), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8290), - [sym__alpha_identifier] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_RBRACK] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(4013), - [anon_sym_RPAREN] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_SEMI] = ACTIONS(4013), - [anon_sym_get] = ACTIONS(4011), - [anon_sym_set] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4013), - [sym_label] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4011), - [anon_sym_while] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4013), - [anon_sym_QMARK_COLON] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4013), - [anon_sym_PIPE_PIPE] = ACTIONS(4013), - [anon_sym_else] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(4013), - [anon_sym_PLUS_EQ] = ACTIONS(4013), - [anon_sym_DASH_EQ] = ACTIONS(4013), - [anon_sym_STAR_EQ] = ACTIONS(4013), - [anon_sym_SLASH_EQ] = ACTIONS(4013), - [anon_sym_PERCENT_EQ] = ACTIONS(4013), - [anon_sym_BANG_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4013), - [anon_sym_EQ_EQ] = ACTIONS(4011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4013), - [anon_sym_LT_EQ] = ACTIONS(4013), - [anon_sym_GT_EQ] = ACTIONS(4013), - [anon_sym_BANGin] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_BANGis] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_as_QMARK] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_BANG_BANG] = ACTIONS(4013), - [anon_sym_data] = ACTIONS(4011), - [anon_sym_inner] = ACTIONS(4011), - [anon_sym_value] = ACTIONS(4011), - [anon_sym_expect] = ACTIONS(4011), - [anon_sym_actual] = ACTIONS(4011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4013), - [sym_safe_nav] = ACTIONS(4013), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), [sym_multiline_comment] = ACTIONS(3), }, [4500] = { - [sym_catch_block] = STATE(4501), - [sym_finally_block] = STATE(4828), - [aux_sym_try_expression_repeat1] = STATE(4501), - [sym__alpha_identifier] = ACTIONS(4025), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4025), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_get] = ACTIONS(4025), - [anon_sym_set] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [anon_sym_DASH_GT] = ACTIONS(4027), - [sym_label] = ACTIONS(4027), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_while] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_QMARK_COLON] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_else] = ACTIONS(4025), - [anon_sym_catch] = ACTIONS(7950), - [anon_sym_finally] = ACTIONS(7952), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_PLUS_EQ] = ACTIONS(4027), - [anon_sym_DASH_EQ] = ACTIONS(4027), - [anon_sym_STAR_EQ] = ACTIONS(4027), - [anon_sym_SLASH_EQ] = ACTIONS(4027), - [anon_sym_PERCENT_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_BANGin] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_BANGis] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4025), - [anon_sym_as_QMARK] = ACTIONS(4027), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_BANG_BANG] = ACTIONS(4027), - [anon_sym_data] = ACTIONS(4025), - [anon_sym_inner] = ACTIONS(4025), - [anon_sym_value] = ACTIONS(4025), - [anon_sym_expect] = ACTIONS(4025), - [anon_sym_actual] = ACTIONS(4025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4027), - [sym_safe_nav] = ACTIONS(4027), + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8040), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4501] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8042), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4502] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8044), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4503] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8046), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4504] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8048), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4505] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8050), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4506] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8052), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4507] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8054), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4508] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8056), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4509] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8058), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4510] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8060), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4511] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8062), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4512] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8064), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4513] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8066), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4514] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8068), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4515] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8070), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4516] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8072), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4517] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8074), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4518] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8076), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4519] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8078), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4520] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8080), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4521] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8082), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4522] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8084), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4523] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8086), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4524] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(8088), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4525] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8090), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4526] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8092), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4527] = { + [sym_indexing_suffix] = STATE(4873), + [sym_navigation_suffix] = STATE(4872), + [sym_call_suffix] = STATE(4870), + [sym_annotated_lambda] = STATE(4868), + [sym_type_arguments] = STATE(8249), + [sym_value_arguments] = STATE(4529), + [sym_lambda_literal] = STATE(4864), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1791), + [sym__is_operator] = STATE(6121), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6123), + [sym__postfix_unary_operator] = STATE(4860), + [sym__member_access_operator] = STATE(7730), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [sym_simple_identifier] = STATE(1786), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(8094), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6728), + [anon_sym_in] = ACTIONS(7525), + [anon_sym_DOT_DOT] = ACTIONS(7511), + [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE_PIPE] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_BANGin] = ACTIONS(7539), + [anon_sym_is] = ACTIONS(6750), + [anon_sym_BANGis] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7513), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6756), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_BANG_BANG] = ACTIONS(6758), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6740), + [sym_multiline_comment] = ACTIONS(3), + }, + [4528] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_STAR_EQ] = ACTIONS(4043), + [anon_sym_SLASH_EQ] = ACTIONS(4043), + [anon_sym_PERCENT_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [4529] = { + [sym_annotated_lambda] = STATE(4777), + [sym_lambda_literal] = STATE(4864), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [4530] = { + [sym_indexing_suffix] = STATE(7209), + [sym_navigation_suffix] = STATE(7209), + [sym__postfix_unary_operator] = STATE(7209), + [sym__member_access_operator] = STATE(7730), + [sym__postfix_unary_suffix] = STATE(7209), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_EQ] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4028), + [anon_sym_set] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4030), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4053), + [anon_sym_DASH_EQ] = ACTIONS(4053), + [anon_sym_STAR_EQ] = ACTIONS(4053), + [anon_sym_SLASH_EQ] = ACTIONS(4053), + [anon_sym_PERCENT_EQ] = ACTIONS(4053), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_BANGis] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_as_QMARK] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4045), + [anon_sym_BANG_BANG] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4028), + [anon_sym_inner] = ACTIONS(4028), + [anon_sym_value] = ACTIONS(4028), + [anon_sym_expect] = ACTIONS(4028), + [anon_sym_actual] = ACTIONS(4028), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4030), + [sym_safe_nav] = ACTIONS(4040), + [sym_multiline_comment] = ACTIONS(3), + }, + [4531] = { + [sym_annotated_lambda] = STATE(4719), + [sym_lambda_literal] = STATE(4864), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(6228), + [sym__multi_annotation] = STATE(6228), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + }, + [4532] = { + [sym_catch_block] = STATE(4542), + [sym_finally_block] = STATE(4709), + [aux_sym_try_expression_repeat1] = STATE(4542), + [sym__alpha_identifier] = ACTIONS(4094), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4094), + [anon_sym_where] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4094), + [anon_sym_set] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4096), + [sym_label] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4094), + [anon_sym_while] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_QMARK_COLON] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4096), + [anon_sym_PIPE_PIPE] = ACTIONS(4096), + [anon_sym_else] = ACTIONS(4094), + [anon_sym_catch] = ACTIONS(8096), + [anon_sym_finally] = ACTIONS(8098), + [anon_sym_COLON_COLON] = ACTIONS(4096), + [anon_sym_PLUS_EQ] = ACTIONS(4096), + [anon_sym_DASH_EQ] = ACTIONS(4096), + [anon_sym_STAR_EQ] = ACTIONS(4096), + [anon_sym_SLASH_EQ] = ACTIONS(4096), + [anon_sym_PERCENT_EQ] = ACTIONS(4096), + [anon_sym_BANG_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4096), + [anon_sym_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4096), + [anon_sym_LT_EQ] = ACTIONS(4096), + [anon_sym_GT_EQ] = ACTIONS(4096), + [anon_sym_BANGin] = ACTIONS(4096), + [anon_sym_is] = ACTIONS(4094), + [anon_sym_BANGis] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4094), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4096), + [anon_sym_BANG_BANG] = ACTIONS(4096), + [anon_sym_data] = ACTIONS(4094), + [anon_sym_inner] = ACTIONS(4094), + [anon_sym_value] = ACTIONS(4094), + [anon_sym_expect] = ACTIONS(4094), + [anon_sym_actual] = ACTIONS(4094), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4096), + [sym_safe_nav] = ACTIONS(4096), [sym_multiline_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(7954), 1, - anon_sym_catch, + [0] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8100), 1, + anon_sym_COLON, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4588), 1, + sym_type_constraints, + STATE(4711), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4501), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4094), 26, + ACTIONS(4173), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4175), 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, + [85] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4004), 29, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -473386,7 +484569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4096), 33, + ACTIONS(4009), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473420,25 +484603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75] = 10, - ACTIONS(5204), 1, + [156] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7957), 1, - anon_sym_COLON, - ACTIONS(7959), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4572), 1, + ACTIONS(8106), 1, + anon_sym_COLON, + STATE(4586), 1, sym_type_constraints, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4733), 1, + STATE(4871), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 23, + ACTIONS(4137), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -473462,7 +484645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 32, + ACTIONS(4139), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473495,15 +484678,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [160] = 5, - ACTIONS(7963), 1, + [241] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8108), 1, + anon_sym_COLON, + STATE(4619), 1, + sym_type_constraints, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 23, + anon_sym_as, anon_sym_LT, - STATE(4535), 1, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4162), 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, + [326] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4181), 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(4179), 34, + anon_sym_COLON, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [397] = 5, + ACTIONS(8110), 1, + anon_sym_LT, + STATE(4554), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4108), 27, + ACTIONS(4128), 27, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -473531,7 +484857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4110), 33, + ACTIONS(4189), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473565,25 +484891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [235] = 10, - ACTIONS(5204), 1, + [472] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7959), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(7965), 1, + ACTIONS(8112), 1, anon_sym_COLON, - STATE(4575), 1, + STATE(4584), 1, sym_type_constraints, - STATE(4728), 1, - sym__block, - STATE(4776), 1, + STATE(4757), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 23, + ACTIONS(4147), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -473607,11 +484933,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 32, + ACTIONS(4149), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [557] = 5, + ACTIONS(8114), 1, + anon_sym_DOT, + STATE(4546), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4193), 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(4195), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -473640,15 +485036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [320] = 5, - ACTIONS(7967), 1, + [632] = 5, + ACTIONS(8117), 1, anon_sym_DOT, - STATE(4505), 1, + STATE(4541), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 27, + ACTIONS(4166), 27, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -473676,7 +485072,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4103), 33, + ACTIONS(4168), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [707] = 5, + ACTIONS(8120), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4542), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4130), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4132), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473710,25 +485176,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [395] = 10, - ACTIONS(5204), 1, + [782] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7959), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8123), 1, anon_sym_COLON, - STATE(4569), 1, + STATE(4582), 1, sym_type_constraints, - STATE(4693), 1, + STATE(4775), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 23, + ACTIONS(4183), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -473752,7 +485218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 32, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473785,31 +485251,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [480] = 10, - ACTIONS(5204), 1, + [867] = 5, + ACTIONS(8125), 1, + anon_sym_LT, + STATE(4610), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 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(4128), 33, + anon_sym_by, anon_sym_where, - ACTIONS(7959), 1, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [942] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 28, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7961), 1, anon_sym_LBRACE, - ACTIONS(7972), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 34, anon_sym_COLON, - STATE(4571), 1, - sym_type_constraints, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [1013] = 5, + ACTIONS(8127), 1, + anon_sym_DOT, + STATE(4541), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4153), 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(4155), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1088] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 23, + ACTIONS(4179), 29, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -473827,11 +485493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 32, + ACTIONS(4181), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -473860,21 +485527,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [565] = 5, - ACTIONS(7974), 1, + [1159] = 5, + ACTIONS(8130), 1, anon_sym_DOT, - STATE(4505), 1, + STATE(4568), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4075), 27, + ACTIONS(4195), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4193), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [1233] = 11, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_EQ, + ACTIONS(4037), 1, + anon_sym_DOT, + STATE(7730), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4040), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(4045), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4043), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7209), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(4030), 20, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + sym__backtick_identifier, + ACTIONS(4028), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [1319] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 28, anon_sym_as, anon_sym_EQ, anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_AMP, @@ -473896,7 +485704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4077), 33, + ACTIONS(4315), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473930,31 +485738,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [640] = 10, - ACTIONS(5204), 1, + [1389] = 11, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(4037), 1, + anon_sym_DOT, + ACTIONS(4050), 1, + anon_sym_EQ, + STATE(7730), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4040), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(4045), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4053), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7209), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(4030), 20, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + sym__backtick_identifier, + ACTIONS(4028), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [1475] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7959), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8132), 1, + anon_sym_COLON, + STATE(4676), 1, + sym_type_constraints, + STATE(4891), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4327), 24, + anon_sym_as, anon_sym_EQ, - ACTIONS(7961), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4329), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1555] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(7977), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5653), 1, anon_sym_COLON, - STATE(4577), 1, + STATE(4659), 1, sym_type_constraints, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, + STATE(4748), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3278), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3282), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1635] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 23, + ACTIONS(4335), 28, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -473972,11 +485990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 32, + ACTIONS(4337), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -474005,28 +486024,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [725] = 5, - ACTIONS(7979), 1, - anon_sym_DOT, - STATE(4508), 1, - aux_sym_user_type_repeat1, + [1705] = 7, + STATE(5158), 1, + sym_lambda_literal, + STATE(5180), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4140), 27, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3992), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -474041,18 +486063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4142), 33, + ACTIONS(3994), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -474075,23 +486095,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [800] = 3, + [1783] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(5655), 1, + anon_sym_COLON, + STATE(4621), 1, + sym_type_constraints, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 29, - anon_sym_COLON, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -474109,12 +486134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3823), 33, + ACTIONS(3282), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -474143,24 +486167,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [871] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, + [1863] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4566), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8134), 1, + anon_sym_COLON, + STATE(4672), 1, sym_type_constraints, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 23, + ACTIONS(4216), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -474183,7 +486206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 32, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474216,21 +486239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [953] = 5, - ACTIONS(7982), 1, - sym__quest, - STATE(4519), 1, - aux_sym_nullable_type_repeat1, + [1943] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8136), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 26, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -474251,12 +486278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -474285,15 +486311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1027] = 5, - ACTIONS(7982), 1, + [2023] = 5, + ACTIONS(8138), 1, sym__quest, - STATE(4519), 1, + STATE(4569), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4165), 26, + ACTIONS(4247), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -474320,7 +486346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4167), 33, + ACTIONS(4249), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474354,50 +486380,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1101] = 11, - ACTIONS(3846), 1, - anon_sym_LBRACK, - ACTIONS(3849), 1, - anon_sym_EQ, - ACTIONS(3851), 1, - anon_sym_DOT, - STATE(7774), 1, - sym__member_access_operator, + [2097] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5659), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3854), 2, + ACTIONS(3286), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3290), 32, sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - ACTIONS(3859), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(3857), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - STATE(7147), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(3844), 20, - sym__automatic_semicolon, - anon_sym_AT, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2177] = 8, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, + ACTIONS(8140), 1, + anon_sym_COLON, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 24, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 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, @@ -474405,16 +486520,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_BANGis, anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3842), 22, + [2257] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8142), 1, + anon_sym_COLON, + STATE(4634), 1, + sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -474429,23 +486563,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [1187] = 4, - ACTIONS(7984), 1, - anon_sym_AMP, + ACTIONS(4323), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2337] = 8, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 27, + ACTIONS(4229), 24, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -474463,12 +486635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4236), 33, + ACTIONS(4231), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -474497,26 +486668,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1259] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7959), 1, + [2417] = 8, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4563), 1, - sym_type_constraints, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, + ACTIONS(8146), 1, + anon_sym_COLON, + STATE(4800), 1, sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 23, + ACTIONS(4275), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -474537,7 +486707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 32, + ACTIONS(4277), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474570,25 +486740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1341] = 8, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, + [2497] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(7986), 1, + ACTIONS(5651), 1, anon_sym_COLON, - STATE(4726), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 24, + ACTIONS(3270), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -474609,7 +486779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 32, + ACTIONS(3274), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474642,18 +486812,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1421] = 5, - ACTIONS(7988), 1, - sym__quest, - STATE(4534), 1, - aux_sym_nullable_type_repeat1, + [2577] = 7, + STATE(5158), 1, + sym_lambda_literal, + STATE(5247), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 26, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(4000), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -474662,7 +486837,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, @@ -474677,18 +486851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4280), 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, @@ -474711,160 +486883,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1495] = 11, - ACTIONS(3846), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, + [2655] = 5, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(3997), 1, - anon_sym_EQ, - STATE(7774), 1, - sym__member_access_operator, + STATE(4567), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3854), 2, - sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(3859), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(4000), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(7147), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(3844), 20, + ACTIONS(4168), 27, sym__automatic_semicolon, + sym__string_start, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_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_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3842), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4166), 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, - [1581] = 8, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(7990), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4795), 1, - sym_function_body, + [2729] = 5, + ACTIONS(8151), 1, + anon_sym_DOT, + STATE(4567), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4155), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4153), 32, + anon_sym_by, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4244), 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, - [1661] = 4, - ACTIONS(7992), 1, - anon_sym_AMP, + [2803] = 5, + ACTIONS(8153), 1, + sym__quest, + STATE(4569), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 27, + ACTIONS(4222), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -474874,7 +487039,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -474892,7 +487056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4236), 33, + ACTIONS(4224), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474926,23 +487090,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1733] = 9, - ACTIONS(5204), 1, + [2877] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7959), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4577), 1, + STATE(4607), 1, sym_type_constraints, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4771), 1, + STATE(4824), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 23, + ACTIONS(4295), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -474966,7 +487130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 32, + ACTIONS(4297), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474999,25 +487163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1815] = 8, - ACTIONS(7959), 1, + [2959] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(7994), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4743), 1, + STATE(4618), 1, + sym_type_constraints, + STATE(4699), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, + ACTIONS(4299), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -475038,7 +487203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 32, + ACTIONS(4301), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475071,23 +487236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1895] = 9, - ACTIONS(5204), 1, + [3041] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7959), 1, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4571), 1, + STATE(4582), 1, sym_type_constraints, - STATE(4728), 1, - sym__block, - STATE(4832), 1, + STATE(4775), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 23, + ACTIONS(4183), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -475111,7 +487276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 32, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475144,28 +487309,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1977] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(5280), 1, - anon_sym_COLON, - STATE(4589), 1, - sym_type_constraints, - STATE(4695), 1, - sym_class_body, + [3123] = 4, + ACTIONS(8156), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 24, + ACTIONS(4237), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -475183,11 +487343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 32, + ACTIONS(4239), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -475216,11 +487377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2057] = 3, + [3195] = 5, + ACTIONS(8158), 1, + sym__quest, + STATE(4559), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4308), 28, + ACTIONS(4204), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -475230,8 +487395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -475249,7 +487412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4310), 33, + ACTIONS(4206), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475283,29 +487446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2127] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, - anon_sym_LBRACE, - STATE(4569), 1, - sym_type_constraints, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [3269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 23, + ACTIONS(4317), 28, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -475323,11 +487479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 32, + ACTIONS(4319), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -475356,23 +487513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2209] = 8, - ACTIONS(5204), 1, + [3339] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(7996), 1, - anon_sym_COLON, - STATE(4592), 1, + STATE(4619), 1, sym_type_constraints, - STATE(4808), 1, - sym_class_body, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 24, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -475395,7 +487553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 32, + ACTIONS(4162), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475428,28 +487586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2289] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5282), 1, - anon_sym_COLON, - STATE(4607), 1, - sym_type_constraints, - STATE(4822), 1, - sym_enum_class_body, + [3421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(4166), 28, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -475467,11 +487619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 32, + ACTIONS(4168), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -475500,11 +487653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2369] = 3, + [3491] = 4, + ACTIONS(8160), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 28, + ACTIONS(4237), 27, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -475514,7 +487669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, sym__quest, anon_sym_STAR, anon_sym_in, @@ -475533,7 +487687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4103), 33, + ACTIONS(4239), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475567,102 +487721,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2439] = 7, - STATE(5081), 1, - sym_lambda_literal, - STATE(5113), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8271), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4011), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + [3563] = 9, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4013), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 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, - [2517] = 7, - STATE(5081), 1, - sym_lambda_literal, - STATE(5143), 1, - sym_annotated_lambda, + STATE(4584), 1, + sym_type_constraints, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8271), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4015), 24, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -475677,16 +487761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4017), 31, - sym__automatic_semicolon, + ACTIONS(4149), 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, @@ -475709,15 +487794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2595] = 5, - ACTIONS(7998), 1, + [3645] = 5, + ACTIONS(8158), 1, sym__quest, - STATE(4534), 1, + STATE(4559), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4225), 26, + ACTIONS(4303), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -475744,7 +487829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4227), 33, + ACTIONS(4305), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475778,22 +487863,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2669] = 3, + [3719] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4634), 1, + sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4314), 28, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -475811,12 +487900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4316), 33, + ACTIONS(4323), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -475845,25 +487933,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2739] = 8, - ACTIONS(5200), 1, + [3796] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5292), 1, - anon_sym_COLON, - STATE(4613), 1, - sym_type_constraints, - STATE(4723), 1, - sym_enum_class_body, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 24, + ACTIONS(4295), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -475884,7 +487970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 32, + ACTIONS(4297), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475917,21 +488003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2819] = 8, - ACTIONS(5204), 1, + [3873] = 7, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8001), 1, - anon_sym_COLON, - STATE(4616), 1, + STATE(4657), 1, sym_type_constraints, - STATE(4655), 1, + STATE(4715), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -475956,7 +488040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 32, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -475989,25 +488073,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2899] = 8, - ACTIONS(5200), 1, + [3950] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(8003), 1, - anon_sym_COLON, - STATE(4638), 1, - sym_type_constraints, - STATE(4655), 1, - sym_enum_class_body, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4160), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476028,7 +488110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 32, + ACTIONS(4162), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476061,22 +488143,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2979] = 3, + [4027] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 28, + ACTIONS(4307), 24, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -476094,12 +488180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4173), 33, + ACTIONS(4309), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -476128,25 +488213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3049] = 8, - ACTIONS(5200), 1, + [4104] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(8005), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_type_constraints, - STATE(4814), 1, - sym_enum_class_body, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 24, + ACTIONS(4147), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476167,7 +488250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 32, + ACTIONS(4149), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476200,25 +488283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3129] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_COLON, - STATE(4599), 1, - sym_type_constraints, - STATE(4822), 1, - sym_class_body, + [4181] = 5, + ACTIONS(8162), 1, + anon_sym_by, + STATE(4787), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(4505), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476239,11 +488317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 32, + ACTIONS(4507), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -476272,19 +488351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3209] = 6, - ACTIONS(5210), 1, + [4254] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8007), 1, - anon_sym_COLON, - STATE(4759), 1, - sym_class_body, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 25, + ACTIONS(4137), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -476308,7 +488388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4530), 32, + ACTIONS(4139), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476341,22 +488421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3284] = 6, - ACTIONS(5210), 1, + [4331] = 7, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8009), 1, - anon_sym_COLON, - STATE(4660), 1, + STATE(4691), 1, + sym_type_constraints, + STATE(4729), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4520), 25, + ACTIONS(4355), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476377,7 +488458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4522), 32, + ACTIONS(4357), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476410,19 +488491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3359] = 7, - ACTIONS(5204), 1, + [4408] = 7, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4643), 1, + STATE(4627), 1, sym_type_constraints, - STATE(4785), 1, + STATE(4744), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4493), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -476447,7 +488528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4495), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476480,23 +488561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3436] = 7, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, + [4485] = 6, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4609), 1, - sym_type_constraints, - STATE(4746), 1, + ACTIONS(8164), 1, + anon_sym_COLON, + STATE(4774), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 24, + ACTIONS(4497), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476517,7 +488597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4510), 32, + ACTIONS(4499), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476550,16 +488630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3513] = 3, + [4560] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4629), 1, + sym_type_constraints, + STATE(4740), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4394), 27, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476567,8 +488654,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, @@ -476582,12 +488667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4396), 33, + ACTIONS(4465), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -476616,23 +488700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3582] = 7, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4641), 1, - sym_type_constraints, - STATE(4682), 1, - sym_class_body, + [4637] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4490), 24, + ACTIONS(4451), 27, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476640,6 +488717,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, @@ -476653,11 +488732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4492), 32, + ACTIONS(4453), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -476686,29 +488766,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3659] = 7, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - STATE(4622), 1, - sym_type_constraints, - STATE(4741), 1, - sym_enum_class_body, + [4706] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4474), 24, + ACTIONS(4179), 28, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -476723,15 +488799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4476), 32, + ACTIONS(4181), 32, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, sym_label, @@ -476756,23 +488832,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3736] = 7, - ACTIONS(5200), 1, + [4775] = 6, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - STATE(4605), 1, - sym_type_constraints, - STATE(4752), 1, - sym_enum_class_body, + ACTIONS(8166), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 24, + ACTIONS(4349), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476793,7 +488868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 32, + ACTIONS(4351), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476826,15 +488901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3813] = 5, - ACTIONS(8011), 1, - anon_sym_by, - STATE(4754), 1, - sym_value_arguments, + [4850] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 25, + ACTIONS(4485), 27, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -476847,6 +488918,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, @@ -476860,7 +488933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 33, + ACTIONS(4487), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -476894,20 +488967,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3886] = 5, - ACTIONS(8013), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8015), 1, - anon_sym_L, + [4919] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4679), 1, + sym_type_constraints, + STATE(4825), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4458), 25, + ACTIONS(4481), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -476928,12 +489004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4460), 33, + ACTIONS(4483), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -476962,11 +489037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3959] = 3, + [4996] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4494), 27, + ACTIONS(4345), 27, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -476994,7 +489069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4496), 33, + ACTIONS(4347), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477028,20 +489103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4028] = 7, - ACTIONS(8017), 1, + [5065] = 7, + ACTIONS(8168), 1, anon_sym_catch, - ACTIONS(8019), 1, + ACTIONS(8170), 1, anon_sym_finally, - STATE(5140), 1, + STATE(5208), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4639), 2, + STATE(4628), 2, sym_catch_block, aux_sym_try_expression_repeat1, - ACTIONS(4025), 24, + ACTIONS(4094), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -477066,7 +489141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4027), 31, + ACTIONS(4096), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -477098,23 +489173,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4105] = 4, - ACTIONS(4350), 1, - anon_sym_DASH_GT, + [5142] = 7, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4346), 27, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -477132,17 +489210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4348), 32, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -477165,16 +489243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4176] = 3, + [5219] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4498), 27, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -477182,8 +489267,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, @@ -477197,12 +489280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4500), 33, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -477231,19 +489313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4245] = 7, - ACTIONS(5204), 1, + [5296] = 7, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4596), 1, + STATE(4676), 1, sym_type_constraints, - STATE(4752), 1, + STATE(4891), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 24, + ACTIONS(4327), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -477268,7 +489350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 32, + ACTIONS(4329), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477301,26 +489383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4322] = 7, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - STATE(4638), 1, - sym_type_constraints, - STATE(4655), 1, - sym_enum_class_body, + [5373] = 4, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4210), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -477338,17 +489417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 32, + ACTIONS(4212), 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, @@ -477371,19 +489450,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4399] = 7, - ACTIONS(5200), 1, + [5444] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4315), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4313), 33, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [5513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4319), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5204), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4317), 33, + anon_sym_by, anon_sym_where, - STATE(4585), 1, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [5582] = 7, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4658), 1, sym_type_constraints, - STATE(4712), 1, + STATE(4784), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 24, + ACTIONS(4467), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -477408,7 +489619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4431), 32, + ACTIONS(4469), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477441,23 +489652,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4476] = 7, - ACTIONS(5200), 1, + [5659] = 7, + ACTIONS(8102), 1, + anon_sym_EQ, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - STATE(4586), 1, - sym_type_constraints, - STATE(4814), 1, - sym_enum_class_body, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 24, + ACTIONS(4299), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -477478,7 +489689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 32, + ACTIONS(4301), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477511,11 +489722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4553] = 3, + [5736] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 26, + ACTIONS(4168), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -477525,7 +489736,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, @@ -477537,13 +489747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3818), 34, - anon_sym_COLON, + ACTIONS(4166), 33, anon_sym_by, anon_sym_where, anon_sym_object, @@ -477577,26 +489788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [4622] = 3, + [5805] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 28, - anon_sym_COLON, + ACTIONS(4477), 27, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -477610,15 +489820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3823), 32, - sym__automatic_semicolon, + ACTIONS(4479), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, sym_label, @@ -477643,87 +489854,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4691] = 5, - ACTIONS(8021), 1, - anon_sym_DOT, - STATE(4508), 1, - aux_sym_user_type_repeat1, + [5874] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4140), 25, - anon_sym_as, + ACTIONS(4337), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4335), 33, anon_sym_by, - anon_sym_LT, - anon_sym_GT, anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4142), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_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, - [4764] = 7, - ACTIONS(7959), 1, + [5943] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4649), 1, - sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 24, + ACTIONS(4447), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -477748,7 +489957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 32, + ACTIONS(4449), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477781,29 +489990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4841] = 7, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4592), 1, - sym_type_constraints, - STATE(4808), 1, - sym_class_body, + [6020] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 24, + ACTIONS(4004), 28, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -477818,15 +490023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 32, + ACTIONS(4009), 32, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, sym_label, @@ -477851,23 +490056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4918] = 7, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym_type_constraints, - STATE(4655), 1, - sym_class_body, + [6089] = 5, + ACTIONS(8172), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8174), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4455), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -477888,11 +490090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 32, + 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, @@ -477921,19 +490124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4995] = 7, - ACTIONS(7959), 1, + [6162] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 24, + ACTIONS(4443), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -477958,7 +490161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 32, + ACTIONS(4445), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477991,23 +490194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5072] = 7, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, + [6239] = 7, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4728), 1, - sym__block, - STATE(4795), 1, - sym_function_body, + ACTIONS(5582), 1, + anon_sym_where, + STATE(4625), 1, + sym_type_constraints, + STATE(4715), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 24, + ACTIONS(4359), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -478028,7 +490231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 32, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478061,87 +490264,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5149] = 5, - ACTIONS(8024), 1, - anon_sym_LT, - STATE(4780), 1, - sym_type_arguments, + [6316] = 5, + ACTIONS(8176), 1, + anon_sym_DOT, + STATE(4546), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4193), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4195), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4108), 33, - anon_sym_by, + [6389] = 7, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4689), 1, + sym_type_constraints, + STATE(4740), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4463), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [5222] = 7, - ACTIONS(7959), 1, + ACTIONS(4465), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6466] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4832), 1, + STATE(4838), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 24, + ACTIONS(4439), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -478166,7 +490439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 32, + ACTIONS(4441), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478199,19 +490472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5299] = 7, - ACTIONS(7959), 1, + [6543] = 7, + ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4697), 1, + STATE(4775), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 24, + ACTIONS(4183), 24, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -478236,7 +490509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 32, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478269,20 +490542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5376] = 7, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, - anon_sym_LBRACE, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, + [6620] = 5, + ACTIONS(8179), 1, + anon_sym_COMMA, + STATE(4620), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 24, + ACTIONS(4430), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -478306,14 +490576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 32, + ACTIONS(4432), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -478339,20 +490609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5453] = 7, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, + [6692] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4728), 1, - sym__block, - STATE(4776), 1, - sym_function_body, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 24, + ACTIONS(4216), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -478376,7 +490643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 32, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478409,20 +490676,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5530] = 7, - ACTIONS(7959), 1, + [6764] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4577), 26, + anon_sym_COLON, + anon_sym_as, anon_sym_EQ, - ACTIONS(7961), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_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(4579), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(4664), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6832] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 24, + ACTIONS(4585), 26, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -478446,11 +490772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 32, + ACTIONS(4587), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -478479,23 +490806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5607] = 7, - ACTIONS(5200), 1, + [6900] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - STATE(4594), 1, - sym_type_constraints, - STATE(4785), 1, - sym_enum_class_body, + STATE(4891), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4327), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -478516,7 +490840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4329), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478549,20 +490873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5684] = 7, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, + [6972] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + STATE(4811), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 24, + ACTIONS(4652), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -478586,7 +490907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 32, + ACTIONS(4654), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478619,11 +490940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5761] = 3, + [7044] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4504), 27, + ACTIONS(3278), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -478636,8 +490961,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, @@ -478651,12 +490974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4506), 33, + ACTIONS(3282), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -478685,20 +491007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5830] = 7, - ACTIONS(7959), 1, - anon_sym_EQ, - ACTIONS(7961), 1, + [7116] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + STATE(4735), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 24, + ACTIONS(4644), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -478722,7 +491041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 32, + ACTIONS(4646), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -478755,15 +491074,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5907] = 5, - ACTIONS(8026), 1, - anon_sym_COMMA, - STATE(4598), 1, - aux_sym_type_constraints_repeat1, + [7188] = 5, + ACTIONS(8182), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 25, + STATE(4628), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4130), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -478774,8 +491094,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, @@ -478789,17 +491109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4435), 32, + ACTIONS(4132), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -478822,12 +491141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5979] = 3, + [7260] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4715), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4717), 26, - anon_sym_COLON, + ACTIONS(4359), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -478853,12 +491175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4719), 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, @@ -478887,91 +491208,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6047] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4705), 26, + [7332] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8185), 1, anon_sym_COLON, - anon_sym_as, + ACTIONS(8187), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_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(4707), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(8189), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [6115] = 5, - ACTIONS(8028), 1, - anon_sym_DOT, - STATE(4584), 1, - aux_sym_user_type_repeat1, + STATE(4990), 1, + sym_type_constraints, + STATE(5360), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 25, + ACTIONS(4175), 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_AMP, - sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -478981,14 +491242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4075), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4173), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -479019,17 +491280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [6187] = 5, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4822), 1, - sym_class_body, + [7414] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 25, + ACTIONS(4204), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -479053,11 +491311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 32, + ACTIONS(4206), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -479086,11 +491345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6259] = 3, + [7482] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4677), 26, + ACTIONS(4754), 26, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -479117,7 +491376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4679), 33, + ACTIONS(4756), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -479151,15 +491410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6327] = 5, - ACTIONS(8030), 1, + [7550] = 5, + ACTIONS(8151), 1, anon_sym_DOT, - STATE(4584), 1, + STATE(4568), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 25, + ACTIONS(4195), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -479169,8 +491428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -479180,12 +491437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4101), 32, + ACTIONS(4193), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -479218,15 +491477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [6399] = 5, - ACTIONS(5200), 1, + [7622] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4689), 1, + STATE(4784), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4701), 25, + ACTIONS(4467), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479252,7 +491511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4703), 32, + ACTIONS(4469), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -479285,15 +491544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6471] = 5, - ACTIONS(5200), 1, - anon_sym_LBRACE, - STATE(4741), 1, - sym_enum_class_body, + [7694] = 4, + STATE(4648), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4474), 25, + ACTIONS(4736), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479319,11 +491576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4476), 32, + ACTIONS(4738), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -479352,28 +491610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6543] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8033), 1, - anon_sym_COLON, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4733), 1, - sym_function_body, - STATE(4979), 1, - sym_type_constraints, + [7764] = 4, + ACTIONS(8191), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 23, + ACTIONS(4740), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -479394,14 +491642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 29, + ACTIONS(4742), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -479424,17 +491676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6625] = 5, - ACTIONS(5200), 1, - anon_sym_LBRACE, - STATE(4822), 1, - sym_enum_class_body, + [7834] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 25, + ACTIONS(4706), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -479458,11 +491707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 32, + ACTIONS(4708), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -479491,17 +491741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6697] = 5, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4808), 1, - sym_class_body, + [7902] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 25, + ACTIONS(4696), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -479525,11 +491772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 32, + ACTIONS(4698), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -479558,28 +491806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6769] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - ACTIONS(8037), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, - STATE(4940), 1, - sym_type_constraints, + [7970] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 23, + ACTIONS(4674), 26, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -479600,14 +491837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, + ACTIONS(4676), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -479630,23 +491871,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6851] = 3, + [8038] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8193), 1, + anon_sym_COLON, + STATE(4966), 1, + sym_type_constraints, + STATE(5406), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4653), 26, - anon_sym_COLON, + ACTIONS(4185), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4183), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [8120] = 5, + ACTIONS(8195), 1, + anon_sym_DOT, + STATE(4644), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4153), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -479661,18 +491978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4655), 33, + ACTIONS(4155), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -479695,20 +492010,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6919] = 5, - ACTIONS(5210), 1, + [8192] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4682), 1, - sym_class_body, + ACTIONS(8198), 1, + anon_sym_COLON, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5028), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4490), 25, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -479729,17 +492052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4492), 32, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -479762,23 +492082,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6991] = 3, + [8274] = 5, + ACTIONS(8202), 1, + sym__quest, + STATE(4643), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4570), 26, + ACTIONS(4224), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4222), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [8346] = 5, + ACTIONS(8205), 1, + anon_sym_DOT, + STATE(4644), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4166), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -479793,18 +492184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4573), 33, + ACTIONS(4168), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -479827,84 +492216,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7059] = 5, - ACTIONS(5200), 1, - anon_sym_LBRACE, - STATE(4721), 1, - sym_enum_class_body, + [8418] = 5, + ACTIONS(8208), 1, + sym__quest, + STATE(4646), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4729), 25, - anon_sym_as, + ACTIONS(4206), 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(4204), 32, + anon_sym_by, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4731), 32, - sym_safe_nav, + [8490] = 5, + ACTIONS(8210), 1, + sym__quest, + STATE(4643), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4249), 25, + sym__automatic_semicolon, + sym__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, - [7131] = 3, + ACTIONS(4247), 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, + [8562] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8212), 1, + anon_sym_COLON, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5031), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 26, - anon_sym_COLON, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -479925,18 +492392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4589), 33, + ACTIONS(4162), 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, @@ -479959,15 +492422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7199] = 5, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4785), 1, - sym_class_body, + [8644] = 5, + ACTIONS(8214), 1, + anon_sym_COMMA, + STATE(4648), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4633), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479993,14 +492456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4635), 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, @@ -480026,17 +492489,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7271] = 3, + [8716] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8217), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, + STATE(5036), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4689), 26, - anon_sym_COLON, + ACTIONS(4137), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -480057,18 +492531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4691), 33, + ACTIONS(4139), 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, @@ -480091,15 +492561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7339] = 5, - ACTIONS(8026), 1, - anon_sym_COMMA, - STATE(4612), 1, - aux_sym_type_constraints_repeat1, + [8798] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4398), 25, + ACTIONS(3286), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480125,14 +492595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4400), 32, + ACTIONS(3290), 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, @@ -480158,26 +492628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7411] = 5, - ACTIONS(5210), 1, + [8870] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8219), 1, + anon_sym_COLON, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4655), 1, - sym_class_body, + STATE(4959), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 25, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -480192,17 +492669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 32, + ACTIONS(4139), 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, @@ -480225,14 +492700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7483] = 3, + [8952] = 5, + ACTIONS(8225), 1, + anon_sym_COMMA, + STATE(4653), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4554), 26, + ACTIONS(4339), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480256,7 +492734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4556), 33, + ACTIONS(4341), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -480264,7 +492742,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, @@ -480290,15 +492767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7551] = 5, - ACTIONS(5200), 1, - anon_sym_LBRACE, - STATE(4723), 1, - sym_enum_class_body, + [9024] = 5, + ACTIONS(8225), 1, + anon_sym_COMMA, + STATE(4620), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 25, + ACTIONS(4424), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480324,14 +492801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 32, + ACTIONS(4426), 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, @@ -480357,11 +492834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7623] = 3, + [9096] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 26, + ACTIONS(4559), 26, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -480388,7 +492865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4593), 33, + ACTIONS(4561), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -480422,20 +492899,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7691] = 5, - ACTIONS(5210), 1, + [9164] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4732), 1, - sym_class_body, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8227), 1, + anon_sym_COLON, + STATE(4711), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5037), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4681), 25, + ACTIONS(4173), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -480456,17 +492941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4683), 32, + ACTIONS(4175), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -480489,15 +492971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7763] = 5, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4788), 1, - sym_class_body, + [9246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4562), 25, + ACTIONS(4758), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480523,11 +493002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4564), 32, + ACTIONS(4760), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -480556,15 +493036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7835] = 5, - ACTIONS(5200), 1, + [9314] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4785), 1, - sym_enum_class_body, + STATE(4811), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4652), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480590,7 +493070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4654), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -480623,33 +493103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7907] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8039), 1, - anon_sym_COLON, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [9386] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4857), 1, - sym_type_constraints, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, + STATE(4825), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 22, + ACTIONS(4481), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -480664,15 +493137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 30, - sym__automatic_semicolon, + ACTIONS(4483), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -480695,15 +493170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7989] = 5, - ACTIONS(5200), 1, + [9458] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4655), 1, + STATE(4809), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 25, + ACTIONS(4216), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480729,7 +493204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 32, + ACTIONS(4218), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -480762,14 +493237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8061] = 3, + [9530] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 26, + ACTIONS(3270), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480793,12 +493271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 33, + ACTIONS(3274), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -480827,15 +493304,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8129] = 5, - ACTIONS(5210), 1, + [9602] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(4797), 1, - sym_class_body, + ACTIONS(8229), 1, + anon_sym_COLON, + STATE(5015), 1, + sym_type_constraints, + STATE(5420), 1, + sym__block, + STATE(5421), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4139), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4137), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9684] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4721), 25, + ACTIONS(4563), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480861,11 +493407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4723), 32, + ACTIONS(4565), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -480894,11 +493441,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8201] = 3, + [9752] = 5, + ACTIONS(8208), 1, + sym__quest, + STATE(4646), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4305), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4303), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9824] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4725), 26, + ACTIONS(4750), 26, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -480925,7 +493539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4727), 33, + ACTIONS(4752), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -480959,13 +493573,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8269] = 4, - STATE(4614), 1, - aux_sym__delegation_specifiers_repeat1, + [9892] = 4, + ACTIONS(8231), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4239), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4237), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9962] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 25, + ACTIONS(4581), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480991,7 +493670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 33, + ACTIONS(4583), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481025,20 +493704,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8339] = 5, - ACTIONS(8045), 1, - anon_sym_COMMA, - STATE(4612), 1, - aux_sym_type_constraints_repeat1, + [10030] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8233), 1, + anon_sym_COLON, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5033), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4410), 25, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -481059,17 +493746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4412), 32, + ACTIONS(4149), 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -481092,17 +493776,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8411] = 5, - ACTIONS(5200), 1, + [10112] = 4, + ACTIONS(8235), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4239), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - STATE(4814), 1, - sym_enum_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4237), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [10182] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 25, + ACTIONS(4670), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -481126,11 +493873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 32, + ACTIONS(4672), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -481159,15 +493907,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8483] = 5, - ACTIONS(8048), 1, + [10250] = 4, + ACTIONS(4214), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(4614), 1, - aux_sym__delegation_specifiers_repeat1, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4210), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [10320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4580), 25, + ACTIONS(4746), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -481193,7 +494004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4582), 32, + ACTIONS(4748), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481201,6 +494012,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, @@ -481226,27 +494038,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8555] = 5, - ACTIONS(8051), 1, - anon_sym_DOT, - STATE(4626), 1, - aux_sym_user_type_repeat1, + [10388] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4075), 26, + ACTIONS(4463), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481261,16 +494072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4077), 31, - sym__automatic_semicolon, + ACTIONS(4465), 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, @@ -481293,17 +494105,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8627] = 5, - ACTIONS(5210), 1, + [10460] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(4752), 1, - sym_class_body, + ACTIONS(8237), 1, + anon_sym_COLON, + STATE(5065), 1, + sym_type_constraints, + STATE(5346), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4149), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 25, + ACTIONS(4762), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -481327,11 +494208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 32, + ACTIONS(4765), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -481360,28 +494242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8699] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - ACTIONS(8054), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, - STATE(4931), 1, - sym_type_constraints, + [10610] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 23, + ACTIONS(4728), 26, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -481402,14 +494273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 29, + ACTIONS(4730), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -481432,12 +494307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8781] = 3, + [10678] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4729), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4669), 26, - anon_sym_COLON, + ACTIONS(4355), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -481463,12 +494341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4671), 33, + ACTIONS(4357), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -481497,27 +494374,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8849] = 5, - ACTIONS(8056), 1, - anon_sym_DOT, - STATE(4615), 1, - aux_sym_user_type_repeat1, + [10750] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4140), 26, + ACTIONS(3278), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481532,16 +494408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4142), 31, - sym__automatic_semicolon, + ACTIONS(3282), 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, @@ -481564,94 +494441,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8921] = 5, - ACTIONS(8059), 1, + [10822] = 5, + ACTIONS(8239), 1, anon_sym_DOT, - STATE(4581), 1, + STATE(4641), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 25, + ACTIONS(4193), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4195), 31, 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_AMP, - sym__quest, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4140), 32, - anon_sym_by, + [10894] = 5, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(4833), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4567), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [8993] = 5, - ACTIONS(8061), 1, - anon_sym_LT, - STATE(4711), 1, - sym_type_arguments, + ACTIONS(4569), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10966] = 4, + ACTIONS(8162), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4108), 26, + ACTIONS(4505), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, + anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481666,16 +494607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4110), 31, - sym__automatic_semicolon, + ACTIONS(4507), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -481698,15 +494641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9065] = 5, - ACTIONS(5200), 1, + [11036] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4712), 1, - sym_enum_class_body, + STATE(4782), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 25, + ACTIONS(4547), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -481732,7 +494675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4431), 32, + ACTIONS(4549), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481765,14 +494708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9137] = 3, + [11108] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4661), 26, + ACTIONS(4463), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -481796,12 +494742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4663), 33, + ACTIONS(4465), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -481830,33 +494775,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9205] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, + [11180] = 5, + ACTIONS(8242), 1, + anon_sym_LT, + STATE(4848), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4128), 26, + anon_sym_as, anon_sym_EQ, - ACTIONS(8043), 1, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4189), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8063), 1, - anon_sym_COLON, - STATE(4855), 1, - sym_type_constraints, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11252] = 4, + ACTIONS(8244), 1, + anon_sym_AT2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 22, + ACTIONS(4710), 26, + anon_sym_AT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481871,15 +494875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 30, - sym__automatic_semicolon, + ACTIONS(4712), 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, @@ -481902,11 +494908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9287] = 3, + [11322] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 26, + ACTIONS(4678), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -481933,7 +494939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4597), 33, + ACTIONS(4681), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481967,25 +494973,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9355] = 5, - ACTIONS(8065), 1, - anon_sym_DOT, - STATE(4626), 1, - aux_sym_user_type_repeat1, + [11390] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8246), 1, + anon_sym_COLON, + STATE(4933), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 26, + ACTIONS(4183), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -482002,12 +495014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4103), 31, + ACTIONS(4185), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -482034,23 +495045,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9427] = 3, + [11472] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8248), 1, + anon_sym_COLON, + STATE(4953), 1, + sym_type_constraints, + STATE(5079), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4538), 26, + ACTIONS(4173), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482065,18 +495086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4540), 33, + ACTIONS(4175), 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, @@ -482099,14 +495117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9495] = 3, + [11554] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4657), 26, + ACTIONS(4543), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482130,7 +495148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4659), 33, + ACTIONS(4545), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482164,14 +495182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9563] = 3, + [11622] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4715), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4649), 26, + ACTIONS(4359), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482195,12 +495216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4651), 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, @@ -482229,33 +495249,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9631] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [11694] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8068), 1, - anon_sym_COLON, - STATE(4853), 1, - sym_type_constraints, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + STATE(4773), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 22, + ACTIONS(4555), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482270,15 +495283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 30, - sym__automatic_semicolon, + ACTIONS(4557), 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, @@ -482301,15 +495316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9713] = 5, - ACTIONS(5210), 1, + [11766] = 5, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4695), 1, + STATE(4744), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 25, + ACTIONS(4493), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482335,7 +495350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 32, + ACTIONS(4495), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482368,14 +495383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9785] = 3, + [11838] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4673), 26, - anon_sym_COLON, + ACTIONS(4571), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482399,7 +495414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4675), 33, + ACTIONS(4573), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482433,13 +495448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9853] = 4, - ACTIONS(8011), 1, - anon_sym_by, + [11906] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 25, + ACTIONS(4551), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482465,7 +495479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 33, + ACTIONS(4553), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482499,33 +495513,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9923] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [11974] = 5, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8070), 1, - anon_sym_COLON, - STATE(4848), 1, - sym_type_constraints, - STATE(5073), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 22, + ACTIONS(4321), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482540,15 +495547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 30, - sym__automatic_semicolon, + ACTIONS(4323), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -482571,23 +495580,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10005] = 3, + [12046] = 10, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8250), 1, + anon_sym_COLON, + STATE(5054), 1, + sym_type_constraints, + STATE(5404), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4665), 26, + ACTIONS(4162), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4160), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [12128] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8252), 1, anon_sym_COLON, + STATE(4947), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482602,18 +495693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4667), 33, + ACTIONS(4162), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -482636,23 +495724,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10073] = 3, + [12210] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8254), 1, + anon_sym_COLON, + STATE(4956), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4548), 26, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482667,18 +495765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4551), 33, + ACTIONS(4149), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -482701,13 +495796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10141] = 4, - ACTIONS(8072), 1, - anon_sym_L, + [12292] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4693), 25, + ACTIONS(4918), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482733,7 +495826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4695), 33, + ACTIONS(4920), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482767,15 +495860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10211] = 5, - ACTIONS(5200), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_enum_class_body, + [12359] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 25, + ACTIONS(4439), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482801,11 +495890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 32, + ACTIONS(4441), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -482834,16 +495924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10283] = 5, - ACTIONS(8074), 1, - anon_sym_catch, + [12426] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4639), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4094), 25, + ACTIONS(5135), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482854,8 +495939,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, @@ -482869,16 +495954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4096), 31, - sym__automatic_semicolon, + ACTIONS(5137), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -482901,33 +495988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10355] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8077), 1, - anon_sym_COLON, - STATE(4845), 1, - sym_type_constraints, - STATE(5099), 1, - sym__block, - STATE(5110), 1, - sym_function_body, + [12493] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 22, + ACTIONS(123), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482942,15 +496018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 30, - sym__automatic_semicolon, + ACTIONS(121), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -482973,15 +496052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10437] = 5, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4746), 1, - sym_class_body, + [12560] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 25, + ACTIONS(4884), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483007,11 +496082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4510), 32, + 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, @@ -483040,28 +496116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10509] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - ACTIONS(8079), 1, - anon_sym_COLON, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(4925), 1, - sym_type_constraints, + [12627] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 23, + ACTIONS(5089), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -483082,14 +496146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 29, + ACTIONS(5091), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -483112,26 +496180,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10591] = 5, - ACTIONS(5210), 1, + [12694] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4721), 1, - sym_class_body, + STATE(4956), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4729), 25, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -483146,17 +496219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4731), 32, + ACTIONS(4149), 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, @@ -483179,34 +496250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10663] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - ACTIONS(8081), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4776), 1, - sym_function_body, - STATE(4978), 1, - sym_type_constraints, + [12773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 23, + ACTIONS(4313), 27, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -483221,13 +496282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 29, + ACTIONS(4315), 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, @@ -483251,11 +496314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10745] = 3, + [12840] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4645), 25, + ACTIONS(5183), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483281,7 +496344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4647), 33, + ACTIONS(5185), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483315,25 +496378,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10812] = 10, - ACTIONS(5449), 1, + [12907] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8083), 1, - anon_sym_COLON, - ACTIONS(8085), 1, + ACTIONS(8221), 1, anon_sym_EQ, - STATE(5053), 1, - sym_function_body, - STATE(5054), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4947), 1, sym_type_constraints, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 22, + ACTIONS(4160), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -483356,13 +496417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 29, + ACTIONS(4162), 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, @@ -483386,13 +496448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10893] = 3, + [12986] = 5, + ACTIONS(8256), 1, + sym__quest, + STATE(4708), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3039), 25, + ACTIONS(4222), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -483401,7 +496468,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, @@ -483416,18 +496482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3041), 33, + ACTIONS(4224), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -483450,11 +496514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10960] = 3, + [13057] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5017), 25, + ACTIONS(5131), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483480,7 +496544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5019), 33, + ACTIONS(5133), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483514,11 +496578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11027] = 3, + [13124] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5100), 25, + ACTIONS(1790), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483544,7 +496608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5102), 33, + ACTIONS(1792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483578,15 +496642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11094] = 5, - ACTIONS(8087), 1, - anon_sym_SEMI, - ACTIONS(8089), 1, - anon_sym_else, + [13191] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 24, + ACTIONS(4137), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483598,6 +496658,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, @@ -483611,7 +496672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 32, + ACTIONS(4139), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483621,6 +496682,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, @@ -483644,22 +496706,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11165] = 3, + [13258] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8259), 1, + anon_sym_COLON, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5075), 1, + sym_type_constraints, + STATE(5079), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4011), 25, + ACTIONS(4173), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -483674,18 +496747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4013), 33, + ACTIONS(4175), 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, @@ -483708,11 +496777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11232] = 3, + [13339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1770), 25, + ACTIONS(4962), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483738,7 +496807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1772), 33, + ACTIONS(4964), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483772,11 +496841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11299] = 3, + [13406] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5033), 25, + ACTIONS(4774), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483802,7 +496871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5035), 33, + ACTIONS(4776), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483836,11 +496905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11366] = 3, + [13473] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5049), 25, + ACTIONS(4652), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483866,7 +496935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5051), 33, + ACTIONS(4654), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483900,11 +496969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11433] = 3, + [13540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 25, + ACTIONS(5063), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483930,7 +496999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 33, + ACTIONS(5065), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483964,11 +497033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11500] = 3, + [13607] = 4, + ACTIONS(8263), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 25, + ACTIONS(4289), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483994,14 +497065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 33, + ACTIONS(4287), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -484028,11 +497098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11567] = 3, + [13676] = 4, + ACTIONS(8265), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4905), 25, + ACTIONS(4892), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484058,14 +497130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4907), 33, + ACTIONS(4894), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -484092,11 +497163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11634] = 3, + [13745] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4889), 25, + ACTIONS(4950), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484122,7 +497193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4891), 33, + ACTIONS(4952), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484156,22 +497227,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11701] = 6, - ACTIONS(3818), 1, + [13812] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(6960), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5065), 1, + sym_type_constraints, + STATE(5346), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4149), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [13891] = 4, + ACTIONS(8267), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4318), 24, + ACTIONS(4874), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -484195,7 +497329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4321), 27, + ACTIONS(4876), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484212,6 +497346,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, @@ -484223,22 +497362,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11774] = 3, + [13960] = 4, + ACTIONS(8269), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5124), 25, + ACTIONS(4237), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484253,18 +497395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5126), 33, + ACTIONS(4239), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -484287,13 +497427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11841] = 3, + [14029] = 5, + ACTIONS(8271), 1, + sym__quest, + STATE(4806), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 25, + ACTIONS(4204), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -484302,7 +497447,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, @@ -484317,18 +497461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 33, + ACTIONS(4206), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -484351,11 +497493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11908] = 3, + [14100] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5021), 25, + ACTIONS(4954), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484381,7 +497523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5023), 33, + ACTIONS(4956), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484415,23 +497557,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11975] = 9, - ACTIONS(5204), 1, + [14167] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, + ACTIONS(8273), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, - STATE(4925), 1, + STATE(5240), 1, + sym_function_body, + STATE(5243), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 23, + ACTIONS(4160), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -484440,7 +497584,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, @@ -484455,13 +497598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 29, + ACTIONS(4162), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -484485,11 +497628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12054] = 3, + [14248] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5003), 25, + ACTIONS(5175), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484515,7 +497658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5005), 33, + ACTIONS(5177), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484549,11 +497692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12121] = 3, + [14315] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4987), 25, + ACTIONS(5171), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484579,7 +497722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4989), 33, + ACTIONS(5173), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484613,11 +497756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12188] = 3, + [14382] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4991), 25, + ACTIONS(1796), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484643,7 +497786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4993), 33, + ACTIONS(1798), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484677,31 +497820,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12255] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(4853), 1, - sym_type_constraints, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [14449] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 22, + ACTIONS(4493), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484716,15 +497850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 30, - sym__automatic_semicolon, + ACTIONS(4495), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -484747,11 +497884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12334] = 3, + [14516] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5092), 25, + ACTIONS(4183), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484777,7 +497914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5094), 33, + ACTIONS(4185), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484811,11 +497948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12401] = 3, + [14583] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4931), 25, + ACTIONS(5195), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484841,7 +497978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4933), 33, + ACTIONS(5197), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484875,24 +498012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12468] = 3, + [14650] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 27, + ACTIONS(4914), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484907,16 +498042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4173), 31, - sym__automatic_semicolon, + ACTIONS(4916), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -484939,13 +498076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12535] = 4, - ACTIONS(8091), 1, - anon_sym_LPAREN, + [14717] = 4, + ACTIONS(8275), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 25, + ACTIONS(4818), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484957,7 +498094,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, @@ -484971,13 +498107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4779), 32, + ACTIONS(4820), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -485004,11 +498141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12604] = 3, + [14786] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5013), 25, + ACTIONS(1732), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485034,7 +498171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5015), 33, + ACTIONS(1734), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485068,11 +498205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12671] = 3, + [14853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5082), 25, + ACTIONS(4906), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485098,7 +498235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5084), 33, + ACTIONS(4908), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485132,11 +498269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12738] = 3, + [14920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5025), 25, + ACTIONS(4902), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485162,7 +498299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5027), 33, + ACTIONS(4904), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485196,31 +498333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12805] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(4855), 1, - sym_type_constraints, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [14987] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 22, + ACTIONS(4633), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -485235,15 +498363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 30, - sym__automatic_semicolon, + ACTIONS(4635), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -485266,11 +498397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12884] = 3, + [15054] = 5, + ACTIONS(8275), 1, + anon_sym_else, + ACTIONS(8277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5029), 25, + ACTIONS(4818), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485282,7 +498417,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, @@ -485296,7 +498430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5031), 33, + ACTIONS(4820), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485306,7 +498440,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, @@ -485330,13 +498463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12951] = 4, - ACTIONS(8093), 1, - anon_sym_LPAREN, + [15125] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 25, + ACTIONS(5077), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485362,13 +498493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4769), 32, + ACTIONS(5079), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -485395,20 +498527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13020] = 5, - ACTIONS(4905), 1, - anon_sym_EQ, + [15192] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4907), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4504), 24, + ACTIONS(4359), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485432,7 +498557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4506), 28, + ACTIONS(4361), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485450,6 +498575,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, @@ -485461,13 +498591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13091] = 3, + [15259] = 8, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8279), 1, + anon_sym_COLON, + STATE(5090), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5078), 25, + ACTIONS(4229), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485476,7 +498615,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, @@ -485491,18 +498629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5080), 33, + ACTIONS(4231), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -485525,13 +498660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13158] = 4, - ACTIONS(8095), 1, - anon_sym_LPAREN, + [15336] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 25, + ACTIONS(5159), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485557,13 +498690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 32, + ACTIONS(5161), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -485590,24 +498724,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13227] = 4, - ACTIONS(8097), 1, - anon_sym_LPAREN, + [15403] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4933), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 25, + ACTIONS(4183), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -485622,17 +498763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4298), 32, + ACTIONS(4185), 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, @@ -485655,11 +498794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13296] = 3, + [15482] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 25, + ACTIONS(4644), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485685,7 +498824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4510), 33, + ACTIONS(4646), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485719,11 +498858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13363] = 3, + [15549] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4743), 25, + ACTIONS(3278), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485749,7 +498888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4745), 33, + ACTIONS(3282), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485783,22 +498922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13430] = 6, - ACTIONS(5086), 1, - anon_sym_EQ, - ACTIONS(8099), 1, - anon_sym_COLON_COLON, + [15616] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5088), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(5057), 24, + ACTIONS(4946), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485822,7 +498952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 27, + ACTIONS(4948), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485839,6 +498969,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, @@ -485850,23 +498986,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13503] = 9, - ACTIONS(5449), 1, + [15683] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8041), 1, + ACTIONS(8221), 1, anon_sym_EQ, - ACTIONS(8043), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4857), 1, + STATE(4932), 1, sym_type_constraints, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5147), 1, + STATE(5194), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 22, + ACTIONS(4295), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -485889,7 +499025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 30, + ACTIONS(4297), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485920,31 +499056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13582] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(4858), 1, - sym_type_constraints, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [15762] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 22, + ACTIONS(4216), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -485959,15 +499086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 30, - sym__automatic_semicolon, + ACTIONS(4218), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -485990,11 +499120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13661] = 3, + [15829] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1754), 25, + ACTIONS(5103), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486020,7 +499150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1756), 33, + ACTIONS(5105), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486054,11 +499184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13728] = 3, + [15896] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 25, + ACTIONS(5191), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486084,7 +499214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4863), 33, + ACTIONS(5193), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486118,22 +499248,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13795] = 3, + [15963] = 4, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 25, + ACTIONS(4210), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -486148,18 +499281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5043), 33, + ACTIONS(4212), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -486182,11 +499313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13862] = 3, + [16032] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4975), 25, + ACTIONS(5073), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486212,7 +499343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4977), 33, + ACTIONS(5075), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486246,31 +499377,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13929] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(4866), 1, - sym_type_constraints, - STATE(4995), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [16099] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 22, + ACTIONS(5059), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -486285,15 +499407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 30, - sym__automatic_semicolon, + ACTIONS(5061), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -486316,14 +499441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14008] = 3, + [16166] = 4, + ACTIONS(8281), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4939), 25, + ACTIONS(5051), 24, anon_sym_as, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, @@ -486346,7 +499472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4941), 33, + ACTIONS(5053), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486380,16 +499506,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14075] = 3, + [16235] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(5900), 1, + anon_sym_COLON, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 25, + ACTIONS(3270), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -486410,18 +499545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 33, + ACTIONS(3274), 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, @@ -486444,11 +499575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14142] = 3, + [16312] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 25, + ACTIONS(5035), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486474,7 +499605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 33, + ACTIONS(5037), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486508,11 +499639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14209] = 3, + [16379] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 25, + ACTIONS(4160), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486538,7 +499669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 33, + ACTIONS(4162), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486572,11 +499703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14276] = 3, + [16446] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4923), 25, + ACTIONS(5067), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486602,7 +499733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4925), 33, + ACTIONS(5069), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486636,11 +499767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14343] = 3, + [16513] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 25, + ACTIONS(4327), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486666,7 +499797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 33, + ACTIONS(4329), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486700,11 +499831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14410] = 3, + [16580] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3340), 25, + ACTIONS(4826), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486730,7 +499861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3342), 33, + ACTIONS(4828), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486764,11 +499895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14477] = 3, + [16647] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3842), 25, + ACTIONS(4958), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486794,7 +499925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3844), 33, + ACTIONS(4960), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486828,26 +499959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14544] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(4951), 1, - sym_type_constraints, + [16714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 23, + ACTIONS(5199), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -486868,14 +499989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 29, + ACTIONS(5201), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -486898,11 +500023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14623] = 3, + [16781] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4817), 25, + ACTIONS(4275), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486928,7 +500053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4819), 33, + ACTIONS(4277), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486962,33 +500087,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14690] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - ACTIONS(8102), 1, - anon_sym_COLON, - STATE(4984), 1, - sym_type_constraints, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, + [16848] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 22, + ACTIONS(4866), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487003,14 +500117,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, - sym__automatic_semicolon, + ACTIONS(4868), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487033,22 +500151,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14771] = 3, + [16915] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4929), 1, + sym_type_constraints, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5096), 25, + ACTIONS(4299), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487063,18 +500190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5098), 33, + ACTIONS(4301), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487097,24 +500221,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14838] = 9, - ACTIONS(5204), 1, + [16994] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(4942), 1, + ACTIONS(8283), 1, + anon_sym_COLON, + STATE(4676), 1, sym_type_constraints, + STATE(4891), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 23, + ACTIONS(4327), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -487137,7 +500260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 29, + ACTIONS(4329), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487167,11 +500290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14917] = 3, + [17071] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 25, + ACTIONS(5167), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487197,7 +500320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 33, + ACTIONS(5169), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487231,13 +500354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14984] = 3, + [17138] = 5, + ACTIONS(5020), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4911), 25, + ACTIONS(5022), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4451), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487261,7 +500391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4913), 33, + ACTIONS(4453), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487279,11 +500409,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, @@ -487295,18 +500420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15051] = 5, - ACTIONS(8104), 1, - sym__quest, - STATE(4714), 1, - aux_sym_nullable_type_repeat1, + [17209] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4165), 25, + ACTIONS(1808), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487315,6 +500435,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, @@ -487329,16 +500450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4167), 31, - sym__automatic_semicolon, + ACTIONS(1810), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487361,11 +500484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15122] = 3, + [17276] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4983), 25, + ACTIONS(3286), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487391,7 +500514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4985), 33, + ACTIONS(3290), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487425,22 +500548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15189] = 8, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8106), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5160), 1, - sym_function_body, + [17343] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(3160), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487449,6 +500563,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, @@ -487463,15 +500578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 30, - sym__automatic_semicolon, + ACTIONS(3162), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487494,11 +500612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15266] = 3, + [17410] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4971), 25, + ACTIONS(4028), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487524,7 +500642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4973), 33, + ACTIONS(4030), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487558,24 +500676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15333] = 3, + [17477] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4314), 27, + ACTIONS(5219), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487590,16 +500706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4316), 31, - sym__automatic_semicolon, + ACTIONS(5221), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487622,11 +500740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15400] = 3, + [17544] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4701), 25, + ACTIONS(4850), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487652,7 +500770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4703), 33, + ACTIONS(4852), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487686,11 +500804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15467] = 3, + [17611] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1780), 25, + ACTIONS(4295), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487716,7 +500834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1782), 33, + ACTIONS(4297), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487750,21 +500868,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15534] = 5, - ACTIONS(8108), 1, - sym__quest, - STATE(4818), 1, - aux_sym_nullable_type_repeat1, + [17678] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8285), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 25, + ACTIONS(4321), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -487784,12 +500906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4280), 31, + ACTIONS(4323), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -487816,11 +500937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15605] = 3, + [17755] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 25, + ACTIONS(4000), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487846,7 +500967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 33, + ACTIONS(4002), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487880,24 +501001,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15672] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, + [17822] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, - STATE(4940), 1, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5950), 1, + anon_sym_COLON, + STATE(4981), 1, sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 23, + ACTIONS(3286), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -487905,7 +501025,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, @@ -487920,13 +501039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, + ACTIONS(3290), 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, @@ -487950,22 +501070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15751] = 8, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8110), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5150), 1, - sym_function_body, + [17899] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 23, + ACTIONS(4898), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487974,6 +501085,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, @@ -487988,15 +501100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 30, - sym__automatic_semicolon, + ACTIONS(4900), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -488019,11 +501134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15828] = 3, + [17966] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4967), 25, + ACTIONS(5117), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488049,7 +501164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4969), 33, + ACTIONS(5119), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488083,11 +501198,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15895] = 3, + [18033] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8287), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 25, + ACTIONS(4216), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4218), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18110] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5121), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488113,7 +501297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 33, + ACTIONS(5123), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488147,22 +501331,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15962] = 3, + [18177] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8289), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5116), 25, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488177,18 +501369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5118), 33, + ACTIONS(4218), 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, @@ -488211,11 +501400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16029] = 3, + [18254] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4915), 25, + ACTIONS(4481), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488241,7 +501430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4917), 33, + ACTIONS(4483), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488275,11 +501464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16096] = 3, + [18321] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4893), 25, + ACTIONS(4778), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488305,7 +501494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4895), 33, + ACTIONS(4780), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488339,11 +501528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16163] = 3, + [18388] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 25, + ACTIONS(4321), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488369,7 +501558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 33, + ACTIONS(4323), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488403,13 +501592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16230] = 4, - ACTIONS(8089), 1, - anon_sym_else, + [18455] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 24, + ACTIONS(5187), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488421,6 +501608,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, @@ -488434,7 +501622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 33, + ACTIONS(5189), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488468,23 +501656,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16299] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, + [18522] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5573), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8291), 1, anon_sym_COLON, - STATE(4967), 1, + STATE(5091), 1, + sym__block, + STATE(5219), 1, sym_type_constraints, - STATE(5089), 1, - sym_enum_class_body, + STATE(5220), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 23, + ACTIONS(4183), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -488506,14 +501697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 30, + ACTIONS(4185), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -488537,11 +501727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16376] = 3, + [18603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4837), 25, + ACTIONS(4782), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488567,7 +501757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4839), 33, + ACTIONS(4784), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488601,11 +501791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16443] = 3, + [18670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4394), 25, + ACTIONS(4786), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488631,7 +501821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4396), 33, + ACTIONS(4788), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488665,22 +501855,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16510] = 3, + [18737] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(5946), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5128), 25, + ACTIONS(3278), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488695,18 +501893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5130), 33, + ACTIONS(3282), 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, @@ -488729,11 +501924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16577] = 3, + [18814] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1582), 25, + ACTIONS(4505), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488759,7 +501954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1580), 33, + ACTIONS(4507), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488793,11 +501988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16644] = 3, + [18881] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4833), 25, + ACTIONS(4094), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488823,7 +502018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4835), 33, + ACTIONS(4096), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488857,24 +502052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16711] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, + [18948] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, - STATE(4931), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5924), 1, + anon_sym_COLON, + STATE(4659), 1, sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 23, + ACTIONS(3278), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -488897,7 +502091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 29, + ACTIONS(3282), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488927,11 +502121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16790] = 3, + [19025] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4885), 25, + ACTIONS(4790), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488957,7 +502151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4887), 33, + ACTIONS(4792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488991,16 +502185,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16857] = 3, + [19092] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(5926), 1, + anon_sym_COLON, + STATE(4621), 1, + sym_type_constraints, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 25, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -489021,18 +502224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 33, + ACTIONS(3282), 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, @@ -489055,11 +502254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16924] = 3, + [19169] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 25, + ACTIONS(3344), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489085,7 +502284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5047), 33, + ACTIONS(3346), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489119,22 +502318,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16991] = 3, + [19236] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5938), 1, + anon_sym_COLON, + STATE(5049), 1, + sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4919), 25, + ACTIONS(3278), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489149,18 +502356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4921), 33, + ACTIONS(3282), 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, @@ -489183,22 +502387,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17058] = 3, + [19313] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8293), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5108), 25, + ACTIONS(4327), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489213,18 +502425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5110), 33, + ACTIONS(4329), 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, @@ -489247,11 +502456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17125] = 3, + [19390] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4881), 25, + ACTIONS(5095), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489277,7 +502486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4883), 33, + ACTIONS(5097), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489311,23 +502520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17192] = 5, - ACTIONS(4817), 1, - anon_sym_EQ, + [19457] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8295), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4819), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4394), 24, + ACTIONS(4216), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -489348,24 +502559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4396), 28, + ACTIONS(4218), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -489377,11 +502589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17263] = 3, + [19534] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4807), 25, + ACTIONS(4794), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489407,7 +502619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4809), 33, + ACTIONS(4796), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489441,16 +502653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17330] = 3, + [19601] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8297), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4897), 25, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -489471,18 +502692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4899), 33, + ACTIONS(4218), 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, @@ -489505,11 +502722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17397] = 3, + [19678] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 25, + ACTIONS(4846), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489535,7 +502752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4431), 33, + ACTIONS(4848), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489569,13 +502786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17464] = 3, + [19745] = 8, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5163), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5112), 25, + ACTIONS(4275), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -489584,7 +502810,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, @@ -489599,18 +502824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5114), 33, + ACTIONS(4277), 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, @@ -489633,13 +502855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17531] = 3, + [19822] = 5, + ACTIONS(8301), 1, + sym__quest, + STATE(4708), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 25, + ACTIONS(4247), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -489648,7 +502875,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, @@ -489663,18 +502889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 33, + ACTIONS(4249), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -489697,13 +502921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17598] = 3, + [19893] = 8, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8303), 1, + anon_sym_COLON, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4025), 25, + ACTIONS(4307), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -489712,7 +502945,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, @@ -489727,18 +502959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4027), 33, + ACTIONS(4309), 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, @@ -489761,21 +502990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17665] = 8, - ACTIONS(5204), 1, + [19970] = 8, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(5680), 1, + ACTIONS(5936), 1, anon_sym_COLON, - STATE(4589), 1, + STATE(5030), 1, sym_type_constraints, - STATE(4695), 1, + STATE(5175), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 24, + ACTIONS(3270), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489785,7 +503014,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, @@ -489800,13 +503028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 29, + ACTIONS(3274), 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, @@ -489830,11 +503059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17742] = 3, + [20047] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4721), 25, + ACTIONS(4463), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489860,7 +503089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4723), 33, + ACTIONS(4465), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489894,11 +503123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17809] = 3, + [20114] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4825), 25, + ACTIONS(5099), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489924,7 +503153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4827), 33, + ACTIONS(5101), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489958,11 +503187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17876] = 3, + [20181] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 25, + ACTIONS(4966), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489988,7 +503217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4957), 33, + ACTIONS(4968), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490022,11 +503251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17943] = 3, + [20248] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4821), 25, + ACTIONS(3270), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490052,7 +503281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4823), 33, + ACTIONS(3274), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490086,11 +503315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18010] = 3, + [20315] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5037), 25, + ACTIONS(4443), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490116,7 +503345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5039), 33, + ACTIONS(4445), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490150,22 +503379,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18077] = 3, + [20382] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8305), 1, + anon_sym_COLON, + STATE(5071), 1, + sym_type_constraints, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4813), 25, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490180,18 +503420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4815), 33, + ACTIONS(4139), 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, @@ -490214,22 +503450,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18144] = 3, + [20463] = 4, + ACTIONS(8307), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4237), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490244,18 +503483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 33, + ACTIONS(4239), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -490278,13 +503515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18211] = 3, + [20532] = 5, + ACTIONS(8271), 1, + sym__quest, + STATE(4806), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4857), 25, + ACTIONS(4303), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -490293,7 +503535,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, @@ -490308,18 +503549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4859), 33, + ACTIONS(4305), 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, @@ -490342,11 +503581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18278] = 3, + [20603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5138), 25, + ACTIONS(3113), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490372,7 +503611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5140), 33, + ACTIONS(3115), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490406,11 +503645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18345] = 3, + [20670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4558), 25, + ACTIONS(4798), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490436,7 +503675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4560), 33, + ACTIONS(4800), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490470,11 +503709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18412] = 3, + [20737] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 25, + ACTIONS(5205), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490500,7 +503739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4017), 33, + ACTIONS(5207), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490534,11 +503773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18479] = 3, + [20804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 25, + ACTIONS(4804), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490564,7 +503803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 33, + ACTIONS(4806), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490598,80 +503837,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18546] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8112), 1, - anon_sym_COLON, - STATE(4915), 1, - sym_type_constraints, - STATE(5015), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4272), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4274), 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, - [18623] = 3, + [20871] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5012), 1, + sym_type_constraints, + STATE(5370), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4301), 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(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, + [20950] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 25, + ACTIONS(4812), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490697,7 +503937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 33, + ACTIONS(4814), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490731,30 +503971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18690] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5581), 1, - anon_sym_COLON, - STATE(4973), 1, - sym_type_constraints, - STATE(5046), 1, - sym_enum_class_body, + [21017] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 23, + ACTIONS(5125), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490769,15 +504001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 30, - sym__automatic_semicolon, + ACTIONS(5127), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -490800,22 +504035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18767] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(6954), 1, - anon_sym_LPAREN, + [21084] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4292), 24, + ACTIONS(4299), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -490839,13 +504065,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 27, + ACTIONS(4301), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -490856,6 +504083,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, @@ -490867,11 +504099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18840] = 3, + [21151] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5066), 25, + ACTIONS(4567), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490897,7 +504129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5068), 33, + ACTIONS(4569), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490931,16 +504163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18907] = 3, + [21218] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5942), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 25, + ACTIONS(3286), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -490961,18 +504202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 33, + ACTIONS(3290), 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, @@ -490995,24 +504232,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18974] = 3, + [21295] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4308), 27, + ACTIONS(3420), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -491027,16 +504262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4310), 31, - sym__automatic_semicolon, + ACTIONS(3422), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -491059,21 +504296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19041] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, + [21362] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8114), 1, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8309), 1, anon_sym_COLON, - STATE(4592), 1, + STATE(4634), 1, sym_type_constraints, - STATE(4808), 1, - sym_class_body, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 24, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491098,7 +504335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 29, + ACTIONS(4323), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491128,30 +504365,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19118] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8116), 1, - anon_sym_COLON, - STATE(4975), 1, - sym_type_constraints, - STATE(5058), 1, - sym_class_body, + [21439] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 23, + ACTIONS(4834), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -491166,15 +504395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 30, - sym__automatic_semicolon, + ACTIONS(4836), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -491197,13 +504429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19195] = 3, + [21506] = 5, + ACTIONS(4812), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4979), 25, + ACTIONS(4814), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4477), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -491227,7 +504466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4981), 33, + ACTIONS(4479), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491245,11 +504484,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, @@ -491261,30 +504495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19262] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8118), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_type_constraints, - STATE(5058), 1, - sym_enum_class_body, + [21577] = 4, + ACTIONS(8311), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 23, + ACTIONS(4267), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -491299,15 +504527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 30, - sym__automatic_semicolon, + ACTIONS(4265), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -491330,11 +504560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19339] = 3, + [21646] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5070), 25, + ACTIONS(1584), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491360,7 +504590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5072), 33, + ACTIONS(1582), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491394,30 +504624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19406] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(5577), 1, - anon_sym_COLON, - STATE(4914), 1, - sym_type_constraints, - STATE(5089), 1, - sym_class_body, + [21713] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 23, + ACTIONS(5085), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -491432,15 +504654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 30, - 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, @@ -491463,11 +504688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19483] = 3, + [21780] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 25, + ACTIONS(5039), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491493,7 +504718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 33, + ACTIONS(5041), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491527,82 +504752,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19550] = 10, - ACTIONS(5449), 1, + [21847] = 9, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8120), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5110), 1, - sym_function_body, - STATE(5111), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5054), 1, sym_type_constraints, + STATE(5404), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4162), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4160), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4124), 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, - [19631] = 3, + [21926] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 25, + ACTIONS(4838), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491628,7 +504852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4867), 33, + ACTIONS(4840), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491662,30 +504886,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19698] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8122), 1, - anon_sym_COLON, - STATE(4956), 1, - sym_type_constraints, - STATE(5094), 1, - sym_class_body, + [21993] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 23, + ACTIONS(4922), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -491700,15 +504916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 30, - sym__automatic_semicolon, + ACTIONS(4924), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -491731,11 +504950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19775] = 3, + [22060] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5074), 25, + ACTIONS(4974), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491761,7 +504980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5076), 33, + ACTIONS(4976), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491795,11 +505014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19842] = 3, + [22127] = 4, + ACTIONS(6494), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 25, + ACTIONS(4281), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491825,14 +505046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 33, + ACTIONS(4284), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -491859,13 +505079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19909] = 3, + [22196] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(6980), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4927), 25, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 24, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -491889,14 +505118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4929), 33, + ACTIONS(4284), 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, @@ -491907,11 +505135,73 @@ 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, + [22269] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(6976), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + ACTIONS(4259), 24, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_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), 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, @@ -491923,11 +505213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19976] = 3, + [22342] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3016), 25, + ACTIONS(1814), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491953,7 +505243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3018), 33, + ACTIONS(1816), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491987,11 +505277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20043] = 3, + [22409] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 25, + ACTIONS(4722), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492017,7 +505307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1698), 33, + ACTIONS(4724), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492051,89 +505341,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20110] = 3, + [22476] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4660), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4662), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4314), 33, - anon_sym_by, + [22543] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4430), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [20177] = 8, - ACTIONS(5200), 1, + ACTIONS(4432), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5519), 1, - anon_sym_COLON, - STATE(4607), 1, - sym_type_constraints, - STATE(4822), 1, - sym_enum_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, + [22610] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(4467), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -492154,14 +505499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 29, + ACTIONS(4469), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492184,22 +505533,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20254] = 3, + [22677] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5018), 1, + sym_type_constraints, + STATE(5386), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 25, + ACTIONS(4297), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -492209,17 +505565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4101), 33, - anon_sym_by, - anon_sym_where, + ACTIONS(4295), 30, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -492248,31 +505603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [20321] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(5674), 1, - anon_sym_COLON, - STATE(4599), 1, - sym_type_constraints, - STATE(4822), 1, - sym_class_body, + [22756] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(4335), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -492287,13 +505635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 29, + ACTIONS(4337), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -492317,25 +505667,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20398] = 10, - ACTIONS(5449), 1, + [22823] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8200), 1, anon_sym_EQ, - ACTIONS(8124), 1, - anon_sym_COLON, - STATE(5073), 1, + STATE(4699), 1, sym_function_body, - STATE(5074), 1, - sym_type_constraints, - STATE(5099), 1, + STATE(4800), 1, sym__block, + STATE(5023), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 22, + ACTIONS(4299), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -492344,6 +505692,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, @@ -492358,13 +505707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 29, - sym__automatic_semicolon, + ACTIONS(4301), 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, @@ -492388,16 +505737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20479] = 3, + [22902] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, + STATE(5027), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4729), 25, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -492418,18 +505777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4731), 33, + ACTIONS(4297), 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, @@ -492452,30 +505807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20546] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(5539), 1, - anon_sym_COLON, - STATE(4959), 1, - sym_type_constraints, - STATE(5123), 1, - sym_class_body, + [22981] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 23, + ACTIONS(5209), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -492490,15 +505837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 30, - sym__automatic_semicolon, + ACTIONS(5211), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492521,75 +505871,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20623] = 3, + [23048] = 4, + ACTIONS(6490), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4310), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4259), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4262), 32, + 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4308), 33, - anon_sym_by, + [23117] = 6, + ACTIONS(5055), 1, + anon_sym_EQ, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5057), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5024), 24, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [20690] = 3, + ACTIONS(5026), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23190] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5104), 25, + ACTIONS(5145), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492615,7 +506033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5106), 33, + ACTIONS(5147), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492649,11 +506067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20757] = 3, + [23257] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4751), 25, + ACTIONS(5179), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492679,7 +506097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4753), 33, + ACTIONS(5181), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492713,11 +506131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20824] = 3, + [23324] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4410), 25, + ACTIONS(5213), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492743,7 +506161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4412), 33, + ACTIONS(5215), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492777,22 +506195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20891] = 3, + [23391] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 25, + ACTIONS(4166), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -492807,18 +506227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4871), 33, + ACTIONS(4168), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492841,23 +506259,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20958] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, + [23458] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8126), 1, - anon_sym_COLON, - STATE(4638), 1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5028), 1, sym_type_constraints, - STATE(4655), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -492880,7 +506299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 29, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492910,11 +506329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21035] = 3, + [23537] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4935), 25, + ACTIONS(4477), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492940,7 +506359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4937), 33, + ACTIONS(4479), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492974,75 +506393,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21102] = 3, + [23604] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4842), 25, + anon_sym_as, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4171), 33, - anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_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, - [21169] = 3, + ACTIONS(4844), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 25, + ACTIONS(4451), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493068,7 +506487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 33, + ACTIONS(4453), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493102,24 +506521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21236] = 3, + [23738] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 27, + ACTIONS(5163), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493134,16 +506551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4103), 31, - sym__automatic_semicolon, + ACTIONS(5165), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -493166,11 +506585,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21303] = 3, + [23805] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5031), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4755), 25, + ACTIONS(4160), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4162), 29, + sym_safe_nav, + 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, + [23884] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4854), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493196,7 +506685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4757), 33, + ACTIONS(4856), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493230,11 +506719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21370] = 3, + [23951] = 4, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4995), 25, + ACTIONS(5024), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493260,7 +506751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4997), 33, + ACTIONS(5026), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493277,7 +506768,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, @@ -493294,30 +506784,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21437] = 8, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [24020] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8128), 1, - anon_sym_COLON, - STATE(5098), 1, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4757), 1, sym_function_body, - STATE(5099), 1, + STATE(4800), 1, sym__block, + STATE(5033), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 23, + ACTIONS(4147), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493332,14 +506824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 30, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -493363,11 +506854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21514] = 3, + [24099] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4580), 25, + ACTIONS(1802), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493393,7 +506884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4582), 33, + ACTIONS(1804), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493427,11 +506918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21581] = 3, + [24166] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1764), 25, + ACTIONS(3992), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493457,7 +506948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1766), 33, + ACTIONS(3994), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493491,23 +506982,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21648] = 8, - ACTIONS(5204), 1, + [24233] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8130), 1, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8316), 1, anon_sym_COLON, - STATE(4616), 1, + STATE(5091), 1, + sym__block, + STATE(5164), 1, sym_type_constraints, - STATE(4655), 1, - sym_class_body, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -493515,7 +507009,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, @@ -493530,13 +507023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 29, + ACTIONS(4149), 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, @@ -493560,25 +507053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21725] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5670), 1, - anon_sym_COLON, - STATE(4613), 1, - sym_type_constraints, - STATE(4723), 1, - sym_enum_class_body, + [24314] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 24, + ACTIONS(4870), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -493599,14 +507083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 29, + ACTIONS(4872), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -493629,11 +507117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21802] = 3, + [24381] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4759), 25, + ACTIONS(4147), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493659,7 +507147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4761), 33, + ACTIONS(4149), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493693,11 +507181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21869] = 3, + [24448] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4791), 25, + ACTIONS(4880), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493723,7 +507211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4793), 33, + ACTIONS(4882), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493757,25 +507245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21936] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(8132), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_type_constraints, - STATE(4814), 1, - sym_enum_class_body, + [24515] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 24, + ACTIONS(4888), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -493796,14 +507275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 29, + ACTIONS(4890), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -493826,33 +507309,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22013] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - ACTIONS(8134), 1, - anon_sym_COLON, - STATE(5024), 1, - sym_function_body, - STATE(5026), 1, - sym_type_constraints, - STATE(5099), 1, - sym__block, + [24582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 22, + ACTIONS(4910), 25, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493867,14 +507339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 29, - sym__automatic_semicolon, + ACTIONS(4912), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -493897,11 +507373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22094] = 3, + [24649] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4490), 25, + ACTIONS(4926), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493927,7 +507403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4492), 33, + ACTIONS(4928), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493961,11 +507437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22161] = 3, + [24716] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5120), 25, + ACTIONS(4930), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493991,7 +507467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5122), 33, + ACTIONS(4932), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494025,13 +507501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22228] = 4, - ACTIONS(8099), 1, - anon_sym_COLON_COLON, + [24783] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5057), 25, + ACTIONS(4934), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494057,7 +507531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 32, + ACTIONS(4936), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494074,6 +507548,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, @@ -494090,11 +507565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22297] = 3, + [24850] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4773), 25, + ACTIONS(4938), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494120,7 +507595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4775), 33, + ACTIONS(4940), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494154,13 +507629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22364] = 4, - ACTIONS(6423), 1, - anon_sym_LPAREN, + [24917] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4292), 25, + ACTIONS(4942), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494186,13 +507659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 32, + ACTIONS(4944), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -494219,13 +507693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22433] = 4, - ACTIONS(6372), 1, - anon_sym_LPAREN, + [24984] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4318), 25, + ACTIONS(4970), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494251,13 +507723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4321), 32, + ACTIONS(4972), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -494284,11 +507757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22502] = 3, + [25051] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4474), 25, + ACTIONS(4447), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494314,7 +507787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4476), 33, + ACTIONS(4449), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494348,11 +507821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22569] = 3, + [25118] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4901), 25, + ACTIONS(5051), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494378,7 +507851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4903), 33, + ACTIONS(5053), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494412,25 +507885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22636] = 4, - ACTIONS(4350), 1, - anon_sym_DASH_GT, + [25185] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4346), 26, + ACTIONS(5020), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -494445,16 +507915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4348), 31, - sym__automatic_semicolon, + ACTIONS(5022), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -494477,11 +507949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22705] = 3, + [25252] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5053), 25, + ACTIONS(5047), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494507,7 +507979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5055), 33, + ACTIONS(5049), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494541,18 +508013,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22772] = 5, - ACTIONS(8136), 1, - sym__quest, - STATE(4818), 1, - aux_sym_nullable_type_repeat1, + [25319] = 9, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4966), 1, + sym_type_constraints, + STATE(5406), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4225), 25, + ACTIONS(4185), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4183), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [25398] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5031), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -494561,6 +508098,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, @@ -494575,16 +508113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4227), 31, - sym__automatic_semicolon, + ACTIONS(5033), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -494607,11 +508147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22843] = 3, + [25465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4999), 25, + ACTIONS(5153), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494637,7 +508177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5001), 33, + ACTIONS(5155), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494671,11 +508211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22910] = 3, + [25532] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5132), 25, + ACTIONS(5139), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494701,7 +508241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5134), 33, + ACTIONS(5141), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494735,11 +508275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22977] = 3, + [25599] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4963), 25, + ACTIONS(5149), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494765,7 +508305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4965), 33, + ACTIONS(5151), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494799,11 +508339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23044] = 3, + [25666] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 25, + ACTIONS(5107), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494829,7 +508369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 33, + ACTIONS(5109), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494863,25 +508403,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23111] = 4, - ACTIONS(8139), 1, - anon_sym_AMP, + [25733] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 26, + ACTIONS(4355), 25, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -494896,16 +508433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4236), 31, - sym__automatic_semicolon, + ACTIONS(4357), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -494928,22 +508467,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23180] = 3, + [25800] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4829), 25, + ACTIONS(4317), 27, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -494958,18 +508499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4831), 33, + ACTIONS(4319), 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, @@ -494992,11 +508531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23247] = 3, + [25867] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5009), 25, + ACTIONS(5043), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495022,7 +508561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5011), 33, + ACTIONS(5045), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495056,22 +508595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23314] = 3, + [25934] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(4971), 1, + sym_type_constraints, + STATE(5171), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4504), 25, + ACTIONS(4355), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495086,18 +508631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4506), 33, + ACTIONS(4357), 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, @@ -495120,22 +508662,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23381] = 3, + [26008] = 8, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8318), 1, + anon_sym_COLON, + STATE(5293), 1, + sym_type_constraints, + STATE(5415), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4323), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4321), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [26084] = 7, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4747), 25, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495150,18 +508766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4749), 33, + ACTIONS(4218), 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, @@ -495184,22 +508797,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23448] = 3, + [26158] = 5, + ACTIONS(8320), 1, + anon_sym_DOT, + STATE(4641), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4951), 25, + ACTIONS(4193), 24, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495214,18 +508830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4953), 33, + ACTIONS(4195), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495248,22 +508862,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23515] = 3, + [26228] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6032), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4947), 25, + ACTIONS(3278), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495278,18 +508900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4949), 33, + ACTIONS(3282), 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, @@ -495312,21 +508930,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23582] = 5, - ACTIONS(8104), 1, - sym__quest, - STATE(4714), 1, - aux_sym_nullable_type_repeat1, + [26304] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5164), 1, + sym_type_constraints, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 25, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -495346,15 +508969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 31, + ACTIONS(4149), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -495378,22 +508999,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23653] = 3, + [26382] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4943), 25, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495408,18 +509035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4945), 33, + ACTIONS(4218), 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, @@ -495442,22 +509066,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23720] = 3, + [26456] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8323), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 25, + ACTIONS(4216), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495472,18 +509104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 33, + ACTIONS(4218), 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, @@ -495506,25 +509134,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23787] = 4, - ACTIONS(8141), 1, - anon_sym_AMP, + [26532] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8325), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 26, + ACTIONS(4275), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495539,15 +509172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4236), 31, - sym__automatic_semicolon, + ACTIONS(4277), 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, @@ -495571,22 +509202,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23856] = 3, + [26608] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6056), 1, + anon_sym_COLON, + STATE(4981), 1, + sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 25, + ACTIONS(3286), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495601,18 +509240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(201), 33, + ACTIONS(3290), 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, @@ -495635,20 +509270,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23923] = 3, + [26684] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8327), 1, + anon_sym_COLON, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5250), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4795), 25, + ACTIONS(4147), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -495658,24 +509304,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4797), 33, + ACTIONS(4149), 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, @@ -495683,41 +509328,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23990] = 5, - ACTIONS(8143), 1, - anon_sym_by, - STATE(5013), 1, - sym_value_arguments, + [26764] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8331), 1, + anon_sym_COLON, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 24, + ACTIONS(4307), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495732,15 +509378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 31, - sym__automatic_semicolon, + ACTIONS(4309), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -495764,90 +509408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24060] = 5, - ACTIONS(8145), 1, - sym__quest, - STATE(4891), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4167), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4165), 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, - [24130] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(5853), 1, - anon_sym_COLON, - STATE(4959), 1, - sym_type_constraints, - STATE(5123), 1, - sym_class_body, + [26840] = 5, + ACTIONS(8333), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8335), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 23, + ACTIONS(4455), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -495867,13 +509441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 29, + ACTIONS(4457), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -495897,19 +509473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24206] = 7, - ACTIONS(5445), 1, + [26910] = 7, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, + ACTIONS(5776), 1, anon_sym_where, - STATE(4974), 1, + STATE(4999), 1, sym_type_constraints, - STATE(4993), 1, + STATE(5231), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 23, + ACTIONS(4321), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495933,7 +509509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4431), 30, + ACTIONS(4323), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495964,28 +509540,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24280] = 7, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(4909), 1, - sym_type_constraints, - STATE(5039), 1, - sym_class_body, + [26984] = 5, + ACTIONS(8337), 1, + anon_sym_COMMA, + STATE(4648), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 23, + ACTIONS(4736), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496000,14 +509574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 30, - sym__automatic_semicolon, + ACTIONS(4738), 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, @@ -496031,28 +509605,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24354] = 7, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - STATE(4915), 1, - sym_type_constraints, - STATE(5015), 1, - sym_enum_class_body, + [27054] = 5, + ACTIONS(8337), 1, + anon_sym_COMMA, + STATE(4908), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 23, + ACTIONS(4684), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496067,14 +509639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 30, - sym__automatic_semicolon, + ACTIONS(4686), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -496098,23 +509670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24428] = 9, - ACTIONS(5449), 1, + [27124] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(4995), 1, + STATE(5073), 1, sym_function_body, - STATE(4997), 1, - sym_type_constraints, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5179), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 22, + ACTIONS(4299), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -496137,7 +509709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 29, + ACTIONS(4301), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496167,21 +509739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24506] = 8, - ACTIONS(5445), 1, + [27202] = 7, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8147), 1, - anon_sym_COLON, - STATE(4915), 1, + STATE(5009), 1, sym_type_constraints, - STATE(5015), 1, + STATE(5192), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 23, + ACTIONS(4481), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -496205,13 +509775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 29, + ACTIONS(4483), 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, @@ -496235,11 +509806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24582] = 3, + [27276] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8339), 1, + anon_sym_COLON, + STATE(5172), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4394), 26, + ACTIONS(4497), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -496251,8 +509828,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, @@ -496266,12 +509841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4396), 31, + ACTIONS(4499), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -496298,19 +509872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24648] = 7, - ACTIONS(8041), 1, + [27348] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - ACTIONS(8043), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(5073), 1, + STATE(5076), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 23, + ACTIONS(4307), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -496334,7 +509908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 30, + ACTIONS(4309), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496365,23 +509939,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24722] = 7, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, + [27422] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4932), 1, - sym_type_constraints, - STATE(5061), 1, - sym_class_body, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4490), 23, + ACTIONS(4443), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -496401,7 +509975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4492), 30, + ACTIONS(4445), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496432,33 +510006,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24796] = 10, - ACTIONS(5204), 1, + [27496] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8149), 1, - anon_sym_COLON, - ACTIONS(8151), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(5091), 1, sym__block, - STATE(4776), 1, + STATE(5194), 1, sym_function_body, - STATE(5129), 1, + STATE(5196), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 21, + ACTIONS(4295), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496466,56 +510038,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 29, + ACTIONS(4297), 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, - [24876] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [27574] = 6, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + ACTIONS(8341), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 23, + ACTIONS(4349), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -496538,7 +510110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 30, + ACTIONS(4351), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496569,25 +510141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24950] = 8, - ACTIONS(5445), 1, + [27646] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8153), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_type_constraints, - STATE(5058), 1, - sym_enum_class_body, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 23, + ACTIONS(4447), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -496607,13 +510177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 29, + ACTIONS(4449), 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, @@ -496637,21 +510208,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25026] = 7, - ACTIONS(5445), 1, + [27720] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4206), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5449), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4204), 32, + anon_sym_by, anon_sym_where, - STATE(4949), 1, - sym_type_constraints, - STATE(5006), 1, - sym_enum_class_body, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [27786] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + ACTIONS(8343), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 23, + ACTIONS(4229), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -496659,6 +510294,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, @@ -496673,14 +510309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, - sym__automatic_semicolon, + ACTIONS(4231), 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, @@ -496704,91 +510339,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25100] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - ACTIONS(8155), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4733), 1, - sym_function_body, - STATE(5103), 1, - sym_type_constraints, + [27862] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 21, + ACTIONS(4451), 26, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 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, - [25180] = 8, - ACTIONS(5445), 1, + [27928] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4708), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5449), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4706), 32, + anon_sym_by, anon_sym_where, - ACTIONS(5779), 1, - anon_sym_COLON, - STATE(4967), 1, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [27994] = 7, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + STATE(5008), 1, sym_type_constraints, - STATE(5089), 1, + STATE(5210), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 23, + ACTIONS(4467), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -496812,13 +510501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 29, + ACTIONS(4469), 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, @@ -496842,23 +510532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25256] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [28068] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + STATE(5007), 1, + sym_type_constraints, + STATE(5225), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 23, + ACTIONS(4359), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -496878,7 +510568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 30, + ACTIONS(4361), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496909,13 +510599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25330] = 4, - ACTIONS(8157), 1, - anon_sym_AMP, + [28142] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 24, + ACTIONS(4698), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -496925,7 +510613,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, @@ -496935,12 +510622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4234), 32, + ACTIONS(4696), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -496973,23 +510662,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [25398] = 7, - ACTIONS(8041), 1, + [28208] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4676), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(8043), 1, anon_sym_LBRACE, - STATE(5099), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4674), 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, + [28274] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, sym__block, - STATE(5147), 1, + STATE(5219), 1, + sym_type_constraints, + STATE(5220), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 23, + ACTIONS(4183), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -497009,14 +510764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 30, + ACTIONS(4185), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -497040,24 +510794,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25472] = 9, - ACTIONS(5449), 1, + [28352] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8329), 1, anon_sym_EQ, - STATE(4991), 1, - sym_type_constraints, - STATE(4992), 1, + ACTIONS(8345), 1, + anon_sym_COLON, + STATE(4711), 1, sym_function_body, - STATE(5099), 1, + STATE(4800), 1, sym__block, + STATE(5080), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4175), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28432] = 7, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + STATE(5003), 1, + sym_type_constraints, + STATE(5225), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 22, + ACTIONS(4359), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -497079,13 +510900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 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, @@ -497109,19 +510931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25550] = 7, - ACTIONS(8041), 1, + [28506] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - ACTIONS(8043), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 23, + ACTIONS(4439), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -497145,7 +510967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 30, + ACTIONS(4441), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -497176,23 +510998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25624] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [28580] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(4995), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8347), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 23, + ACTIONS(4321), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -497212,14 +511036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 30, + ACTIONS(4323), 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, @@ -497243,25 +511066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25698] = 10, - ACTIONS(5799), 1, + [28656] = 8, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(8159), 1, - anon_sym_COLON, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + ACTIONS(5780), 1, anon_sym_LBRACE, - STATE(5185), 1, + ACTIONS(6060), 1, + anon_sym_COLON, + STATE(5270), 1, sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5413), 1, - sym_function_body, + STATE(5316), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 20, + ACTIONS(3274), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497277,12 +511096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4122), 30, + ACTIONS(3270), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497313,26 +511134,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [25778] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, + [28732] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - STATE(5024), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5073), 1, sym_function_body, - STATE(5026), 1, - sym_type_constraints, - STATE(5099), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 22, + ACTIONS(4299), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -497352,13 +511170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 29, + ACTIONS(4301), 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, @@ -497382,23 +511201,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25856] = 7, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, + [28806] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(4956), 1, - sym_type_constraints, - STATE(5094), 1, - sym_class_body, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 23, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -497418,7 +511237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 30, + ACTIONS(4297), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -497449,33 +511268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25930] = 10, - ACTIONS(5204), 1, + [28880] = 8, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - ACTIONS(8165), 1, + ACTIONS(5992), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, - STATE(5154), 1, + STATE(5030), 1, sym_type_constraints, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 21, + ACTIONS(3270), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -497483,67 +511299,250 @@ 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(4090), 29, + ACTIONS(3274), 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, - [26010] = 8, - ACTIONS(5449), 1, + [28956] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4573), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4571), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [29022] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4681), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4678), 32, + anon_sym_by, anon_sym_where, - ACTIONS(5456), 1, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [29088] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4730), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_COLON, - STATE(4956), 1, - sym_type_constraints, - STATE(5094), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4728), 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, + [29154] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 23, + ACTIONS(4485), 26, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -497557,13 +511556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 29, + ACTIONS(4487), 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, @@ -497587,20 +511588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26086] = 5, - ACTIONS(8028), 1, - anon_sym_DOT, - STATE(4581), 1, - aux_sym_user_type_repeat1, + [29220] = 5, + ACTIONS(7123), 1, + anon_sym_by, + STATE(5119), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 23, + ACTIONS(4507), 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, @@ -497614,13 +511614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4140), 32, - anon_sym_by, + ACTIONS(4505), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -497652,33 +511653,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [26156] = 10, - ACTIONS(5204), 1, + [29290] = 8, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(6036), 1, + anon_sym_COLON, + STATE(5314), 1, + sym_type_constraints, + STATE(5353), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3290), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3286), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [29366] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - ACTIONS(8169), 1, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5956), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, - STATE(5157), 1, + STATE(5049), 1, sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 21, + ACTIONS(3278), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -497686,59 +511752,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, + ACTIONS(3282), 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, - [26236] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [29442] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(4999), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + ACTIONS(8349), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 23, + ACTIONS(4327), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -497750,59 +511819,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_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, + 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, + [29518] = 8, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(8351), 1, + anon_sym_COLON, + STATE(5315), 1, + sym_type_constraints, + STATE(5358), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4514), 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, - [26310] = 5, - ACTIONS(8171), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8173), 1, - anon_sym_L, + [29594] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(4998), 1, + sym_type_constraints, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4458), 24, + ACTIONS(4463), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -497822,12 +511961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4460), 31, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -497854,13 +511992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26380] = 4, - ACTIONS(4350), 1, - anon_sym_DASH_GT, + [29668] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4348), 24, + ACTIONS(4765), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497870,7 +512006,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, @@ -497880,12 +512015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4346), 32, + ACTIONS(4762), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -497918,31 +512055,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [26448] = 10, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - ACTIONS(8175), 1, - anon_sym_COLON, - STATE(5180), 1, - sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5363), 1, - sym_function_body, + [29734] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4118), 20, + ACTIONS(4672), 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, @@ -497952,12 +512078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4116), 30, + ACTIONS(4670), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497988,30 +512118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [26528] = 8, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, + [29800] = 7, + ACTIONS(8221), 1, anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_COLON, - STATE(4728), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, sym__block, - STATE(4795), 1, + STATE(5220), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 23, + ACTIONS(4183), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -498026,13 +512154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 29, + ACTIONS(4185), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -498056,21 +512185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26604] = 7, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, + [29874] = 9, + ACTIONS(5776), 1, anon_sym_where, - STATE(4962), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5243), 1, sym_type_constraints, - STATE(5039), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 23, + ACTIONS(4160), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -498092,14 +512224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 30, + ACTIONS(4162), 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, @@ -498123,31 +512254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26678] = 8, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - ACTIONS(8179), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4743), 1, - sym_function_body, + [29952] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 23, + ACTIONS(4345), 26, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -498161,13 +512285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, + ACTIONS(4347), 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, @@ -498191,23 +512317,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26754] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [30018] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(4983), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8353), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 23, + ACTIONS(4216), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -498227,14 +512355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 30, + ACTIONS(4218), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -498258,20 +512385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26828] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(5099), 1, - sym__block, - STATE(5165), 1, - sym_function_body, + [30094] = 5, + ACTIONS(8355), 1, + anon_sym_by, + STATE(5127), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 23, + ACTIONS(4505), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -498294,11 +512418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 30, + ACTIONS(4507), 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, @@ -498325,22 +512450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26902] = 6, - ACTIONS(5456), 1, + [30164] = 7, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8181), 1, - anon_sym_COLON, - STATE(5132), 1, - sym_class_body, + ACTIONS(5776), 1, + anon_sym_where, + STATE(4995), 1, + sym_type_constraints, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4520), 24, + ACTIONS(4463), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -498360,7 +512486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4522), 30, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -498391,23 +512517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26974] = 7, - ACTIONS(5445), 1, + [30238] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - STATE(4980), 1, - sym_type_constraints, - STATE(4986), 1, - sym_enum_class_body, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4474), 23, + ACTIONS(4137), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -498427,7 +512553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4476), 30, + ACTIONS(4139), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -498458,25 +512584,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27048] = 10, - ACTIONS(5204), 1, + [30312] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8183), 1, + ACTIONS(8357), 1, anon_sym_COLON, - STATE(4693), 1, + STATE(4775), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(5148), 1, + STATE(5237), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 21, + ACTIONS(4183), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -498498,7 +512624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 29, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498528,19 +512654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27128] = 7, - ACTIONS(5449), 1, + [30392] = 7, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5456), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(4965), 1, + STATE(4993), 1, sym_type_constraints, - STATE(5041), 1, + STATE(5253), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 23, + ACTIONS(4493), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -498564,7 +512690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4510), 30, + ACTIONS(4495), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -498595,25 +512721,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27202] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, + [30466] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5801), 1, - anon_sym_COLON, - STATE(4914), 1, - sym_type_constraints, - STATE(5089), 1, - sym_class_body, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 23, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -498633,13 +512757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 29, + ACTIONS(4162), 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, @@ -498663,24 +512788,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27278] = 5, - ACTIONS(8185), 1, - anon_sym_COMMA, - STATE(4614), 1, - aux_sym__delegation_specifiers_repeat1, + [30540] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8359), 1, + anon_sym_COLON, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5188), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 25, + ACTIONS(4160), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -498690,61 +512822,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(4536), 30, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27348] = 7, - ACTIONS(8041), 1, - anon_sym_EQ, - ACTIONS(8043), 1, + [30620] = 7, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5099), 1, - sym__block, - STATE(5150), 1, - sym_function_body, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 23, + ACTIONS(4327), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -498764,7 +512894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 30, + ACTIONS(4329), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -498795,89 +512925,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27422] = 4, - ACTIONS(8187), 1, - anon_sym_AMP, + [30694] = 7, + ACTIONS(8221), 1, + anon_sym_EQ, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4234), 32, - anon_sym_by, + ACTIONS(4147), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_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, - [27490] = 10, - ACTIONS(5799), 1, + ACTIONS(4149), 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, + [30768] = 8, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8189), 1, + ACTIONS(8361), 1, anon_sym_COLON, - STATE(5214), 1, + STATE(5298), 1, sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5456), 1, - sym_function_body, + STATE(5378), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4161), 20, + ACTIONS(4329), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -498893,12 +513022,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4159), 30, + ACTIONS(4327), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498929,25 +513060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27570] = 10, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [30844] = 8, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(8191), 1, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5954), 1, anon_sym_COLON, - STATE(5217), 1, + STATE(5271), 1, sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5419), 1, - sym_function_body, + STATE(5391), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4090), 20, + ACTIONS(3282), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -498963,12 +513090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4088), 30, + ACTIONS(3278), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498999,11 +513128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27650] = 3, + [30920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4504), 26, + ACTIONS(4477), 26, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -499030,7 +513159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4506), 31, + ACTIONS(4479), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -499062,31 +513191,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27716] = 9, - ACTIONS(5449), 1, + [30986] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8329), 1, anon_sym_EQ, - STATE(5053), 1, + ACTIONS(8363), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4871), 1, sym_function_body, - STATE(5054), 1, + STATE(5089), 1, sym_type_constraints, - STATE(5099), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 22, + ACTIONS(4137), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499094,328 +513225,197 @@ 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(4067), 29, - sym__automatic_semicolon, + ACTIONS(4139), 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, - [27794] = 7, - ACTIONS(5449), 1, + [31066] = 8, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(5456), 1, + ACTIONS(5780), 1, anon_sym_LBRACE, - STATE(4975), 1, + ACTIONS(5974), 1, + anon_sym_COLON, + STATE(5295), 1, sym_type_constraints, - STATE(5058), 1, + STATE(5391), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4250), 30, + ACTIONS(3282), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [27868] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(4984), 1, - sym_type_constraints, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4159), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3278), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_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(4161), 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, - [27946] = 6, - ACTIONS(5456), 1, + [31142] = 8, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(8365), 1, anon_sym_COLON, - STATE(5100), 1, - sym_class_body, + STATE(5300), 1, + sym_type_constraints, + STATE(5358), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4530), 30, + ACTIONS(4218), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_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, - [28018] = 5, - ACTIONS(8195), 1, - anon_sym_DOT, - STATE(4615), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4140), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4142), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [31218] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [28088] = 5, - ACTIONS(8198), 1, - sym__quest, - STATE(4901), 1, - aux_sym_nullable_type_repeat1, + STATE(5386), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4280), 23, + ACTIONS(4297), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -499425,14 +513425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4278), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4295), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -499463,83 +513463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [28158] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_COLON, - STATE(4975), 1, - sym_type_constraints, - STATE(5058), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4248), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4250), 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, - [28234] = 5, - ACTIONS(8145), 1, - sym__quest, - STATE(4891), 1, - aux_sym_nullable_type_repeat1, + [31291] = 5, + ACTIONS(8367), 1, + anon_sym_COMMA, + STATE(4973), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4223), 23, + ACTIONS(4426), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -499548,7 +513480,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, @@ -499558,14 +513489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4221), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4424), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -499596,23 +513527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [28304] = 7, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(4930), 1, - sym_type_constraints, - STATE(5006), 1, - sym_class_body, + [31360] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 23, + ACTIONS(4581), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -499632,11 +513557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, + ACTIONS(4583), 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, @@ -499663,11 +513589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28378] = 3, + [31425] = 4, + ACTIONS(8369), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4498), 26, + ACTIONS(4740), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -499679,8 +513607,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, @@ -499694,7 +513620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4500), 31, + ACTIONS(4742), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -499726,28 +513652,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28444] = 8, - ACTIONS(7961), 1, + [31492] = 8, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8202), 1, + ACTIONS(8371), 1, anon_sym_COLON, - STATE(4726), 1, + STATE(4763), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 23, + ACTIONS(4307), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -499757,48 +513683,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(4286), 29, + ACTIONS(4309), 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, - [28520] = 3, + [31567] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5253), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4494), 26, + ACTIONS(4493), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -499810,8 +513739,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, @@ -499825,12 +513752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4496), 31, + ACTIONS(4495), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -499857,25 +513783,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28586] = 8, - ACTIONS(5445), 1, + [31636] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5839), 1, - anon_sym_COLON, - STATE(4973), 1, - sym_type_constraints, - STATE(5046), 1, + STATE(5249), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 23, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -499895,78 +513816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 29, + ACTIONS(4465), 30, 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, - [28662] = 5, - ACTIONS(8185), 1, anon_sym_COMMA, - STATE(4880), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4576), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4578), 30, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -499990,85 +513847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28732] = 10, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - ACTIONS(8204), 1, - anon_sym_COLON, - STATE(5172), 1, - sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5402), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4067), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4065), 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, - [28812] = 5, - ACTIONS(8206), 1, - sym__quest, - STATE(4901), 1, - aux_sym_nullable_type_repeat1, + [31705] = 5, + ACTIONS(8373), 1, + anon_sym_COMMA, + STATE(4973), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 23, + ACTIONS(4432), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -500077,7 +513864,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, @@ -500087,14 +513873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4225), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4430), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -500125,211 +513911,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [28882] = 7, - ACTIONS(5445), 1, + [31774] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - STATE(4935), 1, - sym_type_constraints, - STATE(5058), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4248), 23, - anon_sym_as, + ACTIONS(8261), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4250), 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, - [28956] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4677), 25, + ACTIONS(8376), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4679), 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, - [29021] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4570), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4573), 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, - [29086] = 5, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(5046), 1, - sym_enum_class_body, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 24, + ACTIONS(4307), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -500349,14 +513948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 30, + ACTIONS(4309), 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, @@ -500380,27 +513978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29155] = 6, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8209), 1, - anon_sym_COLON, - STATE(4759), 1, - sym_class_body, + [31849] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 24, + ACTIONS(4204), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500415,13 +514008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4530), 29, + ACTIONS(4206), 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, @@ -500445,25 +514040,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29226] = 5, - ACTIONS(8211), 1, - anon_sym_COMMA, - STATE(4954), 1, - aux_sym__delegation_specifiers_repeat1, + [31914] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5237), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4576), 24, + ACTIONS(4183), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500471,52 +514072,118 @@ 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(4578), 30, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29295] = 3, + [31991] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5298), 1, + sym_type_constraints, + STATE(5378), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 25, + ACTIONS(4329), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4327), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [32064] = 4, + ACTIONS(8378), 1, + anon_sym_AT2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4710), 25, + anon_sym_AT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -500539,10 +514206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4597), 31, + ACTIONS(4712), 30, sym__automatic_semicolon, sym_safe_nav, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -500571,15 +514237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29360] = 5, - ACTIONS(5456), 1, + [32131] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5006), 1, + STATE(5249), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -500604,7 +514270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, + ACTIONS(4465), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -500635,12 +514301,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29429] = 3, + [32200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4689), 25, + ACTIONS(4583), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4581), 32, anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [32265] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5231), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -500665,12 +514396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4691), 31, + ACTIONS(4323), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -500697,15 +514427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29494] = 5, - ACTIONS(8213), 1, - anon_sym_COMMA, - STATE(4958), 1, - aux_sym_type_constraints_repeat1, + [32334] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 24, + ACTIONS(4577), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -500730,7 +514457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4435), 30, + ACTIONS(4579), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -500738,6 +514465,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, @@ -500761,88 +514489,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29563] = 9, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [32399] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(5172), 1, - sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5402), 1, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8380), 1, + anon_sym_COLON, + STATE(5090), 1, sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4067), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4065), 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, - [29640] = 5, - ACTIONS(8215), 1, - anon_sym_COMMA, - STATE(4913), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4410), 24, + ACTIONS(4229), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -500862,12 +514526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4412), 30, + ACTIONS(4231), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -500893,17 +514556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29709] = 5, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(5058), 1, - sym_class_body, + [32474] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4706), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -500926,11 +514586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 30, + ACTIONS(4708), 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, @@ -500957,17 +514618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29778] = 5, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(4986), 1, - sym_enum_class_body, + [32539] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4474), 24, + ACTIONS(4696), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -500990,11 +514648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4476), 30, + ACTIONS(4698), 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, @@ -501021,24 +514680,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29847] = 8, - ACTIONS(8043), 1, + [32604] = 5, + ACTIONS(8382), 1, + anon_sym_COMMA, + STATE(5014), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4738), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - ACTIONS(8218), 1, - anon_sym_COLON, - STATE(5098), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4736), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [32673] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 22, + ACTIONS(4674), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -501058,13 +514774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 29, + ACTIONS(4676), 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, @@ -501088,14 +514806,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29922] = 3, + [32738] = 5, + ACTIONS(8367), 1, + anon_sym_COMMA, + STATE(4967), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4341), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4339), 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, + [32807] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4538), 25, + ACTIONS(4758), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -501118,7 +514900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4540), 31, + ACTIONS(4760), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -501150,13 +514932,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29987] = 4, - ACTIONS(8220), 1, - anon_sym_L, + [32872] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5420), 1, + sym__block, + STATE(5421), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4139), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4137), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [32945] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4693), 24, + ACTIONS(4543), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -501181,7 +515028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4695), 31, + ACTIONS(4545), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -501213,29 +515060,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30054] = 8, - ACTIONS(8043), 1, + [33010] = 8, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8222), 1, + ACTIONS(8384), 1, anon_sym_COLON, - STATE(5099), 1, + STATE(4800), 1, sym__block, - STATE(5150), 1, + STATE(4813), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 22, + ACTIONS(4275), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501243,64 +515091,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 29, - sym__automatic_semicolon, + ACTIONS(4277), 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, - [30129] = 6, - ACTIONS(5210), 1, + [33085] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8224), 1, - anon_sym_COLON, - STATE(4660), 1, + STATE(5228), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4520), 24, + ACTIONS(4644), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501315,13 +515160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4522), 29, + ACTIONS(4646), 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, @@ -501345,24 +515191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30200] = 8, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - ACTIONS(8226), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5160), 1, - sym_function_body, + [33154] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 22, + ACTIONS(4585), 25, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -501382,13 +515221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 29, + ACTIONS(4587), 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, @@ -501412,15 +515253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30275] = 5, - ACTIONS(5456), 1, + [33219] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5075), 1, - sym_class_body, + STATE(5225), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4562), 24, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -501445,7 +515286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4564), 30, + ACTIONS(4361), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -501476,25 +515317,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30344] = 5, - ACTIONS(8228), 1, - anon_sym_COMMA, - STATE(4923), 1, - aux_sym__delegation_specifiers_repeat1, + [33288] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, + STATE(5190), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4580), 24, + ACTIONS(4295), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501502,50 +515349,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(4582), 30, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30413] = 3, + [33365] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4705), 25, + ACTIONS(4561), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4559), 32, anon_sym_COLON, + anon_sym_where, + anon_sym_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, + [33430] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5225), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4359), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -501570,12 +515480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4707), 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, @@ -501602,28 +515511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30478] = 7, - ACTIONS(7961), 1, + [33499] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, + STATE(5210), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 23, + ACTIONS(4467), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501638,13 +515544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 29, + ACTIONS(4469), 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, @@ -501668,13 +515575,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30551] = 4, - STATE(4923), 1, - aux_sym__delegation_specifiers_repeat1, + [33568] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5299), 1, + sym_type_constraints, + STATE(5388), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4357), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4355), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [33641] = 5, + ACTIONS(8386), 1, + anon_sym_COMMA, + STATE(5001), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 24, + ACTIONS(4430), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -501699,7 +515674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 31, + ACTIONS(4432), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -501707,7 +515682,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, @@ -501731,23 +515705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30618] = 9, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [33710] = 7, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(5217), 1, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5300), 1, sym_type_constraints, STATE(5358), 1, - sym__block, - STATE(5419), 1, - sym_function_body, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4090), 20, + ACTIONS(4218), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -501763,12 +515733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4088), 30, + ACTIONS(4216), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501799,27 +515771,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [30695] = 9, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [33783] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5214), 1, - sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5456), 1, - sym_function_body, + STATE(5199), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4652), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + 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(4654), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33852] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4161), 20, + ACTIONS(4545), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -501831,12 +515857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4159), 30, + ACTIONS(4543), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501867,31 +515897,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [30772] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(5148), 1, - sym_type_constraints, + [33917] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 21, + ACTIONS(4571), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501899,53 +515920,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(4067), 29, + ACTIONS(4573), 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, - [30849] = 5, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(4989), 1, - sym_class_body, + [33982] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4729), 24, + ACTIONS(4678), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -501968,11 +515989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4731), 30, + ACTIONS(4681), 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, @@ -501999,28 +516021,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30918] = 7, - ACTIONS(7961), 1, + [34047] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, + STATE(5199), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 23, + ACTIONS(4652), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502035,13 +516054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, + ACTIONS(4654), 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, @@ -502065,15 +516085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30991] = 5, - ACTIONS(5456), 1, + [34116] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5041), 1, - sym_class_body, + STATE(5192), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 24, + ACTIONS(4481), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -502098,7 +516118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4510), 30, + ACTIONS(4483), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502129,12 +516149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31060] = 3, + [34185] = 5, + ACTIONS(5770), 1, + anon_sym_LBRACE, + STATE(5181), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4725), 25, - anon_sym_COLON, + ACTIONS(4567), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -502159,12 +516182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4727), 31, + ACTIONS(4569), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -502191,25 +516213,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31125] = 5, - ACTIONS(5456), 1, + [34254] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5089), 1, - sym_class_body, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5173), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(4299), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502217,53 +516245,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(3198), 30, - sym__automatic_semicolon, + 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31194] = 5, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(5039), 1, - sym_enum_class_body, + [34331] = 5, + ACTIONS(8389), 1, + anon_sym_COMMA, + STATE(5035), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 24, + ACTIONS(4736), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -502288,14 +516314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 30, + ACTIONS(4738), 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, @@ -502319,14 +516345,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31263] = 3, + [34400] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5365), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4441), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4439), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34473] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4554), 25, + ACTIONS(4551), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -502349,7 +516441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4556), 31, + ACTIONS(4553), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502381,82 +516473,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31328] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, - STATE(5154), 1, - sym_type_constraints, + [34538] = 5, + ACTIONS(8391), 1, + anon_sym_COMMA, + STATE(5014), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4635), 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(4633), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_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(4090), 29, - sym_safe_nav, + [34607] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5346), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4149), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_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, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [31405] = 3, + ACTIONS(4147), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [34680] = 5, + ACTIONS(8394), 1, + anon_sym_COMMA, + STATE(5052), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4548), 25, + ACTIONS(4339), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -502479,7 +516636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4551), 31, + ACTIONS(4341), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502487,7 +516644,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, @@ -502511,28 +516667,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31470] = 7, - ACTIONS(7961), 1, + [34749] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4748), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8035), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4746), 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, + [34814] = 7, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(4664), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5370), 1, sym_function_body, - STATE(4728), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 23, + ACTIONS(4301), 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(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, + [34887] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5287), 1, + sym_type_constraints, + STATE(5381), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4483), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4481), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34960] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5262), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4547), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502547,13 +516894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 29, + ACTIONS(4549), 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, @@ -502577,19 +516925,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31543] = 7, - ACTIONS(7961), 1, + [35029] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5288), 1, + sym_type_constraints, + STATE(5399), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4469), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4467), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [35102] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5289), 1, + sym_type_constraints, + STATE(5410), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4361), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35175] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, + ACTIONS(8200), 1, anon_sym_EQ, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, + STATE(4838), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 23, + ACTIONS(4439), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -502613,7 +517093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 29, + ACTIONS(4441), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502643,28 +517123,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31616] = 7, - ACTIONS(7961), 1, + [35248] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4697), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + STATE(5246), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 23, + ACTIONS(3286), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502679,13 +517156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 29, + ACTIONS(3290), 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, @@ -502709,28 +517187,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31689] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [35317] = 5, + ACTIONS(8389), 1, + anon_sym_COMMA, + STATE(5011), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 23, + ACTIONS(4684), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502745,13 +517220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 29, + ACTIONS(4686), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -502775,96 +517251,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31762] = 9, - ACTIONS(5204), 1, + [35386] = 7, + ACTIONS(5764), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(5164), 1, + STATE(5315), 1, sym_type_constraints, + STATE(5358), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4218), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_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(4219), 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, - [31839] = 8, - ACTIONS(7961), 1, + [35459] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, + ACTIONS(8200), 1, anon_sym_EQ, - ACTIONS(8231), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4743), 1, + STATE(4699), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 22, + ACTIONS(4299), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -502874,58 +517346,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(4258), 29, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31914] = 3, + [35532] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4661), 25, + ACTIONS(4295), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502940,15 +517419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4663), 31, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -502972,28 +517449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31979] = 7, - ACTIONS(7961), 1, + [35605] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4795), 1, - sym_function_body, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 23, + ACTIONS(4216), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503008,13 +517482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 29, + ACTIONS(4218), 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, @@ -503038,14 +517513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32052] = 3, + [35674] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4649), 25, + ACTIONS(4327), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -503068,12 +517546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4651), 31, + ACTIONS(4329), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -503100,22 +517577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32117] = 3, + [35743] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4657), 25, + ACTIONS(4183), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503130,15 +517613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4659), 31, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -503162,25 +517643,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32182] = 5, - ACTIONS(5445), 1, + [35816] = 4, + ACTIONS(7123), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4507), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(4989), 1, - sym_enum_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4505), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35883] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4729), 24, + ACTIONS(4160), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503195,14 +517742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4731), 30, - sym__automatic_semicolon, + ACTIONS(4162), 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, @@ -503226,22 +517772,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32251] = 3, + [35956] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5250), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 25, - anon_sym_COLON, + ACTIONS(4147), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503249,67 +517804,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4593), 31, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32316] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4649), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [36033] = 5, + ACTIONS(8396), 1, + anon_sym_COMMA, + STATE(5035), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 23, + ACTIONS(4633), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503324,13 +517873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 29, + ACTIONS(4635), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -503354,22 +517904,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32389] = 3, + [36102] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 25, - anon_sym_COLON, + ACTIONS(4147), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503384,15 +517940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4589), 31, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -503416,29 +517970,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32454] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, + [36175] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, + ACTIONS(8200), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4771), 1, + STATE(4871), 1, sym_function_body, - STATE(5157), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 21, + ACTIONS(4137), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -503448,51 +517999,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(4161), 29, + ACTIONS(4139), 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, - [32531] = 5, - ACTIONS(8211), 1, - anon_sym_COMMA, - STATE(4923), 1, - aux_sym__delegation_specifiers_repeat1, + [36248] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 24, + ACTIONS(3270), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -503517,14 +518069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 30, + ACTIONS(3274), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -503548,31 +518100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32600] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(5162), 1, - sym_type_constraints, + [36317] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 21, + ACTIONS(4563), 25, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503580,51 +518123,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 29, + ACTIONS(4565), 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, - [32677] = 5, - ACTIONS(5456), 1, + [36382] = 5, + ACTIONS(8382), 1, + anon_sym_COMMA, + STATE(4986), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4686), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5061), 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(4684), 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, + [36451] = 4, + ACTIONS(8355), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4490), 24, + ACTIONS(4505), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -503649,11 +518257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4492), 30, + ACTIONS(4507), 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, @@ -503680,14 +518289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32746] = 3, + [36518] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4653), 25, - anon_sym_COLON, + ACTIONS(4728), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -503710,7 +518319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4655), 31, + ACTIONS(4730), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -503742,17 +518351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32811] = 5, - ACTIONS(8213), 1, - anon_sym_COMMA, - STATE(4913), 1, - aux_sym_type_constraints_repeat1, + [36583] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4398), 24, + ACTIONS(4762), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -503775,7 +518381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4400), 30, + ACTIONS(4765), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -503783,6 +518389,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, @@ -503806,15 +518413,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32880] = 5, - ACTIONS(5456), 1, + [36648] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, anon_sym_LBRACE, - STATE(5094), 1, + STATE(5312), 1, + sym_type_constraints, + STATE(5361), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 24, + ACTIONS(4495), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4493), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [36721] = 4, + STATE(5035), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -503839,11 +518510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 30, + ACTIONS(4738), 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, @@ -503870,23 +518542,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32949] = 4, - ACTIONS(8143), 1, - anon_sym_by, + [36788] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + ACTIONS(8399), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 24, + ACTIONS(4229), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503894,64 +518573,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(4454), 31, - sym__automatic_semicolon, + ACTIONS(4231), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33016] = 5, - ACTIONS(5445), 1, + [36863] = 6, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(5089), 1, - sym_enum_class_body, + ACTIONS(8401), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(4497), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503966,14 +518644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 30, - sym__automatic_semicolon, + ACTIONS(4499), 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, @@ -503997,15 +518674,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33085] = 5, - ACTIONS(5445), 1, + [36934] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5309), 1, + sym_type_constraints, + STATE(5363), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4465), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37007] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - STATE(5006), 1, + STATE(5106), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504030,7 +518773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, + ACTIONS(4218), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -504061,11 +518804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33154] = 3, + [37076] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4221), 25, + ACTIONS(4670), 25, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -504091,7 +518834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 31, + ACTIONS(4672), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -504123,15 +518866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33219] = 5, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(5123), 1, - sym_class_body, + [37141] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 24, + ACTIONS(4750), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504156,11 +518896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 30, + ACTIONS(4752), 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, @@ -504187,15 +518928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33288] = 5, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(5008), 1, - sym_class_body, + [37206] = 5, + ACTIONS(8394), 1, + anon_sym_COMMA, + STATE(5001), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4721), 24, + ACTIONS(4424), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504220,14 +518961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4723), 30, + ACTIONS(4426), 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, @@ -504251,22 +518992,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33357] = 3, + [37275] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8403), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4717), 25, - anon_sym_COLON, + ACTIONS(4349), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504281,15 +519027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4719), 31, - sym__automatic_semicolon, + ACTIONS(4351), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -504313,15 +519057,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33422] = 5, - ACTIONS(5445), 1, + [37346] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(5058), 1, - sym_enum_class_body, + STATE(5406), 1, + sym_function_body, + STATE(5420), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4185), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4183), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37419] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4754), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504346,11 +519153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 30, + ACTIONS(4756), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -504377,30 +519185,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33491] = 8, - ACTIONS(7961), 1, + [37484] = 5, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - ACTIONS(8233), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4795), 1, - sym_function_body, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 22, + ACTIONS(3278), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504408,48 +519211,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(4244), 29, + ACTIONS(3282), 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, - [33566] = 3, + [37553] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5171), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4669), 25, - anon_sym_COLON, + ACTIONS(4355), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504474,12 +519282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4671), 31, + ACTIONS(4357), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -504506,25 +519313,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33631] = 8, - ACTIONS(7961), 1, + [37622] = 7, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5266), 1, + sym_type_constraints, + STATE(5410), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4361), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37695] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, anon_sym_EQ, - ACTIONS(8235), 1, - anon_sym_COLON, - STATE(4726), 1, + STATE(4730), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, + STATE(5188), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 22, + ACTIONS(4160), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -504543,7 +519417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 29, + ACTIONS(4162), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504573,74 +519447,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33706] = 3, + [37772] = 7, + ACTIONS(5764), 1, + anon_sym_where, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5294), 1, + sym_type_constraints, + STATE(5363), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4673), 25, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4465), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4675), 31, + [37845] = 7, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_where, + STATE(5293), 1, + sym_type_constraints, + STATE(5415), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4323), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [33771] = 3, + ACTIONS(4321), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37918] = 5, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5138), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4665), 25, - anon_sym_COLON, + ACTIONS(4555), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504665,12 +519612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4667), 31, + ACTIONS(4557), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -504697,84 +519643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33836] = 5, - ACTIONS(5445), 1, + [37987] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(5015), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4272), 24, - anon_sym_as, + ACTIONS(8261), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4274), 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, - [33905] = 5, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(4996), 1, - sym_enum_class_body, + ACTIONS(8405), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5163), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4701), 24, + ACTIONS(4275), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -504794,14 +519680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4703), 30, + ACTIONS(4277), 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, @@ -504825,25 +519710,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33974] = 5, - ACTIONS(5456), 1, + [38062] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5039), 1, - sym_class_body, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 24, + ACTIONS(4443), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504858,14 +519746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 30, - sym__automatic_semicolon, + ACTIONS(4445), 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, @@ -504889,23 +519776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34043] = 9, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, + [38135] = 7, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8163), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(5199), 1, - sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5438), 1, + STATE(5404), 1, sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 20, + ACTIONS(4162), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -504921,12 +519804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4179), 30, + ACTIONS(4160), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -504957,15 +519842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34120] = 5, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(5045), 1, - sym_class_body, + [38208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4681), 24, + ACTIONS(4559), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -504990,11 +519872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4683), 30, + ACTIONS(4561), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -505021,85 +519904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34189] = 7, - ACTIONS(7961), 1, + [38273] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8035), 1, + ACTIONS(8200), 1, anon_sym_EQ, - STATE(4693), 1, + STATE(4763), 1, sym_function_body, - STATE(4728), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4065), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4067), 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, - [34262] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_EQ, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4776), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 23, + ACTIONS(4307), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -505123,7 +519940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 29, + ACTIONS(4309), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505153,15 +519970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34335] = 5, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(4993), 1, - sym_enum_class_body, + [38346] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 24, + ACTIONS(4746), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505186,11 +520000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4431), 30, + ACTIONS(4748), 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, @@ -505217,79 +520032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34404] = 9, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [38411] = 5, + ACTIONS(5788), 1, anon_sym_LBRACE, - STATE(5187), 1, - sym_type_constraints, - STATE(5358), 1, - sym__block, - STATE(5431), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4219), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4217), 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, - [34481] = 3, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5053), 24, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505314,12 +520065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5055), 31, + ACTIONS(3282), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -505346,21 +520096,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34545] = 3, + [38480] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5003), 24, + ACTIONS(4447), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -505375,15 +520132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5005), 31, - sym__automatic_semicolon, + ACTIONS(4449), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -505407,19 +520162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34609] = 7, - ACTIONS(8043), 1, + [38553] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8261), 1, anon_sym_EQ, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 22, + ACTIONS(4147), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -505442,7 +520197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 29, + ACTIONS(4149), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505472,11 +520227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34681] = 3, + [38625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4979), 24, + ACTIONS(4938), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505501,7 +520256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4981), 31, + ACTIONS(4940), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505533,11 +520288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34745] = 3, + [38689] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 24, + ACTIONS(4439), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505562,7 +520317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4431), 31, + ACTIONS(4441), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505594,11 +520349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34809] = 3, + [38753] = 4, + ACTIONS(8407), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4893), 24, + ACTIONS(4267), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505623,14 +520380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4895), 31, + ACTIONS(4265), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -505655,18 +520411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34873] = 4, - ACTIONS(8237), 1, - anon_sym_COLON_COLON, + [38819] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5057), 24, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -505686,21 +520446,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 30, + ACTIONS(4139), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -505717,11 +520476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34939] = 3, + [38891] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4915), 24, + ACTIONS(4275), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505746,7 +520505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4917), 31, + ACTIONS(4277), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505778,11 +520537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35003] = 3, + [38955] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 24, + ACTIONS(4798), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505807,7 +520566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 31, + ACTIONS(4800), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505839,20 +520598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35067] = 7, - ACTIONS(8043), 1, + [39019] = 6, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(4995), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + ACTIONS(8409), 1, + anon_sym_COLON, + STATE(5172), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 22, + ACTIONS(4497), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -505874,7 +520632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 29, + ACTIONS(4499), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505904,11 +520662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35139] = 3, + [39089] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 24, + ACTIONS(4137), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -505933,7 +520691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 31, + ACTIONS(4139), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505965,21 +520723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35203] = 3, + [39153] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4701), 24, + ACTIONS(4137), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -505987,50 +520752,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(4703), 31, - sym__automatic_semicolon, + ACTIONS(4139), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35267] = 3, + [39225] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3340), 24, + ACTIONS(4846), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506055,7 +520817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3342), 31, + ACTIONS(4848), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506087,11 +520849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35331] = 3, + [39289] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 24, + ACTIONS(4962), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506116,7 +520878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 31, + ACTIONS(4964), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506148,11 +520910,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35395] = 3, + [39353] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5161), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5159), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [39417] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 24, + ACTIONS(4477), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506177,7 +521000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5043), 31, + ACTIONS(4479), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506209,137 +521032,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35459] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(4999), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [39481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5165), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5163), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_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(4514), 29, + [39545] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5181), 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, - [35531] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5082), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5179), 31, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5084), 31, + [39609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5185), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_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, - [35595] = 3, + ACTIONS(5183), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [39673] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5100), 24, + ACTIONS(4910), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506364,7 +521244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5102), 31, + ACTIONS(4912), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506396,21 +521276,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35659] = 3, + [39737] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5112), 24, + ACTIONS(4147), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506418,50 +521305,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(5114), 31, - sym__automatic_semicolon, + ACTIONS(4149), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35723] = 3, + [39809] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5108), 24, + ACTIONS(4794), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506486,7 +521370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5110), 31, + ACTIONS(4796), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506518,11 +521402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35787] = 3, + [39873] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1582), 24, + ACTIONS(5095), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506547,7 +521431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1580), 31, + ACTIONS(5097), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506579,81 +521463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35851] = 8, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(6045), 1, - anon_sym_COLON, - STATE(5305), 1, - sym_type_constraints, - STATE(5451), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3208), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3204), 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, - [35925] = 5, - ACTIONS(7030), 1, - anon_sym_by, - STATE(5256), 1, - sym_value_arguments, + [39937] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 22, + ACTIONS(4760), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -506661,7 +521475,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, @@ -506671,12 +521484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4452), 31, + ACTIONS(4758), 32, + anon_sym_COLON, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -506708,11 +521524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35993] = 3, + [40001] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 24, + ACTIONS(5103), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506737,7 +521553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1698), 31, + ACTIONS(5105), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506769,11 +521585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36057] = 3, + [40065] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4729), 24, + ACTIONS(5089), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506798,7 +521614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4731), 31, + ACTIONS(5091), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506830,16 +521646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36121] = 3, + [40129] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4751), 24, + ACTIONS(4447), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -506859,15 +521681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4753), 31, + ACTIONS(4449), 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, @@ -506891,11 +521711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36185] = 3, + [40201] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4755), 24, + ACTIONS(4790), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -506920,7 +521740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4757), 31, + ACTIONS(4792), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506952,153 +521772,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36249] = 8, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8240), 1, - anon_sym_COLON, - STATE(5315), 1, - sym_type_constraints, - STATE(5400), 1, - sym_class_body, + [40265] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4266), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4660), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [36323] = 8, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, - anon_sym_LBRACE, - ACTIONS(6043), 1, - anon_sym_COLON, - STATE(5320), 1, - sym_type_constraints, - STATE(5393), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3198), 20, + ACTIONS(4662), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3194), 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, - [36397] = 3, + [40329] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4759), 24, + ACTIONS(4307), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507106,50 +521862,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(4761), 31, - sym__automatic_semicolon, + ACTIONS(4309), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36461] = 3, + [40401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3842), 24, + ACTIONS(4094), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507174,7 +521927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3844), 31, + ACTIONS(4096), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507206,11 +521959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36525] = 3, + [40465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5138), 24, + ACTIONS(5107), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507235,7 +521988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5140), 31, + ACTIONS(5109), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507267,77 +522020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36589] = 8, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(6019), 1, - anon_sym_COLON, - STATE(5342), 1, - sym_type_constraints, - STATE(5393), 1, - sym_class_body, + [40529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3194), 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, - [36663] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4474), 24, + ACTIONS(5199), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507362,7 +522049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4476), 31, + ACTIONS(5201), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507394,88 +522081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36727] = 8, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, - anon_sym_LBRACE, - ACTIONS(8242), 1, - anon_sym_COLON, - STATE(5290), 1, - sym_type_constraints, - STATE(5420), 1, - sym_enum_class_body, + [40593] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4248), 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, - [36801] = 6, - ACTIONS(5086), 1, - anon_sym_EQ, - ACTIONS(8237), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5088), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(5057), 23, + ACTIONS(4355), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -507498,7 +522110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 25, + ACTIONS(4357), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507513,6 +522125,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, @@ -507524,11 +522142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36871] = 3, + [40657] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5078), 24, + ACTIONS(4970), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507553,7 +522171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5080), 31, + ACTIONS(4972), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507585,77 +522203,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36935] = 8, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(8244), 1, - anon_sym_COLON, - STATE(5303), 1, - sym_type_constraints, - STATE(5420), 1, - sym_class_body, + [40721] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 20, + ACTIONS(4888), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4890), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4248), 30, - anon_sym_object, - anon_sym_fun, + [40785] = 5, + ACTIONS(4812), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4814), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4477), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [37009] = 3, + ACTIONS(4479), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 24, + ACTIONS(4463), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507680,7 +522356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(201), 31, + ACTIONS(4465), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507712,11 +522388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37073] = 3, + [40917] = 4, + ACTIONS(8411), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4829), 24, + ACTIONS(4289), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507741,14 +522419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4831), 31, + ACTIONS(4287), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -507773,11 +522450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37137] = 3, + [40983] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5096), 24, + ACTIONS(1796), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507802,7 +522479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5098), 31, + ACTIONS(1798), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507834,25 +522511,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37201] = 8, - ACTIONS(5799), 1, + [41047] = 4, + ACTIONS(8413), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4874), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5807), 1, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4876), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(6047), 1, - anon_sym_COLON, - STATE(5293), 1, - sym_type_constraints, - STATE(5368), 1, - sym_enum_class_body, + 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, + [41113] = 4, + ACTIONS(8415), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4892), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4894), 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, + [41179] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 20, + ACTIONS(4565), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -507864,12 +522656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3212), 30, + ACTIONS(4563), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507900,11 +522696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37275] = 3, + [41243] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 24, + ACTIONS(3113), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507929,7 +522725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 31, + ACTIONS(3115), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507961,11 +522757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37339] = 3, + [41307] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4905), 24, + ACTIONS(4786), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -507990,7 +522786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4907), 31, + ACTIONS(4788), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508022,22 +522818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37403] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, + [41371] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 22, + ACTIONS(4918), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -508057,13 +522847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, + ACTIONS(4920), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -508087,13 +522879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37475] = 4, - ACTIONS(6636), 1, - anon_sym_LPAREN, + [41435] = 4, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4292), 24, + ACTIONS(5024), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508118,13 +522910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 30, + ACTIONS(5026), 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, @@ -508132,7 +522925,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, @@ -508149,11 +522941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37541] = 3, + [41501] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1764), 24, + ACTIONS(5163), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508178,7 +522970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1766), 31, + ACTIONS(5165), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508210,23 +523002,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37605] = 4, - ACTIONS(6640), 1, - anon_sym_LPAREN, + [41565] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4318), 24, + ACTIONS(4447), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -508234,176 +523031,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4321), 30, - sym__automatic_semicolon, + ACTIONS(4449), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37671] = 3, + [41637] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4540), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4216), 24, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4538), 32, - anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - 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, - [37735] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4551), 23, + ACTIONS(4218), 31, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4548), 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, - [37799] = 3, + [41701] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 23, + ACTIONS(5189), 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, @@ -508417,13 +523150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4554), 32, - anon_sym_by, + ACTIONS(5187), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -508455,194 +523189,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37863] = 3, + [41765] = 4, + ACTIONS(6690), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4281), 24, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4595), 32, - anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - 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, - [37927] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4573), 23, + ACTIONS(4284), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4570), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + [41831] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4443), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [37991] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4223), 23, + ACTIONS(4445), 29, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4221), 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, - [38055] = 3, + [41903] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5049), 24, + ACTIONS(5175), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508667,7 +523345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5051), 31, + ACTIONS(5177), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508699,72 +523377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38119] = 3, + [41967] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4651), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4649), 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, - [38183] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4857), 24, + ACTIONS(3278), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508789,7 +523406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4859), 31, + ACTIONS(3282), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508821,11 +523438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38247] = 3, + [42031] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4880), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508850,7 +523467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 31, + ACTIONS(4882), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508882,13 +523499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38311] = 4, - ACTIONS(8246), 1, - anon_sym_LPAREN, + [42095] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 24, + ACTIONS(4782), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508913,13 +523528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4298), 30, + ACTIONS(4784), 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, @@ -508944,11 +523560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38377] = 3, + [42159] = 4, + ACTIONS(6684), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4721), 24, + ACTIONS(4259), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -508973,14 +523591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4723), 31, + ACTIONS(4262), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -509005,11 +523622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38441] = 3, + [42225] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4558), 24, + ACTIONS(5187), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509034,7 +523651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4560), 31, + ACTIONS(5189), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509066,13 +523683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38505] = 4, - ACTIONS(8248), 1, - anon_sym_LPAREN, + [42289] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 24, + ACTIONS(5043), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509097,13 +523712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 30, + ACTIONS(5045), 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, @@ -509128,11 +523744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38571] = 3, + [42353] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4881), 24, + ACTIONS(4946), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509157,7 +523773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4883), 31, + ACTIONS(4948), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509189,11 +523805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38635] = 3, + [42417] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4885), 24, + ACTIONS(5051), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509218,7 +523834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4887), 31, + ACTIONS(5053), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509250,11 +523866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38699] = 3, + [42481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 24, + ACTIONS(3270), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509279,7 +523895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 31, + ACTIONS(3274), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509311,137 +523927,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38763] = 4, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4767), 24, - anon_sym_as, + [42545] = 6, + ACTIONS(5055), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4769), 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, + ACTIONS(8417), 1, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [38829] = 4, - ACTIONS(8252), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4779), 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, + ACTIONS(5057), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [38895] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4967), 24, + ACTIONS(5024), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509464,7 +523965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4969), 31, + ACTIONS(5026), 25, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509479,12 +523980,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, @@ -509496,11 +523991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38959] = 3, + [42615] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4659), 23, + ACTIONS(4432), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -509519,14 +524014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4657), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4430), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509557,11 +524052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39023] = 3, + [42679] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4971), 24, + ACTIONS(1790), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509586,7 +524081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4973), 31, + ACTIONS(1792), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509618,11 +524113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39087] = 3, + [42743] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4983), 24, + ACTIONS(4633), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509647,7 +524142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4985), 31, + ACTIONS(4635), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509679,11 +524174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39151] = 3, + [42807] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 24, + ACTIONS(5183), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509708,7 +524203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 31, + ACTIONS(5185), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509740,81 +524235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39215] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4088), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4090), 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, - [39287] = 3, + [42871] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4663), 23, + ACTIONS(4507), 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, @@ -509828,13 +524257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4661), 32, - anon_sym_by, + ACTIONS(4505), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -509866,11 +524296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39351] = 3, + [42935] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1754), 24, + ACTIONS(5219), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509895,7 +524325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1756), 31, + ACTIONS(5221), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509927,11 +524357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39415] = 3, + [42999] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4889), 24, + ACTIONS(4870), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -509956,7 +524386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4891), 31, + ACTIONS(4872), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509988,11 +524418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39479] = 3, + [43063] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 24, + ACTIONS(4447), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510017,7 +524447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 31, + ACTIONS(4449), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510049,11 +524479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39543] = 3, + [43127] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4645), 24, + ACTIONS(4147), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510078,7 +524508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4647), 31, + ACTIONS(4149), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510110,11 +524540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39607] = 3, + [43191] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4410), 24, + ACTIONS(5073), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510139,7 +524569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4412), 31, + ACTIONS(5075), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510171,11 +524601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39671] = 3, + [43255] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4508), 24, + ACTIONS(5213), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510200,7 +524630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4510), 31, + ACTIONS(5215), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510232,11 +524662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39735] = 3, + [43319] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5037), 24, + ACTIONS(3344), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510261,7 +524691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5039), 31, + ACTIONS(3346), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510293,11 +524723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39799] = 3, + [43383] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 24, + ACTIONS(5209), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510322,7 +524752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 31, + ACTIONS(5211), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510354,11 +524784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39863] = 3, + [43447] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5066), 24, + ACTIONS(5205), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510383,7 +524813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5068), 31, + ACTIONS(5207), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510415,13 +524845,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39927] = 3, + [43511] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7295), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5029), 24, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -510444,14 +524883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5031), 31, + ACTIONS(4262), 25, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -510460,11 +524898,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, @@ -510476,11 +524909,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39991] = 3, + [43581] = 6, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(8420), 1, + anon_sym_COLON, + STATE(5336), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4499), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4497), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [43651] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5025), 24, + ACTIONS(5167), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510505,7 +525002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5027), 31, + ACTIONS(5169), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510537,11 +525034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40055] = 3, + [43715] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5021), 24, + ACTIONS(4866), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510566,7 +525063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5023), 31, + ACTIONS(4868), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510598,133 +525095,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40119] = 3, + [43779] = 6, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(8422), 1, + anon_sym_COLON, + STATE(5375), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5017), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5019), 31, + ACTIONS(4351), 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, - [40183] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5070), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4349), 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(5072), 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, - [40247] = 3, + [43849] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5074), 24, + ACTIONS(1802), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510749,7 +525188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5076), 31, + ACTIONS(1804), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510781,11 +525220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40311] = 3, + [43913] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5013), 24, + ACTIONS(4505), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510810,7 +525249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5015), 31, + ACTIONS(4507), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510842,13 +525281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40375] = 3, + [43977] = 5, + ACTIONS(5020), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4991), 24, + ACTIONS(5022), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4451), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -510871,7 +525317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4993), 31, + ACTIONS(4453), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510887,11 +525333,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, @@ -510903,11 +525344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40439] = 3, + [44045] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 24, + ACTIONS(3286), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -510932,7 +525373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 31, + ACTIONS(3290), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510964,22 +525405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40503] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [44109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 22, + ACTIONS(3992), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -510999,13 +525434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 29, + ACTIONS(3994), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -511029,11 +525466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40575] = 3, + [44173] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5104), 24, + ACTIONS(5020), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511058,7 +525495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5106), 31, + ACTIONS(5022), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511090,11 +525527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40639] = 3, + [44237] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4987), 24, + ACTIONS(4854), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511119,7 +525556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4989), 31, + ACTIONS(4856), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511151,14 +525588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40703] = 3, + [44301] = 4, + ACTIONS(8424), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4580), 24, + ACTIONS(5051), 23, anon_sym_as, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, @@ -511180,7 +525618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4582), 31, + ACTIONS(5053), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511212,11 +525650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40767] = 3, + [44367] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1770), 24, + ACTIONS(1584), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511241,7 +525679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1772), 31, + ACTIONS(1582), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511273,11 +525711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40831] = 3, + [44431] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4011), 24, + ACTIONS(4922), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511302,7 +525740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4013), 31, + ACTIONS(4924), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511334,74 +525772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40895] = 5, - ACTIONS(4817), 1, - anon_sym_EQ, + [44495] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4819), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4394), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4396), 26, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [40963] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4743), 24, + ACTIONS(5191), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511426,7 +525801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4745), 31, + ACTIONS(5193), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511458,11 +525833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41027] = 3, + [44559] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4975), 24, + ACTIONS(4443), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511487,7 +525862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4977), 31, + ACTIONS(4445), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511519,82 +525894,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41091] = 8, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, + [44623] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8254), 1, - anon_sym_COLON, - STATE(5351), 1, - sym_type_constraints, - STATE(5437), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4274), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4272), 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, - [41165] = 3, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4939), 24, + ACTIONS(4160), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -511614,15 +525929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4941), 31, + ACTIONS(4162), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -511646,11 +525959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41229] = 3, + [44695] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4923), 24, + ACTIONS(5125), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511675,7 +525988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4925), 31, + ACTIONS(5127), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511707,11 +526020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41293] = 3, + [44759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4817), 24, + ACTIONS(5047), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511736,7 +526049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4819), 31, + ACTIONS(5049), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511768,11 +526081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41357] = 3, + [44823] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4911), 24, + ACTIONS(5031), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511797,7 +526110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4913), 31, + ACTIONS(5033), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511829,11 +526142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41421] = 3, + [44887] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5116), 24, + ACTIONS(4028), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511858,7 +526171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5118), 31, + ACTIONS(4030), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511890,13 +526203,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41485] = 3, + [44951] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7291), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511919,14 +526241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 31, + ACTIONS(4284), 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, @@ -511935,11 +526256,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, @@ -511951,11 +526267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41549] = 3, + [45021] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5132), 24, + ACTIONS(5067), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -511980,7 +526296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5134), 31, + ACTIONS(5069), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512012,29 +526328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41613] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(6027), 1, - anon_sym_COLON, - STATE(4589), 1, - sym_type_constraints, - STATE(4695), 1, - sym_class_body, + [45085] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 21, + ACTIONS(4493), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512042,51 +526350,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(3208), 29, + ACTIONS(4495), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41687] = 5, - ACTIONS(8256), 1, - anon_sym_SEMI, - ACTIONS(8258), 1, - anon_sym_else, + [45149] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 23, + ACTIONS(4850), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512097,6 +526404,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, @@ -512110,7 +526418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 30, + ACTIONS(4852), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512119,6 +526427,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, @@ -512141,73 +526450,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41755] = 4, - ACTIONS(8258), 1, - anon_sym_else, + [45213] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4838), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 23, + ACTIONS(4439), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 31, - sym__automatic_semicolon, + ACTIONS(4441), 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, - [41821] = 3, + [45285] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4490), 24, + ACTIONS(4974), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512232,7 +526544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4492), 31, + ACTIONS(4976), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512264,11 +526576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41885] = 3, + [45349] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4995), 24, + ACTIONS(4327), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512293,7 +526605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4997), 31, + ACTIONS(4329), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512325,29 +526637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41949] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8260), 1, - anon_sym_COLON, - STATE(4592), 1, - sym_type_constraints, - STATE(4808), 1, - sym_class_body, + [45413] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 21, + ACTIONS(4778), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512355,65 +526659,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(4268), 29, + ACTIONS(4780), 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, - [42023] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(6057), 1, - anon_sym_COLON, - STATE(4607), 1, - sym_type_constraints, - STATE(4822), 1, - sym_enum_class_body, + [45477] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 21, + ACTIONS(5039), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512421,47 +526720,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(3198), 29, + ACTIONS(5041), 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, - [42097] = 3, + [45541] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4837), 24, + ACTIONS(4160), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512486,7 +526788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4839), 31, + ACTIONS(4162), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512518,16 +526820,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42161] = 3, + [45605] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5128), 24, + ACTIONS(4439), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -512547,15 +526855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5130), 31, + ACTIONS(4441), 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, @@ -512579,11 +526885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42225] = 3, + [45677] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 24, + ACTIONS(4000), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512608,7 +526914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 31, + ACTIONS(4002), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512640,11 +526946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42289] = 3, + [45741] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4833), 24, + ACTIONS(5085), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512669,7 +526975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4835), 31, + ACTIONS(5087), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512701,11 +527007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42353] = 3, + [45805] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4025), 24, + ACTIONS(3160), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512730,7 +527036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4027), 31, + ACTIONS(3162), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512762,28 +527068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42417] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4776), 1, - sym_function_body, + [45869] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 22, + ACTIONS(3420), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512791,47 +527090,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(4118), 29, + ACTIONS(3422), 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, - [42489] = 3, + [45933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4825), 24, + ACTIONS(4958), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -512856,7 +527158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4827), 31, + ACTIONS(4960), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512888,133 +527190,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42553] = 3, + [45997] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4821), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4823), 31, + ACTIONS(4635), 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, - [42617] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4927), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4633), 31, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4929), 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, - [42681] = 3, + [46061] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4394), 24, + ACTIONS(4826), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513039,7 +527280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4396), 31, + ACTIONS(4828), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513071,11 +527312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42745] = 3, + [46125] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4919), 24, + ACTIONS(4926), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513100,7 +527341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4921), 31, + ACTIONS(4928), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513132,24 +527373,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42809] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, + [46189] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(6013), 1, - anon_sym_COLON, - STATE(4599), 1, - sym_type_constraints, - STATE(4822), 1, - sym_class_body, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 21, + ACTIONS(4183), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -513168,7 +527408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 29, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513198,11 +527438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42883] = 3, + [46261] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 24, + ACTIONS(4930), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513227,7 +527467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 31, + ACTIONS(4932), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513259,27 +527499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42947] = 7, - ACTIONS(8043), 1, + [46325] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, + ACTIONS(8329), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(4699), 1, sym_function_body, - STATE(5099), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 22, + ACTIONS(4299), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513287,48 +527528,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(4118), 29, - sym__automatic_semicolon, + 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43019] = 3, + [46397] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4813), 24, + ACTIONS(5035), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513353,7 +527593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4815), 31, + ACTIONS(5037), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513385,11 +527625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43083] = 3, + [46461] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4015), 24, + ACTIONS(4567), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513414,7 +527654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4017), 31, + ACTIONS(4569), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513446,11 +527686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43147] = 3, + [46525] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1780), 24, + ACTIONS(5153), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513475,7 +527715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1782), 31, + ACTIONS(5155), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513507,11 +527747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43211] = 3, + [46589] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3016), 24, + ACTIONS(4299), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513536,7 +527776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3018), 31, + ACTIONS(4301), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513568,138 +527808,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43275] = 3, + [46653] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3208), 31, + ACTIONS(4587), 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, - [43339] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4791), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4585), 32, + anon_sym_COLON, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4793), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [46717] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [43403] = 3, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5120), 24, + ACTIONS(4299), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -513719,15 +527904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5122), 31, + ACTIONS(4301), 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, @@ -513751,29 +527934,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43467] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(8262), 1, - anon_sym_COLON, - STATE(4638), 1, - sym_type_constraints, - STATE(4655), 1, - sym_enum_class_body, + [46789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 21, + ACTIONS(4430), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513781,47 +527956,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(4250), 29, + ACTIONS(4432), 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, - [43541] = 3, + [46853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 24, + ACTIONS(1814), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513846,7 +528024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 31, + ACTIONS(1816), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513878,11 +528056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43605] = 3, + [46917] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4773), 24, + ACTIONS(4966), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -513907,7 +528085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4775), 31, + ACTIONS(4968), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513939,72 +528117,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43669] = 3, + [46981] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4747), 24, - anon_sym_as, + ACTIONS(4662), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4660), 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(4749), 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, - [43733] = 3, + [47045] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 24, + ACTIONS(5149), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514029,7 +528207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 31, + ACTIONS(5151), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514061,11 +528239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43797] = 3, + [47109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4897), 24, + ACTIONS(5099), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514090,7 +528268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4899), 31, + ACTIONS(5101), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514122,16 +528300,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43861] = 3, + [47173] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 24, + ACTIONS(4307), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -514151,15 +528335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4863), 31, + ACTIONS(4309), 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, @@ -514183,11 +528365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43925] = 3, + [47245] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4901), 24, + ACTIONS(5195), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514212,7 +528394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4903), 31, + ACTIONS(5197), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514244,75 +528426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43989] = 6, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8264), 1, - anon_sym_COLON, - STATE(5100), 1, - sym_class_body, + [47309] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4530), 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, - [44059] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4795), 24, + ACTIONS(5135), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514337,7 +528455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4797), 31, + ACTIONS(5137), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514369,19 +528487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44123] = 7, - ACTIONS(7961), 1, + [47373] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, + ACTIONS(8329), 1, anon_sym_EQ, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, + STATE(4881), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 22, + ACTIONS(4443), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -514404,7 +528522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 29, + ACTIONS(4445), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514434,27 +528552,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44195] = 7, - ACTIONS(8043), 1, + [47445] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5150), 1, - sym_function_body, + ACTIONS(6160), 1, + anon_sym_COLON, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 22, + ACTIONS(3270), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -514462,48 +528582,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(4244), 29, - sym__automatic_semicolon, + ACTIONS(3274), 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, - [44267] = 3, + [47519] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4504), 24, + ACTIONS(5131), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514528,7 +528647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4506), 31, + ACTIONS(5133), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514560,11 +528679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44331] = 3, + [47583] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5124), 24, + ACTIONS(4451), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514589,7 +528708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5126), 31, + ACTIONS(4453), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514621,11 +528740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44395] = 3, + [47647] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 24, + ACTIONS(4481), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514650,7 +528769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 31, + ACTIONS(4483), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514682,11 +528801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44459] = 3, + [47711] = 4, + ACTIONS(8426), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(4818), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514697,7 +528818,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, @@ -514711,7 +528831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 31, + ACTIONS(4820), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514743,21 +528863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44523] = 8, - ACTIONS(5204), 1, + [47777] = 8, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(5210), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8266), 1, + ACTIONS(6172), 1, anon_sym_COLON, - STATE(4616), 1, + STATE(4621), 1, sym_type_constraints, - STATE(4655), 1, + STATE(4748), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 21, + ACTIONS(3278), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -514779,7 +528899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 29, + ACTIONS(3282), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -514809,77 +528929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44597] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5989), 1, - anon_sym_COLON, - STATE(4613), 1, - sym_type_constraints, - STATE(4723), 1, - sym_enum_class_body, + [47851] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3216), 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, - [44671] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4943), 24, + ACTIONS(5139), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514904,7 +528958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4945), 31, + ACTIONS(5141), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514936,11 +528990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44735] = 3, + [47915] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4947), 24, + ACTIONS(4898), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -514965,7 +529019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4949), 31, + ACTIONS(4900), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514997,11 +529051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44799] = 3, + [47979] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3039), 24, + ACTIONS(5059), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515026,7 +529080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3041), 31, + ACTIONS(5061), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515058,11 +529112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44863] = 3, + [48043] = 5, + ACTIONS(8426), 1, + anon_sym_else, + ACTIONS(8428), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4951), 24, + ACTIONS(4818), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515073,7 +529131,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, @@ -515087,7 +529144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4953), 31, + ACTIONS(4820), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515096,7 +529153,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, @@ -515119,11 +529175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44927] = 3, + [48111] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5009), 24, + ACTIONS(4914), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515148,7 +529204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5011), 31, + ACTIONS(4916), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515180,11 +529236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44991] = 3, + [48175] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 24, + ACTIONS(4804), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515209,7 +529265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5047), 31, + ACTIONS(4806), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515241,16 +529297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45055] = 3, + [48239] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4963), 24, + ACTIONS(4295), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -515270,15 +529332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4965), 31, + ACTIONS(4297), 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, @@ -515302,11 +529362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45119] = 3, + [48311] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5033), 24, + ACTIONS(4295), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515331,7 +529391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5035), 31, + ACTIONS(4297), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515363,11 +529423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45183] = 3, + [48375] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4999), 24, + ACTIONS(1808), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515392,7 +529452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5001), 31, + ACTIONS(1810), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515424,75 +529484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45247] = 6, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_COLON, - STATE(5132), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4520), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4522), 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, - [45317] = 3, + [48439] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 24, + ACTIONS(4812), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515517,7 +529513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 31, + ACTIONS(4814), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515549,23 +529545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45381] = 7, - ACTIONS(7961), 1, + [48503] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, + ACTIONS(8430), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 22, + ACTIONS(4216), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -515584,7 +529581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 29, + ACTIONS(4218), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -515614,29 +529611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45453] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(8270), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_type_constraints, - STATE(4814), 1, - sym_enum_class_body, + [48577] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 21, + ACTIONS(5145), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -515644,47 +529633,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(4274), 29, + ACTIONS(5147), 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, - [45527] = 3, + [48641] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 24, + ACTIONS(4652), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515709,7 +529701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 31, + ACTIONS(4654), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515741,11 +529733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45591] = 3, + [48705] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4935), 24, + ACTIONS(4902), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515770,7 +529762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4937), 31, + ACTIONS(4904), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515802,11 +529794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45655] = 3, + [48769] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 24, + ACTIONS(4942), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515831,7 +529823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4871), 31, + ACTIONS(4944), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515863,11 +529855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45719] = 3, + [48833] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 24, + ACTIONS(4906), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -515892,7 +529884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4957), 31, + ACTIONS(4908), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515924,23 +529916,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45783] = 7, - ACTIONS(7961), 1, + [48897] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6154), 1, + anon_sym_COLON, + STATE(4659), 1, + sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 22, + ACTIONS(3278), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -515959,7 +529952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 29, + ACTIONS(3282), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -515989,22 +529982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45855] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(7195), 1, - anon_sym_LPAREN, + [48971] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4292), 23, + ACTIONS(5171), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -516027,13 +530011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 25, + ACTIONS(5173), 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, @@ -516042,6 +530027,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, @@ -516053,22 +530043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45925] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(7233), 1, - anon_sym_LPAREN, + [49035] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4318), 23, + ACTIONS(4467), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -516091,13 +530072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4321), 25, + ACTIONS(4469), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -516106,6 +530088,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, @@ -516117,23 +530104,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45995] = 7, - ACTIONS(7961), 1, + [49099] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4752), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4750), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [49163] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8432), 1, + anon_sym_COLON, + STATE(4634), 1, + sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 22, + ACTIONS(4321), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516152,7 +530201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 29, + ACTIONS(4323), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516182,23 +530231,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46067] = 7, - ACTIONS(7961), 1, + [49237] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4795), 1, - sym_function_body, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6184), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 22, + ACTIONS(3286), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516217,7 +530267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 29, + ACTIONS(3290), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516247,22 +530297,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46139] = 7, - ACTIONS(8043), 1, + [49311] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4756), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5165), 1, - sym_function_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4754), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [49375] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 22, + ACTIONS(123), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516282,13 +530387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 29, + ACTIONS(121), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -516312,21 +530419,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46211] = 3, + [49439] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8329), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 24, + ACTIONS(4295), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516334,50 +530448,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(4472), 31, - sym__automatic_semicolon, + ACTIONS(4297), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46275] = 3, + [49511] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4807), 24, + ACTIONS(4774), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516402,7 +530513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4809), 31, + ACTIONS(4776), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516434,23 +530545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46339] = 7, - ACTIONS(7961), 1, + [49575] = 8, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8434), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 22, + ACTIONS(4216), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516469,7 +530581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 29, + ACTIONS(4218), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516499,11 +530611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46411] = 3, + [49649] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 24, + ACTIONS(4183), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516528,7 +530640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4867), 31, + ACTIONS(4185), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516560,28 +530672,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46475] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4649), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [49713] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 22, + ACTIONS(4884), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516589,52 +530694,122 @@ 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(4514), 29, + ACTIONS(4886), 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, - [46547] = 3, + [49777] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 24, - anon_sym_as, + ACTIONS(4579), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4577), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [49841] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8261), 1, anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4183), 22, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516654,15 +530829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 31, + ACTIONS(4185), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -516686,22 +530859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46611] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8085), 1, - anon_sym_EQ, - STATE(4983), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [49913] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 22, + ACTIONS(1732), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516721,13 +530888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 29, + ACTIONS(1734), 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, @@ -516751,28 +530920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46683] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4664), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [49977] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 22, + ACTIONS(4954), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516780,47 +530942,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(4468), 29, + ACTIONS(4956), 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, - [46755] = 3, + [50041] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4931), 24, + ACTIONS(4321), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516845,7 +531010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4933), 31, + ACTIONS(4323), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516877,28 +531042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46819] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(4697), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [50105] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 22, + ACTIONS(4950), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516906,47 +531064,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(4472), 29, + ACTIONS(4952), 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, - [46891] = 3, + [50169] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5092), 24, + ACTIONS(5077), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516971,7 +531132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5094), 31, + ACTIONS(5079), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517003,20 +531164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46955] = 5, - ACTIONS(4905), 1, - anon_sym_EQ, + [50233] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4907), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4504), 23, + ACTIONS(4359), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -517039,7 +531193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4506), 26, + ACTIONS(4361), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517055,6 +531209,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, @@ -517066,139 +531225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47023] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [50297] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5419), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4090), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4088), 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, - [47094] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4671), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8329), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4669), 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, - [47157] = 5, - ACTIONS(8272), 1, - anon_sym_by, - STATE(4754), 1, - sym_value_arguments, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 22, + ACTIONS(4160), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -517221,12 +531260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 30, + ACTIONS(4162), 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, @@ -517252,90 +531290,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47224] = 7, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - STATE(5303), 1, - sym_type_constraints, - STATE(5420), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4250), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4248), 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, - [47295] = 5, - ACTIONS(8274), 1, - anon_sym_LPAREN, + [50369] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3818), 23, - anon_sym_COLON, + ACTIONS(4934), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -517349,13 +531319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3823), 28, + ACTIONS(4936), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517378,26 +531351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47362] = 6, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8277), 1, - anon_sym_COLON, - STATE(4759), 1, - sym_class_body, + [50433] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 22, + ACTIONS(4842), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -517405,62 +531373,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4530), 29, + ACTIONS(4844), 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, - [47431] = 5, - ACTIONS(8279), 1, - anon_sym_LPAREN, + [50497] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3818), 23, - anon_sym_COLON, + ACTIONS(4644), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -517474,13 +531441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3823), 28, + ACTIONS(4646), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -517503,275 +531473,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47498] = 5, - ACTIONS(8282), 1, - anon_sym_COMMA, - STATE(5179), 1, - aux_sym_type_constraints_repeat1, + [50561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4722), 24, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4410), 30, - anon_sym_object, - anon_sym_fun, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_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, - [47565] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5402), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4067), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4065), 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_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, - [47636] = 5, - ACTIONS(8285), 1, - anon_sym_COMMA, - STATE(5226), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4435), 22, + ACTIONS(4724), 31, 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_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4433), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, + anon_sym_COMMA, + anon_sym_SEMI, sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - 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, - [47703] = 7, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5290), 1, - sym_type_constraints, - STATE(5420), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4250), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4248), 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, - [47774] = 7, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - STATE(5296), 1, - sym_type_constraints, - STATE(5412), 1, - sym_class_body, + [50625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4492), 20, + ACTIONS(4553), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -517783,12 +531555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4490), 30, + ACTIONS(4551), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -517819,31 +531595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47845] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8287), 1, - anon_sym_COLON, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, - STATE(5322), 1, - sym_type_constraints, + [50689] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 20, + ACTIONS(4834), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -517852,132 +531617,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 27, + ACTIONS(4836), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [47922] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5363), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4118), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4116), 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, - [47993] = 8, - ACTIONS(5086), 1, - anon_sym_EQ, - ACTIONS(8237), 1, - anon_sym_COLON_COLON, - ACTIONS(8291), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4149), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(5088), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(5057), 21, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50753] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5159), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -517991,7 +531685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5059), 23, + ACTIONS(5161), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517999,11 +531693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -518015,25 +531717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48066] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5410), 1, - sym_function_body, + [50817] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4514), 20, + ACTIONS(4724), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -518043,12 +531740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4512), 30, + ACTIONS(4722), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518079,337 +531778,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48137] = 5, - ACTIONS(8293), 1, - anon_sym_COMMA, - STATE(5190), 1, - aux_sym__delegation_specifiers_repeat1, + [50881] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4578), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4576), 31, + ACTIONS(5179), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [48204] = 7, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - STATE(5316), 1, - sym_type_constraints, - STATE(5357), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4510), 20, + ACTIONS(5181), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4508), 30, - anon_sym_object, - anon_sym_fun, + [50945] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4838), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - 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, - [48275] = 5, - ACTIONS(8293), 1, - anon_sym_COMMA, - STATE(5192), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4536), 21, + ACTIONS(4840), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4534), 31, + [51009] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5117), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [48342] = 7, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5288), 1, - sym_type_constraints, - STATE(5467), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4444), 20, + ACTIONS(5119), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4442), 30, - anon_sym_object, - anon_sym_fun, + [51073] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5121), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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, - [48413] = 5, - ACTIONS(8295), 1, - anon_sym_COMMA, - STATE(5192), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4582), 21, + ACTIONS(5123), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4580), 31, + [51137] = 8, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8436), 1, + anon_sym_COLON, + STATE(4676), 1, + sym_type_constraints, + STATE(4891), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4327), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_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, - [48480] = 4, - ACTIONS(6736), 1, + ACTIONS(4329), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51211] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4292), 24, + ACTIONS(5063), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -518424,13 +532117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 29, + ACTIONS(5065), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -518454,13 +532149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48545] = 4, - ACTIONS(6740), 1, - anon_sym_LPAREN, + [51275] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8438), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4318), 24, + ACTIONS(4349), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -518470,7 +532169,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, @@ -518485,13 +532183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4321), 29, + ACTIONS(4351), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -518515,17 +532213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48610] = 3, + [51345] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5397), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 22, + ACTIONS(4654), 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, @@ -518537,14 +532237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4705), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4652), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518575,25 +532275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48673] = 10, - ACTIONS(5449), 1, + [51412] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - ACTIONS(8298), 1, + ACTIONS(8440), 1, anon_sym_COLON, - STATE(5024), 1, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4757), 1, sym_function_body, - STATE(5099), 1, + STATE(4800), 1, sym__block, - STATE(5300), 1, + STATE(5532), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 20, + ACTIONS(4147), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -518601,6 +532301,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, @@ -518614,14 +532315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 27, - sym__automatic_semicolon, + ACTIONS(4149), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -518642,19 +532342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48750] = 7, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, + [51489] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - STATE(5351), 1, - sym_type_constraints, - STATE(5437), 1, - sym_enum_class_body, + STATE(5391), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4274), 20, + ACTIONS(3282), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518670,12 +532366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4272), 30, + ACTIONS(3278), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518706,86 +532404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48821] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8300), 1, - anon_sym_COLON, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, - STATE(5379), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4159), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4161), 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, - [48898] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [51556] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5431), 1, - sym_function_body, + STATE(5391), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4219), 20, + ACTIONS(3282), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518801,12 +532428,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4217), 30, + ACTIONS(3278), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518837,19 +532466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48969] = 7, - ACTIONS(5793), 1, + [51623] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - STATE(5354), 1, - sym_type_constraints, - STATE(5467), 1, + STATE(5378), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 20, + ACTIONS(4329), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518865,12 +532490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4442), 30, + ACTIONS(4327), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518901,19 +532528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [49040] = 7, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, + [51690] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(5298), 1, - sym_type_constraints, - STATE(5436), 1, + STATE(5358), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 20, + ACTIONS(4218), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518929,12 +532552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4429), 30, + ACTIONS(4216), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518965,23 +532590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [49111] = 7, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - STATE(5315), 1, - sym_type_constraints, - STATE(5400), 1, - sym_class_body, + [51757] = 5, + ACTIONS(8448), 1, + sym__automatic_semicolon, + STATE(5469), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 20, - sym__automatic_semicolon, + ACTIONS(8446), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -518993,12 +532614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4266), 30, + ACTIONS(8444), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -519029,17 +532652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [49182] = 6, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8304), 1, - anon_sym_COLON, - STATE(4660), 1, - sym_class_body, + [51824] = 5, + ACTIONS(8450), 1, + anon_sym_by, + STATE(4787), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4520), 22, + ACTIONS(4505), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519062,11 +532683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4522), 29, + ACTIONS(4507), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -519092,28 +532714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49251] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(7263), 1, - anon_sym_LPAREN, + [51891] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8452), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4292), 23, + ACTIONS(4497), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -519123,21 +532741,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 24, + ACTIONS(4499), 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, @@ -519150,146 +532771,81 @@ 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, - [49320] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8306), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, - STATE(5381), 1, - sym_type_constraints, + [51960] = 5, + ACTIONS(8458), 1, + sym__automatic_semicolon, + STATE(5466), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4090), 26, - sym_safe_nav, + ACTIONS(8456), 22, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [49397] = 4, - ACTIONS(8308), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4300), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(8454), 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(4298), 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, - [49462] = 4, - ACTIONS(8310), 1, + [52027] = 4, + ACTIONS(6767), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 24, + ACTIONS(4281), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519314,7 +532870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 29, + ACTIONS(4284), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519344,13 +532900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49527] = 4, - ACTIONS(8312), 1, + [52092] = 4, + ACTIONS(8460), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 24, + ACTIONS(4892), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519375,7 +532931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4769), 29, + ACTIONS(4894), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519405,144 +532961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49592] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - ACTIONS(8314), 1, - anon_sym_COLON, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5302), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4065), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4067), 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, - [49669] = 7, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5337), 1, - sym_type_constraints, - STATE(5468), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4423), 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, - [49740] = 4, - ACTIONS(8316), 1, + [52157] = 4, + ACTIONS(8462), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 24, + ACTIONS(4874), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519567,7 +532992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4779), 29, + ACTIONS(4876), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519597,22 +533022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49805] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(7259), 1, - anon_sym_LPAREN, + [52222] = 4, + ACTIONS(8464), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4318), 23, + ACTIONS(4818), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -519621,7 +533039,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, @@ -519635,12 +533052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4321), 24, + ACTIONS(4820), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, sym_label, @@ -519649,6 +533067,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, @@ -519660,15 +533083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49874] = 5, - ACTIONS(8318), 1, - anon_sym_SEMI, - ACTIONS(8320), 1, + [52287] = 5, + ACTIONS(8464), 1, anon_sym_else, + ACTIONS(8466), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 23, + ACTIONS(4818), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519692,7 +533115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 29, + ACTIONS(4820), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -519722,138 +533145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49941] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5438), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4181), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4179), 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, - [50012] = 4, - ACTIONS(7030), 1, - anon_sym_by, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4454), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + [52354] = 4, + ACTIONS(8468), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4452), 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, - [50077] = 4, - ACTIONS(8320), 1, - anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 23, + ACTIONS(4289), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -519864,6 +533162,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, @@ -519877,13 +533176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 30, + ACTIONS(4287), 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, @@ -519908,95 +533206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50142] = 7, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5456), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4161), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [52419] = 4, + ACTIONS(8470), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4159), 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, - [50213] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8322), 1, - anon_sym_COLON, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(5383), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 21, + ACTIONS(4267), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -520006,189 +533230,186 @@ 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(4067), 26, + ACTIONS(4265), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50290] = 3, + [52484] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7345), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4727), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4725), 32, - anon_sym_COLON, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + 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_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, - [50353] = 7, - ACTIONS(5793), 1, - anon_sym_LBRACE, - ACTIONS(5799), 1, - anon_sym_where, - STATE(5313), 1, - sym_type_constraints, - STATE(5468), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 20, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4284), 24, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_object, - anon_sym_fun, + [52553] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7349), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [50424] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(4262), 24, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - ACTIONS(8324), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5110), 1, - sym_function_body, - STATE(5324), 1, - sym_type_constraints, + 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, + [52622] = 4, + ACTIONS(6763), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 20, + ACTIONS(4259), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -520196,59 +533417,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 27, - 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, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50501] = 10, - ACTIONS(5204), 1, + [52687] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8442), 1, anon_sym_EQ, - ACTIONS(8326), 1, + ACTIONS(8472), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4776), 1, + STATE(4775), 1, sym_function_body, - STATE(5414), 1, + STATE(4800), 1, + sym__block, + STATE(5534), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 21, + ACTIONS(4183), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520270,7 +533494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 26, + ACTIONS(4185), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520297,19 +533521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50578] = 7, - ACTIONS(5799), 1, - anon_sym_where, - ACTIONS(5807), 1, + [52764] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(5306), 1, - sym_type_constraints, - STATE(5448), 1, + STATE(5369), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4476), 20, + ACTIONS(4569), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -520325,12 +533545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4474), 30, + ACTIONS(4567), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -520361,17 +533583,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50649] = 3, + [52831] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5381), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4679), 22, + ACTIONS(4483), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4481), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [52898] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, + STATE(5397), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4654), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -520383,14 +533669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4677), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4652), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -520421,28 +533707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50712] = 10, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, + [52965] = 6, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8328), 1, + ACTIONS(8474), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4733), 1, - sym_function_body, - STATE(5417), 1, - sym_type_constraints, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 21, + ACTIONS(4349), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -520461,15 +533740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 26, + ACTIONS(4351), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -520488,21 +533770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50789] = 5, - ACTIONS(8285), 1, - anon_sym_COMMA, - STATE(5179), 1, - aux_sym_type_constraints_repeat1, + [53034] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5419), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 22, + ACTIONS(4557), 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, @@ -520514,12 +533794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4398), 30, + ACTIONS(4555), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -520550,25 +533832,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50856] = 10, - ACTIONS(5449), 1, + [53101] = 10, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8442), 1, anon_sym_EQ, - ACTIONS(8330), 1, + ACTIONS(8476), 1, anon_sym_COLON, - STATE(5073), 1, + STATE(4711), 1, sym_function_body, - STATE(5099), 1, + STATE(4800), 1, sym__block, - STATE(5314), 1, + STATE(5527), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 20, + ACTIONS(4173), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520576,6 +533858,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, @@ -520589,14 +533872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 27, - sym__automatic_semicolon, + ACTIONS(4175), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -520617,17 +533899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50933] = 6, - ACTIONS(5793), 1, + [53178] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, - anon_sym_COLON, - STATE(5367), 1, - sym_class_body, + STATE(5399), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 20, + ACTIONS(4469), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -520643,12 +533923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4528), 30, + ACTIONS(4467), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -520679,289 +533961,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51001] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, + [53245] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8334), 1, - anon_sym_COLON, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, - STATE(5524), 1, - sym_type_constraints, + STATE(5410), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4361), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_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(4161), 26, + [53312] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5358), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [51077] = 5, - ACTIONS(8338), 1, - anon_sym_COMMA, - STATE(5230), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4580), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4582), 29, - sym_safe_nav, + [53379] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5353), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3290), 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_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, - [51143] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(7359), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4292), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3286), 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(4295), 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, - [51211] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8341), 1, - anon_sym_COLON, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8345), 1, + [53446] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8349), 1, - anon_sym_LT, - ACTIONS(8351), 1, - anon_sym_where, - STATE(5462), 1, - sym_type_parameters, - STATE(8294), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8667), 1, - sym_type_constraints, - STATE(9176), 1, + STATE(5356), 1, sym_class_body, - STATE(9702), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3118), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [51317] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 22, + ACTIONS(4549), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -520971,13 +534171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4865), 31, - anon_sym_where, + ACTIONS(4547), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -521008,19 +534209,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51379] = 3, + [53513] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5388), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 22, + ACTIONS(4357), 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, @@ -521030,13 +534233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4955), 31, - anon_sym_where, + ACTIONS(4355), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -521067,17 +534271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51441] = 6, - ACTIONS(5793), 1, + [53580] = 5, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_COLON, - STATE(5457), 1, + STATE(5361), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4522), 20, + ACTIONS(4495), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -521093,12 +534295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4520), 30, + ACTIONS(4493), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -521129,100 +534333,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51509] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8345), 1, + [53647] = 5, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8349), 1, - anon_sym_LT, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8355), 1, - anon_sym_COLON, - STATE(5391), 1, - sym_type_parameters, - STATE(8329), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8705), 1, - sym_type_constraints, - STATE(9349), 1, - sym_class_body, - STATE(9702), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3150), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [51615] = 3, + STATE(5363), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 22, + ACTIONS(4465), 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, @@ -521232,13 +534357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5045), 31, - anon_sym_where, + ACTIONS(4463), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -521269,19 +534395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51677] = 3, + [53714] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 22, + ACTIONS(3274), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -521291,13 +534419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4927), 31, - anon_sym_where, + ACTIONS(3270), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -521328,106 +534457,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51739] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8349), 1, - anon_sym_LT, - ACTIONS(8351), 1, + [53781] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8357), 1, - anon_sym_COLON, - ACTIONS(8359), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(5441), 1, - sym_type_parameters, - STATE(8307), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8709), 1, + ACTIONS(8478), 1, + anon_sym_COLON, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5461), 1, sym_type_constraints, - STATE(9060), 1, - sym_enum_class_body, - STATE(9702), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3168), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4183), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [51845] = 8, - ACTIONS(8043), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4185), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53858] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8480), 1, anon_sym_EQ, - ACTIONS(8361), 1, + ACTIONS(8482), 1, anon_sym_COLON, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5150), 1, + STATE(5240), 1, sym_function_body, + STATE(5464), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 21, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -521445,7 +534563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 27, + ACTIONS(4162), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521473,17 +534591,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51917] = 4, - ACTIONS(8272), 1, - anon_sym_by, + [53935] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8484), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, + STATE(5482), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 22, + ACTIONS(4137), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -521502,19 +534631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 30, + ACTIONS(4139), 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, @@ -521533,74 +534658,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51981] = 3, + [54012] = 5, + ACTIONS(8486), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4719), 21, + ACTIONS(4262), 2, sym__automatic_semicolon, - sym__string_start, + anon_sym_RBRACE, + ACTIONS(4004), 23, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4009), 28, + 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_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4717), 32, - anon_sym_COLON, + [54079] = 10, + ACTIONS(5776), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + ACTIONS(8489), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5470), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4147), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [52043] = 5, - ACTIONS(8363), 1, + ACTIONS(4149), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(8365), 1, - anon_sym_else, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54156] = 5, + ACTIONS(8491), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 22, + ACTIONS(4284), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4004), 23, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -521623,14 +534820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 29, - sym__automatic_semicolon, + ACTIONS(4009), 28, 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, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -521653,15 +534849,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52109] = 4, - ACTIONS(8365), 1, - anon_sym_else, + [54223] = 8, + ACTIONS(5055), 1, + anon_sym_EQ, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, + ACTIONS(8494), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 22, + ACTIONS(4124), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5057), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5024), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -521682,7 +534890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 30, + ACTIONS(5026), 23, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521690,18 +534898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -521713,97 +534914,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52173] = 25, - ACTIONS(3114), 1, + [54296] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5410), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4361), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8347), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(8349), 1, - anon_sym_LT, - ACTIONS(8351), 1, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54363] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8367), 1, + ACTIONS(8480), 1, + anon_sym_EQ, + ACTIONS(8496), 1, anon_sym_COLON, - STATE(5425), 1, - sym_type_parameters, - STATE(8317), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8696), 1, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, + STATE(5478), 1, sym_type_constraints, - STATE(9349), 1, - sym_enum_class_body, - STATE(9702), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3150), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(4137), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, + sym__alpha_identifier, + ACTIONS(4139), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54440] = 10, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8498), 1, + anon_sym_COLON, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5533), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [52279] = 3, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4162), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54517] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4675), 21, + ACTIONS(4646), 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, @@ -521815,14 +535134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4673), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4644), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -521853,21 +535172,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52341] = 4, - ACTIONS(8369), 1, - anon_sym_LPAREN, + [54584] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + ACTIONS(8500), 1, + anon_sym_COLON, + STATE(5079), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + STATE(5426), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 23, + ACTIONS(4173), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -521876,117 +535205,176 @@ 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(4779), 29, + ACTIONS(4175), 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, - [52405] = 4, - ACTIONS(8371), 1, - anon_sym_LPAREN, + [54661] = 5, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(5415), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4323), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4321), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_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(4769), 29, + [54728] = 5, + ACTIONS(5780), 1, + anon_sym_LBRACE, + STATE(5363), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4465), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [52469] = 3, + ACTIONS(4463), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54795] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4560), 23, + ACTIONS(4329), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -521996,12 +535384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4558), 30, + ACTIONS(4327), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522032,20 +535422,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52531] = 3, + [54857] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4647), 23, + ACTIONS(4964), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -522055,12 +535443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4645), 30, + ACTIONS(4962), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522091,35 +535481,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52593] = 3, + [54919] = 6, + ACTIONS(7009), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 23, + ACTIONS(4289), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4287), 4, sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4284), 18, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_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(4410), 30, + ACTIONS(4281), 27, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522127,17 +535523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_in, anon_sym_null, anon_sym_if, - anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, - anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -522150,29 +535543,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52655] = 8, - ACTIONS(8043), 1, + [54987] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8442), 1, anon_sym_EQ, - ACTIONS(8373), 1, - anon_sym_COLON, - STATE(5099), 1, + STATE(4800), 1, sym__block, - STATE(5160), 1, + STATE(4824), 1, sym_function_body, + STATE(5488), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 21, + ACTIONS(4295), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522186,14 +535581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 27, - sym__automatic_semicolon, + ACTIONS(4297), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -522214,17 +535608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52727] = 4, - STATE(5230), 1, - aux_sym__delegation_specifiers_repeat1, + [55061] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5534), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 22, + ACTIONS(4183), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -522243,19 +535646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 30, + ACTIONS(4185), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -522274,22 +535673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52791] = 4, - ACTIONS(8375), 1, - anon_sym_LPAREN, + [55135] = 5, + ACTIONS(8502), 1, + anon_sym_COMMA, + STATE(5321), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 23, + ACTIONS(4633), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522297,59 +535698,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 29, - sym__automatic_semicolon, + ACTIONS(4635), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_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, - [52855] = 4, - ACTIONS(8377), 1, - anon_sym_LPAREN, + [55201] = 9, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5533), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 23, + ACTIONS(4160), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522357,48 +535766,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(4298), 29, - sym__automatic_semicolon, + ACTIONS(4162), 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, - [52919] = 3, + [55275] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 22, + ACTIONS(3274), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -522406,7 +535811,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, @@ -522416,13 +535820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5138), 31, - anon_sym_where, + ACTIONS(3270), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522453,85 +535858,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52981] = 3, + [55337] = 4, + ACTIONS(8450), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4505), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4507), 30, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4452), 31, + [55401] = 9, + ACTIONS(5582), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + STATE(5532), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4147), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4149), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55475] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7424), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4281), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_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, - [53043] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, + ACTIONS(4284), 24, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8289), 1, + 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, + [55543] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(4995), 1, + ACTIONS(8505), 1, + anon_sym_COLON, + STATE(5090), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5329), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 20, + ACTIONS(4229), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -522549,7 +536081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 27, + ACTIONS(4231), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522577,11 +536109,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53117] = 3, + [55615] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8507), 1, + anon_sym_COLON, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, + anon_sym_where, + STATE(5502), 1, + sym_type_parameters, + STATE(8382), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8732), 1, + sym_type_constraints, + STATE(9291), 1, + sym_enum_class_body, + STATE(9757), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3248), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [55721] = 6, + ACTIONS(4004), 1, + anon_sym_EQ, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4259), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4262), 24, + 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, + [55789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4582), 22, + ACTIONS(5147), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -522589,7 +536264,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, @@ -522599,13 +536273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4580), 31, - anon_sym_where, + ACTIONS(5145), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522636,18 +536311,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53179] = 3, + [55851] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8519), 1, + anon_sym_COLON, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(5492), 1, + sym_type_parameters, + STATE(8376), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8674), 1, + sym_type_constraints, + STATE(9272), 1, + sym_class_body, + STATE(9757), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3206), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [55957] = 4, + ACTIONS(8523), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4667), 21, + ACTIONS(4287), 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, @@ -522657,14 +536414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4665), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4289), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522695,18 +536452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53241] = 3, + [56021] = 4, + ACTIONS(8525), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4655), 21, + ACTIONS(4265), 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, @@ -522716,14 +536474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4653), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4267), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522754,217 +536512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53303] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5323), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4181), 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, - [53377] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - ACTIONS(8379), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5110), 1, - sym_function_body, - STATE(5533), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4122), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4124), 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, - [53453] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(5383), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4065), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4067), 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, - [53527] = 8, - ACTIONS(8043), 1, + [56085] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8480), 1, anon_sym_EQ, - ACTIONS(8381), 1, + ACTIONS(8527), 1, anon_sym_COLON, - STATE(5098), 1, + STATE(5076), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 21, + ACTIONS(4307), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -522986,7 +536548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 27, + ACTIONS(4309), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523014,71 +536576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53599] = 4, - ACTIONS(6806), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4318), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4321), 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, - [53663] = 3, + [56157] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4691), 21, + ACTIONS(3346), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -523095,14 +536597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4689), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(3344), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -523133,11 +536635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53725] = 3, + [56219] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 21, + ACTIONS(4852), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -523154,14 +536656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4591), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4850), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -523192,11 +536694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53787] = 3, + [56281] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 21, + ACTIONS(5201), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -523213,14 +536715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4587), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(5199), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -523251,28 +536753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53849] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, + [56343] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8480), 1, anon_sym_EQ, - ACTIONS(8383), 1, + ACTIONS(8529), 1, anon_sym_COLON, - STATE(5073), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5529), 1, - sym_type_constraints, + STATE(5163), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 20, + ACTIONS(4275), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -523290,13 +536789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 26, + ACTIONS(4277), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -523317,208 +536817,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53925] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, - STATE(5322), 1, - sym_type_constraints, + [56415] = 5, + ACTIONS(8531), 1, + anon_sym_SEMI, + ACTIONS(8533), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 20, + ACTIONS(4818), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 27, + ACTIONS(4820), 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, - [53999] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, - STATE(5381), 1, - sym_type_constraints, + [56481] = 5, + ACTIONS(8535), 1, + anon_sym_LT, + STATE(5484), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4189), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4128), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4090), 26, - sym_safe_nav, + [56547] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5155), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [54073] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5302), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4065), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5153), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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(4067), 27, + [56609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5151), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [54147] = 4, - ACTIONS(6810), 1, - anon_sym_LPAREN, + ACTIONS(5149), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [56671] = 4, + ACTIONS(8533), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4292), 23, + ACTIONS(4818), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -523528,7 +537073,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, @@ -523542,13 +537086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4295), 29, + ACTIONS(4820), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -523572,289 +537117,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54211] = 6, - ACTIONS(3818), 1, - anon_sym_EQ, - ACTIONS(7353), 1, - anon_sym_LPAREN, + [56735] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4318), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3282), 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(3278), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4321), 24, - sym__automatic_semicolon, - sym_safe_nav, + [56797] = 7, + ACTIONS(8539), 1, anon_sym_AT, + ACTIONS(8544), 1, + sym_label, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5345), 2, + sym_annotation, + aux_sym__statement_repeat1, + STATE(5561), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8542), 19, + sym__string_start, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_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, - [54279] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, - STATE(5379), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4159), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(8537), 28, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_this, + anon_sym_super, + anon_sym_for, anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4161), 26, - sym_safe_nav, + [56867] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4162), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [54353] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - ACTIONS(8385), 1, - anon_sym_COLON, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5528), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4065), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4160), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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(4067), 26, + [56929] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 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, - [54429] = 9, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4715), 1, - sym_function_body, - STATE(4728), 1, - sym__block, - STATE(5377), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1802), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_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(4181), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [56991] = 4, + ACTIONS(8547), 1, 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, - [54503] = 10, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - ACTIONS(8387), 1, - anon_sym_COLON, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5526), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 20, + ACTIONS(4892), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -523863,121 +537380,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 26, + ACTIONS(4894), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54579] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5300), 1, - sym_type_constraints, + [57055] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1798), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1796), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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(4090), 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, - [54653] = 9, - ACTIONS(5204), 1, + [57117] = 9, + ACTIONS(5582), 1, anon_sym_where, - ACTIONS(7961), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(4699), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(5374), 1, + STATE(5508), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 21, + ACTIONS(4299), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -523999,7 +537514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 26, + ACTIONS(4301), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -524026,89 +537541,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54727] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(6123), 1, - anon_sym_COLON, - STATE(4599), 1, - sym_type_constraints, - STATE(4822), 1, - sym_class_body, + [57191] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3115), 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(3113), 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(3198), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [57253] = 4, + ACTIONS(8549), 1, 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, - [54798] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5165), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 21, + ACTIONS(4874), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -524117,307 +537623,350 @@ 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(4472), 27, + ACTIONS(4876), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_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, - [54867] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8389), 1, - anon_sym_COLON, - STATE(4592), 1, - sym_type_constraints, - STATE(4808), 1, - sym_class_body, + [57317] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4323), 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(4321), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_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(4268), 26, - sym_safe_nav, + [57379] = 4, + ACTIONS(8551), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4876), 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, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_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, - [54938] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(4995), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5517), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4217), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4874), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4219), 26, + [57443] = 4, + ACTIONS(8553), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4894), 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_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_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, - [55011] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(6141), 1, - anon_sym_COLON, - STATE(4607), 1, - sym_type_constraints, - STATE(4822), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3194), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4892), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_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(3198), 26, - sym_safe_nav, + [57507] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5123), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [55082] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5502), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5121), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4181), 26, + [57569] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5177), 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, - [55155] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5468), 1, - sym_enum_class_body, + ACTIONS(5175), 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, + [57631] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 20, + ACTIONS(4465), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -524429,12 +537978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(4463), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524465,83 +538016,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55220] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, - STATE(5524), 1, - sym_type_constraints, + [57693] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5119), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5117), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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(4161), 26, + [57755] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4139), 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, - [55293] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5467), 1, - sym_enum_class_body, + ACTIONS(4137), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [57817] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 20, + ACTIONS(4646), 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, @@ -524553,12 +538155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4442), 30, + ACTIONS(4644), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524589,74 +538193,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55358] = 23, - ACTIONS(3234), 1, + [57879] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(4566), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8391), 1, - anon_sym_EQ, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8395), 1, - anon_sym_where, - ACTIONS(8405), 1, + ACTIONS(3226), 1, sym_property_modifier, - STATE(5484), 1, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(8555), 1, + anon_sym_COLON, + STATE(5520), 1, + sym_type_parameters, + STATE(8389), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8713), 1, sym_type_constraints, - STATE(5588), 1, - sym_property_delegate, - STATE(9189), 1, + STATE(9461), 1, + sym_class_body, + STATE(9757), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1782), 2, + ACTIONS(3238), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9029), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -524667,83 +538274,75 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [55459] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5526), 1, - sym_type_constraints, + [57985] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4361), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4359), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_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(4090), 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, - [55532] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5437), 1, - sym_enum_class_body, + [58047] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4274), 20, + ACTIONS(5079), 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, @@ -524755,12 +538354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4272), 30, + ACTIONS(5077), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524791,15 +538392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55597] = 5, - ACTIONS(8417), 1, - sym__automatic_semicolon, - STATE(5497), 1, - sym__semi, + [58109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8415), 20, + ACTIONS(4976), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -524815,12 +538413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8413), 30, + ACTIONS(4974), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524851,100 +538451,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55662] = 9, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - STATE(5528), 1, - sym_type_constraints, + [58171] = 6, + ACTIONS(7003), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, + ACTIONS(4267), 3, anon_sym_in, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4067), 26, + ACTIONS(4265), 4, 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, - [55735] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5357), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4510), 20, - sym__automatic_semicolon, + ACTIONS(4262), 18, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4508), 30, + ACTIONS(4259), 27, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524952,17 +538493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_in, anon_sym_null, anon_sym_if, - anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, - anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -524975,82 +538513,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55800] = 8, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8419), 1, + [58239] = 4, + ACTIONS(6918), 1, anon_sym_COLON, - STATE(4726), 1, - sym_function_body, - STATE(4728), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 21, - anon_sym_as, + ACTIONS(4009), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4286), 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, - [55871] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5424), 1, - sym_enum_class_body, + [58303] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4703), 20, + ACTIONS(5041), 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, @@ -525062,12 +538594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4701), 30, + ACTIONS(5039), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525098,19 +538632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55936] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5359), 1, - sym_class_body, + [58365] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4564), 20, + ACTIONS(5087), 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, @@ -525122,12 +538653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4562), 30, + ACTIONS(5085), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525158,83 +538691,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56001] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5147), 1, - sym_function_body, + [58427] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4441), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4439), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_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(4161), 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, - [56070] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, + [58489] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8421), 1, - anon_sym_COLON, - STATE(4638), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5470), 1, sym_type_constraints, - STATE(4655), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 21, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -525242,7 +538774,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, @@ -525256,13 +538787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 26, + ACTIONS(4149), 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, @@ -525283,23 +538815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56141] = 7, - ACTIONS(8043), 1, + [58563] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8557), 1, + anon_sym_COLON, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(5024), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5592), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 21, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -525317,14 +538854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 27, + ACTIONS(4185), 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, @@ -525345,19 +538881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56210] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5467), 1, - sym_class_body, + [58639] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 20, + ACTIONS(3422), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -525369,12 +538902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4442), 30, + ACTIONS(3420), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525405,139 +538940,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56275] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5393), 1, - sym_enum_class_body, + [58701] = 4, + STATE(5321), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3194), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4736), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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, - [56340] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4268), 20, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4738), 30, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4266), 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, - [56405] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5436), 1, - sym_enum_class_body, + [58765] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 20, + ACTIONS(5105), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -525549,12 +539021,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4429), 30, + ACTIONS(5103), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525585,82 +539059,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56470] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, + [58827] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(6143), 1, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_LT, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8561), 1, anon_sym_COLON, - STATE(4589), 1, + STATE(5496), 1, + sym_type_parameters, + STATE(8357), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8656), 1, sym_type_constraints, - STATE(4695), 1, - sym_class_body, + STATE(9461), 1, + sym_enum_class_body, + STATE(9757), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(3238), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3208), 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, - [56541] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5362), 1, - sym_class_body, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [58933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4683), 20, + ACTIONS(5109), 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, @@ -525672,12 +539161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4681), 30, + ACTIONS(5107), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525708,19 +539199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56606] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5368), 1, - sym_enum_class_body, + [58995] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 20, + ACTIONS(4357), 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, @@ -525732,12 +539220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3212), 30, + ACTIONS(4355), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525768,21 +539258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56671] = 8, - ACTIONS(5449), 1, + [59057] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5456), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8423), 1, - anon_sym_COLON, - STATE(4956), 1, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5464), 1, sym_type_constraints, - STATE(5094), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 20, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -525803,7 +539295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 27, + ACTIONS(4162), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525831,23 +539323,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56742] = 7, - ACTIONS(8043), 1, + [59131] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(4983), 1, - sym_function_body, - STATE(5099), 1, + ACTIONS(8563), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5580), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 21, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -525865,14 +539362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 27, + ACTIONS(4162), 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, @@ -525893,19 +539389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56811] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5393), 1, - sym_class_body, + [59207] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 20, + 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, @@ -525917,12 +539410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3194), 30, + ACTIONS(4567), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525953,19 +539448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56876] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5444), 1, - sym_class_body, + [59269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4731), 20, + ACTIONS(4800), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -525977,12 +539469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4729), 30, + ACTIONS(4798), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526013,23 +539507,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56941] = 7, - ACTIONS(8043), 1, + [59331] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5461), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 21, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -526047,7 +539544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 27, + ACTIONS(4185), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526075,19 +539572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57010] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5412), 1, - sym_class_body, + [59405] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4492), 20, + ACTIONS(4920), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -526099,12 +539593,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4490), 30, + ACTIONS(4918), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526135,19 +539631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57075] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5475), 1, - sym_class_body, + [59467] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4723), 20, + ACTIONS(4479), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -526159,12 +539652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4721), 30, + ACTIONS(4477), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526195,84 +539690,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57140] = 8, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8425), 1, - anon_sym_COLON, - STATE(4616), 1, - sym_type_constraints, - STATE(4655), 1, - sym_class_body, + [59529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4301), 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(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_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(4250), 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, - [57211] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, + [59591] = 10, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(6187), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8565), 1, anon_sym_COLON, - STATE(4967), 1, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5577), 1, sym_type_constraints, - STATE(5089), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 20, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -526293,14 +539788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 27, + ACTIONS(4149), 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, @@ -526321,99 +539815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57282] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(3150), 1, - anon_sym_while, - ACTIONS(8427), 1, - anon_sym_COLON, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8435), 1, - anon_sym_LT, - ACTIONS(8437), 1, - anon_sym_where, - STATE(5491), 1, - sym_type_parameters, - STATE(8351), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8837), 1, - sym_type_constraints, - STATE(9395), 1, - sym_enum_class_body, - STATE(9578), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [57387] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5420), 1, - sym_enum_class_body, + [59667] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 20, + ACTIONS(4495), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -526425,12 +539836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4248), 30, + ACTIONS(4493), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526461,21 +539874,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57452] = 8, - ACTIONS(5449), 1, + [59729] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5456), 1, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(6217), 1, - anon_sym_COLON, - STATE(4959), 1, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, + STATE(5457), 1, sym_type_constraints, - STATE(5123), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 20, + ACTIONS(4295), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -526496,7 +539911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 27, + ACTIONS(4297), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526524,329 +539939,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57523] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [59803] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4181), 27, + ACTIONS(4886), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [57592] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(4995), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4217), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4884), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4219), 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, - [57661] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5073), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [59865] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4118), 27, + ACTIONS(4218), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [57730] = 4, - ACTIONS(8439), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4300), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4216), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_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(4298), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_this, + anon_sym_super, sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [57793] = 8, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8441), 1, - anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4743), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4256), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4258), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [57864] = 8, - ACTIONS(7961), 1, + [59927] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8559), 1, anon_sym_EQ, - ACTIONS(8443), 1, + ACTIONS(8567), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(5091), 1, sym__block, - STATE(4795), 1, + STATE(5141), 1, sym_function_body, + STATE(5570), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 21, + ACTIONS(4137), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -526854,7 +540083,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, @@ -526868,13 +540096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 26, + ACTIONS(4139), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -526895,86 +540123,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57935] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(6171), 1, - anon_sym_COLON, - STATE(4914), 1, - sym_type_constraints, - STATE(5089), 1, - sym_class_body, + [60003] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1816), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1814), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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(3198), 27, + [60065] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1734), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [58006] = 7, - ACTIONS(8043), 1, + ACTIONS(1732), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [60127] = 10, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8289), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(4999), 1, + ACTIONS(8569), 1, + anon_sym_COLON, + STATE(5079), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5567), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 21, + ACTIONS(4173), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -526992,14 +540280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 27, + ACTIONS(4175), 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, @@ -527020,21 +540307,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [58075] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, + [60203] = 9, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8445), 1, - anon_sym_COLON, - STATE(4935), 1, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + STATE(5456), 1, sym_type_constraints, - STATE(5058), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 20, + ACTIONS(4299), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -527055,7 +540344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 27, + ACTIONS(4301), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527083,153 +540372,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [58146] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8447), 1, - anon_sym_COLON, - STATE(4975), 1, - sym_type_constraints, - STATE(5058), 1, - sym_class_body, + [60277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4968), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4966), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4250), 27, + [60339] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5101), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [58217] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(6149), 1, - anon_sym_COLON, - STATE(4973), 1, - sym_type_constraints, - STATE(5046), 1, - sym_enum_class_body, + ACTIONS(5099), 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, + [60401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4483), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4481), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_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(3216), 27, + [60463] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5193), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [58288] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8449), 1, - anon_sym_COLON, - STATE(4915), 1, - sym_type_constraints, - STATE(5015), 1, - sym_enum_class_body, + ACTIONS(5191), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + 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, + [60525] = 4, + ACTIONS(8571), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 20, + ACTIONS(4289), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -527238,63 +540631,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(4274), 27, + ACTIONS(4287), 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, - [58359] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(6121), 1, - anon_sym_COLON, - STATE(4613), 1, - sym_type_constraints, - STATE(4723), 1, - sym_enum_class_body, + [60589] = 4, + ACTIONS(8573), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 21, + ACTIONS(4267), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527302,210 +540691,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(3216), 26, + ACTIONS(4265), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [58430] = 23, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8395), 1, - anon_sym_where, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8451), 1, - anon_sym_EQ, - ACTIONS(8453), 1, - anon_sym_SEMI, - STATE(5480), 1, - sym_type_constraints, - STATE(5593), 1, - sym_property_delegate, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3272), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9185), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [58531] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3118), 1, - anon_sym_while, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8435), 1, - anon_sym_LT, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8455), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(5519), 1, - sym_type_parameters, - STATE(8388), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8816), 1, - sym_type_constraints, - STATE(9434), 1, - sym_class_body, - STATE(9578), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [58636] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5444), 1, - sym_enum_class_body, + [60653] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4731), 20, + ACTIONS(3290), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -527517,12 +540749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4729), 30, + ACTIONS(3286), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -527553,97 +540787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58701] = 23, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4741), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8395), 1, - anon_sym_where, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8459), 1, - anon_sym_EQ, - STATE(5523), 1, - sym_type_constraints, - STATE(5595), 1, - sym_property_delegate, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1772), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9083), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [58802] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5451), 1, - sym_class_body, + [60715] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3208), 20, + ACTIONS(4185), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -527655,12 +540808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3204), 30, + ACTIONS(4183), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -527691,160 +540846,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58867] = 8, - ACTIONS(5200), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_where, - ACTIONS(8461), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_type_constraints, - STATE(4814), 1, - sym_enum_class_body, + [60777] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4274), 26, - sym_safe_nav, + ACTIONS(4900), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [58938] = 23, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(4898), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(7501), 1, anon_sym_set, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8395), 1, - anon_sym_where, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8463), 1, - anon_sym_EQ, - ACTIONS(8465), 1, - anon_sym_SEMI, - STATE(5530), 1, - sym_type_constraints, - STATE(5599), 1, - sym_property_delegate, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9367), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [59039] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5420), 1, - sym_class_body, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [60839] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 20, + ACTIONS(4297), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -527856,12 +540926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4248), 30, + ACTIONS(4295), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -527892,15 +540964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59104] = 5, - ACTIONS(8471), 1, - sym__automatic_semicolon, - STATE(5518), 1, - sym__semi, + [60901] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8469), 20, + ACTIONS(1810), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -527916,12 +540985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8467), 30, + ACTIONS(1808), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -527952,100 +541023,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59169] = 23, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4737), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8395), 1, - anon_sym_where, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8473), 1, - anon_sym_EQ, - STATE(5494), 1, - sym_type_constraints, - STATE(5600), 1, - sym_property_delegate, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1756), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9125), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [59270] = 4, - ACTIONS(8475), 1, + [60963] = 4, + ACTIONS(6928), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 22, + ACTIONS(4281), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528053,58 +541046,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(4779), 29, + ACTIONS(4284), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59333] = 4, - ACTIONS(8477), 1, + [61027] = 4, + ACTIONS(6924), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 22, + ACTIONS(4259), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528112,336 +541106,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 29, + ACTIONS(4262), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59396] = 4, - ACTIONS(8479), 1, - anon_sym_LPAREN, + [61091] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4769), 29, - sym_safe_nav, + ACTIONS(4654), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [59459] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(3168), 1, - anon_sym_while, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8435), 1, - anon_sym_LT, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8481), 1, - anon_sym_COLON, - STATE(5510), 1, - sym_type_parameters, - STATE(8343), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8878), 1, - sym_type_constraints, - STATE(9461), 1, - sym_enum_class_body, - STATE(9578), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [59564] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5150), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4242), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4652), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4244), 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, - [59633] = 25, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(3150), 1, - anon_sym_while, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8435), 1, - anon_sym_LT, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(8483), 1, - anon_sym_COLON, - STATE(5483), 1, - sym_type_parameters, - STATE(8389), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8853), 1, - sym_type_constraints, - STATE(9395), 1, - sym_class_body, - STATE(9578), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [59738] = 5, - ACTIONS(5807), 1, - anon_sym_LBRACE, - STATE(5448), 1, - sym_enum_class_body, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61153] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4476), 20, + ACTIONS(4904), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -528453,12 +541223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4474), 30, + ACTIONS(4902), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528489,138 +541261,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59803] = 5, - ACTIONS(8485), 1, - anon_sym_SEMI, - ACTIONS(8487), 1, - anon_sym_else, + [61215] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4875), 29, - sym_safe_nav, + ACTIONS(4453), 23, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_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, - [59868] = 4, - ACTIONS(8487), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4873), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4451), 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_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_BANG, anon_sym_data, 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(4875), 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, - [59931] = 5, - ACTIONS(5793), 1, - anon_sym_LBRACE, - STATE(5468), 1, - sym_class_body, + [61277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 20, + ACTIONS(4908), 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, @@ -528632,12 +541341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(4906), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528668,73 +541379,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59996] = 8, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8489), 1, - anon_sym_COLON, - STATE(4935), 1, - sym_type_constraints, - STATE(5058), 1, - sym_enum_class_body, + [61339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5173), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5171), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4250), 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, - [60066] = 3, + [61401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4396), 21, + ACTIONS(4469), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528751,12 +541459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4394), 30, + ACTIONS(4467), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528787,11 +541497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60126] = 3, + [61463] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4723), 21, + ACTIONS(1792), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528808,12 +541518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4721), 30, + ACTIONS(1790), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528844,11 +541556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60186] = 3, + [61525] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5130), 21, + ACTIONS(121), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528865,12 +541577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5128), 30, + ACTIONS(123), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528901,11 +541615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60246] = 3, + [61587] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5106), 21, + ACTIONS(4776), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528922,12 +541636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5104), 30, + ACTIONS(4774), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528958,11 +541674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60306] = 3, + [61649] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4883), 21, + ACTIONS(5221), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528979,12 +541695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4881), 30, + ACTIONS(5219), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529015,88 +541733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60366] = 23, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(3272), 1, - anon_sym_while, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8491), 1, - anon_sym_EQ, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8495), 1, - anon_sym_where, - ACTIONS(8497), 1, - anon_sym_SEMI, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - STATE(5565), 1, - sym_type_constraints, - STATE(5621), 1, - sym_property_delegate, - STATE(9362), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9415), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [60466] = 3, + [61711] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4887), 21, + ACTIONS(5097), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529113,12 +541754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4885), 30, + ACTIONS(5095), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529149,11 +541792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60526] = 3, + [61773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4067), 21, + ACTIONS(4149), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529170,12 +541813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4065), 30, + ACTIONS(4147), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529206,11 +541851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60586] = 3, + [61835] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4859), 21, + ACTIONS(5207), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529227,12 +541872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4857), 30, + ACTIONS(5205), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529263,87 +541910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60646] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8507), 1, - anon_sym_COMMA, - ACTIONS(8509), 1, - anon_sym_RPAREN, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(8846), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [60744] = 3, + [61897] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 21, + ACTIONS(5215), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529360,12 +541931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1770), 30, + ACTIONS(5213), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529396,11 +541969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60804] = 3, + [61959] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4961), 21, + ACTIONS(5211), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529417,12 +541990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4959), 30, + ACTIONS(5209), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529453,11 +542028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60864] = 3, + [62021] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4274), 21, + ACTIONS(4848), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529474,12 +542049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4272), 30, + ACTIONS(4846), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529510,27 +542087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60924] = 7, - ACTIONS(7961), 1, + [62083] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(4664), 1, - sym_function_body, - STATE(4728), 1, + STATE(5091), 1, sym__block, + STATE(5141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 21, + ACTIONS(4137), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529544,13 +542121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4468), 26, + ACTIONS(4139), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -529571,15 +542149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60992] = 5, - ACTIONS(8533), 1, - anon_sym_COMMA, - STATE(5230), 1, - aux_sym__delegation_specifiers_repeat1, + [62152] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 22, + ACTIONS(4307), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -529588,7 +542170,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, @@ -529602,14 +542183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 27, + ACTIONS(4309), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -529630,141 +542211,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61056] = 3, + [62221] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8575), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5076), 21, + ACTIONS(4216), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4218), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5074), 30, - anon_sym_object, - anon_sym_fun, + [62292] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6316), 1, + anon_sym_COLON, + STATE(4981), 1, + sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3286), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [61116] = 3, + ACTIONS(3290), 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, + [62363] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8577), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5072), 21, + ACTIONS(4321), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4323), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5070), 30, - anon_sym_object, - anon_sym_fun, + [62434] = 23, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8579), 1, + anon_sym_EQ, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8585), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(5549), 1, + sym_type_constraints, + STATE(5648), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [62535] = 4, + ACTIONS(8603), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4267), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_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, - [61176] = 7, - ACTIONS(7961), 1, + ACTIONS(4265), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62598] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8480), 1, anon_sym_EQ, - STATE(4697), 1, - sym_function_body, - STATE(4728), 1, + STATE(5091), 1, sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 21, + ACTIONS(4447), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529778,13 +542571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 26, + ACTIONS(4449), 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, @@ -529805,19 +542599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61244] = 7, - ACTIONS(7961), 1, + [62667] = 8, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8442), 1, anon_sym_EQ, - STATE(4649), 1, + ACTIONS(8605), 1, + anon_sym_COLON, + STATE(4763), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 21, + ACTIONS(4307), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -529839,7 +542635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 26, + ACTIONS(4309), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -529866,33 +542662,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61312] = 3, + [62738] = 5, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(5440), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5068), 21, - sym__automatic_semicolon, + ACTIONS(4155), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5066), 30, + ACTIONS(4153), 30, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529900,20 +542700,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, @@ -529923,25 +542722,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61372] = 6, - ACTIONS(5456), 1, + [62803] = 23, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8609), 1, + anon_sym_EQ, + STATE(5541), 1, + sym_type_constraints, + STATE(5633), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9460), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [62904] = 8, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8535), 1, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8611), 1, anon_sym_COLON, - STATE(5132), 1, - sym_class_body, + STATE(4800), 1, + sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4520), 21, + ACTIONS(4275), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529955,14 +542836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4522), 27, - sym__automatic_semicolon, + ACTIONS(4277), 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, @@ -529983,22 +542863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61438] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4694), 1, - sym_function_body, - STATE(4728), 1, - sym__block, + [62975] = 4, + ACTIONS(8613), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 21, + ACTIONS(4289), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530017,15 +542892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 26, + ACTIONS(4287), 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, @@ -530044,64 +542922,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61506] = 14, - ACTIONS(8537), 1, + [63038] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8556), 1, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8615), 1, + anon_sym_EQ, + ACTIONS(8617), 1, + anon_sym_SEMI, + STATE(5594), 1, + sym_type_constraints, + STATE(5634), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8542), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8550), 2, + ACTIONS(3360), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8565), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8559), 3, + STATE(9311), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8562), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8553), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8547), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8544), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8540), 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(5378), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -530112,28 +543000,84 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [61588] = 7, - ACTIONS(7961), 1, + [63139] = 5, + ACTIONS(8619), 1, + anon_sym_DOT, + STATE(5440), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4715), 1, - sym_function_body, - STATE(4728), 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(4166), 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, + [63204] = 5, + ACTIONS(8622), 1, + anon_sym_SEMI, + ACTIONS(8624), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 21, + ACTIONS(4818), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -530146,15 +543090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 26, + ACTIONS(4820), 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, @@ -530173,15 +543120,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61656] = 5, - ACTIONS(8533), 1, - anon_sym_COMMA, - STATE(5370), 1, - aux_sym__delegation_specifiers_repeat1, + [63269] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4181), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + 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(4179), 31, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [63330] = 5, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(5435), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 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(4193), 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, + [63395] = 4, + ACTIONS(8624), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4576), 22, + ACTIONS(4818), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -530191,7 +543254,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, @@ -530204,16 +543266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4578), 27, + ACTIONS(4820), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -530232,19 +543297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61720] = 7, - ACTIONS(7961), 1, + [63458] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4771), 1, - sym_function_body, + ACTIONS(6336), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 21, + ACTIONS(3278), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -530252,7 +543319,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, @@ -530266,13 +543332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 26, + ACTIONS(3282), 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, @@ -530293,19 +543360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61788] = 5, - ACTIONS(8568), 1, - anon_sym_by, - STATE(5013), 1, - sym_value_arguments, + [63529] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6350), 1, + anon_sym_COLON, + STATE(5049), 1, + sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 21, + ACTIONS(3278), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530323,12 +543395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 28, + ACTIONS(3282), 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, @@ -530352,19 +543423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61852] = 7, - ACTIONS(7961), 1, + [63600] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4832), 1, - sym_function_body, + ACTIONS(8626), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 21, + ACTIONS(4327), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -530372,7 +543445,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, @@ -530386,13 +543458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 26, + ACTIONS(4329), 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, @@ -530411,81 +543484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [61920] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5134), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5132), 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, - [61980] = 7, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4795), 1, - sym_function_body, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63671] = 4, + ACTIONS(8628), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 21, + ACTIONS(4874), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -530504,15 +543515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 26, + ACTIONS(4876), 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, @@ -530531,21 +543545,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62048] = 8, - ACTIONS(8043), 1, + [63734] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - ACTIONS(8570), 1, + ACTIONS(6250), 1, anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5160), 1, - sym_function_body, + STATE(4624), 1, + sym_type_constraints, + STATE(4759), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, + ACTIONS(3270), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -530553,6 +543567,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, @@ -530566,13 +543581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 26, - sym__automatic_semicolon, + ACTIONS(3274), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -530593,105 +543608,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62118] = 23, - ACTIONS(1782), 1, - anon_sym_while, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4909), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8495), 1, - anon_sym_where, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - ACTIONS(8572), 1, - anon_sym_EQ, - STATE(5552), 1, - sym_type_constraints, - STATE(5612), 1, - sym_property_delegate, - STATE(9362), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9421), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [62218] = 8, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - ACTIONS(8574), 1, - anon_sym_COLON, - STATE(5099), 1, - sym__block, - STATE(5150), 1, - sym_function_body, + [63805] = 4, + ACTIONS(8630), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 20, + ACTIONS(4892), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530705,15 +543637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 26, - sym__automatic_semicolon, + ACTIONS(4894), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -530732,17 +543667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62288] = 6, - ACTIONS(5456), 1, + [63868] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8576), 1, - anon_sym_COLON, - STATE(5100), 1, - sym_class_body, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 21, + ACTIONS(4443), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -530764,7 +543701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4530), 27, + ACTIONS(4445), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530792,130 +543729,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62354] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4969), 21, - sym__automatic_semicolon, - sym__string_start, + [63937] = 23, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4967), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, anon_sym_get, + ACTIONS(7647), 1, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [62414] = 23, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, anon_sym_where, - ACTIONS(8578), 1, - anon_sym_COLON, - STATE(8305), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8721), 1, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8632), 1, + anon_sym_EQ, + STATE(5575), 1, sym_type_constraints, - STATE(9162), 1, - sym_class_body, - STATE(9702), 1, + STATE(5640), 1, + sym_property_delegate, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 2, + ACTIONS(1804), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7507), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -530926,73 +543807,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62514] = 23, - ACTIONS(1756), 1, - anon_sym_while, - ACTIONS(3234), 1, + [64038] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(4841), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, + ACTIONS(3206), 1, + anon_sym_while, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8495), 1, + ACTIONS(8634), 1, + anon_sym_COLON, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - ACTIONS(8580), 1, - anon_sym_EQ, - STATE(5548), 1, + STATE(5597), 1, + sym_type_parameters, + STATE(8407), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9064), 1, sym_type_constraints, - STATE(5611), 1, - sym_property_delegate, - STATE(9362), 1, + STATE(9529), 1, sym_modifiers, + STATE(9882), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9559), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -531003,320 +543887,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62614] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4250), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4248), 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, - [62674] = 22, - ACTIONS(8505), 1, + [64143] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8582), 1, - anon_sym_COMMA, - ACTIONS(8584), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(8776), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [62772] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4997), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4995), 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, - [62832] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4973), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4971), 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, - [62892] = 23, - ACTIONS(1772), 1, + ACTIONS(3248), 1, anon_sym_while, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(5090), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8495), 1, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - ACTIONS(8586), 1, - anon_sym_EQ, - STATE(5554), 1, + ACTIONS(8646), 1, + anon_sym_COLON, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(5586), 1, + sym_type_parameters, + STATE(8420), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(8939), 1, sym_type_constraints, - STATE(5609), 1, - sym_property_delegate, - STATE(9362), 1, + STATE(9501), 1, + sym_enum_class_body, + STATE(9529), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9534), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -531327,319 +543967,198 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62992] = 5, - ACTIONS(8588), 1, - anon_sym_LT, - STATE(5564), 1, - sym_type_arguments, + [64248] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8650), 1, + anon_sym_COLON, + STATE(4676), 1, + sym_type_constraints, + STATE(4891), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4108), 31, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4327), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [63056] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8590), 1, - anon_sym_COMMA, - ACTIONS(8592), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(8817), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [63154] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4492), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4329), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4490), 30, - anon_sym_object, - anon_sym_fun, + [64319] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5174), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4439), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [63214] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4985), 21, + ACTIONS(4441), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4983), 30, - anon_sym_object, - anon_sym_fun, + [64388] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4299), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [63274] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4090), 21, + ACTIONS(4301), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4088), 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, - [63334] = 4, - ACTIONS(6924), 1, - anon_sym_COLON, + [64457] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 19, + ACTIONS(4009), 21, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -531654,12 +544173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3818), 31, + ACTIONS(4004), 31, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -531691,525 +544212,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63396] = 3, + [64518] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6284), 1, + anon_sym_COLON, + STATE(4659), 1, + sym_type_constraints, + STATE(4748), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1756), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(1754), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(3278), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63456] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3216), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3282), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3212), 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, - [63516] = 3, + [64589] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(6298), 1, + anon_sym_COLON, + STATE(4621), 1, + sym_type_constraints, + STATE(4748), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4921), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4919), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(3278), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63576] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1766), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3282), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(1764), 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, - [63636] = 3, + [64660] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5037), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4295), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [63696] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5118), 21, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4297), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5116), 30, - anon_sym_object, - anon_sym_fun, + [64729] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6352), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3270), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [63756] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5102), 21, + ACTIONS(3274), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5100), 30, - anon_sym_object, - anon_sym_fun, + [64800] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + STATE(5577), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4147), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [63816] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5084), 21, + ACTIONS(4149), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5082), 30, - anon_sym_object, - anon_sym_fun, + [64873] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4183), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [63876] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4510), 21, + ACTIONS(4185), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4508), 30, - anon_sym_object, - anon_sym_fun, + [64942] = 8, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + ACTIONS(8652), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4802), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4229), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63936] = 3, + ACTIONS(4231), 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, + [65013] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4118), 21, - sym__automatic_semicolon, + ACTIONS(8446), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -532225,12 +544672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4116), 30, + ACTIONS(8444), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532261,19 +544710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63996] = 7, - ACTIONS(7961), 1, + [65074] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(4693), 1, - sym_function_body, - STATE(4728), 1, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, + STATE(5580), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 21, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -532281,7 +544734,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, @@ -532295,13 +544747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4067), 26, + ACTIONS(4162), 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, @@ -532322,39 +544774,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64064] = 6, - ACTIONS(6997), 1, - anon_sym_LPAREN, + [65147] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8654), 1, + anon_sym_COLON, + STATE(4672), 1, + sym_type_constraints, + STATE(4809), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 3, + ACTIONS(4216), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, - ACTIONS(4298), 4, - sym__automatic_semicolon, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4218), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - ACTIONS(4295), 16, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65218] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8658), 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(4292), 27, + ACTIONS(8656), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532362,14 +544872,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, @@ -532382,24 +544895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64130] = 8, - ACTIONS(8043), 1, + [65279] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8480), 1, anon_sym_EQ, - ACTIONS(8594), 1, - anon_sym_COLON, - STATE(5098), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 20, + ACTIONS(4160), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -532417,13 +544929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 26, + ACTIONS(4162), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -532444,19 +544957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64200] = 7, - ACTIONS(7961), 1, + [65348] = 8, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4776), 1, - sym_function_body, + ACTIONS(8660), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4809), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 21, + ACTIONS(4216), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -532478,7 +544993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 26, + ACTIONS(4218), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -532505,479 +545020,677 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64268] = 6, - ACTIONS(7012), 1, - anon_sym_LPAREN, + [65419] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5220), 1, + sym_function_body, + STATE(5592), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 3, + ACTIONS(4183), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, anon_sym_in, anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, - ACTIONS(4324), 4, - sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4321), 16, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4318), 27, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_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, - [64334] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4161), 21, + ACTIONS(4185), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4159), 30, - anon_sym_object, - anon_sym_fun, + [65492] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, + STATE(5583), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4295), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [64394] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4444), 21, + ACTIONS(4297), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4442), 30, - anon_sym_object, - anon_sym_fun, + [65565] = 23, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5265), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8583), 1, + anon_sym_where, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8662), 1, + anon_sym_EQ, + STATE(5584), 1, + sym_type_constraints, + STATE(5636), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9110), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65666] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(6300), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_constraints, + STATE(4786), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3286), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [64454] = 7, - ACTIONS(8598), 1, + ACTIONS(3290), 26, + sym_safe_nav, anon_sym_AT, - ACTIONS(8603), 1, - sym_label, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5421), 2, - sym_annotation, - aux_sym__statement_repeat1, - STATE(5569), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8601), 17, - sym__string_start, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(8596), 28, - anon_sym_object, - anon_sym_fun, + [65737] = 8, + ACTIONS(5578), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_where, + ACTIONS(8664), 1, + anon_sym_COLON, + STATE(4634), 1, + sym_type_constraints, + STATE(4846), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - 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, - [64522] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4891), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4323), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4889), 30, - anon_sym_object, - anon_sym_fun, + [65808] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3238), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8666), 1, + anon_sym_COLON, + STATE(5569), 1, + sym_type_parameters, + STATE(8449), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9051), 1, + sym_type_constraints, + STATE(9529), 1, + sym_modifiers, + STATE(9814), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65913] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5178), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4147), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [64582] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4831), 21, + ACTIONS(4149), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4829), 30, - anon_sym_object, - anon_sym_fun, + [65982] = 9, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5073), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + STATE(5563), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4299), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [64642] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5043), 21, + ACTIONS(4301), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5041), 30, - anon_sym_object, - anon_sym_fun, + [66055] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8668), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_constraints, + STATE(5106), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [64702] = 23, - ACTIONS(3114), 1, + ACTIONS(4218), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66126] = 25, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(3138), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8343), 1, + ACTIONS(3238), 1, + anon_sym_while, + ACTIONS(8636), 1, anon_sym_constructor, - ACTIONS(8347), 1, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8642), 1, + anon_sym_LT, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8359), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8670), 1, anon_sym_COLON, - STATE(8321), 1, + STATE(5564), 1, + sym_type_parameters, + STATE(8448), 1, sym_primary_constructor, - STATE(8468), 1, + STATE(8733), 1, sym__class_parameters, - STATE(8578), 1, + STATE(9017), 1, sym_type_constraints, - STATE(9162), 1, - sym_enum_class_body, - STATE(9702), 1, + STATE(9529), 1, sym_modifiers, + STATE(9814), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7507), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -532988,54 +545701,176 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [64802] = 3, + [66231] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4757), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4147), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4149), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66299] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4881), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4443), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4445), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66367] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4797), 21, - sym__automatic_semicolon, + ACTIONS(4337), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4795), 30, + ACTIONS(4335), 31, + anon_sym_val, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_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, @@ -533045,72 +545880,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64862] = 22, - ACTIONS(8505), 1, + [66427] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4479), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4812), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4814), 27, + sym_safe_nav, anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(8608), 1, + [66489] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8676), 1, anon_sym_COMMA, - ACTIONS(8610), 1, + ACTIONS(8678), 1, anon_sym_RPAREN, - STATE(6123), 1, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(8802), 1, + STATE(9086), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -533121,54 +546015,54 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [64960] = 3, + [66589] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(201), 21, - sym__automatic_semicolon, + ACTIONS(4315), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(203), 30, + ACTIONS(4313), 31, + anon_sym_val, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_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, @@ -533178,112 +546072,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65020] = 4, + [66649] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4699), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4396), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4817), 22, + ACTIONS(4299), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4819), 27, + ACTIONS(4301), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65082] = 3, + [66717] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 21, - sym__automatic_semicolon, + ACTIONS(4319), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5033), 30, + ACTIONS(4317), 31, + anon_sym_val, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_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, @@ -533293,186 +546190,458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65142] = 3, + [66777] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8704), 1, + anon_sym_COMMA, + ACTIONS(8706), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9008), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4514), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4512), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66877] = 23, + ACTIONS(8672), 1, sym__alpha_identifier, - [65202] = 3, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8708), 1, + anon_sym_COMMA, + ACTIONS(8710), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8935), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3342), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66977] = 23, + ACTIONS(3202), 1, anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, anon_sym_LBRACE, + ACTIONS(8712), 1, + anon_sym_COLON, + STATE(8383), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8655), 1, + sym_type_constraints, + STATE(9445), 1, + sym_class_body, + STATE(9757), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3274), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3340), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67077] = 23, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5322), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8714), 1, + anon_sym_EQ, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + STATE(5607), 1, + sym_type_constraints, + STATE(5656), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9565), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67177] = 23, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + ACTIONS(8724), 1, + anon_sym_EQ, + STATE(5609), 1, + sym_type_constraints, + STATE(5668), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9522), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67277] = 23, + ACTIONS(8672), 1, sym__alpha_identifier, - [65262] = 22, - ACTIONS(8505), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8612), 1, + ACTIONS(8726), 1, anon_sym_COMMA, - ACTIONS(8614), 1, + ACTIONS(8728), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(8828), 1, + STATE(8981), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -533483,205 +546652,377 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [65360] = 3, + [67377] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8730), 1, + anon_sym_COLON, + STATE(8367), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8722), 1, + sym_type_constraints, + STATE(9418), 1, + sym_enum_class_body, + STATE(9757), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1782), 21, + ACTIONS(3282), 2, sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(1780), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67477] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8732), 1, + anon_sym_COLON, + STATE(5172), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4497), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [65420] = 4, - ACTIONS(8616), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4769), 20, + ACTIONS(4499), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67543] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(4767), 30, + ACTIONS(8734), 1, + anon_sym_COMMA, + ACTIONS(8736), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8984), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67643] = 14, + ACTIONS(8738), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8751), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8766), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8760), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8763), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8754), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8748), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8745), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8741), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + STATE(5499), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67725] = 5, + ACTIONS(8769), 1, + anon_sym_by, + STATE(5127), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4505), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, anon_sym_in, - anon_sym_null, - anon_sym_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, - [65482] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4703), 21, + ACTIONS(4507), 28, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4701), 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, - [65542] = 3, + [67789] = 5, + ACTIONS(8771), 1, + anon_sym_LPAREN, + STATE(5593), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4476), 21, - sym__automatic_semicolon, + ACTIONS(7089), 19, 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, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4474), 30, + ACTIONS(7087), 30, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533689,20 +547030,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, @@ -533712,54 +547052,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65602] = 3, + [67853] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8774), 1, + anon_sym_COLON, + STATE(8393), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8653), 1, + sym_type_constraints, + STATE(9402), 1, + sym_enum_class_body, + STATE(9757), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4219), 21, + ACTIONS(3290), 2, sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67953] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_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, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4217), 30, + ACTIONS(4166), 31, + anon_sym_val, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, sym_label, - anon_sym_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, @@ -533769,206 +547186,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65662] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8618), 1, - anon_sym_COMMA, - ACTIONS(8620), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(8990), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [65760] = 3, + [68013] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8776), 1, + anon_sym_COLON, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 21, + ACTIONS(4307), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(1790), 30, - anon_sym_object, - anon_sym_fun, + [68083] = 8, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8778), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5163), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4275), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [65820] = 23, - ACTIONS(3114), 1, + ACTIONS(4277), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8347), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(8351), 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, + [68153] = 8, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8622), 1, + ACTIONS(8780), 1, anon_sym_COLON, - STATE(8310), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8713), 1, + STATE(5057), 1, sym_type_constraints, - STATE(9105), 1, - sym_enum_class_body, - STATE(9702), 1, - sym_modifiers, + STATE(5102), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 2, + ACTIONS(4327), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4329), 26, sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(7507), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68223] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8784), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9072), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -533979,21 +547449,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [65920] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, + [68323] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(6257), 1, - anon_sym_COLON, - STATE(4959), 1, - sym_type_constraints, - STATE(5123), 1, - sym_class_body, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4838), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3204), 20, + ACTIONS(4439), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -534001,6 +547469,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, @@ -534014,13 +547483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3208), 26, - sym__automatic_semicolon, + ACTIONS(4441), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -534041,292 +547510,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65990] = 3, + [68391] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4886), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3041), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3039), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4447), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [66050] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4917), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4449), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4915), 30, - anon_sym_object, - anon_sym_fun, + [68459] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8786), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [66110] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4895), 21, + ACTIONS(4351), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4893), 30, - anon_sym_object, - anon_sym_fun, + [68525] = 5, + ACTIONS(8788), 1, + anon_sym_COMMA, + STATE(5321), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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, - [66170] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3198), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4738), 27, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3194), 30, - anon_sym_object, - anon_sym_fun, + [68589] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8790), 1, + anon_sym_COMMA, + ACTIONS(8792), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8834), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [66230] = 14, - ACTIONS(3114), 1, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68689] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8628), 1, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + ACTIONS(8794), 1, + anon_sym_EQ, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(5608), 1, + sym_type_constraints, + STATE(5664), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7507), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8626), 2, - anon_sym_val, - anon_sym_var, - STATE(5677), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + STATE(9806), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8624), 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(5378), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -534337,129 +547844,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66312] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4431), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4429), 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, + [68789] = 23, + ACTIONS(8672), 1, sym__alpha_identifier, - [66372] = 22, - ACTIONS(8505), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8630), 1, + ACTIONS(8798), 1, anon_sym_COMMA, - ACTIONS(8632), 1, + ACTIONS(8800), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(8739), 1, + STATE(8835), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -534470,186 +547921,188 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66470] = 3, + [68889] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6398), 1, + anon_sym_COLON, + STATE(5049), 1, + sym_type_constraints, + STATE(5118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4761), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4759), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(3278), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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, - [66530] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4268), 21, + ACTIONS(3282), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4266), 30, - anon_sym_object, - anon_sym_fun, + [68959] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(8802), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_constraints, + STATE(5231), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4321), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [66590] = 22, - ACTIONS(8505), 1, + ACTIONS(4323), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, + 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, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(8872), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, + [69029] = 14, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(8808), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + ACTIONS(8806), 2, + anon_sym_val, + anon_sym_var, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + ACTIONS(8804), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5499), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -534660,21 +548113,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66688] = 8, - ACTIONS(5449), 1, + [69111] = 8, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(5456), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8638), 1, + ACTIONS(6384), 1, anon_sym_COLON, - STATE(4956), 1, + STATE(5029), 1, sym_type_constraints, - STATE(5094), 1, + STATE(5118), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 20, + ACTIONS(3278), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -534695,7 +548148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4268), 26, + ACTIONS(3282), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -534722,249 +548175,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66758] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4981), 21, - sym__automatic_semicolon, - sym__string_start, + [69181] = 23, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4979), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(3360), 1, + anon_sym_while, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [66818] = 3, + ACTIONS(8810), 1, + anon_sym_EQ, + ACTIONS(8812), 1, + anon_sym_SEMI, + STATE(5612), 1, + sym_type_constraints, + STATE(5655), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4863), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4861), 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, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9870), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [66878] = 3, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69281] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8509), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(8814), 1, + anon_sym_COLON, + STATE(8399), 1, + sym_primary_constructor, + STATE(8563), 1, + sym__class_parameters, + STATE(8719), 1, + sym_type_constraints, + STATE(9418), 1, + sym_class_body, + STATE(9757), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 21, + ACTIONS(3282), 2, sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4179), 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, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7657), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7659), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7655), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5517), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69381] = 23, + ACTIONS(8672), 1, sym__alpha_identifier, - [66938] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5126), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(8674), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5124), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8816), 1, + anon_sym_COMMA, + ACTIONS(8818), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9060), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [66998] = 8, - ACTIONS(5445), 1, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69481] = 8, + ACTIONS(5770), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, + ACTIONS(5776), 1, anon_sym_where, - ACTIONS(6251), 1, + ACTIONS(8820), 1, anon_sym_COLON, - STATE(4967), 1, + STATE(4972), 1, sym_type_constraints, - STATE(5089), 1, + STATE(5106), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 20, + ACTIONS(4216), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -534985,7 +548441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 26, + ACTIONS(4218), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -535012,245 +548468,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67068] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1698), 21, - sym__automatic_semicolon, - sym__string_start, + [69551] = 23, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(1696), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8718), 1, + anon_sym_where, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 1, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67128] = 4, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4506), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4905), 22, - anon_sym_as, + ACTIONS(8822), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4907), 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, - [67190] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3208), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3204), 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, - [67250] = 23, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(8343), 1, - anon_sym_constructor, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8640), 1, - anon_sym_COLON, - STATE(8323), 1, - sym_primary_constructor, - STATE(8468), 1, - sym__class_parameters, - STATE(8674), 1, + STATE(5621), 1, sym_type_constraints, - STATE(9342), 1, - sym_class_body, - STATE(9702), 1, + STATE(5669), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3208), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7507), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + STATE(9599), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -535261,136 +548545,78 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67350] = 4, - ACTIONS(8642), 1, - anon_sym_LPAREN, + [69651] = 5, + ACTIONS(8788), 1, + anon_sym_COMMA, + STATE(5511), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4779), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4777), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4684), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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, - [67412] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3280), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4686), 27, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3278), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67472] = 8, - ACTIONS(5445), 1, + [69715] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(8644), 1, - anon_sym_COLON, - STATE(4915), 1, - sym_type_constraints, - STATE(5015), 1, - sym_enum_class_body, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4763), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 20, + ACTIONS(4307), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -535398,6 +548624,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, @@ -535411,13 +548638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4274), 26, - sym__automatic_semicolon, + ACTIONS(4309), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -535438,21 +548665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67542] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, + [69783] = 8, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(6239), 1, + ACTIONS(8559), 1, + anon_sym_EQ, + ACTIONS(8824), 1, anon_sym_COLON, - STATE(4914), 1, - sym_type_constraints, - STATE(5089), 1, - sym_class_body, + STATE(5090), 1, + sym_function_body, + STATE(5091), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3194), 20, + ACTIONS(4229), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -535473,7 +548700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3198), 26, + ACTIONS(4231), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -535500,575 +548727,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67612] = 3, + [69853] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4871), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 21, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4423), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4137), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [67672] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4731), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4139), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4729), 30, - anon_sym_object, - anon_sym_fun, + [69921] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8826), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5106), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [67732] = 4, - ACTIONS(8646), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4324), 20, + ACTIONS(4218), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4326), 30, - anon_sym_object, - anon_sym_fun, + [69991] = 8, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3270), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [67794] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8648), 1, - anon_sym_COMMA, - ACTIONS(8650), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(8889), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [67892] = 4, - ACTIONS(8652), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4298), 20, + ACTIONS(3274), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4300), 30, - anon_sym_object, - anon_sym_fun, + [70061] = 8, + ACTIONS(5770), 1, + anon_sym_LBRACE, + ACTIONS(5776), 1, + anon_sym_where, + ACTIONS(6372), 1, + anon_sym_COLON, + STATE(4981), 1, + sym_type_constraints, + STATE(5246), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3286), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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, - [67954] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4506), 21, + ACTIONS(3290), 26, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4504), 30, - anon_sym_object, - anon_sym_fun, + [70131] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(5020), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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, - [68014] = 23, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8495), 1, - anon_sym_where, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - ACTIONS(8654), 1, - anon_sym_EQ, - ACTIONS(8656), 1, - anon_sym_SEMI, - STATE(5560), 1, - sym_type_constraints, - STATE(5613), 1, - sym_property_delegate, - STATE(9362), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9399), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68114] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4753), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(5022), 27, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4751), 30, - anon_sym_object, - anon_sym_fun, + [70193] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4730), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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, - [68174] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4757), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4162), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4755), 30, - anon_sym_object, - anon_sym_fun, + [70261] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4775), 1, + sym_function_body, + STATE(4800), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4183), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, 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, - [68234] = 8, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(5456), 1, + ACTIONS(4185), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70329] = 7, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_COLON, - STATE(4975), 1, - sym_type_constraints, - STATE(5058), 1, - sym_class_body, + ACTIONS(8442), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 20, + ACTIONS(4295), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -536076,6 +549174,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, @@ -536089,13 +549188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 26, - sym__automatic_semicolon, + ACTIONS(4297), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -536116,338 +549215,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68304] = 8, - ACTIONS(5445), 1, + [70397] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_where, - ACTIONS(6233), 1, - anon_sym_COLON, - STATE(4973), 1, - sym_type_constraints, - STATE(5046), 1, - sym_enum_class_body, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7191), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [70456] = 5, + ACTIONS(4259), 1, + anon_sym_while, + ACTIONS(8828), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 20, + ACTIONS(4004), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 26, - sym__automatic_semicolon, + ACTIONS(4009), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_STAR, + 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_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68374] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8660), 1, - anon_sym_RBRACE, - ACTIONS(8662), 1, - anon_sym_SEMI, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8216), 1, - sym_modifiers, - STATE(8299), 1, - sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9364), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68471] = 4, - ACTIONS(4394), 1, - anon_sym_while, + [70519] = 6, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8831), 1, + anon_sym_COLON, + STATE(4774), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4817), 22, + ACTIONS(4497), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4819), 27, + ACTIONS(4499), 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, - [68532] = 21, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8463), 1, - anon_sym_EQ, - ACTIONS(8465), 1, - anon_sym_SEMI, - STATE(5599), 1, - sym_property_delegate, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9367), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68627] = 21, - ACTIONS(8505), 1, + [70584] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8664), 1, + ACTIONS(8833), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -536458,15 +549463,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68722] = 5, - ACTIONS(8666), 1, + [70681] = 5, + ACTIONS(8835), 1, anon_sym_COMMA, - STATE(5482), 1, + STATE(5539), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4580), 21, + ACTIONS(4633), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -536488,7 +549493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4582), 27, + ACTIONS(4635), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -536516,72 +549521,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68785] = 23, - ACTIONS(3114), 1, + [70744] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(3138), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(3198), 1, - anon_sym_while, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(8669), 1, - anon_sym_COLON, - STATE(8342), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8874), 1, - sym_type_constraints, - STATE(9413), 1, - sym_class_body, - STATE(9578), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8838), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7507), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -536592,70 +549596,70 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68884] = 21, - ACTIONS(3234), 1, + [70841] = 21, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(4741), 1, + ACTIONS(5265), 1, anon_sym_SEMI, - ACTIONS(7499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8393), 1, + ACTIONS(8581), 1, anon_sym_by, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8459), 1, + ACTIONS(8662), 1, anon_sym_EQ, - STATE(5595), 1, + STATE(5636), 1, sym_property_delegate, - STATE(9189), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 2, + ACTIONS(1792), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9083), 2, + STATE(9110), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -536666,88 +549670,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68979] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8671), 1, - anon_sym_RBRACE, - ACTIONS(8673), 1, - anon_sym_SEMI, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8216), 1, - sym_modifiers, - STATE(8299), 1, - sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9331), 1, - sym__enum_entries, + [70936] = 5, + ACTIONS(4281), 1, + anon_sym_while, + ACTIONS(8840), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, + ACTIONS(4004), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + 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(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69076] = 4, - STATE(5482), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4009), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70999] = 5, + ACTIONS(8843), 1, + anon_sym_COMMA, + STATE(5539), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 21, + ACTIONS(4736), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -536769,7 +549758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 28, + ACTIONS(4738), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -536777,7 +549766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -536798,219 +549786,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69137] = 21, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8675), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, - sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, + [71062] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69232] = 21, - ACTIONS(8505), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8677), 1, + ACTIONS(8845), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69327] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8679), 1, - anon_sym_RBRACE, - ACTIONS(8681), 1, - anon_sym_SEMI, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8216), 1, - sym_modifiers, - STATE(8299), 1, - sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9064), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -537021,221 +549861,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69424] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8683), 1, - anon_sym_RBRACE, - ACTIONS(8685), 1, - anon_sym_SEMI, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8216), 1, - sym_modifiers, - STATE(8299), 1, - sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9168), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8529), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, + [71159] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5632), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69521] = 23, - ACTIONS(3114), 1, - anon_sym_AT, - ACTIONS(3138), 1, - sym_property_modifier, - ACTIONS(3198), 1, - anon_sym_while, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8687), 1, - anon_sym_COLON, - STATE(8385), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8856), 1, - sym_type_constraints, - STATE(9413), 1, - sym_enum_class_body, - STATE(9578), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7507), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7515), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5677), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7511), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7513), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7509), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5447), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69620] = 21, - ACTIONS(8505), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8689), 1, + ACTIONS(8847), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -537246,208 +549936,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69715] = 5, - ACTIONS(8691), 1, - anon_sym_DOT, - STATE(5493), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4103), 18, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [71256] = 7, + ACTIONS(8223), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4101), 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, - [69778] = 21, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4699), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8694), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(5587), 1, - sym_property_delegate, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1766), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9212), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [69873] = 4, - ACTIONS(8568), 1, - anon_sym_by, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4452), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_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(4454), 28, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [69934] = 5, - ACTIONS(8696), 1, - anon_sym_COMMA, - STATE(5482), 1, - aux_sym__delegation_specifiers_repeat1, + STATE(5091), 1, + sym__block, + STATE(5167), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4534), 21, + ACTIONS(4447), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -537465,12 +549969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4536), 27, + ACTIONS(4449), 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, @@ -537493,32 +549996,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69997] = 3, + [71323] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8700), 20, + ACTIONS(5185), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8698), 30, + ACTIONS(5183), 30, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537526,20 +550030,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, @@ -537549,128 +550052,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [70056] = 5, - ACTIONS(4292), 1, - anon_sym_while, - ACTIONS(8702), 1, - anon_sym_LPAREN, + [71382] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5140), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 22, + ACTIONS(4443), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3823), 26, + ACTIONS(4445), 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, - [70119] = 21, - ACTIONS(8505), 1, + [71449] = 21, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8609), 1, + anon_sym_EQ, + STATE(5633), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9460), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71544] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8705), 1, + ACTIONS(8849), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -537681,15 +550261,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70214] = 5, - ACTIONS(8696), 1, + [71641] = 5, + ACTIONS(8843), 1, anon_sym_COMMA, - STATE(5496), 1, + STATE(5543), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4576), 21, + ACTIONS(4684), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -537711,7 +550291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4578), 27, + ACTIONS(4686), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537739,70 +550319,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70277] = 21, - ACTIONS(8505), 1, + [71704] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5076), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8523), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71771] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8707), 1, + ACTIONS(8851), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -537813,19 +550454,17 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70372] = 7, - ACTIONS(8043), 1, + [71868] = 6, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(4995), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + ACTIONS(8853), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4217), 20, + ACTIONS(4349), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -537833,6 +550472,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, @@ -537846,13 +550486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4219), 26, - sym__automatic_semicolon, + ACTIONS(4351), 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, @@ -537873,71 +550513,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70439] = 22, - ACTIONS(8505), 1, + [71933] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8709), 1, - anon_sym_RBRACE, - ACTIONS(8711), 1, - anon_sym_SEMI, - STATE(6123), 1, + ACTIONS(8855), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8216), 1, + STATE(7862), 1, sym_modifiers, - STATE(8299), 1, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9184), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -537948,81 +550588,96 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70536] = 3, + [72030] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8857), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 19, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3818), 31, + ACTIONS(8680), 2, anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, + anon_sym_var, + ACTIONS(8682), 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(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [70595] = 6, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8713), 1, - anon_sym_COLON, - STATE(4759), 1, - sym_class_body, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72127] = 4, + ACTIONS(8769), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 21, + ACTIONS(4505), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538036,13 +550691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4530), 26, + ACTIONS(4507), 28, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -538063,71 +550720,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70660] = 22, - ACTIONS(8505), 1, + [72188] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8715), 1, - anon_sym_RBRACE, - ACTIONS(8717), 1, - anon_sym_SEMI, - STATE(6123), 1, + ACTIONS(8859), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8216), 1, + STATE(7862), 1, sym_modifiers, - STATE(8299), 1, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9378), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538138,130 +550795,147 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70757] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(4983), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [72285] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8861), 1, + anon_sym_RBRACE, + ACTIONS(8863), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9391), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4466), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(8682), 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(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72384] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(4468), 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, - [70824] = 21, - ACTIONS(8505), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8719), 1, + ACTIONS(8865), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538272,130 +550946,128 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70919] = 5, - ACTIONS(4318), 1, - anon_sym_while, - ACTIONS(8721), 1, - anon_sym_LPAREN, + [72481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 22, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(7173), 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(7171), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, 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_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_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, - ACTIONS(3823), 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, - [70982] = 23, - ACTIONS(3114), 1, + [72540] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(3138), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(3216), 1, - anon_sym_while, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8724), 1, - anon_sym_COLON, - STATE(8384), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8916), 1, - sym_type_constraints, - STATE(9551), 1, - sym_enum_class_body, - STATE(9578), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8867), 1, + anon_sym_RBRACE, + ACTIONS(8869), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9434), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7507), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538406,19 +551078,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71081] = 7, - ACTIONS(8043), 1, + [72639] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5165), 1, + STATE(5174), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 20, + ACTIONS(4439), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -538439,7 +551111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4472), 26, + ACTIONS(4441), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538466,70 +551138,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71148] = 21, - ACTIONS(8505), 1, + [72706] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8726), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8871), 1, + anon_sym_COLON, + STATE(8429), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(8941), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, + STATE(9545), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538540,70 +551214,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71243] = 21, - ACTIONS(8505), 1, + [72805] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8728), 1, + ACTIONS(8873), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538614,70 +551289,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71338] = 21, - ACTIONS(8505), 1, + [72902] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8730), 1, - anon_sym_RPAREN, - STATE(6123), 1, + ACTIONS(8875), 1, + anon_sym_RBRACE, + ACTIONS(8877), 1, + anon_sym_SEMI, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(8107), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, + STATE(8388), 1, sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9186), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538688,15 +551365,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71433] = 5, - ACTIONS(8732), 1, + [73001] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5141), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4137), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, - STATE(5520), 1, - aux_sym_user_type_repeat1, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4139), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_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, + [73068] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 18, + ACTIONS(7181), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -538710,12 +551443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4140), 30, + ACTIONS(7179), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -538746,70 +551481,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [71496] = 21, - ACTIONS(8505), 1, + [73127] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8734), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8879), 1, + anon_sym_COLON, + STATE(8433), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9000), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, + STATE(9545), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538820,19 +551557,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71591] = 7, - ACTIONS(8043), 1, + [73226] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(4999), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5178), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4512), 20, + ACTIONS(4147), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -538853,7 +551590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4514), 26, + ACTIONS(4149), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538880,32 +551617,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71658] = 3, + [73293] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8415), 20, + ACTIONS(5161), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8413), 30, + ACTIONS(5159), 30, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538913,20 +551651,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, @@ -538936,72 +551673,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [71717] = 23, - ACTIONS(3114), 1, + [73352] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(3138), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(3208), 1, - anon_sym_while, - ACTIONS(8429), 1, - anon_sym_constructor, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(8736), 1, - anon_sym_COLON, - STATE(8346), 1, - sym_primary_constructor, - STATE(8623), 1, - sym__class_parameters, - STATE(8836), 1, - sym_type_constraints, - STATE(9392), 1, - sym_class_body, - STATE(9578), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8881), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7507), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7515), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5677), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7511), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7513), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7509), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7505), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7503), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5447), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539012,15 +551748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71816] = 5, - ACTIONS(8732), 1, - anon_sym_DOT, - STATE(5493), 1, - aux_sym_user_type_repeat1, + [73449] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 18, + ACTIONS(5181), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -539034,12 +551766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4075), 30, + ACTIONS(5179), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -539070,71 +551804,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [71879] = 22, - ACTIONS(8505), 1, + [73508] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8738), 1, + ACTIONS(8883), 1, anon_sym_RBRACE, - ACTIONS(8740), 1, + ACTIONS(8885), 1, anon_sym_SEMI, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8216), 1, + STATE(8107), 1, sym_modifiers, - STATE(8299), 1, + STATE(8388), 1, sym_simple_identifier, - STATE(8594), 1, + STATE(8730), 1, sym_enum_entry, - STATE(9245), 1, + STATE(9198), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539145,129 +551880,70 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71976] = 6, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8742), 1, - anon_sym_COLON, - STATE(4660), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4520), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4522), 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, - [72041] = 21, - ACTIONS(3234), 1, + [73607] = 21, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(4737), 1, + ACTIONS(5247), 1, anon_sym_SEMI, - ACTIONS(7499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8393), 1, + ACTIONS(8581), 1, anon_sym_by, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8473), 1, + ACTIONS(8887), 1, anon_sym_EQ, - STATE(5600), 1, + STATE(5635), 1, sym_property_delegate, - STATE(9189), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1756), 2, + ACTIONS(1734), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9125), 2, + STATE(9131), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539278,19 +551954,75 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72136] = 7, - ACTIONS(8043), 1, + [73702] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7145), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7143), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [73761] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(4992), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5240), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 20, + ACTIONS(4160), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -539311,7 +552043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 26, + ACTIONS(4162), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539338,70 +552070,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72203] = 21, - ACTIONS(8505), 1, + [73828] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8744), 1, - anon_sym_RPAREN, - STATE(6123), 1, + ACTIONS(8889), 1, + anon_sym_RBRACE, + ACTIONS(8891), 1, + anon_sym_SEMI, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(8107), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, + STATE(8388), 1, sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9233), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539412,19 +552146,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72298] = 7, - ACTIONS(8043), 1, + [73927] = 4, + ACTIONS(4451), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5020), 22, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5022), 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, + [73988] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5147), 1, + STATE(5220), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4159), 20, + ACTIONS(4183), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -539445,7 +552236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4161), 26, + ACTIONS(4185), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539472,70 +552263,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72365] = 21, - ACTIONS(8505), 1, + [74055] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8746), 1, + ACTIONS(8893), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74152] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8895), 1, + anon_sym_RBRACE, + ACTIONS(8897), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9125), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 2, anon_sym_get, anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539546,19 +552414,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72460] = 7, - ACTIONS(8043), 1, + [74251] = 7, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8559), 1, anon_sym_EQ, - STATE(5024), 1, + STATE(5073), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4088), 20, + ACTIONS(4299), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -539579,7 +552447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4090), 26, + ACTIONS(4301), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539606,130 +552474,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72527] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, + [74318] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8632), 1, anon_sym_EQ, - STATE(5053), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + STATE(5640), 1, + sym_property_delegate, + STATE(9322), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4065), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4067), 26, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74413] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7189), 20, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [72594] = 21, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4566), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, + ACTIONS(7187), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(7501), 1, anon_sym_set, - ACTIONS(8391), 1, - anon_sym_EQ, - ACTIONS(8393), 1, - anon_sym_by, - ACTIONS(8405), 1, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [74472] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, sym_property_modifier, - STATE(5588), 1, - sym_property_delegate, - STATE(9189), 1, + ACTIONS(3290), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8899), 1, + anon_sym_COLON, + STATE(8437), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(8903), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, + STATE(9585), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1782), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9029), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(7651), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539740,70 +552680,128 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72689] = 21, - ACTIONS(8505), 1, + [74571] = 4, + STATE(5539), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 28, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8523), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74632] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8748), 1, + ACTIONS(8901), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539814,71 +552812,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72784] = 22, - ACTIONS(8505), 1, + [74729] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_RBRACE, - ACTIONS(8752), 1, - anon_sym_SEMI, - STATE(6123), 1, + ACTIONS(8903), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8216), 1, + STATE(7862), 1, sym_modifiers, - STATE(8299), 1, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9304), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539889,130 +552887,129 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72881] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(5073), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [74826] = 4, + ACTIONS(4477), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4116), 20, + ACTIONS(4812), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4118), 26, - sym__automatic_semicolon, + ACTIONS(4814), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72948] = 21, - ACTIONS(8505), 1, + [74887] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8754), 1, - anon_sym_RPAREN, - STATE(6123), 1, + ACTIONS(8905), 1, + anon_sym_RBRACE, + ACTIONS(8907), 1, + anon_sym_SEMI, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(8107), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, + STATE(8388), 1, sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9298), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540023,188 +553020,186 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73043] = 4, - ACTIONS(4504), 1, - anon_sym_while, + [74986] = 7, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5194), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4905), 22, + ACTIONS(4295), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4907), 27, + ACTIONS(4297), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73104] = 7, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__block, - STATE(5150), 1, - sym_function_body, + [75053] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5189), 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(5187), 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(4244), 26, - sym__automatic_semicolon, - sym_safe_nav, + [75112] = 21, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8579), 1, + anon_sym_EQ, + ACTIONS(8581), 1, + anon_sym_by, + ACTIONS(8585), 1, anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [73171] = 22, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8756), 1, - anon_sym_RBRACE, - ACTIONS(8758), 1, - anon_sym_SEMI, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8216), 1, + STATE(5648), 1, + sym_property_delegate, + STATE(9322), 1, sym_modifiers, - STATE(8299), 1, - sym_simple_identifier, - STATE(8594), 1, - sym_enum_entry, - STATE(9131), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540215,70 +553210,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73268] = 21, - ACTIONS(8505), 1, + [75207] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8760), 1, + ACTIONS(8909), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540289,70 +553285,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73363] = 21, - ACTIONS(8505), 1, + [75304] = 22, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8762), 1, + ACTIONS(8911), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7787), 1, + STATE(7862), 1, sym_modifiers, - STATE(9066), 1, + STATE(9268), 1, sym_class_parameter, - STATE(9442), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, + ACTIONS(8680), 2, anon_sym_val, anon_sym_var, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540363,70 +553360,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73458] = 21, - ACTIONS(8505), 1, + [75401] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8764), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, + ACTIONS(3274), 1, + anon_sym_while, + ACTIONS(8636), 1, + anon_sym_constructor, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8640), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8913), 1, + anon_sym_COLON, + STATE(8403), 1, + sym_primary_constructor, + STATE(8733), 1, + sym__class_parameters, + STATE(9052), 1, + sym_type_constraints, + STATE(9529), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, + STATE(9819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(7651), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7649), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5517), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540437,292 +553436,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73553] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4310), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4308), 31, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [73611] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4173), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4171), 31, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [73669] = 5, - ACTIONS(8766), 1, - anon_sym_LPAREN, - STATE(5574), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7106), 17, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7104), 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, - [73731] = 5, - ACTIONS(8769), 1, - anon_sym_SEMI, - ACTIONS(8771), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4873), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [75500] = 22, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(4875), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [73793] = 20, - ACTIONS(8505), 1, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(8915), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(8216), 1, + STATE(7862), 1, sym_modifiers, - STATE(8299), 1, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, sym_simple_identifier, - STATE(8743), 1, - sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8773), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540733,69 +553511,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73885] = 6, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(8775), 1, - anon_sym_COLON, - STATE(5132), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4520), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4522), 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, - [73949] = 3, + [75597] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 18, + ACTIONS(5165), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -540809,16 +553529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4101), 31, + ACTIONS(5163), 30, anon_sym_val, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -540846,69 +553567,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74007] = 21, - ACTIONS(1766), 1, - anon_sym_while, - ACTIONS(3234), 1, + [75656] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(5136), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - ACTIONS(8777), 1, - anon_sym_EQ, - STATE(5605), 1, - sym_property_delegate, - STATE(9362), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8917), 1, + anon_sym_RBRACE, + ACTIONS(8919), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9397), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9575), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540919,62 +553643,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74101] = 14, - ACTIONS(8779), 1, + [75755] = 23, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8794), 1, + ACTIONS(8694), 1, sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(8921), 1, + anon_sym_RBRACE, + ACTIONS(8923), 1, + anon_sym_SEMI, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, + sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(8730), 1, + sym_enum_entry, + STATE(9167), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8542), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8788), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8803), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8797), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8800), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8791), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8785), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8782), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8540), 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(5549), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -540985,19 +553719,16 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74181] = 5, - ACTIONS(8806), 1, - anon_sym_LT, - STATE(5594), 1, - sym_type_arguments, + [75854] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4108), 2, + ACTIONS(4004), 2, anon_sym_val, anon_sym_var, - ACTIONS(4110), 45, + ACTIONS(4009), 47, anon_sym_AT, + anon_sym_COLON, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -541006,6 +553737,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, @@ -541042,17 +553774,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [74243] = 6, - ACTIONS(5456), 1, + [75912] = 14, + ACTIONS(8925), 1, + anon_sym_AT, + ACTIONS(8940), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8934), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8949), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8943), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8946), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8937), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8931), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8928), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8741), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5603), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75992] = 6, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, + ACTIONS(8952), 1, anon_sym_COLON, - STATE(5100), 1, + STATE(5172), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4528), 20, + ACTIONS(4497), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -541073,7 +553871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4530), 26, + ACTIONS(4499), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541100,69 +553898,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74307] = 21, - ACTIONS(1772), 1, + [76056] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4179), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4181), 47, + anon_sym_AT, + anon_sym_COLON, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [76114] = 21, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, + anon_sym_AT, + ACTIONS(8694), 1, + sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9268), 1, + sym_class_parameter, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8680), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8700), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5880), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8698), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8692), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8684), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76208] = 21, + ACTIONS(1804), 1, anon_sym_while, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5090), 1, + ACTIONS(5405), 1, anon_sym_SEMI, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8493), 1, + ACTIONS(8716), 1, anon_sym_by, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8586), 1, + ACTIONS(8822), 1, anon_sym_EQ, - STATE(5609), 1, + STATE(5669), 1, sym_property_delegate, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9534), 2, + STATE(9599), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541173,62 +554099,69 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74401] = 14, - ACTIONS(3234), 1, + [76302] = 21, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8810), 1, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + ACTIONS(8724), 1, + anon_sym_EQ, + STATE(5668), 1, + sym_property_delegate, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8626), 2, - anon_sym_val, - anon_sym_var, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8407), 3, + STATE(9522), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8624), 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(5549), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541239,69 +554172,69 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74481] = 21, - ACTIONS(1756), 1, + [76396] = 21, + ACTIONS(1792), 1, anon_sym_while, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(4841), 1, + ACTIONS(5322), 1, anon_sym_SEMI, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8493), 1, + ACTIONS(8714), 1, + anon_sym_EQ, + ACTIONS(8716), 1, anon_sym_by, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8580), 1, - anon_sym_EQ, - STATE(5611), 1, + STATE(5656), 1, sym_property_delegate, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9559), 2, + STATE(9565), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541312,13 +554245,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74575] = 4, - ACTIONS(8812), 1, + [76490] = 4, + ACTIONS(8954), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 21, + ACTIONS(4267), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -541340,7 +554273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4298), 27, + ACTIONS(4265), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541368,68 +554301,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74635] = 20, - ACTIONS(8505), 1, + [76550] = 5, + ACTIONS(8956), 1, + anon_sym_SEMI, + ACTIONS(8958), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4820), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8523), 1, - sym_property_modifier, - ACTIONS(8531), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7787), 1, + [76612] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8716), 1, + anon_sym_by, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + ACTIONS(8794), 1, + anon_sym_EQ, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(5664), 1, + sym_property_delegate, + STATE(9271), 1, sym_modifiers, - STATE(9066), 1, - sym_class_parameter, - STATE(9442), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8511), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + STATE(9806), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541440,13 +554431,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74727] = 4, - ACTIONS(8771), 1, - anon_sym_else, + [76706] = 4, + ACTIONS(8960), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 20, + ACTIONS(4289), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -541455,6 +554446,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, @@ -541467,14 +554459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 28, + ACTIONS(4287), 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, @@ -541496,13 +554487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74787] = 4, - ACTIONS(8814), 1, + [76766] = 4, + ACTIONS(8962), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 21, + ACTIONS(4874), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -541524,7 +554515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 27, + ACTIONS(4876), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541552,13 +554543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74847] = 4, - ACTIONS(8816), 1, + [76826] = 4, + ACTIONS(8964), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 21, + ACTIONS(4892), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -541580,7 +554571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4769), 27, + ACTIONS(4894), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541608,145 +554599,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74907] = 21, - ACTIONS(1782), 1, - anon_sym_while, - ACTIONS(3234), 1, + [76886] = 21, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(4909), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8493), 1, - anon_sym_by, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - ACTIONS(8572), 1, - anon_sym_EQ, - STATE(5612), 1, - sym_property_delegate, - STATE(9362), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(9009), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + ACTIONS(8966), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9421), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75001] = 4, - ACTIONS(8818), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4777), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4779), 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, - [75061] = 3, + STATE(5675), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76980] = 5, + ACTIONS(8968), 1, + anon_sym_LT, + STATE(5647), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 2, + ACTIONS(4128), 2, anon_sym_val, anon_sym_var, - ACTIONS(3823), 47, + ACTIONS(4189), 45, anon_sym_AT, - anon_sym_COLON, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -541755,7 +554693,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, @@ -541792,68 +554729,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [75119] = 20, - ACTIONS(8505), 1, + [77042] = 21, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(8694), 1, sym_property_modifier, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8216), 1, + STATE(8107), 1, sym_modifiers, - STATE(8299), 1, + STATE(8388), 1, sym_simple_identifier, - STATE(8743), 1, + STATE(9009), 1, sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8820), 2, + ACTIONS(8970), 2, anon_sym_RBRACE, anon_sym_SEMI, - STATE(5823), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, + ACTIONS(8688), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8525), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541864,124 +554802,193 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75211] = 3, + [77136] = 6, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(8972), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 18, - sym__string_start, + ACTIONS(4349), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4351), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4314), 31, + [77200] = 14, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8974), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8806), 2, anon_sym_val, + anon_sym_var, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8804), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + STATE(5603), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77280] = 21, + ACTIONS(1734), 1, anon_sym_while, - 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, - [75269] = 21, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8405), 1, + ACTIONS(5435), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8493), 1, + ACTIONS(8716), 1, anon_sym_by, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8654), 1, + ACTIONS(8976), 1, anon_sym_EQ, - ACTIONS(8656), 1, - anon_sym_SEMI, - STATE(5613), 1, + STATE(5654), 1, sym_property_delegate, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9399), 2, + STATE(9620), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541992,22 +554999,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75363] = 4, - ACTIONS(8822), 1, - anon_sym_LPAREN, + [77374] = 4, + ACTIONS(8958), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 21, + ACTIONS(4818), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -542020,13 +555026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 26, + ACTIONS(4820), 28, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -542047,445 +555055,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75422] = 3, + [77434] = 4, + ACTIONS(8978), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4955), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4874), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [75479] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7191), 18, - sym__string_start, + ACTIONS(4876), 26, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, + 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(7189), 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, - [75536] = 3, + [77493] = 4, + ACTIONS(8980), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7172), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4289), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [75593] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4867), 18, - sym__string_start, + ACTIONS(4287), 26, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, + 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4865), 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, - [75650] = 3, + [77552] = 4, + ACTIONS(8982), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7185), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4818), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_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_BANG_EQ, + 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, - [75707] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4929), 18, - sym__string_start, + ACTIONS(4820), 27, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4927), 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, - [75764] = 3, + [77611] = 4, + ACTIONS(8984), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 18, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7153), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4892), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [75821] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5140), 18, - sym__string_start, + ACTIONS(4894), 26, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, + 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5138), 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, - [75878] = 4, - ACTIONS(8824), 1, - anon_sym_LPAREN, + [77670] = 5, + ACTIONS(8982), 1, + anon_sym_else, + ACTIONS(8986), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 21, + ACTIONS(4818), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -542494,7 +555292,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, @@ -542507,14 +555304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4779), 26, + ACTIONS(4820), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -542534,13 +555331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75937] = 4, - ACTIONS(8826), 1, + [77731] = 4, + ACTIONS(8988), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 21, + ACTIONS(4267), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -542562,7 +555359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4769), 26, + ACTIONS(4265), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -542589,18 +555386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75996] = 5, - ACTIONS(8828), 1, + [77790] = 5, + ACTIONS(8990), 1, anon_sym_DOT, - STATE(5579), 1, + STATE(5629), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4075), 2, + ACTIONS(4166), 2, anon_sym_val, anon_sym_var, - ACTIONS(4077), 44, + ACTIONS(4168), 44, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -542645,73 +555442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76057] = 4, - ACTIONS(8830), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4873), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_BANG_EQ, - 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(4875), 27, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [76116] = 5, - ACTIONS(8832), 1, + [77851] = 5, + ACTIONS(8993), 1, anon_sym_DOT, - STATE(5579), 1, + STATE(5629), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 2, + ACTIONS(4153), 2, anon_sym_val, anon_sym_var, - ACTIONS(4103), 44, + ACTIONS(4155), 44, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -542756,72 +555498,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76177] = 5, - ACTIONS(8830), 1, - anon_sym_else, - ACTIONS(8835), 1, - anon_sym_SEMI, + [77912] = 5, + ACTIONS(8491), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4287), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4009), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4004), 26, + anon_sym_object, + anon_sym_fun, 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_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_data, 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(4875), 26, - sym_safe_nav, + [77973] = 5, + ACTIONS(8486), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4009), 19, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + 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, - [76238] = 3, + ACTIONS(4004), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78034] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5265), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9110), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78120] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8585), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78206] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5257), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1810), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9150), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78292] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78378] = 5, + ACTIONS(4267), 1, + anon_sym_while, + ACTIONS(8828), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 18, + ACTIONS(4009), 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, @@ -542830,13 +555903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7113), 30, - anon_sym_val, + ACTIONS(4004), 26, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -542844,9 +555918,6 @@ 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_null, anon_sym_if, anon_sym_when, @@ -542862,20 +555933,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [76295] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78438] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4315), 45, + anon_sym_AT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [78494] = 5, + ACTIONS(4289), 1, + anon_sym_while, + ACTIONS(8840), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 18, + ACTIONS(4009), 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, @@ -542884,13 +556011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, sym_real_literal, sym_hex_literal, sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5045), 30, - anon_sym_val, + ACTIONS(4004), 26, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -542898,9 +556026,6 @@ 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_null, anon_sym_if, anon_sym_when, @@ -542920,13 +556045,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [76352] = 4, - ACTIONS(8837), 1, + [78554] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5247), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1734), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8601), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5789), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9131), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8599), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8593), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5620), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78640] = 4, + ACTIONS(8995), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 21, + ACTIONS(4267), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -542934,7 +556127,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, @@ -542948,13 +556140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4298), 26, + ACTIONS(4265), 26, + sym__automatic_semicolon, 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, @@ -542975,14 +556167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76411] = 3, + [78698] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4308), 2, + ACTIONS(4317), 2, anon_sym_val, anon_sym_var, - ACTIONS(4310), 45, + ACTIONS(4319), 45, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -543028,13 +556220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76467] = 4, - ACTIONS(8839), 1, + [78754] = 4, + ACTIONS(8997), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4777), 20, + ACTIONS(4289), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -543055,7 +556247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4779), 26, + ACTIONS(4287), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543082,13 +556274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76525] = 4, - ACTIONS(8841), 1, + [78812] = 4, + ACTIONS(8999), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4767), 20, + ACTIONS(4874), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -543109,7 +556301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4769), 26, + ACTIONS(4876), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543136,151 +556328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76583] = 18, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4599), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1698), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9337), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76669] = 18, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4741), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1772), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9083), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76755] = 5, - ACTIONS(8843), 1, - anon_sym_SEMI, - ACTIONS(8845), 1, + [78870] = 4, + ACTIONS(9001), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4873), 19, + ACTIONS(4818), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -543300,7 +556354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4875), 26, + ACTIONS(4820), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543308,6 +556362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -543327,67 +556382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76815] = 4, - ACTIONS(8845), 1, + [78928] = 5, + ACTIONS(9001), 1, anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4873), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4875), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(9003), 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, - [76873] = 4, - ACTIONS(8847), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4326), 20, + ACTIONS(4818), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -543395,7 +556398,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, @@ -543408,14 +556410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4324), 26, + ACTIONS(4820), 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, @@ -543435,14 +556437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76931] = 3, + [78988] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 2, + ACTIONS(4335), 2, anon_sym_val, anon_sym_var, - ACTIONS(4173), 45, + ACTIONS(4337), 45, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -543488,64 +556490,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76987] = 18, - ACTIONS(3234), 1, + [79044] = 18, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8465), 1, - anon_sym_SEMI, - STATE(9189), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(1798), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9367), 2, + STATE(9460), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543556,14 +556558,14 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77073] = 3, + [79130] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4314), 2, + ACTIONS(4166), 2, anon_sym_val, anon_sym_var, - ACTIONS(4316), 45, + ACTIONS(4168), 45, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -543609,64 +556611,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77129] = 18, - ACTIONS(3234), 1, + [79186] = 20, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(4737), 1, - anon_sym_SEMI, - ACTIONS(7499), 1, - anon_sym_get, - ACTIONS(7501), 1, - anon_sym_set, - ACTIONS(8405), 1, + ACTIONS(8694), 1, sym_property_modifier, - STATE(9189), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8107), 1, sym_modifiers, + STATE(8388), 1, + sym_simple_identifier, + STATE(9009), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1756), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8682), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8700), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9125), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(8688), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5675), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543677,66 +556681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77215] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4101), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4103), 45, - anon_sym_AT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [77271] = 4, - ACTIONS(8849), 1, + [79276] = 4, + ACTIONS(9005), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4300), 20, + ACTIONS(4892), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -543757,7 +556708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4298), 26, + ACTIONS(4894), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543784,65 +556735,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77329] = 19, - ACTIONS(8505), 1, + [79334] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8523), 1, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8216), 1, + STATE(9322), 1, sym_modifiers, - STATE(8299), 1, - sym_simple_identifier, - STATE(8743), 1, - sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8529), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8517), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8525), 3, + STATE(9265), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8527), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8521), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8589), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5632), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543853,132 +556801,117 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77417] = 18, - ACTIONS(3234), 1, + [79417] = 5, + ACTIONS(8993), 1, + anon_sym_DOT, + STATE(5630), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4193), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4195), 42, anon_sym_AT, - ACTIONS(4566), 1, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_SEMI, - ACTIONS(7499), 1, anon_sym_get, - ACTIONS(7501), 1, anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1782), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + 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(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9029), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77503] = 18, - ACTIONS(3234), 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, + [79476] = 18, + ACTIONS(1810), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(4699), 1, + ACTIONS(5393), 1, anon_sym_SEMI, - ACTIONS(7499), 1, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9212), 2, + STATE(9634), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543989,62 +556922,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77589] = 17, - ACTIONS(3234), 1, + [79561] = 18, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1782), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9029), 2, + STATE(9806), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544055,116 +556989,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77672] = 5, - ACTIONS(8099), 1, - anon_sym_COLON_COLON, - ACTIONS(8851), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5057), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5059), 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, - [77731] = 17, - ACTIONS(3234), 1, + [79646] = 18, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(5405), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9308), 2, + STATE(9599), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544175,62 +557056,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77814] = 17, - ACTIONS(3234), 1, + [79731] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - STATE(9189), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1698), 2, + ACTIONS(1816), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9337), 2, + STATE(9156), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544241,63 +557122,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77897] = 18, - ACTIONS(1698), 1, - anon_sym_while, - ACTIONS(3234), 1, + [79814] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5064), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(7647), 1, anon_sym_set, - STATE(9362), 1, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(3422), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9585), 2, + STATE(9160), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544308,226 +557188,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77982] = 6, - ACTIONS(8099), 1, - anon_sym_COLON_COLON, - ACTIONS(8291), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4149), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5057), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5059), 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, - [78043] = 5, - ACTIONS(8279), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4298), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3823), 17, - sym__string_start, + [79897] = 17, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3818), 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, - [78102] = 5, - ACTIONS(8099), 1, - anon_sym_COLON_COLON, - ACTIONS(8853), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5057), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(7645), 1, anon_sym_get, + ACTIONS(7647), 1, 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(5059), 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, - [78161] = 18, - ACTIONS(1756), 1, - anon_sym_while, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(4841), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - STATE(9362), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9559), 2, + STATE(9405), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544538,184 +557254,114 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78246] = 5, - ACTIONS(8274), 1, - anon_sym_LPAREN, + [79980] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3823), 17, - sym__string_start, + ACTIONS(4004), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4009), 43, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3818), 26, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_where, + anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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_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, - [78305] = 18, - ACTIONS(1766), 1, - anon_sym_while, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(5136), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - STATE(9362), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8401), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9575), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8409), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8403), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78390] = 18, - ACTIONS(1772), 1, - anon_sym_while, - ACTIONS(3234), 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, + [80035] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5090), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(7647), 1, anon_sym_set, - STATE(9362), 1, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(1734), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9534), 2, + STATE(9131), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544726,63 +557372,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78475] = 18, - ACTIONS(1782), 1, - anon_sym_while, - ACTIONS(3234), 1, + [80118] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(4909), 1, - anon_sym_SEMI, - ACTIONS(8405), 1, - sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(7647), 1, anon_sym_set, - STATE(9362), 1, + ACTIONS(8595), 1, + sym_property_modifier, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9421), 2, + STATE(9460), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544793,31 +557438,30 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78560] = 5, - ACTIONS(8828), 1, - anon_sym_DOT, - STATE(5577), 1, - aux_sym_user_type_repeat1, + [80201] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4140), 2, + ACTIONS(4179), 3, anon_sym_val, anon_sym_var, - ACTIONS(4142), 42, + sym_property_modifier, + ACTIONS(4181), 43, anon_sym_AT, + anon_sym_COLON, anon_sym_typealias, - anon_sym_EQ, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, + anon_sym_LT, anon_sym_where, + anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_while, @@ -544838,7 +557482,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, @@ -544847,62 +557490,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78619] = 17, - ACTIONS(3234), 1, + [80256] = 18, + ACTIONS(1798), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9367), 2, + STATE(9522), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544913,62 +557557,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78702] = 17, - ACTIONS(3234), 1, + [80341] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - STATE(9189), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1756), 2, + ACTIONS(1810), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9125), 2, + STATE(9150), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544979,114 +557623,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78785] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3818), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(3823), 43, - anon_sym_AT, - anon_sym_COLON, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_where, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - 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, - [78840] = 17, - ACTIONS(3234), 1, + [80424] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - STATE(9189), 1, + STATE(9322), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 2, + ACTIONS(1792), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9083), 2, + STATE(9110), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545097,62 +557689,118 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78923] = 17, - ACTIONS(3234), 1, - anon_sym_AT, - ACTIONS(7499), 1, + [80507] = 6, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(8494), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5024), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, - ACTIONS(7501), 1, anon_sym_set, - ACTIONS(8405), 1, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5026), 23, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80568] = 18, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5322), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, sym_property_modifier, - STATE(9189), 1, + ACTIONS(8720), 1, + anon_sym_get, + ACTIONS(8722), 1, + anon_sym_set, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9212), 2, + STATE(9565), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545163,62 +557811,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79006] = 17, - ACTIONS(3234), 1, + [80653] = 18, + ACTIONS(1734), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7499), 1, + ACTIONS(5435), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(7501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8405), 1, - sym_property_modifier, - STATE(9189), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3342), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9297), 2, + STATE(9620), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545229,63 +557878,169 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79089] = 18, - ACTIONS(3234), 1, + [80738] = 5, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(9007), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5024), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5026), 25, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80797] = 5, + ACTIONS(8313), 1, + anon_sym_COLON_COLON, + ACTIONS(9009), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5024), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5026), 25, + sym_safe_nav, anon_sym_AT, - ACTIONS(3280), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80856] = 17, + ACTIONS(1792), 1, anon_sym_while, - ACTIONS(8405), 1, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8656), 1, - anon_sym_SEMI, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9399), 2, + STATE(9565), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545296,61 +558051,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79174] = 17, - ACTIONS(1782), 1, + [80938] = 17, + ACTIONS(1798), 1, anon_sym_while, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9421), 2, + STATE(9522), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545361,111 +558116,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79256] = 5, - ACTIONS(4300), 1, - anon_sym_while, - ACTIONS(8702), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3823), 17, - sym__string_start, + [81020] = 17, + ACTIONS(3316), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3818), 26, - anon_sym_object, - anon_sym_fun, + ACTIONS(3422), 1, + anon_sym_while, + ACTIONS(8595), 1, + sym_property_modifier, + ACTIONS(8720), 1, anon_sym_get, + ACTIONS(8722), 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, - 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, - [79314] = 14, - ACTIONS(8540), 1, - sym__backtick_identifier, - ACTIONS(8855), 1, - anon_sym_AT, - ACTIONS(8870), 1, - sym_property_modifier, + STATE(9271), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8864), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8879), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5823), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8873), 3, + STATE(9660), 2, + sym_getter, + sym_setter, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8876), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8867), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8542), 5, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(8861), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8858), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5624), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545476,61 +558181,57 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79390] = 17, - ACTIONS(1756), 1, - anon_sym_while, - ACTIONS(3234), 1, + [81102] = 13, + ACTIONS(8674), 1, anon_sym_AT, - ACTIONS(8405), 1, + ACTIONS(8804), 1, + sym__backtick_identifier, + ACTIONS(9011), 1, sym_property_modifier, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - STATE(9362), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8686), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8690), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5749), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9559), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(8696), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8698), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8692), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8684), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + ACTIONS(8806), 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(5676), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545541,61 +558242,58 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79472] = 17, - ACTIONS(3234), 1, + [81176] = 14, + ACTIONS(8741), 1, + sym__backtick_identifier, + ACTIONS(9013), 1, anon_sym_AT, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8405), 1, + ACTIONS(9028), 1, sym_property_modifier, - ACTIONS(8499), 1, - anon_sym_get, - ACTIONS(8501), 1, - anon_sym_set, - STATE(9362), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(9022), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(9037), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5880), 2, sym__single_annotation, sym__multi_annotation, - STATE(9399), 2, - sym_getter, - sym_setter, - ACTIONS(8407), 3, + ACTIONS(9031), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(9034), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(9025), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8743), 5, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(9019), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(9016), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5676), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545606,61 +558304,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79554] = 17, - ACTIONS(1792), 1, + [81252] = 17, + ACTIONS(1810), 1, anon_sym_while, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9590), 2, + STATE(9634), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545671,61 +558369,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79636] = 17, - ACTIONS(1766), 1, - anon_sym_while, - ACTIONS(3234), 1, + [81334] = 17, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8405), 1, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9575), 2, + STATE(9806), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545736,61 +558434,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79718] = 17, - ACTIONS(1772), 1, + [81416] = 17, + ACTIONS(1816), 1, anon_sym_while, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9534), 2, + STATE(9655), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545801,175 +558499,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79800] = 5, - ACTIONS(4326), 1, + [81498] = 17, + ACTIONS(1804), 1, anon_sym_while, - ACTIONS(8721), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3823), 17, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3818), 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, - [79858] = 17, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3342), 1, - anon_sym_while, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9596), 2, + STATE(9599), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5553), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [79940] = 13, - ACTIONS(8505), 1, - anon_sym_AT, - ACTIONS(8624), 1, - sym__backtick_identifier, - ACTIONS(8882), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8515), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8519), 2, - anon_sym_override, - anon_sym_lateinit, - STATE(5823), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8525), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8527), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8521), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8513), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8626), 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(5624), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545980,61 +558564,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80014] = 17, - ACTIONS(1698), 1, + [81580] = 17, + ACTIONS(1734), 1, anon_sym_while, - ACTIONS(3234), 1, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8405), 1, + ACTIONS(8595), 1, sym_property_modifier, - ACTIONS(8499), 1, + ACTIONS(8720), 1, anon_sym_get, - ACTIONS(8501), 1, + ACTIONS(8722), 1, anon_sym_set, - STATE(9362), 1, + STATE(9271), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8401), 2, + ACTIONS(8591), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8411), 2, + ACTIONS(8601), 2, anon_sym_expect, anon_sym_actual, - STATE(5749), 2, + STATE(5789), 2, sym__single_annotation, sym__multi_annotation, - STATE(9585), 2, + STATE(9620), 2, sym_getter, sym_setter, - ACTIONS(8407), 3, + ACTIONS(8597), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8409), 3, + ACTIONS(8599), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8403), 4, + ACTIONS(8593), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8399), 5, + ACTIONS(8589), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8397), 6, + ACTIONS(8587), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5553), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546045,32 +558629,28 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80096] = 5, - ACTIONS(8884), 1, - anon_sym_LT, - STATE(5649), 1, - sym_type_arguments, + [81662] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4108), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4110), 38, + ACTIONS(4009), 9, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_LT, anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4004), 34, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -546088,6 +558668,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, @@ -546096,31 +558677,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80152] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + sym__alpha_identifier, + [81714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 3, - anon_sym_val, - anon_sym_var, + ACTIONS(4179), 2, + anon_sym_DOT, sym_property_modifier, - ACTIONS(3823), 39, + ACTIONS(4181), 41, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_as, + anon_sym_EQ, anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, anon_sym_LT, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, + anon_sym_where, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -546146,32 +558727,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80206] = 8, - ACTIONS(4108), 1, - sym__alpha_identifier, - ACTIONS(6465), 1, + [81766] = 5, + ACTIONS(9040), 1, anon_sym_LT, - ACTIONS(8888), 1, - anon_sym_COLON, - STATE(6509), 1, + STATE(5709), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 4, + ACTIONS(4128), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4189), 38, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4149), 5, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(4147), 30, - anon_sym_by, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -546191,7 +558770,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, @@ -546200,14 +558778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80268] = 3, + [81822] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 2, + ACTIONS(4004), 2, anon_sym_DOT, sym_property_modifier, - ACTIONS(3823), 41, + ACTIONS(4009), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, @@ -546249,15 +558827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80320] = 4, - ACTIONS(8890), 1, + [81874] = 4, + ACTIONS(9042), 1, anon_sym_LT, - STATE(5664), 1, + STATE(5704), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 41, + ACTIONS(4189), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -546299,28 +558877,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80374] = 3, + [81928] = 8, + ACTIONS(4128), 1, + sym__alpha_identifier, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9044), 1, + anon_sym_COLON, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 9, - anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4189), 4, anon_sym_LPAREN, - anon_sym_LT, anon_sym_DOT, - anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(3818), 34, - anon_sym_val, - anon_sym_var, + ACTIONS(4124), 5, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4122), 30, anon_sym_by, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -546347,20 +558931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [80426] = 5, - ACTIONS(8892), 1, - anon_sym_DOT, - STATE(5640), 1, - aux_sym_user_type_repeat1, + [81990] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 3, + ACTIONS(4004), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4103), 37, + ACTIONS(4009), 39, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -546368,59 +558949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_constructor, anon_sym_LPAREN, + anon_sym_LT, 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, - [80481] = 5, - ACTIONS(8895), 1, anon_sym_DOT, - STATE(5644), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4140), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4142), 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, @@ -546448,27 +558981,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80536] = 3, + [82044] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 11, - sym__automatic_semicolon, + ACTIONS(4181), 9, anon_sym_AT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(3818), 31, + ACTIONS(4179), 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, @@ -546496,28 +559030,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80587] = 8, - ACTIONS(4108), 1, + [82096] = 8, + ACTIONS(4128), 1, sym__alpha_identifier, - ACTIONS(6465), 1, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(8897), 1, + ACTIONS(9048), 1, anon_sym_COLON, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 3, + ACTIONS(4124), 3, anon_sym_AT, anon_sym_EQ, anon_sym_SEMI, - ACTIONS(4110), 4, + ACTIONS(4189), 4, anon_sym_LPAREN, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4147), 31, + ACTIONS(4122), 31, anon_sym_by, anon_sym_where, anon_sym_get, @@ -546549,559 +559083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80648] = 5, - ACTIONS(8895), 1, + [82157] = 5, + ACTIONS(9050), 1, anon_sym_DOT, - STATE(5640), 1, + STATE(5691), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4075), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4077), 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, - [80703] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4308), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4310), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - 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, - [80753] = 26, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8899), 1, - anon_sym_AT, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8903), 1, - anon_sym_COMMA, - ACTIONS(8905), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7274), 1, - sym_annotation, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8731), 1, - sym__function_value_parameter, - STATE(8962), 1, - sym_parameter, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7156), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7161), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7249), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [80849] = 26, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8899), 1, - anon_sym_AT, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8909), 1, - anon_sym_COMMA, - ACTIONS(8911), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7274), 1, - sym_annotation, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8798), 1, - sym__function_value_parameter, - STATE(8962), 1, - sym_parameter, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7156), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7161), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7249), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [80945] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4310), 12, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4308), 29, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [80995] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4314), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4316), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - 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, - [81045] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4173), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [81093] = 26, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8899), 1, - anon_sym_AT, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8913), 1, - anon_sym_COMMA, - ACTIONS(8915), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7274), 1, - sym_annotation, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8841), 1, - sym__function_value_parameter, - STATE(8962), 1, - sym_parameter, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7156), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7161), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7249), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [81189] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3818), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(3823), 38, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - 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, - [81241] = 5, - ACTIONS(8917), 1, - anon_sym_LPAREN, - STATE(5668), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7104), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7106), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [81295] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4166), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4173), 38, + ACTIONS(4168), 37, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -547112,7 +559106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -547140,62 +559133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81345] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4173), 12, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, + [82212] = 5, + ACTIONS(9053), 1, anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4171), 29, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [81395] = 3, + STATE(5695), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 3, + ACTIONS(4193), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4103), 38, + ACTIONS(4195), 37, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -547206,7 +559156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -547225,175 +559174,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81445] = 26, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8899), 1, - anon_sym_AT, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8921), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7274), 1, - sym_annotation, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8962), 1, - sym_parameter, - STATE(8996), 1, - sym__function_value_parameter, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7156), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7161), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7249), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [81541] = 26, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8899), 1, - anon_sym_AT, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8923), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7274), 1, - sym_annotation, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8962), 1, - sym_parameter, - STATE(8963), 1, - sym__function_value_parameter, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7156), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7161), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7249), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [81637] = 2, + [82267] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4310), 41, + ACTIONS(4181), 11, sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_LT, anon_sym_DOT, anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4179), 31, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -547420,26 +559230,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81685] = 2, + sym__alpha_identifier, + [82318] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 41, + ACTIONS(4009), 11, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_where, anon_sym_DOT, anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4004), 31, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -547466,23 +559278,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81733] = 3, + sym__alpha_identifier, + [82369] = 5, + ACTIONS(9053), 1, + anon_sym_DOT, + STATE(5691), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8927), 3, + ACTIONS(4153), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7590), 38, + ACTIONS(4155), 37, 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_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, @@ -547513,68 +559329,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81783] = 26, - ACTIONS(7337), 1, + [82424] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4004), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4009), 38, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + 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, + [82476] = 27, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8899), 1, + ACTIONS(9055), 1, anon_sym_AT, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8929), 1, + ACTIONS(9059), 1, anon_sym_COMMA, - ACTIONS(8931), 1, + ACTIONS(9061), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7274), 1, + STATE(7311), 1, sym_annotation, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8760), 1, + STATE(8805), 1, sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7156), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7161), 2, + STATE(7213), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, - STATE(7249), 2, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9689), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547582,27 +559448,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [81879] = 2, + [82574] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 41, - sym__automatic_semicolon, + ACTIONS(9065), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7732), 38, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_DOT, - anon_sym_SEMI, + anon_sym_init, + 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, @@ -547620,7 +559487,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, @@ -547629,11 +559495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81927] = 2, + [82624] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 41, + ACTIONS(4315), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -547675,27 +559541,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81975] = 4, - ACTIONS(8933), 1, - anon_sym_DOT, - STATE(5665), 1, - aux_sym_user_type_repeat1, + [82672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 38, - sym__automatic_semicolon, + ACTIONS(4315), 12, anon_sym_AT, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, anon_sym_AMP, sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4313), 29, + anon_sym_get, + anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -547722,22 +559588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82026] = 4, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(5667), 1, - aux_sym_user_type_repeat1, + [82722] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 38, + ACTIONS(4181), 41, sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, + anon_sym_LT, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -547769,71 +559634,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82077] = 4, - ACTIONS(8938), 1, - anon_sym_DOT, - STATE(5665), 1, - aux_sym_user_type_repeat1, + [82770] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9067), 1, + anon_sym_COMMA, + ACTIONS(9069), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8829), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 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, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_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, - [82128] = 3, + [82868] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5138), 3, + ACTIONS(4317), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(5140), 36, + ACTIONS(4319), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, + anon_sym_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -547861,26 +559752,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82176] = 4, - ACTIONS(8940), 1, - sym__quest, - STATE(5688), 1, - aux_sym_nullable_type_repeat1, + [82918] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4280), 37, + ACTIONS(4337), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -547907,80 +559798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82226] = 23, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + [82966] = 5, + ACTIONS(9071), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8823), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [82314] = 3, + STATE(5750), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8948), 3, + ACTIONS(7087), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(8946), 36, + ACTIONS(7089), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -548017,89 +559847,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82362] = 23, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8800), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [82450] = 3, + [83020] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8952), 3, + ACTIONS(4166), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(8950), 36, + ACTIONS(4168), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, + anon_sym_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -548127,24 +559894,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82498] = 3, + [83070] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8956), 3, + ACTIONS(4313), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(8954), 36, + ACTIONS(4315), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, + anon_sym_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -548172,24 +559941,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82546] = 3, + [83120] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 3, + ACTIONS(4168), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_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, + [83168] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4335), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7191), 36, + ACTIONS(4337), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, + anon_sym_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -548217,63 +560034,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82594] = 23, - ACTIONS(7337), 1, + [83218] = 27, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9055), 1, anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9073), 1, + anon_sym_COMMA, + ACTIONS(9075), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8900), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8883), 1, + sym_parameter, + STATE(9094), 1, + sym__function_value_parameter, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548281,73 +560105,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [83316] = 27, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [82682] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9055), 1, + anon_sym_AT, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9077), 1, + anon_sym_COMMA, + ACTIONS(9079), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8881), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7172), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7174), 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, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82730] = 5, - ACTIONS(8958), 1, - anon_sym_LPAREN, - STATE(5752), 1, - sym_value_arguments, + [83414] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7104), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7106), 35, + ACTIONS(4319), 12, 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_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4317), 29, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -548374,26 +560223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82782] = 3, + [83464] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7113), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7115), 36, + ACTIONS(4009), 41, + 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_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_DOT, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -548411,6 +560260,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, @@ -548419,174 +560269,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82830] = 23, - ACTIONS(7337), 1, + [83512] = 27, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9055), 1, anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9081), 1, + anon_sym_COMMA, + ACTIONS(9083), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8827), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8883), 1, + sym_parameter, + STATE(9063), 1, + sym__function_value_parameter, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 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, - [82918] = 4, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(5577), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4142), 37, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + ACTIONS(8682), 7, 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, - [82968] = 23, - ACTIONS(7337), 1, + [83610] = 27, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9055), 1, anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9085), 1, + anon_sym_COMMA, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7311), 1, + sym_annotation, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8903), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(8883), 1, + sym_parameter, + STATE(8905), 1, + sym__function_value_parameter, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, + STATE(7213), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7223), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7284), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548594,26 +560411,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [83056] = 4, + [83708] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8962), 2, + ACTIONS(4319), 41, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(3823), 6, - anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_DOT, anon_sym_SEMI, - ACTIONS(3825), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -548640,92 +560457,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [83106] = 23, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8844), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [83194] = 3, + [83756] = 4, + ACTIONS(9089), 1, + anon_sym_DOT, + STATE(5717), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8966), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(8964), 36, + ACTIONS(4168), 38, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -548743,6 +560495,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, @@ -548751,19 +560504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83242] = 4, - ACTIONS(8968), 1, - sym__quest, - STATE(5669), 1, - aux_sym_nullable_type_repeat1, + [83807] = 4, + ACTIONS(9092), 1, + anon_sym_DOT, + STATE(5719), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4223), 37, + ACTIONS(4195), 38, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -548771,6 +560523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -548797,25 +560551,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83292] = 4, + [83858] = 4, + ACTIONS(9094), 1, + anon_sym_DOT, + STATE(5717), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8970), 2, + ACTIONS(4155), 38, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(3823), 6, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_SEMI, - ACTIONS(3867), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -548842,25 +560598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [83342] = 4, - ACTIONS(8972), 1, - sym__quest, - STATE(5688), 1, - aux_sym_nullable_type_repeat1, + [83909] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 37, - sym__automatic_semicolon, + ACTIONS(9098), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9096), 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, anon_sym_suspend, @@ -548880,7 +560635,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, @@ -548889,15 +560643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83392] = 3, + [83957] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 3, + ACTIONS(7179), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4867), 36, + ACTIONS(7181), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -548934,15 +560688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83440] = 3, + [84005] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3825), 3, + ACTIONS(5179), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(8962), 36, + ACTIONS(5181), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -548979,13 +560733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83488] = 3, - ACTIONS(4350), 1, - anon_sym_DASH_GT, + [84053] = 4, + ACTIONS(9100), 1, + sym__quest, + STATE(5723), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4348), 38, + ACTIONS(4224), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -548997,7 +560753,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, @@ -549024,63 +560779,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83536] = 23, - ACTIONS(7337), 1, + [84103] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4011), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9103), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84151] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8994), 1, + STATE(8946), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549088,61 +560890,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [84241] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [83624] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8933), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4957), 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(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [84331] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8796), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - 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, - [83672] = 3, + [84421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3867), 3, + ACTIONS(7191), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(8970), 36, + ACTIONS(7193), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -549179,15 +561067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83720] = 3, + [84469] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7153), 3, + ACTIONS(5183), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7155), 36, + ACTIONS(5185), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -549224,109 +561112,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83768] = 4, - ACTIONS(8968), 1, - sym__quest, - STATE(5669), 1, - aux_sym_nullable_type_repeat1, + [84517] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8977), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4167), 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(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83818] = 23, - ACTIONS(7337), 1, + [84607] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8867), 1, + STATE(8958), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549334,16 +561244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [83906] = 3, + [84697] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7185), 3, + ACTIONS(7171), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7187), 36, + ACTIONS(7173), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -549380,63 +561289,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83954] = 23, - ACTIONS(7337), 1, + [84745] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8738), 1, + STATE(8971), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549444,64 +561355,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84042] = 23, - ACTIONS(7337), 1, + [84835] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8772), 1, + STATE(8940), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549509,64 +561421,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84130] = 23, - ACTIONS(7337), 1, + [84925] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8877), 1, + STATE(9035), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549574,88 +561487,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84218] = 23, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + [85015] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5163), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(5165), 36, anon_sym_AT, - ACTIONS(8944), 1, - anon_sym_STAR, - STATE(5959), 1, - sym_type_projection_modifiers, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9056), 1, - sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, + 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, + [85063] = 3, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7162), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + ACTIONS(4212), 38, + 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_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, - [84306] = 3, + [85111] = 5, + ACTIONS(9109), 1, + anon_sym_LPAREN, + STATE(5770), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 3, + ACTIONS(7087), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(5047), 36, + ACTIONS(7089), 35, 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, @@ -549677,6 +561615,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, @@ -549685,63 +561624,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84354] = 23, - ACTIONS(7337), 1, + [85163] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8925), 1, + STATE(9061), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549749,64 +561690,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84442] = 23, - ACTIONS(7337), 1, + [85253] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8897), 1, + STATE(8983), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549814,64 +561756,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84530] = 23, - ACTIONS(7337), 1, + [85343] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8919), 1, + STATE(8992), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549879,64 +561822,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84618] = 23, - ACTIONS(7337), 1, + [85433] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8945), 1, + STATE(8827), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549944,64 +561888,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84706] = 23, - ACTIONS(7337), 1, + [85523] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7187), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7189), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + 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, + [85571] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5159), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(5161), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + 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, + [85619] = 4, + ACTIONS(9111), 1, + sym__quest, + STATE(5760), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4206), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85669] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8940), 1, + STATE(9074), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550009,64 +562090,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84794] = 23, - ACTIONS(7337), 1, + [85759] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8935), 1, + STATE(9004), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550074,16 +562156,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [84882] = 3, + [85849] = 4, + ACTIONS(9113), 1, + anon_sym_DOT, + STATE(5630), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 37, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85899] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7143), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7145), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85947] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5187), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(5189), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85995] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4021), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9115), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86043] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8977), 3, + ACTIONS(9119), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(8975), 36, + ACTIONS(9117), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -550120,63 +562382,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84930] = 23, - ACTIONS(7337), 1, + [86091] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8914), 1, + STATE(9362), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550184,16 +562448,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [85018] = 3, + [86181] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9123), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9121), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86229] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4927), 3, + ACTIONS(9127), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4929), 36, + ACTIONS(9125), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -550230,128 +562538,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85066] = 23, - ACTIONS(7337), 1, + [86277] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8907), 1, + STATE(9013), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86367] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9115), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4009), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4021), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [86417] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9103), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4009), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4011), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85154] = 23, - ACTIONS(7337), 1, + [86467] = 24, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(8944), 1, + ACTIONS(9107), 1, anon_sym_STAR, - STATE(5959), 1, + STATE(6124), 1, sym_type_projection_modifiers, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8930), 1, + STATE(9089), 1, sym_type_projection, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, + ACTIONS(7403), 2, anon_sym_in, anon_sym_out, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7162), 3, + STATE(7214), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9277), 4, + STATE(9386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550359,17 +562762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [85242] = 3, - ACTIONS(8979), 1, - anon_sym_AMP, + [86557] = 4, + ACTIONS(9129), 1, + sym__quest, + STATE(5723), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 37, + ACTIONS(4249), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -550377,7 +562782,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, @@ -550404,23 +562808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85289] = 4, - ACTIONS(8938), 1, - anon_sym_DOT, - STATE(5667), 1, - aux_sym_user_type_repeat1, + [86607] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 36, - sym__automatic_semicolon, + ACTIONS(9133), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9131), 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_suspend, @@ -550440,7 +562845,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, @@ -550449,16 +562853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85338] = 3, - ACTIONS(8981), 1, - anon_sym_AMP, + [86655] = 4, + ACTIONS(9111), 1, + sym__quest, + STATE(5760), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 37, + ACTIONS(4305), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -550466,7 +562873,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, @@ -550493,66 +562899,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85385] = 3, + [86705] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9027), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86795] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8969), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8948), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8946), 35, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86885] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8908), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86975] = 24, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9107), 1, + anon_sym_STAR, + STATE(6124), 1, + sym_type_projection_modifiers, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(8999), 1, + sym_type_projection, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7214), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9386), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85431] = 3, + [87065] = 3, + ACTIONS(9135), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8977), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8975), 35, + ACTIONS(4239), 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, @@ -550579,15 +563207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85477] = 2, + [87112] = 4, + ACTIONS(9094), 1, + anon_sym_DOT, + STATE(5719), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 37, + ACTIONS(4195), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -550621,23 +563252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85521] = 3, + [87161] = 3, + ACTIONS(9137), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7185), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7187), 35, + ACTIONS(4239), 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, @@ -550664,14 +563296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85567] = 3, + [87208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8956), 2, + ACTIONS(5187), 2, anon_sym_val, anon_sym_var, - ACTIONS(8954), 35, + ACTIONS(5189), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -550707,14 +563339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85613] = 3, + [87254] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 2, + ACTIONS(4021), 2, anon_sym_val, anon_sym_var, - ACTIONS(4957), 35, + ACTIONS(9115), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -550750,23 +563382,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85659] = 3, + [87300] = 4, + ACTIONS(9139), 1, + sym__quest, + STATE(5781), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3825), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8962), 35, + ACTIONS(4206), 35, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -550793,23 +563426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85705] = 3, - ACTIONS(4350), 1, - anon_sym_DASH_GT, + [87348] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4348), 36, + ACTIONS(9133), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9131), 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, @@ -550836,14 +563469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85751] = 3, + [87394] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 2, + ACTIONS(9127), 2, anon_sym_val, anon_sym_var, - ACTIONS(7191), 35, + ACTIONS(9125), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -550879,22 +563512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85797] = 5, - ACTIONS(8983), 1, - anon_sym_LT, - STATE(5787), 1, - sym_type_arguments, + [87440] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4108), 31, + ACTIONS(7191), 2, anon_sym_val, anon_sym_var, + ACTIONS(7193), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -550923,21 +563555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [85847] = 2, + [87486] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 37, - sym__automatic_semicolon, + ACTIONS(5183), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(5185), 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, @@ -550966,22 +563598,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85891] = 2, + [87532] = 3, + ACTIONS(9141), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 37, - sym__automatic_semicolon, + ACTIONS(4239), 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, @@ -551008,14 +563641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85935] = 3, + [87578] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3867), 2, + ACTIONS(7187), 2, anon_sym_val, anon_sym_var, - ACTIONS(8970), 35, + ACTIONS(7189), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551051,20 +563684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85981] = 2, + [87624] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4540), 37, - sym__automatic_semicolon, + ACTIONS(9123), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9121), 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, @@ -551093,23 +563727,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86025] = 3, - ACTIONS(8985), 1, - anon_sym_AMP, + [87670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 36, + ACTIONS(7143), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7145), 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, @@ -551136,15 +563770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86071] = 4, - ACTIONS(8987), 1, + [87716] = 4, + ACTIONS(9143), 1, sym__quest, - STATE(5735), 1, + STATE(5792), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4280), 35, + ACTIONS(4249), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -551180,14 +563814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86119] = 3, + [87764] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 2, + ACTIONS(7179), 2, anon_sym_val, anon_sym_var, - ACTIONS(5047), 35, + ACTIONS(7181), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551223,15 +563857,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86165] = 4, - ACTIONS(8989), 1, + [87810] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9119), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9117), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87856] = 3, + ACTIONS(9145), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4239), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87902] = 4, + ACTIONS(9139), 1, sym__quest, - STATE(5735), 1, + STATE(5781), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4227), 35, + ACTIONS(4305), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -551267,21 +563987,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86213] = 3, + [87950] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7153), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7155), 35, + ACTIONS(4206), 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, @@ -551310,19 +564029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86259] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + [87994] = 5, + ACTIONS(9147), 1, + anon_sym_LT, + STATE(5818), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, + ACTIONS(4189), 4, anon_sym_AT, anon_sym_LPAREN, - anon_sym_LT, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(3818), 31, + ACTIONS(4128), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -551354,22 +564074,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86307] = 2, + [88044] = 3, + ACTIONS(4214), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4551), 37, - sym__automatic_semicolon, + ACTIONS(4212), 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, @@ -551396,14 +564117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86351] = 3, + [88090] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4927), 2, + ACTIONS(7171), 2, anon_sym_val, anon_sym_var, - ACTIONS(4929), 35, + ACTIONS(7173), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551439,21 +564160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86397] = 3, + [88136] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8966), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8964), 35, + ACTIONS(4672), 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, @@ -551482,14 +564202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86443] = 3, + [88180] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8952), 2, + ACTIONS(4011), 2, anon_sym_val, anon_sym_var, - ACTIONS(8950), 35, + ACTIONS(9103), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551525,15 +564245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86489] = 4, - ACTIONS(8992), 1, + [88226] = 4, + ACTIONS(9149), 1, sym__quest, - STATE(5733), 1, + STATE(5792), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4223), 35, + ACTIONS(4224), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -551569,23 +564289,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86537] = 3, - ACTIONS(8994), 1, - anon_sym_AMP, + [88274] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9098), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9096), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88320] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 36, + ACTIONS(4573), 37, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, - sym__quest, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -551612,24 +564374,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86583] = 4, - ACTIONS(8992), 1, - sym__quest, - STATE(5733), 1, - aux_sym_nullable_type_repeat1, + [88364] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4167), 35, + ACTIONS(4681), 37, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -551656,14 +564416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86631] = 3, + [88408] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 2, + ACTIONS(5159), 2, anon_sym_val, anon_sym_var, - ACTIONS(4867), 35, + ACTIONS(5161), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551699,11 +564459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86677] = 2, + [88454] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4651), 37, + ACTIONS(4765), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -551741,11 +564501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86721] = 2, + [88498] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4659), 37, + ACTIONS(4730), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -551783,11 +564543,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86765] = 2, + [88542] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4663), 37, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [88590] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4676), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -551825,21 +564629,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86809] = 3, + [88634] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7172), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7174), 35, + ACTIONS(4708), 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, @@ -551868,14 +564671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86855] = 3, + [88678] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7113), 2, + ACTIONS(5163), 2, anon_sym_val, anon_sym_var, - ACTIONS(7115), 35, + ACTIONS(5165), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551911,11 +564714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86901] = 2, + [88724] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4223), 37, + ACTIONS(4698), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -551953,14 +564756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86945] = 3, + [88768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5138), 2, + ACTIONS(5179), 2, anon_sym_val, anon_sym_var, - ACTIONS(5140), 35, + ACTIONS(5181), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -551996,21 +564799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86991] = 5, - ACTIONS(8996), 1, - anon_sym_DOT, - STATE(5759), 1, - aux_sym_user_type_repeat1, + [88814] = 4, + ACTIONS(9152), 1, + anon_sym_COMMA, + STATE(5805), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 3, + ACTIONS(4432), 34, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4140), 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, @@ -552039,20 +564842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [87040] = 5, - ACTIONS(8998), 1, + [88861] = 5, + ACTIONS(9155), 1, anon_sym_DOT, - STATE(5754), 1, + STATE(5809), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 3, + ACTIONS(4155), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4101), 31, + ACTIONS(4153), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -552084,20 +564886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87089] = 4, - ACTIONS(9001), 1, - anon_sym_COMMA, - STATE(5762), 1, - aux_sym_type_constraints_repeat1, + [88910] = 3, + ACTIONS(9044), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 34, + ACTIONS(4124), 35, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, anon_sym_RBRACE, anon_sym_by, + anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -552127,11 +564928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87136] = 2, + [88955] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4647), 36, + ACTIONS(4724), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -552168,19 +564969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87179] = 2, + [88998] = 5, + ACTIONS(9157), 1, + anon_sym_DOT, + STATE(5809), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4560), 36, - sym__automatic_semicolon, + ACTIONS(4168), 3, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4166), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -552209,19 +565012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87222] = 4, - ACTIONS(9003), 1, - anon_sym_COMMA, - STATE(5758), 1, - aux_sym_type_constraints_repeat1, + sym__alpha_identifier, + [89047] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 34, + ACTIONS(4662), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_by, anon_sym_SEMI, anon_sym_get, @@ -552252,21 +565054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87269] = 5, - ACTIONS(8996), 1, - anon_sym_DOT, - STATE(5754), 1, - aux_sym_user_type_repeat1, + [89090] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 3, + ACTIONS(4432), 36, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4075), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -552295,18 +565095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [87318] = 2, + [89133] = 4, + ACTIONS(9160), 1, + anon_sym_COMMA, + STATE(5814), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 36, + ACTIONS(4341), 34, 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, @@ -552337,20 +565138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87361] = 3, - ACTIONS(8888), 1, - anon_sym_COLON, + [89180] = 5, + ACTIONS(9155), 1, + anon_sym_DOT, + STATE(5806), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 35, - sym__automatic_semicolon, + ACTIONS(4195), 3, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4193), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -552379,15 +565181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87406] = 4, - ACTIONS(9001), 1, + sym__alpha_identifier, + [89229] = 4, + ACTIONS(9160), 1, anon_sym_COMMA, - STATE(5758), 1, + STATE(5805), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 34, + ACTIONS(4426), 34, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -552422,18 +565225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87453] = 2, + [89276] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4715), 35, - sym__automatic_semicolon, + ACTIONS(4168), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4166), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -552462,20 +565265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87495] = 2, + sym__alpha_identifier, + [89320] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4711), 35, - sym__automatic_semicolon, + ACTIONS(4672), 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, @@ -552502,20 +565306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87537] = 3, + [89362] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 4, + ACTIONS(4662), 35, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4171), 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, @@ -552542,17 +565346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [87581] = 3, + [89404] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4310), 4, + ACTIONS(4337), 4, anon_sym_AT, anon_sym_LPAREN, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4308), 31, + ACTIONS(4335), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -552584,63 +565387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87625] = 5, - ACTIONS(9006), 1, - anon_sym_LT, - STATE(5821), 1, - sym_type_arguments, + [89448] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 5, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4108), 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, - [87673] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4560), 35, + ACTIONS(4718), 35, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_by, + anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -552667,13 +565427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87715] = 3, - ACTIONS(8897), 1, + [89490] = 3, + ACTIONS(9048), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 34, + ACTIONS(4124), 34, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -552708,18 +565468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87759] = 4, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(5773), 1, - aux_sym_type_constraints_repeat1, + [89534] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 33, + ACTIONS(4573), 35, anon_sym_AT, anon_sym_EQ, + anon_sym_COMMA, anon_sym_by, + anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -552750,20 +565508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87805] = 2, + [89576] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4651), 35, + ACTIONS(4009), 6, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym_label, + ACTIONS(4004), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -552790,16 +565550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87847] = 2, + [89622] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4647), 35, + ACTIONS(4681), 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, @@ -552830,18 +565590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87889] = 4, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(5785), 1, - aux_sym_type_constraints_repeat1, + [89664] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 33, + ACTIONS(4676), 35, anon_sym_AT, anon_sym_EQ, + anon_sym_COMMA, anon_sym_by, + anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -552872,18 +565630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87935] = 5, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(5826), 1, - sym_value_arguments, + [89706] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7106), 2, + ACTIONS(4315), 4, anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(7104), 31, + ACTIONS(4313), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -552915,20 +565671,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87983] = 2, + [89750] = 5, + ACTIONS(9162), 1, + anon_sym_LT, + STATE(5867), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 35, + ACTIONS(4189), 5, anon_sym_AT, - anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4128), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -552955,20 +565714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88025] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + [89798] = 5, + ACTIONS(9164), 1, + anon_sym_LPAREN, + STATE(5851), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 6, + ACTIONS(7089), 2, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym_label, - ACTIONS(3818), 28, + sym__backtick_identifier, + ACTIONS(7087), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -552997,11 +565756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88071] = 2, + sym__alpha_identifier, + [89846] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4540), 35, + ACTIONS(4730), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -553037,11 +565797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88113] = 2, + [89888] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4551), 35, + ACTIONS(4206), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -553077,20 +565837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88155] = 2, + [89930] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 35, + ACTIONS(4704), 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, @@ -553117,11 +565877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88197] = 2, + [89972] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 35, + ACTIONS(4765), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -553157,19 +565917,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88239] = 2, + [90014] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4659), 35, + ACTIONS(4734), 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_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, + [90056] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4432), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, anon_sym_while, anon_sym_suspend, anon_sym_sealed, @@ -553197,16 +565997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88281] = 2, + [90098] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 35, + ACTIONS(4724), 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, @@ -553237,11 +566037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88323] = 2, + [90140] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4223), 35, + ACTIONS(4708), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -553277,11 +566077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88365] = 2, + [90182] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4663), 35, + ACTIONS(4698), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -553317,15 +566117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88407] = 4, - ACTIONS(9012), 1, + [90224] = 4, + ACTIONS(9166), 1, anon_sym_COMMA, - STATE(5785), 1, + STATE(5837), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 33, + ACTIONS(4432), 33, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -553359,20 +566159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88453] = 2, + [90270] = 4, + ACTIONS(9169), 1, + anon_sym_COMMA, + STATE(5837), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4687), 35, - sym__automatic_semicolon, + ACTIONS(4426), 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, @@ -553399,20 +566201,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88495] = 3, + [90316] = 4, + ACTIONS(9169), 1, + anon_sym_COMMA, + STATE(5838), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 4, + ACTIONS(4341), 33, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4314), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -553439,17 +566243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [88539] = 3, + [90362] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 4, + ACTIONS(4319), 4, anon_sym_AT, anon_sym_LPAREN, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4101), 31, + ACTIONS(4317), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -553481,19 +566284,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88583] = 2, + [90406] = 5, + ACTIONS(9171), 1, + anon_sym_DOT, + STATE(5843), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4711), 34, + ACTIONS(4195), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4193), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -553520,18 +566326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88624] = 3, + [90453] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 6, + ACTIONS(4009), 6, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, sym_label, - ACTIONS(3818), 28, + ACTIONS(4004), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -553560,20 +566366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88667] = 5, - ACTIONS(9015), 1, + [90496] = 5, + ACTIONS(9171), 1, anon_sym_DOT, - STATE(5794), 1, + STATE(5850), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 4, + ACTIONS(4155), 4, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4140), 28, + ACTIONS(4153), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -553602,21 +566408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88714] = 3, - ACTIONS(4482), 1, - sym_property_modifier, + [90543] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4484), 33, - sym__automatic_semicolon, + ACTIONS(4718), 34, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_by, anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -553634,6 +566438,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, @@ -553642,11 +566447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88757] = 2, + [90584] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4715), 34, + ACTIONS(4734), 34, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -553681,20 +566486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88798] = 5, - ACTIONS(9015), 1, - anon_sym_DOT, - STATE(5796), 1, - aux_sym_user_type_repeat1, + [90625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 4, + ACTIONS(4181), 6, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, sym_label, - ACTIONS(4075), 28, + ACTIONS(4179), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -553723,13 +566526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88845] = 3, - ACTIONS(4478), 1, + [90668] = 3, + ACTIONS(4489), 1, sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4480), 33, + ACTIONS(4491), 33, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, @@ -553763,22 +566566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88888] = 5, - ACTIONS(9017), 1, - anon_sym_DOT, - STATE(5796), 1, - aux_sym_user_type_repeat1, + [90711] = 3, + ACTIONS(4471), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 4, + ACTIONS(4473), 33, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - sym_label, - ACTIONS(4101), 28, - anon_sym_get, - anon_sym_set, + anon_sym_where, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -553796,7 +566598,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, @@ -553805,11 +566606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88935] = 2, + [90754] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4687), 34, + ACTIONS(4704), 34, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -553844,69 +566645,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88976] = 19, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9020), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, + [90795] = 5, + ACTIONS(9173), 1, + anon_sym_DOT, + STATE(5850), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8858), 5, - sym_parameter, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4166), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89050] = 3, + [90842] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 2, + ACTIONS(5189), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7153), 31, + ACTIONS(5187), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -553938,54 +566726,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89092] = 20, - ACTIONS(7337), 1, + [90884] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8704), 1, + STATE(8332), 1, sym_user_type, - STATE(8858), 1, - sym_parameter, - STATE(9361), 1, + STATE(8343), 1, + sym_simple_identifier, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8829), 4, + STATE(8961), 5, + sym_parameter, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553993,55 +566782,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89168] = 20, - ACTIONS(7337), 1, + [90960] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8704), 1, + STATE(8673), 1, sym_user_type, - STATE(8858), 1, + STATE(8961), 1, sym_parameter, - STATE(9361), 1, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8847), 4, + STATE(9033), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554049,15 +566839,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [91038] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9131), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9133), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - [89244] = 3, + [91080] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 2, + ACTIONS(9096), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(4927), 31, + ACTIONS(9098), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554089,54 +566917,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89286] = 20, - ACTIONS(7337), 1, + [91122] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8704), 1, + STATE(8673), 1, sym_user_type, - STATE(8858), 1, + STATE(8961), 1, sym_parameter, - STATE(9361), 1, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8987), 4, + STATE(9084), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554144,17 +566974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89362] = 3, + [91200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 2, + ACTIONS(4168), 5, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5045), 31, - anon_sym_val, - anon_sym_var, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4166), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -554183,55 +567013,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89404] = 20, - ACTIONS(7337), 1, + [91242] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8704), 1, + STATE(8673), 1, sym_user_type, - STATE(8858), 1, + STATE(8961), 1, sym_parameter, - STATE(9361), 1, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8868), 4, + STATE(9071), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554239,15 +567070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89480] = 3, + [91320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8954), 2, + ACTIONS(9103), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(8956), 31, + ACTIONS(4011), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554279,74 +567109,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89522] = 20, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9020), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8704), 1, - sym_user_type, - STATE(8858), 1, - sym_parameter, - STATE(9361), 1, - sym_parenthesized_user_type, - STATE(9675), 1, - sym_function_type_parameters, + [91362] = 3, + ACTIONS(4471), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8781), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, - anon_sym_get, - anon_sym_set, + ACTIONS(4473), 32, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89598] = 3, + [91404] = 3, + ACTIONS(4489), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 2, + ACTIONS(4491), 32, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4955), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554364,7 +567179,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, @@ -554373,55 +567187,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89640] = 20, - ACTIONS(7337), 1, + [91446] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8704), 1, + STATE(8673), 1, sym_user_type, - STATE(8858), 1, + STATE(8961), 1, sym_parameter, - STATE(9361), 1, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8885), 4, + STATE(8838), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554429,17 +567244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89716] = 3, + [91524] = 5, + ACTIONS(9178), 1, + anon_sym_LPAREN, + STATE(6268), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 2, + ACTIONS(7089), 3, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4865), 31, - anon_sym_val, - anon_sym_var, + anon_sym_LBRACE, + sym_label, + ACTIONS(7087), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -554468,15 +567285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89758] = 3, + [91570] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 2, + ACTIONS(7145), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7189), 31, + ACTIONS(7143), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554508,70 +567324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89800] = 20, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9020), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8704), 1, - sym_user_type, - STATE(8858), 1, - sym_parameter, - STATE(9361), 1, - sym_parenthesized_user_type, - STATE(9675), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8815), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [89876] = 3, + [91612] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8970), 2, + ACTIONS(9115), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(3867), 31, + ACTIONS(4021), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554603,14 +567363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89918] = 3, + [91654] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, + ACTIONS(5161), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7185), 31, + ACTIONS(5159), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554642,16 +567402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89960] = 3, + [91696] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8962), 2, + ACTIONS(4337), 5, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(3825), 31, - anon_sym_val, - anon_sym_var, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4335), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -554680,21 +567441,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [91738] = 21, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, + sym_user_type, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9054), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91816] = 21, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [90002] = 3, - ACTIONS(4482), 1, - sym_property_modifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, + sym_user_type, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8869), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91894] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4484), 32, + ACTIONS(7189), 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(7187), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554712,6 +567584,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, @@ -554720,17 +567593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90044] = 3, + sym__alpha_identifier, + [91936] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 5, + ACTIONS(5165), 2, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4101), 28, + sym__backtick_identifier, + ACTIONS(5163), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -554759,14 +567632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90086] = 3, + sym__alpha_identifier, + [91978] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8975), 2, + ACTIONS(9125), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(8977), 31, + ACTIONS(9127), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554798,70 +567672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90128] = 20, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9020), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8704), 1, - sym_user_type, - STATE(8858), 1, - sym_parameter, - STATE(9361), 1, - sym_parenthesized_user_type, - STATE(9675), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8805), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 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, - [90204] = 3, + [92020] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 2, + ACTIONS(5181), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7113), 31, + ACTIONS(5179), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -554893,17 +567711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90246] = 3, + [92062] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 5, + ACTIONS(9121), 2, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4314), 28, + sym__backtick_identifier, + ACTIONS(9123), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -554932,20 +567749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90288] = 3, - ACTIONS(4478), 1, - sym_property_modifier, + sym__alpha_identifier, + [92104] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4480), 32, + ACTIONS(5185), 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(5183), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554963,6 +567779,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, @@ -554971,14 +567788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90330] = 3, + sym__alpha_identifier, + [92146] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 2, + ACTIONS(7193), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7172), 31, + ACTIONS(7191), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -555010,110 +567828,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90372] = 20, - ACTIONS(7337), 1, + [92188] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9020), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(8071), 1, - sym__simple_user_type, - STATE(8275), 1, - sym_simple_identifier, - STATE(8704), 1, - sym_user_type, - STATE(8858), 1, - sym_parameter, - STATE(9361), 1, - sym_parenthesized_user_type, - STATE(9675), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8741), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + ACTIONS(8672), 1, sym__alpha_identifier, - [90448] = 20, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8704), 1, + STATE(8673), 1, sym_user_type, - STATE(8858), 1, + STATE(8961), 1, sym_parameter, - STATE(9361), 1, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8880), 4, + STATE(8988), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555121,15 +567885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [90524] = 3, + [92266] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 2, + ACTIONS(7181), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5138), 31, + ACTIONS(7179), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -555161,95 +567924,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90566] = 5, - ACTIONS(9022), 1, - anon_sym_LPAREN, - STATE(6107), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7106), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7104), 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, - [90612] = 20, - ACTIONS(7337), 1, + [92308] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9020), 1, + ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8704), 1, + STATE(8673), 1, sym_user_type, - STATE(8858), 1, + STATE(8961), 1, sym_parameter, - STATE(9361), 1, + STATE(9455), 1, sym_parenthesized_user_type, - STATE(9675), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8855), 4, + STATE(9026), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555257,15 +567981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [90688] = 3, + [92386] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8946), 2, + ACTIONS(7173), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(8948), 31, + ACTIONS(7171), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -555297,53 +568020,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90730] = 3, + [92428] = 21, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, + sym_user_type, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8950), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(8952), 31, - anon_sym_val, - anon_sym_var, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8962), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [92506] = 21, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [90772] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, + sym__simple_user_type, + STATE(8343), 1, + sym_simple_identifier, + STATE(8673), 1, + sym_user_type, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9059), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92584] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8964), 2, + ACTIONS(9117), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(8966), 31, + ACTIONS(9119), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -555375,51 +568173,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90814] = 18, - ACTIONS(7337), 1, + [92626] = 21, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(8275), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(8673), 1, + sym_user_type, + STATE(8961), 1, + sym_parameter, + STATE(9455), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9075), 5, - sym_parameter, + STATE(8842), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555427,53 +568230,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [90885] = 19, - ACTIONS(7337), 1, + [92704] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8285), 1, + STATE(8348), 1, sym_simple_identifier, - STATE(8961), 1, + STATE(8967), 1, sym_variable_declaration, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555481,53 +568285,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [90958] = 19, - ACTIONS(7337), 1, + [92779] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8285), 1, + STATE(8348), 1, sym_simple_identifier, - STATE(8767), 1, + STATE(8929), 1, sym_variable_declaration, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555535,53 +568340,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91031] = 19, - ACTIONS(7337), 1, + [92854] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8285), 1, + STATE(8348), 1, sym_simple_identifier, - STATE(8732), 1, + STATE(8822), 1, sym_variable_declaration, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555589,53 +568395,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91104] = 19, - ACTIONS(7337), 1, + [92929] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8285), 1, + STATE(8343), 1, sym_simple_identifier, - STATE(8795), 1, - sym_variable_declaration, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9181), 5, + sym_parameter, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555643,53 +568449,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91177] = 19, - ACTIONS(7337), 1, + [93002] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8285), 1, + STATE(8348), 1, sym_simple_identifier, - STATE(8957), 1, + STATE(9092), 1, sym_variable_declaration, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555697,53 +568504,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91250] = 19, - ACTIONS(7337), 1, + [93077] = 20, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(8285), 1, + STATE(8348), 1, sym_simple_identifier, - STATE(8842), 1, + STATE(9096), 1, sym_variable_declaration, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555751,51 +568559,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93152] = 20, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [91323] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(8138), 1, sym__simple_user_type, - STATE(4621), 1, - sym_simple_identifier, - STATE(4833), 1, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(8348), 1, + sym_simple_identifier, + STATE(8806), 1, + sym_variable_declaration, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5130), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555803,51 +568614,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93227] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [91393] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6352), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4083), 4, + STATE(889), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555855,51 +568667,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93299] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [91463] = 18, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9034), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9042), 1, - sym__backtick_identifier, - STATE(5636), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(5642), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6433), 1, + STATE(6477), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5335), 2, + STATE(2735), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7533), 2, + STATE(7439), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9032), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555907,51 +568720,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91533] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [93371] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(2866), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(5694), 1, sym__lexical_identifier, - STATE(6458), 1, + STATE(6481), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1307), 2, + STATE(5439), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7340), 2, + STATE(7564), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555959,51 +568773,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93443] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [91603] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9447), 4, + STATE(3544), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556011,51 +568826,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93515] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [91673] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3432), 4, + STATE(5254), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556063,51 +568879,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91743] = 18, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [93587] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + STATE(6422), 1, + sym_type_modifiers, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(8551), 1, sym__simple_user_type, - STATE(4621), 1, - sym_simple_identifier, - STATE(4833), 1, + STATE(8921), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9494), 1, sym_function_type_parameters, + STATE(9703), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8825), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4842), 4, + STATE(8588), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(9210), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93659] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6457), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2362), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7428), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556115,51 +568985,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93731] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [91813] = 18, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4815), 1, sym_user_type, - STATE(6371), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5095), 4, + STATE(5467), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556167,51 +569038,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91883] = 18, - ACTIONS(7344), 1, + [93803] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9052), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9054), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(9056), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3025), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(3323), 1, + STATE(8324), 1, sym_user_type, - STATE(6387), 1, - sym_type_modifiers, - STATE(9498), 1, - sym_function_type_parameters, - STATE(9825), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3322), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3954), 4, + STATE(8337), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9050), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556219,51 +569091,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93875] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [91953] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(3136), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6434), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, + STATE(825), 1, sym__simple_user_type, + STATE(860), 1, + sym_user_type, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1966), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7300), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(967), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556271,51 +569144,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [93947] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [92023] = 18, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(3392), 1, sym_user_type, - STATE(6367), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4645), 4, + STATE(3761), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556323,51 +569197,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94019] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [92093] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8608), 4, + STATE(3971), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556375,51 +569250,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94091] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [92163] = 18, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6371), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5258), 4, + STATE(3977), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556427,51 +569303,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94163] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [92233] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2384), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7416), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94235] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6378), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1345), 4, + STATE(4821), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556479,51 +569409,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94307] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [92303] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9623), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9187), 4, + STATE(5463), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556531,51 +569462,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94379] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [92373] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6388), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5037), 4, + STATE(5472), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556583,51 +569515,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94451] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [92443] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5772), 4, + STATE(4675), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556635,51 +569568,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94523] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [92513] = 18, - ACTIONS(7337), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6473), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2381), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7414), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94595] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8717), 4, + STATE(4147), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556687,51 +569674,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94667] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [92583] = 18, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6371), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5262), 4, + STATE(4843), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556739,51 +569727,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92653] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [94739] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6378), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1141), 4, + STATE(4847), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556791,51 +569780,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92723] = 18, - ACTIONS(7337), 1, + [94811] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8711), 4, + STATE(8714), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556843,51 +569833,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94883] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [92793] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2947), 4, + STATE(5095), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556895,51 +569886,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [94955] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [92863] = 18, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6367), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4755), 4, + STATE(5473), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556947,51 +569939,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95027] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [92933] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(838), 4, + STATE(8658), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556999,51 +569992,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95099] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [93003] = 18, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(3136), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, - STATE(6452), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2112), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7321), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(4816), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(4926), 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, @@ -557051,51 +570045,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [93073] = 18, - ACTIONS(7337), 1, + [95171] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8633), 4, + STATE(9899), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557103,51 +570098,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95243] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [93143] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(839), 4, + STATE(3524), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557155,140 +570151,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95315] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [93213] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4688), 4, + STATE(988), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 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, - [93283] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7174), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7172), 28, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [93323] = 18, - ACTIONS(7337), 1, + [95387] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8638), 4, + STATE(8716), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557296,51 +570257,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95459] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9232), 1, sym__alpha_identifier, - [93393] = 18, - ACTIONS(7337), 1, + ACTIONS(9234), 1, + anon_sym_LPAREN, + ACTIONS(9238), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4665), 1, sym_user_type, - STATE(9675), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8641), 4, + STATE(5200), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9236), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95531] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(6504), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(562), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7386), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557348,51 +570363,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [93463] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [95603] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9254), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5617), 1, sym_simple_identifier, - STATE(818), 1, + STATE(5748), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(5784), 1, sym_user_type, - STATE(6378), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9753), 1, sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(841), 4, + STATE(5844), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557400,51 +570416,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95675] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [93533] = 18, - ACTIONS(7337), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6525), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(584), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7382), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8242), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557452,51 +570469,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [93603] = 18, - ACTIONS(7337), 1, + [95747] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8642), 4, + STATE(10067), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557504,51 +570522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95819] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [93673] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(924), 4, + STATE(4134), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557556,51 +570575,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95891] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [93743] = 18, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6355), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3466), 4, + STATE(3821), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557608,51 +570628,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [95963] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [93813] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5271), 4, + STATE(8677), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557660,51 +570681,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96035] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [93883] = 18, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4815), 1, sym_user_type, - STATE(6371), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5280), 4, + STATE(5479), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557712,51 +570734,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96107] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [93953] = 18, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(2973), 1, sym_user_type, - STATE(6367), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4629), 4, + STATE(3502), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557764,51 +570787,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96179] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [94023] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1306), 4, + STATE(8671), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557816,51 +570840,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94093] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [96251] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6370), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2890), 4, + STATE(5258), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557868,51 +570893,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94163] = 18, - ACTIONS(7337), 1, + [96323] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8616), 4, + STATE(8649), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557920,51 +570946,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96395] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [94233] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(912), 4, + STATE(3468), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557972,51 +570999,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94303] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + [96467] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6447), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7891), 1, sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(634), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7372), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(5798), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558024,51 +571052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96539] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [94373] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(842), 4, + STATE(4123), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558076,51 +571105,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96611] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [94443] = 18, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6371), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5273), 4, + STATE(3474), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558128,51 +571158,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96683] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [94513] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(846), 4, + STATE(4201), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558180,51 +571211,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94583] = 18, - ACTIONS(7337), 1, + [96755] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8647), 4, + STATE(9557), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558232,51 +571264,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96827] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [94653] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8649), 4, + STATE(4224), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558284,51 +571317,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [96899] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - [94723] = 18, - ACTIONS(7337), 1, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8324), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8335), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96971] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, + sym_user_type, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, + sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8650), 4, + STATE(4915), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558336,51 +571423,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97043] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [94793] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8651), 4, + STATE(5509), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558388,51 +571476,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97115] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [94863] = 18, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4578), 1, sym_user_type, - STATE(6355), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3178), 4, + STATE(5483), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558440,51 +571529,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [94933] = 18, - ACTIONS(7337), 1, + [97187] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6374), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(8332), 1, sym_user_type, STATE(9735), 1, - sym_function_type_parameters, - STATE(9738), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8311), 4, + STATE(8665), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558492,51 +571582,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95003] = 18, - ACTIONS(7337), 1, + [97259] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8710), 4, + STATE(8296), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558544,51 +571635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95073] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [97331] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8324), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5169), 4, + STATE(8355), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558596,125 +571688,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97403] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [95143] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7115), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7113), 28, - anon_sym_get, - anon_sym_set, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [95183] = 3, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, + sym_simple_identifier, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, + sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7153), 28, + STATE(2977), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4116), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1592), 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, - [95223] = 18, - ACTIONS(411), 1, + [97475] = 19, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(4578), 1, sym_user_type, - STATE(6378), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(969), 4, + STATE(5525), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558722,51 +571794,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97547] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [95293] = 18, - ACTIONS(7344), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(4578), 1, sym_user_type, - STATE(6388), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9452), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9809), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5032), 4, + STATE(5010), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558774,51 +571847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97619] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [95363] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1334), 4, + STATE(4106), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558826,51 +571900,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97691] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [95433] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(954), 4, + STATE(3567), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558878,51 +571953,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97763] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [95503] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1316), 4, + STATE(1074), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558930,88 +572006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97835] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [95573] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7187), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7185), 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, - [95613] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1013), 4, + STATE(1078), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559019,51 +572059,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [97907] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [95683] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(909), 4, + STATE(8662), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559071,51 +572112,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95753] = 18, - ACTIONS(7337), 1, + [97979] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9540), 4, + STATE(8661), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559123,51 +572165,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95823] = 18, - ACTIONS(571), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [98051] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9264), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(3064), 1, sym_user_type, - STATE(6355), 1, + STATE(6448), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9673), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9910), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2929), 4, + STATE(3626), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559175,51 +572218,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [98123] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [95893] = 18, - ACTIONS(7344), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(860), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5746), 4, + STATE(1451), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559227,51 +572271,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [95963] = 18, - ACTIONS(7337), 1, + [98195] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8682), 4, + STATE(9517), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559279,51 +572324,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [98267] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9232), 1, sym__alpha_identifier, - [96033] = 18, - ACTIONS(7337), 1, + ACTIONS(9234), 1, + anon_sym_LPAREN, + ACTIONS(9238), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4665), 1, sym_user_type, - STATE(9675), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8685), 4, + STATE(4885), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559331,51 +572377,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96103] = 18, - ACTIONS(7337), 1, + [98339] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8686), 4, + STATE(8660), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559383,51 +572430,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96173] = 18, - ACTIONS(7337), 1, + [98411] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8687), 4, + STATE(8657), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559435,51 +572483,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [98483] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [96243] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8591), 4, + STATE(1708), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559487,51 +572536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [98555] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [96313] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8589), 4, + STATE(3304), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559539,51 +572589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96383] = 18, - ACTIONS(7337), 1, + [98627] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8588), 4, + STATE(9484), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559591,51 +572642,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [98699] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [96453] = 18, - ACTIONS(7337), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6456), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(570), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7368), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, sym__type_reference, + sym_user_type, sym_parenthesized_type, - STATE(7161), 3, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98771] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6522), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2357), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7431), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8586), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559643,51 +572748,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96523] = 18, - ACTIONS(7337), 1, + [98843] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8785), 4, + STATE(8693), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559695,51 +572801,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96593] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [98915] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(5718), 1, + sym__simple_user_type, + STATE(5769), 1, sym_user_type, - STATE(6378), 1, + STATE(6430), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9676), 1, sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5808), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98987] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1282), 4, + STATE(8692), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559747,51 +572907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99059] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [96663] = 18, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(860), 1, sym_user_type, - STATE(6355), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3200), 4, + STATE(1300), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559799,51 +572960,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [96733] = 18, - ACTIONS(7337), 1, + [99131] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8693), 4, + STATE(8690), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559851,51 +573013,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99203] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [96803] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(812), 1, sym_simple_identifier, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6406), 1, + STATE(6452), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(636), 2, + STATE(569), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7410), 2, + STATE(7365), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99275] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8703), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559903,51 +573119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99347] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [96873] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9052), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9054), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9056), 1, - sym__backtick_identifier, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3025), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3323), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6387), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9498), 1, - sym_function_type_parameters, - STATE(9825), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3322), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3717), 4, + STATE(4987), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9050), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559955,51 +573172,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99419] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [96943] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8587), 4, + STATE(1250), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560007,51 +573225,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99491] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [97013] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4798), 4, + STATE(1253), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560059,51 +573278,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99563] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [97083] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1287), 4, + STATE(1807), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560111,51 +573331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99635] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [97153] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4939), 4, + STATE(8689), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560163,51 +573384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [97223] = 18, - ACTIONS(7337), 1, + [99707] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8658), 4, + STATE(8639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560215,51 +573437,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99779] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [97293] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4941), 4, + STATE(4611), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560267,51 +573490,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99851] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [97363] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8590), 4, + STATE(5121), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560319,51 +573543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99923] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [97433] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6352), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3645), 4, + STATE(1254), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560371,51 +573596,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [99995] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [97503] = 18, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(812), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6466), 1, + STATE(6471), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1338), 2, + STATE(441), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7519), 2, + STATE(7423), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560423,51 +573649,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100067] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [97573] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4778), 4, + STATE(8709), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560475,51 +573702,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100139] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [97643] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4805), 4, + STATE(1306), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560527,51 +573755,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100211] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [97713] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6527), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7577), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100283] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9074), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5637), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(6389), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7962), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(8332), 1, sym_user_type, - STATE(9623), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8280), 4, + STATE(9742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560579,51 +573861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100355] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [97783] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9052), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9054), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9056), 1, - sym__backtick_identifier, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3025), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3323), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6387), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9498), 1, - sym_function_type_parameters, - STATE(9825), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3322), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3668), 4, + STATE(5546), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9050), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560631,51 +573914,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100427] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [97853] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8595), 4, + STATE(4996), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560683,51 +573967,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100499] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [97923] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1289), 4, + STATE(1153), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560735,51 +574020,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [97993] = 18, - ACTIONS(7337), 1, + [100571] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8609), 4, + STATE(8688), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560787,51 +574073,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100643] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [98063] = 18, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(850), 1, - sym_user_type, - STATE(6378), 1, + STATE(6497), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2688), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7461), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1243), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(333), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560839,51 +574126,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100715] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [98133] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9092), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9094), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9096), 1, - sym__backtick_identifier, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5681), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5732), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6384), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9473), 1, - sym_function_type_parameters, - STATE(9707), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5744), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5771), 4, + STATE(5548), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9090), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560891,53 +574179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [98203] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5047), 3, + [100787] = 4, + ACTIONS(9274), 1, anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5045), 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, - [98243] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 3, - anon_sym_AT, + ACTIONS(9277), 2, anon_sym_LBRACE, sym_label, - ACTIONS(4927), 28, + ACTIONS(2082), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560966,50 +574217,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [98283] = 18, - ACTIONS(571), 1, + [100829] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6355), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2995), 4, + STATE(4166), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561017,51 +574270,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [100901] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [98353] = 18, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(3392), 1, sym_user_type, - STATE(6378), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1285), 4, + STATE(3802), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561069,51 +574323,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [98423] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [100973] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6468), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1619), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7479), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + STATE(8647), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561121,51 +574376,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101045] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [98493] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1180), 4, + STATE(1340), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561173,88 +574429,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101117] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - [98563] = 3, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, + sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4955), 28, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5808), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9220), 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, - [98603] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [101189] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6418), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1616), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7363), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + STATE(8641), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561262,51 +574535,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101261] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [98673] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4946), 4, + STATE(8711), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561314,51 +574588,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101333] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [98743] = 18, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4578), 1, sym_user_type, - STATE(6355), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3612), 4, + STATE(4844), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561366,51 +574641,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101405] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [98813] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3596), 4, + STATE(4910), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561418,51 +574694,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [98883] = 18, - ACTIONS(7337), 1, + [101477] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9409), 4, + STATE(9755), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561470,51 +574747,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101549] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [98953] = 18, - ACTIONS(7344), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9092), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9094), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9096), 1, - sym__backtick_identifier, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5681), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5732), 1, + STATE(860), 1, sym_user_type, - STATE(6384), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9473), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9707), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5744), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1256), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101621] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5779), 4, + STATE(8685), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9090), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561522,51 +574853,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101693] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [99023] = 18, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4815), 1, sym_user_type, - STATE(6371), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5311), 4, + STATE(5203), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561574,51 +574906,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [99093] = 18, - ACTIONS(7337), 1, + [101765] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5768), 4, + STATE(8635), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561626,51 +574959,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101837] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [99163] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(971), 4, + STATE(8762), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561678,51 +575012,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [101909] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [99233] = 18, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(860), 1, sym_user_type, - STATE(6370), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2875), 4, + STATE(1258), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561730,51 +575065,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [99303] = 18, - ACTIONS(7337), 1, + [101981] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8652), 4, + STATE(8764), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561782,51 +575118,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102053] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [99373] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3607), 4, + STATE(8765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561834,51 +575171,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102125] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [99443] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5283), 4, + STATE(8928), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561886,51 +575224,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102197] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [99513] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9208), 4, + STATE(4151), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561938,51 +575277,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102269] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [99583] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4886), 4, + STATE(8769), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561990,88 +575330,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102341] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [99653] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4867), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4865), 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, - [99693] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6408), 1, + STATE(6496), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2597), 2, + STATE(2323), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7483), 2, + STATE(7399), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562079,51 +575383,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102413] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9232), 1, sym__alpha_identifier, - [99763] = 18, - ACTIONS(7337), 1, + ACTIONS(9234), 1, + anon_sym_LPAREN, + ACTIONS(9238), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4665), 1, sym_user_type, - STATE(9675), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8639), 4, + STATE(5330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562131,51 +575436,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102485] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [99833] = 18, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4815), 1, sym_user_type, - STATE(6371), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5349), 4, + STATE(5552), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562183,51 +575489,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102557] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [99903] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8676), 4, + STATE(1327), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562235,51 +575542,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102629] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [99973] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, - anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, - sym_user_type, - STATE(6370), 1, + STATE(6509), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2324), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7535), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2877), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(251), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562287,51 +575595,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [100043] = 18, - ACTIONS(7337), 1, + [102701] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8653), 4, + STATE(8706), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562339,51 +575648,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [100113] = 18, - ACTIONS(7337), 1, + [102773] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8610), 4, + STATE(8707), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562391,51 +575701,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [100183] = 18, - ACTIONS(7337), 1, + [102845] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8617), 4, + STATE(8708), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562443,51 +575754,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [102917] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [100253] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8569), 4, + STATE(985), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562495,51 +575807,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [100323] = 18, - ACTIONS(7337), 1, + [102989] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8605), 4, + STATE(8710), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562547,51 +575860,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103061] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [100393] = 18, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6367), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4929), 4, + STATE(5101), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562599,51 +575913,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [100463] = 18, - ACTIONS(7337), 1, + [103133] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8354), 1, sym_user_type, - STATE(9675), 1, + STATE(9549), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9550), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8574), 4, + STATE(8368), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562651,51 +575966,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103205] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [100533] = 18, - ACTIONS(7337), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6493), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(2456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7533), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8604), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562703,51 +576019,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [100603] = 18, - ACTIONS(7337), 1, + [103277] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8726), 4, + STATE(8659), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562755,51 +576072,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103349] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [100673] = 18, - ACTIONS(197), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6367), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4762), 4, + STATE(3378), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562807,88 +576125,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103421] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [100743] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7189), 28, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4229), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100783] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + [103493] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8575), 4, + STATE(4226), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562896,51 +576231,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103565] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [100853] = 18, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(860), 1, sym_user_type, - STATE(6355), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3606), 4, + STATE(892), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562948,51 +576284,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103637] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [100923] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8659), 4, + STATE(3204), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563000,51 +576337,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103709] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [100993] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9092), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9094), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9096), 1, - sym__backtick_identifier, - STATE(5550), 1, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(5562), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5681), 1, - sym__simple_user_type, - STATE(5732), 1, + STATE(3392), 1, sym_user_type, - STATE(6384), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9473), 1, - sym_function_type_parameters, - STATE(9707), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5744), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5772), 4, + STATE(4196), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9090), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563052,51 +576390,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103781] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [101063] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3603), 4, + STATE(9284), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563104,51 +576443,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101133] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [103853] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6427), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2599), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7387), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(8718), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563156,51 +576496,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101203] = 18, - ACTIONS(7337), 1, + [103925] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8663), 4, + STATE(8777), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563208,51 +576549,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [103997] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [101273] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(851), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(895), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104069] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, + sym__simple_user_type, + STATE(5769), 1, + sym_user_type, + STATE(6430), 1, + sym_type_modifiers, + STATE(9676), 1, + sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8662), 4, + STATE(5798), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563260,51 +576655,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101343] = 18, - ACTIONS(7337), 1, + [104141] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8660), 4, + STATE(8720), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563312,51 +576708,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [104213] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [101413] = 18, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(3136), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, - STATE(6429), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2653), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7391), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(3379), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563364,51 +576761,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101483] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [104285] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(818), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8324), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1321), 4, + STATE(9354), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563416,51 +576814,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101553] = 18, - ACTIONS(7337), 1, + [104357] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8655), 4, + STATE(8721), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563468,51 +576867,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [104429] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [101623] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4937), 4, + STATE(897), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563520,51 +576920,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [104501] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [101693] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(938), 4, + STATE(1181), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563572,51 +576973,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101763] = 18, - ACTIONS(7337), 1, + [104573] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8600), 4, + STATE(8638), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563624,42 +577026,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [101833] = 18, - ACTIONS(7337), 1, + [104645] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -563668,7 +577071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563676,51 +577079,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [104717] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [101903] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(940), 4, + STATE(8724), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563728,51 +577132,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [104789] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [101973] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1323), 4, + STATE(902), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563780,51 +577185,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [102043] = 18, - ACTIONS(571), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [104861] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4665), 1, sym_user_type, - STATE(6355), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3010), 4, + STATE(4835), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563832,51 +577238,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [104933] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [102113] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8684), 4, + STATE(3380), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563884,51 +577291,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [102183] = 18, - ACTIONS(7337), 1, + [105005] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8618), 4, + STATE(8682), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563936,51 +577344,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105077] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [102253] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, - anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, - sym_user_type, - STATE(6378), 1, + STATE(6503), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7479), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(945), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(333), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563988,51 +577397,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105149] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [102323] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4718), 4, + STATE(8681), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564040,51 +577450,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105221] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [102393] = 18, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6378), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1328), 4, + STATE(3382), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564092,51 +577503,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105293] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [102463] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, - anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, - sym_user_type, - STATE(6370), 1, + STATE(6480), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2463), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7568), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3381), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(251), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564144,51 +577556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [102533] = 18, - ACTIONS(7337), 1, + [105365] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8615), 4, + STATE(9112), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564196,51 +577609,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [102603] = 18, - ACTIONS(7337), 1, + [105437] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8611), 4, + STATE(8680), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564248,51 +577662,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105509] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [102673] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6370), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2879), 4, + STATE(3383), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105581] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6482), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2625), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7503), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564300,51 +577768,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105653] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [102743] = 18, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6378), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(891), 4, + STATE(3662), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564352,51 +577821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105725] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [102813] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6484), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(2626), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7500), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9983), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564404,51 +577874,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105797] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [102883] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6352), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4184), 4, + STATE(4585), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564456,51 +577927,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105869] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [102953] = 18, - ACTIONS(7337), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6512), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7409), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8607), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564508,51 +577980,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [105941] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [103023] = 18, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6378), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(911), 4, + STATE(3665), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564560,51 +578033,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [103093] = 18, - ACTIONS(7337), 1, + [106013] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8603), 4, + STATE(9469), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564612,51 +578086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [103163] = 18, - ACTIONS(7337), 1, + [106085] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9291), 4, + STATE(8739), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564664,51 +578139,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106157] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [103233] = 18, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(860), 1, sym_user_type, - STATE(6370), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3383), 4, + STATE(1343), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564716,51 +578192,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106229] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [103303] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5064), 4, + STATE(3677), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564768,51 +578245,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106301] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [103373] = 18, - ACTIONS(7344), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9092), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9094), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9096), 1, - sym__backtick_identifier, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5681), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5732), 1, + STATE(860), 1, sym_user_type, - STATE(6384), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9473), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9707), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5744), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5768), 4, + STATE(1341), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9090), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564820,51 +578298,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [103443] = 18, - ACTIONS(7337), 1, + [106373] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, sym_function_type_parameters, - STATE(9680), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8740), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106445] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8622), 4, + STATE(8741), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564872,51 +578404,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106517] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [103513] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6443), 1, + STATE(6461), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2413), 2, + STATE(2728), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7405), 2, + STATE(7430), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564924,51 +578457,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106589] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [103583] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6370), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3385), 4, + STATE(3684), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564976,51 +578510,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [103653] = 18, - ACTIONS(7337), 1, + [106661] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8619), 4, + STATE(8746), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565028,51 +578563,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106733] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [103723] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6446), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, + STATE(2796), 1, sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2415), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7316), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + STATE(3705), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565080,51 +578616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106805] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [103793] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3230), 4, + STATE(8786), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565132,51 +578669,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106877] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [103863] = 18, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(860), 1, sym_user_type, - STATE(6355), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3818), 4, + STATE(1344), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565184,51 +578722,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [106949] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [103933] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6352), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4195), 4, + STATE(3385), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565236,51 +578775,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [104003] = 18, - ACTIONS(7337), 1, + [107021] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8354), 1, sym_user_type, - STATE(9675), 1, + STATE(9549), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9550), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8613), 4, + STATE(8385), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565288,51 +578828,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107093] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [104073] = 18, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(2973), 1, sym_user_type, - STATE(6367), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4953), 4, + STATE(3386), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565340,51 +578881,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107165] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [104143] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3815), 4, + STATE(8704), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565392,51 +578934,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107237] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [104213] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, - sym_user_type, - STATE(6370), 1, + STATE(6489), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2403), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7575), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3119), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(251), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565444,51 +578987,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107309] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [104283] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(8332), 1, sym_user_type, - STATE(6370), 1, - sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3387), 4, + STATE(8645), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565496,51 +579040,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [104353] = 18, - ACTIONS(7337), 1, + [107381] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8715), 4, + STATE(8932), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565548,51 +579093,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107453] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [104423] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8716), 4, + STATE(3388), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565600,51 +579146,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107525] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [104493] = 18, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(2854), 1, - sym__simple_user_type, - STATE(2882), 1, - sym_user_type, - STATE(6355), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6499), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2412), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7555), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3813), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(495), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565652,51 +579199,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107597] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [104563] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8728), 4, + STATE(1326), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565704,51 +579252,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107669] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [104633] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8718), 4, + STATE(1111), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565756,51 +579305,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [104703] = 18, - ACTIONS(7337), 1, + [107741] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8597), 4, + STATE(9093), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565808,51 +579358,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107813] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [104773] = 18, - ACTIONS(7344), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9100), 1, - sym__backtick_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5666), 1, + STATE(824), 1, + sym_simple_identifier, + STATE(825), 1, sym__simple_user_type, - STATE(5715), 1, + STATE(860), 1, sym_user_type, - STATE(6354), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9648), 1, - sym_parenthesized_user_type, - STATE(9840), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5746), 4, + STATE(1113), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9098), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565860,51 +579411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107885] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [104843] = 18, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(860), 1, sym_user_type, - STATE(6370), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3389), 4, + STATE(1119), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565912,51 +579464,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [107957] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [104913] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3811), 4, + STATE(5817), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565964,51 +579517,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108029] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [104983] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(6411), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, + STATE(2931), 1, sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, + sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1586), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7524), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(2977), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(3716), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566016,51 +579570,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108101] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [105053] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8689), 4, + STATE(3713), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566068,51 +579623,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108173] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [105123] = 18, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(3392), 1, sym_user_type, - STATE(6378), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(953), 4, + STATE(3840), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566120,51 +579676,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [105193] = 18, - ACTIONS(7337), 1, + [108245] = 19, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(2926), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(6508), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(2287), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7410), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8688), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566172,51 +579729,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108317] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [105263] = 18, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(4578), 1, sym_user_type, - STATE(6370), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3064), 4, + STATE(4614), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566224,51 +579782,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108389] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [105333] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3808), 4, + STATE(8793), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566276,51 +579835,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108461] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [105403] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(6590), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8354), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9549), 1, sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5125), 4, + STATE(8397), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566328,51 +579888,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108533] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [105473] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2878), 4, + STATE(3878), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566380,51 +579941,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108605] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [105543] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2973), 1, sym_user_type, - STATE(6370), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4168), 4, + STATE(3728), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566432,51 +579994,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108677] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [105613] = 18, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, - anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(4833), 1, - sym_user_type, - STATE(6371), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6533), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, - sym_function_type_parameters, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2609), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7449), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4936), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(7), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566484,51 +580047,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108749] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [105683] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3909), 4, + STATE(8646), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566536,51 +580100,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [105753] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [108821] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6455), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1592), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7520), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(8772), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566588,51 +580153,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [105823] = 18, - ACTIONS(571), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [108893] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + STATE(6422), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8551), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8921), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, + STATE(9494), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9703), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8825), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3101), 4, + STATE(8318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566640,51 +580206,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [108965] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [105893] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3894), 4, + STATE(8644), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566692,51 +580259,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109037] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [105963] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3854), 4, + STATE(8648), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566744,51 +580312,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109109] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [106033] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6352), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4198), 4, + STATE(3732), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566796,51 +580365,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109181] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [106103] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6352), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4091), 4, + STATE(3292), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566848,51 +580418,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106173] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, + [109253] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(5769), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6430), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8614), 4, + STATE(5800), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566900,51 +580471,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109325] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [106243] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3236), 4, + STATE(8789), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566952,51 +580524,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106313] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [109397] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(818), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8324), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1320), 4, + STATE(8334), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567004,51 +580577,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109469] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [106383] = 18, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(2973), 1, sym_user_type, - STATE(6367), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4955), 4, + STATE(3738), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567056,51 +580630,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109541] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [106453] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4947), 4, + STATE(3060), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567108,51 +580683,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106523] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [109613] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(3396), 1, - sym_user_type, - STATE(6352), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4086), 4, + STATE(5810), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567160,51 +580736,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109685] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [106593] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8670), 4, + STATE(4771), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567212,51 +580789,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106663] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + [109757] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9218), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + ACTIONS(9222), 1, + anon_sym_dynamic, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(6465), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, + STATE(5769), 1, + sym_user_type, + STATE(6430), 1, + sym_type_modifiers, + STATE(9676), 1, + sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1658), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7437), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(5762), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(5810), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567264,51 +580842,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [109829] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [106733] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6352), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4085), 4, + STATE(4761), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567316,51 +580895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106803] = 18, - ACTIONS(7337), 1, + [109901] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8673), 4, + STATE(9264), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567368,51 +580948,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106873] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [109973] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9254), 1, anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5617), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(5748), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(5784), 1, sym_user_type, - STATE(6367), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9753), 1, sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4943), 4, + STATE(5828), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567420,51 +581001,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [106943] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [110045] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6472), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1660), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7481), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(8845), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567472,51 +581054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110117] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [107013] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9279), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, + STATE(2796), 1, sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, + sym_user_type, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, + sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1637), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7498), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(2812), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + STATE(3951), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567524,51 +581107,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110189] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [107083] = 18, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6378), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1084), 4, + STATE(3855), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567576,51 +581160,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110261] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [107153] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1050), 4, + STATE(3389), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567628,51 +581213,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110333] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [107223] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9104), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9106), 1, - sym__backtick_identifier, - STATE(6359), 1, - sym_type_modifiers, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, - sym_simple_identifier, - STATE(8517), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8952), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9665), 1, - sym_function_type_parameters, - STATE(9677), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8998), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8414), 4, + STATE(3613), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9102), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567680,51 +581266,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [107293] = 18, - ACTIONS(7337), 1, + [110405] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8675), 4, + STATE(8651), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567732,51 +581319,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110477] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [107363] = 18, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6355), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2962), 4, + STATE(3869), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567784,51 +581372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110549] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [107433] = 18, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(3392), 1, sym_user_type, - STATE(6378), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1052), 4, + STATE(3615), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567836,51 +581425,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110621] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [107503] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3680), 4, + STATE(3673), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567888,51 +581478,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110693] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [107573] = 18, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(2854), 1, - sym__simple_user_type, - STATE(2882), 1, - sym_user_type, - STATE(6355), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6518), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2656), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7390), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3160), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(495), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567940,51 +581531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110765] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [107643] = 18, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6355), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2994), 4, + STATE(3369), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567992,51 +581584,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110837] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [107713] = 18, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(860), 1, sym_user_type, - STATE(6355), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3006), 4, + STATE(1139), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568044,51 +581637,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110909] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [107783] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(8332), 1, sym_user_type, - STATE(6370), 1, - sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3686), 4, + STATE(8684), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568096,51 +581690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [110981] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [107853] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6521), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(2602), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7384), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9606), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568148,51 +581743,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111053] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [107923] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9607), 4, + STATE(3669), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568200,51 +581796,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111125] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [107993] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9026), 4, + STATE(3708), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568252,51 +581849,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111197] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [108063] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3476), 4, + STATE(3616), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568304,103 +581902,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111269] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7179), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [111309] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [108133] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6370), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3475), 4, + STATE(3706), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111381] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5165), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5163), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [111421] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [108203] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6473), 1, + STATE(6454), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1628), 2, + STATE(2664), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7494), 2, + STATE(7373), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568408,51 +582082,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111493] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [108273] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3795), 4, + STATE(8686), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568460,51 +582135,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111565] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [108343] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6530), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2661), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7457), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111637] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4815), 1, sym_user_type, - STATE(6352), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3774), 4, + STATE(5182), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568512,51 +582241,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [108413] = 18, - ACTIONS(7337), 1, + [111709] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8680), 4, + STATE(8752), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568564,51 +582294,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111781] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [108483] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6388), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4981), 4, + STATE(3663), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568616,51 +582347,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111853] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [108553] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6352), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4082), 4, + STATE(4102), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568668,51 +582400,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [108623] = 18, - ACTIONS(7337), 1, + [111925] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6374), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(8332), 1, sym_user_type, STATE(9735), 1, - sym_function_type_parameters, - STATE(9738), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8326), 4, + STATE(8754), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568720,51 +582453,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [111997] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [108693] = 18, - ACTIONS(7337), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4104), 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, + [112069] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8584), 4, + STATE(8755), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568772,51 +582559,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112141] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [108763] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9092), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9094), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9096), 1, - sym__backtick_identifier, - STATE(5550), 1, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(5562), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5681), 1, - sym__simple_user_type, - STATE(5732), 1, + STATE(3392), 1, sym_user_type, - STATE(6384), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9473), 1, - sym_function_type_parameters, - STATE(9707), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5744), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5789), 4, + STATE(3655), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9090), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568824,51 +582612,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112213] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [108833] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5167), 4, + STATE(4579), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568876,51 +582665,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [108903] = 18, - ACTIONS(7337), 1, + [112285] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8599), 4, + STATE(8757), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568928,51 +582718,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112357] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [108973] = 18, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(4578), 1, sym_user_type, - STATE(6370), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3687), 4, + STATE(4576), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568980,51 +582771,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112429] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [109043] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8354), 1, + sym_user_type, + STATE(9549), 1, + sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8296), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112501] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6464), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(547), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7468), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(8670), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569032,51 +582877,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112573] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [109113] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4159), 4, + STATE(3643), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569084,51 +582930,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112645] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [109183] = 18, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(4578), 1, sym_user_type, - STATE(6370), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4165), 4, + STATE(4572), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569136,51 +582983,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112717] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [109253] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(6394), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2680), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7441), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(4105), 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, @@ -569188,51 +583036,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112789] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [109323] = 18, - ACTIONS(7344), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(4578), 1, sym_user_type, - STATE(6388), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9452), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9809), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4976), 4, + STATE(4570), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569240,51 +583089,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [112861] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [109393] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1068), 4, + STATE(3282), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569292,51 +583142,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [109463] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [112933] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6461), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(591), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7467), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(8669), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569344,51 +583195,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [109533] = 18, - ACTIONS(7337), 1, + [113005] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8723), 4, + STATE(9566), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569396,51 +583248,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [109603] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [113077] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6431), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2645), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7491), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(9567), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569448,51 +583301,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [109673] = 18, - ACTIONS(7337), 1, + [113149] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9603), 4, + STATE(8588), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569500,51 +583354,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [109743] = 18, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [113221] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(5713), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(5718), 1, sym__simple_user_type, - STATE(4621), 1, - sym_simple_identifier, - STATE(4833), 1, + STATE(5769), 1, sym_user_type, - STATE(6371), 1, + STATE(6430), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(10064), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5059), 4, + STATE(5819), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569552,88 +583407,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [113293] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [109813] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, + sym__lexical_identifier, + STATE(6526), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5138), 28, + STATE(607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7472), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_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, - [109853] = 18, - ACTIONS(7337), 1, + [113365] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8354), 1, sym_user_type, - STATE(9675), 1, + STATE(9549), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9550), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8654), 4, + STATE(8318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569641,51 +583513,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [113437] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [109923] = 18, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6370), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3631), 4, + STATE(5224), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569693,51 +583566,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [113509] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [109993] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9623), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9057), 4, + STATE(3740), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569745,51 +583619,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [110063] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [113581] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6370), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3649), 4, + STATE(5422), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569797,51 +583672,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [113653] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [110133] = 18, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(4578), 1, sym_user_type, - STATE(6370), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3660), 4, + STATE(4571), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569849,155 +583725,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [110203] = 18, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9108), 1, - anon_sym_LPAREN, - STATE(2906), 1, - sym__lexical_identifier, - STATE(2992), 1, - sym_simple_identifier, - STATE(6449), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + [113725] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1783), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7341), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9050), 8, + ACTIONS(5181), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5179), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [113765] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [110273] = 18, - ACTIONS(7344), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9104), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9106), 1, - sym__backtick_identifier, - STATE(6359), 1, - sym_type_modifiers, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8517), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8952), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9665), 1, - sym_function_type_parameters, - STATE(9677), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8998), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8242), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9102), 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, - [110343] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8708), 4, + STATE(3180), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570005,51 +583815,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [110413] = 18, - ACTIONS(7337), 1, + [113837] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8712), 4, + STATE(8691), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570057,155 +583868,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [110483] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [113909] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, - sym__lexical_identifier, - STATE(6456), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(552), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7453), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + ACTIONS(8672), 1, sym__alpha_identifier, - [110553] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, - sym_user_type, - STATE(6370), 1, - sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3688), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(251), 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, - [110623] = 18, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, - anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5536), 4, + STATE(8744), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570213,51 +583921,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [113981] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [110693] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8714), 4, + STATE(3191), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570265,51 +583974,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114053] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [110763] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8822), 4, + STATE(3214), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570317,51 +584027,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114125] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [110833] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(812), 1, sym_simple_identifier, - STATE(6469), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6523), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1618), 2, + STATE(616), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7511), 2, + STATE(7505), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570369,88 +584080,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114197] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9248), 1, sym__alpha_identifier, - [110903] = 3, + ACTIONS(9250), 1, + anon_sym_LPAREN, + ACTIONS(9254), 1, + anon_sym_dynamic, + ACTIONS(9256), 1, + sym__backtick_identifier, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5617), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__simple_user_type, + STATE(5784), 1, + sym_user_type, + STATE(6449), 1, + sym_type_modifiers, + STATE(9753), 1, + sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3818), 14, - anon_sym_by, - anon_sym_where, + STATE(5785), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5824), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3823), 17, - anon_sym_AT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - [110943] = 18, - ACTIONS(7337), 1, + [114269] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8702), 4, + STATE(9738), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570458,51 +584186,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114341] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [111013] = 18, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6454), 1, + STATE(6507), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(550), 2, + STATE(2391), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7451), 2, + STATE(7598), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570510,103 +584239,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114413] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [111083] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4700), 4, + STATE(8668), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114485] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7145), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7143), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [114525] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [111153] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9623), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5756), 4, + STATE(4109), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570614,51 +584382,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111223] = 18, - ACTIONS(7337), 1, + [114597] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6374), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(8332), 1, sym_user_type, STATE(9735), 1, - sym_function_type_parameters, - STATE(9738), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8230), 4, + STATE(9821), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570666,51 +584435,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111293] = 18, - ACTIONS(7337), 1, + [114669] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8698), 4, + STATE(8666), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570718,51 +584488,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111363] = 18, - ACTIONS(7337), 1, + [114741] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8691), 4, + STATE(9994), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570770,51 +584541,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114813] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [111433] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2885), 4, + STATE(8694), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570822,51 +584594,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114885] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [111503] = 18, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(3392), 1, sym_user_type, - STATE(6367), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4704), 4, + STATE(4117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570874,51 +584647,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [114957] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [111573] = 18, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6355), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3014), 4, + STATE(3285), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570926,51 +584700,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111643] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9078), 1, - anon_sym_LPAREN, - ACTIONS(9080), 1, + [115029] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9082), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4560), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(8332), 1, sym_user_type, - STATE(6388), 1, - sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4928), 4, + STATE(9625), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570978,103 +584753,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111713] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, - sym__lexical_identifier, - STATE(6451), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(454), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7306), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 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, - [111783] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [115101] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8324), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4716), 4, + STATE(9432), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571082,51 +584806,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111853] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [115173] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6448), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(458), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7415), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(8675), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571134,51 +584859,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [111923] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [115245] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6367), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4731), 4, + STATE(4720), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571186,51 +584912,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [115317] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [111993] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4663), 4, + STATE(4976), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571238,155 +584965,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [115389] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [112063] = 18, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, - sym__lexical_identifier, - STATE(6445), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(612), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7407), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 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, - [112133] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(822), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6393), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(455), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7382), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(3393), 2, sym__type_reference, - sym_user_type, sym_parenthesized_type, - ACTIONS(333), 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, - [112203] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, - sym__lexical_identifier, - STATE(6444), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7447), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(3425), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571394,51 +585018,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [112273] = 18, - ACTIONS(7337), 1, + [115461] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6374), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(8332), 1, sym_user_type, STATE(9735), 1, - sym_function_type_parameters, - STATE(9738), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8242), 4, + STATE(8756), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571446,51 +585071,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [115533] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [112343] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3076), 4, + STATE(3427), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571498,51 +585124,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [112413] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9070), 1, - anon_sym_LPAREN, - ACTIONS(9072), 1, + [115605] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9100), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5666), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(5715), 1, + STATE(8332), 1, sym_user_type, - STATE(6354), 1, - sym_type_modifiers, - STATE(9648), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9840), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5729), 4, + STATE(8734), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9098), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571550,103 +585177,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [112483] = 18, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9108), 1, - anon_sym_LPAREN, - STATE(2906), 1, - sym__lexical_identifier, - STATE(2992), 1, - sym_simple_identifier, - STATE(6414), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + [115677] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1838), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7534), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9050), 8, + ACTIONS(5185), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5183), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [115717] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [112553] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, - STATE(6460), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, + sym_user_type, + STATE(6419), 1, sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2704), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7386), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(3393), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(3870), 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, @@ -571654,51 +585267,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [115789] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [112623] = 18, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(812), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6438), 1, + STATE(6498), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, + STATE(444), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7482), 2, + STATE(7488), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571706,51 +585320,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [115861] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [112693] = 18, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6378), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1468), 4, + STATE(3086), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571758,103 +585373,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [115933] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [112763] = 18, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2973), 1, sym_user_type, - STATE(6378), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1458), 4, + STATE(3727), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116005] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4179), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112833] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(4181), 17, anon_sym_AT, - ACTIONS(9064), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9066), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [116045] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - STATE(802), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1554), 4, + STATE(8712), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571862,103 +585516,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [112903] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [116117] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(3144), 1, - sym_simple_identifier, - STATE(3396), 1, + STATE(4665), 1, sym_user_type, - STATE(6352), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3741), 4, + STATE(5377), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 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, - [112973] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(6437), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2641), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7366), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571966,51 +585569,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116189] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [113043] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2973), 1, sym_user_type, - STATE(6370), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3691), 4, + STATE(3729), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572018,51 +585622,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116261] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [113113] = 18, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2840), 1, sym_user_type, - STATE(6352), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4126), 4, + STATE(2994), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572070,51 +585675,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116333] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [113183] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(8332), 1, sym_user_type, - STATE(6370), 1, - sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3106), 4, + STATE(8759), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572122,51 +585728,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116405] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [113253] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4567), 4, + STATE(1177), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572174,51 +585781,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [113323] = 18, - ACTIONS(7344), 1, + [116477] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9052), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9054), 1, + ACTIONS(9254), 1, anon_sym_dynamic, - ACTIONS(9056), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3025), 1, + STATE(5617), 1, + sym_simple_identifier, + STATE(5748), 1, sym__simple_user_type, - STATE(3323), 1, + STATE(5784), 1, sym_user_type, - STATE(6387), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9498), 1, - sym_function_type_parameters, - STATE(9825), 1, + STATE(9753), 1, sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3322), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3891), 4, + STATE(5834), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9050), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572226,51 +585834,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116549] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [113393] = 18, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6355), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2959), 4, + STATE(3734), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572278,51 +585887,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [113463] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9070), 1, - anon_sym_LPAREN, - ACTIONS(9072), 1, + [116621] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9100), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5666), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, - STATE(5715), 1, + STATE(8332), 1, sym_user_type, - STATE(6354), 1, - sym_type_modifiers, - STATE(9648), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9840), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5757), 4, + STATE(8788), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9098), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572330,51 +585940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116693] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [113533] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9242), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(3136), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6432), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, + STATE(4540), 1, sym__simple_user_type, + STATE(4578), 1, + sym_user_type, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, + sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2647), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7464), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(4580), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(4849), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572382,51 +585993,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116765] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [113603] = 18, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4578), 1, sym_user_type, - STATE(6355), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4096), 4, + STATE(4850), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572434,103 +586046,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [116837] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [113673] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6352), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4102), 4, + STATE(4858), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1842), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116909] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4004), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113743] = 18, - ACTIONS(571), 1, + ACTIONS(4009), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [116949] = 19, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(2854), 1, - sym__simple_user_type, - STATE(2882), 1, - sym_user_type, - STATE(6355), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6467), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2410), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7456), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4093), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(495), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572538,51 +586189,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [113813] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [117021] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9222), 1, anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8324), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4570), 4, + STATE(5800), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572590,103 +586242,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [113883] = 18, - ACTIONS(7337), 1, + [117093] = 19, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5687), 1, + sym_simple_identifier, + STATE(5694), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6501), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(5431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7415), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8665), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9196), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117165] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7173), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7171), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [117205] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [113953] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4092), 4, + STATE(5184), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572694,51 +586385,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117277] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [114023] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4573), 4, + STATE(4762), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572746,51 +586438,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117349] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [114093] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6352), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4134), 4, + STATE(3431), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572798,51 +586491,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117421] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [114163] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3582), 4, + STATE(8760), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572850,51 +586544,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117493] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [114233] = 18, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_dynamic, - STATE(802), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(8332), 1, sym_user_type, - STATE(6378), 1, - sym_type_modifiers, - STATE(9526), 1, - sym_function_type_parameters, - STATE(9831), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1067), 4, + STATE(8731), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572902,51 +586597,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117565] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [114303] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6352), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3581), 4, + STATE(3432), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572954,51 +586650,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117637] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [114373] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6388), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5390), 4, + STATE(4189), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573006,51 +586703,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117709] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [114443] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5289), 4, + STATE(3604), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573058,51 +586756,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [114513] = 18, - ACTIONS(7337), 1, + [117781] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8631), 4, + STATE(8318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573110,51 +586809,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [114583] = 18, - ACTIONS(7337), 1, + [117853] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8643), 4, + STATE(8697), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573162,103 +586862,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117925] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [114653] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3017), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(251), 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, - [114723] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9078), 1, - anon_sym_LPAREN, - ACTIONS(9080), 1, - anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, - sym__simple_user_type, - STATE(4854), 1, - sym_user_type, - STATE(6388), 1, - sym_type_modifiers, - STATE(9452), 1, + STATE(9976), 1, sym_function_type_parameters, - STATE(9809), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4927), 4, + STATE(3455), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573266,51 +586915,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [117997] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [114793] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(812), 1, sym_simple_identifier, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6467), 1, + STATE(6492), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(452), 2, + STATE(443), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7352), 2, + STATE(7483), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573318,51 +586968,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118069] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [114863] = 18, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2840), 1, sym_user_type, - STATE(6352), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3578), 4, + STATE(2962), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573370,51 +587021,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118141] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [114933] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6352), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4115), 4, + STATE(3911), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573422,51 +587074,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118213] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [115003] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2973), 1, sym_user_type, - STATE(6370), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4057), 4, + STATE(3918), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573474,51 +587127,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [115073] = 18, - ACTIONS(7337), 1, + [118285] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6374), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(8332), 1, sym_user_type, STATE(9735), 1, - sym_function_type_parameters, - STATE(9738), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8301), 4, + STATE(8636), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573526,51 +587180,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118357] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - [115143] = 18, - ACTIONS(7337), 1, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8324), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9689), 4, + STATE(9294), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573578,51 +587233,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118429] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [115213] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5507), 4, + STATE(3057), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573630,51 +587286,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118501] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [115283] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2973), 1, sym_user_type, - STATE(6370), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4060), 4, + STATE(3980), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573682,51 +587339,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118573] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [115353] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8648), 4, + STATE(2956), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573734,103 +587392,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [115423] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, + [118645] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9082), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + ACTIONS(5161), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5159), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [118685] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [115493] = 18, - ACTIONS(7344), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - ACTIONS(9100), 1, - sym__backtick_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5666), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5715), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6354), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9648), 1, - sym_parenthesized_user_type, - STATE(9840), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5756), 4, + STATE(2957), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9098), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573838,51 +587482,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [118757] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [115563] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8630), 4, + STATE(5350), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573890,17 +587535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [115633] = 4, - ACTIONS(9110), 1, - anon_sym_AT, + [118829] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9113), 2, + ACTIONS(7189), 3, + anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(2040), 28, + ACTIONS(7187), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -573929,50 +587572,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [115675] = 18, - ACTIONS(329), 1, + [118869] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6370), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4066), 4, + STATE(5100), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573980,51 +587625,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [115745] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + [118941] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, - anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9074), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - STATE(5637), 1, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(2853), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(2926), 1, sym_simple_identifier, - STATE(6389), 1, + STATE(6460), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7962), 1, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2269), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7595), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119013] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2899), 1, + sym_simple_identifier, + STATE(2931), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9623), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8284), 4, + STATE(3050), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574032,51 +587731,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119085] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [115815] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5385), 4, + STATE(5319), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574084,51 +587784,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [115885] = 18, - ACTIONS(7337), 1, + [119157] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8629), 4, + STATE(8726), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119229] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6491), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7498), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574136,51 +587890,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119301] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [115955] = 18, - ACTIONS(7344), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6388), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5249), 4, + STATE(3045), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574188,51 +587943,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119373] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [116025] = 18, - ACTIONS(7344), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9052), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9054), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9056), 1, - sym__backtick_identifier, - STATE(2895), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2906), 1, - sym__lexical_identifier, - STATE(3025), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(3323), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6387), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9498), 1, - sym_function_type_parameters, - STATE(9825), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3322), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3810), 4, + STATE(3360), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9050), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574240,51 +587996,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119445] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [116095] = 18, - ACTIONS(7344), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(4578), 1, sym_user_type, - STATE(6388), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9452), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9809), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5375), 4, + STATE(5320), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574292,51 +588049,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [116165] = 18, - ACTIONS(7337), 1, + [119517] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8414), 4, + STATE(8728), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574344,51 +588102,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119589] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [116235] = 18, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2840), 1, sym_user_type, - STATE(6352), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3574), 4, + STATE(2951), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574396,51 +588155,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119661] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [116305] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6352), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3218), 4, + STATE(5322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574448,51 +588208,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119733] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [116375] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5159), 4, + STATE(8729), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574500,51 +588261,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [119805] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [116445] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3788), 4, + STATE(9602), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574552,103 +588314,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [116515] = 18, - ACTIONS(7337), 1, + [119877] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8657), 4, + STATE(8792), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119949] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5189), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(5187), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [119989] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [116585] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6352), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3653), 4, + STATE(3044), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574656,51 +588457,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120061] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [116655] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9971), 4, + STATE(2949), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574708,51 +588510,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120133] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [116725] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8697), 4, + STATE(4863), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574760,51 +588563,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120205] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [116795] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, - anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(4620), 1, - sym__simple_user_type, - STATE(4854), 1, - sym_user_type, - STATE(6388), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6476), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(597), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7491), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4912), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9076), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574812,51 +588616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120277] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9232), 1, sym__alpha_identifier, - [116865] = 18, - ACTIONS(7337), 1, + ACTIONS(9234), 1, + anon_sym_LPAREN, + ACTIONS(9238), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4665), 1, sym_user_type, - STATE(9675), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8602), 4, + STATE(5337), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574864,51 +588669,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120349] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [116935] = 18, - ACTIONS(7344), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(4578), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9322), 4, + STATE(5325), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574916,51 +588722,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120421] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [117005] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4856), 4, + STATE(2824), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574968,51 +588775,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120493] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [117075] = 18, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2840), 1, sym_user_type, - STATE(6352), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3563), 4, + STATE(3271), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575020,51 +588828,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120565] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [117145] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2904), 4, + STATE(4948), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575072,51 +588881,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120637] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [117215] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4578), 1, sym_user_type, - STATE(9675), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9391), 4, + STATE(4866), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575124,51 +588934,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120709] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [117285] = 18, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(3392), 1, sym_user_type, - STATE(6367), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5373), 4, + STATE(3987), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575176,103 +588987,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [117355] = 18, - ACTIONS(7337), 1, + [120781] = 19, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9287), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5690), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(6505), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(5513), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7538), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8577), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [117425] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9070), 1, - anon_sym_LPAREN, - ACTIONS(9072), 1, + anon_sym_actual, + [120853] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9074), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5637), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(6389), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7962), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(8354), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9549), 1, sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5729), 4, + STATE(8369), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575280,51 +589093,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120925] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [117495] = 18, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2840), 1, sym_user_type, - STATE(6352), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3183), 4, + STATE(3257), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575332,51 +589146,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [120997] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [117565] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6352), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4104), 4, + STATE(5117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575384,51 +589199,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [117635] = 18, - ACTIONS(7337), 1, + [121069] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8646), 4, + STATE(8642), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575436,51 +589252,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121141] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [117705] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6352), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3782), 4, + STATE(3038), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575488,51 +589305,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121213] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [117775] = 18, - ACTIONS(7344), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(9623), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9859), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9101), 4, + STATE(3054), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575540,51 +589358,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121285] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [117845] = 18, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(4578), 1, sym_user_type, - STATE(6370), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3391), 4, + STATE(5206), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575592,51 +589411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121357] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [117915] = 18, - ACTIONS(7337), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6474), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(2169), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7594), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8706), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575644,51 +589464,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121429] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [117985] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8736), 4, + STATE(4165), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575696,51 +589517,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121501] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [118055] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6352), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3597), 4, + STATE(4169), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575748,51 +589570,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [118125] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [121573] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + STATE(4544), 1, sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4665), 1, sym_user_type, - STATE(6367), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9741), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9901), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5369), 4, + STATE(4925), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575800,51 +589623,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121645] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [118195] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8635), 4, + STATE(4173), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575852,51 +589676,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121717] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [118265] = 18, - ACTIONS(7344), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(4578), 1, sym_user_type, - STATE(6388), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9452), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9809), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5395), 4, + STATE(5059), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575904,51 +589729,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121789] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [118335] = 18, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, - anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(3396), 1, - sym_user_type, - STATE(6352), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(6470), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2173), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7600), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4131), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(415), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575956,51 +589782,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [121861] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - [118405] = 18, - ACTIONS(7337), 1, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8324), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8628), 4, + STATE(9359), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576008,51 +589835,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [118475] = 18, - ACTIONS(7337), 1, + [121933] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8700), 4, + STATE(9578), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576060,51 +589888,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [118545] = 18, - ACTIONS(7344), 1, + [122005] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9238), 1, anon_sym_dynamic, - ACTIONS(9074), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(4665), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9741), 1, sym_function_type_parameters, + STATE(9901), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(4663), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5757), 4, + STATE(4937), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576112,51 +589941,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122077] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9248), 1, sym__alpha_identifier, - [118615] = 18, - ACTIONS(7337), 1, + ACTIONS(9250), 1, + anon_sym_LPAREN, + ACTIONS(9254), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(5748), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(5784), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9753), 1, sym_parenthesized_user_type, + STATE(10117), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(5785), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8573), 4, + STATE(5817), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576164,51 +589994,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122149] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [118685] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, - anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(3396), 1, - sym_user_type, - STATE(6352), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6466), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7510), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3633), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(415), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576216,51 +590047,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122221] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [118755] = 18, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(4578), 1, sym_user_type, - STATE(6370), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4073), 4, + STATE(4819), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576268,51 +590100,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122293] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [118825] = 18, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9104), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9106), 1, - sym__backtick_identifier, - STATE(6359), 1, - sym_type_modifiers, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9246), 1, + anon_sym_LPAREN, + STATE(812), 1, sym_simple_identifier, - STATE(8517), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6464), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, - STATE(8952), 1, - sym_user_type, - STATE(9665), 1, - sym_function_type_parameters, - STATE(9677), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(437), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7504), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8998), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8230), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9102), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576320,51 +590153,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122365] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [118895] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6352), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4119), 4, + STATE(887), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576372,51 +590206,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122437] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [118965] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8592), 4, + STATE(900), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576424,51 +590259,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122509] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [119035] = 18, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6355), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9428), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9772), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2914), 4, + STATE(2945), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576476,51 +590312,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122581] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [119105] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5511), 4, + STATE(8784), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576528,51 +590365,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122653] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [119175] = 18, - ACTIONS(7337), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6463), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7490), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8581), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576580,51 +590418,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122725] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [119245] = 18, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6352), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4118), 4, + STATE(5034), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576632,51 +590471,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [122797] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [119315] = 18, - ACTIONS(7337), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6453), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(7843), 1, sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7473), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8230), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576684,51 +590524,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [119385] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [122869] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + STATE(6422), 1, + sym_type_modifiers, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(8551), 1, sym__simple_user_type, - STATE(3144), 1, - sym_simple_identifier, - STATE(3396), 1, + STATE(8921), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, + STATE(9494), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9703), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8825), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3528), 4, + STATE(8296), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576736,51 +590577,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [119455] = 18, - ACTIONS(7344), 1, + [122941] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9264), 1, anon_sym_dynamic, - ACTIONS(9074), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(3064), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(6448), 1, + sym_type_modifiers, + STATE(9673), 1, sym_function_type_parameters, + STATE(9910), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8288), 4, + STATE(3446), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576788,51 +590630,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123013] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9258), 1, sym__alpha_identifier, - [119525] = 18, - ACTIONS(7337), 1, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9264), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3064), 1, sym_user_type, - STATE(9675), 1, + STATE(6448), 1, + sym_type_modifiers, + STATE(9673), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9910), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9726), 4, + STATE(3518), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576840,51 +590683,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [119595] = 18, - ACTIONS(571), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + [123085] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, - anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9287), 1, + anon_sym_LPAREN, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(5690), 1, sym_simple_identifier, - STATE(2854), 1, - sym__simple_user_type, - STATE(2882), 1, - sym_user_type, - STATE(6355), 1, + STATE(6475), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(5519), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7593), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3371), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(495), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576892,51 +590736,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123157] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [119665] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3369), 4, + STATE(4913), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576944,51 +590789,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123229] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [119735] = 18, - ACTIONS(7344), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(860), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9916), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8276), 4, + STATE(901), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576996,51 +590842,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123301] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [119805] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3358), 4, + STATE(5427), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577048,51 +590895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [119875] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [123373] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6441), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8125), 1, sym__simple_user_type, + STATE(8354), 1, + sym_user_type, + STATE(9549), 1, + sym_function_type_parameters, + STATE(9550), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1620), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7538), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + STATE(8380), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577100,51 +590948,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123445] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [119945] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6388), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5250), 4, + STATE(4914), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577152,51 +591001,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123517] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [120015] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, - anon_sym_dynamic, - STATE(2834), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(8332), 1, sym_user_type, - STATE(6355), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3329), 4, + STATE(8672), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577204,51 +591054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123589] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [120085] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(3279), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6419), 1, + sym_type_modifiers, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8620), 4, + STATE(4257), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577256,51 +591107,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123661] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [120155] = 18, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2973), 1, sym_user_type, - STATE(6355), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9859), 1, sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(2977), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3336), 4, + STATE(4208), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577308,51 +591160,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [120225] = 18, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9034), 1, - anon_sym_LPAREN, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [123733] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9042), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5636), 1, - sym_simple_identifier, - STATE(5642), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6457), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5341), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7322), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9032), 8, + STATE(8667), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577360,51 +591213,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123805] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [120295] = 18, - ACTIONS(7344), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - ACTIONS(9100), 1, - sym__backtick_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5666), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5715), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6354), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9648), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9840), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5764), 4, + STATE(5451), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9098), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577412,51 +591266,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123877] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [120365] = 18, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4815), 1, sym_user_type, - STATE(6352), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3672), 4, + STATE(5433), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577464,103 +591319,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [123949] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [120435] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6415), 1, + STATE(6515), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2401), 2, + STATE(2350), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7395), 2, + STATE(7361), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 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, - [120505] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, - sym__simple_user_type, - STATE(8268), 1, - sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8570), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577568,51 +591372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124021] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [120575] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6352), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3529), 4, + STATE(973), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577620,51 +591425,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124093] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [120645] = 18, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(3294), 1, sym_simple_identifier, - STATE(4833), 1, - sym_user_type, - STATE(6371), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(6455), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, - sym_function_type_parameters, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(2727), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7444), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5117), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(7), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577672,51 +591478,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124165] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [120715] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5115), 4, + STATE(8676), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577724,51 +591531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124237] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [120785] = 18, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6352), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3193), 4, + STATE(4195), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577776,51 +591584,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [120855] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, + [124309] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9264), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9266), 1, + sym__backtick_identifier, + STATE(2826), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2881), 1, + sym__simple_user_type, + STATE(3064), 1, sym_user_type, - STATE(6370), 1, + STATE(6448), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9673), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9910), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3151), 4, + STATE(3606), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577828,51 +591637,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124381] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [120925] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(812), 1, sym_simple_identifier, - STATE(3396), 1, - sym_user_type, - STATE(6352), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(6465), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7512), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3781), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(415), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577880,51 +591690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124453] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [120995] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(8332), 1, sym_user_type, - STATE(6370), 1, - sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3522), 4, + STATE(8640), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577932,51 +591743,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124525] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [121065] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(823), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(860), 1, sym_user_type, - STATE(9675), 1, + STATE(6439), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8583), 4, + STATE(991), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577984,51 +591796,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124597] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [121135] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5166), 4, + STATE(3205), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578036,51 +591849,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124669] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [121205] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6463), 1, + STATE(6528), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2603), 2, + STATE(2346), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7459), 2, + STATE(7363), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578088,51 +591902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124741] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [121275] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8571), 4, + STATE(5396), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578140,51 +591955,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124813] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [121345] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9244), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6374), 1, - sym_type_modifiers, - STATE(6530), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(4578), 1, sym_user_type, - STATE(9735), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, - STATE(9738), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8316), 4, + STATE(5098), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578192,51 +592008,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124885] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [121415] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9632), 4, + STATE(5042), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578244,51 +592061,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [124957] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [121485] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9633), 4, + STATE(3067), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578296,51 +592114,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125029] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [121555] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4860), 4, + STATE(9826), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578348,51 +592167,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125101] = 19, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9216), 1, sym__alpha_identifier, - [121625] = 18, - ACTIONS(7337), 1, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9222), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8324), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9645), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(5762), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8572), 4, + STATE(8356), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578400,51 +592220,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125173] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [121695] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3258), 4, + STATE(8753), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578452,51 +592273,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [121765] = 18, - ACTIONS(7337), 1, + [125245] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8678), 4, + STATE(8679), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578504,51 +592326,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125317] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [121835] = 18, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4815), 1, sym_user_type, - STATE(6371), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4691), 4, + STATE(4917), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578556,51 +592379,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125389] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [121905] = 18, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6370), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3919), 4, + STATE(5389), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578608,51 +592432,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125461] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [121975] = 18, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(850), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6378), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1099), 4, + STATE(3269), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578660,51 +592485,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125533] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [122045] = 18, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6370), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3916), 4, + STATE(5383), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578712,51 +592538,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125605] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [122115] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8576), 4, + STATE(5379), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578764,51 +592591,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125677] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [122185] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6370), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3907), 4, + STATE(3152), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578816,51 +592644,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [122255] = 18, - ACTIONS(7337), 1, + [125749] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9664), 4, + STATE(8634), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578868,103 +592697,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [125821] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [122325] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9666), 4, + STATE(2901), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125893] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7191), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [125933] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [122395] = 18, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(4815), 1, sym_user_type, - STATE(6352), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3286), 4, + STATE(4765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578972,51 +592840,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [122465] = 18, - ACTIONS(7337), 1, + [126005] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8727), 4, + STATE(8745), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579024,51 +592893,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126077] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [122535] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5281), 4, + STATE(4639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579076,103 +592946,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126149] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [122605] = 18, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4815), 1, sym_user_type, - STATE(6371), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9845), 1, sym_parenthesized_user_type, - STATE(9799), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(4686), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(7), 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, - [122675] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, - anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, - sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, + STATE(9846), 1, sym_function_type_parameters, - STATE(9580), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5278), 4, + STATE(5371), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579180,51 +592999,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [122745] = 18, - ACTIONS(7337), 1, + [126221] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8692), 4, + STATE(8742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579232,51 +593052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126293] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [122815] = 18, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6367), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5276), 4, + STATE(4747), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579284,51 +593105,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126365] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [122885] = 18, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(6370), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, - STATE(9755), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4094), 4, + STATE(2830), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579336,51 +593158,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126437] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [122955] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5272), 4, + STATE(5067), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579388,51 +593211,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [123025] = 18, - ACTIONS(7337), 1, + [126509] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8690), 4, + STATE(8768), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579440,51 +593264,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [123095] = 18, - ACTIONS(7337), 1, + [126581] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9687), 4, + STATE(5834), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579492,51 +593317,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126653] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [123165] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9688), 4, + STATE(4743), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579544,51 +593370,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126725] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [123235] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5264), 4, + STATE(9662), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579596,51 +593423,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [123305] = 18, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [126797] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9117), 1, - anon_sym_LPAREN, - ACTIONS(9119), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5639), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5643), 1, - sym_simple_identifier, - STATE(6471), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5361), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7510), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9115), 8, + STATE(9665), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579648,51 +593476,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126869] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [123375] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(8332), 1, sym_user_type, - STATE(6370), 1, - sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3016), 4, + STATE(8771), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579700,51 +593529,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [126941] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [123445] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5295), 4, + STATE(8773), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579752,103 +593582,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127013] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [123515] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5049), 4, + STATE(3188), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 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, - [123585] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9058), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6392), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2715), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7509), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579856,51 +593635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127085] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [123655] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4685), 4, + STATE(2819), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579908,155 +593688,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [123725] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + [127157] = 19, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, - sym__lexical_identifier, - STATE(6470), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(437), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7324), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 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, - [123795] = 18, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9058), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(6423), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2718), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7448), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(415), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + ACTIONS(9258), 1, sym__alpha_identifier, - [123865] = 18, - ACTIONS(7337), 1, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9264), 1, anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(3064), 1, sym_user_type, - STATE(9675), 1, + STATE(6448), 1, + sym_type_modifiers, + STATE(9673), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9910), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(3066), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9724), 4, + STATE(3617), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580064,51 +593741,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [123935] = 18, - ACTIONS(7337), 1, + [127229] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9725), 4, + STATE(8774), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580116,51 +593794,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127301] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [124005] = 18, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6371), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4675), 4, + STATE(4854), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580168,51 +593847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127373] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [124075] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4667), 4, + STATE(2825), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580220,51 +593900,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [124145] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [127445] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6435), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1333), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7360), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + STATE(8794), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580272,51 +593953,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127517] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [124215] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5292), 4, + STATE(2847), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580324,51 +594006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127589] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [124285] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3532), 4, + STATE(9685), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580376,51 +594059,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [124355] = 18, - ACTIONS(7337), 1, + [127661] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6374), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8292), 1, + STATE(8332), 1, sym_user_type, STATE(9735), 1, - sym_function_type_parameters, - STATE(9738), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8334), 4, + STATE(9686), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580428,51 +594112,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127733] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [124425] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, - anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2827), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2874), 1, - sym_user_type, - STATE(6370), 1, + STATE(6487), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, - sym_parenthesized_user_type, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(1747), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7527), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3310), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(251), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580480,51 +594165,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127805] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [124495] = 18, - ACTIONS(7344), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9070), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9072), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6389), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8260), 1, + STATE(4578), 1, sym_user_type, - STATE(9623), 1, - sym_parenthesized_user_type, - STATE(10062), 1, + STATE(6414), 1, + sym_type_modifiers, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5696), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8283), 4, + STATE(5064), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9068), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580532,51 +594218,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [127877] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [124565] = 18, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6440), 1, + STATE(6468), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1297), 2, + STATE(1746), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7353), 2, + STATE(7545), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127949] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8791), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580584,51 +594324,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128021] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [124635] = 18, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9046), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9048), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2882), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6355), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9772), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2880), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2917), 4, + STATE(4899), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580636,51 +594377,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128093] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [124705] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9066), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(850), 1, + STATE(860), 1, sym_user_type, - STATE(6378), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9831), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(836), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1150), 4, + STATE(837), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580688,51 +594430,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128165] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [124775] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9281), 1, + anon_sym_dynamic, + STATE(2791), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2840), 1, sym_user_type, - STATE(9675), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(9798), 1, sym_function_type_parameters, - STATE(9680), 1, + STATE(9877), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8695), 4, + STATE(3238), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580740,51 +594483,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [124845] = 18, - ACTIONS(7337), 1, + [128237] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8778), 4, + STATE(8779), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580792,51 +594536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128309] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [124915] = 18, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(3392), 1, sym_user_type, - STATE(6370), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3018), 4, + STATE(3885), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580844,51 +594589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128381] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [124985] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4528), 4, + STATE(844), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580896,51 +594642,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [125055] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [128453] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6459), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(439), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7325), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(9725), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580948,51 +594695,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [125125] = 18, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [128525] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6442), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2392), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7446), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(251), 8, + STATE(9726), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581000,51 +594748,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128597] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [125195] = 18, - ACTIONS(7344), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9078), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9080), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9082), 1, - sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4854), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6388), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9452), 1, - sym_function_type_parameters, - STATE(9809), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4837), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5455), 4, + STATE(3880), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581052,51 +594801,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128669] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [125265] = 18, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6371), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4873), 4, + STATE(3756), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581104,51 +594854,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128741] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [125335] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5158), 4, + STATE(8781), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581156,51 +594907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128813] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [125405] = 18, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3392), 1, sym_user_type, - STATE(6371), 1, + STATE(6419), 1, sym_type_modifiers, - STATE(9797), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(3393), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5042), 4, + STATE(3850), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581208,51 +594960,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128885] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [125475] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4874), 4, + STATE(8633), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581260,51 +595013,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [128957] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [125545] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9279), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9281), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(2840), 1, sym_user_type, - STATE(6371), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9877), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(2812), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5287), 4, + STATE(2916), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581312,103 +595066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [125615] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [129029] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6413), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7314), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(8216), 2, sym__type_reference, - sym_user_type, sym_parenthesized_type, - ACTIONS(333), 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, - [125685] = 18, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9117), 1, - anon_sym_LPAREN, - ACTIONS(9119), 1, - sym__backtick_identifier, - STATE(5639), 1, - sym__lexical_identifier, - STATE(5643), 1, - sym_simple_identifier, - STATE(6401), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5473), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7392), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9115), 8, + STATE(9454), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581416,51 +595119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129101] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [125755] = 18, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9084), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9086), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6370), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9396), 1, - sym_function_type_parameters, - STATE(9755), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2876), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3356), 4, + STATE(4704), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581468,51 +595172,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129173] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [125825] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5285), 4, + STATE(8782), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581520,51 +595225,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129245] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [125895] = 18, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, - anon_sym_dynamic, - STATE(4503), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(8332), 1, sym_user_type, - STATE(6367), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4517), 4, + STATE(9777), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581572,51 +595278,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [125965] = 18, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + [129317] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6399), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8138), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9735), 1, + sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(435), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7308), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 8, + STATE(9778), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581624,51 +595331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129389] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [126035] = 18, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_dynamic, - STATE(4561), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6371), 1, - sym_type_modifiers, - STATE(9797), 1, + STATE(9735), 1, sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4881), 4, + STATE(8790), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581676,51 +595384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129461] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [126105] = 18, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(4578), 1, sym_user_type, - STATE(6367), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9535), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4600), 4, + STATE(5070), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581728,51 +595437,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129533] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [126175] = 18, - ACTIONS(7337), 1, - anon_sym_dynamic, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, + anon_sym_dynamic, + STATE(4612), 1, sym__lexical_identifier, - STATE(6382), 1, - sym_type_modifiers, - STATE(7952), 1, - sym_simple_identifier, - STATE(8071), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8061), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8596), 4, + STATE(4707), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581780,51 +595490,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129605] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [126245] = 18, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6367), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4512), 4, + STATE(5146), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581832,51 +595543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129677] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [126315] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6352), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3879), 4, + STATE(845), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581884,51 +595596,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129749] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [126385] = 18, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9206), 1, anon_sym_dynamic, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4516), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4815), 1, sym_user_type, - STATE(6367), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9580), 1, + STATE(9845), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(4816), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4523), 4, + STATE(5097), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581936,51 +595649,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129821] = 19, + ACTIONS(7398), 1, + anon_sym_dynamic, + ACTIONS(7405), 1, + anon_sym_suspend, + ACTIONS(8672), 1, sym__alpha_identifier, - [126455] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7344), 1, - anon_sym_suspend, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, - anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9105), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6420), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(8138), 1, + sym__simple_user_type, + STATE(8332), 1, sym_user_type, - STATE(6352), 1, - sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9736), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(8216), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3869), 4, + STATE(8785), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581988,51 +595702,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129893] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [126525] = 18, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, + ACTIONS(9244), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4833), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4578), 1, sym_user_type, - STATE(6371), 1, + STATE(6414), 1, sym_type_modifiers, - STATE(9797), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9535), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4707), 2, + STATE(4580), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4888), 4, + STATE(4890), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582040,51 +595755,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [129965] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [126595] = 18, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9060), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4516), 1, + STATE(860), 1, sym_user_type, - STATE(6367), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9580), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4514), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4525), 4, + STATE(848), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582092,51 +595808,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130037] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [126665] = 18, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9030), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3396), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(860), 1, sym_user_type, - STATE(6352), 1, + STATE(6439), 1, sym_type_modifiers, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9736), 1, + STATE(9916), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3345), 2, + STATE(851), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3840), 4, + STATE(849), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582144,51 +595861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [126735] = 18, - ACTIONS(7337), 1, + [130109] = 19, + ACTIONS(7398), 1, anon_sym_dynamic, - ACTIONS(7344), 1, + ACTIONS(7405), 1, anon_sym_suspend, - ACTIONS(8531), 1, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, + ACTIONS(9057), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6382), 1, + STATE(6420), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8268), 1, + STATE(8332), 1, sym_user_type, - STATE(9675), 1, - sym_function_type_parameters, - STATE(9680), 1, + STATE(9735), 1, sym_parenthesized_user_type, + STATE(9736), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8061), 2, + STATE(8216), 2, sym__type_reference, sym_parenthesized_type, - STATE(7161), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8626), 4, + STATE(8787), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582196,50 +595914,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130181] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [126805] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9121), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(2897), 1, + STATE(4983), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6526), 1, + STATE(6568), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7344), 1, + STATE(7599), 1, sym_simple_identifier, - STATE(7931), 1, + STATE(7903), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7884), 2, + STATE(8002), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582247,50 +595966,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130252] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [126874] = 18, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9028), 1, - anon_sym_LPAREN, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9123), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3077), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9293), 1, + anon_sym_LPAREN, + STATE(4741), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, - sym_simple_identifier, - STATE(3360), 1, - sym_user_type, - STATE(7486), 1, + STATE(6567), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9424), 1, - sym_function_type_parameters, - STATE(9740), 1, - sym_parenthesized_user_type, + STATE(7383), 1, + sym_simple_identifier, + STATE(7871), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3417), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3627), 3, - sym_not_nullable_type, + STATE(7917), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(415), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582298,50 +596018,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130323] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [126943] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9125), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(861), 1, + STATE(978), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6518), 1, + STATE(6579), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7335), 1, + STATE(7494), 1, sym_simple_identifier, - STATE(7853), 1, + STATE(7942), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7895), 2, + STATE(7898), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582349,50 +596070,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130394] = 19, + ACTIONS(211), 1, sym__alpha_identifier, - [127012] = 18, - ACTIONS(8942), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9070), 1, + ACTIONS(9242), 1, anon_sym_LPAREN, - ACTIONS(9100), 1, - sym__backtick_identifier, - ACTIONS(9127), 1, + ACTIONS(9297), 1, anon_sym_dynamic, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5666), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4540), 1, sym__simple_user_type, - STATE(5717), 1, + STATE(4573), 1, sym_user_type, - STATE(7445), 1, + STATE(7425), 1, sym_type_modifiers, - STATE(9657), 1, - sym_parenthesized_user_type, - STATE(9840), 1, + STATE(9487), 1, sym_function_type_parameters, + STATE(9574), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5686), 2, + STATE(4574), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5751), 3, + STATE(4631), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9098), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582400,50 +596122,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130465] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127081] = 18, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9046), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(9129), 1, - anon_sym_dynamic, - STATE(2834), 1, + STATE(4919), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6559), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7442), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8016), 1, sym__simple_user_type, - STATE(2903), 1, - sym_user_type, - STATE(7423), 1, - sym_type_modifiers, - STATE(9428), 1, - sym_function_type_parameters, - STATE(9790), 1, - sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2893), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3103), 3, - sym_not_nullable_type, + STATE(7938), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(495), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582451,50 +596174,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130536] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127150] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9131), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(3554), 1, + STATE(2837), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6528), 1, + STATE(6575), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7361), 1, + STATE(7578), 1, sym_simple_identifier, - STATE(7833), 1, + STATE(7925), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7873), 2, + STATE(7973), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582502,50 +596226,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130607] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127219] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9133), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(3457), 1, + STATE(4563), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6510), 1, + STATE(6586), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7390), 1, + STATE(7532), 1, sym_simple_identifier, - STATE(7828), 1, + STATE(7884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7861), 2, + STATE(8009), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582553,50 +596278,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130678] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127288] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9135), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(4916), 1, + STATE(2837), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6522), 1, + STATE(6543), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7297), 1, + STATE(7405), 1, sym_simple_identifier, - STATE(7821), 1, + STATE(7925), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7816), 2, + STATE(7901), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582604,50 +596330,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130749] = 19, + ACTIONS(473), 1, sym__alpha_identifier, - [127357] = 18, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9137), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9303), 1, anon_sym_dynamic, - STATE(7457), 1, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3371), 1, + sym_user_type, + STATE(7569), 1, sym_type_modifiers, - STATE(8261), 1, + STATE(9801), 1, + sym_parenthesized_user_type, + STATE(9976), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3558), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(3819), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130820] = 19, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9305), 1, + anon_sym_dynamic, + STATE(6224), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(7374), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(8517), 1, + STATE(8138), 1, sym__simple_user_type, - STATE(8934), 1, + STATE(8323), 1, sym_user_type, - STATE(9649), 1, + STATE(9490), 1, sym_parenthesized_user_type, - STATE(9665), 1, + STATE(9736), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8992), 2, + STATE(8185), 2, sym__type_reference, sym_parenthesized_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8235), 3, + STATE(8290), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9102), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582655,50 +596434,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130891] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127426] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9133), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(3602), 1, + STATE(3059), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6495), 1, + STATE(6570), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7388), 1, + STATE(7421), 1, sym_simple_identifier, - STATE(7910), 1, + STATE(8001), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7866), 2, + STATE(7906), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582706,50 +596486,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [130962] = 19, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9208), 1, sym__alpha_identifier, - [127495] = 18, - ACTIONS(8531), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9307), 1, + anon_sym_dynamic, + STATE(7515), 1, + sym_type_modifiers, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8551), 1, + sym__simple_user_type, + STATE(8915), 1, + sym_user_type, + STATE(9494), 1, + sym_function_type_parameters, + STATE(9829), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9016), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8290), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9210), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131033] = 19, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9125), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(861), 1, + STATE(3730), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6486), 1, + STATE(6560), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7500), 1, + STATE(7559), 1, sym_simple_identifier, - STATE(7853), 1, + STATE(7992), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7851), 2, + STATE(7950), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582757,50 +596590,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131104] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127564] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9135), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(4799), 1, + STATE(3026), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6490), 1, + STATE(6541), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7489), 1, + STATE(7565), 1, sym_simple_identifier, - STATE(7940), 1, + STATE(7880), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7934), 2, + STATE(7957), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582808,50 +596642,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131175] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - [127633] = 18, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9121), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(3100), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6497), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7381), 1, + ACTIONS(9313), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(7829), 1, + STATE(2931), 1, sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(2979), 1, + sym_user_type, + STATE(7590), 1, + sym_type_modifiers, + STATE(9862), 1, + sym_parenthesized_user_type, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(3037), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7937), 2, - sym__receiver_type, + STATE(3359), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7157), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582859,50 +596694,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131246] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127702] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9125), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(1035), 1, + STATE(4563), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6523), 1, + STATE(6581), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7373), 1, + STATE(7543), 1, sym_simple_identifier, - STATE(7868), 1, + STATE(7884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7879), 2, + STATE(7983), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582910,50 +596746,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131317] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127771] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9121), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(3100), 1, + STATE(978), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6520), 1, + STATE(6554), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7406), 1, + STATE(7517), 1, sym_simple_identifier, - STATE(7829), 1, + STATE(7942), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7886), 2, + STATE(7969), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582961,50 +596798,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131388] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [127840] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9125), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(1035), 1, + STATE(3059), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6501), 1, + STATE(6561), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7399), 1, + STATE(7602), 1, sym_simple_identifier, - STATE(7868), 1, + STATE(8001), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7907), 2, + STATE(7993), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583012,50 +596850,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [127909] = 18, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [131459] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9060), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9218), 1, anon_sym_LPAREN, - ACTIONS(9139), 1, + ACTIONS(9224), 1, + sym__backtick_identifier, + ACTIONS(9315), 1, anon_sym_dynamic, - STATE(4503), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(7466), 1, + sym_type_modifiers, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4522), 1, + STATE(8330), 1, sym_user_type, - STATE(7518), 1, - sym_type_modifiers, - STATE(9393), 1, - sym_function_type_parameters, - STATE(9599), 1, + STATE(9649), 1, sym_parenthesized_user_type, + STATE(10143), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4513), 2, + STATE(5745), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(4608), 3, + STATE(5786), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583063,50 +596902,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [127978] = 18, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [131530] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9131), 1, + ACTIONS(9218), 1, anon_sym_LPAREN, - STATE(2902), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6500), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7400), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9315), 1, + anon_sym_dynamic, + STATE(5686), 1, sym_simple_identifier, - STATE(7845), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5718), 1, sym__simple_user_type, + STATE(5767), 1, + sym_user_type, + STATE(7489), 1, + sym_type_modifiers, + STATE(9680), 1, + sym_parenthesized_user_type, + STATE(10064), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(5745), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7943), 2, - sym__receiver_type, + STATE(5786), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7157), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583114,50 +596954,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131601] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128047] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9133), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(3602), 1, + STATE(3671), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6480), 1, + STATE(6569), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7474), 1, + STATE(7484), 1, sym_simple_identifier, - STATE(7910), 1, + STATE(7980), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7955), 2, + STATE(7918), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583165,50 +597006,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131672] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128116] = 18, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9057), 1, + anon_sym_LPAREN, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_LPAREN, - ACTIONS(9141), 1, + ACTIONS(9305), 1, anon_sym_dynamic, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(7427), 1, + sym_type_modifiers, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2886), 1, + STATE(8347), 1, sym_user_type, - STATE(7433), 1, - sym_type_modifiers, - STATE(9396), 1, + STATE(9549), 1, sym_function_type_parameters, - STATE(9757), 1, + STATE(9579), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2881), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3153), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7157), 3, + STATE(8185), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(251), 8, + STATE(8290), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583216,50 +597058,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131743] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - [128185] = 18, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9024), 1, - anon_sym_LPAREN, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9143), 1, + ACTIONS(9279), 1, + anon_sym_LPAREN, + ACTIONS(9317), 1, anon_sym_dynamic, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4823), 1, + STATE(2811), 1, sym_user_type, - STATE(7462), 1, + STATE(7552), 1, sym_type_modifiers, - STATE(9727), 1, - sym_parenthesized_user_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, + STATE(9885), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4830), 2, + STATE(2842), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(4963), 3, + STATE(3033), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583267,50 +597110,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131814] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128254] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9131), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(2902), 1, + STATE(4983), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6516), 1, + STATE(6534), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7537), 1, + STATE(7548), 1, sym_simple_identifier, - STATE(7845), 1, + STATE(7903), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7878), 2, + STATE(7902), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583318,101 +597162,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131885] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128323] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9135), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(4916), 1, + STATE(3730), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6492), 1, + STATE(6578), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7525), 1, + STATE(7462), 1, sym_simple_identifier, - STATE(7821), 1, + STATE(7992), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7959), 2, + STATE(7944), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 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, - [128392] = 18, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9145), 1, - anon_sym_dynamic, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(7465), 1, - sym_type_modifiers, - STATE(8201), 1, - sym__simple_user_type, - STATE(8281), 1, - sym_user_type, - STATE(9735), 1, - sym_function_type_parameters, - STATE(9744), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7988), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8235), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583420,50 +597214,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [131956] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128461] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9133), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(3457), 1, + STATE(831), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6506), 1, + STATE(6553), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7513), 1, + STATE(7596), 1, sym_simple_identifier, - STATE(7828), 1, + STATE(7878), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7896), 2, + STATE(7984), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583471,50 +597266,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132027] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128530] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9147), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(4518), 1, + STATE(4741), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6488), 1, + STATE(6551), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7355), 1, + STATE(7380), 1, sym_simple_identifier, - STATE(7823), 1, + STATE(7871), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7831), 2, + STATE(7885), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583522,50 +597318,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132098] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128599] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9147), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(4518), 1, + STATE(4983), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6511), 1, + STATE(6576), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7493), 1, + STATE(7441), 1, sym_simple_identifier, - STATE(7823), 1, + STATE(7903), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7912), 2, + STATE(7924), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583573,50 +597370,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132169] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - [128668] = 18, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9064), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9149), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9319), 1, anon_sym_dynamic, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(862), 1, + STATE(833), 1, sym_user_type, - STATE(7408), 1, + STATE(7445), 1, sym_type_modifiers, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9832), 1, + STATE(9919), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(847), 2, + STATE(827), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(979), 3, + STATE(1012), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583624,50 +597422,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [128737] = 18, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [132240] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9147), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9234), 1, anon_sym_LPAREN, - STATE(4896), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6521), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7516), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + ACTIONS(9321), 1, + anon_sym_dynamic, + STATE(4544), 1, sym_simple_identifier, - STATE(7929), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, + STATE(4668), 1, + sym_user_type, + STATE(7481), 1, + sym_type_modifiers, + STATE(9741), 1, + sym_function_type_parameters, + STATE(9903), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(4645), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7930), 2, - sym__receiver_type, + STATE(4918), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7157), 3, + sym_function_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583675,50 +597474,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132311] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128806] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9147), 1, + ACTIONS(9311), 1, anon_sym_LPAREN, - STATE(4896), 1, + STATE(3671), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6477), 1, + STATE(6587), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7377), 1, + STATE(7536), 1, sym_simple_identifier, - STATE(7929), 1, + STATE(7980), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7824), 2, + STATE(7962), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583726,50 +597526,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132382] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128875] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9121), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(2897), 1, + STATE(3429), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6525), 1, + STATE(6577), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7523), 1, + STATE(7480), 1, sym_simple_identifier, - STATE(7931), 1, + STATE(7882), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7865), 2, + STATE(7868), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583777,50 +597578,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132453] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [128944] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9145), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(6123), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9311), 1, + anon_sym_LPAREN, + STATE(3026), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(6564), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7952), 1, + STATE(7528), 1, sym_simple_identifier, - STATE(8071), 1, + STATE(7880), 1, sym__simple_user_type, - STATE(8259), 1, - sym_user_type, - STATE(9401), 1, - sym_parenthesized_user_type, - STATE(9675), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7988), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7157), 3, + STATE(7920), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8235), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8503), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583828,101 +597630,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132524] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [129013] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9121), 1, + ACTIONS(9295), 1, anon_sym_LPAREN, - STATE(3100), 1, + STATE(831), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6514), 1, + STATE(6544), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7359), 1, + STATE(7551), 1, sym_simple_identifier, - STATE(7829), 1, + STATE(7878), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7926), 2, + STATE(7933), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 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, - [129082] = 18, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9092), 1, - anon_sym_LPAREN, - ACTIONS(9096), 1, - sym__backtick_identifier, - ACTIONS(9151), 1, - anon_sym_dynamic, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, - sym__lexical_identifier, - STATE(5681), 1, - sym__simple_user_type, - STATE(5743), 1, - sym_user_type, - STATE(7535), 1, - sym_type_modifiers, - STATE(9473), 1, - sym_function_type_parameters, - STATE(9719), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5742), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(5783), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9090), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583930,50 +597682,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132595] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [129151] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9135), 1, + ACTIONS(9309), 1, anon_sym_LPAREN, - STATE(4916), 1, + STATE(3429), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6484), 1, + STATE(6574), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7319), 1, + STATE(7502), 1, sym_simple_identifier, - STATE(7821), 1, + STATE(7882), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7830), 2, + STATE(7949), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583981,50 +597734,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132666] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [129220] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9147), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(4896), 1, + STATE(4919), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6503), 1, + STATE(6547), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7434), 1, + STATE(7589), 1, sym_simple_identifier, - STATE(7929), 1, + STATE(8016), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7852), 2, + STATE(8014), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584032,50 +597786,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132737] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - [129289] = 18, - ACTIONS(8942), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9052), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9153), 1, + ACTIONS(9323), 1, anon_sym_dynamic, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3025), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3363), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4722), 1, sym_user_type, - STATE(7413), 1, + STATE(7588), 1, sym_type_modifiers, - STATE(9498), 1, - sym_function_type_parameters, - STATE(9808), 1, + STATE(9784), 1, sym_parenthesized_user_type, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3199), 2, + STATE(4723), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(3699), 3, + STATE(4975), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9050), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584083,50 +597838,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [129358] = 18, - ACTIONS(8942), 1, + [132808] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9078), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9082), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9155), 1, + ACTIONS(9325), 1, anon_sym_dynamic, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(2881), 1, sym__simple_user_type, - STATE(4882), 1, + STATE(3199), 1, sym_user_type, - STATE(7416), 1, + STATE(7458), 1, sym_type_modifiers, - STATE(9452), 1, + STATE(9673), 1, sym_function_type_parameters, - STATE(9811), 1, + STATE(9912), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4893), 2, + STATE(3176), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5035), 3, + STATE(3407), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9076), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584134,50 +597890,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [129427] = 18, - ACTIONS(8942), 1, + [132879] = 19, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9070), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9250), 1, anon_sym_LPAREN, - ACTIONS(9074), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9127), 1, + ACTIONS(9327), 1, anon_sym_dynamic, - STATE(5637), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(7404), 1, - sym_type_modifiers, - STATE(7962), 1, + STATE(5748), 1, sym__simple_user_type, - STATE(8263), 1, + STATE(5777), 1, sym_user_type, - STATE(9627), 1, + STATE(7537), 1, + sym_type_modifiers, + STATE(9768), 1, sym_parenthesized_user_type, - STATE(10062), 1, + STATE(10117), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5686), 2, + STATE(5772), 2, sym__type_reference, sym_parenthesized_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(5751), 3, + STATE(5829), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9068), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584185,50 +597942,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [132950] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [129496] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9131), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(3554), 1, + STATE(4919), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6491), 1, + STATE(6580), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7480), 1, + STATE(7455), 1, sym_simple_identifier, - STATE(7833), 1, + STATE(8016), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7844), 2, + STATE(7939), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584236,50 +597994,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133021] = 19, + ACTIONS(8672), 1, sym__alpha_identifier, - [129565] = 18, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9135), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(4799), 1, + STATE(3059), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6481), 1, + STATE(6537), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7490), 1, + STATE(7542), 1, sym_simple_identifier, - STATE(7940), 1, + STATE(8001), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7839), 2, + STATE(7961), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584287,47 +598046,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133092] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [129634] = 16, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(812), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2694), 2, + STATE(591), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7471), 2, + STATE(7367), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584335,47 +598095,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133158] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [129698] = 16, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(812), 1, sym_simple_identifier, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(452), 2, + STATE(434), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7352), 2, + STATE(7470), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584383,47 +598144,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133224] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [129762] = 16, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2706), 2, + STATE(2661), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7526), 2, + STATE(7457), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584431,48 +598193,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133290] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [129826] = 17, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6474), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7496), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7908), 2, + STATE(2735), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7439), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584480,48 +598242,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133356] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [129892] = 17, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6513), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7334), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7897), 2, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7365), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584529,48 +598291,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133422] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [129958] = 17, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6475), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7342), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7887), 2, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7422), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584578,48 +598340,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133488] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [130024] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6527), 1, + STATE(6585), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7357), 1, + STATE(7394), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7876), 2, + STATE(7905), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584627,47 +598390,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133556] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [130090] = 16, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6589), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7547), 1, + sym_simple_identifier, + STATE(7843), 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(7371), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7965), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584675,48 +598440,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [130154] = 17, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [133624] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(6524), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7383), 1, + STATE(2926), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7864), 2, + STATE(2287), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7410), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584724,47 +598489,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133690] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [130220] = 16, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9117), 1, - anon_sym_LPAREN, - ACTIONS(9119), 1, - sym__backtick_identifier, - STATE(5639), 1, - sym__lexical_identifier, - STATE(5643), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5387), 2, + STATE(2695), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7305), 2, + STATE(7529), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9115), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584772,48 +598538,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133756] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [130284] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6505), 1, + STATE(6566), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7430), 1, + STATE(7448), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7855), 2, + STATE(7911), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584821,48 +598588,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133824] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [130350] = 17, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6517), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7323), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7941), 2, + STATE(431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7473), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584870,48 +598637,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133890] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [130416] = 17, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6519), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7485), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7842), 2, + STATE(433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7493), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584919,48 +598686,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [133956] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [130482] = 17, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6489), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7384), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7825), 2, + STATE(622), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7546), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584968,47 +598735,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134022] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [130548] = 16, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(812), 1, sym_simple_identifier, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(616), 2, + STATE(437), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7449), 2, + STATE(7504), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585016,48 +598784,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134088] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [130612] = 17, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6494), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7429), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7951), 2, + STATE(2395), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7389), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585065,47 +598833,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134154] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [130678] = 16, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2603), 2, + STATE(2135), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7459), 2, + STATE(7524), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585113,48 +598882,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134220] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [130742] = 17, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6493), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7398), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7822), 2, + STATE(2381), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7414), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585162,48 +598931,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134286] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [130808] = 17, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6482), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7455), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7877), 2, + STATE(2180), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7583), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585211,47 +598980,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134352] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [130874] = 16, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(812), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1592), 2, + STATE(451), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7520), 2, + STATE(7409), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585259,48 +599029,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134418] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [130938] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6485), 1, + STATE(6588), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7506), 1, + STATE(7413), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7917), 2, + STATE(7926), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585308,47 +599079,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134486] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [131004] = 16, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(435), 2, + STATE(2377), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7308), 2, + STATE(7404), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585356,47 +599128,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134552] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [131068] = 16, - ACTIONS(8942), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9108), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2906), 1, - sym__lexical_identifier, - STATE(2992), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1912), 2, + STATE(2173), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7504), 2, + STATE(7600), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9050), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585404,47 +599177,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [131132] = 16, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [134618] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9287), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(5690), 1, + sym_simple_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2392), 2, + STATE(5513), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7446), 2, + STATE(7538), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585452,97 +599226,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134684] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [131196] = 17, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(812), 1, + sym_simple_identifier, + STATE(823), 1, sym__lexical_identifier, - STATE(6504), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7367), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7920), 2, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7512), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8503), 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, - [131262] = 17, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6512), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7536), 1, - sym_simple_identifier, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7875), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585550,47 +599275,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134750] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [131328] = 16, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1619), 2, + STATE(2734), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7479), 2, + STATE(7407), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585598,96 +599324,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134816] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [131392] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6476), 1, + STATE(6584), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7532), 1, + STATE(7540), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7889), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7802), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8503), 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, - [131458] = 16, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9038), 1, - anon_sym_dynamic, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, - sym__lexical_identifier, - STATE(7158), 1, - sym_type_modifiers, - STATE(7793), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1628), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7494), 2, + STATE(8010), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585695,48 +599374,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134884] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [131522] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6529), 1, + STATE(6534), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7346), 1, + STATE(7548), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7906), 2, + STATE(7902), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585744,48 +599424,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [134952] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [131588] = 17, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(6508), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7528), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7808), 2, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7479), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585793,47 +599473,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [131654] = 16, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [135018] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(5694), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2715), 2, + STATE(5431), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7509), 2, + STATE(7415), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585841,48 +599522,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135084] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [131718] = 17, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6515), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7298), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7874), 2, + STATE(2659), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7516), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585890,48 +599571,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135150] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [131784] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6499), 1, + STATE(6573), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7421), 1, + STATE(7523), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7904), 2, + STATE(7897), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585939,48 +599621,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135218] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [131850] = 17, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6487), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7440), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7914), 2, + STATE(2625), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7503), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585988,47 +599670,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135284] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [131916] = 16, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(7158), 1, + STATE(6583), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7508), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2615), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7379), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7953), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586036,48 +599720,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135352] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [131980] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6507), 1, + STATE(6582), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7452), 1, + STATE(7443), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7899), 2, + STATE(7999), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586085,47 +599770,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135420] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [132046] = 16, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2599), 2, + STATE(1746), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7387), 2, + STATE(7545), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586133,48 +599819,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135486] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [132110] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6522), 1, + STATE(6572), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7297), 1, + STATE(7377), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7816), 2, + STATE(8004), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586182,47 +599869,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135554] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [132176] = 16, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2647), 2, + STATE(2392), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7464), 2, + STATE(7587), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586230,47 +599918,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135620] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [132240] = 16, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(7158), 1, + STATE(6556), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7573), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2650), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7358), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7978), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586278,47 +599968,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135688] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [132304] = 16, - ACTIONS(8942), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9034), 1, - anon_sym_LPAREN, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9042), 1, - sym__backtick_identifier, - STATE(5636), 1, + ACTIONS(9230), 1, + anon_sym_LPAREN, + STATE(2938), 1, sym_simple_identifier, - STATE(5642), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5341), 2, + STATE(2609), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7322), 2, + STATE(7449), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9032), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586326,47 +600017,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135754] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [132368] = 16, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(812), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1726), 2, + STATE(459), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7454), 2, + STATE(7469), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586374,47 +600066,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135820] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [132432] = 16, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1297), 2, + STATE(2435), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7353), 2, + STATE(7577), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586422,48 +600115,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135886] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [132496] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6498), 1, + STATE(6571), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7522), 1, + STATE(7601), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7862), 2, + STATE(7986), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586471,47 +600165,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [135954] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [132562] = 16, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6565), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7476), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7482), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8007), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586519,47 +600215,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136022] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [132626] = 16, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2622), 2, + STATE(2330), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7503), 2, + STATE(7391), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586567,48 +600264,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136088] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [132690] = 17, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, - anon_sym_LPAREN, - STATE(6123), 1, + STATE(3294), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(6478), 1, - sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7432), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7869), 2, + STATE(2728), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7430), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586616,47 +600313,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136154] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [132756] = 16, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(812), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1332), 2, + STATE(443), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7345), 2, + STATE(7483), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586664,47 +600362,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136220] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [132820] = 16, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1577), 2, + STATE(2403), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7515), 2, + STATE(7575), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586712,47 +600411,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136286] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [132884] = 16, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6562), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7463), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2428), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7309), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7945), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586760,47 +600461,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [132948] = 16, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [136354] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(2866), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(5694), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2423), 2, + STATE(5436), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7476), 2, + STATE(7509), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586808,47 +600510,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136420] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133012] = 16, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6557), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7435), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7407), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7929), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586856,47 +600560,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136488] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [133076] = 16, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(632), 2, + STATE(2447), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7327), 2, + STATE(7417), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586904,47 +600609,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136554] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [133140] = 16, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(812), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2413), 2, + STATE(584), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7405), 2, + STATE(7382), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586952,47 +600658,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [133204] = 16, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [136620] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9287), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9291), 1, + sym__backtick_identifier, + STATE(5682), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(5690), 1, + sym_simple_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(636), 2, + STATE(5494), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7410), 2, + STATE(7440), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587000,47 +600707,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136686] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133268] = 16, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6535), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7450), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(454), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7306), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7941), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587048,47 +600757,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136754] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [133332] = 16, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9108), 1, - anon_sym_LPAREN, - STATE(2906), 1, - sym__lexical_identifier, - STATE(2992), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1838), 2, + STATE(2410), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7534), 2, + STATE(7456), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9050), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587096,48 +600806,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [133396] = 17, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [136820] = 17, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(6496), 1, - sym_type_parameters, - STATE(7158), 1, - sym_type_modifiers, - STATE(7394), 1, + STATE(2926), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7216), 1, + sym_type_modifiers, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7933), 2, + STATE(2314), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7396), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587145,47 +600855,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136886] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [133462] = 16, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, + STATE(2323), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7396), 2, + STATE(7399), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587193,47 +600904,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [136952] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133526] = 16, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(7158), 1, + STATE(6539), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7521), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1966), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7300), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7989), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587241,48 +600954,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137020] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133590] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6502), 1, + STATE(6545), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7315), 1, + STATE(7591), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7814), 2, + STATE(7951), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587290,47 +601004,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137088] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [133656] = 16, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(812), 1, sym_simple_identifier, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(578), 2, + STATE(450), 2, sym_variable_declaration, sym_multi_variable_declaration, STATE(7397), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587338,47 +601053,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137154] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133720] = 16, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3136), 1, - sym_simple_identifier, - STATE(7158), 1, + STATE(6558), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7513), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1621), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7512), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7971), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587386,47 +601103,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137222] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133784] = 16, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6546), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7580), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(550), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7451), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7976), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587434,47 +601153,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137290] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [133848] = 16, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9034), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9042), 1, - sym__backtick_identifier, - STATE(5636), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(5642), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5291), 2, + STATE(2346), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7475), 2, + STATE(7363), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9032), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587482,47 +601202,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137356] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133912] = 16, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6536), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7379), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1305), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7330), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7921), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587530,47 +601252,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137424] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [133976] = 16, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6542), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7554), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(437), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7324), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7874), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587578,47 +601302,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137492] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [134040] = 16, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2680), 2, + STATE(2602), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7441), 2, + STATE(7384), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587626,47 +601351,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137558] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [134104] = 16, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6555), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7531), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7458), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8020), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587674,48 +601401,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137626] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [134168] = 17, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9036), 1, + ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6479), 1, + STATE(6552), 1, sym_type_parameters, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7499), 1, + STATE(7544), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7849), 2, + STATE(7935), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587723,47 +601451,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137694] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [134234] = 16, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, - anon_sym_LPAREN, - STATE(2866), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2611), 2, + STATE(2646), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7439), 2, + STATE(7526), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587771,47 +601500,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137760] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [134298] = 16, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(591), 2, + STATE(2362), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7467), 2, + STATE(7428), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587819,47 +601549,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137826] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [134362] = 16, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(812), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1721), 2, + STATE(606), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7401), 2, + STATE(7553), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587867,47 +601598,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137892] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [134426] = 16, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6548), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7539), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1307), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7340), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7967), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587915,47 +601648,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [137960] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [134490] = 16, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(812), 1, sym_simple_identifier, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(441), 2, + STATE(581), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7318), 2, + STATE(7378), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587963,47 +601697,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138026] = 17, + ACTIONS(387), 1, sym__alpha_identifier, - [134554] = 16, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(812), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1569), 2, + STATE(616), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7473), 2, + STATE(7505), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588011,47 +601746,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138092] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [134618] = 16, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1620), 2, + STATE(2457), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7538), 2, + STATE(7541), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588059,47 +601795,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138158] = 17, + ACTIONS(473), 1, sym__alpha_identifier, - [134682] = 16, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9088), 1, - anon_sym_LPAREN, - STATE(822), 1, + STATE(3294), 1, sym_simple_identifier, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(429), 2, + STATE(2335), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7320), 2, + STATE(7412), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588107,47 +601844,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138224] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [134746] = 16, - ACTIONS(8942), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9117), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - ACTIONS(9119), 1, - sym__backtick_identifier, - STATE(5639), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5643), 1, - sym_simple_identifier, - STATE(7158), 1, + STATE(6550), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7507), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5473), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7392), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7870), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9115), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588155,47 +601894,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138292] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [134810] = 16, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9058), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3136), 1, + STATE(2938), 1, sym_simple_identifier, - STATE(7158), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1658), 2, + STATE(2607), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7437), 2, + STATE(7400), 2, sym__receiver_type, sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588203,47 +601943,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138358] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [134874] = 16, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9044), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2866), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6540), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7793), 1, + STATE(7579), 1, + sym_simple_identifier, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1624), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7484), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7914), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588251,44 +601993,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138426] = 18, + ACTIONS(8672), 1, sym__alpha_identifier, - [134938] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(6563), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7497), 1, + STATE(7563), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7902), 2, + STATE(7958), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588296,44 +602043,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138494] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - [134998] = 15, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9230), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2938), 1, + sym_simple_identifier, + STATE(2955), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7339), 1, - sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7892), 2, + STATE(2652), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7467), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588341,44 +602092,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138560] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135058] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7514), 1, + STATE(7476), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7880), 2, + STATE(8007), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588386,44 +602138,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138622] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135118] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7398), 1, + STATE(7468), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7822), 2, + STATE(7946), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588431,44 +602184,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138684] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135178] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7311), 1, + STATE(7372), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7856), 2, + STATE(7927), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588476,89 +602230,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138746] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135238] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7488), 1, + STATE(7539), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7848), 2, + STATE(7967), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138808] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4337), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4335), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135298] = 15, - ACTIONS(8531), 1, + [138844] = 16, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7429), 1, + STATE(7411), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7951), 2, + STATE(7987), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588566,44 +602355,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138906] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135358] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7485), 1, + STATE(7571), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7842), 2, + STATE(7928), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588611,44 +602401,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [138968] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135418] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7438), 1, + STATE(7563), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7928), 2, + STATE(7958), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588656,77 +602447,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139030] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135478] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7525), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 13, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4101), 14, - anon_sym_by, - anon_sym_where, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7909), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - 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, + [139092] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135514] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7315), 1, + STATE(7579), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7814), 2, + STATE(7914), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588734,44 +602539,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139154] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135574] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7469), 1, + STATE(7544), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7832), 2, + STATE(7935), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588779,44 +602585,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139216] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135634] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7499), 1, + STATE(7586), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7849), 2, + STATE(7954), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588824,44 +602631,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139278] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135694] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7307), 1, + STATE(7581), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7891), 2, + STATE(7981), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588869,44 +602677,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139340] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135754] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7432), 1, + STATE(7531), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7869), 2, + STATE(8020), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588914,89 +602723,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139402] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135814] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7461), 1, + STATE(7530), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7900), 2, + STATE(7968), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139464] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4166), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135874] = 15, - ACTIONS(8531), 1, + [139500] = 16, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7394), 1, + STATE(7561), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7933), 2, + STATE(7899), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589004,44 +602848,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139562] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135934] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7455), 1, + STATE(7507), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7877), 2, + STATE(7870), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589049,44 +602894,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139624] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [135994] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7506), 1, + STATE(7520), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7917), 2, + STATE(7963), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589094,44 +602940,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139686] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136054] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7601), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7960), 2, + STATE(7986), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589139,44 +602986,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139748] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136114] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7389), 1, + STATE(7513), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7947), 2, + STATE(7971), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589184,44 +603032,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139810] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136174] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7452), 1, + STATE(7437), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7899), 2, + STATE(8024), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589229,44 +603078,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139872] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136234] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7354), 1, + STATE(7459), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7932), 2, + STATE(7964), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589274,44 +603124,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139934] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136294] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7346), 1, + STATE(7398), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7906), 2, + STATE(7937), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589319,44 +603170,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [139996] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136354] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7517), 1, + STATE(7511), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7858), 2, + STATE(7975), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589364,44 +603216,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140058] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136414] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7426), 1, + STATE(7450), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7898), 2, + STATE(7941), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589409,44 +603262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140120] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136474] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7323), 1, + STATE(7591), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7941), 2, + STATE(7951), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589454,44 +603308,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140182] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136534] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7421), 1, + STATE(7521), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7904), 2, + STATE(7989), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589499,44 +603354,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140244] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136594] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7460), 1, + STATE(7487), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7807), 2, + STATE(7947), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589544,44 +603400,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140306] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136654] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7430), 1, + STATE(7557), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7855), 2, + STATE(7960), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589589,44 +603446,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140368] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136714] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7376), 1, + STATE(7554), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7915), 2, + STATE(7874), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589634,44 +603492,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140430] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136774] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7420), 1, + STATE(7584), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7859), 2, + STATE(8021), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589679,44 +603538,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140492] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136834] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7532), 1, + STATE(7464), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7889), 2, + STATE(7910), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589724,44 +603584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140554] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136894] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7530), 1, + STATE(7379), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7938), 2, + STATE(7921), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589769,44 +603630,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140616] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [136954] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7412), 1, + STATE(7443), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7820), 2, + STATE(7999), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589814,77 +603676,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140678] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137014] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7448), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 13, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4314), 14, - anon_sym_by, - anon_sym_where, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7911), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_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, + [140740] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137050] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7383), 1, + STATE(7394), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7864), 2, + STATE(7905), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589892,44 +603768,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140802] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137110] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7496), 1, + STATE(7478), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7908), 2, + STATE(7990), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589937,44 +603814,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140864] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137170] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7529), 1, + STATE(7418), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7804), 2, + STATE(7934), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589982,44 +603860,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140926] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137230] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7329), 1, + STATE(7550), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7901), 2, + STATE(7896), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590027,44 +603906,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [140988] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137290] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7367), 1, + STATE(7508), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7920), 2, + STATE(7953), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590072,44 +603952,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141050] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137350] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7502), 1, + STATE(7580), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7857), 2, + STATE(7976), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590117,44 +603998,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141112] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137410] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7536), 1, + STATE(7435), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7875), 2, + STATE(7929), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590162,44 +604044,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141174] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137470] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7328), 1, + STATE(7377), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7936), 2, + STATE(8004), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590207,44 +604090,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141236] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137530] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7334), 1, + STATE(7413), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7897), 2, + STATE(7926), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590252,44 +604136,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141298] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137590] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7478), 1, + STATE(7523), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7846), 2, + STATE(7897), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590297,44 +604182,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141360] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137650] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7528), 1, + STATE(7463), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7808), 2, + STATE(7945), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590342,44 +604228,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141422] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137710] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7440), 1, + STATE(7573), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7914), 2, + STATE(7978), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590387,44 +604274,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141484] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137770] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7384), 1, + STATE(7392), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7825), 2, + STATE(7996), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590432,44 +604320,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141546] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137830] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7298), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7874), 2, + STATE(7959), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590477,44 +604366,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141608] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137890] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7378), 1, + STATE(7556), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7870), 2, + STATE(8025), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590522,44 +604412,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141670] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [137950] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7522), 1, + STATE(7406), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7862), 2, + STATE(7900), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590567,44 +604458,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141732] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [138010] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7342), 1, + STATE(7540), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7887), 2, + STATE(8010), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590612,44 +604504,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141794] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [138070] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7350), 1, + STATE(7547), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7881), 2, + STATE(7965), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590657,44 +604550,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141856] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [138130] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7357), 1, + STATE(7522), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7876), 2, + STATE(7922), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590702,44 +604596,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [141918] = 16, + ACTIONS(8672), 1, sym__alpha_identifier, - [138190] = 15, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9038), 1, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9157), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7158), 1, + STATE(7216), 1, sym_type_modifiers, - STATE(7317), 1, + STATE(7560), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(7843), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7903), 2, + STATE(7970), 2, sym__receiver_type, sym_nullable_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7802), 3, + STATE(7852), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590747,16 +604642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [138250] = 5, - ACTIONS(6465), 1, + [141980] = 5, + ACTIONS(6552), 1, anon_sym_LT, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 10, + ACTIONS(4189), 10, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -590767,7 +604661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 14, + ACTIONS(4128), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -590782,15 +604676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138289] = 5, - ACTIONS(9159), 1, + [142019] = 5, + ACTIONS(9331), 1, anon_sym_DOT, - STATE(6531), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 9, + ACTIONS(4168), 9, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -590800,7 +604694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4101), 14, + ACTIONS(4166), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -590815,40 +604709,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138327] = 14, - ACTIONS(8531), 1, + [142057] = 5, + ACTIONS(9334), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 9, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, sym__backtick_identifier, - ACTIONS(8923), 1, + ACTIONS(4153), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [142095] = 15, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9081), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(9083), 1, anon_sym_RPAREN, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(8963), 1, + STATE(9063), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590856,41 +604785,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142153] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138383] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8913), 1, + ACTIONS(9085), 1, anon_sym_COMMA, - ACTIONS(8915), 1, + ACTIONS(9087), 1, anon_sym_RPAREN, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8841), 1, - sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(8905), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590898,41 +604828,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142211] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138439] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8903), 1, + ACTIONS(9336), 1, + anon_sym_AT, + ACTIONS(9338), 1, anon_sym_COMMA, - ACTIONS(8905), 1, + ACTIONS(9340), 1, anon_sym_RPAREN, - ACTIONS(9162), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8731), 1, - sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(8949), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590940,41 +604871,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142269] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138495] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8929), 1, + ACTIONS(9077), 1, anon_sym_COMMA, - ACTIONS(8931), 1, + ACTIONS(9079), 1, anon_sym_RPAREN, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8760), 1, + STATE(8881), 1, sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590982,41 +604914,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142327] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138551] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9073), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(9075), 1, anon_sym_RPAREN, - STATE(6123), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8809), 1, - sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(9094), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591024,41 +604957,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142385] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138607] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9342), 1, anon_sym_COMMA, - ACTIONS(9170), 1, + ACTIONS(9344), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8932), 1, - sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(9076), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591066,41 +605000,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142443] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138663] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9346), 1, anon_sym_COMMA, - ACTIONS(9174), 1, + ACTIONS(9348), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8818), 1, - sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(9058), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591108,74 +605043,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142501] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138719] = 5, - ACTIONS(9176), 1, - anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9067), 1, + anon_sym_COMMA, + ACTIONS(9069), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8829), 1, + sym__function_value_parameter, + STATE(8883), 1, + sym_parameter, + STATE(9513), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 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(4075), 14, - anon_sym_by, - anon_sym_where, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_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, + [142559] = 15, + ACTIONS(8672), 1, sym__alpha_identifier, - [138757] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8909), 1, + ACTIONS(9059), 1, anon_sym_COMMA, - ACTIONS(8911), 1, + ACTIONS(9061), 1, anon_sym_RPAREN, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8798), 1, + STATE(8805), 1, sym__function_value_parameter, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591183,41 +605129,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142617] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [138813] = 14, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8921), 1, - anon_sym_RPAREN, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + ACTIONS(9350), 1, + anon_sym_RPAREN, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(8996), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591225,39 +605170,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142672] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [138869] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9178), 1, + ACTIONS(9352), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591265,12 +605211,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142727] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [138922] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9336), 1, + anon_sym_AT, + ACTIONS(9354), 1, + anon_sym_RPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142782] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 10, + ACTIONS(4315), 10, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -591281,7 +605267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4171), 14, + ACTIONS(4313), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -591296,38 +605282,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138955] = 13, - ACTIONS(8531), 1, + [142815] = 14, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9356), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591335,39 +605323,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142870] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139008] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9358), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591375,39 +605364,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142925] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139061] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9360), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591415,39 +605405,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [142980] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139114] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9362), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591455,39 +605446,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143035] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139167] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9364), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591495,39 +605487,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143090] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139220] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9190), 1, + ACTIONS(9366), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591535,39 +605528,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143145] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139273] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9192), 1, + ACTIONS(9368), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591575,39 +605569,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143200] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139326] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9194), 1, + ACTIONS(9370), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591615,39 +605610,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143255] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139379] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9196), 1, + ACTIONS(9372), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591655,39 +605651,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143310] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139432] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9198), 1, + ACTIONS(9374), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591695,109 +605692,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143365] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139485] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9376), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 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, - [139538] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4310), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4308), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [143420] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139571] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9202), 1, + ACTIONS(9378), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591805,39 +605774,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143475] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139624] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9380), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591845,39 +605815,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143530] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139677] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9206), 1, + ACTIONS(9382), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591885,39 +605856,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143585] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [139730] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9208), 1, + ACTIONS(9384), 1, anon_sym_RPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7809), 1, + STATE(8005), 1, sym_parameter_modifiers, - STATE(8962), 1, + STATE(8883), 1, sym_parameter, - STATE(9037), 1, + STATE(9438), 1, sym__function_value_parameter, - STATE(9465), 1, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591925,79 +605897,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143640] = 14, + ACTIONS(9386), 1, sym__alpha_identifier, - [139783] = 13, - ACTIONS(9212), 1, + ACTIONS(9388), 1, anon_sym_file, - ACTIONS(9214), 1, + ACTIONS(9390), 1, anon_sym_LBRACK, - ACTIONS(9220), 1, + ACTIONS(9398), 1, sym__backtick_identifier, - STATE(3703), 1, + STATE(3554), 1, sym_simple_identifier, - STATE(3742), 1, - sym__simple_user_type, - STATE(3930), 1, + STATE(3648), 1, sym__lexical_identifier, - STATE(4027), 1, + STATE(3688), 1, + sym__simple_user_type, + STATE(3724), 1, sym_user_type, - STATE(7235), 1, + STATE(7317), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9216), 2, + ACTIONS(9392), 2, anon_sym_get, anon_sym_set, - STATE(4031), 2, + STATE(3889), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9210), 6, + ACTIONS(9394), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(9218), 6, + ACTIONS(9396), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [139836] = 13, - ACTIONS(8531), 1, + [143695] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4319), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(4317), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [143728] = 14, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9222), 1, - anon_sym_RPAREN, - STATE(6123), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9400), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8962), 1, - sym_parameter, - STATE(9037), 1, - sym__function_value_parameter, - STATE(9465), 1, + STATE(824), 1, sym_simple_identifier, + STATE(884), 1, + sym__simple_user_type, + STATE(7465), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(974), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7156), 3, - sym_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + aux_sym_type_modifiers_repeat1, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592005,77 +606008,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143782] = 13, + ACTIONS(9402), 1, sym__alpha_identifier, - [139889] = 13, - ACTIONS(8531), 1, + ACTIONS(9404), 1, + anon_sym_LBRACK, + ACTIONS(9410), 1, sym__backtick_identifier, - ACTIONS(9162), 1, - anon_sym_AT, - ACTIONS(9224), 1, - anon_sym_RPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8962), 1, - sym_parameter, - STATE(9037), 1, - sym__function_value_parameter, - STATE(9465), 1, + STATE(5826), 1, sym_simple_identifier, + STATE(5841), 1, + sym__simple_user_type, + STATE(5842), 1, + sym__lexical_identifier, + STATE(5863), 1, + sym_user_type, + STATE(7329), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7156), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(9406), 2, anon_sym_get, anon_sym_set, + STATE(6143), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9408), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143834] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [139942] = 12, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9230), 1, - sym_reification_modifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8080), 1, - sym_type_parameter_modifiers, - STATE(8917), 1, + STATE(8005), 1, + sym_parameter_modifiers, + STATE(8883), 1, + sym_parameter, + STATE(9438), 1, + sym__function_value_parameter, + STATE(9513), 1, sym_simple_identifier, - STATE(8973), 1, - sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - STATE(7077), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592083,38 +606086,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143886] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [139992] = 13, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9232), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3011), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, sym__simple_user_type, - STATE(7456), 1, + STATE(7434), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3110), 2, + STATE(3817), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592122,76 +606126,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [143940] = 13, + ACTIONS(1724), 1, sym__alpha_identifier, - [140044] = 12, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(1788), 1, sym__backtick_identifier, - STATE(7079), 1, + ACTIONS(9414), 1, + anon_sym_LBRACK, + STATE(5340), 1, sym_simple_identifier, - STATE(7159), 1, + STATE(5443), 1, sym__simple_user_type, - STATE(7160), 1, + STATE(5458), 1, sym__lexical_identifier, - STATE(7170), 1, + STATE(5501), 1, sym_user_type, - STATE(7266), 1, + STATE(7355), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9238), 2, + ACTIONS(9416), 2, anon_sym_get, anon_sym_set, - STATE(7246), 2, + STATE(5568), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9218), 6, + ACTIONS(3092), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9396), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - ACTIONS(9234), 6, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [140094] = 13, - ACTIONS(8942), 1, + [143992] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9100), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(5638), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(5660), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(5716), 1, + STATE(5768), 1, sym__simple_user_type, - STATE(7337), 1, + STATE(7496), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5747), 2, + STATE(5803), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9098), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592199,38 +606205,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144046] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [140146] = 13, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9244), 1, - anon_sym_LPAREN, - STATE(4561), 1, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(4621), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(4890), 1, - sym__simple_user_type, - STATE(7521), 1, - sym_type_modifiers, + STATE(9095), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4908), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 8, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592238,76 +606244,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144098] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, sym__alpha_identifier, - [140198] = 12, - ACTIONS(9214), 1, - anon_sym_LBRACK, - ACTIONS(9220), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - STATE(3703), 1, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(2826), 1, sym_simple_identifier, - STATE(3742), 1, - sym__simple_user_type, - STATE(3930), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(4027), 1, - sym_user_type, - STATE(7235), 1, - sym_use_site_target, + STATE(3261), 1, + sym__simple_user_type, + STATE(7562), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9216), 2, + STATE(3484), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, - STATE(4031), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9210), 6, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [144152] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [140248] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(6662), 1, sym__simple_user_type, + STATE(7499), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8222), 2, + STATE(8292), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592315,38 +606324,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [140300] = 13, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [144206] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9248), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(2984), 1, + STATE(5768), 1, sym__simple_user_type, - STATE(7301), 1, + STATE(7475), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3067), 2, + STATE(5795), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(251), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592354,38 +606364,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [140352] = 13, - ACTIONS(8942), 1, + [144260] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9056), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9250), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3302), 1, + STATE(5617), 1, + sym_simple_identifier, + STATE(5653), 1, sym__simple_user_type, - STATE(7351), 1, + STATE(7362), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3714), 2, + STATE(5823), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9050), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592393,38 +606404,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144314] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [140404] = 13, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9248), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2984), 1, - sym__simple_user_type, - STATE(7310), 1, + STATE(7364), 1, sym_type_modifiers, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3107), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8287), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592432,37 +606444,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144368] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [140456] = 12, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9230), 1, - sym_reification_modifier, - STATE(6123), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9432), 1, + anon_sym_LPAREN, + STATE(4612), 1, sym__lexical_identifier, - STATE(8080), 1, - sym_type_parameter_modifiers, - STATE(8797), 1, - sym_type_parameter, - STATE(8917), 1, + STATE(4683), 1, sym_simple_identifier, + STATE(4897), 1, + sym__simple_user_type, + STATE(7514), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, + STATE(5005), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7077), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + aux_sym_type_modifiers_repeat1, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592470,38 +606484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144422] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [140506] = 13, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9244), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4890), 1, + STATE(4897), 1, sym__simple_user_type, - STATE(7444), 1, + STATE(7366), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4948), 2, + STATE(4985), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592509,76 +606524,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144476] = 13, + ACTIONS(9434), 1, sym__alpha_identifier, - [140558] = 12, - ACTIONS(8531), 1, + ACTIONS(9436), 1, + anon_sym_LBRACK, + ACTIONS(9442), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - ACTIONS(9230), 1, - sym_reification_modifier, - STATE(6123), 1, + STATE(5660), 1, sym__lexical_identifier, - STATE(8080), 1, - sym_type_parameter_modifiers, - STATE(8917), 1, + STATE(5684), 1, sym_simple_identifier, - STATE(9025), 1, - sym_type_parameter, + STATE(5692), 1, + sym__simple_user_type, + STATE(5705), 1, + sym_user_type, + STATE(7299), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7077), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(9438), 2, anon_sym_get, anon_sym_set, + STATE(5721), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9440), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [140608] = 13, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144528] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9252), 1, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(4511), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(4562), 1, + STATE(3261), 1, sym__simple_user_type, - STATE(7333), 1, + STATE(7572), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4628), 2, + STATE(3486), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592586,38 +606603,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144582] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [140660] = 13, - ACTIONS(8942), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9100), 1, - sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5716), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2915), 1, sym__simple_user_type, - STATE(7435), 1, + STATE(7395), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5720), 2, + STATE(3029), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9098), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592625,38 +606643,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [140712] = 13, - ACTIONS(8942), 1, + [144636] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9100), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(5638), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(5660), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(5716), 1, + STATE(4633), 1, sym__simple_user_type, - STATE(7450), 1, + STATE(7376), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5728), 2, + STATE(4924), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9098), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592664,38 +606683,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144690] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [140764] = 13, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(7343), 1, - sym_type_modifiers, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(8359), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, sym__simple_user_type, + STATE(7426), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8221), 2, + STATE(3793), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9102), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592703,38 +606723,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144744] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [140816] = 13, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9254), 1, - anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(3144), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(3535), 1, - sym__simple_user_type, - STATE(7403), 1, - sym_type_modifiers, + STATE(9080), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3693), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(415), 8, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592742,37 +606762,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144796] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9216), 1, sym__alpha_identifier, - [140868] = 12, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - ACTIONS(9230), 1, - sym_reification_modifier, - STATE(6123), 1, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5685), 1, sym__lexical_identifier, - STATE(8080), 1, - sym_type_parameter_modifiers, - STATE(8835), 1, - sym_type_parameter, - STATE(8917), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(7420), 1, + sym_type_modifiers, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, + STATE(5803), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7077), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + aux_sym_type_modifiers_repeat1, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592780,114 +606802,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [144850] = 13, + ACTIONS(9448), 1, sym__alpha_identifier, - [140918] = 12, - ACTIONS(9258), 1, + ACTIONS(9450), 1, anon_sym_LBRACK, - ACTIONS(9262), 1, + ACTIONS(9456), 1, sym__backtick_identifier, - STATE(7239), 1, + STATE(7266), 1, sym_simple_identifier, - STATE(7293), 1, - sym_use_site_target, - STATE(7370), 1, + STATE(7314), 1, sym__lexical_identifier, - STATE(7428), 1, + STATE(7328), 1, + sym_use_site_target, + STATE(7333), 1, sym__simple_user_type, - STATE(7543), 1, + STATE(7534), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9260), 2, + ACTIONS(9452), 2, anon_sym_get, anon_sym_set, - STATE(7796), 2, + STATE(7844), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9218), 6, + ACTIONS(9454), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9396), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - ACTIONS(9256), 6, + [144902] = 14, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, + sym_simple_identifier, + STATE(4616), 1, + sym__simple_user_type, + STATE(7401), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4692), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1842), 7, + anon_sym_get, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [144956] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [140968] = 12, - ACTIONS(9106), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9264), 1, - anon_sym_LBRACK, - STATE(7273), 1, - sym_use_site_target, - STATE(8261), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8828), 1, + sym_type_parameter, + STATE(8863), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145008] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(5602), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8359), 1, + STATE(5653), 1, sym__simple_user_type, - STATE(8637), 1, - sym_user_type, + STATE(7446), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9266), 2, + STATE(5821), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, - STATE(9053), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9102), 6, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [141018] = 13, - ACTIONS(8942), 1, + [145062] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9096), 1, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9268), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5550), 1, + STATE(7387), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(5562), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(5614), 1, + STATE(8452), 1, sym__simple_user_type, - STATE(7508), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5780), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8287), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9090), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592895,76 +607000,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145116] = 13, + ACTIONS(9248), 1, sym__alpha_identifier, - [141070] = 12, - ACTIONS(9272), 1, - anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - STATE(5767), 1, - sym_simple_identifier, - STATE(5790), 1, + ACTIONS(9460), 1, + anon_sym_LBRACK, + STATE(5602), 1, sym__lexical_identifier, - STATE(5791), 1, + STATE(5617), 1, + sym_simple_identifier, + STATE(5653), 1, sym__simple_user_type, - STATE(5827), 1, + STATE(5738), 1, sym_user_type, - STATE(7276), 1, + STATE(7335), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9274), 2, + ACTIONS(9462), 2, anon_sym_get, anon_sym_set, - STATE(5894), 2, + STATE(5782), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9218), 6, + ACTIONS(9252), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9396), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - ACTIONS(9270), 6, + [145168] = 13, + ACTIONS(9464), 1, + sym__alpha_identifier, + ACTIONS(9466), 1, + anon_sym_LBRACK, + ACTIONS(9472), 1, + sym__backtick_identifier, + STATE(7349), 1, + sym_use_site_target, + STATE(7357), 1, + sym_simple_identifier, + STATE(7388), 1, + sym__lexical_identifier, + STATE(7566), 1, + sym__simple_user_type, + STATE(7828), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9468), 2, + anon_sym_get, + anon_sym_set, + STATE(7847), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9470), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [141120] = 13, - ACTIONS(8942), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145220] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9056), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9250), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3302), 1, - sym__simple_user_type, - STATE(7365), 1, + STATE(5686), 1, + sym_simple_identifier, + STATE(7519), 1, sym_type_modifiers, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3726), 2, + STATE(5795), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9050), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592972,69 +607118,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [141172] = 5, - ACTIONS(9176), 1, - anon_sym_DOT, - STATE(6539), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4142), 7, + [145274] = 14, + ACTIONS(9105), 1, anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__backtick_identifier, - ACTIONS(4140), 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, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9258), 1, sym__alpha_identifier, - [141208] = 13, - ACTIONS(571), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9232), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(3011), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, sym__simple_user_type, - STATE(7495), 1, + STATE(7585), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3165), 2, + STATE(3445), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(495), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593042,38 +607158,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145328] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [141260] = 13, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7304), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(884), 1, sym__simple_user_type, + STATE(7495), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8247), 2, + STATE(979), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593081,76 +607198,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145382] = 13, + ACTIONS(9285), 1, sym__alpha_identifier, - [141312] = 12, - ACTIONS(8531), 1, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(9278), 1, + ACTIONS(9474), 1, anon_sym_LBRACK, - STATE(6123), 1, + STATE(5682), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5787), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(5813), 1, sym__simple_user_type, - STATE(7248), 1, - sym_use_site_target, - STATE(7837), 1, + STATE(5827), 1, sym_user_type, + STATE(7346), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9280), 2, + ACTIONS(9476), 2, anon_sym_get, anon_sym_set, - STATE(7745), 2, + STATE(5878), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8503), 6, + ACTIONS(9289), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(9218), 6, + ACTIONS(9396), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [141362] = 13, - ACTIONS(491), 1, + [145434] = 14, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9254), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3535), 1, + STATE(4616), 1, sym__simple_user_type, - STATE(7393), 1, + STATE(7369), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3690), 2, + STATE(4685), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593158,38 +607277,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145488] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [141414] = 13, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9282), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(901), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2915), 1, sym__simple_user_type, - STATE(7442), 1, + STATE(7574), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(966), 2, + STATE(2993), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593197,38 +607317,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [141466] = 13, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [145542] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(7501), 1, - sym_type_modifiers, - STATE(7952), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(5653), 1, sym__simple_user_type, + STATE(7436), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8221), 2, + STATE(5836), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593236,38 +607357,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145596] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [141518] = 13, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9242), 1, - anon_sym_LPAREN, - STATE(5637), 1, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, sym_simple_identifier, - STATE(7477), 1, - sym_type_modifiers, - STATE(8231), 1, - sym__simple_user_type, + STATE(8942), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5720), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9068), 8, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593275,38 +607396,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145648] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [141570] = 13, - ACTIONS(8942), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9082), 1, - sym__backtick_identifier, - ACTIONS(9284), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4864), 1, + STATE(884), 1, sym__simple_user_type, - STATE(7313), 1, + STATE(7359), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5033), 2, + STATE(938), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9076), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593314,76 +607436,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145702] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [141622] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, + sym_simple_identifier, + STATE(8970), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145754] = 14, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(7576), 1, + sym_type_modifiers, + STATE(7893), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(8293), 1, sym__simple_user_type, - STATE(7417), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8247), 2, + STATE(8286), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145808] = 5, + ACTIONS(9334), 1, + anon_sym_DOT, + STATE(6592), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 7, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4193), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141674] = 12, - ACTIONS(8531), 1, + [145844] = 13, + ACTIONS(9386), 1, + sym__alpha_identifier, + ACTIONS(9390), 1, + anon_sym_LBRACK, + ACTIONS(9398), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + STATE(3554), 1, + sym_simple_identifier, + STATE(3648), 1, + sym__lexical_identifier, + STATE(3688), 1, + sym__simple_user_type, + STATE(3724), 1, + sym_user_type, + STATE(7317), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9392), 2, + anon_sym_get, + anon_sym_set, + STATE(3889), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9394), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145896] = 13, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9230), 1, + ACTIONS(9424), 1, sym_reification_modifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8080), 1, + STATE(8206), 1, sym_type_parameter_modifiers, - STATE(8734), 1, + STATE(8860), 1, sym_type_parameter, - STATE(8917), 1, + STATE(8863), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, + ACTIONS(9422), 2, anon_sym_in, anon_sym_out, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7077), 4, + STATE(7163), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593391,37 +607624,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [145948] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [141724] = 12, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9230), 1, + ACTIONS(9424), 1, sym_reification_modifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8080), 1, + STATE(8206), 1, sym_type_parameter_modifiers, - STATE(8768), 1, + STATE(8801), 1, sym_type_parameter, - STATE(8917), 1, + STATE(8863), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, + ACTIONS(9422), 2, anon_sym_in, anon_sym_out, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7077), 4, + STATE(7163), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593429,38 +607663,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146000] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [141774] = 13, - ACTIONS(8942), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9250), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(2895), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(2906), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3302), 1, + STATE(3636), 1, sym__simple_user_type, - STATE(7369), 1, + STATE(7452), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3724), 2, + STATE(3800), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9050), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593468,38 +607703,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146054] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [141826] = 13, - ACTIONS(8942), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9096), 1, - sym__backtick_identifier, - ACTIONS(9268), 1, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(5550), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(5562), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5614), 1, + STATE(3222), 1, sym__simple_user_type, - STATE(7505), 1, + STATE(7433), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5782), 2, + STATE(3307), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9090), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593507,76 +607743,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146108] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [141878] = 12, - ACTIONS(9096), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9286), 1, + ACTIONS(9480), 1, anon_sym_LBRACK, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5614), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - STATE(5678), 1, - sym_user_type, - STATE(7285), 1, + STATE(7294), 1, sym_use_site_target, + STATE(7888), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9288), 2, + ACTIONS(9482), 2, anon_sym_get, anon_sym_set, - STATE(5750), 2, + STATE(7612), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9090), 6, + ACTIONS(8682), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(9218), 6, + ACTIONS(9396), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [141928] = 13, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [146160] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9282), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9240), 1, + sym__backtick_identifier, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(832), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(901), 1, + STATE(4633), 1, sym__simple_user_type, - STATE(7431), 1, + STATE(7370), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(959), 2, + STATE(4936), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593584,115 +607822,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146214] = 13, + ACTIONS(9484), 1, sym__alpha_identifier, - [141980] = 13, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9106), 1, + ACTIONS(9486), 1, + anon_sym_LBRACK, + ACTIONS(9492), 1, sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(7336), 1, - sym_type_modifiers, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, + STATE(7150), 1, sym_simple_identifier, - STATE(8359), 1, + STATE(7215), 1, + sym__lexical_identifier, + STATE(7220), 1, sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8222), 2, + STATE(7229), 1, sym_user_type, - sym_parenthesized_user_type, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9102), 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, - [142032] = 12, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9162), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7809), 1, - sym_parameter_modifiers, - STATE(8962), 1, - sym_parameter, - STATE(9037), 1, - sym__function_value_parameter, - STATE(9465), 1, - sym_simple_identifier, + STATE(7300), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7156), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(9488), 2, anon_sym_get, anon_sym_set, + STATE(7322), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9490), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [142082] = 13, - ACTIONS(8942), 1, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146266] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9082), 1, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9284), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4864), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4633), 1, sym__simple_user_type, - STATE(7303), 1, + STATE(7371), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5034), 2, + STATE(4935), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9076), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593700,38 +607901,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146320] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [142134] = 13, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9252), 1, - anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4511), 1, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(4562), 1, - sym__simple_user_type, - STATE(7362), 1, - sym_type_modifiers, + STATE(8206), 1, + sym_type_parameter_modifiers, + STATE(8863), 1, + sym_simple_identifier, + STATE(9457), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4593), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 8, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593739,38 +607940,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146372] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [142186] = 13, - ACTIONS(8942), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9074), 1, - sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7470), 1, + STATE(7477), 1, sym_type_modifiers, - STATE(8231), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5747), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8292), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593778,38 +607980,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146426] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [142238] = 13, - ACTIONS(8942), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9096), 1, - sym__backtick_identifier, - ACTIONS(9268), 1, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(5550), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(5562), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5614), 1, + STATE(3222), 1, sym__simple_user_type, - STATE(7531), 1, + STATE(7474), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5781), 2, + STATE(3281), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9090), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593817,38 +608020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146480] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [142290] = 13, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9232), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(3011), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7436), 1, + STATE(7492), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3112), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8286), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593856,38 +608060,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [142342] = 13, - ACTIONS(8942), 1, + [146534] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9074), 1, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(7380), 1, + STATE(7485), 1, sym_type_modifiers, - STATE(8231), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5728), 2, + STATE(5794), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9068), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593895,38 +608100,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [142394] = 13, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [146588] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9254), 1, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3144), 1, + STATE(7393), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(3535), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, sym__simple_user_type, - STATE(7419), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3651), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(8286), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(415), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593934,115 +608140,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146642] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [142446] = 13, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(4616), 1, sym__simple_user_type, - STATE(7411), 1, + STATE(7402), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8221), 2, + STATE(4638), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8503), 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, - [142498] = 12, - ACTIONS(9292), 1, - anon_sym_LBRACK, - ACTIONS(9296), 1, - sym__backtick_identifier, - STATE(7167), 1, - sym_simple_identifier, - STATE(7256), 1, - sym__simple_user_type, - STATE(7277), 1, - sym_use_site_target, - STATE(7289), 1, - sym__lexical_identifier, - STATE(7507), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9294), 2, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, - STATE(7790), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - ACTIONS(9290), 6, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [146696] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [142548] = 13, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9244), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4890), 1, + STATE(4897), 1, sym__simple_user_type, - STATE(7443), 1, + STATE(7582), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4904), 2, + STATE(5006), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594050,37 +608220,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146750] = 14, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9208), 1, sym__alpha_identifier, - [142600] = 12, - ACTIONS(8531), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - ACTIONS(9230), 1, - sym_reification_modifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8080), 1, - sym_type_parameter_modifiers, - STATE(8917), 1, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(7451), 1, + sym_type_modifiers, + STATE(8325), 1, sym_simple_identifier, - STATE(8997), 1, - sym_type_parameter, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7077), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(8292), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7217), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + aux_sym_type_modifiers_repeat1, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594088,114 +608260,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146804] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [142650] = 12, - ACTIONS(9119), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9298), 1, - anon_sym_LBRACK, - STATE(5639), 1, - sym__lexical_identifier, - STATE(5727), 1, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9478), 1, + anon_sym_LPAREN, + STATE(2899), 1, sym_simple_identifier, - STATE(5753), 1, - sym__simple_user_type, - STATE(5774), 1, - sym_user_type, - STATE(7284), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9300), 2, - anon_sym_get, - anon_sym_set, - STATE(5820), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9115), 6, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [142700] = 12, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9278), 1, - anon_sym_LBRACK, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, + STATE(3222), 1, sym__simple_user_type, - STATE(7232), 1, - sym_use_site_target, - STATE(7242), 1, - sym_user_type, + STATE(7454), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9280), 2, + STATE(3320), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7217), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - STATE(7745), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8503), 6, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [146858] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [142750] = 13, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7385), 1, + STATE(7486), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(8222), 2, + STATE(8287), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594203,76 +608340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [146912] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [142802] = 12, - ACTIONS(1752), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9302), 1, - anon_sym_LBRACK, - STATE(5398), 1, - sym_simple_identifier, - STATE(5504), 1, - sym__lexical_identifier, - STATE(5515), 1, - sym__simple_user_type, - STATE(5543), 1, - sym_user_type, - STATE(7251), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9304), 2, - anon_sym_get, - anon_sym_set, - STATE(5581), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(1688), 6, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [142852] = 13, - ACTIONS(8942), 1, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9082), 1, - sym__backtick_identifier, - ACTIONS(9284), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4864), 1, + STATE(2915), 1, sym__simple_user_type, - STATE(7356), 1, + STATE(7597), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5050), 2, + STATE(3031), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9076), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594280,38 +608380,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [142904] = 13, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, + [146966] = 14, + ACTIONS(9105), 1, anon_sym_AT, - ACTIONS(9040), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9248), 1, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2868), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(2984), 1, + STATE(5768), 1, sym__simple_user_type, - STATE(7299), 1, + STATE(7432), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3086), 2, + STATE(5794), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, + STATE(7217), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(251), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594319,115 +608420,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147020] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [142956] = 12, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - ACTIONS(9230), 1, - sym_reification_modifier, - STATE(6123), 1, + ACTIONS(9480), 1, + anon_sym_LBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(8080), 1, - sym_type_parameter_modifiers, - STATE(8917), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8946), 1, - sym_type_parameter, + STATE(6662), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_use_site_target, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7077), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(9482), 2, anon_sym_get, anon_sym_set, + STATE(7612), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8682), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147072] = 13, + ACTIONS(9208), 1, sym__alpha_identifier, - [143006] = 13, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(7347), 1, - sym_type_modifiers, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, + ACTIONS(9494), 1, + anon_sym_LBRACK, + STATE(7286), 1, + sym_use_site_target, + STATE(8325), 1, sym_simple_identifier, - STATE(8359), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, sym__simple_user_type, + STATE(8743), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8247), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9102), 8, + ACTIONS(9496), 2, anon_sym_get, anon_sym_set, + STATE(9120), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9210), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + ACTIONS(9396), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147124] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143058] = 13, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(8942), 1, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9282), 1, - anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(901), 1, - sym__simple_user_type, - STATE(7374), 1, - sym_type_modifiers, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, + sym_simple_identifier, + STATE(9624), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(974), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 8, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594435,112 +608535,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [143110] = 13, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(8942), 1, - anon_sym_AT, - ACTIONS(9040), 1, - anon_sym_suspend, - ACTIONS(9252), 1, - anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4562), 1, - sym__simple_user_type, - STATE(7463), 1, - sym_type_modifiers, + [147173] = 5, + ACTIONS(9498), 1, + sym__quest, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4625), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7157), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 8, + ACTIONS(4224), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4222), 11, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143162] = 12, - ACTIONS(9308), 1, - anon_sym_LBRACK, - ACTIONS(9312), 1, + [147208] = 12, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5617), 1, + ACTIONS(9336), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5634), 1, + STATE(8103), 1, + sym_parameter_modifiers, + STATE(9372), 1, sym_simple_identifier, - STATE(5641), 1, - sym__simple_user_type, - STATE(5653), 1, - sym_user_type, - STATE(7268), 1, - sym_use_site_target, + STATE(9730), 1, + sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9310), 2, + STATE(7845), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9063), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7223), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - STATE(5679), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9218), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - ACTIONS(9306), 6, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [147257] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143212] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9624), 1, + STATE(9832), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594548,35 +608639,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147306] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143259] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9638), 1, + STATE(9541), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594584,35 +608676,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147355] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143306] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9505), 1, + STATE(9805), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594620,35 +608713,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147404] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143353] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9460), 1, + STATE(9799), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594656,35 +608750,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147453] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143400] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9489), 1, + STATE(9843), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594692,35 +608787,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147502] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143447] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9801), 1, + STATE(9581), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594728,35 +608824,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147551] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143494] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9484), 1, + STATE(9713), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594764,35 +608861,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147600] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143541] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9893), 1, + STATE(9844), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594800,35 +608898,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147649] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143588] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9771), 1, + STATE(9765), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594836,35 +608935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147698] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143635] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9611), 1, + STATE(9865), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594872,35 +608972,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147747] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143682] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9474), 1, + STATE(9559), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594908,35 +609009,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147796] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143729] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9934), 1, + STATE(9872), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594944,35 +609046,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147845] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143776] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9620), 1, + STATE(9830), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594980,35 +609083,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147894] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143823] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9472), 1, + STATE(9822), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595016,35 +609120,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147943] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143870] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9477), 1, + STATE(9594), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595052,35 +609157,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [147992] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143917] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9795), 1, + STATE(9638), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595088,35 +609194,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148041] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [143964] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9387), 1, + STATE(9758), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595124,35 +609231,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148090] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144011] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9487), 1, + STATE(9610), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595160,35 +609268,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148139] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144058] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9817), 1, + STATE(9889), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595196,35 +609305,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148188] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144105] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9491), 1, + STATE(9605), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595232,35 +609342,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148237] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144152] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9763), 1, + STATE(9988), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595268,35 +609379,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148286] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144199] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9778), 1, + STATE(9927), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595304,35 +609416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148335] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144246] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9766), 1, + STATE(9538), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595340,35 +609453,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148384] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144293] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9550), 1, + STATE(9743), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595376,35 +609490,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148433] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144340] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9601), 1, + STATE(10056), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595412,35 +609527,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148482] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144387] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9500), 1, + STATE(9547), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595448,35 +609564,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148531] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144434] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9658), 1, + STATE(9772), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595484,35 +609601,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148580] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144481] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9513), 1, + STATE(9761), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595520,35 +609638,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148629] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144528] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9770), 1, + STATE(9780), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595556,35 +609675,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148678] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144575] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9908), 1, + STATE(10125), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595592,35 +609712,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148727] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144622] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9463), 1, + STATE(9472), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595628,131 +609749,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148776] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144669] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9507), 1, + STATE(9930), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 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, - [144716] = 5, - ACTIONS(9314), 1, - sym__quest, - STATE(6660), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4280), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4278), 11, - anon_sym_by, - anon_sym_where, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [148825] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144751] = 5, - ACTIONS(9316), 1, - sym__quest, - STATE(6660), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4227), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4225), 11, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [144786] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9518), 1, + STATE(9555), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595760,35 +609823,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148874] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144833] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9418), 1, + STATE(9678), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595796,35 +609860,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148923] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144880] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9941), 1, + STATE(9509), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595832,35 +609897,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [148972] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144927] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9450), 1, + STATE(9967), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595868,35 +609934,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149021] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [144974] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9522), 1, + STATE(9921), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595904,35 +609971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149070] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145021] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9587), 1, + STATE(9970), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595940,35 +610008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149119] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145068] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9662), 1, + STATE(9918), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595976,35 +610045,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149168] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145115] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9613), 1, + STATE(9896), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596012,35 +610082,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149217] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145162] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9822), 1, + STATE(9690), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596048,35 +610119,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149266] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145209] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9530), 1, + STATE(10119), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596084,35 +610156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149315] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145256] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9382), 1, + STATE(9707), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596120,35 +610193,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149364] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145303] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9532), 1, + STATE(9933), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596156,35 +610230,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149413] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145350] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9841), 1, + STATE(10068), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596192,35 +610267,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149462] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145397] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9798), 1, + STATE(9488), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596228,35 +610304,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149511] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145444] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9568), 1, + STATE(9983), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596264,35 +610341,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149560] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145491] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9871), 1, + STATE(9827), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596300,107 +610378,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [145538] = 11, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9162), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8162), 1, - sym_parameter_modifiers, - STATE(9260), 1, - sym_simple_identifier, - STATE(9887), 1, - sym_parameter_with_optional_type, + [149609] = 5, + ACTIONS(9501), 1, + sym__quest, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7156), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 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, - [145585] = 11, - ACTIONS(8531), 1, + ACTIONS(4249), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(9162), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8162), 1, - sym_parameter_modifiers, - STATE(9260), 1, - sym_simple_identifier, - STATE(9468), 1, - sym_parameter_with_optional_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7786), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8907), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7156), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(4247), 11, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145632] = 11, - ACTIONS(8531), 1, + [149644] = 12, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9598), 1, + STATE(9710), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596408,35 +610445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149693] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145679] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9824), 1, + STATE(9762), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596444,35 +610482,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149742] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145726] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9826), 1, + STATE(9908), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596480,35 +610519,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [149791] = 12, + ACTIONS(8672), 1, sym__alpha_identifier, - [145773] = 11, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9162), 1, + ACTIONS(9336), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8162), 1, + STATE(8103), 1, sym_parameter_modifiers, - STATE(9260), 1, + STATE(9372), 1, sym_simple_identifier, - STATE(9684), 1, + STATE(10039), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7156), 3, + STATE(7223), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596516,12 +610556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [145820] = 3, + [149840] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 8, + ACTIONS(5185), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -596530,7 +610569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(4955), 13, + ACTIONS(5183), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -596544,11 +610583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145850] = 3, + [149870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 8, + ACTIONS(5161), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -596557,7 +610596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(4927), 13, + ACTIONS(5159), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -596571,11 +610610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145880] = 3, + [149900] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 8, + ACTIONS(5165), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -596584,7 +610623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(4865), 13, + ACTIONS(5163), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -596598,11 +610637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145910] = 3, + [149930] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 8, + ACTIONS(5181), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -596611,7 +610650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5045), 13, + ACTIONS(5179), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -596625,33 +610664,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145940] = 12, - ACTIONS(107), 1, + [149960] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3142), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(4960), 1, + STATE(4132), 1, sym_function_type, - STATE(9799), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4839), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596659,35 +610701,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150011] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [145987] = 13, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, STATE(907), 1, - sym_user_type, - STATE(920), 1, sym__delegation_specifiers, - STATE(948), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(960), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596695,34 +610738,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150062] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146036] = 12, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(3111), 1, + STATE(3939), 1, sym_function_type, - STATE(9428), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2948), 2, + STATE(2933), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596730,35 +610774,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150111] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [146083] = 13, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4564), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4900), 1, sym__delegation_specifiers, - STATE(5174), 1, + STATE(4951), 1, sym_user_type, - STATE(5241), 1, - sym_function_type, - STATE(5380), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596766,35 +610811,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150162] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146132] = 13, - ACTIONS(9074), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(8361), 1, + STATE(3939), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8367), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(2936), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596802,34 +610847,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150211] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146181] = 12, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(3111), 1, + STATE(3939), 1, sym_function_type, - STATE(9428), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3162), 2, + STATE(2942), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596837,35 +610883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150260] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146228] = 13, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(8201), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(3939), 1, sym_function_type, - STATE(9188), 1, - sym__delegation_specifiers, - STATE(9735), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(2946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596873,35 +610919,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150309] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146277] = 13, - ACTIONS(9074), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(8347), 1, - sym__delegation_specifiers, - STATE(8361), 1, + STATE(3939), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(10062), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(2947), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596909,35 +610955,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150358] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146326] = 13, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(8201), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(3939), 1, sym_function_type, - STATE(8881), 1, + STATE(9798), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2950), 2, sym__delegation_specifiers, - STATE(9735), 1, + sym_delegation_specifier, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150407] = 13, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, + sym_user_type, + STATE(4236), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3605), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596945,35 +611027,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150456] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [146375] = 13, - ACTIONS(9074), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4602), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(8361), 1, + STATE(5324), 1, sym_function_type, - STATE(8363), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(8373), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596981,34 +611064,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150507] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146424] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3111), 1, + STATE(4236), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2957), 2, + STATE(3731), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597016,34 +611100,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150556] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [146471] = 12, - ACTIONS(571), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(4939), 1, sym_user_type, - STATE(3111), 1, + STATE(5021), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(9428), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2958), 2, + STATE(5137), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9236), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150607] = 14, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3801), 1, sym__delegation_specifiers, + STATE(4199), 1, + sym_user_type, + STATE(4236), 1, + sym_function_type, + STATE(4243), 1, sym_delegation_specifier, - STATE(3249), 2, + STATE(9976), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597051,34 +611174,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150658] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [146518] = 12, - ACTIONS(571), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(8345), 1, sym_user_type, - STATE(3111), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9428), 1, + STATE(9069), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2967), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597086,34 +611211,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150709] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [146565] = 12, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(5273), 1, sym_user_type, - STATE(3111), 1, + STATE(5324), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2972), 2, + STATE(4690), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597121,34 +611247,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150758] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [146612] = 12, - ACTIONS(571), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, + sym_user_type, + STATE(5022), 1, + sym__delegation_specifiers, + STATE(5032), 1, + sym_function_type, + STATE(5040), 1, + sym_delegation_specifier, + STATE(9741), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5137), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9236), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150809] = 13, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3111), 1, + STATE(4236), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2982), 2, + STATE(3666), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597156,34 +611320,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150858] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146659] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3111), 1, + STATE(4236), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3001), 2, + STATE(3661), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597191,35 +611356,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150907] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146706] = 13, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4604), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(4199), 1, sym_user_type, - STATE(5241), 1, + STATE(4236), 1, sym_function_type, - STATE(5380), 1, - sym_delegation_specifier, - STATE(9393), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3635), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597227,34 +611392,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [150956] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146755] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3111), 1, + STATE(4236), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3002), 2, + STATE(3801), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597262,34 +611428,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151005] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146802] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3111), 1, + STATE(4236), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3012), 2, + STATE(3608), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597297,34 +611464,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151054] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [146849] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3796), 1, sym_user_type, - STATE(3641), 1, + STATE(3939), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3580), 2, + STATE(2924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597332,35 +611500,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151103] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146896] = 13, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(8201), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8519), 1, - sym__delegation_specifiers, - STATE(8530), 1, + STATE(4236), 1, sym_function_type, - STATE(9735), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3660), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597368,34 +611536,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151152] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146945] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3111), 1, + STATE(4236), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3147), 2, + STATE(3607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597403,34 +611572,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151201] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [146992] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3641), 1, + STATE(4236), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3600), 2, + STATE(3614), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597438,34 +611608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151250] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [147039] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3641), 1, + STATE(4236), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3576), 2, + STATE(3622), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597473,34 +611644,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151299] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [147086] = 12, - ACTIONS(491), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, + sym_user_type, + STATE(5032), 1, + sym_function_type, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5058), 1, + sym__delegation_specifiers, + STATE(9741), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5137), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9236), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151350] = 13, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3641), 1, + STATE(4236), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3575), 2, + STATE(3624), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597508,34 +611717,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151399] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [147133] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(3641), 1, + STATE(4236), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3573), 2, + STATE(3650), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597543,34 +611753,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151448] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [147180] = 12, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(1397), 1, sym_user_type, - STATE(3111), 1, + STATE(1684), 1, sym_function_type, - STATE(9428), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2974), 2, + STATE(894), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597578,34 +611789,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151497] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [147227] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3796), 1, sym_user_type, - STATE(3641), 1, + STATE(3939), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3622), 2, + STATE(3011), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597613,34 +611825,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151546] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [147274] = 12, - ACTIONS(491), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(3144), 1, - sym_simple_identifier, - STATE(3534), 1, + STATE(4939), 1, sym_user_type, - STATE(3641), 1, + STATE(5032), 1, sym_function_type, - STATE(9424), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5061), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3570), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597648,34 +611862,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151597] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [147321] = 12, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(3641), 1, + STATE(1684), 1, sym_function_type, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3569), 2, + STATE(932), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597683,34 +611898,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151646] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [147368] = 12, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3610), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(3148), 1, + STATE(4236), 1, sym_function_type, - STATE(9396), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3021), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597718,34 +611935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151697] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [147415] = 12, - ACTIONS(491), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(3144), 1, - sym_simple_identifier, - STATE(3534), 1, + STATE(4939), 1, sym_user_type, - STATE(3641), 1, + STATE(5032), 1, sym_function_type, - STATE(9424), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5060), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3568), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597753,34 +611972,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151748] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [147462] = 12, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(4951), 1, sym_user_type, - STATE(3641), 1, + STATE(4955), 1, + sym__delegation_specifiers, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3567), 2, - sym__delegation_specifiers, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151799] = 14, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, + sym_user_type, + STATE(8418), 1, sym_delegation_specifier, - STATE(3858), 2, + STATE(8422), 1, + sym_function_type, + STATE(8445), 1, + sym__delegation_specifiers, + STATE(10143), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597788,34 +612046,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151850] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [147509] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3796), 1, sym_user_type, - STATE(3641), 1, + STATE(3939), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3588), 2, + STATE(2917), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597823,35 +612082,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151899] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [147556] = 13, - ACTIONS(197), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4547), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(5241), 1, + STATE(5019), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(5380), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597859,34 +612119,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [151950] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [147605] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3608), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(3641), 1, + STATE(4236), 1, sym_function_type, - STATE(9424), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3566), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597894,35 +612156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152001] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [147652] = 13, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4557), 1, + STATE(3731), 1, sym__delegation_specifiers, - STATE(5174), 1, + STATE(4199), 1, sym_user_type, - STATE(5241), 1, + STATE(4236), 1, sym_function_type, - STATE(5380), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597930,34 +612193,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152052] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [147701] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3796), 1, sym_user_type, - STATE(3641), 1, + STATE(3939), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3565), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597965,34 +612229,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152101] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [147748] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(3148), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3027), 2, + STATE(2902), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598000,34 +612265,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152150] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [147795] = 12, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(4690), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(3148), 1, + STATE(5324), 1, sym_function_type, - STATE(9396), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3023), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598035,34 +612302,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152201] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [147842] = 12, - ACTIONS(329), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(8345), 1, sym_user_type, - STATE(3148), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9396), 1, + STATE(9088), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3019), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598070,35 +612339,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152252] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [147889] = 13, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(1397), 1, sym_user_type, - STATE(3020), 1, - sym__delegation_specifiers, - STATE(3148), 1, + STATE(1684), 1, sym_function_type, - STATE(3571), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(868), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598106,34 +612375,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152301] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [147938] = 12, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(1397), 1, sym_user_type, - STATE(3641), 1, + STATE(1684), 1, sym_function_type, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3564), 2, + STATE(871), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598141,35 +612411,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152350] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [147985] = 13, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(4939), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(5032), 1, sym_function_type, - STATE(9108), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5048), 1, sym__delegation_specifiers, - STATE(9735), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598177,34 +612448,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152401] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [148034] = 12, - ACTIONS(329), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(3148), 1, + STATE(5032), 1, sym_function_type, - STATE(9396), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5044), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3005), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598212,34 +612485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152452] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [148081] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(948), 1, + STATE(4952), 1, + sym__delegation_specifiers, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(916), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598247,34 +612522,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152503] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148128] = 12, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(1397), 1, sym_user_type, - STATE(3148), 1, + STATE(1684), 1, sym_function_type, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3004), 2, + STATE(924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598282,34 +612558,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152552] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148175] = 12, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(1397), 1, sym_user_type, - STATE(5241), 1, + STATE(1684), 1, sym_function_type, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4564), 2, + STATE(930), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598317,35 +612594,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152601] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148222] = 13, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(1397), 1, sym_user_type, - STATE(8482), 1, - sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(1684), 1, sym_function_type, - STATE(9735), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598353,35 +612630,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152650] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [148271] = 13, - ACTIONS(197), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4603), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(5241), 1, + STATE(5032), 1, sym_function_type, - STATE(5380), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(5297), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598389,34 +612667,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152701] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148320] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(1397), 1, sym_user_type, - STATE(948), 1, + STATE(1684), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(955), 2, + STATE(919), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598424,34 +612703,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152750] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [148367] = 12, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(3660), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(948), 1, + STATE(4236), 1, sym_function_type, - STATE(9526), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(920), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1197), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598459,34 +612740,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152801] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [148414] = 12, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(948), 1, + STATE(3939), 1, sym_function_type, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(944), 2, + STATE(3028), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598494,34 +612776,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152850] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148461] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(1397), 1, sym_user_type, - STATE(948), 1, + STATE(1684), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(939), 2, + STATE(908), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598529,34 +612812,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152899] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148508] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(1397), 1, sym_user_type, - STATE(948), 1, + STATE(1684), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(984), 2, + STATE(907), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598564,35 +612848,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152948] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148555] = 13, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2942), 1, - sym__delegation_specifiers, - STATE(3008), 1, + STATE(1397), 1, sym_user_type, - STATE(3148), 1, + STATE(1684), 1, sym_function_type, - STATE(3571), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(886), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598600,35 +612884,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [152997] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [148604] = 13, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4545), 1, + STATE(3607), 1, sym__delegation_specifiers, - STATE(5174), 1, + STATE(4199), 1, sym_user_type, - STATE(5241), 1, + STATE(4236), 1, sym_function_type, - STATE(5380), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598636,34 +612921,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153048] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [148653] = 12, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(3796), 1, sym_user_type, - STATE(948), 1, + STATE(3939), 1, sym_function_type, - STATE(9526), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(930), 2, + STATE(2898), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598671,35 +612957,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153097] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148700] = 13, - ACTIONS(9074), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(1397), 1, sym_user_type, - STATE(8361), 1, + STATE(1684), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8782), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(869), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598707,35 +612993,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153146] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148749] = 13, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4549), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(1397), 1, sym_user_type, - STATE(5241), 1, + STATE(1684), 1, sym_function_type, - STATE(5380), 1, - sym_delegation_specifier, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(910), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598743,34 +613029,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153195] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [148798] = 12, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(4049), 1, sym_user_type, - STATE(948), 1, + STATE(4132), 1, sym_function_type, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(926), 2, + STATE(3096), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598778,34 +613065,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153244] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [148845] = 12, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(3605), 1, + sym__delegation_specifiers, + STATE(3609), 1, sym_user_type, - STATE(948), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9526), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(902), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1197), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598813,34 +613102,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153295] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [148892] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(1397), 1, sym_user_type, - STATE(948), 1, + STATE(1684), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(925), 2, + STATE(915), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598848,34 +613138,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153344] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [148939] = 12, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(4049), 1, sym_user_type, - STATE(948), 1, + STATE(4132), 1, sym_function_type, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(893), 2, + STATE(3081), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598883,35 +613174,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153393] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [148986] = 13, - ACTIONS(107), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(4621), 1, - sym_simple_identifier, - STATE(4839), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(4939), 1, sym_user_type, - STATE(5495), 1, + STATE(5026), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(5500), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9799), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598919,35 +613211,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153444] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [149035] = 13, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4876), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3614), 1, sym__delegation_specifiers, - STATE(5382), 1, + STATE(4199), 1, sym_user_type, - STATE(5495), 1, + STATE(4236), 1, sym_function_type, - STATE(5500), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598955,35 +613248,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153495] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149084] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4894), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5495), 1, + STATE(4132), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3078), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598991,35 +613284,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153544] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [149133] = 13, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4556), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(5241), 1, - sym_function_type, - STATE(5380), 1, + STATE(5020), 1, + sym__delegation_specifiers, + STATE(5025), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599027,35 +613321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153595] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149182] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4850), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5495), 1, + STATE(4132), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3068), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599063,35 +613357,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153644] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149231] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4841), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5495), 1, + STATE(4132), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3139), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599099,35 +613393,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153693] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [149280] = 13, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4840), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(4199), 1, sym_user_type, - STATE(5495), 1, + STATE(4236), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3610), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599135,35 +613429,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153742] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [149329] = 13, - ACTIONS(197), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(4559), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, sym_user_type, - STATE(5241), 1, + STATE(5002), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(5380), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599171,35 +613466,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153793] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [149378] = 13, - ACTIONS(107), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4548), 1, sym__simple_user_type, - STATE(4621), 1, - sym_simple_identifier, - STATE(4871), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(4939), 1, sym_user_type, - STATE(5495), 1, + STATE(5000), 1, + sym__delegation_specifiers, + STATE(5032), 1, sym_function_type, - STATE(5500), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(9799), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599207,35 +613503,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153844] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149427] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4878), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5495), 1, + STATE(4132), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3142), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599243,35 +613539,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153893] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [149476] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4977), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(5495), 1, + STATE(5324), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4601), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599279,35 +613575,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153942] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [149525] = 13, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4887), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5495), 1, - sym_function_type, - STATE(5500), 1, + STATE(3731), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(9799), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599315,35 +613612,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [153993] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149574] = 13, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8529), 1, - sym__delegation_specifiers, - STATE(8530), 1, + STATE(4132), 1, sym_function_type, - STATE(9735), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3202), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599351,35 +613648,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154042] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149623] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4902), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5495), 1, + STATE(4132), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3208), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599387,35 +613684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154091] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [149672] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4846), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(5495), 1, + STATE(5324), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4600), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599423,35 +613720,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154140] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [149721] = 13, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4574), 1, + STATE(3622), 1, sym__delegation_specifiers, - STATE(5174), 1, + STATE(4199), 1, sym_user_type, - STATE(5241), 1, + STATE(4236), 1, sym_function_type, - STATE(5380), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599459,35 +613757,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154191] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149770] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4922), 1, - sym__delegation_specifiers, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(5495), 1, + STATE(4132), 1, sym_function_type, - STATE(5500), 1, - sym_delegation_specifier, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3341), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599495,35 +613793,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154240] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [149819] = 13, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4861), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3624), 1, sym__delegation_specifiers, - STATE(5382), 1, + STATE(4199), 1, sym_user_type, - STATE(5495), 1, + STATE(4236), 1, sym_function_type, - STATE(5500), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599531,34 +613830,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154291] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [149868] = 12, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(4049), 1, sym_user_type, - STATE(948), 1, + STATE(4132), 1, sym_function_type, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(923), 2, + STATE(3253), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599566,35 +613866,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154340] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [149915] = 13, - ACTIONS(197), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4544), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(8345), 1, sym_user_type, - STATE(5241), 1, - sym_function_type, - STATE(5380), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(8422), 1, + sym_function_type, + STATE(8810), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599602,35 +613903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154391] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [149964] = 13, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4548), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(5273), 1, sym_user_type, - STATE(5241), 1, + STATE(5324), 1, sym_function_type, - STATE(5380), 1, - sym_delegation_specifier, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(4681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599638,35 +613939,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154440] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [150013] = 13, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(4049), 1, sym_user_type, - STATE(8494), 1, - sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(4132), 1, sym_function_type, - STATE(9735), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3125), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599674,34 +613975,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154489] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [150062] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(3111), 1, + STATE(3666), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9428), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2950), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599709,34 +614012,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154540] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [150109] = 12, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(4049), 1, sym_user_type, - STATE(948), 1, + STATE(4132), 1, sym_function_type, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(913), 2, + STATE(3117), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599744,35 +614048,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154589] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [150156] = 13, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(4939), 1, sym_user_type, - STATE(8491), 1, - sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(5032), 1, sym_function_type, - STATE(9735), 1, + STATE(5040), 1, + sym_delegation_specifier, + STATE(5291), 1, + sym__delegation_specifiers, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599780,35 +614085,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154640] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [150205] = 13, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(8345), 1, sym_user_type, - STATE(8516), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(8530), 1, + STATE(8422), 1, sym_function_type, - STATE(9027), 1, + STATE(8451), 1, sym__delegation_specifiers, - STATE(9735), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599816,35 +614122,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154691] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [150254] = 13, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3008), 1, - sym_user_type, - STATE(3118), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4944), 1, sym__delegation_specifiers, - STATE(3148), 1, - sym_function_type, - STATE(3571), 1, + STATE(4951), 1, + sym_user_type, + STATE(5025), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599852,35 +614159,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154742] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [150303] = 13, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4558), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(3609), 1, sym_user_type, - STATE(5241), 1, - sym_function_type, - STATE(5380), 1, + STATE(3661), 1, + sym__delegation_specifiers, + STATE(3754), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599888,35 +614196,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154793] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [150352] = 13, - ACTIONS(9074), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(8345), 1, sym_user_type, - STATE(8361), 1, - sym_function_type, - STATE(8363), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(8636), 1, + STATE(8422), 1, + sym_function_type, + STATE(9073), 1, sym__delegation_specifiers, - STATE(10062), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599924,34 +614233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154844] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [150401] = 12, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(3650), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(948), 1, + STATE(4236), 1, sym_function_type, - STATE(9526), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(896), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1197), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599959,34 +614270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154895] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [150448] = 12, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(4907), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(4207), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3569), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599994,34 +614307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154946] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [150495] = 12, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(5273), 1, sym_user_type, - STATE(3148), 1, + STATE(5324), 1, sym_function_type, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2985), 2, + STATE(4589), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600029,35 +614343,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [154995] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [150542] = 13, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(8345), 1, sym_user_type, - STATE(8436), 1, - sym__delegation_specifiers, - STATE(8516), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(8530), 1, + STATE(8422), 1, sym_function_type, - STATE(9735), 1, + STATE(8457), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600065,35 +614380,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155046] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [150591] = 13, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4565), 1, - sym__delegation_specifiers, - STATE(5174), 1, + STATE(4049), 1, sym_user_type, - STATE(5241), 1, + STATE(4132), 1, sym_function_type, - STATE(5380), 1, - sym_delegation_specifier, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3312), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600101,35 +614416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155095] = 14, + ACTIONS(9232), 1, sym__alpha_identifier, - [150640] = 13, - ACTIONS(9074), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4939), 1, sym_user_type, - STATE(8356), 1, + STATE(4977), 1, sym__delegation_specifiers, - STATE(8361), 1, + STATE(5032), 1, sym_function_type, - STATE(8363), 1, + STATE(5040), 1, sym_delegation_specifier, - STATE(10062), 1, + STATE(9741), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(5137), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600137,35 +614453,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155146] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [150689] = 13, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(8394), 1, sym_user_type, - STATE(8361), 1, - sym_function_type, - STATE(8363), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(8369), 1, + STATE(8625), 1, + sym_function_type, + STATE(9219), 1, sym__delegation_specifiers, - STATE(10062), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600173,35 +614490,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155197] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [150738] = 13, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2966), 1, - sym__delegation_specifiers, - STATE(3008), 1, + STATE(4049), 1, sym_user_type, - STATE(3148), 1, + STATE(4132), 1, sym_function_type, - STATE(3571), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3070), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600209,35 +614526,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155246] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [150787] = 13, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(8345), 1, sym_user_type, - STATE(8516), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(8530), 1, + STATE(8422), 1, sym_function_type, - STATE(9369), 1, + STATE(8738), 1, sym__delegation_specifiers, - STATE(9735), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600245,35 +614563,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155297] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [150836] = 13, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8297), 1, - sym_user_type, - STATE(8400), 1, + STATE(915), 1, sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9735), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600281,35 +614600,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155348] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [150885] = 13, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8297), 1, - sym_user_type, - STATE(8412), 1, + STATE(910), 1, sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9735), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600317,35 +614637,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155399] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [150934] = 13, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8297), 1, - sym_user_type, - STATE(8408), 1, + STATE(869), 1, sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9735), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600353,35 +614674,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155450] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [150983] = 13, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8297), 1, - sym_user_type, - STATE(8403), 1, + STATE(886), 1, sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9735), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600389,35 +614711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155501] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [151032] = 13, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(8201), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(8413), 1, + STATE(3635), 1, sym__delegation_specifiers, - STATE(8516), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(8530), 1, + STATE(3825), 1, sym_function_type, - STATE(9735), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600425,35 +614748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155552] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [151081] = 13, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3129), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3801), 1, sym__delegation_specifiers, - STATE(3148), 1, + STATE(3825), 1, sym_function_type, - STATE(3571), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600461,34 +614785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155603] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [151130] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(4928), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(5495), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4861), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600496,34 +614822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155654] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [151177] = 12, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(3796), 1, sym_user_type, - STATE(5495), 1, + STATE(3939), 1, sym_function_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4922), 2, + STATE(2925), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600531,34 +614858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155703] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [151224] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(908), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(5495), 1, + STATE(1684), 1, sym_function_type, - STATE(9799), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4846), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600566,35 +614895,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155754] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [151271] = 13, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(8345), 1, sym_user_type, - STATE(8516), 1, + STATE(8416), 1, + sym__delegation_specifiers, + STATE(8418), 1, sym_delegation_specifier, - STATE(8530), 1, + STATE(8422), 1, sym_function_type, - STATE(9135), 1, - sym__delegation_specifiers, - STATE(9735), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600602,34 +614932,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155805] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [151320] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(4896), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(5495), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4902), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600637,35 +614969,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155856] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [151367] = 13, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3013), 1, + STATE(3610), 1, sym__delegation_specifiers, - STATE(3148), 1, - sym_function_type, - STATE(3571), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600673,35 +615006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155907] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [151416] = 13, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2981), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4894), 1, sym__delegation_specifiers, - STATE(3008), 1, + STATE(4951), 1, sym_user_type, - STATE(3148), 1, - sym_function_type, - STATE(3571), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600709,35 +615043,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [155958] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [151465] = 13, - ACTIONS(107), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(4839), 1, - sym__delegation_specifiers, - STATE(4907), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(4960), 1, + STATE(8422), 1, sym_function_type, - STATE(9799), 1, + STATE(8428), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600745,34 +615080,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156009] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [151514] = 12, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3608), 1, + sym__delegation_specifiers, + STATE(3609), 1, sym_user_type, - STATE(4960), 1, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4861), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600780,34 +615117,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156060] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [151561] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(919), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(4960), 1, + STATE(1684), 1, sym_function_type, - STATE(9799), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4922), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600815,34 +615154,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156111] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [151608] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(920), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(5495), 1, + STATE(1684), 1, sym_function_type, - STATE(9799), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4887), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600850,35 +615191,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156162] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [151655] = 13, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2985), 1, + STATE(4597), 1, sym__delegation_specifiers, - STATE(3008), 1, + STATE(5273), 1, sym_user_type, - STATE(3148), 1, + STATE(5324), 1, sym_function_type, - STATE(3571), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600886,34 +615228,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156213] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [151704] = 12, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4960), 1, + STATE(3660), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4846), 2, + STATE(3888), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156264] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4923), 1, sym__delegation_specifiers, + STATE(4951), 1, + sym_user_type, + STATE(5025), 1, sym_delegation_specifier, - STATE(5133), 2, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600921,34 +615302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156315] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [151751] = 12, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4960), 1, + STATE(5324), 1, sym_function_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4902), 2, + STATE(4590), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600956,35 +615338,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156364] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [151798] = 13, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3004), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4922), 1, sym__delegation_specifiers, - STATE(3008), 1, + STATE(4951), 1, sym_user_type, - STATE(3148), 1, - sym_function_type, - STATE(3571), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(5041), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600992,35 +615375,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156415] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [151847] = 13, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3005), 1, + STATE(3607), 1, sym__delegation_specifiers, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3148), 1, - sym_function_type, - STATE(3571), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601028,34 +615412,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156466] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [151896] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4960), 1, + STATE(929), 1, sym_function_type, - STATE(9799), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4887), 2, + STATE(915), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601063,34 +615448,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156515] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [151943] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(930), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(4960), 1, + STATE(1684), 1, sym_function_type, - STATE(9799), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4977), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601098,34 +615485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156566] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [151990] = 12, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(924), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(5241), 1, + STATE(1684), 1, sym_function_type, - STATE(9393), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4604), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601133,34 +615522,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156617] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152037] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4960), 1, + STATE(929), 1, sym_function_type, - STATE(9799), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4878), 2, + STATE(910), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601168,34 +615558,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156666] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [152084] = 12, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4960), 1, + STATE(3614), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4871), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601203,35 +615595,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156717] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [152131] = 13, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, - sym_user_type, - STATE(3019), 1, + STATE(4589), 1, sym__delegation_specifiers, - STATE(3148), 1, + STATE(5273), 1, + sym_user_type, + STATE(5324), 1, sym_function_type, - STATE(3571), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601239,34 +615632,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156768] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [152180] = 12, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5495), 1, + STATE(3622), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4977), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601274,35 +615669,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156819] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [152227] = 13, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3023), 1, + STATE(3624), 1, sym__delegation_specifiers, - STATE(3148), 1, - sym_function_type, - STATE(3571), 1, + STATE(3754), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(3825), 1, + sym_function_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601310,34 +615706,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156870] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [152276] = 12, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4601), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(4960), 1, + STATE(5324), 1, sym_function_type, - STATE(9799), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4840), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601345,34 +615743,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156921] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152323] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4960), 1, + STATE(929), 1, sym_function_type, - STATE(9799), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4841), 2, + STATE(869), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601380,35 +615779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [156970] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152370] = 13, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(925), 1, sym_user_type, - STATE(3027), 1, - sym__delegation_specifiers, - STATE(3148), 1, + STATE(929), 1, sym_function_type, - STATE(3571), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(886), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601416,34 +615815,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157019] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152419] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4960), 1, + STATE(929), 1, sym_function_type, - STATE(9799), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4850), 2, + STATE(907), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601451,35 +615851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157068] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152466] = 13, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(925), 1, sym_user_type, - STATE(3021), 1, - sym__delegation_specifiers, - STATE(3148), 1, + STATE(929), 1, sym_function_type, - STATE(3571), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(908), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601487,34 +615887,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157117] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [152515] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(871), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(5495), 1, + STATE(1684), 1, sym_function_type, - STATE(9799), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4878), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601522,35 +615924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157168] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152562] = 13, - ACTIONS(9074), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(925), 1, sym_user_type, - STATE(8361), 1, + STATE(929), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8774), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(919), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601558,34 +615960,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157217] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [152611] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4951), 1, sym_user_type, - STATE(4960), 1, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4894), 2, + STATE(4958), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601593,34 +615996,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157266] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [152658] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4951), 1, sym_user_type, - STATE(4960), 1, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4876), 2, + STATE(5062), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601628,35 +616032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157315] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [152705] = 13, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, - sym_user_type, - STATE(4876), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(868), 1, sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, sym_function_type, - STATE(9799), 1, + STATE(1868), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601664,34 +616069,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157366] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [152754] = 12, - ACTIONS(107), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5495), 1, + STATE(3650), 1, + sym__delegation_specifiers, + STATE(3754), 1, + sym_delegation_specifier, + STATE(3825), 1, sym_function_type, - STATE(9799), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4840), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5133), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601699,35 +616106,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157417] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [152801] = 13, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4951), 1, sym_user_type, - STATE(4894), 1, - sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4894), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601735,34 +616142,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157466] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [152850] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(4951), 1, sym_user_type, - STATE(5495), 1, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4841), 2, + STATE(4896), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601770,34 +616178,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157515] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152897] = 12, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(925), 1, sym_user_type, - STATE(4095), 1, + STATE(929), 1, sym_function_type, - STATE(9428), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3002), 2, + STATE(920), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601805,34 +616214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157564] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [152944] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(896), 2, + STATE(930), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601840,34 +616250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157613] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [152991] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(1528), 1, + STATE(5041), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(913), 2, + STATE(4900), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601875,34 +616286,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157662] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153038] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(1528), 1, + STATE(5041), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(923), 2, + STATE(5020), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601910,34 +616322,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157711] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [153085] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(893), 2, + STATE(924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601945,34 +616358,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157760] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153132] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(1528), 1, + STATE(5041), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(925), 2, + STATE(4955), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601980,34 +616394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157809] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153179] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(1528), 1, + STATE(5041), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(902), 2, + STATE(4952), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602015,34 +616430,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157858] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [153226] = 12, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(5495), 1, + STATE(929), 1, sym_function_type, - STATE(9799), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4850), 2, + STATE(871), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602050,34 +616466,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157907] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [153273] = 12, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(3605), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(1528), 1, + STATE(4236), 1, sym_function_type, - STATE(9526), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(926), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1197), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602085,34 +616503,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [157958] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [153320] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(930), 2, + STATE(868), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602120,34 +616539,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158007] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153367] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(4951), 1, sym_user_type, - STATE(5495), 1, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4894), 2, + STATE(4944), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602155,35 +616575,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158056] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153414] = 13, - ACTIONS(9074), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(8361), 1, + STATE(5041), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8381), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(4907), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602191,34 +616611,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158105] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [153463] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(984), 2, + STATE(932), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602226,34 +616647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158154] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153510] = 12, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(4951), 1, sym_user_type, - STATE(5495), 1, + STATE(5041), 1, sym_function_type, - STATE(9799), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4876), 2, + STATE(4928), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602261,34 +616683,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158203] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [153557] = 12, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(939), 2, + STATE(894), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602296,34 +616719,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158252] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153604] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(1528), 1, + STATE(5557), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(944), 2, + STATE(4911), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602331,35 +616755,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158301] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [153651] = 13, - ACTIONS(9082), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5210), 1, - sym__delegation_specifiers, - STATE(5215), 1, + STATE(3825), 1, sym_function_type, - STATE(9452), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3650), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602367,34 +616791,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158350] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153700] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(1528), 1, + STATE(5041), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(920), 2, + STATE(4923), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602402,35 +616827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158399] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153747] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(4951), 1, sym_user_type, - STATE(3580), 1, - sym__delegation_specifiers, - STATE(3641), 1, + STATE(5041), 1, sym_function_type, - STATE(3730), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4922), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602438,34 +616863,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158448] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153796] = 12, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(3148), 1, + STATE(5557), 1, sym_function_type, - STATE(9396), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2981), 2, + STATE(4922), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602473,35 +616899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158497] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153843] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3580), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(5500), 1, sym_user_type, - STATE(4207), 1, + STATE(5557), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4923), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602509,35 +616935,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158546] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [153892] = 13, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(2974), 1, - sym__delegation_specifiers, - STATE(3970), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(5041), 1, sym_function_type, - STATE(9428), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4911), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602545,34 +616971,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158595] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [153941] = 12, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3148), 1, + STATE(3825), 1, sym_function_type, - STATE(9396), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3129), 2, + STATE(3624), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602580,35 +617007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158644] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [153988] = 13, - ACTIONS(9074), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(932), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(8361), 1, + STATE(1684), 1, sym_function_type, - STATE(8363), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(8754), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602616,35 +617044,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158695] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154037] = 13, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3600), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4207), 1, + STATE(3825), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3622), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602652,34 +617080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158744] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154086] = 12, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3148), 1, + STATE(3825), 1, sym_function_type, - STATE(9396), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2966), 2, + STATE(3614), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602687,34 +617116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158793] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [154133] = 12, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(1528), 1, + STATE(5557), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(955), 2, + STATE(4928), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602722,35 +617152,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158842] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [154180] = 13, - ACTIONS(9074), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(824), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(825), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(894), 1, + sym__delegation_specifiers, + STATE(1397), 1, sym_user_type, - STATE(8361), 1, + STATE(1684), 1, sym_function_type, - STATE(8363), 1, + STATE(1868), 1, sym_delegation_specifier, - STATE(8699), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602758,34 +617189,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158893] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154229] = 12, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3148), 1, + STATE(3825), 1, sym_function_type, - STATE(9396), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2942), 2, + STATE(3607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602793,35 +617225,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158942] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [154276] = 13, - ACTIONS(9074), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(8361), 1, - sym_function_type, - STATE(8363), 1, + STATE(5025), 1, sym_delegation_specifier, - STATE(8751), 1, + STATE(5041), 1, + sym_function_type, + STATE(5062), 1, sym__delegation_specifiers, - STATE(10062), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602829,35 +617262,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [158993] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [154325] = 13, - ACTIONS(9074), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(8361), 1, - sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8390), 1, + STATE(2924), 1, sym__delegation_specifiers, - STATE(10062), 1, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602865,34 +617299,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159044] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [154374] = 12, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(5495), 1, + STATE(5324), 1, sym_function_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4839), 2, + STATE(4592), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602900,34 +617335,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159093] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154421] = 12, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(832), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(1404), 1, + STATE(3609), 1, sym_user_type, - STATE(1528), 1, + STATE(3825), 1, sym_function_type, - STATE(9526), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(916), 2, + STATE(3660), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1197), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602935,35 +617371,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159142] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [154468] = 13, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3576), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4207), 1, + STATE(5324), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4617), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602971,34 +617407,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159191] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [154517] = 12, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, + STATE(5273), 1, sym_user_type, - STATE(3148), 1, + STATE(5324), 1, sym_function_type, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3020), 2, + STATE(4581), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603006,35 +617443,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159240] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154564] = 13, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3575), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4207), 1, + STATE(3825), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3608), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603042,34 +617479,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159289] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154613] = 12, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(3609), 1, sym_user_type, - STATE(3148), 1, + STATE(3825), 1, sym_function_type, - STATE(9396), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3118), 2, + STATE(3610), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3328), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603077,34 +617515,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159338] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154660] = 12, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(3609), 1, sym_user_type, - STATE(5241), 1, + STATE(3825), 1, sym_function_type, - STATE(9393), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4556), 2, + STATE(3801), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603112,34 +617551,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159387] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [154707] = 12, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3008), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4911), 1, + sym__delegation_specifiers, + STATE(4951), 1, sym_user_type, - STATE(3148), 1, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9396), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3013), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603147,34 +617588,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159438] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [154754] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, + STATE(2950), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3564), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603182,35 +617625,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159489] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [154801] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(896), 1, - sym__delegation_specifiers, - STATE(907), 1, + STATE(3069), 1, sym_user_type, - STATE(948), 1, + STATE(3070), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(960), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603218,35 +617662,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159540] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [154850] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3573), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(5500), 1, sym_user_type, - STATE(4207), 1, + STATE(5557), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4907), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603254,35 +617698,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159589] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [154899] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3622), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(5500), 1, sym_user_type, - STATE(4207), 1, + STATE(5557), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4944), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603290,35 +617734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159638] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [154948] = 13, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(5273), 1, sym_user_type, - STATE(913), 1, - sym__delegation_specifiers, - STATE(948), 1, + STATE(5324), 1, sym_function_type, - STATE(960), 1, - sym_delegation_specifier, - STATE(9526), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4615), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603326,35 +617770,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159687] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [154997] = 13, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(3600), 1, - sym__delegation_specifiers, - STATE(3641), 1, + STATE(3825), 1, sym_function_type, - STATE(3730), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3635), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603362,35 +617806,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159736] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [155046] = 13, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3570), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, - sym_function_type, - STATE(4227), 1, + STATE(2947), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603398,35 +617843,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159787] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [155095] = 13, - ACTIONS(491), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(3569), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(4207), 1, - sym_function_type, - STATE(4227), 1, + STATE(8409), 1, + sym__delegation_specifiers, + STATE(8418), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603434,35 +617880,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159838] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [155144] = 13, - ACTIONS(9082), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5004), 1, - sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5201), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3070), 1, sym__delegation_specifiers, - STATE(5215), 1, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, sym_function_type, - STATE(9452), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603470,35 +617917,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159889] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [155193] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3568), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(5500), 1, sym_user_type, - STATE(4207), 1, + STATE(5557), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4952), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603506,35 +617953,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159938] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [155242] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3567), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(5500), 1, sym_user_type, - STATE(4207), 1, + STATE(5557), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4955), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603542,35 +617989,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [159987] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [155291] = 13, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3588), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, - sym_function_type, - STATE(4227), 1, + STATE(2946), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603578,35 +618026,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160038] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [155340] = 13, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3566), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4600), 1, sym__delegation_specifiers, - STATE(4166), 1, + STATE(5273), 1, sym_user_type, - STATE(4207), 1, + STATE(5324), 1, sym_function_type, - STATE(4227), 1, + STATE(5524), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603614,35 +618063,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160089] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [155389] = 13, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3565), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(4207), 1, + STATE(5324), 1, sym_function_type, - STATE(4227), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4583), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603650,35 +618099,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160138] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [155438] = 13, - ACTIONS(9082), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3635), 1, + sym__delegation_specifiers, + STATE(4199), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5215), 1, + STATE(4236), 1, sym_function_type, - STATE(5223), 1, - sym__delegation_specifiers, - STATE(9452), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603686,35 +618136,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160189] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [155487] = 13, - ACTIONS(9082), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5215), 1, - sym_function_type, - STATE(5220), 1, + STATE(3312), 1, sym__delegation_specifiers, - STATE(9452), 1, + STATE(3363), 1, + sym_function_type, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603722,35 +618173,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160240] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [155536] = 13, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3564), 1, - sym__delegation_specifiers, - STATE(4166), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(4207), 1, + STATE(3117), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(4227), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603758,35 +618210,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160291] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [155585] = 13, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(4681), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(5324), 1, sym_function_type, - STATE(8845), 1, - sym__delegation_specifiers, - STATE(9735), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603794,35 +618247,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160342] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [155634] = 13, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3013), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(8394), 1, sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(4155), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(8625), 1, + sym_function_type, + STATE(9452), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603830,35 +618284,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160393] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [155683] = 13, - ACTIONS(411), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(818), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(8345), 1, sym_user_type, - STATE(923), 1, - sym__delegation_specifiers, - STATE(948), 1, - sym_function_type, - STATE(960), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(8422), 1, + sym_function_type, + STATE(8700), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603866,34 +618321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160444] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [155732] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4207), 1, + STATE(3825), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3565), 2, + STATE(3661), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603901,35 +618357,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160493] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [155779] = 13, - ACTIONS(9082), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5197), 1, - sym__delegation_specifiers, - STATE(5215), 1, + STATE(5557), 1, sym_function_type, - STATE(9452), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(5020), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603937,35 +618393,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160542] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [155828] = 13, - ACTIONS(9082), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5200), 1, + STATE(3125), 1, sym__delegation_specifiers, - STATE(5215), 1, + STATE(3363), 1, sym_function_type, - STATE(9452), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603973,34 +618430,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160593] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [155877] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4207), 1, + STATE(3825), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3566), 2, + STATE(3666), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604008,35 +618466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160642] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [155924] = 13, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(893), 1, - sym__delegation_specifiers, - STATE(907), 1, + STATE(5273), 1, sym_user_type, - STATE(948), 1, + STATE(5324), 1, sym_function_type, - STATE(960), 1, - sym_delegation_specifier, - STATE(9526), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4606), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604044,35 +618502,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160691] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [155973] = 13, - ACTIONS(9082), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5191), 1, - sym__delegation_specifiers, - STATE(5215), 1, + STATE(5557), 1, sym_function_type, - STATE(9452), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(4900), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604080,35 +618538,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160740] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [156022] = 13, - ACTIONS(9082), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(5004), 1, - sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5189), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3666), 1, sym__delegation_specifiers, - STATE(5215), 1, + STATE(4199), 1, + sym_user_type, + STATE(4236), 1, sym_function_type, - STATE(9452), 1, + STATE(4243), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604116,34 +618575,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160791] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [156071] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4207), 1, + STATE(3825), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3588), 2, + STATE(3731), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604151,34 +618611,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160840] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [156118] = 12, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4951), 1, sym_user_type, - STATE(5241), 1, + STATE(4958), 1, + sym__delegation_specifiers, + STATE(5025), 1, + sym_delegation_specifier, + STATE(5041), 1, sym_function_type, - STATE(9393), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4558), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604186,35 +618648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160891] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [156165] = 13, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3118), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(4155), 1, + STATE(2942), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604222,35 +618685,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160942] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [156214] = 13, - ACTIONS(9082), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(5188), 1, + STATE(2936), 1, + sym__delegation_specifiers, + STATE(2981), 1, sym_delegation_specifier, - STATE(5215), 1, + STATE(3042), 1, sym_function_type, - STATE(5308), 1, - sym__delegation_specifiers, - STATE(9452), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604258,35 +618722,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [160993] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [156263] = 13, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(925), 1, + STATE(2933), 1, sym__delegation_specifiers, - STATE(948), 1, - sym_function_type, - STATE(960), 1, + STATE(2981), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604294,35 +618759,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161044] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [156312] = 13, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(902), 1, - sym__delegation_specifiers, - STATE(907), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(948), 1, + STATE(5557), 1, sym_function_type, - STATE(960), 1, - sym_delegation_specifier, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4896), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604330,35 +618795,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161093] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [156361] = 13, - ACTIONS(9082), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(5175), 1, + STATE(3253), 1, sym__delegation_specifiers, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5215), 1, + STATE(3363), 1, sym_function_type, - STATE(9452), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604366,34 +618832,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161144] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [156410] = 12, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4207), 1, + STATE(3825), 1, sym_function_type, - STATE(9424), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3567), 2, + STATE(3605), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604401,34 +618868,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161193] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [156457] = 12, - ACTIONS(197), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(5241), 1, + STATE(3042), 1, sym_function_type, - STATE(9393), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4548), 2, + STATE(2950), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604436,34 +618904,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161242] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [156504] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(4590), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(5241), 1, + STATE(5324), 1, sym_function_type, - STATE(9393), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4544), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604471,35 +618941,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161293] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [156551] = 13, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3020), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(4099), 1, + STATE(5557), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(4894), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604507,35 +618977,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161342] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [156600] = 13, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(926), 1, - sym__delegation_specifiers, - STATE(948), 1, + STATE(5557), 1, sym_function_type, - STATE(960), 1, - sym_delegation_specifier, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(5062), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604543,35 +619013,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161391] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [156649] = 13, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2942), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(5500), 1, sym_user_type, - STATE(4099), 1, + STATE(5557), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(4958), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604579,35 +619049,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161440] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [156698] = 13, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(2900), 1, sym_user_type, - STATE(3564), 1, + STATE(2925), 1, sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, + STATE(2981), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604615,35 +619086,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161491] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [156747] = 13, - ACTIONS(9074), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(8361), 1, + STATE(3042), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8364), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(2947), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604651,35 +619122,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161540] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [156796] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, - sym_user_type, - STATE(930), 1, + STATE(3208), 1, sym__delegation_specifiers, - STATE(948), 1, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, sym_function_type, - STATE(960), 1, + STATE(4217), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604687,34 +619159,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161591] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [156845] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, + STATE(3042), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3568), 2, + STATE(2946), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604722,35 +619195,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161640] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [156892] = 13, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(8394), 1, sym_user_type, - STATE(948), 1, - sym_function_type, - STATE(960), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(984), 1, + STATE(8591), 1, sym__delegation_specifiers, - STATE(9526), 1, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604758,35 +619232,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161691] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [156941] = 13, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(8394), 1, sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(4155), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(8625), 1, + sym_function_type, + STATE(9193), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604794,35 +619269,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161742] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [156990] = 13, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3129), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(3069), 1, sym_user_type, - STATE(4099), 1, + STATE(3341), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(4155), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604830,34 +619306,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161793] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157039] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, + STATE(3042), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3570), 2, + STATE(2942), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604865,35 +619342,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161842] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [157086] = 13, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, + sym_user_type, STATE(2981), 1, + sym_delegation_specifier, + STATE(3011), 1, sym__delegation_specifiers, - STATE(3969), 1, - sym_user_type, - STATE(4099), 1, + STATE(3042), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604901,35 +619379,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161893] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [157135] = 13, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2985), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(3069), 1, sym_user_type, - STATE(4099), 1, + STATE(3208), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(4155), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604937,34 +619416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161944] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [157184] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, + STATE(2917), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3622), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604972,34 +619453,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [161995] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [157231] = 12, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(3312), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(5241), 1, + STATE(4132), 1, sym_function_type, - STATE(9393), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4574), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605007,35 +619490,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162046] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157278] = 13, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3004), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4099), 1, + STATE(3042), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(2936), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605043,35 +619526,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162095] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [157327] = 13, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(5273), 1, sym_user_type, - STATE(3565), 1, - sym__delegation_specifiers, - STATE(3641), 1, + STATE(5324), 1, sym_function_type, - STATE(3730), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4597), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605079,34 +619562,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162144] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157376] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, + STATE(3042), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3573), 2, + STATE(2933), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605114,35 +619598,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162193] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157423] = 13, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3005), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4099), 1, + STATE(3042), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(2925), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605150,35 +619634,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162242] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [157472] = 13, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3019), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(8394), 1, sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(4155), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(8604), 1, + sym__delegation_specifiers, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605186,35 +619671,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162293] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157521] = 13, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3023), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4099), 1, + STATE(3042), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(2924), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605222,35 +619707,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162342] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [157570] = 13, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3027), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(8394), 1, sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(4155), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9396), 1, + STATE(8620), 1, + sym__delegation_specifiers, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605258,35 +619744,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162393] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157619] = 13, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3021), 1, - sym__delegation_specifiers, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4099), 1, + STATE(3042), 1, sym_function_type, - STATE(4155), 1, - sym_delegation_specifier, - STATE(9396), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(3011), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605294,35 +619780,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162442] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [157668] = 13, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(818), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(8394), 1, sym_user_type, - STATE(939), 1, - sym__delegation_specifiers, - STATE(948), 1, - sym_function_type, - STATE(960), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(8625), 1, + sym_function_type, + STATE(9111), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605330,35 +619817,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162493] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157717] = 13, - ACTIONS(9082), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(5182), 1, - sym__delegation_specifiers, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5215), 1, + STATE(3042), 1, sym_function_type, - STATE(9452), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(2917), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605366,35 +619853,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162542] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [157766] = 13, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(3147), 1, - sym__delegation_specifiers, - STATE(3970), 1, + STATE(8394), 1, sym_user_type, - STATE(4087), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(4095), 1, + STATE(8605), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(9428), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605402,34 +619890,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162593] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157815] = 12, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2900), 1, sym_user_type, - STATE(4207), 1, + STATE(3042), 1, sym_function_type, - STATE(9424), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3575), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605437,34 +619926,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162642] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [157862] = 12, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4592), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(4207), 1, + STATE(5324), 1, sym_function_type, - STATE(9424), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3576), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605472,35 +619963,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162693] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [157909] = 13, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2974), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(3042), 1, sym_function_type, - STATE(9428), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(2902), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605508,35 +619999,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162742] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [157958] = 13, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(2900), 1, sym_user_type, - STATE(4861), 1, + STATE(2904), 1, sym__delegation_specifiers, - STATE(4907), 1, + STATE(2981), 1, sym_delegation_specifier, - STATE(4960), 1, + STATE(3042), 1, sym_function_type, - STATE(9799), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605544,35 +620036,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162793] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [158007] = 13, - ACTIONS(9082), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(5183), 1, - sym__delegation_specifiers, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5215), 1, + STATE(3042), 1, sym_function_type, - STATE(9452), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(3028), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605580,34 +620072,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162842] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [158056] = 12, - ACTIONS(197), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4633), 1, + STATE(2902), 1, + sym__delegation_specifiers, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3042), 1, sym_function_type, - STATE(9393), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4564), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605615,35 +620109,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162893] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [158103] = 13, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2950), 1, - sym__delegation_specifiers, - STATE(3970), 1, + STATE(8394), 1, sym_user_type, - STATE(4087), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(4095), 1, + STATE(8625), 1, sym_function_type, - STATE(9428), 1, + STATE(8629), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605651,34 +620146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162944] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [158152] = 12, - ACTIONS(197), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4633), 1, + STATE(3042), 1, sym_function_type, - STATE(9393), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4604), 2, + STATE(2898), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605686,34 +620182,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [162993] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158199] = 12, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(5382), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(5495), 1, + STATE(3363), 1, sym_function_type, - STATE(9799), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4871), 2, + STATE(3096), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5133), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605721,35 +620218,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163042] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158246] = 13, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(3363), 1, sym_function_type, - STATE(3147), 1, - sym__delegation_specifiers, - STATE(9428), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3081), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605757,34 +620254,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163091] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158295] = 12, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(4207), 1, + STATE(3363), 1, sym_function_type, - STATE(9424), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3600), 2, + STATE(3078), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3858), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605792,34 +620290,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163140] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158342] = 12, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(3069), 1, sym_user_type, - STATE(4633), 1, + STATE(3363), 1, sym_function_type, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4547), 2, + STATE(3068), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605827,34 +620326,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163189] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [158389] = 12, - ACTIONS(197), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(8345), 1, sym_user_type, - STATE(4633), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9393), 1, + STATE(8440), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4557), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605862,35 +620363,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163240] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [158436] = 13, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(3576), 1, - sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(8625), 1, + sym_function_type, + STATE(8632), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605898,34 +620400,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163291] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [158485] = 12, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4166), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4617), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(4207), 1, + STATE(5324), 1, sym_function_type, - STATE(9424), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3580), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3858), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605933,35 +620437,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163342] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [158532] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2949), 1, + STATE(4581), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(5273), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(5324), 1, sym_function_type, - STATE(9428), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605969,34 +620474,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163393] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158581] = 12, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(3069), 1, sym_user_type, - STATE(5241), 1, + STATE(3363), 1, sym_function_type, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4559), 2, + STATE(3139), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606004,35 +620510,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163442] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158628] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(3069), 1, sym_user_type, - STATE(944), 1, - sym__delegation_specifiers, - STATE(948), 1, + STATE(3363), 1, sym_function_type, - STATE(960), 1, - sym_delegation_specifier, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3142), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606040,34 +620546,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163491] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158677] = 12, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3111), 1, + STATE(3363), 1, sym_function_type, - STATE(9428), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2949), 2, + STATE(3202), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606075,34 +620582,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163540] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [158724] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(4615), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(4633), 1, + STATE(5324), 1, sym_function_type, - STATE(9393), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4565), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606110,34 +620619,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163591] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158771] = 12, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(3069), 1, sym_user_type, - STATE(4633), 1, + STATE(3363), 1, sym_function_type, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4603), 2, + STATE(3208), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606145,35 +620655,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163640] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [158818] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, - sym_user_type, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4922), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4583), 1, sym__delegation_specifiers, - STATE(4960), 1, + STATE(5273), 1, + sym_user_type, + STATE(5324), 1, sym_function_type, - STATE(9799), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606181,34 +620692,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163691] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158867] = 12, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(3069), 1, sym_user_type, - STATE(4633), 1, + STATE(3363), 1, sym_function_type, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4545), 2, + STATE(3341), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606216,34 +620728,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163740] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [158914] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(4606), 1, + sym__delegation_specifiers, + STATE(5273), 1, sym_user_type, - STATE(4633), 1, + STATE(5324), 1, sym_function_type, - STATE(9393), 1, + STATE(5524), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4549), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606251,35 +620765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163791] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [158961] = 13, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3575), 1, - sym__delegation_specifiers, - STATE(3641), 1, + STATE(3363), 1, sym_function_type, - STATE(3730), 1, - sym_delegation_specifier, - STATE(9424), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3253), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606287,35 +620801,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163840] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [159010] = 13, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2950), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(3363), 1, sym_function_type, - STATE(9428), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3125), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606323,35 +620837,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163889] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [159059] = 13, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2949), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(3202), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(9428), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606359,34 +620874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163940] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [159108] = 12, - ACTIONS(197), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2900), 1, sym_user_type, - STATE(4633), 1, + STATE(2981), 1, + sym_delegation_specifier, + STATE(3028), 1, + sym__delegation_specifiers, + STATE(3042), 1, sym_function_type, - STATE(9393), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4556), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606394,34 +620911,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [163991] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159155] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(4587), 1, sym_user_type, - STATE(4633), 1, + STATE(4680), 1, sym_function_type, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4559), 2, + STATE(4602), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606429,34 +620947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164040] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [159202] = 12, - ACTIONS(571), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(8345), 1, sym_user_type, - STATE(4095), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9428), 1, + STATE(8443), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3012), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606464,34 +620984,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164091] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159249] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(4587), 1, sym_user_type, - STATE(4633), 1, + STATE(4680), 1, sym_function_type, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4574), 2, + STATE(4690), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606499,34 +621020,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164140] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [159296] = 12, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(8394), 1, sym_user_type, - STATE(5241), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8622), 1, + sym__delegation_specifiers, + STATE(8625), 1, sym_function_type, - STATE(9393), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4549), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606534,35 +621057,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164191] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [159343] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(3069), 1, sym_user_type, - STATE(948), 1, + STATE(3363), 1, sym_function_type, - STATE(955), 1, - sym__delegation_specifiers, - STATE(960), 1, - sym_delegation_specifier, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3117), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606570,34 +621093,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164240] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [159392] = 12, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4550), 1, + STATE(3069), 1, sym_user_type, - STATE(4633), 1, + STATE(3363), 1, sym_function_type, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4544), 2, + STATE(3312), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606605,34 +621129,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164289] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159439] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(4587), 1, sym_user_type, - STATE(4633), 1, + STATE(4680), 1, sym_function_type, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4548), 2, + STATE(4589), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606640,35 +621165,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164338] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159486] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2948), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(4587), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4601), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606676,35 +621201,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164387] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [159535] = 13, - ACTIONS(491), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(3534), 1, - sym_user_type, - STATE(3566), 1, + STATE(2898), 1, sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, + STATE(2900), 1, + sym_user_type, + STATE(2981), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(3042), 1, + sym_function_type, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606712,35 +621238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164438] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [159584] = 13, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(8394), 1, sym_user_type, - STATE(3037), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(3111), 1, - sym_function_type, - STATE(3162), 1, + STATE(8619), 1, sym__delegation_specifiers, - STATE(9428), 1, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606748,34 +621275,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164489] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [159633] = 12, - ACTIONS(197), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(8345), 1, sym_user_type, - STATE(4633), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8422), 1, sym_function_type, - STATE(9393), 1, + STATE(8435), 1, + sym__delegation_specifiers, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4558), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606783,34 +621312,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164540] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [159680] = 12, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(4095), 1, + STATE(3363), 1, sym_function_type, - STATE(9428), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3001), 2, + STATE(3070), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606818,34 +621348,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164589] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [159727] = 12, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3096), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(4095), 1, + STATE(4132), 1, sym_function_type, - STATE(9428), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2982), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606853,34 +621385,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164640] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [159774] = 12, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(915), 1, + sym__delegation_specifiers, + STATE(925), 1, sym_user_type, - STATE(4095), 1, + STATE(929), 1, sym_function_type, - STATE(9428), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2972), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606888,35 +621422,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164691] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159821] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2957), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(4587), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4600), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606924,35 +621458,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164740] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159870] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2958), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(4587), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606960,35 +621494,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164789] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [159919] = 13, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(3588), 1, - sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(8625), 1, + sym_function_type, + STATE(9442), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606996,35 +621531,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164840] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [159968] = 13, - ACTIONS(9082), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(4587), 1, sym_user_type, - STATE(5188), 1, - sym_delegation_specifier, - STATE(5215), 1, + STATE(4680), 1, sym_function_type, - STATE(5299), 1, - sym__delegation_specifiers, - STATE(9452), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(4590), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607032,35 +621567,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164889] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160017] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2967), 1, - sym__delegation_specifiers, - STATE(2986), 1, + STATE(4587), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4592), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607068,35 +621603,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164938] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160066] = 13, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2972), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3081), 1, sym__delegation_specifiers, - STATE(2986), 1, + STATE(4049), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4132), 1, sym_function_type, - STATE(9428), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607104,35 +621640,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [164989] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160115] = 13, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2982), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3078), 1, sym__delegation_specifiers, - STATE(2986), 1, + STATE(4049), 1, sym_user_type, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4132), 1, sym_function_type, - STATE(9428), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607140,35 +621677,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165040] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [160164] = 13, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2986), 1, - sym_user_type, - STATE(3001), 1, + STATE(910), 1, sym__delegation_specifiers, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(9428), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607176,35 +621714,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165091] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160213] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(4587), 1, sym_user_type, - STATE(3002), 1, - sym__delegation_specifiers, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4617), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607212,35 +621750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165140] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160262] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(4587), 1, sym_user_type, - STATE(3012), 1, - sym__delegation_specifiers, - STATE(3037), 1, - sym_delegation_specifier, - STATE(3111), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4581), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607248,34 +621786,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165189] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160311] = 12, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(4095), 1, + STATE(3142), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(9428), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2967), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607283,34 +621823,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165240] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160358] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(4587), 1, sym_user_type, - STATE(5241), 1, + STATE(4680), 1, sym_function_type, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4545), 2, + STATE(4615), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607318,35 +621859,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165289] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160405] = 13, - ACTIONS(107), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4836), 1, - sym_user_type, - STATE(4850), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3068), 1, sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, sym_function_type, - STATE(9799), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607354,35 +621896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165340] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160454] = 13, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, sym_user_type, - STATE(3567), 1, + STATE(3139), 1, sym__delegation_specifiers, - STATE(3641), 1, + STATE(3363), 1, sym_function_type, - STATE(3730), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607390,35 +621933,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165391] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160503] = 13, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(4587), 1, sym_user_type, - STATE(4564), 1, - sym__delegation_specifiers, - STATE(4633), 1, + STATE(4680), 1, sym_function_type, - STATE(4899), 1, - sym_delegation_specifier, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(4583), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607426,35 +621969,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165440] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160552] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4846), 1, - sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(4680), 1, sym_function_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4606), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607462,35 +622005,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165489] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [160601] = 13, - ACTIONS(197), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(8345), 1, sym_user_type, - STATE(4604), 1, + STATE(8408), 1, sym__delegation_specifiers, - STATE(4633), 1, - sym_function_type, - STATE(4899), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607498,34 +622042,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165540] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [160650] = 12, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(8394), 1, sym_user_type, - STATE(4095), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9428), 1, + STATE(8925), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2958), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607533,34 +622079,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165591] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160697] = 12, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3139), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(4095), 1, + STATE(4132), 1, sym_function_type, - STATE(9428), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2957), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607568,35 +622116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165642] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [160744] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4902), 1, - sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(4680), 1, sym_function_type, - STATE(9799), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4597), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607604,35 +622152,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165691] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160793] = 13, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8201), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(8297), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3068), 1, + sym__delegation_specifiers, + STATE(3069), 1, sym_user_type, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(3363), 1, sym_function_type, - STATE(9200), 1, - sym__delegation_specifiers, - STATE(9735), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607640,34 +622189,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165742] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [160842] = 12, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4911), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4095), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9428), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3162), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607675,35 +622226,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165793] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [160889] = 13, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4547), 1, + STATE(869), 1, sym__delegation_specifiers, - STATE(4550), 1, + STATE(925), 1, sym_user_type, - STATE(4633), 1, + STATE(929), 1, sym_function_type, - STATE(4899), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607711,35 +622263,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165844] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [160938] = 13, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4557), 1, + STATE(886), 1, sym__delegation_specifiers, - STATE(4633), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(4899), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607747,35 +622300,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165895] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [160987] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(907), 1, + STATE(3069), 1, sym_user_type, - STATE(916), 1, + STATE(3078), 1, sym__delegation_specifiers, - STATE(948), 1, + STATE(3363), 1, sym_function_type, - STATE(960), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607783,34 +622337,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165946] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161036] = 12, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4922), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4095), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9428), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2948), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607818,35 +622374,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [165997] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161083] = 13, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(955), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4923), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(5500), 1, sym_user_type, - STATE(1443), 1, + STATE(5551), 1, sym_delegation_specifier, - STATE(1528), 1, + STATE(5557), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607854,35 +622411,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166048] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [161132] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(916), 1, - sym__delegation_specifiers, - STATE(1404), 1, + STATE(3069), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(3081), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(9526), 1, + STATE(3629), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607890,34 +622448,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166099] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161181] = 12, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4928), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(5241), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9393), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4547), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607925,34 +622485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166150] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161228] = 12, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4907), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(5241), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9393), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4557), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607960,35 +622522,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166201] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161275] = 13, - ACTIONS(197), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4565), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4944), 1, sym__delegation_specifiers, - STATE(4633), 1, - sym_function_type, - STATE(4899), 1, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607996,35 +622559,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166252] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [161324] = 13, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, + STATE(8394), 1, sym_user_type, - STATE(4603), 1, + STATE(8559), 1, sym__delegation_specifiers, - STATE(4633), 1, - sym_function_type, - STATE(4899), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(8625), 1, + sym_function_type, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608032,34 +622596,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166303] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161373] = 12, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4952), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4095), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9428), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2949), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608067,35 +622633,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166354] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [161420] = 13, - ACTIONS(9082), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4620), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4955), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(5188), 1, + STATE(5551), 1, sym_delegation_specifier, - STATE(5202), 1, - sym__delegation_specifiers, - STATE(5215), 1, + STATE(5557), 1, sym_function_type, - STATE(9452), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608103,35 +622670,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166405] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [161469] = 13, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4545), 1, - sym__delegation_specifiers, - STATE(4550), 1, + STATE(3069), 1, sym_user_type, - STATE(4633), 1, + STATE(3096), 1, + sym__delegation_specifiers, + STATE(3363), 1, sym_function_type, - STATE(4899), 1, + STATE(3629), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608139,35 +622707,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166456] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [161518] = 13, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4549), 1, + STATE(3202), 1, sym__delegation_specifiers, - STATE(4550), 1, + STATE(4049), 1, sym_user_type, - STATE(4633), 1, + STATE(4132), 1, sym_function_type, - STATE(4899), 1, + STATE(4217), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608175,35 +622744,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166507] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [161567] = 13, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(920), 1, + STATE(907), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608211,35 +622781,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166558] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [161616] = 13, - ACTIONS(491), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(3568), 1, + STATE(4602), 1, sym__delegation_specifiers, - STATE(3641), 1, + STATE(4680), 1, sym_function_type, - STATE(3730), 1, + STATE(4909), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608247,35 +622818,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166609] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [161665] = 13, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(944), 1, + STATE(908), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608283,35 +622855,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166660] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [161714] = 13, - ACTIONS(9074), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4587), 1, sym_user_type, - STATE(8361), 1, + STATE(4680), 1, sym_function_type, - STATE(8363), 1, - sym_delegation_specifier, - STATE(8378), 1, + STATE(4690), 1, sym__delegation_specifiers, - STATE(10062), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608319,35 +622892,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166711] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [161763] = 13, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4556), 1, + STATE(919), 1, sym__delegation_specifiers, - STATE(4633), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(4899), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608355,35 +622929,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166762] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [161812] = 13, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4559), 1, + STATE(920), 1, sym__delegation_specifiers, - STATE(4633), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(4899), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608391,35 +622966,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166813] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [161861] = 13, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(818), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(939), 1, + STATE(3341), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(4049), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(4132), 1, sym_function_type, - STATE(9526), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608427,35 +623003,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166864] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [161910] = 13, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4574), 1, + STATE(3253), 1, sym__delegation_specifiers, - STATE(4633), 1, + STATE(4049), 1, + sym_user_type, + STATE(4132), 1, sym_function_type, - STATE(4899), 1, + STATE(4217), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608463,35 +623040,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166915] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [161959] = 13, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(984), 1, - sym__delegation_specifiers, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(930), 1, + sym__delegation_specifiers, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608499,35 +623077,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [166966] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162008] = 13, - ACTIONS(9074), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4587), 1, sym_user_type, - STATE(8339), 1, + STATE(4589), 1, sym__delegation_specifiers, - STATE(8361), 1, + STATE(4680), 1, sym_function_type, - STATE(8363), 1, + STATE(4909), 1, sym_delegation_specifier, - STATE(10062), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608535,35 +623114,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167017] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162057] = 13, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4544), 1, - sym__delegation_specifiers, - STATE(4550), 1, + STATE(4587), 1, sym_user_type, - STATE(4633), 1, + STATE(4601), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(4899), 1, + STATE(4909), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608571,35 +623151,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167068] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [162106] = 13, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(825), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4548), 1, + STATE(924), 1, sym__delegation_specifiers, - STATE(4550), 1, + STATE(925), 1, sym_user_type, - STATE(4633), 1, + STATE(929), 1, sym_function_type, - STATE(4899), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608607,35 +623188,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167119] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [162155] = 13, - ACTIONS(491), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(3534), 1, + STATE(7891), 1, + sym__simple_user_type, + STATE(8345), 1, sym_user_type, - STATE(3569), 1, + STATE(8417), 1, sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(8422), 1, + sym_function_type, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608643,35 +623225,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167170] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [162204] = 13, - ACTIONS(571), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(824), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(825), 1, sym__simple_user_type, - STATE(2948), 1, + STATE(871), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(925), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(929), 1, sym_function_type, - STATE(9428), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608679,35 +623262,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167221] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [162253] = 13, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3534), 1, - sym_user_type, - STATE(3570), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(868), 1, sym__delegation_specifiers, - STATE(3641), 1, + STATE(925), 1, + sym_user_type, + STATE(929), 1, sym_function_type, - STATE(3730), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608715,35 +623299,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167272] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [162302] = 13, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(825), 1, + sym__simple_user_type, + STATE(925), 1, sym_user_type, - STATE(4887), 1, + STATE(929), 1, + sym_function_type, + STATE(932), 1, sym__delegation_specifiers, - STATE(4907), 1, + STATE(975), 1, sym_delegation_specifier, - STATE(4960), 1, - sym_function_type, - STATE(9799), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608751,35 +623336,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167323] = 14, + ACTIONS(473), 1, sym__alpha_identifier, - [162351] = 13, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(4511), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4558), 1, + STATE(3661), 1, sym__delegation_specifiers, - STATE(4633), 1, + STATE(4199), 1, + sym_user_type, + STATE(4236), 1, sym_function_type, - STATE(4899), 1, + STATE(4243), 1, sym_delegation_specifier, - STATE(9393), 1, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608787,35 +623373,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167374] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162400] = 13, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(930), 1, - sym__delegation_specifiers, - STATE(1404), 1, + STATE(4587), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(4600), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9526), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608823,35 +623410,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167425] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162449] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(4680), 1, sym_function_type, - STATE(4977), 1, + STATE(4681), 1, sym__delegation_specifiers, - STATE(9799), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608859,35 +623447,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167476] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - [162498] = 13, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(823), 1, + sym__lexical_identifier, + STATE(824), 1, sym_simple_identifier, - STATE(818), 1, + STATE(825), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(926), 1, + STATE(894), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(925), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(929), 1, sym_function_type, - STATE(9526), 1, + STATE(975), 1, + sym_delegation_specifier, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608895,35 +623484,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167527] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [162547] = 13, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, sym_user_type, - STATE(4878), 1, + STATE(8562), 1, sym__delegation_specifiers, - STATE(4907), 1, + STATE(8587), 1, sym_delegation_specifier, - STATE(4960), 1, + STATE(8625), 1, sym_function_type, - STATE(9799), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608931,34 +623521,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167578] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162596] = 12, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(4587), 1, sym_user_type, - STATE(5241), 1, + STATE(4590), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9393), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4603), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608966,35 +623558,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167629] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162643] = 13, - ACTIONS(107), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(4836), 1, + STATE(4540), 1, + sym__simple_user_type, + STATE(4587), 1, sym_user_type, - STATE(4871), 1, + STATE(4592), 1, sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(4680), 1, sym_function_type, - STATE(9799), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609002,34 +623595,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167680] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [162692] = 12, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(5273), 1, sym_user_type, - STATE(4095), 1, + STATE(5324), 1, sym_function_type, - STATE(9428), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2950), 2, + STATE(4602), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3249), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609037,35 +623631,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167729] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [162739] = 13, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3012), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2950), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(3796), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(3939), 1, sym_function_type, - STATE(9428), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609073,34 +623668,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167780] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [162788] = 12, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(4510), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(4511), 1, - sym__lexical_identifier, - STATE(5174), 1, + STATE(8394), 1, sym_user_type, - STATE(5241), 1, + STATE(8550), 1, + sym__delegation_specifiers, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9393), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4565), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4661), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609108,35 +623705,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167831] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [162835] = 13, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(902), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2947), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(3796), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(3939), 1, sym_function_type, - STATE(9526), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609144,35 +623742,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167882] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162884] = 13, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(925), 1, - sym__delegation_specifiers, - STATE(1404), 1, + STATE(4587), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(4617), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9526), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609180,35 +623779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167933] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [162933] = 13, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(893), 1, + STATE(4581), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(4587), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(4680), 1, sym_function_type, - STATE(9526), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609216,35 +623816,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [167984] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [162982] = 13, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(923), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2898), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(3796), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(3939), 1, sym_function_type, - STATE(9526), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609252,35 +623853,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168035] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [163031] = 13, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(913), 1, - sym__delegation_specifiers, - STATE(1404), 1, + STATE(4587), 1, sym_user_type, - STATE(1443), 1, - sym_delegation_specifier, - STATE(1528), 1, + STATE(4615), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9526), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609288,35 +623890,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168086] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163080] = 13, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(8201), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(8297), 1, - sym_user_type, - STATE(8464), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2946), 1, sym__delegation_specifiers, - STATE(8516), 1, - sym_delegation_specifier, - STATE(8530), 1, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, sym_function_type, - STATE(9735), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8612), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609324,35 +623927,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168137] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [163129] = 13, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(896), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4958), 1, sym__delegation_specifiers, - STATE(1404), 1, + STATE(5500), 1, sym_user_type, - STATE(1443), 1, + STATE(5551), 1, sym_delegation_specifier, - STATE(1528), 1, + STATE(5557), 1, sym_function_type, - STATE(9526), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609360,35 +623964,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168188] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [163178] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(3002), 1, + STATE(4583), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(4587), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609396,35 +624001,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168239] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [163227] = 13, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(3001), 1, - sym__delegation_specifiers, - STATE(3970), 1, + STATE(4587), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(4606), 1, + sym__delegation_specifiers, + STATE(4680), 1, sym_function_type, - STATE(9428), 1, + STATE(4909), 1, + sym_delegation_specifier, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609432,35 +624038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168290] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163276] = 13, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(3162), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2942), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(3796), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(3939), 1, sym_function_type, - STATE(9428), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609468,34 +624075,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168341] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163325] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2936), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4099), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3013), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609503,35 +624112,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168392] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163372] = 13, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2957), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(2933), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(3796), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(3939), 1, sym_function_type, - STATE(9428), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609539,34 +624149,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168443] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [163421] = 12, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(3125), 1, + sym__delegation_specifiers, + STATE(4049), 1, sym_user_type, - STATE(4099), 1, + STATE(4132), 1, sym_function_type, - STATE(9396), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3118), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609574,35 +624186,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168494] = 14, + ACTIONS(211), 1, sym__alpha_identifier, - [163468] = 13, - ACTIONS(9074), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(7962), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4587), 1, sym_user_type, - STATE(8358), 1, + STATE(4597), 1, sym__delegation_specifiers, - STATE(8361), 1, + STATE(4680), 1, sym_function_type, - STATE(8363), 1, + STATE(4909), 1, sym_delegation_specifier, - STATE(10062), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609610,35 +624223,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168545] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163517] = 13, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(4619), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(4621), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(4836), 1, - sym_user_type, - STATE(4841), 1, + STATE(2925), 1, sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, + STATE(3796), 1, + sym_user_type, + STATE(3939), 1, sym_function_type, - STATE(9799), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609646,35 +624260,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168596] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - [163566] = 13, - ACTIONS(571), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(2931), 1, sym__simple_user_type, - STATE(2982), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3117), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(4049), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(4132), 1, sym_function_type, - STATE(9428), 1, + STATE(4217), 1, + sym_delegation_specifier, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609682,34 +624297,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168647] = 14, + ACTIONS(9216), 1, sym__alpha_identifier, - [163615] = 12, - ACTIONS(571), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(8345), 1, sym_user_type, - STATE(4095), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8421), 1, + sym__delegation_specifiers, + STATE(8422), 1, sym_function_type, - STATE(9428), 1, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3147), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609717,34 +624334,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168698] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [163662] = 12, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3970), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(5062), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4095), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9428), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2974), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3249), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609752,34 +624371,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168749] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [163709] = 12, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3969), 1, + STATE(8394), 1, sym_user_type, - STATE(4099), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9396), 1, + STATE(9050), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3020), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609787,34 +624408,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168800] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163756] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2924), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4099), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2942), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609822,35 +624445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168851] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163803] = 13, - ACTIONS(571), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2972), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3011), 1, sym__delegation_specifiers, - STATE(3970), 1, + STATE(3796), 1, sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, + STATE(3939), 1, sym_function_type, - STATE(9428), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609858,35 +624482,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168902] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [163852] = 13, - ACTIONS(9074), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(4894), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(8361), 1, - sym_function_type, - STATE(8363), 1, + STATE(5551), 1, sym_delegation_specifier, - STATE(8386), 1, - sym__delegation_specifiers, - STATE(10062), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609894,34 +624519,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [168953] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [163901] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2917), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4099), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3129), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609929,35 +624556,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169004] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [163948] = 13, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2854), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2958), 1, - sym__delegation_specifiers, - STATE(3970), 1, + STATE(8394), 1, sym_user_type, - STATE(4087), 1, + STATE(8529), 1, + sym__delegation_specifiers, + STATE(8587), 1, sym_delegation_specifier, - STATE(4095), 1, + STATE(8625), 1, sym_function_type, - STATE(9428), 1, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609965,34 +624593,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169055] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [163997] = 12, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4896), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4099), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9396), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2981), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610000,34 +624630,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169106] = 14, + ACTIONS(8672), 1, sym__alpha_identifier, - [164044] = 12, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(8125), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3969), 1, + STATE(8394), 1, sym_user_type, - STATE(4099), 1, + STATE(8587), 1, + sym_delegation_specifier, + STATE(8625), 1, sym_function_type, - STATE(9396), 1, + STATE(9349), 1, + sym__delegation_specifiers, + STATE(9549), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2985), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(8643), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610035,34 +624667,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169157] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [164091] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2904), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4099), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3004), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610070,34 +624704,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169208] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [164138] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(2902), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4099), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3005), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610105,34 +624741,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169259] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [164185] = 12, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_simple_identifier, + STATE(4900), 1, + sym__delegation_specifiers, + STATE(5500), 1, sym_user_type, - STATE(4099), 1, + STATE(5551), 1, + sym_delegation_specifier, + STATE(5557), 1, sym_function_type, - STATE(9396), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3019), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610140,35 +624778,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169310] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - [164232] = 13, - ACTIONS(491), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3098), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(3144), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(3534), 1, - sym_user_type, - STATE(3622), 1, + STATE(5020), 1, sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, + STATE(5500), 1, + sym_user_type, + STATE(5551), 1, sym_delegation_specifier, - STATE(9424), 1, + STATE(5557), 1, + sym_function_type, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610176,34 +624815,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169361] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - [164281] = 12, - ACTIONS(329), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3969), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, + sym_simple_identifier, + STATE(3028), 1, + sym__delegation_specifiers, + STATE(3796), 1, sym_user_type, - STATE(4099), 1, + STATE(3939), 1, sym_function_type, - STATE(9396), 1, + STATE(3965), 1, + sym_delegation_specifier, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2966), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610211,34 +624852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169412] = 13, + ACTIONS(9216), 1, sym__alpha_identifier, - [164328] = 12, - ACTIONS(329), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(7891), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3969), 1, + STATE(8345), 1, sym_user_type, - STATE(4099), 1, + STATE(8422), 1, sym_function_type, - STATE(9396), 1, + STATE(8571), 1, + sym_delegation_specifier, + STATE(10143), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3023), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, + STATE(8525), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610246,34 +624887,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169460] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164375] = 12, - ACTIONS(329), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(3969), 1, - sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(9396), 1, - sym_function_type_parameters, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3027), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(251), 8, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10114), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610281,34 +624920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169504] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164422] = 12, - ACTIONS(329), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(3969), 1, - sym_user_type, - STATE(4099), 1, - sym_function_type, - STATE(9396), 1, - sym_function_type_parameters, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3021), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3328), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(251), 8, + STATE(7140), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10116), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610316,35 +624953,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [164469] = 13, - ACTIONS(571), 1, + [169548] = 8, + ACTIONS(9511), 1, + anon_sym_AT, + ACTIONS(9517), 1, + sym_reification_modifier, + ACTIONS(9520), 1, sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, - sym__simple_user_type, - STATE(2967), 1, - sym__delegation_specifiers, - STATE(3970), 1, - sym_user_type, - STATE(4087), 1, - sym_delegation_specifier, - STATE(4095), 1, - sym_function_type, - STATE(9428), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(9514), 2, + anon_sym_in, + anon_sym_out, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7138), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9509), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610353,34 +624983,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164518] = 13, - ACTIONS(107), 1, + [169586] = 7, + ACTIONS(9522), 1, + anon_sym_LBRACK, + STATE(7730), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9527), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9530), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7139), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9525), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [169622] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(4836), 1, - sym_user_type, - STATE(4840), 1, - sym__delegation_specifiers, - STATE(4907), 1, - sym_delegation_specifier, - STATE(4960), 1, - sym_function_type, - STATE(9799), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(7), 8, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10118), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610388,35 +625045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169666] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164567] = 13, - ACTIONS(491), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(3534), 1, - sym_user_type, - STATE(3573), 1, - sym__delegation_specifiers, - STATE(3641), 1, - sym_function_type, - STATE(3730), 1, - sym_delegation_specifier, - STATE(9424), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(415), 8, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10007), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610424,31 +625078,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169710] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164616] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7099), 2, + STATE(7161), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10031), 2, + STATE(10121), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610456,31 +625111,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169754] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164658] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7100), 2, + STATE(7141), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10026), 2, + STATE(10005), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610488,29 +625144,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169798] = 13, + ACTIONS(9232), 1, sym__alpha_identifier, - [164700] = 8, - ACTIONS(9226), 1, - anon_sym_AT, - ACTIONS(9327), 1, - sym_reification_modifier, - ACTIONS(9329), 1, + ACTIONS(9240), 1, sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4548), 1, + sym__simple_user_type, + STATE(4939), 1, + sym_user_type, + STATE(5032), 1, + sym_function_type, + STATE(5185), 1, + sym_delegation_specifier, + STATE(9741), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9228), 2, - anon_sym_in, - anon_sym_out, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7098), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9325), 8, + STATE(5137), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610518,90 +625179,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169846] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164738] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7086), 2, + STATE(7136), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9911), 2, + STATE(10113), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 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, - [164780] = 5, - ACTIONS(9331), 1, - anon_sym_LT, - STATE(7197), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4110), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4108), 13, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [169890] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164812] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7081), 2, + STATE(7147), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9919), 2, + STATE(10019), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610609,31 +625245,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169934] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164854] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9921), 2, + STATE(10023), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610641,33 +625278,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [169978] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [164896] = 12, - ACTIONS(197), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4800), 1, - sym_delegation_specifier, - STATE(5174), 1, - sym_user_type, - STATE(5241), 1, - sym_function_type, - STATE(9393), 1, - sym_function_type_parameters, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(111), 8, + STATE(7152), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10026), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610675,33 +625311,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170022] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [164942] = 12, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(3881), 1, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3535), 1, sym_delegation_specifier, - STATE(4166), 1, + STATE(4049), 1, sym_user_type, - STATE(4207), 1, + STATE(4132), 1, sym_function_type, - STATE(9424), 1, + STATE(9863), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, + STATE(3599), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610709,65 +625346,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [164988] = 12, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3008), 1, - sym_user_type, - STATE(3148), 1, - sym_function_type, - STATE(3215), 1, - sym_delegation_specifier, - STATE(9396), 1, - sym_function_type_parameters, + [170070] = 5, + ACTIONS(9533), 1, + anon_sym_LT, + STATE(7246), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(4189), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4128), 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, - [165034] = 10, - ACTIONS(9106), 1, + [170102] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9881), 2, + STATE(10111), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610775,31 +625406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170146] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165076] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9914), 2, + STATE(10029), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610807,31 +625439,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170190] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165118] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7085), 2, + STATE(7151), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9878), 2, + STATE(10110), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610839,33 +625472,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170234] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [165160] = 12, - ACTIONS(9074), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(7962), 1, + STATE(4678), 1, sym__simple_user_type, - STATE(8277), 1, + STATE(4683), 1, + sym_simple_identifier, + STATE(5135), 1, + sym_delegation_specifier, + STATE(5500), 1, sym_user_type, - STATE(8361), 1, + STATE(5557), 1, sym_function_type, - STATE(8420), 1, - sym_delegation_specifier, - STATE(10062), 1, + STATE(9846), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8505), 2, + STATE(5153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9068), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610873,33 +625507,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170282] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165206] = 12, - ACTIONS(107), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(5077), 1, - sym_delegation_specifier, - STATE(5382), 1, - sym_user_type, - STATE(5495), 1, - sym_function_type, - STATE(9799), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(7), 8, + STATE(7158), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10033), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610907,33 +625540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170326] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [165252] = 12, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(3279), 1, sym__simple_user_type, - STATE(3190), 1, - sym_delegation_specifier, - STATE(3970), 1, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3609), 1, sym_user_type, - STATE(4095), 1, + STATE(3825), 1, sym_function_type, - STATE(9428), 1, + STATE(3961), 1, + sym_delegation_specifier, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3888), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610941,33 +625575,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170374] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165298] = 12, - ACTIONS(491), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(3098), 1, - sym__simple_user_type, - STATE(3144), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(3534), 1, - sym_user_type, - STATE(3641), 1, - sym_function_type, - STATE(3881), 1, - sym_delegation_specifier, - STATE(9424), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3858), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(415), 8, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10107), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610975,33 +625608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170418] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165344] = 12, - ACTIONS(107), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4619), 1, - sym__simple_user_type, - STATE(4621), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(4836), 1, - sym_user_type, - STATE(4960), 1, - sym_function_type, - STATE(5077), 1, - sym_delegation_specifier, - STATE(9799), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5133), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(7), 8, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10035), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611009,31 +625641,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170462] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165390] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7162), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10048), 2, + STATE(10040), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611041,65 +625674,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170506] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [165432] = 12, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(818), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(907), 1, + STATE(4587), 1, sym_user_type, - STATE(948), 1, + STATE(4680), 1, sym_function_type, - STATE(1198), 1, + STATE(4737), 1, sym_delegation_specifier, - STATE(9526), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 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, - [165478] = 10, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, - anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7093), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10047), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611107,31 +625709,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170554] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165520] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10037), 2, + STATE(10122), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611139,31 +625742,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170598] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165562] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7096), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10035), 2, + STATE(10042), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611171,29 +625775,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [165604] = 8, - ACTIONS(9335), 1, + [170642] = 8, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9341), 1, + ACTIONS(9537), 1, sym_reification_modifier, - ACTIONS(9344), 1, + ACTIONS(9539), 1, sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9338), 2, + ACTIONS(9422), 2, anon_sym_in, anon_sym_out, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7098), 4, + STATE(7138), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9333), 8, + ACTIONS(9535), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611202,30 +625805,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165642] = 10, - ACTIONS(9106), 1, + [170680] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7166), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10032), 2, + STATE(10126), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611233,31 +625838,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170724] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165684] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7169), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10027), 2, + STATE(10045), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611265,31 +625871,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170768] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165726] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10024), 2, + STATE(10127), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611297,31 +625904,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170812] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165768] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7101), 2, + STATE(7168), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10023), 2, + STATE(10137), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611329,31 +625937,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170856] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165810] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10021), 2, + STATE(10139), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611361,60 +625970,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170900] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165852] = 7, - ACTIONS(9346), 1, - anon_sym_LBRACK, - STATE(7774), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9351), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9354), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(7104), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9349), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [165888] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7103), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10020), 2, + STATE(10048), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611422,31 +626003,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170944] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165930] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7173), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10018), 2, + STATE(10051), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611454,67 +626036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170988] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [165972] = 12, - ACTIONS(8531), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(8201), 1, - sym__simple_user_type, - STATE(8297), 1, - sym_user_type, - STATE(8530), 1, - sym_function_type, - STATE(8724), 1, - sym_delegation_specifier, - STATE(9735), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8612), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8503), 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, - [166018] = 12, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(802), 1, + STATE(9205), 1, sym_simple_identifier, - STATE(818), 1, - sym__simple_user_type, - STATE(832), 1, - sym__lexical_identifier, - STATE(1198), 1, - sym_delegation_specifier, - STATE(1404), 1, - sym_user_type, - STATE(1528), 1, - sym_function_type, - STATE(9526), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1197), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(333), 8, + STATE(7172), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10141), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611522,31 +626069,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171032] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166064] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7106), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10017), 2, + STATE(10142), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611554,31 +626102,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171076] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166106] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10014), 2, + STATE(10052), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611586,31 +626135,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171120] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166148] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7110), 2, + STATE(7175), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10013), 2, + STATE(10055), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611618,33 +626168,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171164] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166190] = 12, - ACTIONS(197), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4510), 1, - sym__simple_user_type, - STATE(4511), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(4550), 1, - sym_user_type, - STATE(4633), 1, - sym_function_type, - STATE(4800), 1, - sym_delegation_specifier, - STATE(9393), 1, - sym_function_type_parameters, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4661), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(111), 8, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10058), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611652,31 +626201,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171208] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166236] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7177), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10010), 2, + STATE(10061), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611684,31 +626234,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171252] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166278] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7113), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10009), 2, + STATE(10062), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611716,31 +626267,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171296] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166320] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7179), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10006), 2, + STATE(10071), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611748,31 +626300,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171340] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166362] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7115), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10005), 2, + STATE(10072), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611780,31 +626333,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171384] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166404] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7181), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(10002), 2, + STATE(10089), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611812,31 +626366,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171428] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166446] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7117), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9999), 2, + STATE(10076), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611844,19 +626399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [166488] = 3, + [171472] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 6, + ACTIONS(5189), 6, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, sym__backtick_identifier, - ACTIONS(5138), 13, + ACTIONS(5187), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -611870,32 +626424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166516] = 12, - ACTIONS(9082), 1, + [171500] = 13, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(824), 1, sym_simple_identifier, - STATE(4620), 1, + STATE(825), 1, sym__simple_user_type, - STATE(5004), 1, + STATE(925), 1, sym_user_type, - STATE(5215), 1, + STATE(929), 1, sym_function_type, - STATE(5259), 1, + STATE(1161), 1, sym_delegation_specifier, - STATE(9452), 1, + STATE(9593), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5257), 2, + STATE(1030), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9076), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611903,31 +626459,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171548] = 13, + ACTIONS(8672), 1, sym__alpha_identifier, - [166562] = 10, - ACTIONS(9106), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(8125), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_user_type, + STATE(8625), 1, + sym_function_type, + STATE(8678), 1, + sym_delegation_specifier, + STATE(9549), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9995), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(8643), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611935,31 +626494,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171596] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166604] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7121), 2, + STATE(7189), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9994), 2, + STATE(10084), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611967,97 +626527,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [166646] = 10, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, - anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, - sym_simple_identifier, + [171640] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9986), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 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, - [166688] = 10, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(4009), 5, anon_sym_AT, - ACTIONS(9323), 1, anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7123), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9985), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166730] = 12, - ACTIONS(571), 1, + [171670] = 13, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(2854), 1, + STATE(2796), 1, sym__simple_user_type, - STATE(2986), 1, + STATE(2803), 1, + sym_simple_identifier, + STATE(3226), 1, + sym_delegation_specifier, + STATE(3796), 1, sym_user_type, - STATE(3111), 1, + STATE(3939), 1, sym_function_type, - STATE(3190), 1, - sym_delegation_specifier, - STATE(9428), 1, + STATE(9798), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3249), 2, + STATE(3153), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(495), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612065,31 +626588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171718] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166776] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7157), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9486), 2, + STATE(10106), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612097,57 +626621,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171762] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166818] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8333), 1, + sym__lexical_identifier, + STATE(9205), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(3818), 13, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10085), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [171806] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166848] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7202), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9981), 2, + STATE(9601), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612155,31 +626687,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171850] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166890] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7126), 2, + STATE(7210), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9547), 2, + STATE(10011), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612187,31 +626720,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171894] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [166932] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7128), 2, + STATE(7194), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9980), 2, + STATE(9965), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612219,31 +626753,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171938] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - [166974] = 10, - ACTIONS(9106), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, + STATE(2899), 1, sym_simple_identifier, + STATE(2931), 1, + sym__simple_user_type, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3069), 1, + sym_user_type, + STATE(3363), 1, + sym_function_type, + STATE(3535), 1, + sym_delegation_specifier, + STATE(9863), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9977), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(3599), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612251,31 +626788,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [171986] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167016] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7131), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9976), 2, + STATE(9968), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612283,31 +626821,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172030] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [167058] = 10, - ACTIONS(9106), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(4678), 1, + sym__simple_user_type, + STATE(4683), 1, sym_simple_identifier, + STATE(4951), 1, + sym_user_type, + STATE(5041), 1, + sym_function_type, + STATE(5135), 1, + sym_delegation_specifier, + STATE(9846), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9973), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(5153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612315,33 +626856,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172078] = 13, + ACTIONS(211), 1, sym__alpha_identifier, - [167100] = 12, - ACTIONS(329), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2827), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4538), 1, sym_simple_identifier, - STATE(2848), 1, + STATE(4540), 1, sym__simple_user_type, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3215), 1, + STATE(4737), 1, sym_delegation_specifier, - STATE(3969), 1, + STATE(5273), 1, sym_user_type, - STATE(4099), 1, + STATE(5324), 1, sym_function_type, - STATE(9396), 1, + STATE(9487), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3328), 2, + STATE(4792), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(251), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612349,31 +626891,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172126] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - [167146] = 10, - ACTIONS(9106), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(824), 1, sym_simple_identifier, + STATE(825), 1, + sym__simple_user_type, + STATE(1161), 1, + sym_delegation_specifier, + STATE(1397), 1, + sym_user_type, + STATE(1684), 1, + sym_function_type, + STATE(9593), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9952), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(1030), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612381,31 +626926,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172174] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167188] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9948), 2, + STATE(10099), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612413,31 +626959,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172218] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167230] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7198), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9966), 2, + STATE(10098), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612445,31 +626992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172262] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167272] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7137), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9965), 2, + STATE(10095), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612477,31 +627025,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172306] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167314] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7140), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9926), 2, + STATE(10103), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612509,31 +627058,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172350] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167356] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9930), 2, + STATE(9733), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612541,31 +627091,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172394] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167398] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7207), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9961), 2, + STATE(10152), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612573,31 +627124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172438] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167440] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7143), 2, + STATE(7200), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9938), 2, + STATE(10094), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612605,31 +627157,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172482] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167482] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, + STATE(7201), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9943), 2, + STATE(10102), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612637,31 +627190,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172526] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - [167524] = 10, - ACTIONS(9106), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(2796), 1, + sym__simple_user_type, + STATE(2803), 1, sym_simple_identifier, + STATE(2900), 1, + sym_user_type, + STATE(3042), 1, + sym_function_type, + STATE(3226), 1, + sym_delegation_specifier, + STATE(9798), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7136), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9946), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(3153), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612669,31 +627225,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172574] = 11, + ACTIONS(9208), 1, sym__alpha_identifier, - [167566] = 10, - ACTIONS(9106), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7133), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9970), 2, + STATE(10091), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612701,31 +627258,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172618] = 13, + ACTIONS(473), 1, sym__alpha_identifier, - [167608] = 10, - ACTIONS(9106), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9321), 1, - anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, + STATE(3279), 1, + sym__simple_user_type, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3961), 1, + sym_delegation_specifier, + STATE(4199), 1, + sym_user_type, + STATE(4236), 1, + sym_function_type, + STATE(9976), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7149), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9955), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(3888), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612733,60 +627293,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [167650] = 7, - ACTIONS(6483), 1, + [172666] = 7, + ACTIONS(6716), 1, anon_sym_LBRACK, - STATE(7774), 1, + STATE(7730), 1, sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(6497), 3, + ACTIONS(6740), 3, sym_safe_nav, anon_sym_DOT, anon_sym_COLON_COLON, - ACTIONS(9359), 3, + ACTIONS(9543), 3, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, - STATE(7104), 5, + STATE(7139), 5, sym_indexing_suffix, sym_navigation_suffix, sym__postfix_unary_operator, sym__postfix_unary_suffix, aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9357), 6, + ACTIONS(9541), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [167686] = 10, - ACTIONS(9106), 1, + [172702] = 11, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9323), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(9353), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7135), 2, + STATE(7549), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(9950), 2, + STATE(10014), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612794,31 +627355,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [167728] = 10, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9321), 1, + [172746] = 5, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9549), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9547), 3, anon_sym_AT, - ACTIONS(9323), 1, anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, - sym_simple_identifier, + sym__backtick_identifier, + STATE(7211), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9545), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [172777] = 7, + ACTIONS(9554), 1, + anon_sym_AT, + ACTIONS(9560), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - STATE(9957), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + ACTIONS(9557), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7212), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9552), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612827,85 +627409,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167770] = 10, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9321), 1, + [172812] = 7, + ACTIONS(9564), 1, anon_sym_AT, - ACTIONS(9323), 1, - anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(9353), 1, - sym_simple_identifier, + ACTIONS(9569), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7141), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + ACTIONS(9567), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(9960), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9102), 8, + STATE(7219), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9562), 9, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167812] = 7, - ACTIONS(9363), 1, + [172847] = 5, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7403), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9574), 3, anon_sym_AT, - ACTIONS(9369), 1, + anon_sym_LPAREN, sym__backtick_identifier, + STATE(7211), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9572), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [172878] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9366), 3, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7151), 3, - sym_parameter_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [172905] = 11, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9329), 1, + anon_sym_LPAREN, + ACTIONS(9576), 1, + anon_sym_dynamic, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(7843), 1, + sym__simple_user_type, + STATE(8144), 1, + sym_nullable_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7856), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172948] = 7, + ACTIONS(9105), 1, + anon_sym_AT, + ACTIONS(9578), 1, + anon_sym_suspend, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9567), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7848), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7219), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9361), 8, + aux_sym_type_modifiers_repeat1, + ACTIONS(9562), 9, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167847] = 7, - ACTIONS(9373), 1, + [172983] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4181), 5, anon_sym_AT, - ACTIONS(9378), 1, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4179), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173010] = 7, + ACTIONS(9582), 1, + anon_sym_AT, + ACTIONS(9587), 1, anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9376), 2, + ACTIONS(9585), 2, anon_sym_LPAREN, sym__backtick_identifier, - STATE(7800), 2, + STATE(7848), 2, sym__single_annotation, sym__multi_annotation, - STATE(7152), 3, + STATE(7219), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9371), 9, + ACTIONS(9580), 9, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -612915,19 +627599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167882] = 5, - ACTIONS(9381), 1, + [173045] = 5, + ACTIONS(9590), 1, anon_sym_DOT, - STATE(7153), 1, + STATE(7222), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 3, + ACTIONS(4195), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4101), 13, + ACTIONS(4193), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -612941,19 +627625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167913] = 5, - ACTIONS(9384), 1, + [173076] = 5, + ACTIONS(9592), 1, anon_sym_DOT, - STATE(7153), 1, + STATE(7221), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 3, + ACTIONS(4168), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4075), 13, + ACTIONS(4166), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -612967,22 +627651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167944] = 5, + [173107] = 5, + ACTIONS(9590), 1, + anon_sym_DOT, + STATE(7221), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9390), 2, - anon_sym_in, - anon_sym_out, - ACTIONS(9388), 3, + ACTIONS(4155), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - STATE(7155), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9386), 10, + ACTIONS(4153), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -612990,29 +627671,32 @@ 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, - [167975] = 7, - ACTIONS(9162), 1, + [173138] = 7, + ACTIONS(9336), 1, anon_sym_AT, - ACTIONS(9395), 1, + ACTIONS(9597), 1, sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7786), 2, + STATE(7845), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8907), 3, + ACTIONS(9063), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7151), 3, + STATE(7212), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(9393), 8, + ACTIONS(9595), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613021,57 +627705,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168010] = 7, - ACTIONS(8942), 1, + [173173] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, anon_sym_AT, - ACTIONS(9401), 1, - anon_sym_suspend, + STATE(3016), 1, + sym_type_constraint, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9878), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9399), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7800), 2, + STATE(7352), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - STATE(7152), 3, - sym__type_modifier, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173213] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5833), 1, + sym_type_constraint, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9795), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7356), 2, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9397), 9, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [173253] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168045] = 10, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9157), 1, - anon_sym_LPAREN, - ACTIONS(9403), 1, - anon_sym_dynamic, - STATE(6123), 1, + ACTIONS(9599), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(7793), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(8098), 1, - sym_nullable_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7788), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8503), 8, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613079,48 +627795,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173293] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168086] = 5, - ACTIONS(9384), 1, - anon_sym_DOT, - STATE(7154), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9601), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4140), 13, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [168117] = 3, + [173333] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, + ACTIONS(4009), 5, anon_sym_AT, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(3818), 13, + ACTIONS(4004), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -613130,81 +627849,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168144] = 7, - ACTIONS(9405), 1, - anon_sym_AT, - ACTIONS(9408), 1, - anon_sym_suspend, + [173361] = 5, + ACTIONS(9603), 1, + anon_sym_LPAREN, + STATE(7350), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9399), 2, - anon_sym_LPAREN, + ACTIONS(7089), 2, + anon_sym_AT, sym__backtick_identifier, - STATE(7800), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7152), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9397), 9, + ACTIONS(7087), 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, - [168179] = 5, + [173391] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9606), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7342), 2, - anon_sym_in, - anon_sym_out, - ACTIONS(9413), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7155), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9411), 10, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [173431] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168210] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(970), 1, + STATE(3172), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9810), 1, + STATE(9861), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7254), 2, + STATE(7347), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613212,28 +627934,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173471] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168248] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9415), 1, + ACTIONS(9608), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613241,28 +627964,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173511] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168286] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(5775), 1, - sym_type_constraint, - STATE(6123), 1, + ACTIONS(9610), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(9625), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7264), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613270,28 +627994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173551] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168324] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9417), 1, + ACTIONS(9612), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613299,53 +628024,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173591] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168362] = 5, - ACTIONS(9419), 1, - anon_sym_LT, - STATE(7375), 1, - sym_type_arguments, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(864), 1, + sym_type_constraint, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9902), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4108), 11, + STATE(7332), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [173631] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168392] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(3904), 1, - sym_type_constraint, - STATE(6123), 1, + ACTIONS(9614), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(9716), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613353,28 +628084,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173671] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168430] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9421), 1, + ACTIONS(9616), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613382,77 +628114,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173711] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168468] = 5, - ACTIONS(9423), 1, - anon_sym_LPAREN, - STATE(7245), 1, - sym_value_arguments, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9618), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7106), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7104), 13, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [173751] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168498] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9620), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(3818), 11, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [173791] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168526] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(4578), 1, + STATE(3089), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9739), 1, + STATE(9878), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7227), 2, + STATE(7352), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613460,28 +628204,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173831] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168564] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9426), 1, - anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5016), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9508), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7292), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613489,52 +628234,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173871] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168602] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9622), 1, + anon_sym_RBRACK, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(3818), 11, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [173911] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168630] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9624), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613542,28 +628294,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173951] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168668] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(4790), 1, + STATE(5133), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9739), 1, + STATE(9714), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7227), 2, + STATE(7293), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613571,28 +628324,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [173991] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168706] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(5181), 1, + STATE(5811), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9679), 1, + STATE(9548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7237), 2, + STATE(7296), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613600,57 +628354,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [168744] = 9, - ACTIONS(8531), 1, + [174031] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(9430), 1, - anon_sym_RBRACK, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, + ACTIONS(4335), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [174057] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(4315), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4313), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168782] = 9, - ACTIONS(8531), 1, + [174083] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9432), 1, + ACTIONS(9626), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613658,28 +628430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174123] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168820] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(5060), 1, + STATE(5833), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9433), 1, + STATE(9648), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7290), 2, + STATE(7304), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613687,57 +628460,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [168858] = 9, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9434), 1, - anon_sym_RBRACK, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, + [174163] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 11, anon_sym_get, anon_sym_set, + anon_sym_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, - [168896] = 9, - ACTIONS(8531), 1, + [174191] = 10, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(3692), 1, - sym_type_constraint, - STATE(6123), 1, + ACTIONS(9628), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(9716), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613745,28 +628514,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174231] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168934] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(2973), 1, + STATE(5839), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9756), 1, + STATE(9648), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7222), 2, + STATE(7304), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613774,28 +628544,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174271] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [168972] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(5760), 1, - sym_type_constraint, - STATE(6123), 1, + ACTIONS(9630), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(9440), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7282), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613803,28 +628574,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174311] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169010] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(5760), 1, + STATE(4652), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9553), 1, + STATE(9797), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7221), 2, + STATE(7301), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613832,28 +628604,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174351] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169048] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9436), 1, + ACTIONS(9632), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613861,28 +628634,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174391] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169086] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8463), 1, + STATE(8405), 1, sym_type_constraint, - STATE(9743), 1, + STATE(9493), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7236), 2, + STATE(7345), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613890,28 +628664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174431] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169124] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(5770), 1, + STATE(968), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9625), 1, + STATE(9902), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7264), 2, + STATE(7332), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613919,28 +628694,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174471] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169162] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9438), 1, - anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3408), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9766), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7281), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613948,57 +628724,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174511] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169200] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9440), 1, - anon_sym_RBRACK, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 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, - [169238] = 9, - ACTIONS(9445), 1, + ACTIONS(9634), 1, anon_sym_RBRACK, - ACTIONS(9447), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(9442), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614006,28 +628754,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174551] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169276] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9450), 1, + ACTIONS(9636), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614035,28 +628784,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174591] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169314] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(3154), 1, + STATE(4845), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9756), 1, + STATE(9797), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7222), 2, + STATE(7301), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614064,69 +628814,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174631] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169352] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(5251), 1, - sym_type_constraint, - STATE(6123), 1, + ACTIONS(9638), 1, + anon_sym_RBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(9679), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7237), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 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, - [169390] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4173), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4171), 13, + STATE(7273), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [169416] = 3, + [174671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4310), 4, + ACTIONS(4319), 4, anon_sym_AT, anon_sym_LPAREN, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4308), 13, + ACTIONS(4317), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -614140,50 +628867,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169442] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4316), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4314), 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, + [174697] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169468] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9452), 1, + ACTIONS(9640), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614191,28 +628897,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174737] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169506] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9454), 1, - anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(4988), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9714), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7293), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614220,21 +628927,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [169544] = 3, + [174777] = 5, + ACTIONS(9642), 1, + anon_sym_LT, + STATE(7506), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 4, + ACTIONS(4189), 4, anon_sym_AT, anon_sym_LPAREN, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4101), 13, + ACTIONS(4128), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -614244,56 +628952,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169570] = 9, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9456), 1, - anon_sym_RBRACK, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [174807] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169608] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9458), 1, - anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5197), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9508), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7292), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614301,28 +628982,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174847] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169646] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9460), 1, - anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3623), 1, + sym_type_constraint, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9679), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7334), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614330,28 +629012,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174887] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169684] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(3697), 1, + STATE(3618), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9653), 1, + STATE(9766), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7241), 2, + STATE(7281), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614359,28 +629042,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174927] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169722] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(4911), 1, + STATE(5812), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9433), 1, + STATE(9548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7290), 2, + STATE(7296), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614388,28 +629072,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [174967] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169760] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(5755), 1, - sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9553), 1, + STATE(8533), 1, + sym_type_constraint, + STATE(9795), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7221), 2, + STATE(7356), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614417,28 +629102,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175007] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169798] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9462), 1, + ACTIONS(9644), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614446,28 +629132,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175047] = 10, + ACTIONS(9646), 1, sym__alpha_identifier, - [169836] = 9, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9464), 1, + ACTIONS(9649), 1, anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9654), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(9651), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614475,28 +629162,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175087] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169874] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9466), 1, + ACTIONS(9657), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614504,28 +629192,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175127] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169912] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9468), 1, + ACTIONS(9659), 1, anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614533,28 +629222,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175167] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169950] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(5775), 1, + STATE(3283), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9743), 1, + STATE(9861), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7236), 2, + STATE(7347), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614562,28 +629252,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175207] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [169988] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(3032), 1, + STATE(3763), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9781), 1, + STATE(9679), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7250), 2, + STATE(7334), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614591,28 +629282,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175247] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [170026] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(899), 1, + STATE(5811), 1, sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9810), 1, + STATE(9493), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7254), 2, + STATE(7345), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614620,57 +629312,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [170064] = 9, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(3531), 1, - sym_type_constraint, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9653), 1, - sym_simple_identifier, + [175287] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7241), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4166), 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, - [170102] = 9, - ACTIONS(8531), 1, + [175313] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9470), 1, - anon_sym_RBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7272), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614678,28 +629363,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175350] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170140] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9472), 1, - anon_sym_RBRACK, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9773), 1, sym_simple_identifier, - STATE(6587), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175387] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614707,28 +629419,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175424] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170178] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(3430), 1, - sym_type_constraint, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9781), 1, + STATE(9480), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7250), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614736,56 +629447,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [170216] = 9, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8341), 1, - sym_type_constraint, - STATE(9440), 1, - sym_simple_identifier, + [175461] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7282), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(7173), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7171), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170254] = 9, - ACTIONS(9074), 1, + [175486] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9474), 1, - anon_sym_LBRACK, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8231), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(8894), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9309), 2, + STATE(7227), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9068), 8, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614793,48 +629497,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175523] = 10, + ACTIONS(9208), 1, sym__alpha_identifier, - [170291] = 3, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9661), 1, + anon_sym_LBRACK, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, + sym__simple_user_type, + STATE(8743), 1, + sym_user_type, 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(9121), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175562] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170316] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9602), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7239), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614842,26 +629554,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175599] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170351] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9758), 1, + STATE(10151), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614869,26 +629582,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175636] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [170386] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9663), 1, + anon_sym_LBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7199), 3, + STATE(7608), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614896,53 +629611,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [170421] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, + [175675] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7169), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(5185), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(5183), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170456] = 8, - ACTIONS(8531), 1, + [175700] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7186), 3, + STATE(7232), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614950,26 +629661,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175737] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170491] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9721), 1, + STATE(9564), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614977,26 +629689,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175774] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170526] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9748), 1, + STATE(9722), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615004,26 +629717,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175811] = 10, + ACTIONS(8672), 1, sym__alpha_identifier, - [170561] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9663), 1, + anon_sym_LBRACK, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7888), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7164), 3, + STATE(7608), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615031,26 +629746,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175850] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170596] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7203), 3, + STATE(7262), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615058,26 +629774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175887] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170631] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9560), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7190), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615085,54 +629802,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [170666] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9967), 1, - sym_simple_identifier, + [175924] = 5, + ACTIONS(9665), 1, + anon_sym_DOT, + STATE(7338), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7269), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(4155), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4153), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170701] = 9, - ACTIONS(8531), 1, + [175953] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9476), 1, - anon_sym_LBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7740), 2, + STATE(7238), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8503), 8, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615140,76 +629854,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [175990] = 10, + ACTIONS(9434), 1, sym__alpha_identifier, - [170738] = 8, - ACTIONS(8531), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9667), 1, + anon_sym_LBRACK, + STATE(5660), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5684), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(5692), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(5705), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7175), 3, + STATE(5728), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 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, - [170773] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7155), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7153), 13, + ACTIONS(9440), 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, + [176029] = 10, + ACTIONS(9484), 1, sym__alpha_identifier, - [170798] = 9, - ACTIONS(9220), 1, + ACTIONS(9492), 1, sym__backtick_identifier, - ACTIONS(9478), 1, + ACTIONS(9669), 1, anon_sym_LBRACK, - STATE(3703), 1, + STATE(7150), 1, sym_simple_identifier, - STATE(3742), 1, - sym__simple_user_type, - STATE(3930), 1, + STATE(7215), 1, sym__lexical_identifier, - STATE(4027), 1, + STATE(7220), 1, + sym__simple_user_type, + STATE(7229), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4042), 2, + STATE(7326), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9210), 8, + ACTIONS(9490), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615217,26 +629912,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176068] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170835] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9669), 1, + STATE(9820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615244,26 +629940,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176105] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170870] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9685), 1, + STATE(9475), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615271,26 +629968,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176142] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170905] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7178), 3, + STATE(7226), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615298,50 +629996,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176179] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170940] = 5, - ACTIONS(9480), 1, - anon_sym_LT, - STATE(7561), 1, - sym_type_arguments, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9652), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4108), 10, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [176216] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [170969] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(10148), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7189), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7288), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615349,26 +630052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176253] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171004] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9660), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7233), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615376,20 +630080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [171039] = 5, - ACTIONS(9482), 1, + [176290] = 5, + ACTIONS(9671), 1, anon_sym_LPAREN, - STATE(7119), 1, + STATE(7182), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7106), 3, + ACTIONS(7089), 3, anon_sym_AT, anon_sym_RBRACK, sym__backtick_identifier, - ACTIONS(7104), 11, + ACTIONS(7087), 11, anon_sym_get, anon_sym_set, anon_sym_in, @@ -615401,113 +630104,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171068] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5047), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5045), 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, + [176319] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171093] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7191), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(7189), 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, - [171118] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5140), 3, + ACTIONS(9420), 1, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5138), 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, - [171143] = 3, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9474), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7113), 13, + STATE(7302), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_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, + [176356] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171168] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9696), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7257), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7234), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615515,27 +630160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176393] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171203] = 9, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9476), 1, - anon_sym_LBRACK, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7837), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7740), 2, + STATE(7251), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8503), 8, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615543,48 +630188,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [171240] = 3, + [176430] = 6, + ACTIONS(9679), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 3, + ACTIONS(9676), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7172), 13, - anon_sym_get, - anon_sym_set, + ACTIONS(9681), 2, anon_sym_dynamic, anon_sym_suspend, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(9683), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, + ACTIONS(9673), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171265] = 8, - ACTIONS(8531), 1, + [176461] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9796), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7274), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615592,27 +630241,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176498] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171300] = 9, - ACTIONS(1752), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9484), 1, - anon_sym_LBRACK, - STATE(5398), 1, - sym_simple_identifier, - STATE(5504), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5515), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, sym__simple_user_type, - STATE(5543), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5573), 2, + STATE(7253), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(1688), 8, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615620,45 +630269,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [171337] = 4, - ACTIONS(8886), 1, - anon_sym_COLON, + [176535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, + ACTIONS(4009), 5, anon_sym_AT, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(3818), 10, + ACTIONS(4004), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171364] = 5, - ACTIONS(9486), 1, - anon_sym_DOT, - STATE(7260), 1, - aux_sym_user_type_repeat1, + [176560] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 3, + ACTIONS(5161), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4075), 11, + ACTIONS(5159), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -615668,25 +630313,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171393] = 8, - ACTIONS(8531), 1, + [176585] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9812), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7259), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615694,72 +630341,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176622] = 10, + ACTIONS(9386), 1, sym__alpha_identifier, - [171428] = 3, + ACTIONS(9398), 1, + sym__backtick_identifier, + ACTIONS(9685), 1, + anon_sym_LBRACK, + STATE(3554), 1, + sym_simple_identifier, + STATE(3648), 1, + sym__lexical_identifier, + STATE(3688), 1, + sym__simple_user_type, + STATE(3724), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4865), 13, + STATE(3979), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9394), 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, + [176661] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171453] = 5, - ACTIONS(9486), 1, - anon_sym_DOT, - STATE(7253), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4140), 11, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [176698] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171482] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9695), 1, + STATE(9477), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7283), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615767,26 +630426,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176735] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171517] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9709), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7230), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615794,16 +630454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [171552] = 3, + [176772] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 3, + ACTIONS(5165), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4955), 13, + ACTIONS(5163), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -615817,21 +630476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171577] = 5, - ACTIONS(9488), 1, - anon_sym_DOT, - STATE(7260), 1, - aux_sym_user_type_repeat1, + [176797] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 3, + ACTIONS(7181), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4101), 11, + ACTIONS(7179), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -615841,25 +630498,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171606] = 8, - ACTIONS(8531), 1, + [176822] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9706), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7258), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7243), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615867,48 +630526,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176859] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171641] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4927), 13, + STATE(7255), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_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, + [176896] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171666] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9692), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7260), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615916,81 +630582,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [171701] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9629), 1, - sym_simple_identifier, + [176933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7191), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171736] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, + [176958] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7208), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7187), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171771] = 9, - ACTIONS(9240), 1, + [176983] = 10, + ACTIONS(9448), 1, + sym__alpha_identifier, + ACTIONS(9456), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9687), 1, anon_sym_LBRACK, - STATE(7079), 1, + STATE(7266), 1, sym_simple_identifier, - STATE(7159), 1, - sym__simple_user_type, - STATE(7160), 1, + STATE(7314), 1, sym__lexical_identifier, - STATE(7170), 1, + STATE(7333), 1, + sym__simple_user_type, + STATE(7534), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7234), 2, + STATE(7861), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9234), 8, + ACTIONS(9454), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615998,26 +630655,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177022] = 10, + ACTIONS(9402), 1, sym__alpha_identifier, - [171808] = 8, - ACTIONS(8531), 1, + ACTIONS(9410), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + ACTIONS(9689), 1, + anon_sym_LBRACK, + STATE(5826), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(5841), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(5842), 1, + sym__lexical_identifier, + STATE(5863), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7173), 3, + STATE(6351), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(9408), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616025,27 +630684,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177061] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171843] = 9, - ACTIONS(9312), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9493), 1, - anon_sym_LBRACK, - STATE(5617), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5634), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(5641), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(5653), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5695), 2, + STATE(7242), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9306), 8, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616053,26 +630712,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177098] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171880] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9869), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, + STATE(7307), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + STATE(7248), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616080,26 +630740,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177135] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [171915] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9436), 1, + STATE(9904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7272), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616107,53 +630768,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [171950] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9226), 1, - anon_sym_AT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9380), 1, - sym_simple_identifier, + [177172] = 5, + ACTIONS(9665), 1, + anon_sym_DOT, + STATE(7297), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7263), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(4195), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4193), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171985] = 8, - ACTIONS(8531), 1, + [177201] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9435), 1, + STATE(9683), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616161,27 +630820,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177238] = 10, + ACTIONS(9248), 1, sym__alpha_identifier, - [172020] = 9, - ACTIONS(9106), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9495), 1, + ACTIONS(9691), 1, anon_sym_LBRACK, - STATE(8261), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(5617), 1, sym_simple_identifier, - STATE(8359), 1, + STATE(5653), 1, sym__simple_user_type, - STATE(8637), 1, + STATE(5738), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9038), 2, + STATE(5775), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9102), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616189,51 +630849,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172057] = 6, - ACTIONS(9503), 1, - anon_sym_LPAREN, + [177277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9500), 2, + ACTIONS(5181), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9505), 2, - anon_sym_dynamic, - anon_sym_suspend, - ACTIONS(9507), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9497), 8, + ACTIONS(5179), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172088] = 8, - ACTIONS(8531), 1, + [177302] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10056), 1, + STATE(9774), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7278), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616241,82 +630899,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172123] = 9, - ACTIONS(9276), 1, - sym__backtick_identifier, - ACTIONS(9509), 1, - anon_sym_LBRACK, - STATE(5767), 1, - sym_simple_identifier, - STATE(5790), 1, - sym__lexical_identifier, - STATE(5791), 1, - sym__simple_user_type, - STATE(5827), 1, - sym_user_type, + [177339] = 5, + ACTIONS(9693), 1, + anon_sym_DOT, + STATE(7338), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5895), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9270), 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, - [172160] = 9, - ACTIONS(9296), 1, + ACTIONS(4168), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9511), 1, - anon_sym_LBRACK, - STATE(7167), 1, - sym_simple_identifier, - STATE(7256), 1, - sym__simple_user_type, - STATE(7289), 1, - sym__lexical_identifier, - STATE(7507), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7785), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9290), 8, + ACTIONS(4166), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172197] = 8, - ACTIONS(8531), 1, + [177368] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(10058), 1, + STATE(9771), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7337), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616324,80 +630951,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172232] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, + [177405] = 4, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7198), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172267] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, - sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, + [177432] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7202), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(7145), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7143), 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, - [172302] = 8, - ACTIONS(8531), 1, + [177457] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7201), 3, + STATE(7237), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616405,26 +631024,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177494] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172337] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9711), 1, + STATE(9654), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616432,26 +631052,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177531] = 10, + ACTIONS(9216), 1, sym__alpha_identifier, - [172372] = 8, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9696), 1, + anon_sym_LBRACK, + STATE(5685), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(8314), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(8804), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7210), 3, + STATE(9412), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616459,27 +631081,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177570] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172407] = 9, - ACTIONS(9119), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9513), 1, - anon_sym_LBRACK, - STATE(5639), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5727), 1, + STATE(9697), 1, sym_simple_identifier, - STATE(5753), 1, - sym__simple_user_type, - STATE(5774), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5799), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9115), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616487,27 +631109,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177607] = 10, + ACTIONS(9285), 1, sym__alpha_identifier, - [172444] = 9, - ACTIONS(9096), 1, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(9515), 1, + ACTIONS(9698), 1, anon_sym_LBRACK, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(5682), 1, sym__lexical_identifier, - STATE(5614), 1, + STATE(5787), 1, + sym_simple_identifier, + STATE(5813), 1, sym__simple_user_type, - STATE(5678), 1, + STATE(5827), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5736), 2, + STATE(5876), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9090), 8, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616515,26 +631138,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177646] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172481] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9868), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7215), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616542,26 +631166,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177683] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172516] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9695), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7216), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616569,26 +631194,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177720] = 10, + ACTIONS(9464), 1, sym__alpha_identifier, - [172551] = 8, - ACTIONS(8531), 1, + ACTIONS(9472), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(7357), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(7388), 1, + sym__lexical_identifier, + STATE(7566), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7828), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7192), 3, + STATE(7840), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(9470), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616596,20 +631223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172586] = 3, + [177759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, + ACTIONS(5189), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(3818), 11, + ACTIONS(5187), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -616619,25 +631245,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172611] = 8, - ACTIONS(8531), 1, + [177784] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9226), 1, + ACTIONS(9420), 1, anon_sym_AT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9475), 1, + STATE(9694), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, + STATE(7613), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, + STATE(7628), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616645,53 +631273,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177821] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172646] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9886), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7181), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177858] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4181), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4179), 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, - [172681] = 8, - ACTIONS(8531), 1, + [177883] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(6662), 1, sym__simple_user_type, - STATE(7242), 1, + STATE(7307), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7209), 3, + STATE(7264), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616699,27 +631351,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177920] = 10, + ACTIONS(1724), 1, sym__alpha_identifier, - [172716] = 9, - ACTIONS(9262), 1, + ACTIONS(1788), 1, sym__backtick_identifier, - ACTIONS(9517), 1, + ACTIONS(9702), 1, anon_sym_LBRACK, - STATE(7239), 1, + STATE(5340), 1, sym_simple_identifier, - STATE(7370), 1, - sym__lexical_identifier, - STATE(7428), 1, + STATE(5443), 1, sym__simple_user_type, - STATE(7543), 1, + STATE(5458), 1, + sym__lexical_identifier, + STATE(5501), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7791), 2, + STATE(5535), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9256), 8, + ACTIONS(3092), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616727,53 +631380,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [177959] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172753] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9734), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7179), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177996] = 5, + ACTIONS(9704), 1, + anon_sym_LT, + STATE(7653), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4128), 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, - [172788] = 8, - ACTIONS(8531), 1, + [178025] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(9591), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7207), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(7343), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616781,26 +631460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178062] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [172823] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9400), 1, + anon_sym_LPAREN, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(824), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(884), 1, sym__simple_user_type, - STATE(7242), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7166), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8503), 8, + STATE(972), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616808,49 +631487,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172858] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(6509), 1, - sym_type_arguments, - STATE(8264), 1, - sym_function_value_parameters, + [178098] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4319), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4317), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172890] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9521), 1, + [178122] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(1247), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9708), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616858,25 +631535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178158] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - [172922] = 8, - ACTIONS(329), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9248), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(2984), 1, + STATE(5617), 1, + sym_simple_identifier, + STATE(5653), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3072), 2, + STATE(5831), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(251), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616884,25 +631562,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178194] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [172956] = 8, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9525), 1, + ACTIONS(9710), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1726), 2, + STATE(2335), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616910,25 +631589,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178230] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [172990] = 8, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9248), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2984), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3075), 2, + STATE(8292), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616936,24 +631616,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178266] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [173024] = 7, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9323), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9714), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9360), 3, + STATE(591), 2, sym_variable_declaration, sym_multi_variable_declaration, - sym__lambda_parameter, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616961,25 +631643,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178302] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [173056] = 8, - ACTIONS(9082), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9284), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(4864), 1, + STATE(4897), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5031), 2, + STATE(5005), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616987,25 +631670,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178338] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [173090] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9716), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8237), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(593), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617013,25 +631697,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178374] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [173124] = 8, - ACTIONS(9096), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9527), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9529), 1, + ACTIONS(9718), 1, anon_sym_DOT, - STATE(5562), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5769), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5397), 2, + STATE(569), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9090), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617039,25 +631724,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178410] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [173158] = 8, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - ACTIONS(9533), 1, - anon_sym_DOT, - STATE(832), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4616), 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(333), 8, + STATE(4674), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617065,24 +631751,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178446] = 9, + ACTIONS(9232), 1, sym__alpha_identifier, - [173192] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9535), 1, + ACTIONS(9240), 1, + sym__backtick_identifier, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(6509), 1, - sym_type_arguments, - STATE(8287), 1, - sym_function_value_parameters, + STATE(4544), 1, + sym_simple_identifier, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4633), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(4945), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617090,25 +631778,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178482] = 9, + ACTIONS(9232), 1, sym__alpha_identifier, - [173224] = 8, - ACTIONS(411), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - ACTIONS(9537), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, + STATE(4544), 1, sym_simple_identifier, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4633), 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(333), 8, + STATE(4946), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9236), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178518] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5306), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617117,24 +631830,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173258] = 8, - ACTIONS(329), 1, + [178550] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9541), 1, + ACTIONS(9724), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2409), 2, + STATE(2661), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617142,25 +631857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178586] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [173292] = 8, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9248), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2984), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3086), 2, + STATE(9467), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617168,50 +631884,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173326] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4877), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + [178622] = 5, + ACTIONS(9726), 1, + anon_sym_DOT, + STATE(7375), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(4168), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4166), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173358] = 8, - ACTIONS(8531), 1, + [178650] = 9, + ACTIONS(9232), 1, + sym__alpha_identifier, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4633), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9651), 2, + STATE(4935), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617219,25 +631934,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173392] = 8, - ACTIONS(9082), 1, - sym__backtick_identifier, - ACTIONS(9284), 1, + [178686] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, - sym_simple_identifier, - STATE(4864), 1, - sym__simple_user_type, + STATE(3358), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5030), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9076), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617246,24 +631959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173426] = 8, - ACTIONS(411), 1, + [178718] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9731), 1, anon_sym_DOT, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(435), 2, + STATE(588), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617271,24 +631986,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173460] = 7, - ACTIONS(6465), 1, + [178754] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4784), 1, + STATE(5310), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617297,24 +632011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173492] = 8, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, + [178786] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9549), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(4687), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2413), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617323,23 +632036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173526] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + [178818] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2889), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(9618), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617347,25 +632063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178854] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [173558] = 8, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9553), 1, + ACTIONS(9733), 1, anon_sym_DOT, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, + STATE(581), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617373,24 +632090,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173592] = 7, - ACTIONS(6465), 1, + [178890] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4772), 1, + STATE(5313), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617399,24 +632115,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173624] = 8, - ACTIONS(411), 1, + [178922] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9555), 1, + ACTIONS(9735), 1, anon_sym_DOT, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, + STATE(2646), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617424,25 +632142,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178958] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [173658] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9557), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1966), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(9796), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617450,25 +632169,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178994] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [173692] = 8, - ACTIONS(9100), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9559), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9561), 1, + ACTIONS(9737), 1, anon_sym_DOT, - STATE(5660), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5291), 2, + STATE(584), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9098), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617476,24 +632196,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179030] = 9, + ACTIONS(9208), 1, sym__alpha_identifier, - [173726] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3562), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(8292), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617501,51 +632223,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173758] = 8, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, - anon_sym_LPAREN, - ACTIONS(9565), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + [179066] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(429), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4004), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173792] = 8, - ACTIONS(411), 1, + [179090] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9567), 1, + ACTIONS(9739), 1, anon_sym_DOT, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(437), 2, + STATE(2417), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617553,25 +632271,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179126] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [173826] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9741), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10051), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2602), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617579,25 +632298,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179162] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [173860] = 8, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9569), 1, + ACTIONS(9743), 1, anon_sym_DOT, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(631), 2, + STATE(2319), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617605,24 +632325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173894] = 7, - ACTIONS(6465), 1, + [179198] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3592), 1, + STATE(4869), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617631,23 +632350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173926] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9521), 1, + [179230] = 9, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(1219), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(8325), 1, + sym_simple_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(8291), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617655,25 +632377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [173958] = 8, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, + [179266] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - ACTIONS(9571), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(2849), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1302), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617682,24 +632402,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173992] = 8, - ACTIONS(8531), 1, + [179298] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(2915), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9517), 2, + STATE(2971), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617707,25 +632429,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179334] = 9, + ACTIONS(9258), 1, sym__alpha_identifier, - [174026] = 8, - ACTIONS(8531), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9749), 1, + anon_sym_DOT, + STATE(2853), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3399), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9608), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2304), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617733,25 +632456,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179370] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [174060] = 8, - ACTIONS(197), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9252), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4511), 1, + ACTIONS(9751), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(4562), 1, - sym__simple_user_type, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4625), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(111), 8, + STATE(452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617759,24 +632483,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174094] = 7, - ACTIONS(6465), 1, + [179406] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9521), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1213), 1, + STATE(5387), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617785,23 +632508,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174126] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9521), 1, + [179438] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(1214), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9753), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2330), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617809,25 +632535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179474] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [174158] = 8, - ACTIONS(9106), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(8261), 1, + ACTIONS(9755), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8359), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8247), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9102), 8, + STATE(2660), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617835,25 +632562,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179510] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [174192] = 8, - ACTIONS(9100), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9458), 1, anon_sym_LPAREN, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5716), 1, + STATE(4538), 1, + sym_simple_identifier, + STATE(4616), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5728), 2, + STATE(4669), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9098), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617861,26 +632589,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179546] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [174226] = 9, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(9074), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9573), 1, - anon_sym_COLON, - ACTIONS(9575), 1, - sym__automatic_semicolon, - STATE(5637), 1, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4534), 1, sym__lexical_identifier, - STATE(8606), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(10034), 1, - sym_class_body, + STATE(4616), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + STATE(4692), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617888,50 +632616,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174262] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3558), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + [179582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4181), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4179), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174294] = 8, - ACTIONS(329), 1, + [179606] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9577), 1, + ACTIONS(9757), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1305), 2, + STATE(2372), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617939,25 +632664,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174328] = 8, - ACTIONS(9056), 1, - sym__backtick_identifier, - ACTIONS(9579), 1, + [179642] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - ACTIONS(9581), 1, + STATE(2768), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 3, anon_sym_DOT, - STATE(2906), 1, - sym__lexical_identifier, - STATE(3644), 1, - sym_simple_identifier, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179674] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2817), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1838), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9050), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617966,23 +632714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174362] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + [179706] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3556), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9759), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2718), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617990,25 +632741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179742] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [174394] = 8, - ACTIONS(9106), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8359), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8246), 2, + STATE(9552), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9102), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618016,24 +632768,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179778] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [174428] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3555), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9761), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(450), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618041,25 +632795,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179814] = 9, + ACTIONS(9258), 1, sym__alpha_identifier, - [174460] = 8, - ACTIONS(329), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9583), 1, + ACTIONS(9763), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1330), 2, + STATE(2314), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618067,24 +632822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174494] = 7, - ACTIONS(6465), 1, + [179850] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(2887), 1, + STATE(4673), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618093,50 +632847,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174526] = 8, - ACTIONS(9106), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(8261), 1, - sym__lexical_identifier, - STATE(8269), 1, - sym_simple_identifier, - STATE(8359), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8237), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9102), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [179882] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [174560] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9767), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9512), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2341), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618144,45 +632874,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174594] = 3, + [179918] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4129), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9587), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(9585), 12, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_in, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174618] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9563), 1, + [179950] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3090), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9769), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2377), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618190,25 +632926,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179986] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [174650] = 8, - ACTIONS(9056), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9250), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + ACTIONS(9773), 1, + anon_sym_DOT, + STATE(5713), 1, sym__lexical_identifier, - STATE(3302), 1, - sym__simple_user_type, + STATE(5807), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3724), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9050), 8, + STATE(5436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618216,25 +632953,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180022] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [174684] = 8, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9589), 1, + ACTIONS(9775), 1, anon_sym_DOT, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(441), 2, + STATE(2381), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618242,25 +632980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180058] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [174718] = 8, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9591), 1, + ACTIONS(9777), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1332), 2, + STATE(2446), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618268,24 +633007,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174752] = 7, - ACTIONS(6465), 1, + [180094] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4630), 1, + STATE(3355), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618294,23 +633032,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174784] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9543), 1, + [180126] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4851), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(10030), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618318,25 +633059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180162] = 9, + ACTIONS(9216), 1, sym__alpha_identifier, - [174816] = 8, - ACTIONS(9082), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9284), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(4864), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5033), 2, + STATE(5794), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9076), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618344,24 +633086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [174850] = 7, - ACTIONS(6465), 1, + [180198] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3091), 1, + STATE(2867), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618370,24 +633111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174882] = 8, - ACTIONS(491), 1, + [180230] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9593), 1, + ACTIONS(9779), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2656), 2, + STATE(2367), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618395,24 +633138,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180266] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [174916] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3679), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9781), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618420,25 +633165,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180302] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [174948] = 8, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9595), 1, - anon_sym_DOT, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1297), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + STATE(9955), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618446,24 +633192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180338] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [174982] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3096), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(9561), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618471,25 +633219,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180374] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175014] = 8, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9252), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - STATE(4503), 1, + STATE(3308), 1, sym_simple_identifier, - STATE(4511), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4562), 1, + STATE(3636), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4636), 2, + STATE(3807), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618497,25 +633246,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180410] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [175048] = 8, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9597), 1, - anon_sym_DOT, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1619), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + STATE(9615), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618523,25 +633273,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180446] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175082] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9783), 1, + anon_sym_DOT, + STATE(3332), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9761), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618549,25 +633300,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180482] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [175116] = 8, - ACTIONS(9056), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9250), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3302), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3735), 2, + STATE(9759), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9050), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618575,25 +633327,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180518] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175150] = 8, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9599), 1, + ACTIONS(9785), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, + STATE(2695), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618601,24 +633354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180554] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175184] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3677), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9787), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2362), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618626,25 +633381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180590] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [175216] = 8, - ACTIONS(8531), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5768), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9928), 2, + STATE(5790), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618652,25 +633408,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180626] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [175250] = 8, - ACTIONS(9056), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9250), 1, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(2895), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(2906), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3302), 1, + STATE(3222), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3734), 2, + STATE(3281), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9050), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618678,46 +633435,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180662] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175284] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9412), 1, + anon_sym_LPAREN, + STATE(3308), 1, + sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(3818), 10, + STATE(3826), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [175308] = 8, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, + [180698] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9601), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + STATE(5392), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(432), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618726,24 +633487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175342] = 8, - ACTIONS(411), 1, + [180730] = 9, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9430), 1, anon_sym_LPAREN, - ACTIONS(9603), 1, - anon_sym_DOT, - STATE(832), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(636), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + STATE(5821), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618751,24 +633514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [175376] = 7, - ACTIONS(6465), 1, + [180766] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9521), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(1244), 1, - sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, + STATE(8353), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618777,24 +633539,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175408] = 8, - ACTIONS(411), 1, + [180798] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9282), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(901), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(966), 2, + STATE(9974), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618802,45 +633566,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180834] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175442] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, + anon_sym_LPAREN, + ACTIONS(9791), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 4, - anon_sym_AT, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180870] = 9, + ACTIONS(9248), 1, + sym__alpha_identifier, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9793), 1, anon_sym_LPAREN, + ACTIONS(9795), 1, anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4314), 11, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5820), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5493), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, 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, - [175466] = 7, - ACTIONS(6465), 1, + [180906] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3676), 1, + STATE(5395), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618849,23 +633645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175498] = 7, - ACTIONS(6465), 1, + [180938] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5225), 1, + STATE(4655), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618874,23 +633670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175530] = 7, - ACTIONS(6465), 1, + [180970] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3997), 1, + STATE(4814), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618899,24 +633695,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175562] = 8, - ACTIONS(491), 1, + [181002] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9607), 1, + ACTIONS(9799), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2612), 2, + STATE(2735), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618924,25 +633722,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181038] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [175596] = 8, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8231), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5731), 2, + STATE(9922), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618950,24 +633749,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181074] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - [175630] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9430), 1, anon_sym_LPAREN, - STATE(2873), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5617), 1, + sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(5816), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618975,25 +633776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181110] = 8, + ACTIONS(8672), 1, sym__alpha_identifier, - [175662] = 8, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - ACTIONS(9609), 1, - anon_sym_DOT, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(8564), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(452), 2, + STATE(9451), 3, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + sym__lambda_parameter, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619001,24 +633802,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [175696] = 7, - ACTIONS(6465), 1, + [181144] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4003), 1, + STATE(4095), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619027,23 +633827,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175728] = 7, - ACTIONS(6465), 1, + [181176] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + ACTIONS(9803), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2652), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181212] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9519), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(6509), 1, - sym_type_arguments, - STATE(8265), 1, + STATE(4649), 1, sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619052,24 +633879,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175760] = 8, - ACTIONS(8531), 1, + [181244] = 9, + ACTIONS(9208), 1, + sym__alpha_identifier, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6530), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(6587), 1, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8452), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8247), 2, + STATE(8306), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619077,25 +633906,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181280] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [175794] = 8, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - ACTIONS(9611), 1, - anon_sym_DOT, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3636), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2680), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(3793), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619103,25 +633933,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181316] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [175828] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9613), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2615), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(9563), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619129,49 +633960,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181352] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [175862] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(4081), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(4108), 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, - [175894] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(3455), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(2899), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3222), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(3297), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619179,24 +633987,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [175926] = 7, - ACTIONS(6465), 1, + [181388] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4006), 1, + STATE(5292), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619205,24 +634012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175958] = 8, - ACTIONS(491), 1, + [181420] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9615), 1, + ACTIONS(9805), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2599), 2, + STATE(2395), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619230,25 +634039,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181456] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [175992] = 8, - ACTIONS(9096), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9527), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9617), 1, + ACTIONS(9807), 1, anon_sym_DOT, - STATE(5562), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5769), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5387), 2, + STATE(2607), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9090), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619256,25 +634066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181492] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [176026] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9254), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3144), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(3535), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3643), 2, + STATE(9913), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619282,24 +634093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176060] = 7, - ACTIONS(6465), 1, + [181528] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4634), 1, + STATE(4904), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619308,50 +634118,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176092] = 8, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, - anon_sym_LPAREN, - ACTIONS(9619), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2392), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [181560] = 10, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, sym__alpha_identifier, - [176126] = 8, - ACTIONS(411), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9531), 1, - anon_sym_LPAREN, - ACTIONS(9621), 1, - anon_sym_DOT, - STATE(832), 1, + ACTIONS(9809), 1, + anon_sym_COLON, + ACTIONS(9811), 1, + sym__automatic_semicolon, + STATE(5685), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(8727), 1, sym_simple_identifier, + STATE(9486), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619359,25 +634146,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181598] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [176160] = 8, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9623), 1, + ACTIONS(9813), 1, anon_sym_DOT, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(572), 2, + STATE(2728), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619385,24 +634173,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176194] = 7, - ACTIONS(6465), 1, + [181634] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5222), 1, + STATE(4111), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619411,23 +634198,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176226] = 7, - ACTIONS(6465), 1, + [181666] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9521), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(877), 1, + STATE(5304), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619436,49 +634223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176258] = 7, - ACTIONS(6465), 1, + [181698] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3584), 1, + STATE(4075), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 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, - [176290] = 8, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(9523), 1, - anon_sym_LPAREN, - ACTIONS(9625), 1, - anon_sym_DOT, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1713), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619487,45 +634248,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176324] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4103), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4101), 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, + [181730] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [176348] = 8, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9254), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3144), 1, + STATE(824), 1, sym_simple_identifier, - STATE(3535), 1, + STATE(884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3662), 2, + STATE(1004), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619533,25 +634275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181766] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [176382] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9630), 2, + STATE(9657), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619559,25 +634302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181802] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [176416] = 8, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9627), 1, + ACTIONS(9815), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2423), 2, + STATE(2671), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619585,24 +634329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176450] = 7, - ACTIONS(6465), 1, + [181838] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9629), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4859), 1, + STATE(4667), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619611,24 +634354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176482] = 8, - ACTIONS(411), 1, + [181870] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9631), 1, + ACTIONS(9817), 1, anon_sym_DOT, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(632), 2, + STATE(457), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619636,25 +634381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181906] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [176516] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9819), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9833), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619662,17 +634408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176550] = 3, + [181942] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4310), 4, + ACTIONS(4315), 4, anon_sym_AT, anon_sym_LPAREN, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4308), 11, + ACTIONS(4313), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619684,16 +634429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176574] = 8, - ACTIONS(411), 1, + [181966] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9633), 1, + ACTIONS(9821), 1, anon_sym_DOT, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -619701,7 +634448,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(616), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619709,25 +634456,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182002] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [176608] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9823), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(866), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8246), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(434), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619735,24 +634483,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182038] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [176642] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9629), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9478), 1, anon_sym_LPAREN, - STATE(4900), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(2899), 1, + sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3222), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(3300), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619760,25 +634510,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182074] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [176674] = 8, - ACTIONS(8531), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5768), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9828), 2, + STATE(5797), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619786,46 +634537,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176708] = 3, + [182110] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9825), 1, + anon_sym_LPAREN, + STATE(6538), 1, + sym_type_arguments, + STATE(8327), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4171), 11, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176732] = 8, - ACTIONS(411), 1, + [182142] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9635), 1, - anon_sym_DOT, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(454), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + STATE(8306), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619833,25 +634589,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176766] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + [182178] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + STATE(1235), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9813), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619860,24 +634614,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176800] = 8, - ACTIONS(8531), 1, + [182210] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9829), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(6587), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8237), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619885,23 +634641,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176834] = 6, - ACTIONS(9639), 1, - anon_sym_AT, + [182246] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3275), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9642), 2, - anon_sym_LPAREN, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - STATE(7418), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9637), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619910,24 +634666,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176864] = 8, - ACTIONS(491), 1, + [182278] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9254), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3144), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(3535), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3690), 2, + STATE(9905), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619935,49 +634693,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176898] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4642), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + [182314] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(9833), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(9831), 12, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_in, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176930] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9521), 1, + [182338] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(864), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9835), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619985,25 +634741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [176962] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + [182374] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + STATE(4087), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9425), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620012,24 +634766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176996] = 8, - ACTIONS(8531), 1, + [182406] = 9, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9805), 2, + STATE(5790), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620037,25 +634793,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182442] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [177030] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(6662), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10055), 2, + STATE(8292), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620063,24 +634820,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [177064] = 7, - ACTIONS(6465), 1, + [182478] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5218), 1, + STATE(5267), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620089,23 +634845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177096] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9521), 1, + [182510] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(857), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9837), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(443), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620113,70 +634872,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182546] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [177128] = 5, - ACTIONS(9644), 1, - anon_sym_DOT, - STATE(7427), 1, - aux_sym_user_type_repeat1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4101), 10, + STATE(9684), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [182582] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [177156] = 5, - ACTIONS(9647), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, anon_sym_DOT, - STATE(7492), 1, - aux_sym_user_type_repeat1, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4140), 10, + STATE(431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [182618] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [177184] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3461), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9841), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620184,24 +634953,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182654] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [177216] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4644), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(8291), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620209,25 +634980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182690] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [177248] = 8, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9282), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9843), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(901), 1, - sym__simple_user_type, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(952), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(333), 8, + STATE(424), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620235,24 +635007,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [177282] = 7, - ACTIONS(6465), 1, + [182726] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4847), 1, + STATE(1277), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620261,49 +635032,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177314] = 8, - ACTIONS(8531), 1, + [182758] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(824), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9760), 2, + STATE(938), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 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, - [177348] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4587), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620311,25 +635059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182794] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [177380] = 8, - ACTIONS(9100), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(5638), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(5660), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(5716), 1, + STATE(5768), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5738), 2, + STATE(5794), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9098), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620337,25 +635086,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182830] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [177414] = 8, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9232), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(3011), 1, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3047), 2, + STATE(9787), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620363,25 +635113,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182866] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [177448] = 8, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9649), 1, + ACTIONS(9845), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1721), 2, + STATE(2609), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620389,24 +635140,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182902] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [177482] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(3971), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6662), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(8306), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620414,50 +635167,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182938] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [177514] = 8, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9651), 1, + ACTIONS(9847), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2588), 2, + STATE(2625), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182974] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4166), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177548] = 7, - ACTIONS(6465), 1, + [182998] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9535), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(6509), 1, - sym_type_arguments, - STATE(8273), 1, + STATE(4066), 1, sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620466,24 +635240,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177580] = 8, - ACTIONS(491), 1, + [183030] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9653), 1, + ACTIONS(9849), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2706), 2, + STATE(2659), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620491,25 +635267,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183066] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [177614] = 8, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9282), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(9851), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(901), 1, - sym__simple_user_type, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(950), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(333), 8, + STATE(433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620517,25 +635294,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183102] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [177648] = 8, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9244), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4561), 1, + ACTIONS(9853), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(4621), 1, + STATE(866), 1, sym_simple_identifier, - STATE(4890), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4938), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(7), 8, + STATE(606), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620543,51 +635321,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [177682] = 8, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(9244), 1, - anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4621), 1, - sym_simple_identifier, - STATE(4890), 1, - sym__simple_user_type, + [183138] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4908), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(7), 8, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4335), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177716] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + [183162] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + STATE(4651), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9661), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620596,24 +635367,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177750] = 8, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, + [183194] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - ACTIONS(9655), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(4074), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2428), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620622,24 +635392,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177784] = 8, - ACTIONS(411), 1, + [183226] = 9, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - ACTIONS(9657), 1, + ACTIONS(9855), 1, anon_sym_DOT, - STATE(832), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, + STATE(5474), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620647,25 +635419,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183262] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [177818] = 8, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9659), 1, + ACTIONS(9857), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2715), 2, + STATE(437), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620673,25 +635446,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [177852] = 8, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, + [183298] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - ACTIONS(9661), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + STATE(826), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(633), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620700,24 +635471,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177886] = 8, - ACTIONS(9100), 1, + [183330] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9242), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + ACTIONS(9859), 1, + anon_sym_DOT, + STATE(823), 1, sym__lexical_identifier, - STATE(5716), 1, - sym__simple_user_type, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5731), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9098), 8, + STATE(622), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620725,25 +635498,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [177920] = 8, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, + [183366] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - ACTIONS(9663), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + STATE(838), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(578), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620752,23 +635523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177954] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9605), 1, + [183398] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(4034), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4683), 1, + sym_simple_identifier, + STATE(4897), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(5050), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620776,25 +635550,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183434] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [177986] = 8, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9665), 1, - anon_sym_DOT, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(550), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + STATE(9723), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620802,25 +635577,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183470] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [178020] = 8, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9667), 1, + ACTIONS(9861), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1649), 2, + STATE(2677), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620828,24 +635604,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178054] = 7, - ACTIONS(6465), 1, + [183506] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4024), 1, + STATE(836), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620854,24 +635629,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178086] = 8, - ACTIONS(571), 1, - sym__backtick_identifier, - ACTIONS(9232), 1, + [183538] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(3011), 1, - sym__simple_user_type, + STATE(4076), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3030), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(495), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620880,24 +635654,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178120] = 8, - ACTIONS(8531), 1, + [183570] = 9, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9686), 2, + STATE(5797), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620905,25 +635681,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178154] = 8, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, + [183606] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - ACTIONS(9669), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + STATE(815), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(602), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620932,24 +635706,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178188] = 8, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, + [183638] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9765), 1, anon_sym_LPAREN, - ACTIONS(9671), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(4661), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2611), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620958,23 +635731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178222] = 7, - ACTIONS(6465), 1, + [183670] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4646), 1, + STATE(4145), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620983,23 +635756,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178254] = 7, - ACTIONS(6465), 1, + [183702] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9519), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(6509), 1, - sym_type_arguments, - STATE(8267), 1, + STATE(1264), 1, sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621008,24 +635781,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178286] = 8, - ACTIONS(8531), 1, + [183734] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9863), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9654), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2170), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621033,25 +635808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178320] = 8, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(9252), 1, + [183770] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4562), 1, - sym__simple_user_type, + STATE(2897), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4627), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(111), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621060,24 +635833,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178354] = 8, - ACTIONS(491), 1, + [183802] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9673), 1, + ACTIONS(9865), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2650), 2, + STATE(2658), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621085,25 +635860,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183838] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [178388] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9867), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8251), 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(8503), 8, + STATE(1746), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621111,25 +635887,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178422] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + [183874] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + STATE(2909), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9963), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621138,24 +635912,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178456] = 8, - ACTIONS(411), 1, + [183906] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9675), 1, + ACTIONS(9869), 1, anon_sym_DOT, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, + STATE(2715), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621163,25 +635939,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178490] = 8, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, + [183942] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - ACTIONS(9677), 1, - anon_sym_DOT, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + STATE(3563), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(591), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621190,23 +635964,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178524] = 7, - ACTIONS(6465), 1, + [183974] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(5277), 1, - sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, + STATE(8349), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621215,24 +635989,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178556] = 8, - ACTIONS(9074), 1, - sym__backtick_identifier, - ACTIONS(9242), 1, + [184006] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(8231), 1, - sym__simple_user_type, + STATE(4533), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5728), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9068), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621241,24 +636014,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178590] = 8, - ACTIONS(491), 1, + [184038] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9679), 1, + ACTIONS(9871), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2660), 2, + STATE(2435), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621266,52 +636041,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178624] = 9, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(9074), 1, - sym__backtick_identifier, - ACTIONS(9681), 1, - anon_sym_COLON, - ACTIONS(9683), 1, - sym__automatic_semicolon, - STATE(5637), 1, - sym__lexical_identifier, - STATE(8645), 1, - sym_simple_identifier, - STATE(9889), 1, - sym_class_body, + [184074] = 5, + ACTIONS(9873), 1, + anon_sym_LPAREN, + STATE(7863), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178660] = 8, - ACTIONS(329), 1, + [184102] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9685), 1, + ACTIONS(9875), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1572), 2, + STATE(2323), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621319,24 +636091,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178694] = 7, - ACTIONS(6465), 1, + [184138] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3499), 1, + STATE(3313), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621345,24 +636116,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178726] = 8, - ACTIONS(9100), 1, + [184170] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9559), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9687), 1, - anon_sym_DOT, - STATE(5660), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5338), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9098), 8, + STATE(9775), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621370,25 +636143,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184206] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - [178760] = 8, - ACTIONS(329), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - ACTIONS(9689), 1, + ACTIONS(9877), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(5820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, + STATE(5494), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621396,25 +636170,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178794] = 8, - ACTIONS(9074), 1, - sym__backtick_identifier, - ACTIONS(9242), 1, + [184242] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(8231), 1, - sym__simple_user_type, + STATE(3564), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5738), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9068), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621423,23 +636195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178828] = 7, - ACTIONS(6465), 1, + [184274] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5209), 1, + STATE(4535), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621448,24 +636220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178860] = 8, - ACTIONS(329), 1, + [184306] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9691), 1, + ACTIONS(9879), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1569), 2, + STATE(2437), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621473,24 +636247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178894] = 7, - ACTIONS(6465), 1, + [184342] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3968), 1, + STATE(3566), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621499,24 +636272,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178926] = 8, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(9523), 1, + [184374] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, anon_sym_LPAREN, - ACTIONS(9693), 1, - anon_sym_DOT, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, - sym_simple_identifier, + STATE(4927), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1658), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621525,24 +636297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178960] = 8, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, + [184406] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9827), 1, anon_sym_LPAREN, - ACTIONS(9695), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(814), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621551,24 +636322,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178994] = 8, - ACTIONS(329), 1, + [184438] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9697), 1, + ACTIONS(9881), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2603), 2, + STATE(2135), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621576,25 +636349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184474] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [179028] = 8, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9699), 1, + ACTIONS(9883), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1623), 2, + STATE(598), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621602,24 +636376,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179062] = 7, - ACTIONS(6465), 1, + [184510] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5227), 1, + STATE(3314), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621628,24 +636401,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179094] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + [184542] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + STATE(6538), 1, + sym_type_arguments, + STATE(8322), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9749), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621654,24 +636426,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179128] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + [184574] = 6, + ACTIONS(9887), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8247), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(9890), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7549), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9885), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621680,23 +636450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179162] = 7, - ACTIONS(6465), 1, + [184604] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9521), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(788), 1, + STATE(1290), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621705,23 +636475,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179194] = 7, - ACTIONS(6465), 1, + [184636] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4640), 1, + STATE(820), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184668] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9890), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621729,24 +636527,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184704] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [179226] = 7, - ACTIONS(6465), 1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + ACTIONS(9892), 1, + anon_sym_DOT, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(602), 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, + [184740] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5221), 1, + STATE(2906), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621755,24 +636579,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179258] = 8, - ACTIONS(491), 1, + [184772] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(9894), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2647), 2, + STATE(2403), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621780,47 +636606,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179292] = 5, - ACTIONS(9647), 1, - anon_sym_DOT, - STATE(7427), 1, - aux_sym_user_type_repeat1, + [184808] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4539), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4075), 10, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179320] = 7, - ACTIONS(6465), 1, + [184840] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4502), 1, + STATE(3681), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621829,24 +636656,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179352] = 8, - ACTIONS(329), 1, + [184872] = 10, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9539), 1, - anon_sym_LPAREN, - ACTIONS(9703), 1, - anon_sym_DOT, - STATE(2868), 1, + ACTIONS(9896), 1, + anon_sym_COLON, + ACTIONS(9898), 1, + sym__automatic_semicolon, + STATE(5685), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(8770), 1, sym_simple_identifier, + STATE(9812), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1624), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621854,25 +636684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179386] = 8, - ACTIONS(571), 1, - sym__backtick_identifier, - ACTIONS(9232), 1, + [184910] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2834), 1, - sym__lexical_identifier, - STATE(2850), 1, - sym_simple_identifier, - STATE(3011), 1, - sym__simple_user_type, + STATE(3595), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3112), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(495), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621881,23 +636709,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179420] = 7, - ACTIONS(6465), 1, + [184942] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4504), 1, + STATE(3316), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621906,23 +636734,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179452] = 7, - ACTIONS(6465), 1, + [184974] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9543), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4506), 1, + STATE(4697), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621931,24 +636759,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179484] = 8, - ACTIONS(329), 1, + [185006] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, + STATE(2826), 1, sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1628), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + STATE(3541), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621956,24 +636786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179518] = 7, - ACTIONS(6465), 1, + [185042] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9521), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(3678), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621982,23 +636811,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179550] = 7, - ACTIONS(6465), 1, + [185074] = 9, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, + sym__backtick_identifier, + ACTIONS(9771), 1, + anon_sym_LPAREN, + ACTIONS(9900), 1, + anon_sym_DOT, + STATE(5713), 1, + sym__lexical_identifier, + STATE(5807), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185110] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9521), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(807), 1, + STATE(3675), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622007,75 +636863,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179582] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + [185142] = 5, + ACTIONS(9902), 1, + anon_sym_DOT, + STATE(7567), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8246), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4195), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4193), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179616] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1279), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + [185170] = 5, + ACTIONS(9902), 1, + anon_sym_DOT, + STATE(7375), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(4155), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4153), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179648] = 8, - ACTIONS(329), 1, + [185198] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9707), 1, + ACTIONS(9904), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2593), 2, + STATE(2460), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622083,25 +636936,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185234] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [179682] = 8, - ACTIONS(9056), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9579), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9709), 1, - anon_sym_DOT, - STATE(2906), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3644), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1970), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9050), 8, + STATE(9828), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622109,25 +636963,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185270] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [179716] = 8, - ACTIONS(9096), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9268), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5614), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5777), 2, + STATE(9689), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9090), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622135,24 +636990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179750] = 7, - ACTIONS(6465), 1, + [185306] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5270), 1, + STATE(2789), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622161,47 +637015,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179782] = 5, - ACTIONS(9711), 1, + [185338] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(7779), 1, - sym_value_arguments, + STATE(2826), 1, + sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7106), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7104), 11, + STATE(3519), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179810] = 8, - ACTIONS(9096), 1, - sym__backtick_identifier, - ACTIONS(9268), 1, + [185374] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, - sym__lexical_identifier, - STATE(5614), 1, - sym__simple_user_type, + STATE(4963), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5778), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9090), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622210,24 +637067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179844] = 8, - ACTIONS(491), 1, + [185406] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2915), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2694), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(3029), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622235,25 +637094,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185442] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [179878] = 8, - ACTIONS(9096), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9527), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9715), 1, + ACTIONS(9906), 1, anon_sym_DOT, - STATE(5562), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5769), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5473), 2, + STATE(2392), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9090), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622261,25 +637121,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185478] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [179912] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9717), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1620), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(8291), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622287,25 +637148,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185514] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [179946] = 8, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9719), 1, + ACTIONS(9908), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1631), 2, + STATE(2457), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622313,24 +637175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179980] = 7, - ACTIONS(6465), 1, + [185550] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3105), 1, + STATE(3305), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622339,49 +637200,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180012] = 7, - ACTIONS(6465), 1, + [185582] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3139), 1, + STATE(2771), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 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, - [180044] = 8, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(9523), 1, - anon_sym_LPAREN, - ACTIONS(9721), 1, - anon_sym_DOT, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1571), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622390,23 +637225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180078] = 7, - ACTIONS(6465), 1, + [185614] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9535), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(6509), 1, - sym_type_arguments, - STATE(8272), 1, + STATE(3322), 1, sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622415,23 +637250,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180110] = 7, - ACTIONS(6465), 1, + [185646] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(2833), 1, + STATE(3273), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622440,24 +637275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180142] = 8, - ACTIONS(8531), 1, + [185678] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(4683), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(4897), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9604), 2, + STATE(5043), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622465,25 +637302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185714] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [180176] = 8, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - ACTIONS(9723), 1, + ACTIONS(9910), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1307), 2, + STATE(2181), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622491,25 +637329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180210] = 8, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(9523), 1, + [185750] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9825), 1, anon_sym_LPAREN, - ACTIONS(9725), 1, - anon_sym_DOT, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, - sym_simple_identifier, + STATE(6538), 1, + sym_type_arguments, + STATE(8328), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1621), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622518,24 +637354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180244] = 8, - ACTIONS(107), 1, + [185782] = 9, + ACTIONS(9258), 1, + sym__alpha_identifier, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9244), 1, + ACTIONS(9426), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4621), 1, + STATE(2826), 1, sym_simple_identifier, - STATE(4890), 1, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3261), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4917), 2, + STATE(3484), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(7), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622543,24 +637381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180278] = 7, - ACTIONS(6465), 1, + [185818] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9551), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2836), 1, + STATE(3578), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622569,23 +637406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180310] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9551), 1, + [185850] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(2843), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9912), 1, + anon_sym_DOT, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2390), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622593,25 +637433,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185886] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [180342] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9727), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1592), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(9719), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622619,24 +637460,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180376] = 7, - ACTIONS(6465), 1, + [185922] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9547), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(5263), 1, - sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, + STATE(8338), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622645,24 +637485,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180408] = 8, - ACTIONS(491), 1, + [185954] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9729), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2684), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + STATE(9869), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622670,25 +637512,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180442] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9246), 1, + [185990] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, + STATE(3581), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9931), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622697,23 +637537,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180476] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9629), 1, + [186022] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(4869), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(8293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(10027), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622721,24 +637564,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186058] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - [180508] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(2863), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9914), 1, + anon_sym_DOT, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5820), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(5513), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622746,24 +637591,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186094] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [180540] = 7, - ACTIONS(6465), 1, - anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4052), 1, - sym_function_value_parameters, - STATE(6509), 1, - sym_type_arguments, + ACTIONS(9916), 1, + anon_sym_DOT, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4108), 8, + STATE(2173), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622771,25 +637618,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186130] = 9, + ACTIONS(9258), 1, sym__alpha_identifier, - [180572] = 8, - ACTIONS(9096), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9268), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + ACTIONS(9918), 1, + anon_sym_DOT, + STATE(2853), 1, sym__lexical_identifier, - STATE(5614), 1, - sym__simple_user_type, + STATE(3399), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5782), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9090), 8, + STATE(2287), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622797,24 +637645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180606] = 7, - ACTIONS(6465), 1, + [186166] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9605), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3109), 1, + STATE(1198), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622823,24 +637670,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180638] = 8, - ACTIONS(9100), 1, + [186198] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9559), 1, + ACTIONS(9444), 1, anon_sym_LPAREN, - ACTIONS(9731), 1, - anon_sym_DOT, - STATE(5660), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2915), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5341), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9098), 8, + STATE(3058), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622848,25 +637697,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186234] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [180672] = 8, - ACTIONS(9056), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9579), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - ACTIONS(9733), 1, + ACTIONS(9920), 1, anon_sym_DOT, - STATE(2906), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3644), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1912), 2, + STATE(2410), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9050), 8, + ACTIONS(1652), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186270] = 7, + ACTIONS(6552), 1, + anon_sym_LT, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4712), 1, + sym_function_value_parameters, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622875,24 +637749,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180706] = 8, - ACTIONS(8531), 1, + [186302] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(9922), 1, + anon_sym_DOT, + STATE(2955), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(8251), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9793), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + STATE(2180), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622900,24 +637776,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180740] = 7, - ACTIONS(6465), 1, + [186338] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(1207), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622926,23 +637801,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180772] = 7, - ACTIONS(6465), 1, + [186370] = 7, + ACTIONS(6552), 1, anon_sym_LT, - ACTIONS(9563), 1, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(2867), 1, + STATE(4630), 1, sym_function_value_parameters, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4108), 8, + ACTIONS(4128), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622951,24 +637826,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180804] = 8, - ACTIONS(491), 1, + [186402] = 8, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - ACTIONS(9735), 1, - anon_sym_DOT, - STATE(3077), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(5807), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1577), 2, + STATE(5436), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622976,25 +637851,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186435] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [180838] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8251), 1, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3021), 1, sym__simple_user_type, + STATE(9817), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9888), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623002,24 +637877,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186470] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [180872] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3658), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(618), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623027,24 +637902,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186503] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [180905] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2902), 1, + STATE(4210), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9202), 1, + STATE(9378), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623052,70 +637928,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180938] = 8, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(5410), 1, - anon_sym_LBRACE, - ACTIONS(9737), 1, - anon_sym_COLON, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3593), 1, - sym_simple_identifier, - STATE(3936), 1, - sym_class_body, + [186538] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(7145), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7143), 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, - [180971] = 5, - ACTIONS(9739), 1, - anon_sym_LPAREN, - STATE(7778), 1, - sym_value_arguments, + [186561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7106), 2, + ACTIONS(7193), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7104), 10, + ACTIONS(7191), 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, - [180998] = 7, - ACTIONS(491), 1, + [186584] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(4683), 1, sym_simple_identifier, + STATE(4857), 1, + sym__simple_user_type, + STATE(9720), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1621), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623123,24 +637994,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186619] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [181029] = 8, - ACTIONS(107), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(5456), 1, + ACTIONS(3210), 1, anon_sym_LBRACE, - ACTIONS(9742), 1, + ACTIONS(9924), 1, anon_sym_COLON, - STATE(4561), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5036), 1, + STATE(1083), 1, sym_class_body, - STATE(5546), 1, + STATE(2219), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623148,24 +638020,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186654] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [181062] = 8, - ACTIONS(9096), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5596), 1, - sym__simple_user_type, - STATE(9449), 1, - sym_function_type_parameters, + STATE(3108), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2437), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186687] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7179), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186710] = 6, + ACTIONS(9890), 1, + sym__backtick_identifier, + ACTIONS(9926), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9090), 8, + STATE(7613), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7628), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9885), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623174,23 +638088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181095] = 8, - ACTIONS(329), 1, + [186739] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5218), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(9744), 1, + ACTIONS(9929), 1, anon_sym_COLON, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(2960), 1, - sym_simple_identifier, - STATE(3513), 1, + STATE(3526), 1, sym_class_body, + STATE(4248), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623198,23 +638114,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186774] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [181128] = 7, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(5434), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2684), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623222,24 +638140,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186809] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [181159] = 8, - ACTIONS(197), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(4503), 1, - sym_simple_identifier, - STATE(4511), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(4531), 1, - sym__simple_user_type, - STATE(9480), 1, - sym_function_type_parameters, + STATE(4880), 1, + sym_class_body, + STATE(5537), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623247,24 +638166,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186844] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [181192] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(1383), 1, + STATE(5437), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623272,24 +638192,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186879] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [181225] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(6123), 1, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3674), 1, sym_simple_identifier, - STATE(10059), 1, - sym_function_type_parameters, + STATE(3969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623297,23 +638218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186914] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [181258] = 7, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2622), 2, + STATE(2180), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623321,23 +638243,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [186947] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [181289] = 7, - ACTIONS(507), 1, - anon_sym_LPAREN, - ACTIONS(571), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9746), 1, - anon_sym_class, - STATE(2834), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, sym__lexical_identifier, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3473), 2, - sym_parenthesized_expression, + STATE(2390), 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, + [186980] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(954), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, - ACTIONS(495), 8, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623345,24 +638294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187015] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [181320] = 8, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(3122), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(9748), 1, + ACTIONS(9931), 1, anon_sym_COLON, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2996), 1, - sym_simple_identifier, - STATE(3416), 1, + STATE(4880), 1, sym_class_body, + STATE(5274), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623370,43 +638320,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187050] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [181353] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3969), 1, + sym_class_body, + STATE(4207), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4484), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4482), 10, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [187085] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [181376] = 7, - ACTIONS(9056), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9579), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2906), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3644), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1912), 2, + STATE(598), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9050), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623414,23 +638371,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187118] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [181407] = 7, - ACTIONS(9096), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9527), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5562), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(5769), 1, + STATE(2803), 1, sym_simple_identifier, + STATE(2818), 1, + sym__simple_user_type, + STATE(9756), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5397), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9090), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623438,24 +638397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187153] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [181438] = 8, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5210), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(9750), 1, + ACTIONS(9929), 1, anon_sym_COLON, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4654), 1, + STATE(3526), 1, sym_class_body, - STATE(4920), 1, + STATE(4054), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623463,48 +638423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187188] = 9, + ACTIONS(9208), 1, sym__alpha_identifier, - [181471] = 8, - ACTIONS(8531), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4041), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(9324), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [181504] = 7, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, - anon_sym_LPAREN, - STATE(2868), 1, + STATE(8333), 1, sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(8373), 1, + sym__simple_user_type, + STATE(9963), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2402), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623512,43 +638449,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [181535] = 3, + [187223] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 4, + ACTIONS(7173), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4314), 10, + ACTIONS(7171), 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, - [181558] = 7, - ACTIONS(411), 1, + [187246] = 8, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(630), 2, + STATE(2658), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623556,23 +638494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187279] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [181589] = 7, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2591), 2, + STATE(2319), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623580,24 +638519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187312] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [181620] = 8, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4717), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(2791), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3071), 1, + sym_class_body, + STATE(3736), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623605,23 +638545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187347] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [181653] = 7, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(3720), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9327), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2428), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623629,23 +638571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187382] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [181684] = 7, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1568), 2, + STATE(622), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623653,24 +638596,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187415] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [181715] = 8, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(9752), 1, - anon_sym_COLON, - STATE(832), 1, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3049), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, - STATE(1173), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623678,48 +638622,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [181748] = 7, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(9523), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, - sym_simple_identifier, + [187450] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1721), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7187), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181779] = 8, - ACTIONS(8531), 1, + [187473] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3031), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(1083), 1, + sym_class_body, + STATE(1393), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623727,24 +638668,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187508] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [181812] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(855), 1, + STATE(4191), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9336), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623752,23 +638694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187543] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [181845] = 7, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3026), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9390), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1571), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623776,24 +638720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187578] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [181876] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(133), 1, anon_sym_LPAREN, - STATE(4919), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9937), 1, + anon_sym_class, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(3404), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623801,24 +638745,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187611] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [181909] = 8, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(9752), 1, - anon_sym_COLON, - STATE(832), 1, + ACTIONS(9706), 1, + anon_sym_LPAREN, + STATE(3332), 1, sym__lexical_identifier, - STATE(1173), 1, - sym_class_body, - STATE(1589), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + STATE(2646), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623826,49 +638770,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [181942] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4870), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, - sym_simple_identifier, + [187644] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4319), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4317), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181975] = 8, - ACTIONS(8531), 1, + [187667] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(852), 1, + STATE(4983), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9229), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623876,24 +638816,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187702] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182008] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4872), 1, + STATE(4974), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623901,43 +638842,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187737] = 8, + ACTIONS(9258), 1, sym__alpha_identifier, - [182041] = 3, + ACTIONS(9266), 1, + sym__backtick_identifier, + ACTIONS(9747), 1, + anon_sym_LPAREN, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3399), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4101), 10, + STATE(2283), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9262), 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, + [187770] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182064] = 7, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1577), 2, + STATE(2392), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623945,24 +638892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187803] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [182095] = 8, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4870), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(4612), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(5103), 1, + sym_class_body, + STATE(5497), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623970,47 +638918,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [182128] = 7, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, - anon_sym_LPAREN, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + [187838] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4315), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4313), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182159] = 7, - ACTIONS(411), 1, + [187861] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(633), 2, + STATE(2447), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624018,24 +638963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187894] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182190] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3602), 1, + STATE(3429), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9147), 1, + STATE(9347), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624043,24 +638989,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187929] = 8, + ACTIONS(9268), 1, sym__alpha_identifier, - [182223] = 8, - ACTIONS(571), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(5807), 1, sym_simple_identifier, - STATE(2932), 1, - sym__simple_user_type, - STATE(9443), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + STATE(5452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624068,23 +639014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187962] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182256] = 7, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2686), 2, + STATE(2395), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624092,23 +639039,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [187995] = 9, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9232), 1, sym__alpha_identifier, - [182287] = 7, - ACTIONS(491), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9523), 1, - anon_sym_LPAREN, - STATE(3077), 1, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(3071), 1, + sym_class_body, + STATE(4545), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(5148), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2694), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624116,48 +639065,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [182318] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4872), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, - sym_simple_identifier, + [188030] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4337), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4335), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182351] = 7, - ACTIONS(491), 1, + [188053] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1576), 2, + STATE(2446), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624165,24 +639110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188086] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [182382] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1037), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(9929), 1, + anon_sym_COLON, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3109), 1, sym_simple_identifier, + STATE(3526), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624190,24 +639136,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188121] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182415] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5416), 1, + STATE(3035), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9241), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624215,24 +639162,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188156] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [182448] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3554), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, - STATE(9332), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624240,24 +639187,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188189] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182481] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4521), 1, + STATE(1394), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9281), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624265,24 +639213,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188224] = 9, + ACTIONS(9232), 1, sym__alpha_identifier, - [182514] = 8, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5297), 1, - sym_function_value_parameters, - STATE(6123), 1, - sym__lexical_identifier, - STATE(7952), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(9158), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4608), 1, sym__simple_user_type, + STATE(9711), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624290,24 +639239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188259] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182547] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(4524), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2406), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624315,24 +639264,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188292] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182580] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3309), 1, + STATE(4905), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624340,24 +639290,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188327] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182613] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3308), 1, + STATE(3373), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624365,23 +639316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188362] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182646] = 7, - ACTIONS(263), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9754), 1, - anon_sym_class, - STATE(2868), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4902), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3251), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624389,24 +639342,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188397] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182677] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4944), 1, + STATE(3372), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624414,24 +639368,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188432] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182710] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(2907), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624439,24 +639393,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188465] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182743] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2939), 1, + STATE(4103), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9293), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624464,24 +639419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188500] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [182776] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3657), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2457), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624489,24 +639444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188533] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182809] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3684), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624514,24 +639469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188566] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182842] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(852), 1, + STATE(3722), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624539,24 +639495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188601] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182875] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(855), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2367), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624564,23 +639520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188634] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [182908] = 7, - ACTIONS(9100), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9559), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5660), 1, + STATE(4204), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5344), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9098), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624588,24 +639546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188669] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [182939] = 8, - ACTIONS(329), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(5218), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(9744), 1, + ACTIONS(9939), 1, anon_sym_COLON, - STATE(2868), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3513), 1, + STATE(5103), 1, sym_class_body, - STATE(4212), 1, + STATE(5604), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624613,68 +639572,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188704] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [182972] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3658), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 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, - [183005] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4480), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4478), 10, + STATE(2375), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [188737] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [183028] = 7, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1624), 2, + STATE(2718), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624682,24 +639622,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188770] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183059] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4518), 1, + STATE(3671), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9230), 1, + STATE(9287), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624707,23 +639648,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188805] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [183092] = 7, - ACTIONS(427), 1, + ACTIONS(485), 1, anon_sym_LPAREN, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9941), 1, anon_sym_class, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3805), 2, + STATE(3966), 2, sym_parenthesized_expression, sym_simple_identifier, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624731,23 +639673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188838] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183123] = 7, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3052), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1713), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624755,23 +639699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188873] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183154] = 7, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1623), 2, + STATE(2377), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624779,24 +639724,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188906] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183185] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4032), 1, + STATE(3718), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624804,23 +639750,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188941] = 9, + ACTIONS(9248), 1, sym__alpha_identifier, - [183218] = 7, - ACTIONS(329), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5649), 1, + sym__simple_user_type, + STATE(9982), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1613), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624828,24 +639776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [188976] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183249] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3656), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2372), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624853,24 +639801,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189009] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183282] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4035), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2358), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624878,24 +639826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189042] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183315] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2912), 1, + STATE(1259), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9280), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624903,24 +639852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189077] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183348] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(1290), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(9348), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2652), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624928,24 +639877,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189110] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [183381] = 8, - ACTIONS(107), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(4561), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(2791), 1, sym__lexical_identifier, - STATE(4621), 1, + STATE(2941), 1, sym_simple_identifier, - STATE(4796), 1, - sym__simple_user_type, - STATE(9655), 1, - sym_function_type_parameters, + STATE(3071), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624953,23 +639903,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189145] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [183414] = 7, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(616), 2, + STATE(2707), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624977,23 +639928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189178] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183445] = 7, - ACTIONS(491), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2660), 2, + STATE(2330), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625001,24 +639953,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189211] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [183476] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(1034), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2672), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625026,24 +639978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189244] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183509] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4916), 1, + STATE(3770), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9140), 1, + STATE(9283), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625051,24 +640004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189279] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183542] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2897), 1, + STATE(954), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9024), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625076,23 +640030,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189314] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183575] = 7, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(4190), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1674), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625100,23 +640056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189349] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183606] = 7, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2423), 2, + STATE(2383), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625124,48 +640081,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [183637] = 7, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, - anon_sym_LPAREN, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + [189382] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1572), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(4473), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4471), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183668] = 8, - ACTIONS(8531), 1, + [189405] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(2939), 1, + STATE(5046), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9254), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625173,24 +640127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189440] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183701] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3656), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9807), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625198,24 +640153,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189475] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183734] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4125), 1, + STATE(5327), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9106), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625223,23 +640179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189510] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183767] = 7, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(940), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1575), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625247,69 +640205,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189545] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [183798] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2907), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 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, - [183831] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4310), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4308), 10, + STATE(2186), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [189578] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183854] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5240), 1, + STATE(3812), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625317,24 +640256,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189613] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [183887] = 8, - ACTIONS(9106), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(8261), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(866), 1, sym_simple_identifier, - STATE(8331), 1, - sym__simple_user_type, - STATE(9584), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9102), 8, + STATE(581), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625342,24 +640281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189646] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [183920] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2913), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(588), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625367,23 +640306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189679] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [183953] = 7, - ACTIONS(9100), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9559), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5660), 1, + STATE(4113), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5338), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9098), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625391,23 +640332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189714] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [183984] = 7, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2409), 2, + STATE(602), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625415,23 +640357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189747] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184015] = 7, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9758), 1, - anon_sym_class, - STATE(4561), 1, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3808), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5118), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625439,24 +640383,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189782] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184046] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3545), 1, + STATE(4115), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625464,23 +640409,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189817] = 9, + ACTIONS(9268), 1, sym__alpha_identifier, - [184079] = 7, - ACTIONS(411), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5708), 1, + sym__simple_user_type, + STATE(5713), 1, + sym__lexical_identifier, + STATE(9669), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(443), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625488,23 +640435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189852] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [184110] = 7, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2666), 2, + STATE(596), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625512,23 +640460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189885] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184141] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(831), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9419), 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(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625536,47 +640486,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [184172] = 7, - ACTIONS(411), 1, - sym__backtick_identifier, - ACTIONS(9531), 1, - anon_sym_LPAREN, - STATE(832), 1, - sym__lexical_identifier, - STATE(919), 1, - sym_simple_identifier, + [189920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(602), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(4491), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4489), 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, - [184203] = 7, - ACTIONS(329), 1, + [189943] = 8, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2611), 2, + STATE(452), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625584,24 +640531,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [189976] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [184234] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5252), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(606), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625609,24 +640556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190009] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184267] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5386), 1, + STATE(3694), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625634,24 +640582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190044] = 8, + ACTIONS(9268), 1, sym__alpha_identifier, - [184300] = 8, - ACTIONS(9082), 1, + ACTIONS(9272), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9771), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(5713), 1, sym__lexical_identifier, - STATE(4568), 1, + STATE(5807), 1, sym_simple_identifier, - STATE(4782), 1, - sym__simple_user_type, - STATE(9488), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9076), 8, + STATE(5474), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625659,24 +640607,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190077] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184333] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4717), 1, + STATE(3690), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625684,24 +640633,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190112] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184366] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4970), 1, + STATE(5063), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9163), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625709,23 +640659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190147] = 9, + ACTIONS(9216), 1, sym__alpha_identifier, - [184399] = 7, - ACTIONS(411), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5708), 1, + sym__simple_user_type, + STATE(9521), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(544), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625733,24 +640685,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190182] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [184430] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4709), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(921), 1, sym_simple_identifier, + STATE(1083), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625758,24 +640711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190217] = 9, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, sym__alpha_identifier, - [184463] = 8, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1401), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(5103), 1, + sym_class_body, + STATE(5685), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(8548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625783,23 +640737,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190252] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [184496] = 7, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(629), 2, + STATE(591), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625807,24 +640762,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190285] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184527] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3031), 1, + STATE(4974), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625832,24 +640788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190320] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [184560] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3308), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2417), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625857,24 +640813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190353] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - [184593] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(569), 1, anon_sym_LPAREN, - STATE(3034), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9943), 1, + anon_sym_class, + STATE(2791), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(3197), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625882,24 +640838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190386] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184626] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(6123), 1, + STATE(3391), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9746), 1, - sym_function_type_parameters, + STATE(9104), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625907,24 +640864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190421] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [184659] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3545), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(593), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625932,24 +640889,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190454] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [184692] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5388), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(594), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625957,24 +640914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190487] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184725] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3309), 1, + STATE(4214), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625982,47 +640940,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [184758] = 6, - ACTIONS(9642), 1, - sym__backtick_identifier, - ACTIONS(9760), 1, - anon_sym_AT, + [190522] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7662), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7758), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9637), 8, + ACTIONS(4168), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4166), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184787] = 8, - ACTIONS(8531), 1, + [190545] = 9, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9563), 1, - anon_sym_LPAREN, - STATE(3546), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3865), 1, sym_simple_identifier, + STATE(3969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626030,24 +640986,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190580] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184820] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4145), 1, + STATE(2835), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626055,24 +641012,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190615] = 8, + ACTIONS(211), 1, sym__alpha_identifier, - [184853] = 8, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - STATE(3546), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9945), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(4760), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626080,23 +641037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190648] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184886] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(3049), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(578), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626104,23 +641063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190683] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [184917] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(2975), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(432), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626128,24 +641089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190718] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [184948] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(1035), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(9161), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2716), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626153,24 +641114,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190751] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [184981] = 8, - ACTIONS(3122), 1, - anon_sym_LBRACE, - ACTIONS(9082), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9748), 1, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, anon_sym_COLON, - STATE(3416), 1, - sym_class_body, - STATE(4560), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5235), 1, + STATE(5078), 1, sym_simple_identifier, + STATE(5103), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9076), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626178,24 +641140,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190786] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185014] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3034), 1, + STATE(3718), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626203,48 +641166,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190821] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185047] = 7, - ACTIONS(491), 1, - sym__backtick_identifier, - ACTIONS(9523), 1, - anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1699), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 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, - [185078] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3100), 1, + STATE(2833), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9262), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626252,24 +641192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190856] = 8, + ACTIONS(9248), 1, sym__alpha_identifier, - [185111] = 8, - ACTIONS(491), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3144), 1, + STATE(5820), 1, sym_simple_identifier, - STATE(3401), 1, - sym__simple_user_type, - STATE(9389), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + STATE(5523), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626277,24 +641217,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190889] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [185144] = 8, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5210), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(9750), 1, + ACTIONS(9929), 1, anon_sym_COLON, - STATE(4511), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(4654), 1, + STATE(3526), 1, sym_class_body, - STATE(5522), 1, + STATE(3744), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626302,24 +641243,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190924] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [185177] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(4968), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2335), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626327,24 +641268,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190957] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185210] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4919), 1, + STATE(2835), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626352,23 +641294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [190992] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185243] = 7, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(3722), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2588), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626376,23 +641320,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191027] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185274] = 7, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(1411), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2706), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626400,24 +641346,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191062] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185305] = 8, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(9742), 1, - anon_sym_COLON, - STATE(4561), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(978), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5036), 1, - sym_class_body, - STATE(5376), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9288), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626425,24 +641372,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191097] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185338] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4921), 1, + STATE(852), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626450,24 +641398,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191132] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [185371] = 8, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4524), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(2791), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3071), 1, + sym_class_body, + STATE(4086), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626475,24 +641424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191167] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185404] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4521), 1, + STATE(4805), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626500,23 +641450,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191202] = 8, + ACTIONS(9258), 1, sym__alpha_identifier, - [185437] = 7, - ACTIONS(491), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1726), 2, + STATE(2304), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626524,24 +641475,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191235] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185468] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4019), 1, + STATE(3690), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9181), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626549,23 +641501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191270] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185501] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(4807), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626573,24 +641527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191305] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185532] = 8, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(9750), 1, - anon_sym_COLON, - STATE(4511), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1419), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(4543), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, - STATE(4654), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626598,23 +641553,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191340] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185565] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(5338), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626622,24 +641579,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191375] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185596] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4164), 1, + STATE(3694), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626647,24 +641605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191410] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185629] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5410), 1, - anon_sym_LBRACE, - ACTIONS(9737), 1, - anon_sym_COLON, - STATE(3077), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4902), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3936), 1, - sym_class_body, - STATE(4174), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626672,24 +641631,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191445] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [185662] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4896), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, - STATE(9325), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2620), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626697,24 +641656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191478] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [185695] = 8, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(4799), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(3670), 1, sym_simple_identifier, - STATE(9237), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2341), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626722,24 +641681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191511] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185728] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4709), 1, + STATE(4905), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626747,24 +641707,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191546] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [185761] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3975), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2440), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626772,23 +641732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191579] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [185794] = 7, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(428), 2, + STATE(2715), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626796,24 +641757,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191612] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [185825] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3974), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(823), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(1083), 1, + sym_class_body, + STATE(1127), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626821,24 +641783,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191647] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185858] = 8, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5218), 1, - anon_sym_LBRACE, - ACTIONS(9744), 1, - anon_sym_COLON, - STATE(2868), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(846), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3513), 1, - sym_class_body, - STATE(3972), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626846,23 +641809,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191682] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185891] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(4148), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626870,24 +641835,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191717] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [185922] = 8, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(1037), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2660), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626895,23 +641860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191750] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [185955] = 7, - ACTIONS(9096), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9527), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5562), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(5769), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5387), 2, + STATE(450), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9090), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626919,24 +641885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191783] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [185986] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(1034), 1, + STATE(3726), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626944,23 +641911,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191818] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [186019] = 7, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, + STATE(2181), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626968,23 +641936,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191851] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186050] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(4805), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(429), 2, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191886] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3108), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2135), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626992,24 +641987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191919] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186081] = 8, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3122), 1, - anon_sym_LBRACE, - ACTIONS(9748), 1, - anon_sym_COLON, - STATE(2834), 1, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3743), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3416), 1, - sym_class_body, - STATE(4009), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627017,24 +642013,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191954] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186114] = 8, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(9752), 1, - anon_sym_COLON, - STATE(832), 1, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5334), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(1173), 1, - sym_class_body, - STATE(1352), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627042,23 +642039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191989] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [186147] = 7, - ACTIONS(9100), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9559), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5660), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5291), 2, + STATE(2607), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9098), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627066,23 +642064,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192022] = 8, + ACTIONS(9248), 1, sym__alpha_identifier, - [186178] = 7, - ACTIONS(329), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(5820), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2634), 2, + STATE(5494), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627090,23 +642089,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192055] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [186209] = 7, - ACTIONS(411), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9531), 1, - anon_sym_LPAREN, - STATE(832), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(2791), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3071), 1, + sym_class_body, + STATE(3127), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(423), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627114,23 +642115,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192090] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186240] = 7, - ACTIONS(9096), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9527), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5562), 1, + STATE(4807), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5769), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5392), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9090), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627138,24 +642141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192125] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186271] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5326), 1, + STATE(3730), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9333), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627163,23 +642167,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192160] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [186304] = 7, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1649), 2, + STATE(2695), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627187,24 +642192,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192193] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186335] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5327), 1, + STATE(5526), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9409), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627212,23 +642218,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192228] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186368] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(5063), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(572), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627236,23 +642244,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192263] = 9, + ACTIONS(9258), 1, sym__alpha_identifier, - [186399] = 7, - ACTIONS(491), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3553), 1, + STATE(2826), 1, sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3014), 1, + sym__simple_user_type, + STATE(9603), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2650), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627260,24 +642270,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192298] = 9, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(8672), 1, sym__alpha_identifier, - [186430] = 8, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(9742), 1, + ACTIONS(9931), 1, anon_sym_COLON, - STATE(4561), 1, + STATE(4880), 1, + sym_class_body, + STATE(6224), 1, sym__lexical_identifier, - STATE(4875), 1, + STATE(8758), 1, sym_simple_identifier, - STATE(5036), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627285,24 +642296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192333] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [186463] = 8, - ACTIONS(197), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(9750), 1, - anon_sym_COLON, - STATE(4511), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, sym__lexical_identifier, - STATE(4654), 1, - sym_class_body, - STATE(5203), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + STATE(2617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627310,23 +642321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192366] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [186496] = 7, - ACTIONS(411), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(632), 2, + STATE(2347), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627334,24 +642346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192399] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [186527] = 8, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9750), 1, - anon_sym_COLON, - STATE(4654), 1, - sym_class_body, - STATE(6123), 1, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(2955), 1, sym__lexical_identifier, - STATE(8598), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(2444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627359,24 +642371,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192432] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186560] = 8, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + STATE(5465), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(868), 1, + STATE(7893), 1, + sym_simple_identifier, + STATE(9396), 1, sym__simple_user_type, - STATE(9537), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627384,23 +642397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192467] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186593] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(4741), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9325), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(567), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627408,23 +642423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192502] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [186624] = 7, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, + STATE(455), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627432,24 +642448,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192535] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186655] = 8, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3122), 1, - anon_sym_LBRACE, - ACTIONS(9748), 1, - anon_sym_COLON, - STATE(2834), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4919), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3270), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(3416), 1, - sym_class_body, + STATE(9414), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627457,23 +642474,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192570] = 8, + ACTIONS(9258), 1, sym__alpha_identifier, - [186688] = 7, - ACTIONS(9056), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9579), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - STATE(2906), 1, + STATE(2853), 1, sym__lexical_identifier, - STATE(3644), 1, + STATE(3399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1970), 2, + STATE(2314), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9050), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627481,24 +642499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192603] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [186719] = 8, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, - anon_sym_LPAREN, - STATE(2827), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3332), 1, sym__lexical_identifier, - STATE(2915), 1, - sym__simple_user_type, - STATE(9414), 1, - sym_function_type_parameters, + STATE(3969), 1, + sym_class_body, + STATE(4280), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627506,24 +642525,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192638] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186752] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3625), 1, + STATE(2837), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, - STATE(9155), 1, + STATE(9100), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627531,24 +642551,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192673] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186785] = 8, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(940), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5663), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(9937), 1, - sym_function_type_parameters, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627556,24 +642577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192708] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [186818] = 8, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(2913), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(4880), 1, + sym_class_body, + STATE(5047), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627581,23 +642603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192743] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [186851] = 7, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2615), 2, + STATE(430), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627605,24 +642628,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192776] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [186882] = 8, - ACTIONS(9100), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(5663), 1, - sym__simple_user_type, - STATE(9788), 1, - sym_function_type_parameters, + STATE(3670), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9098), 8, + STATE(2393), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627630,24 +642653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192809] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186915] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(2912), 1, + STATE(4563), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, + STATE(9319), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627655,23 +642679,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192844] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [186948] = 7, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1339), 2, + STATE(457), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627679,24 +642704,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192877] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [186979] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1288), 1, + STATE(5504), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627704,23 +642730,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192912] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187012] = 7, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2648), 2, + STATE(425), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627728,68 +642755,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [192945] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187043] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4158), 1, + STATE(2833), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9234), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 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, - [187076] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7191), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7189), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [192980] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187099] = 7, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, + STATE(9612), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2612), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627797,24 +642807,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193015] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187130] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1350), 1, + STATE(5505), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9177), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627822,23 +642833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193050] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187163] = 7, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1302), 2, + STATE(434), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627846,24 +642858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193083] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187194] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(1283), 1, + STATE(4992), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627871,64 +642884,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193118] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187227] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7185), 11, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [193151] = 8, + ACTIONS(9248), 1, sym__alpha_identifier, - [187250] = 3, + ACTIONS(9256), 1, + sym__backtick_identifier, + ACTIONS(9793), 1, + anon_sym_LPAREN, + STATE(5602), 1, + sym__lexical_identifier, + STATE(5820), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7153), 11, + STATE(5493), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 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, + [193184] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [187273] = 8, - ACTIONS(411), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(9752), 1, - anon_sym_COLON, - STATE(832), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4534), 1, sym__lexical_identifier, - STATE(1092), 1, + STATE(4538), 1, sym_simple_identifier, - STATE(1173), 1, - sym_class_body, + STATE(4577), 1, + sym__simple_user_type, + STATE(9728), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627936,23 +642960,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193219] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [187306] = 7, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1305), 2, + STATE(2671), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627960,24 +642985,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193252] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187337] = 8, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(3122), 1, - anon_sym_LBRACE, - ACTIONS(9748), 1, - anon_sym_COLON, - STATE(2834), 1, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(846), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3416), 1, - sym_class_body, - STATE(4116), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627985,24 +643011,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193287] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187370] = 8, - ACTIONS(9056), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9319), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3051), 1, - sym__simple_user_type, - STATE(9514), 1, - sym_function_type_parameters, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9050), 8, + STATE(438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628010,44 +643036,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193320] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187403] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(7893), 1, + sym_simple_identifier, + STATE(9351), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7113), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [193355] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187426] = 8, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5218), 1, - anon_sym_LBRACE, - ACTIONS(9744), 1, - anon_sym_COLON, - STATE(2868), 1, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4970), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3513), 1, - sym_class_body, - STATE(3713), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628055,23 +643088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193390] = 9, + ACTIONS(473), 1, sym__alpha_identifier, - [187459] = 7, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3548), 1, + sym__simple_user_type, + STATE(9887), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2404), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628079,23 +643114,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193425] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187490] = 7, - ACTIONS(491), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(866), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2610), 2, + STATE(424), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628103,23 +643139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193458] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187521] = 7, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(852), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628127,24 +643165,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193493] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187552] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3457), 1, + STATE(3409), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9210), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628152,24 +643191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193528] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187585] = 8, - ACTIONS(491), 1, + ACTIONS(399), 1, + anon_sym_LPAREN, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(5410), 1, - anon_sym_LBRACE, - ACTIONS(9737), 1, - anon_sym_COLON, - STATE(3077), 1, + ACTIONS(9947), 1, + anon_sym_class, + STATE(823), 1, sym__lexical_identifier, - STATE(3780), 1, - sym_simple_identifier, - STATE(3936), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + STATE(1036), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628177,23 +643216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193561] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [187618] = 7, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1631), 2, + STATE(2659), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628201,24 +643241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193594] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187649] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9605), 1, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4175), 1, + STATE(3412), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628226,24 +643267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193629] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187682] = 8, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(861), 1, - sym_function_value_parameters, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(866), 1, sym_simple_identifier, - STATE(9193), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + STATE(433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628251,24 +643292,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193662] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187715] = 8, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(5410), 1, - anon_sym_LBRACE, - ACTIONS(9737), 1, - anon_sym_COLON, - STATE(3077), 1, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3035), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3936), 1, - sym_class_body, - STATE(4228), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628276,24 +643318,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193697] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187748] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4921), 1, + STATE(1268), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(6530), 1, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628301,23 +643344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193732] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187781] = 7, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(3052), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628325,44 +643370,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193767] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - [187812] = 3, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym__lexical_identifier, + STATE(866), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7172), 11, + STATE(611), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [193800] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187835] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3624), 1, + STATE(3373), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628370,23 +643421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193835] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [187868] = 7, - ACTIONS(491), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9523), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(3077), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3553), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2656), 2, + STATE(2677), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(415), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628394,23 +643446,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193868] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187899] = 7, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(3372), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2593), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628418,24 +643472,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193903] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187930] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3626), 1, + STATE(4564), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, + STATE(6549), 1, sym__simple_user_type, - STATE(7952), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628443,24 +643498,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193938] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [187963] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(4109), 1, + STATE(1267), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9213), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628468,67 +643524,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [187996] = 7, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9539), 1, + [193973] = 5, + ACTIONS(9949), 1, anon_sym_LPAREN, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3022), 1, - sym_simple_identifier, + STATE(7854), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1327), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188027] = 3, + [194000] = 9, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4561), 1, + sym_function_value_parameters, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4171), 10, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [194035] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [188050] = 7, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(631), 2, + STATE(2068), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628536,24 +643597,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194068] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [188081] = 8, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9551), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3670), 1, + STATE(4561), 1, sym_function_value_parameters, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7952), 1, - sym_simple_identifier, - STATE(9031), 1, + STATE(6549), 1, sym__simple_user_type, + STATE(7893), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628561,23 +643623,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194103] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [188114] = 7, - ACTIONS(9056), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9579), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(2906), 1, + STATE(4564), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(3644), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2048), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9050), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628585,23 +643649,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194138] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [188145] = 7, - ACTIONS(411), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9531), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(832), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(919), 1, + STATE(824), 1, sym_simple_identifier, + STATE(858), 1, + sym__simple_user_type, + STATE(9546), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(441), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(333), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628609,23 +643675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194173] = 8, + ACTIONS(473), 1, sym__alpha_identifier, - [188176] = 7, - ACTIONS(329), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9706), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3670), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1332), 2, + STATE(2600), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628633,24 +643700,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194206] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [188207] = 8, - ACTIONS(107), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(5456), 1, + ACTIONS(5788), 1, anon_sym_LBRACE, - ACTIONS(9742), 1, + ACTIONS(9939), 1, anon_sym_COLON, - STATE(4561), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(5036), 1, - sym_class_body, - STATE(5146), 1, + STATE(4912), 1, sym_simple_identifier, + STATE(5103), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628658,23 +643726,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194241] = 8, + ACTIONS(7), 1, sym__alpha_identifier, - [188240] = 7, - ACTIONS(345), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - ACTIONS(411), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9763), 1, + ACTIONS(9952), 1, anon_sym_class, - STATE(832), 1, + STATE(4612), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1201), 2, + STATE(5186), 2, sym_parenthesized_expression, sym_simple_identifier, - ACTIONS(333), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628682,23 +643751,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194274] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [188271] = 7, - ACTIONS(329), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2868), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(3022), 1, + STATE(3108), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1330), 2, + STATE(2170), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(251), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628706,48 +643776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194307] = 9, + ACTIONS(8672), 1, sym__alpha_identifier, - [188302] = 7, - ACTIONS(129), 1, - anon_sym_LPAREN, - ACTIONS(197), 1, - sym__backtick_identifier, - ACTIONS(9765), 1, - anon_sym_class, - STATE(4511), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4809), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(111), 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, - [188333] = 8, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9742), 1, - anon_sym_COLON, - STATE(5036), 1, - sym_class_body, - STATE(5637), 1, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2975), 1, + sym_function_value_parameters, + STATE(6224), 1, sym__lexical_identifier, - STATE(8460), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628755,24 +643802,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194342] = 9, + ACTIONS(211), 1, sym__alpha_identifier, - [188366] = 8, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(5265), 1, - sym_function_value_parameters, - STATE(6123), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(7952), 1, + STATE(4591), 1, sym_simple_identifier, - STATE(9034), 1, - sym__simple_user_type, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628780,35 +643828,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [188399] = 3, + [194377] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 2, + ACTIONS(7193), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5045), 11, + ACTIONS(7191), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188421] = 3, + [194399] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 3, + ACTIONS(5165), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5138), 10, + ACTIONS(5163), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -628819,52 +643866,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188443] = 3, + [194421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 2, + ACTIONS(9833), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5138), 11, + ACTIONS(9831), 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, - [188465] = 3, + [194443] = 5, + ACTIONS(9954), 1, + anon_sym_DOT, + STATE(7857), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 3, - anon_sym_AT, + ACTIONS(4195), 3, anon_sym_LPAREN, + sym__quest, sym__backtick_identifier, - ACTIONS(5045), 10, + ACTIONS(4193), 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, - [188487] = 3, + [194469] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 2, + ACTIONS(7181), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7189), 11, + ACTIONS(7179), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628876,14 +643925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188509] = 3, + [194491] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, + ACTIONS(7173), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7185), 11, + ACTIONS(7171), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628895,15 +643944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188531] = 3, + [194513] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 3, + ACTIONS(5161), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7189), 10, + ACTIONS(5159), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -628914,15 +643963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188553] = 3, + [194535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 3, + ACTIONS(7181), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4865), 10, + ACTIONS(7179), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -628933,33 +643982,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188575] = 3, + [194557] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 2, + ACTIONS(7173), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7153), 11, + ACTIONS(7171), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188597] = 3, + [194579] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 2, + ACTIONS(7189), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7172), 11, + ACTIONS(7187), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628971,76 +644020,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188619] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9673), 1, - sym_simple_identifier, + [194601] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9767), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8503), 8, + ACTIONS(7189), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7187), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188647] = 5, - ACTIONS(9773), 1, - sym__quest, - STATE(6659), 1, - aux_sym_nullable_type_repeat1, + [194623] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9771), 3, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(7145), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(9769), 8, + ACTIONS(7143), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188673] = 3, + [194645] = 5, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 3, - anon_sym_AT, + ACTIONS(9959), 3, anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4927), 10, + ACTIONS(9957), 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, - [188695] = 3, + [194671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 2, + ACTIONS(9131), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7113), 11, + ACTIONS(9133), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629052,15 +644098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188717] = 3, + [194693] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 3, + ACTIONS(5189), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7153), 10, + ACTIONS(5187), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -629071,14 +644117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188739] = 3, + [194715] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 2, + ACTIONS(5161), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(4955), 11, + ACTIONS(5159), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629090,19 +644136,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188761] = 5, - ACTIONS(9775), 1, + [194737] = 5, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9965), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(9963), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194763] = 5, + ACTIONS(9967), 1, anon_sym_DOT, - STATE(7799), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 3, + ACTIONS(4155), 3, anon_sym_LPAREN, sym__quest, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629111,14 +644178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188787] = 3, + [194789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 2, + ACTIONS(5165), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(4927), 11, + ACTIONS(5163), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629130,52 +644197,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188809] = 3, + [194811] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, + ACTIONS(5181), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7185), 10, + ACTIONS(5179), 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, - [188831] = 3, + [194833] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 3, + ACTIONS(5185), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7113), 10, + ACTIONS(5183), 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, - [188853] = 3, + [194855] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8946), 2, + ACTIONS(7193), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(8948), 11, + ACTIONS(7191), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629187,55 +644254,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188875] = 3, + [194877] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9718), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4865), 11, + ACTIONS(9970), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [188897] = 5, - ACTIONS(9778), 1, - anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + [194907] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 3, - anon_sym_LPAREN, - sym__quest, + ACTIONS(5189), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(5187), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188923] = 3, + [194929] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 3, + ACTIONS(5181), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7172), 10, + ACTIONS(5179), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -629246,15 +644315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188945] = 3, + [194951] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 3, + ACTIONS(5185), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4955), 10, + ACTIONS(5183), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -629265,59 +644334,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188967] = 5, - ACTIONS(9773), 1, - sym__quest, - STATE(6659), 1, - aux_sym_nullable_type_repeat1, + [194973] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9783), 3, + ACTIONS(7145), 3, + anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(9781), 8, + ACTIONS(7143), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188993] = 3, + [194995] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(6549), 1, + sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9587), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9585), 11, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [195024] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189015] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9785), 1, + ACTIONS(9972), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9014), 1, + STATE(9395), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629325,20 +644397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195053] = 7, + ACTIONS(9402), 1, sym__alpha_identifier, - [189042] = 6, - ACTIONS(8531), 1, + ACTIONS(9410), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8543), 1, + STATE(5826), 1, sym_simple_identifier, - STATE(9497), 1, - sym_variable_declaration, + STATE(5842), 1, + sym__lexical_identifier, + STATE(5857), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9408), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629346,20 +644419,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195082] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189069] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(9974), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9238), 1, sym_simple_identifier, - STATE(8732), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195111] = 5, + ACTIONS(9976), 1, + anon_sym_DOT, + STATE(7889), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629368,19 +644461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189096] = 6, - ACTIONS(8531), 1, + [195136] = 7, + ACTIONS(9285), 1, + sym__alpha_identifier, + ACTIONS(9291), 1, sym__backtick_identifier, - ACTIONS(9787), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(5682), 1, sym__lexical_identifier, - STATE(9299), 1, + STATE(5787), 1, sym_simple_identifier, + STATE(5815), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9289), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629388,20 +644483,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195165] = 4, + ACTIONS(9979), 1, + anon_sym_DOT, + STATE(7887), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [195188] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189123] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9789), 1, + ACTIONS(9981), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9052), 1, + STATE(9225), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629409,20 +644524,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195217] = 7, + ACTIONS(9216), 1, sym__alpha_identifier, - [189150] = 6, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(8820), 1, - sym_parameter, - STATE(9465), 1, + STATE(8516), 1, sym_simple_identifier, + STATE(9168), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629430,20 +644546,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195246] = 7, + ACTIONS(9216), 1, sym__alpha_identifier, - [189177] = 6, - ACTIONS(411), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9791), 1, - anon_sym_class, - STATE(832), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(1165), 1, + STATE(8516), 1, sym_simple_identifier, + STATE(8517), 1, + sym_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9220), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195275] = 5, + ACTIONS(9983), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629452,18 +644588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189204] = 5, - ACTIONS(9793), 1, + [195300] = 5, + ACTIONS(9986), 1, anon_sym_DOT, - STATE(6531), 1, + STATE(7877), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, + ACTIONS(4195), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629472,18 +644608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189229] = 5, - ACTIONS(9796), 1, + [195325] = 5, + ACTIONS(9989), 1, anon_sym_DOT, - STATE(6531), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629492,19 +644628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189254] = 6, - ACTIONS(9119), 1, - sym__backtick_identifier, - STATE(5639), 1, - sym__lexical_identifier, - STATE(5727), 1, - sym_simple_identifier, - STATE(5788), 1, - sym__simple_user_type, + [195350] = 5, + ACTIONS(9992), 1, + anon_sym_DOT, + STATE(7879), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9115), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629513,19 +644648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189281] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9799), 1, + [195375] = 5, + ACTIONS(9995), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9330), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629534,19 +644668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189308] = 6, - ACTIONS(9312), 1, - sym__backtick_identifier, - STATE(5617), 1, - sym__lexical_identifier, - STATE(5634), 1, - sym_simple_identifier, - STATE(5656), 1, - sym__simple_user_type, + [195400] = 5, + ACTIONS(9998), 1, + anon_sym_DOT, + STATE(7881), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9306), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629555,19 +644688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189335] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9801), 1, + [195425] = 5, + ACTIONS(10001), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9254), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629576,19 +644708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189362] = 6, - ACTIONS(107), 1, - sym__backtick_identifier, - STATE(4561), 1, - sym__lexical_identifier, - STATE(4621), 1, - sym_simple_identifier, - STATE(4796), 1, - sym__simple_user_type, + [195450] = 5, + ACTIONS(10004), 1, + anon_sym_DOT, + STATE(7883), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629597,19 +644728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189389] = 6, - ACTIONS(8531), 1, + [195475] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10007), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9252), 1, sym_simple_identifier, - STATE(8961), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629617,20 +644750,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195504] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - [189416] = 6, - ACTIONS(571), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9803), 1, + ACTIONS(10009), 1, anon_sym_class, - STATE(2834), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(3414), 1, + STATE(5227), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629638,20 +644772,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [189443] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9805), 1, + [195533] = 4, + ACTIONS(10011), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9068), 1, - sym_simple_identifier, + STATE(7887), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [195556] = 5, + ACTIONS(10014), 1, + anon_sym_LPAREN, + STATE(7182), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(7089), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7087), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629660,18 +644811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189470] = 5, - ACTIONS(9807), 1, + [195581] = 5, + ACTIONS(10017), 1, anon_sym_DOT, - STATE(7867), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629680,19 +644831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189495] = 6, - ACTIONS(8531), 1, + [195606] = 7, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - ACTIONS(9810), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9087), 1, + STATE(5686), 1, sym_simple_identifier, + STATE(5708), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629700,19 +644853,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [189522] = 5, - ACTIONS(9812), 1, + [195635] = 4, + ACTIONS(10020), 1, anon_sym_DOT, - STATE(7826), 1, + STATE(7873), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, + ACTIONS(4195), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, sym__quest, + [195658] = 7, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(10022), 1, + anon_sym_class, + STATE(2791), 1, + sym__lexical_identifier, + STATE(3065), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629720,20 +644894,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195687] = 4, + ACTIONS(9162), 1, + anon_sym_LT, + STATE(6538), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4189), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [195710] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189547] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9815), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9086), 1, + STATE(6549), 1, + sym__simple_user_type, + STATE(7893), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629741,20 +644935,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195739] = 7, + ACTIONS(211), 1, sym__alpha_identifier, - [189574] = 6, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9817), 1, - anon_sym_DOT, - STATE(6123), 1, + ACTIONS(10024), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(9352), 1, + STATE(4879), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629762,19 +644957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195768] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189601] = 5, - ACTIONS(9819), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10026), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9191), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629782,20 +644979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195797] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189626] = 6, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9822), 1, - anon_sym_class, - STATE(4511), 1, + ACTIONS(10028), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4811), 1, + STATE(9224), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629803,19 +645001,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195826] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189653] = 5, - ACTIONS(9824), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10030), 1, anon_sym_DOT, - STATE(7840), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9214), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629823,19 +645023,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195855] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189678] = 5, - ACTIONS(9827), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10032), 1, anon_sym_DOT, - STATE(7812), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9226), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629843,20 +645045,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195884] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189703] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9830), 1, + ACTIONS(10034), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9374), 1, + STATE(9200), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629864,20 +645067,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195913] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189730] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9832), 1, + ACTIONS(10036), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9111), 1, + STATE(9267), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629885,20 +645089,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195942] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189757] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9834), 1, + ACTIONS(10038), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9070), 1, + STATE(9367), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629906,19 +645111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [189784] = 5, - ACTIONS(9836), 1, + [195971] = 5, + ACTIONS(10040), 1, anon_sym_DOT, - STATE(7847), 1, + STATE(8008), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, + ACTIONS(4195), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629927,19 +645131,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [189809] = 6, - ACTIONS(9074), 1, + [195996] = 7, + ACTIONS(9268), 1, + sym__alpha_identifier, + ACTIONS(9272), 1, sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(5638), 1, + STATE(5686), 1, sym_simple_identifier, - STATE(5663), 1, + STATE(5708), 1, sym__simple_user_type, + STATE(5713), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(9270), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629947,20 +645153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196025] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189836] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10043), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9192), 1, sym_simple_identifier, - STATE(8980), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629968,20 +645175,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196054] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189863] = 6, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9839), 1, - anon_sym_class, - STATE(4511), 1, + ACTIONS(10045), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(4676), 1, + STATE(9178), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629989,19 +645197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196083] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189890] = 5, - ACTIONS(9841), 1, - anon_sym_LPAREN, - STATE(7119), 1, - sym_value_arguments, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8564), 1, + sym_simple_identifier, + STATE(8857), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7106), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7104), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630009,20 +645219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196112] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - [189915] = 6, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10047), 1, + anon_sym_class, + STATE(4612), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(5191), 1, sym_simple_identifier, - STATE(8957), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630030,20 +645241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196141] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189942] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9844), 1, + ACTIONS(10049), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9259), 1, + STATE(9250), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630051,19 +645263,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196170] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189969] = 5, - ACTIONS(9846), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10051), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9169), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630071,20 +645285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196199] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [189994] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10053), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9158), 1, sym_simple_identifier, - STATE(8767), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630092,20 +645307,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196228] = 7, + ACTIONS(473), 1, sym__alpha_identifier, - [190021] = 6, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9849), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9261), 1, + STATE(3308), 1, sym_simple_identifier, + STATE(3332), 1, + sym__lexical_identifier, + STATE(3548), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630113,20 +645329,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196257] = 7, + ACTIONS(9386), 1, sym__alpha_identifier, - [190048] = 6, - ACTIONS(197), 1, + ACTIONS(9398), 1, sym__backtick_identifier, - STATE(4503), 1, + STATE(3554), 1, sym_simple_identifier, - STATE(4511), 1, + STATE(3648), 1, sym__lexical_identifier, - STATE(4531), 1, + STATE(3742), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(9394), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630134,20 +645351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196286] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190075] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9851), 1, + ACTIONS(10055), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9316), 1, + STATE(9273), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630155,19 +645373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196315] = 7, + ACTIONS(9464), 1, sym__alpha_identifier, - [190102] = 5, - ACTIONS(9853), 1, - anon_sym_DOT, - STATE(7850), 1, - aux_sym_user_type_repeat1, + ACTIONS(9472), 1, + sym__backtick_identifier, + STATE(7357), 1, + sym_simple_identifier, + STATE(7388), 1, + sym__lexical_identifier, + STATE(7727), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(9470), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630175,20 +645395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196344] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - [190127] = 6, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9856), 1, - anon_sym_DOT, - STATE(6123), 1, + ACTIONS(10057), 1, + anon_sym_class, + STATE(2955), 1, sym__lexical_identifier, - STATE(9264), 1, + STATE(3459), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630196,19 +645417,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196373] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190154] = 5, - ACTIONS(9858), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10059), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9449), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630216,20 +645439,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196402] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190179] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9861), 1, + ACTIONS(10061), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9216), 1, + STATE(9118), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630237,20 +645461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196431] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - [190206] = 6, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(9863), 1, - anon_sym_DOT, - STATE(6123), 1, + ACTIONS(10063), 1, + anon_sym_class, + STATE(823), 1, sym__lexical_identifier, - STATE(9217), 1, + STATE(1098), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630258,19 +645483,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196460] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190233] = 5, - ACTIONS(9865), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10065), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9213), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630278,20 +645505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196489] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190258] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9868), 1, + ACTIONS(10067), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9218), 1, + STATE(9446), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630299,20 +645527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196518] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190285] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9870), 1, + ACTIONS(10069), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9269), 1, + STATE(9166), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630320,19 +645549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [190312] = 5, - ACTIONS(9872), 1, + [196547] = 5, + ACTIONS(10071), 1, anon_sym_DOT, - STATE(7854), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630341,18 +645569,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190337] = 5, - ACTIONS(9875), 1, + [196572] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10074), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9140), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630360,20 +645591,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [190362] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9878), 1, + [196601] = 5, + ACTIONS(10076), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9270), 1, - sym_simple_identifier, + STATE(7930), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630382,19 +645611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190389] = 6, - ACTIONS(8531), 1, + [196626] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9880), 1, + ACTIONS(10079), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9134), 1, + STATE(9255), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630402,20 +645633,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196655] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190416] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9882), 1, + ACTIONS(10081), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9359), 1, + STATE(9439), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630423,20 +645655,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196684] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190443] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9884), 1, + ACTIONS(10083), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9223), 1, + STATE(9299), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630444,20 +645677,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196713] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190470] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9886), 1, + ACTIONS(10085), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9271), 1, + STATE(9141), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630465,20 +645699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [190497] = 6, - ACTIONS(329), 1, - sym__backtick_identifier, - ACTIONS(9888), 1, - anon_sym_class, - STATE(2868), 1, - sym__lexical_identifier, - STATE(3512), 1, - sym_simple_identifier, + [196742] = 5, + ACTIONS(10087), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630487,19 +645719,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190524] = 6, - ACTIONS(8531), 1, + [196767] = 7, + ACTIONS(211), 1, + sym__alpha_identifier, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9890), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9279), 1, + STATE(4538), 1, sym_simple_identifier, + STATE(4577), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630507,20 +645741,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196796] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190551] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9892), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9226), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(9096), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630528,39 +645763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196825] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190578] = 4, - ACTIONS(9894), 1, - anon_sym_DOT, - STATE(7882), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4077), 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, - [190601] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9896), 1, + ACTIONS(10090), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9283), 1, + STATE(9320), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630568,20 +645785,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196854] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190628] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9898), 1, + ACTIONS(10092), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9229), 1, + STATE(9183), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630589,20 +645807,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196883] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190655] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9900), 1, + ACTIONS(10094), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9192), 1, + STATE(9332), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630610,19 +645829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196912] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - [190682] = 5, - ACTIONS(9902), 1, - anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + ACTIONS(469), 1, + sym__backtick_identifier, + ACTIONS(10096), 1, + anon_sym_class, + STATE(823), 1, + sym__lexical_identifier, + STATE(1073), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630630,19 +645851,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196941] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190707] = 5, - ACTIONS(9905), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10098), 1, anon_sym_DOT, - STATE(7909), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9143), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630650,20 +645873,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196970] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190732] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9908), 1, + ACTIONS(10100), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9124), 1, + STATE(9306), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630671,20 +645895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196999] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190759] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9910), 1, + ACTIONS(10102), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9286), 1, + STATE(9179), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630692,20 +645917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197028] = 7, + ACTIONS(9208), 1, sym__alpha_identifier, - [190786] = 6, - ACTIONS(9074), 1, + ACTIONS(9214), 1, sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(8508), 1, + STATE(8325), 1, sym_simple_identifier, - STATE(8551), 1, - sym_identifier, + STATE(8333), 1, + sym__lexical_identifier, + STATE(8373), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(9210), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630713,20 +645939,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197057] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190813] = 6, - ACTIONS(9100), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5638), 1, - sym_simple_identifier, - STATE(5660), 1, + ACTIONS(10104), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5663), 1, - sym__simple_user_type, + STATE(9381), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9098), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630734,20 +645961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [190840] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9912), 1, + [197086] = 5, + ACTIONS(10106), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9289), 1, - sym_simple_identifier, + STATE(7923), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630756,19 +645981,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [190867] = 6, - ACTIONS(8531), 1, + [197111] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9914), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9363), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(9584), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630776,20 +646003,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197140] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190894] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9916), 1, + ACTIONS(10109), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9235), 1, + STATE(9437), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630797,20 +646025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197169] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190921] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9918), 1, + ACTIONS(10111), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9293), 1, + STATE(9180), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630818,20 +646047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197198] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190948] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9920), 1, + ACTIONS(10113), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9328), 1, + STATE(9375), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630839,20 +646069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197227] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [190975] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9922), 1, + ACTIONS(10115), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9238), 1, + STATE(9182), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630860,20 +646091,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197256] = 7, + ACTIONS(9258), 1, sym__alpha_identifier, - [191002] = 6, - ACTIONS(8531), 1, + ACTIONS(9266), 1, sym__backtick_identifier, - ACTIONS(9924), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9015), 1, + STATE(2826), 1, sym_simple_identifier, + STATE(2853), 1, + sym__lexical_identifier, + STATE(3014), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630881,20 +646113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197285] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191029] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9926), 1, + ACTIONS(10117), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9246), 1, + STATE(9369), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630902,20 +646135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197314] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191056] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9928), 1, + ACTIONS(10119), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9294), 1, + STATE(9195), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630923,39 +646157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197343] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191083] = 4, - ACTIONS(9930), 1, - anon_sym_DOT, - STATE(7882), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4103), 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, - [191106] = 6, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9933), 1, - anon_sym_class, - STATE(832), 1, + ACTIONS(10121), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(1061), 1, + STATE(9196), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630963,20 +646179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197372] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - [191133] = 6, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9935), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9298), 1, + STATE(2899), 1, sym_simple_identifier, + STATE(2955), 1, + sym__lexical_identifier, + STATE(3021), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630984,46 +646201,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197401] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191160] = 11, - ACTIONS(9937), 1, - anon_sym_typealias, - ACTIONS(9941), 1, - anon_sym_enum, - ACTIONS(9943), 1, - anon_sym_constructor, - ACTIONS(9947), 1, - anon_sym_companion, - ACTIONS(9949), 1, - anon_sym_object, - ACTIONS(9951), 1, - anon_sym_fun, - ACTIONS(9953), 1, - anon_sym_get, - ACTIONS(9955), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9939), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9945), 2, - anon_sym_val, - anon_sym_var, - [191197] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9957), 1, + ACTIONS(10123), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9030), 1, + STATE(9365), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631031,20 +646223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197430] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191224] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9959), 1, + ACTIONS(10125), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9302), 1, + STATE(9197), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631052,20 +646245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197459] = 7, + ACTIONS(9434), 1, sym__alpha_identifier, - [191251] = 6, - ACTIONS(9240), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(7079), 1, - sym_simple_identifier, - STATE(7160), 1, + STATE(5660), 1, sym__lexical_identifier, - STATE(7200), 1, + STATE(5684), 1, + sym_simple_identifier, + STATE(5706), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9234), 8, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631073,20 +646267,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197488] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191278] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9961), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9250), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(8822), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631094,19 +646289,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197517] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191305] = 5, - ACTIONS(9963), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10127), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9202), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631114,20 +646311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197546] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191330] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9966), 1, + ACTIONS(10129), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9196), 1, + STATE(9203), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631135,20 +646333,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197575] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191357] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9968), 1, + ACTIONS(10131), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9306), 1, + STATE(9348), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631156,20 +646355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197604] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191384] = 6, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9970), 1, - anon_sym_class, - STATE(3077), 1, + ACTIONS(10133), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3915), 1, + STATE(9208), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631177,20 +646377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197633] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191411] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10135), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9216), 1, sym_simple_identifier, - STATE(8795), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631198,20 +646399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197662] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191438] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(10137), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9312), 1, + STATE(9335), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631219,20 +646421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197691] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191465] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9974), 1, + ACTIONS(10139), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9255), 1, + STATE(9340), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631240,20 +646443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197720] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191492] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9976), 1, + ACTIONS(10141), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9314), 1, + STATE(9338), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631261,20 +646465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197749] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191519] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9978), 1, + ACTIONS(10143), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9133), 1, + STATE(9331), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631282,20 +646487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197778] = 7, + ACTIONS(557), 1, sym__alpha_identifier, - [191546] = 6, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9980), 1, - anon_sym_DOT, - STATE(6123), 1, + ACTIONS(10145), 1, + anon_sym_class, + STATE(2791), 1, sym__lexical_identifier, - STATE(9233), 1, + STATE(3140), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631303,20 +646509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197807] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191573] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9982), 1, + ACTIONS(10147), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9039), 1, + STATE(9218), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631324,20 +646531,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197836] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191600] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9984), 1, + ACTIONS(10149), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9318), 1, + STATE(9228), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631345,20 +646553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197865] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191627] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9986), 1, + ACTIONS(10151), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9276), 1, + STATE(9235), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631366,20 +646575,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197894] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191654] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9988), 1, + ACTIONS(10153), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9370), 1, + STATE(9328), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631387,20 +646597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197923] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191681] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9990), 1, + ACTIONS(10155), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9132), 1, + STATE(9236), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631408,20 +646619,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197952] = 7, + ACTIONS(557), 1, sym__alpha_identifier, - [191708] = 6, - ACTIONS(9106), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(8261), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(8269), 1, + STATE(2803), 1, sym_simple_identifier, - STATE(8331), 1, + STATE(2818), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9102), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631429,20 +646641,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197981] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191735] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9992), 1, + ACTIONS(10157), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9376), 1, + STATE(9324), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631450,20 +646663,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [191762] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(9994), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9130), 1, - sym_simple_identifier, + [198010] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4212), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4210), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631472,19 +646681,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191789] = 6, - ACTIONS(8531), 1, + [198031] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(9996), 1, + ACTIONS(10159), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9280), 1, + STATE(9239), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631492,19 +646703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198060] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191816] = 5, - ACTIONS(9998), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10161), 1, anon_sym_DOT, - STATE(6531), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9321), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631512,19 +646725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [191841] = 5, - ACTIONS(10001), 1, + [198089] = 5, + ACTIONS(10163), 1, anon_sym_DOT, - STATE(7811), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631533,19 +646745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191866] = 6, - ACTIONS(8531), 1, + [198114] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10166), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9270), 1, sym_simple_identifier, - STATE(9969), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631553,20 +646767,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198143] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191893] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10004), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9285), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(8967), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631574,19 +646789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [191920] = 5, - ACTIONS(10006), 1, + [198172] = 5, + ACTIONS(10168), 1, anon_sym_DOT, - STATE(6531), 1, + STATE(7977), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, + ACTIONS(4195), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631595,19 +646809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [191945] = 6, - ACTIONS(8531), 1, + [198197] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10009), 1, + ACTIONS(10171), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9169), 1, + STATE(9318), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631615,20 +646831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198226] = 7, + ACTIONS(211), 1, sym__alpha_identifier, - [191972] = 6, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10011), 1, - anon_sym_DOT, - STATE(6123), 1, + ACTIONS(10173), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(9127), 1, + STATE(4756), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631636,20 +646853,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198255] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [191999] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9172), 1, sym_simple_identifier, - STATE(8842), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631657,20 +646875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198284] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192026] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10013), 1, + ACTIONS(10177), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9067), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631678,20 +646897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198313] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192053] = 6, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10015), 1, - anon_sym_class, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3807), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(9425), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631699,20 +646919,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198342] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192080] = 6, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10017), 1, - anon_sym_class, - STATE(2868), 1, + ACTIONS(10179), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3472), 1, + STATE(9314), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631720,20 +646941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198371] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192107] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10019), 1, + ACTIONS(10181), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9123), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631741,20 +646963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198400] = 7, + ACTIONS(9232), 1, sym__alpha_identifier, - [192134] = 6, - ACTIONS(491), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3144), 1, + STATE(4544), 1, sym_simple_identifier, - STATE(3401), 1, + STATE(4545), 1, + sym__lexical_identifier, + STATE(4608), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631762,20 +646985,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198429] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192161] = 6, - ACTIONS(9296), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(7167), 1, - sym_simple_identifier, - STATE(7289), 1, + ACTIONS(10183), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(7402), 1, - sym__simple_user_type, + STATE(9097), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9290), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631783,20 +647007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198458] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192188] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10185), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(8543), 1, + STATE(9313), 1, sym_simple_identifier, - STATE(9160), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631804,20 +647029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198487] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192215] = 6, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8508), 1, + STATE(8564), 1, sym_simple_identifier, - STATE(9079), 1, - sym_identifier, + STATE(8806), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631825,20 +647051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [192242] = 6, - ACTIONS(9096), 1, - sym__backtick_identifier, - STATE(5550), 1, - sym_simple_identifier, - STATE(5562), 1, - sym__lexical_identifier, - STATE(5596), 1, - sym__simple_user_type, + [198516] = 5, + ACTIONS(10187), 1, + anon_sym_DOT, + STATE(8012), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9090), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631847,19 +647071,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192269] = 6, - ACTIONS(8531), 1, + [198541] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10021), 1, + ACTIONS(10190), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9118), 1, + STATE(9261), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631867,20 +647093,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198570] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - [192296] = 6, - ACTIONS(1752), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(5398), 1, - sym_simple_identifier, - STATE(5504), 1, + ACTIONS(10192), 1, + anon_sym_class, + STATE(2955), 1, sym__lexical_identifier, - STATE(5547), 1, - sym__simple_user_type, + STATE(3583), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1688), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631888,20 +647115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198599] = 7, + ACTIONS(473), 1, sym__alpha_identifier, - [192323] = 6, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10023), 1, - anon_sym_DOT, - STATE(6123), 1, + ACTIONS(10194), 1, + anon_sym_class, + STATE(3332), 1, sym__lexical_identifier, - STATE(9333), 1, + STATE(3960), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631909,19 +647137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198628] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192350] = 5, - ACTIONS(10025), 1, + ACTIONS(8702), 1, + sym__backtick_identifier, + ACTIONS(10196), 1, anon_sym_DOT, - STATE(7913), 1, - aux_sym_user_type_repeat1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9380), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631929,20 +647159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [192375] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(10028), 1, + [198657] = 5, + ACTIONS(10198), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9138), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631951,18 +647179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192402] = 5, - ACTIONS(10030), 1, - anon_sym_DOT, - STATE(7890), 1, - aux_sym_user_type_repeat1, + [198682] = 7, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + STATE(4612), 1, + sym__lexical_identifier, + STATE(4683), 1, + sym_simple_identifier, + STATE(4857), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631970,20 +647201,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198711] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192427] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10033), 1, + ACTIONS(10201), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9018), 1, + STATE(9413), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631991,20 +647223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198740] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192454] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10035), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9019), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(9092), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632012,20 +647245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [192481] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(10037), 1, + [198769] = 5, + ACTIONS(10203), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9020), 1, - sym_simple_identifier, + STATE(7997), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4195), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632034,19 +647265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192508] = 6, - ACTIONS(8531), 1, + [198794] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + ACTIONS(10206), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(7952), 1, + STATE(9459), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632054,20 +647287,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198823] = 11, + ACTIONS(10208), 1, + anon_sym_typealias, + ACTIONS(10212), 1, + anon_sym_enum, + ACTIONS(10214), 1, + anon_sym_constructor, + ACTIONS(10218), 1, + anon_sym_companion, + ACTIONS(10220), 1, + anon_sym_object, + ACTIONS(10222), 1, + anon_sym_fun, + ACTIONS(10224), 1, + anon_sym_get, + ACTIONS(10226), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10210), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10216), 2, + anon_sym_val, + anon_sym_var, + [198860] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192535] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10039), 1, + ACTIONS(10228), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9114), 1, + STATE(9165), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632075,20 +647335,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198889] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192562] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10041), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9354), 1, + STATE(9022), 1, + sym_parameter, + STATE(9513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632096,20 +647357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198918] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - [192589] = 6, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - ACTIONS(10043), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9258), 1, + STATE(824), 1, sym_simple_identifier, + STATE(858), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632117,20 +647379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198947] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192616] = 6, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2827), 1, - sym_simple_identifier, - STATE(2868), 1, + ACTIONS(10230), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2915), 1, - sym__simple_user_type, + STATE(9304), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632138,19 +647401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [192643] = 5, - ACTIONS(10045), 1, + [198976] = 5, + ACTIONS(10232), 1, anon_sym_DOT, - STATE(7948), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 2, + ACTIONS(4155), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4140), 8, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632159,19 +647421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192668] = 6, - ACTIONS(8531), 1, + [199001] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10048), 1, + ACTIONS(10235), 1, anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9113), 1, + STATE(9361), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632179,20 +647443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199030] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192695] = 6, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2834), 1, + ACTIONS(10237), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(2850), 1, + STATE(9116), 1, sym_simple_identifier, - STATE(2932), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632200,20 +647465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199059] = 7, + ACTIONS(9484), 1, sym__alpha_identifier, - [192722] = 6, - ACTIONS(8531), 1, + ACTIONS(9492), 1, sym__backtick_identifier, - ACTIONS(10050), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9112), 1, + STATE(7150), 1, sym_simple_identifier, + STATE(7215), 1, + sym__lexical_identifier, + STATE(7279), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9490), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632221,20 +647487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [192749] = 6, - ACTIONS(9220), 1, - sym__backtick_identifier, - STATE(3703), 1, - sym_simple_identifier, - STATE(3930), 1, - sym__lexical_identifier, - STATE(3979), 1, - sym__simple_user_type, + [199088] = 5, + ACTIONS(10239), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9210), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632243,19 +647507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192776] = 6, - ACTIONS(9082), 1, + [199113] = 7, + ACTIONS(1724), 1, + sym__alpha_identifier, + ACTIONS(1788), 1, sym__backtick_identifier, - STATE(4560), 1, - sym__lexical_identifier, - STATE(4568), 1, + STATE(5340), 1, sym_simple_identifier, - STATE(4782), 1, + STATE(5458), 1, + sym__lexical_identifier, + STATE(5503), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9076), 8, + ACTIONS(3092), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632263,20 +647529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199142] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192803] = 6, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10052), 1, - anon_sym_class, - STATE(4561), 1, + ACTIONS(10242), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5065), 1, + STATE(9227), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632284,20 +647551,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199171] = 7, + ACTIONS(9448), 1, sym__alpha_identifier, - [192830] = 6, - ACTIONS(8531), 1, + ACTIONS(9456), 1, sym__backtick_identifier, - ACTIONS(10054), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9103), 1, + STATE(7266), 1, sym_simple_identifier, + STATE(7314), 1, + sym__lexical_identifier, + STATE(7501), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9454), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632305,19 +647573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [192857] = 5, - ACTIONS(10056), 1, + [199200] = 5, + ACTIONS(10244), 1, anon_sym_DOT, - STATE(6531), 1, + STATE(8022), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 2, + ACTIONS(4195), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4075), 8, + ACTIONS(4193), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632326,19 +647593,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [192882] = 6, - ACTIONS(9262), 1, + [199225] = 7, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(7239), 1, - sym_simple_identifier, - STATE(7370), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(7577), 1, - sym__simple_user_type, + STATE(8564), 1, + sym_simple_identifier, + STATE(9748), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9256), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632346,20 +647615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199254] = 7, + ACTIONS(9248), 1, sym__alpha_identifier, - [192909] = 6, - ACTIONS(8531), 1, + ACTIONS(9256), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(5602), 1, sym__lexical_identifier, - STATE(6483), 1, - sym__simple_user_type, - STATE(6530), 1, + STATE(5617), 1, sym_simple_identifier, + STATE(5649), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9252), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632367,20 +647637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199283] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192936] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10059), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9099), 1, + STATE(8564), 1, sym_simple_identifier, + STATE(8929), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632388,39 +647659,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199312] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [192963] = 4, - ACTIONS(9006), 1, - anon_sym_LT, - STATE(6509), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4110), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [192986] = 6, - ACTIONS(9056), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2895), 1, - sym_simple_identifier, - STATE(2906), 1, + ACTIONS(10247), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(3051), 1, - sym__simple_user_type, + STATE(9259), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9050), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632428,20 +647681,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199341] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [193013] = 6, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(802), 1, - sym_simple_identifier, - STATE(832), 1, + ACTIONS(10249), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(868), 1, - sym__simple_user_type, + STATE(9435), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632449,20 +647703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [193040] = 6, - ACTIONS(8531), 1, - sym__backtick_identifier, - ACTIONS(10061), 1, + [199370] = 5, + ACTIONS(10251), 1, anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9096), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(4155), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4153), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632471,19 +647723,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [193067] = 6, - ACTIONS(571), 1, + [199395] = 7, + ACTIONS(473), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10063), 1, + ACTIONS(10254), 1, anon_sym_class, - STATE(2834), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(3367), 1, + STATE(3994), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632491,20 +647745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199424] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [193094] = 6, - ACTIONS(9276), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5767), 1, - sym_simple_identifier, - STATE(5790), 1, + ACTIONS(10256), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5817), 1, - sym__simple_user_type, + STATE(9305), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9270), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632512,20 +647767,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199453] = 7, + ACTIONS(8672), 1, sym__alpha_identifier, - [193121] = 6, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10065), 1, - anon_sym_class, - STATE(4561), 1, + ACTIONS(10258), 1, + anon_sym_DOT, + STATE(6224), 1, sym__lexical_identifier, - STATE(5121), 1, + STATE(9122), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632533,20 +647789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199482] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193148] = 6, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - ACTIONS(10067), 1, - anon_sym_DOT, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9058), 1, + STATE(9385), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632554,20 +647809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199508] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [193175] = 6, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - ACTIONS(10069), 1, - anon_sym_DOT, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9089), 1, + STATE(577), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632575,17 +647829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199534] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193202] = 3, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8833), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4348), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4346), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632593,37 +647849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199560] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [193223] = 4, - ACTIONS(10071), 1, - anon_sym_DOT, - STATE(7863), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4142), 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, - [193246] = 5, - ACTIONS(10075), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(390), 1, + STATE(2308), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632631,18 +647869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199586] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [193270] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9299), 1, + STATE(576), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632650,42 +647889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199612] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - [193294] = 10, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(1866), 1, - anon_sym_LBRACE, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(10077), 1, - sym_label, - STATE(2766), 1, - sym_value_arguments, - STATE(3372), 1, - sym_annotated_lambda, - STATE(3405), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8291), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [193328] = 5, - ACTIONS(10081), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(2646), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4595), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632693,18 +647909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199638] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [193352] = 5, - ACTIONS(10085), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2246), 1, + STATE(2576), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632712,18 +647929,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199664] = 10, + ACTIONS(1646), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(3656), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + sym_label, + STATE(2976), 1, + sym_value_arguments, + STATE(3981), 1, + sym_annotated_lambda, + STATE(4039), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8352), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [199698] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - [193376] = 5, - ACTIONS(491), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(3077), 1, - sym__lexical_identifier, - STATE(4252), 1, + STATE(5328), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632731,18 +647973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199724] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193400] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9094), 1, + STATE(9259), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632750,18 +647993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199750] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [193424] = 5, - ACTIONS(10085), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1224), 1, + STATE(2262), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632769,18 +648013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199776] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [193448] = 5, - ACTIONS(491), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(3077), 1, - sym__lexical_identifier, - STATE(3591), 1, + STATE(1383), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632788,18 +648033,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199802] = 4, + ACTIONS(10278), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4168), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [199824] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193472] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9099), 1, + STATE(9305), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632807,18 +648071,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199850] = 4, + ACTIONS(10281), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [199872] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [193496] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8993), 1, + STATE(399), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632826,18 +648109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199898] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193520] = 5, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4561), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5551), 1, + STATE(9226), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632845,18 +648129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199924] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [193544] = 5, - ACTIONS(10081), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(1367), 1, + STATE(384), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632864,37 +648149,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [193568] = 5, - ACTIONS(9312), 1, - sym__backtick_identifier, - STATE(5319), 1, - sym_simple_identifier, - STATE(5617), 1, - sym__lexical_identifier, + [199950] = 10, + ACTIONS(1586), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(3576), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + sym_label, + STATE(2795), 1, + sym_value_arguments, + STATE(3370), 1, + sym_lambda_literal, + STATE(3476), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9306), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8350), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [199984] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [193592] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8955), 1, + STATE(1359), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632902,18 +648193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200010] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193616] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1368), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9330), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632921,18 +648213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200036] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193640] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1369), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8809), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632940,18 +648233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200062] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [193664] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9103), 1, + STATE(2290), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632959,18 +648253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200088] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [193688] = 5, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(9129), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632978,18 +648273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200114] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - [193712] = 5, - ACTIONS(10081), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(1372), 1, + STATE(5331), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(5685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632997,18 +648293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200140] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - [193736] = 5, - ACTIONS(10075), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(583), 1, + STATE(2195), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3680), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633016,18 +648313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200166] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [193760] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1230), 1, + STATE(1358), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633035,18 +648333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200192] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [193784] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9104), 1, + STATE(1323), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633054,18 +648353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200218] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - [193808] = 5, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9003), 1, + STATE(5290), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633073,18 +648373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200244] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - [193832] = 5, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9274), 1, + STATE(5510), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633092,36 +648393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200270] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [193856] = 4, - ACTIONS(9773), 1, - sym__quest, - STATE(6659), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4223), 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, - [193878] = 5, - ACTIONS(10089), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(8582), 1, + STATE(393), 1, sym_simple_identifier, - STATE(8621), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10087), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633129,37 +648413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200296] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - [193902] = 5, - ACTIONS(10085), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(1231), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(2791), 1, sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10083), 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, - [193926] = 5, - ACTIONS(10081), 1, - sym__backtick_identifier, - STATE(2644), 1, + STATE(2940), 1, sym_simple_identifier, - STATE(3583), 1, - sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633167,18 +648433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200322] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [193950] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1388), 1, + STATE(1304), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633186,18 +648453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200348] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - [193974] = 5, - ACTIONS(8531), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(8988), 1, + STATE(5554), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633205,18 +648473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200374] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [193998] = 5, - ACTIONS(10075), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(585), 1, + STATE(2597), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633224,18 +648493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200400] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194022] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1228), 1, + STATE(1303), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633243,18 +648513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200426] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194046] = 5, - ACTIONS(9074), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(8656), 1, + STATE(2563), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633262,18 +648533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200452] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194070] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1242), 1, + STATE(2599), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633281,18 +648553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200478] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - [194094] = 5, - ACTIONS(10075), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(588), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(3332), 1, sym__lexical_identifier, + STATE(4211), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633300,18 +648573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200504] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194118] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1392), 1, + STATE(2595), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633319,37 +648593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200530] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [194142] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9113), 1, + STATE(2590), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [194166] = 5, - ACTIONS(571), 1, - sym__backtick_identifier, - STATE(2834), 1, + STATE(3630), 1, sym__lexical_identifier, - STATE(3009), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633357,18 +648613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200556] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - [194190] = 5, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9114), 1, + STATE(867), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633376,18 +648633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200582] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [194214] = 5, - ACTIONS(10081), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(2582), 1, + STATE(2584), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633395,18 +648653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200608] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [194238] = 5, - ACTIONS(10085), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1396), 1, + STATE(2582), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633414,42 +648673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200634] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - [194262] = 10, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(1856), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6493), 1, - sym_label, - STATE(4496), 1, - sym_value_arguments, - STATE(4683), 1, - sym_lambda_literal, - STATE(4756), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8290), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [194296] = 5, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(9159), 1, + STATE(4052), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633457,18 +648693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200660] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [194320] = 5, - ACTIONS(10085), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1223), 1, + STATE(2564), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633476,56 +648713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200686] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194344] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9107), 1, + STATE(2415), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [194368] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(3193), 1, sym__lexical_identifier, - STATE(9258), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 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, - [194392] = 5, - ACTIONS(9074), 1, - sym__backtick_identifier, - STATE(5637), 1, - sym__lexical_identifier, - STATE(9457), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633533,18 +648733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200712] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194416] = 5, - ACTIONS(10075), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(383), 1, + STATE(1351), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633552,18 +648753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200738] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194440] = 5, - ACTIONS(10081), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1499), 1, + STATE(1317), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633571,18 +648773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200764] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194464] = 5, - ACTIONS(10075), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(386), 1, + STATE(2416), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633590,42 +648793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200790] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [194488] = 10, - ACTIONS(1624), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - sym_label, - STATE(2936), 1, - sym_value_arguments, - STATE(3773), 1, - sym_annotated_lambda, - STATE(3819), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8289), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [194522] = 5, - ACTIONS(10085), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1398), 1, + STATE(2585), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633633,18 +648813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200816] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - [194546] = 5, - ACTIONS(8531), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(2791), 1, sym__lexical_identifier, - STATE(9123), 1, + STATE(3735), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633652,18 +648833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200842] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [194570] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8949), 1, + STATE(2387), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633671,18 +648853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200868] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194594] = 5, - ACTIONS(10085), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2307), 1, + STATE(417), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633690,36 +648873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200894] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194618] = 4, - ACTIONS(10091), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4077), 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, - [194640] = 5, - ACTIONS(197), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(4511), 1, - sym__lexical_identifier, - STATE(4906), 1, + STATE(413), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633727,18 +648893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200920] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194664] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8986), 1, + STATE(408), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633746,36 +648913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200946] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194688] = 4, - ACTIONS(10093), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4103), 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, - [194710] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9127), 1, + STATE(536), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633783,18 +648933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200972] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194734] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9129), 1, + STATE(558), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633802,18 +648953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [200998] = 6, + ACTIONS(9232), 1, sym__alpha_identifier, - [194758] = 5, - ACTIONS(8531), 1, + ACTIONS(9240), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(4545), 1, sym__lexical_identifier, - STATE(9233), 1, + STATE(5151), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9236), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633821,18 +648973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201024] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194782] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9132), 1, + STATE(416), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633840,18 +648993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201050] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194806] = 5, - ACTIONS(10075), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(387), 1, + STATE(542), 1, sym_simple_identifier, - STATE(922), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633859,18 +649013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201076] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - [194830] = 5, - ACTIONS(411), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(832), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(942), 1, + STATE(4228), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633878,18 +649033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201102] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194854] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9336), 1, + STATE(539), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633897,18 +649053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201128] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [194878] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2657), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9122), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633916,18 +649073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201154] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - [194902] = 5, - ACTIONS(10075), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(400), 1, + STATE(2192), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3680), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633935,18 +649093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201180] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194926] = 5, - ACTIONS(10075), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(594), 1, + STATE(552), 1, sym_simple_identifier, - STATE(922), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633954,18 +649113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201206] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - [194950] = 5, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9319), 1, + STATE(1387), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633973,18 +649133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201232] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [194974] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9318), 1, + STATE(541), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633992,18 +649153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201258] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [194998] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9133), 1, + STATE(2641), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634011,18 +649173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201284] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - [195022] = 5, - ACTIONS(8531), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(9136), 1, + STATE(1015), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634030,18 +649193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201310] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195046] = 5, - ACTIONS(10081), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2649), 1, + STATE(592), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634049,18 +649213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201336] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195070] = 5, - ACTIONS(10085), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(1229), 1, + STATE(578), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634068,18 +649233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201362] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195094] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9314), 1, + STATE(540), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634087,18 +649253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201388] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195118] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9307), 1, + STATE(546), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634106,18 +649273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201414] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [195142] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9306), 1, + STATE(2214), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634125,18 +649293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201440] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - [195166] = 5, - ACTIONS(10075), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(392), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(2791), 1, sym__lexical_identifier, + STATE(4081), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634144,18 +649313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201466] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [195190] = 5, - ACTIONS(10081), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2580), 1, + STATE(2247), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634163,18 +649333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201492] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [195214] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9302), 1, + STATE(9292), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634182,18 +649353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201518] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [195238] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9296), 1, + STATE(9116), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634201,18 +649373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201544] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [195262] = 5, - ACTIONS(10081), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2579), 1, + STATE(2206), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634220,18 +649393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201570] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [195286] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2194), 1, + STATE(2212), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634239,18 +649413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201596] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [195310] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9294), 1, + STATE(8400), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634258,18 +649433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201622] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195334] = 5, - ACTIONS(10075), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(391), 1, + STATE(2662), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634277,37 +649453,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [195358] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9293), 1, - sym_simple_identifier, + [201648] = 10, + ACTIONS(1658), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1736), 1, + anon_sym_LPAREN, + ACTIONS(10289), 1, + sym_label, + STATE(773), 1, + sym_value_arguments, + STATE(1044), 1, + sym_lambda_literal, + STATE(1171), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8342), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [201682] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [195382] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9288), 1, + STATE(8818), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634315,18 +649497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201708] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195406] = 5, - ACTIONS(10081), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2575), 1, + STATE(537), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634334,37 +649517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201734] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195430] = 5, - ACTIONS(10098), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(1606), 1, + STATE(518), 1, sym_simple_identifier, - STATE(3902), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10096), 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, - [195454] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(877), 1, sym__lexical_identifier, - STATE(9286), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634372,37 +649537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201760] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195478] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9169), 1, + STATE(2291), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [195502] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(3630), 1, sym__lexical_identifier, - STATE(9280), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634410,18 +649557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201786] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [195526] = 5, - ACTIONS(10085), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2569), 1, + STATE(538), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634429,18 +649577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201812] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - [195550] = 5, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(8971), 1, + STATE(3762), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634448,18 +649597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201838] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [195574] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9283), 1, + STATE(8917), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634467,55 +649617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201864] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195598] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9352), 1, + STATE(2573), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [195622] = 4, - ACTIONS(9773), 1, - sym__quest, - STATE(6659), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4167), 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, - [195644] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(3630), 1, sym__lexical_identifier, - STATE(9001), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634523,18 +649637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201890] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195668] = 5, - ACTIONS(9074), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(5232), 1, + STATE(2259), 1, sym_simple_identifier, - STATE(5637), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634542,37 +649657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201916] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - [195692] = 5, - ACTIONS(8531), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9137), 1, + STATE(2215), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [195716] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(3680), 1, sym__lexical_identifier, - STATE(9278), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634580,18 +649677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201942] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [195740] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9271), 1, + STATE(9304), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634599,18 +649697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201968] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195764] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9270), 1, + STATE(2282), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634618,18 +649717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201994] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195788] = 5, - ACTIONS(10075), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(397), 1, + STATE(2252), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634637,18 +649737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202020] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195812] = 5, - ACTIONS(9312), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(5350), 1, + STATE(2533), 1, sym_simple_identifier, - STATE(5617), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9306), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634656,18 +649757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202046] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - [195836] = 5, - ACTIONS(8531), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(9673), 1, + STATE(4029), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634675,93 +649777,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [195860] = 4, - ACTIONS(10100), 1, + [202072] = 4, + ACTIONS(10291), 1, anon_sym_DOT, - STATE(8019), 1, + STATE(6592), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 9, + ACTIONS(4195), 9, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_by, + anon_sym_where, anon_sym_AMP, sym__quest, - anon_sym_DASH_GT, anon_sym_while, - [195882] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9134), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [195906] = 5, - ACTIONS(10085), 1, - sym__backtick_identifier, - STATE(1226), 1, - sym_simple_identifier, - STATE(2945), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10083), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [202094] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [195930] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9265), 1, + STATE(2221), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8503), 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, - [195954] = 5, - ACTIONS(8531), 1, - sym__backtick_identifier, - STATE(6123), 1, + STATE(3630), 1, sym__lexical_identifier, - STATE(9264), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634769,18 +649815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202120] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - [195978] = 5, - ACTIONS(8531), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(2955), 1, sym__lexical_identifier, - STATE(8666), 1, + STATE(3113), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1592), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634788,18 +649835,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202146] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - [196002] = 5, - ACTIONS(197), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(4511), 1, + STATE(3332), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(4270), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634807,18 +649855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202172] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196026] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9124), 1, + STATE(9718), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634826,18 +649875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202198] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [196050] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9261), 1, + STATE(2405), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634845,18 +649895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202224] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196074] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8838), 1, + STATE(9165), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634864,18 +649915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202250] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [196098] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9276), 1, + STATE(395), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634883,18 +649935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202276] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196122] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9273), 1, + STATE(8973), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634902,18 +649955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202302] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [196146] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9067), 1, + STATE(2402), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634921,18 +649975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202328] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - [196170] = 5, - ACTIONS(8531), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9196), 1, + STATE(8548), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634940,18 +649995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202354] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [196194] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9087), 1, + STATE(2653), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634959,18 +650015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202380] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [196218] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9250), 1, + STATE(2594), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634978,18 +650035,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202406] = 4, + ACTIONS(10293), 1, + anon_sym_DOT, + STATE(8040), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [202428] = 10, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, + anon_sym_LPAREN, + ACTIONS(10295), 1, + sym_label, + STATE(2753), 1, + sym_value_arguments, + STATE(3161), 1, + sym_annotated_lambda, + STATE(3174), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8336), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [202462] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196242] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9242), 1, + STATE(8836), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634997,18 +650097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202488] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [196266] = 5, - ACTIONS(9312), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(5336), 1, + STATE(2240), 1, sym_simple_identifier, - STATE(5617), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9306), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635016,18 +650117,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202514] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196290] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1444), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9413), 1, sym_simple_identifier, - STATE(3583), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202540] = 6, + ACTIONS(10272), 1, + sym__alpha_identifier, + ACTIONS(10276), 1, + sym__backtick_identifier, + STATE(2596), 1, + sym_simple_identifier, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10274), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202566] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9965), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(9963), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635036,17 +650174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [196314] = 5, - ACTIONS(8531), 1, + [202586] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9019), 1, + STATE(9380), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635054,18 +650194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202612] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196338] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9076), 1, + STATE(9345), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635073,18 +650214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202638] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196362] = 5, - ACTIONS(10098), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1600), 1, - sym_simple_identifier, - STATE(3902), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8840), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10096), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635092,18 +650234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202664] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196386] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(407), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9339), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635111,18 +650254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202690] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196410] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9246), 1, + STATE(8851), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635130,18 +650274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202716] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [196434] = 5, - ACTIONS(10075), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(413), 1, + STATE(2409), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635149,18 +650294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202742] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196458] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9018), 1, + STATE(8859), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635168,18 +650314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202768] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196482] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(417), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8871), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635187,16 +650334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202794] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [196506] = 3, + ACTIONS(10276), 1, + sym__backtick_identifier, + STATE(2386), 1, + sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9771), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(9769), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635204,18 +650354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202820] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [196526] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9333), 1, + STATE(2654), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635223,18 +650374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202846] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196550] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9243), 1, + STATE(9250), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635242,18 +650394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202872] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196574] = 5, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4561), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5389), 1, + STATE(9312), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635261,18 +650414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202898] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196598] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(411), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9097), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635280,18 +650434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202924] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196622] = 5, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8515), 1, + STATE(9197), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635299,18 +650454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202950] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196646] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9068), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635318,18 +650474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202976] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196670] = 5, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4511), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5505), 1, + STATE(9313), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635337,18 +650494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203002] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196694] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9017), 1, + STATE(9238), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635356,18 +650514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203028] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196718] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8959), 1, + STATE(8872), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635375,18 +650534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203054] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196742] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9235), 1, + STATE(9314), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635394,18 +650554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203080] = 6, + ACTIONS(10297), 1, sym__alpha_identifier, - [196766] = 5, - ACTIONS(10085), 1, + ACTIONS(10301), 1, sym__backtick_identifier, - STATE(2563), 1, + STATE(8695), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(8761), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10299), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635413,18 +650574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203106] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196790] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1563), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9316), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635432,18 +650594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203132] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196814] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9039), 1, + STATE(8874), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635451,18 +650614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203158] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - [196838] = 5, - ACTIONS(10075), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(421), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(4612), 1, sym__lexical_identifier, + STATE(5265), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635470,18 +650634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203184] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196862] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(593), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635489,18 +650654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203210] = 6, + ACTIONS(10283), 1, sym__alpha_identifier, - [196886] = 5, - ACTIONS(8531), 1, + ACTIONS(10287), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9014), 1, + STATE(2223), 1, sym_simple_identifier, + STATE(3680), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10285), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635508,18 +650674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203236] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196910] = 5, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(1077), 1, + STATE(9270), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635527,18 +650694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203262] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [196934] = 5, - ACTIONS(8531), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9231), 1, + STATE(2598), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635546,18 +650714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203288] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196958] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(597), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9240), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635565,18 +650734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203314] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [196982] = 5, - ACTIONS(10085), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2566), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9321), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635584,18 +650754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203340] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197006] = 5, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5239), 1, - sym_simple_identifier, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9239), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635603,18 +650774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203366] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197030] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9350), 1, + STATE(9236), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635622,18 +650794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203392] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - [197054] = 5, - ACTIONS(10085), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(2567), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(2791), 1, sym__lexical_identifier, + STATE(3164), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(1910), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635641,18 +650814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203418] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197078] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1459), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9326), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635660,18 +650834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203444] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [197102] = 5, - ACTIONS(10075), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(598), 1, + STATE(419), 1, sym_simple_identifier, - STATE(922), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635679,18 +650854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203470] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197126] = 5, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4170), 1, + STATE(9234), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635698,18 +650874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203496] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197150] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(605), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9328), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635717,18 +650894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203522] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197174] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9226), 1, + STATE(9228), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635736,18 +650914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203548] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197198] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2571), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9338), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635755,18 +650934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203574] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197222] = 5, - ACTIONS(10085), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1361), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9218), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635774,18 +650954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203600] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197246] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9223), 1, + STATE(9344), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635793,18 +650974,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203626] = 4, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4206), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_while, + [203648] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197270] = 5, - ACTIONS(571), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2834), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4136), 1, + STATE(9331), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635812,18 +651012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203674] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197294] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8960), 1, + STATE(8875), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635831,18 +651032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203700] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197318] = 5, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(1566), 1, + STATE(9211), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635850,18 +651052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203726] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197342] = 5, - ACTIONS(10098), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1629), 1, - sym_simple_identifier, - STATE(3902), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9223), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10096), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635869,18 +651072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203752] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197366] = 5, - ACTIONS(10085), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1359), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(8878), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635888,18 +651092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203778] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197390] = 5, - ACTIONS(10085), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1356), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9208), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635907,18 +651112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203804] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197414] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(410), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9357), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635926,42 +651132,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203830] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197438] = 10, - ACTIONS(1584), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(3382), 1, - anon_sym_LPAREN, - ACTIONS(3396), 1, - sym_label, - STATE(2777), 1, - sym_value_arguments, - STATE(3477), 1, - sym_annotated_lambda, - STATE(3500), 1, - sym_lambda_literal, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9420), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8274), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [197472] = 5, - ACTIONS(10085), 1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203856] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2539), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9203), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635969,18 +651172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203882] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197496] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9222), 1, + STATE(8885), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635988,18 +651192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203908] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197520] = 5, - ACTIONS(9082), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4560), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5228), 1, + STATE(9348), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9076), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636007,18 +651212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203934] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [197544] = 5, - ACTIONS(10085), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(1354), 1, + STATE(403), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636026,18 +651232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203960] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197568] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2572), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9199), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636045,18 +651252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [203986] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [197592] = 5, - ACTIONS(10081), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1515), 1, + STATE(2293), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636064,18 +651272,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204012] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [197616] = 5, - ACTIONS(107), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(4561), 1, - sym__lexical_identifier, - STATE(5127), 1, + STATE(402), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636083,18 +651292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204038] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - [197640] = 5, - ACTIONS(329), 1, + ACTIONS(469), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(823), 1, sym__lexical_identifier, - STATE(3729), 1, + STATE(2217), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636102,18 +651312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204064] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [197664] = 5, - ACTIONS(10075), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(408), 1, + STATE(2209), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636121,18 +651332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204090] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [197688] = 5, - ACTIONS(10081), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2573), 1, + STATE(406), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636140,18 +651352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204116] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197712] = 5, - ACTIONS(329), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3977), 1, + STATE(9196), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636159,18 +651372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204142] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197736] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1516), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9365), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636178,18 +651392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204168] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197760] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9359), 1, + STATE(8978), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636197,18 +651412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204194] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [197784] = 5, - ACTIONS(10081), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(1518), 1, + STATE(2399), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636216,18 +651432,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204220] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [197808] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, + sym__backtick_identifier, + STATE(418), 1, + sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10262), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204246] = 6, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9217), 1, + STATE(9505), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636235,18 +651472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204272] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [197832] = 5, - ACTIONS(10081), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1403), 1, + STATE(2618), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636254,18 +651492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204298] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [197856] = 5, - ACTIONS(10081), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(1410), 1, + STATE(2239), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636273,18 +651512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204324] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [197880] = 5, - ACTIONS(8531), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9052), 1, + STATE(412), 1, sym_simple_identifier, + STATE(877), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636292,18 +651532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204350] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197904] = 5, - ACTIONS(197), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4511), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(5177), 1, + STATE(9184), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636311,18 +651552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204376] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197928] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1521), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9340), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636330,18 +651572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204402] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197952] = 5, - ACTIONS(491), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(3077), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(3778), 1, + STATE(9182), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(415), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636349,18 +651592,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204428] = 4, + ACTIONS(9961), 1, + sym__quest, + STATE(6738), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4305), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_while, + [204450] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [197976] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(406), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9180), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636368,18 +651630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204476] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198000] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9070), 1, + STATE(9374), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636387,18 +651650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204502] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198024] = 5, - ACTIONS(9074), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(5637), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8460), 1, + STATE(9375), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636406,18 +651670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204528] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [198048] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9315), 1, + STATE(2667), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636425,18 +651690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204554] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198072] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9089), 1, + STATE(9381), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636444,18 +651710,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204580] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198096] = 5, - ACTIONS(10098), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1604), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9145), 1, sym_simple_identifier, - STATE(3902), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204606] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(8918), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10096), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636463,18 +651750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204632] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198120] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9328), 1, + STATE(9143), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636482,18 +651770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204658] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198144] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9256), 1, + STATE(9332), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636501,18 +651790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204684] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198168] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9216), 1, + STATE(9183), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636520,18 +651810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204710] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - [198192] = 5, - ACTIONS(10081), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(2574), 1, + STATE(5453), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(5660), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636539,18 +651830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204736] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198216] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9215), 1, + STATE(9141), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636558,18 +651850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204762] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198240] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8966), 1, + STATE(9308), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636577,18 +651870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204788] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198264] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1379), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9433), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636596,18 +651890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204814] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198288] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2587), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9255), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636615,18 +651910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204840] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198312] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9814), 1, + STATE(9439), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636634,18 +651930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204866] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198336] = 5, - ACTIONS(10085), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2391), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9188), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636653,18 +651950,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204892] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198360] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(1382), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(8943), 1, sym_simple_identifier, - STATE(3583), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204918] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, sym__lexical_identifier, + STATE(9247), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636672,18 +651990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204944] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [198384] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2585), 1, + STATE(2218), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636691,18 +652010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204970] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [198408] = 5, - ACTIONS(10081), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2613), 1, + STATE(2220), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636710,18 +652030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [204996] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [198432] = 5, - ACTIONS(10085), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2387), 1, + STATE(386), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636729,18 +652050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205022] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [198456] = 5, - ACTIONS(10085), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2583), 1, + STATE(2229), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(3193), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636748,18 +652070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205048] = 6, + ACTIONS(211), 1, sym__alpha_identifier, - [198480] = 5, - ACTIONS(571), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(2834), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3241), 1, + STATE(5053), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636767,18 +652090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205074] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - [198504] = 5, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(8967), 1, + STATE(5619), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636786,18 +652110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205100] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [198528] = 5, - ACTIONS(9074), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(5245), 1, + STATE(555), 1, sym_simple_identifier, - STATE(5637), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636805,34 +652130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205126] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [198552] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4663), 11, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [198570] = 5, - ACTIONS(9074), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(5236), 1, + STATE(2670), 1, sym_simple_identifier, - STATE(5637), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9068), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636840,18 +652150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205152] = 6, + ACTIONS(10260), 1, sym__alpha_identifier, - [198594] = 5, - ACTIONS(10085), 1, + ACTIONS(10264), 1, sym__backtick_identifier, - STATE(2386), 1, + STATE(387), 1, sym_simple_identifier, - STATE(2945), 1, + STATE(877), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(10262), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636859,18 +652170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205178] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198618] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8982), 1, + STATE(9166), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636878,18 +652190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205204] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - [198642] = 5, - ACTIONS(8531), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(9330), 1, + STATE(5477), 1, sym_simple_identifier, + STATE(5660), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636897,18 +652210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205230] = 6, + ACTIONS(10272), 1, sym__alpha_identifier, - [198666] = 5, - ACTIONS(571), 1, + ACTIONS(10276), 1, sym__backtick_identifier, - STATE(2834), 1, - sym__lexical_identifier, - STATE(4012), 1, + STATE(2538), 1, sym_simple_identifier, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(495), 8, + ACTIONS(10274), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636916,18 +652230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205256] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198690] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9376), 1, + STATE(9191), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636935,18 +652250,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205282] = 10, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1836), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, + anon_sym_LPAREN, + ACTIONS(6728), 1, + sym_label, + STATE(4531), 1, + sym_value_arguments, + STATE(4777), 1, + sym_annotated_lambda, + STATE(4864), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8340), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [205316] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198714] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8892), 1, + STATE(9138), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636954,18 +652294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205342] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198738] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9370), 1, + STATE(9446), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636973,18 +652314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205368] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - [198762] = 5, - ACTIONS(10085), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(2383), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(5685), 1, sym__lexical_identifier, + STATE(8654), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636992,18 +652334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205394] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198786] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9078), 1, + STATE(9299), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637011,18 +652354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205420] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198810] = 5, - ACTIONS(10081), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2652), 1, - sym_simple_identifier, - STATE(3583), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9224), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637030,35 +652374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205446] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198834] = 3, - ACTIONS(4350), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4348), 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, - [198854] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8819), 1, + STATE(9273), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637066,18 +652394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205472] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [198878] = 5, - ACTIONS(10075), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(537), 1, + STATE(2236), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637085,18 +652414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205498] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - [198902] = 5, - ACTIONS(8531), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(4612), 1, sym__lexical_identifier, - STATE(9372), 1, + STATE(4916), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637104,18 +652434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205524] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - [198926] = 5, - ACTIONS(8531), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8976), 1, + STATE(5481), 1, sym_simple_identifier, + STATE(5660), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637123,18 +652454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205550] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [198950] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(9363), 1, + STATE(8725), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637142,36 +652474,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [198974] = 4, - ACTIONS(10102), 1, - anon_sym_DOT, - STATE(6539), 1, - aux_sym_user_type_repeat1, + [205576] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 9, + ACTIONS(4708), 11, 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_in, anon_sym_while, - [198996] = 5, - ACTIONS(10075), 1, + [205594] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(538), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9158), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637179,18 +652510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205620] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [199020] = 5, - ACTIONS(10075), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(518), 1, + STATE(2627), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637198,18 +652530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205646] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199044] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8882), 1, + STATE(9171), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637217,18 +652550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205672] = 6, + ACTIONS(473), 1, sym__alpha_identifier, - [199068] = 5, - ACTIONS(10085), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(2146), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(3332), 1, sym__lexical_identifier, + STATE(3667), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637236,18 +652570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205698] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199092] = 5, - ACTIONS(411), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(832), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(1353), 1, + STATE(9169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637255,18 +652590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205724] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199116] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(540), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9204), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637274,18 +652610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205750] = 6, + ACTIONS(9434), 1, sym__alpha_identifier, - [199140] = 5, - ACTIONS(10075), 1, + ACTIONS(9442), 1, sym__backtick_identifier, - STATE(541), 1, + STATE(5454), 1, sym_simple_identifier, - STATE(922), 1, + STATE(5660), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(9440), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637293,42 +652630,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205776] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199164] = 10, - ACTIONS(1614), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(1700), 1, - anon_sym_LPAREN, - ACTIONS(10104), 1, - sym_label, - STATE(779), 1, - sym_value_arguments, - STATE(1048), 1, - sym_lambda_literal, - STATE(1073), 1, - sym_annotated_lambda, + ACTIONS(8702), 1, + sym__backtick_identifier, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9776), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8270), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [199198] = 5, - ACTIONS(10075), 1, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205802] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(519), 1, + STATE(6224), 1, + sym__lexical_identifier, + STATE(9262), 1, sym_simple_identifier, - STATE(922), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8682), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205828] = 6, + ACTIONS(9216), 1, + sym__alpha_identifier, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5685), 1, sym__lexical_identifier, + STATE(8617), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637336,18 +652690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205854] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - [199222] = 5, - ACTIONS(10081), 1, + ACTIONS(9224), 1, sym__backtick_identifier, - STATE(2619), 1, + STATE(5362), 1, sym_simple_identifier, - STATE(3583), 1, + STATE(5685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10079), 8, + ACTIONS(9220), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637355,42 +652710,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205880] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [199246] = 10, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(6833), 1, - anon_sym_LPAREN, - ACTIONS(6841), 1, - sym_label, - STATE(4533), 1, - sym_value_arguments, - STATE(5081), 1, - sym_lambda_literal, - STATE(5113), 1, - sym_annotated_lambda, + ACTIONS(10270), 1, + sym__backtick_identifier, + STATE(2193), 1, + sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8271), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [199280] = 5, - ACTIONS(329), 1, + ACTIONS(10268), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205906] = 6, + ACTIONS(8672), 1, + sym__alpha_identifier, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2868), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4225), 1, + STATE(9200), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(251), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637398,18 +652750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205932] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199304] = 5, - ACTIONS(10075), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(534), 1, - sym_simple_identifier, - STATE(922), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9225), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637417,18 +652770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205958] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199328] = 5, - ACTIONS(107), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(4561), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(4889), 1, + STATE(8919), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637436,18 +652790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [205984] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [199352] = 5, - ACTIONS(8531), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(6123), 1, - sym__lexical_identifier, - STATE(8337), 1, + STATE(2201), 1, sym_simple_identifier, + STATE(3630), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637455,18 +652810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [206010] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [199376] = 5, - ACTIONS(9312), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(5348), 1, + STATE(2203), 1, sym_simple_identifier, - STATE(5617), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9306), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637474,18 +652830,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [206036] = 3, + ACTIONS(4214), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + sym__quest, + anon_sym_in, + anon_sym_while, + [206056] = 6, + ACTIONS(10266), 1, sym__alpha_identifier, - [199400] = 5, - ACTIONS(10075), 1, + ACTIONS(10270), 1, sym__backtick_identifier, - STATE(524), 1, + STATE(2204), 1, sym_simple_identifier, - STATE(922), 1, + STATE(3630), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10073), 8, + ACTIONS(10268), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637493,18 +652867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [206082] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199424] = 5, - ACTIONS(8531), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(6123), 1, + STATE(6224), 1, sym__lexical_identifier, - STATE(8972), 1, + STATE(9192), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8503), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637512,18 +652887,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [206108] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(7041), 1, + anon_sym_LPAREN, + ACTIONS(7049), 1, + sym_label, + STATE(4566), 1, + sym_value_arguments, + STATE(5158), 1, + sym_lambda_literal, + STATE(5180), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [206142] = 6, + ACTIONS(8672), 1, sym__alpha_identifier, - [199448] = 5, - ACTIONS(10085), 1, + ACTIONS(8702), 1, sym__backtick_identifier, - STATE(2581), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(6224), 1, sym__lexical_identifier, + STATE(9435), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10083), 8, + ACTIONS(8682), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637531,12 +652931,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [206168] = 6, + ACTIONS(9216), 1, sym__alpha_identifier, - [199472] = 2, + ACTIONS(9224), 1, + sym__backtick_identifier, + STATE(5376), 1, + sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 10, + ACTIONS(9220), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206194] = 9, + ACTIONS(10303), 1, + anon_sym_typealias, + ACTIONS(10307), 1, + anon_sym_enum, + ACTIONS(10311), 1, + anon_sym_object, + ACTIONS(10313), 1, + anon_sym_fun, + ACTIONS(10315), 1, + anon_sym_get, + ACTIONS(10317), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10305), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10309), 2, + anon_sym_val, + anon_sym_var, + [206225] = 9, + ACTIONS(10319), 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, + [206256] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4681), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -637547,11 +653010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [199489] = 2, + [206273] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4659), 10, + ACTIONS(4698), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -637562,159 +653025,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [199506] = 9, - ACTIONS(10106), 1, + [206290] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10110), 1, + ACTIONS(10337), 1, anon_sym_enum, - ACTIONS(10114), 1, + ACTIONS(10341), 1, anon_sym_object, - ACTIONS(10116), 1, + ACTIONS(10343), 1, anon_sym_fun, - ACTIONS(10118), 1, + ACTIONS(10345), 1, anon_sym_get, - ACTIONS(10120), 1, + ACTIONS(10347), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10108), 2, + ACTIONS(10335), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10112), 2, + ACTIONS(10339), 2, anon_sym_val, anon_sym_var, - [199537] = 9, - ACTIONS(10122), 1, + [206321] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10126), 1, + ACTIONS(10353), 1, anon_sym_enum, - ACTIONS(10130), 1, + ACTIONS(10357), 1, anon_sym_object, - ACTIONS(10132), 1, + ACTIONS(10359), 1, anon_sym_fun, - ACTIONS(10134), 1, + ACTIONS(10361), 1, anon_sym_get, - ACTIONS(10136), 1, + ACTIONS(10363), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10124), 2, + ACTIONS(10351), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10128), 2, + ACTIONS(10355), 2, anon_sym_val, anon_sym_var, - [199568] = 9, - ACTIONS(10106), 1, - anon_sym_typealias, - ACTIONS(10140), 1, - anon_sym_enum, - ACTIONS(10144), 1, - anon_sym_object, - ACTIONS(10146), 1, - anon_sym_fun, - ACTIONS(10148), 1, - anon_sym_get, - ACTIONS(10150), 1, - anon_sym_set, + [206352] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10138), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10142), 2, - anon_sym_val, - anon_sym_var, - [199599] = 3, + ACTIONS(4206), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206369] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10154), 2, - anon_sym_LBRACK, - sym__backtick_identifier, - ACTIONS(10152), 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, - [199618] = 9, - ACTIONS(10106), 1, - anon_sym_typealias, - ACTIONS(10158), 1, - anon_sym_enum, - ACTIONS(10162), 1, - anon_sym_object, - ACTIONS(10164), 1, - anon_sym_fun, - ACTIONS(10166), 1, - anon_sym_get, - ACTIONS(10168), 1, - anon_sym_set, + ACTIONS(4765), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206386] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10156), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10160), 2, - anon_sym_val, - anon_sym_var, - [199649] = 9, - ACTIONS(10170), 1, + ACTIONS(4573), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206403] = 4, + ACTIONS(10281), 1, + anon_sym_DOT, + STATE(8040), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_while, + [206424] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10174), 1, + ACTIONS(10367), 1, anon_sym_enum, - ACTIONS(10178), 1, + ACTIONS(10371), 1, anon_sym_object, - ACTIONS(10180), 1, + ACTIONS(10373), 1, anon_sym_fun, - ACTIONS(10182), 1, + ACTIONS(10375), 1, anon_sym_get, - ACTIONS(10184), 1, + ACTIONS(10377), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10172), 2, + ACTIONS(10365), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10176), 2, + ACTIONS(10369), 2, anon_sym_val, anon_sym_var, - [199680] = 9, - ACTIONS(10186), 1, + [206455] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10190), 1, + ACTIONS(10383), 1, anon_sym_enum, - ACTIONS(10194), 1, + ACTIONS(10387), 1, anon_sym_object, - ACTIONS(10196), 1, + ACTIONS(10389), 1, anon_sym_fun, - ACTIONS(10198), 1, + ACTIONS(10391), 1, anon_sym_get, - ACTIONS(10200), 1, + ACTIONS(10393), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10188), 2, + ACTIONS(10381), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10192), 2, + ACTIONS(10385), 2, anon_sym_val, anon_sym_var, - [199711] = 2, + [206486] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 10, + ACTIONS(4730), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -637724,235 +653189,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_DASH_GT, anon_sym_in, - anon_sym_while, - [199728] = 4, - ACTIONS(9894), 1, - anon_sym_DOT, - STATE(7863), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4142), 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, - [199749] = 9, - ACTIONS(10202), 1, + anon_sym_while, + [206503] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10206), 1, + ACTIONS(10399), 1, anon_sym_enum, - ACTIONS(10210), 1, + ACTIONS(10403), 1, anon_sym_object, - ACTIONS(10212), 1, + ACTIONS(10405), 1, anon_sym_fun, - ACTIONS(10214), 1, + ACTIONS(10407), 1, anon_sym_get, - ACTIONS(10216), 1, + ACTIONS(10409), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10204), 2, + ACTIONS(10397), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10208), 2, + ACTIONS(10401), 2, anon_sym_val, anon_sym_var, - [199780] = 9, - ACTIONS(10202), 1, + [206534] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10220), 1, + ACTIONS(10415), 1, anon_sym_enum, - ACTIONS(10224), 1, + ACTIONS(10419), 1, anon_sym_object, - ACTIONS(10226), 1, + ACTIONS(10421), 1, anon_sym_fun, - ACTIONS(10228), 1, + ACTIONS(10423), 1, anon_sym_get, - ACTIONS(10230), 1, + ACTIONS(10425), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10218), 2, + ACTIONS(10413), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10222), 2, + ACTIONS(10417), 2, anon_sym_val, anon_sym_var, - [199811] = 9, - ACTIONS(10232), 1, + [206565] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10236), 1, + ACTIONS(10429), 1, anon_sym_enum, - ACTIONS(10240), 1, + ACTIONS(10433), 1, anon_sym_object, - ACTIONS(10242), 1, + ACTIONS(10435), 1, anon_sym_fun, - ACTIONS(10244), 1, + ACTIONS(10437), 1, anon_sym_get, - ACTIONS(10246), 1, + ACTIONS(10439), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10234), 2, + ACTIONS(10427), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10238), 2, + ACTIONS(10431), 2, anon_sym_val, anon_sym_var, - [199842] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4223), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [199859] = 9, - ACTIONS(10202), 1, + [206596] = 9, + ACTIONS(10303), 1, anon_sym_typealias, - ACTIONS(10250), 1, + ACTIONS(10443), 1, anon_sym_enum, - ACTIONS(10254), 1, + ACTIONS(10447), 1, anon_sym_object, - ACTIONS(10256), 1, + ACTIONS(10449), 1, anon_sym_fun, - ACTIONS(10258), 1, + ACTIONS(10451), 1, anon_sym_get, - ACTIONS(10260), 1, + ACTIONS(10453), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10248), 2, + ACTIONS(10441), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10252), 2, + ACTIONS(10445), 2, anon_sym_val, anon_sym_var, - [199890] = 2, + [206627] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4540), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [199907] = 9, - ACTIONS(10122), 1, + ACTIONS(10457), 2, + anon_sym_LBRACK, + sym__backtick_identifier, + ACTIONS(10455), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [206646] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10264), 1, + ACTIONS(10461), 1, anon_sym_enum, - ACTIONS(10268), 1, + ACTIONS(10465), 1, anon_sym_object, - ACTIONS(10270), 1, + ACTIONS(10467), 1, anon_sym_fun, - ACTIONS(10272), 1, + ACTIONS(10469), 1, anon_sym_get, - ACTIONS(10274), 1, + ACTIONS(10471), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 2, + ACTIONS(10459), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10266), 2, + ACTIONS(10463), 2, anon_sym_val, anon_sym_var, - [199938] = 9, - ACTIONS(10276), 1, + [206677] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10280), 1, + ACTIONS(10475), 1, anon_sym_enum, - ACTIONS(10284), 1, + ACTIONS(10479), 1, anon_sym_object, - ACTIONS(10286), 1, + ACTIONS(10481), 1, anon_sym_fun, - ACTIONS(10288), 1, + ACTIONS(10483), 1, anon_sym_get, - ACTIONS(10290), 1, + ACTIONS(10485), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10278), 2, + ACTIONS(10473), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10282), 2, + ACTIONS(10477), 2, anon_sym_val, anon_sym_var, - [199969] = 9, - ACTIONS(10202), 1, + [206708] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10294), 1, + ACTIONS(10489), 1, anon_sym_enum, - ACTIONS(10298), 1, + ACTIONS(10493), 1, anon_sym_object, - ACTIONS(10300), 1, + ACTIONS(10495), 1, anon_sym_fun, - ACTIONS(10302), 1, + ACTIONS(10497), 1, anon_sym_get, - ACTIONS(10304), 1, + ACTIONS(10499), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10292), 2, + ACTIONS(10487), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10296), 2, + ACTIONS(10491), 2, anon_sym_val, anon_sym_var, - [200000] = 9, - ACTIONS(10276), 1, + [206739] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10308), 1, + ACTIONS(10503), 1, anon_sym_enum, - ACTIONS(10312), 1, + ACTIONS(10507), 1, anon_sym_object, - ACTIONS(10314), 1, + ACTIONS(10509), 1, anon_sym_fun, - ACTIONS(10316), 1, + ACTIONS(10511), 1, anon_sym_get, - ACTIONS(10318), 1, + ACTIONS(10513), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10306), 2, + ACTIONS(10501), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10310), 2, + ACTIONS(10505), 2, anon_sym_val, anon_sym_var, - [200031] = 2, + [206770] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4651), 10, + ACTIONS(4672), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -637963,346 +653397,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [200048] = 9, - ACTIONS(10170), 1, + [206787] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10322), 1, + ACTIONS(10517), 1, anon_sym_enum, - ACTIONS(10326), 1, + ACTIONS(10521), 1, anon_sym_object, - ACTIONS(10328), 1, + ACTIONS(10523), 1, anon_sym_fun, - ACTIONS(10330), 1, + ACTIONS(10525), 1, anon_sym_get, - ACTIONS(10332), 1, + ACTIONS(10527), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10320), 2, + ACTIONS(10515), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10324), 2, + ACTIONS(10519), 2, anon_sym_val, anon_sym_var, - [200079] = 9, - ACTIONS(10170), 1, + [206818] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10336), 1, + ACTIONS(10531), 1, anon_sym_enum, - ACTIONS(10340), 1, + ACTIONS(10535), 1, anon_sym_object, - ACTIONS(10342), 1, + ACTIONS(10537), 1, anon_sym_fun, - ACTIONS(10344), 1, + ACTIONS(10539), 1, anon_sym_get, - ACTIONS(10346), 1, + ACTIONS(10541), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10334), 2, + ACTIONS(10529), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10338), 2, + ACTIONS(10533), 2, anon_sym_val, anon_sym_var, - [200110] = 9, - ACTIONS(10122), 1, + [206849] = 9, + ACTIONS(10319), 1, anon_sym_typealias, - ACTIONS(10350), 1, + ACTIONS(10545), 1, anon_sym_enum, - ACTIONS(10354), 1, + ACTIONS(10549), 1, anon_sym_object, - ACTIONS(10356), 1, + ACTIONS(10551), 1, anon_sym_fun, - ACTIONS(10358), 1, + ACTIONS(10553), 1, anon_sym_get, - ACTIONS(10360), 1, + ACTIONS(10555), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10348), 2, + ACTIONS(10543), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10352), 2, + ACTIONS(10547), 2, anon_sym_val, anon_sym_var, - [200141] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4551), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [200158] = 2, + [206880] = 9, + ACTIONS(10208), 1, + anon_sym_typealias, + ACTIONS(10212), 1, + anon_sym_enum, + ACTIONS(10220), 1, + anon_sym_object, + ACTIONS(10222), 1, + anon_sym_fun, + ACTIONS(10224), 1, + anon_sym_get, + ACTIONS(10226), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 10, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [200175] = 9, - ACTIONS(10170), 1, + ACTIONS(10210), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10216), 2, + anon_sym_val, + anon_sym_var, + [206911] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10364), 1, + ACTIONS(10559), 1, anon_sym_enum, - ACTIONS(10368), 1, + ACTIONS(10563), 1, anon_sym_object, - ACTIONS(10370), 1, + ACTIONS(10565), 1, anon_sym_fun, - ACTIONS(10372), 1, + ACTIONS(10567), 1, anon_sym_get, - ACTIONS(10374), 1, + ACTIONS(10569), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10362), 2, + ACTIONS(10557), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10366), 2, + ACTIONS(10561), 2, anon_sym_val, anon_sym_var, - [200206] = 9, - ACTIONS(9937), 1, + [206942] = 9, + ACTIONS(10571), 1, anon_sym_typealias, - ACTIONS(9941), 1, + ACTIONS(10575), 1, anon_sym_enum, - ACTIONS(9949), 1, + ACTIONS(10579), 1, anon_sym_object, - ACTIONS(9951), 1, + ACTIONS(10581), 1, anon_sym_fun, - ACTIONS(9953), 1, + ACTIONS(10583), 1, anon_sym_get, - ACTIONS(9955), 1, + ACTIONS(10585), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9939), 2, + ACTIONS(10573), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9945), 2, + ACTIONS(10577), 2, anon_sym_val, anon_sym_var, - [200237] = 9, - ACTIONS(10122), 1, + [206973] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10378), 1, + ACTIONS(10589), 1, anon_sym_enum, - ACTIONS(10382), 1, + ACTIONS(10593), 1, anon_sym_object, - ACTIONS(10384), 1, + ACTIONS(10595), 1, anon_sym_fun, - ACTIONS(10386), 1, + ACTIONS(10597), 1, anon_sym_get, - ACTIONS(10388), 1, + ACTIONS(10599), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10376), 2, + ACTIONS(10587), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10380), 2, + ACTIONS(10591), 2, anon_sym_val, anon_sym_var, - [200268] = 4, - ACTIONS(10091), 1, + [207004] = 4, + ACTIONS(9979), 1, anon_sym_DOT, - STATE(8019), 1, + STATE(7873), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 8, + ACTIONS(4195), 8, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_while, - [200289] = 9, - ACTIONS(10232), 1, + anon_sym_by, + anon_sym_where, + [207025] = 9, + ACTIONS(10601), 1, anon_sym_typealias, - ACTIONS(10392), 1, + ACTIONS(10605), 1, anon_sym_enum, - ACTIONS(10396), 1, + ACTIONS(10609), 1, anon_sym_object, - ACTIONS(10398), 1, + ACTIONS(10611), 1, anon_sym_fun, - ACTIONS(10400), 1, + ACTIONS(10613), 1, anon_sym_get, - ACTIONS(10402), 1, + ACTIONS(10615), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10390), 2, + ACTIONS(10603), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10394), 2, + ACTIONS(10607), 2, anon_sym_val, anon_sym_var, - [200320] = 9, - ACTIONS(10404), 1, + [207056] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10408), 1, + ACTIONS(10619), 1, anon_sym_enum, - ACTIONS(10412), 1, + ACTIONS(10623), 1, anon_sym_object, - ACTIONS(10414), 1, + ACTIONS(10625), 1, anon_sym_fun, - ACTIONS(10416), 1, + ACTIONS(10627), 1, anon_sym_get, - ACTIONS(10418), 1, + ACTIONS(10629), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10406), 2, + ACTIONS(10617), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10410), 2, + ACTIONS(10621), 2, anon_sym_val, anon_sym_var, - [200351] = 9, - ACTIONS(10276), 1, + [207087] = 9, + ACTIONS(10379), 1, anon_sym_typealias, - ACTIONS(10422), 1, + ACTIONS(10633), 1, anon_sym_enum, - ACTIONS(10426), 1, + ACTIONS(10637), 1, anon_sym_object, - ACTIONS(10428), 1, + ACTIONS(10639), 1, anon_sym_fun, - ACTIONS(10430), 1, + ACTIONS(10641), 1, anon_sym_get, - ACTIONS(10432), 1, + ACTIONS(10643), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10420), 2, + ACTIONS(10631), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10424), 2, + ACTIONS(10635), 2, anon_sym_val, anon_sym_var, - [200382] = 9, - ACTIONS(10106), 1, - anon_sym_typealias, - ACTIONS(10436), 1, - anon_sym_enum, - ACTIONS(10440), 1, - anon_sym_object, - ACTIONS(10442), 1, - anon_sym_fun, - ACTIONS(10444), 1, - anon_sym_get, - ACTIONS(10446), 1, - anon_sym_set, + [207118] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10434), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10438), 2, - anon_sym_val, - anon_sym_var, - [200413] = 9, - ACTIONS(10276), 1, + ACTIONS(4676), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207135] = 9, + ACTIONS(10411), 1, anon_sym_typealias, - ACTIONS(10450), 1, + ACTIONS(10647), 1, anon_sym_enum, - ACTIONS(10454), 1, + ACTIONS(10651), 1, anon_sym_object, - ACTIONS(10456), 1, + ACTIONS(10653), 1, anon_sym_fun, - ACTIONS(10458), 1, + ACTIONS(10655), 1, anon_sym_get, - ACTIONS(10460), 1, + ACTIONS(10657), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10448), 2, + ACTIONS(10645), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10452), 2, + ACTIONS(10649), 2, anon_sym_val, anon_sym_var, - [200444] = 9, - ACTIONS(10232), 1, + [207166] = 9, + ACTIONS(10349), 1, anon_sym_typealias, - ACTIONS(10464), 1, + ACTIONS(10661), 1, anon_sym_enum, - ACTIONS(10468), 1, + ACTIONS(10665), 1, anon_sym_object, - ACTIONS(10470), 1, + ACTIONS(10667), 1, anon_sym_fun, - ACTIONS(10472), 1, + ACTIONS(10669), 1, anon_sym_get, - ACTIONS(10474), 1, + ACTIONS(10671), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10462), 2, + ACTIONS(10659), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10466), 2, + ACTIONS(10663), 2, anon_sym_val, anon_sym_var, - [200475] = 9, - ACTIONS(10232), 1, + [207197] = 9, + ACTIONS(10395), 1, anon_sym_typealias, - ACTIONS(10478), 1, + ACTIONS(10675), 1, anon_sym_enum, - ACTIONS(10482), 1, + ACTIONS(10679), 1, anon_sym_object, - ACTIONS(10484), 1, + ACTIONS(10681), 1, anon_sym_fun, - ACTIONS(10486), 1, + ACTIONS(10683), 1, anon_sym_get, - ACTIONS(10488), 1, + ACTIONS(10685), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10476), 2, + ACTIONS(10673), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10480), 2, + ACTIONS(10677), 2, anon_sym_val, anon_sym_var, - [200506] = 3, - ACTIONS(10490), 1, + [207228] = 9, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10687), 1, + anon_sym_COLON, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(8438), 1, + sym_type_constraints, + STATE(9175), 1, + sym__block, + STATE(9296), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4175), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207258] = 3, + ACTIONS(10693), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 8, + ACTIONS(4239), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -638311,13 +653751,13 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, anon_sym_while, - [200524] = 3, - ACTIONS(10492), 1, + [207276] = 3, + ACTIONS(10695), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 8, + ACTIONS(4239), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -638326,147 +653766,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_where, sym__quest, - [200542] = 2, + [207294] = 4, + ACTIONS(10697), 1, + anon_sym_LT, + STATE(8396), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 9, + ACTIONS(4189), 7, anon_sym_AT, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_val, - anon_sym_LT, anon_sym_DOT, anon_sym_AMP, sym__quest, anon_sym_in, - [200558] = 9, - ACTIONS(8351), 1, + [207314] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10494), 1, - anon_sym_COLON, - ACTIONS(10496), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8370), 1, + ACTIONS(10699), 1, + anon_sym_COLON, + STATE(8453), 1, sym_type_constraints, - STATE(9194), 1, - sym__block, - STATE(9232), 1, + STATE(9136), 1, sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4161), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [200588] = 3, - ACTIONS(10500), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4236), 8, + ACTIONS(4185), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - [200606] = 9, - ACTIONS(8351), 1, + [207344] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10496), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10502), 1, + ACTIONS(10701), 1, anon_sym_COLON, - STATE(8393), 1, + STATE(8447), 1, sym_type_constraints, - STATE(9194), 1, + STATE(9175), 1, sym__block, - STATE(9338), 1, + STATE(9429), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 2, + ACTIONS(4139), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [200636] = 9, - ACTIONS(8351), 1, + [207374] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10496), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10703), 1, anon_sym_COLON, - STATE(8391), 1, + STATE(8426), 1, sym_type_constraints, - STATE(9041), 1, - sym_function_body, - STATE(9194), 1, + STATE(9175), 1, sym__block, + STATE(9256), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4118), 2, + ACTIONS(4149), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [200666] = 9, - ACTIONS(8351), 1, + [207404] = 9, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10496), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(10705), 1, anon_sym_COLON, - STATE(8338), 1, + STATE(8450), 1, sym_type_constraints, - STATE(9092), 1, + STATE(9135), 1, sym_function_body, - STATE(9194), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4090), 2, + ACTIONS(4162), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [200696] = 9, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - ACTIONS(10508), 1, - anon_sym_COLON, - STATE(8340), 1, - sym_type_constraints, - STATE(9090), 1, - sym_function_body, - STATE(9194), 1, - sym__block, + [207434] = 3, + ACTIONS(10707), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4067), 2, + ACTIONS(4239), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - [200726] = 3, - ACTIONS(10510), 1, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [207452] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4181), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207468] = 3, + ACTIONS(10709), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 8, + ACTIONS(4239), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -638475,223 +653910,260 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, anon_sym_while, - [200744] = 4, - ACTIONS(10512), 1, - anon_sym_LT, - STATE(8312), 1, - sym_type_arguments, + [207486] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 7, + ACTIONS(4009), 9, anon_sym_AT, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_val, + anon_sym_LT, anon_sym_DOT, anon_sym_AMP, sym__quest, anon_sym_in, - [200764] = 7, - ACTIONS(1614), 1, + [207502] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(10514), 1, - sym_label, - STATE(1078), 1, - sym_lambda_literal, + STATE(8413), 1, + sym_type_constraints, + STATE(9157), 1, + sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8306), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [200789] = 7, - ACTIONS(25), 1, + ACTIONS(4301), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207529] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(1690), 1, + STATE(8450), 1, + sym_type_constraints, + STATE(9135), 1, + sym_function_body, + STATE(9175), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4162), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207556] = 7, + ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(10516), 1, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, sym_label, - STATE(5112), 1, + STATE(3165), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8306), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [200814] = 9, - ACTIONS(4124), 1, + [207581] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(8453), 1, + sym_type_constraints, + STATE(9136), 1, + sym_function_body, + STATE(9175), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4185), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207608] = 9, + ACTIONS(4175), 1, anon_sym_while, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10518), 1, + ACTIONS(10713), 1, anon_sym_COLON, - ACTIONS(10520), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8422), 1, + STATE(8536), 1, sym_type_constraints, - STATE(9403), 1, + STATE(9782), 1, sym_function_body, - STATE(10063), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [200843] = 9, - ACTIONS(4118), 1, + [207637] = 9, + ACTIONS(4185), 1, anon_sym_while, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10520), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10524), 1, + ACTIONS(10719), 1, anon_sym_COLON, - STATE(8428), 1, + STATE(8596), 1, sym_type_constraints, - STATE(9405), 1, + STATE(9621), 1, sym_function_body, - STATE(10063), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [200872] = 7, - ACTIONS(1584), 1, + [207666] = 7, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1836), 1, + anon_sym_LBRACE, + ACTIONS(10721), 1, + sym_label, + STATE(4785), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8360), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [207691] = 4, + ACTIONS(10723), 1, + anon_sym_DOT, + STATE(8346), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4155), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207710] = 7, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1690), 1, + ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(10526), 1, + ACTIONS(10725), 1, sym_label, - STATE(3482), 1, + STATE(1018), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8306), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [200897] = 5, - ACTIONS(9006), 1, + [207735] = 5, + ACTIONS(9162), 1, anon_sym_LT, - ACTIONS(10528), 1, + ACTIONS(10727), 1, anon_sym_COLON, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4110), 5, + ACTIONS(4189), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT, anon_sym_AMP, sym__quest, - [200918] = 8, - ACTIONS(8351), 1, + [207756] = 9, + ACTIONS(4162), 1, + anon_sym_while, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10496), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8349), 1, + ACTIONS(10729), 1, + anon_sym_COLON, + STATE(8624), 1, sym_type_constraints, - STATE(9194), 1, - sym__block, - STATE(9301), 1, + STATE(9600), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [200945] = 5, - ACTIONS(10530), 1, + [207785] = 5, + ACTIONS(10731), 1, anon_sym_LPAREN, - ACTIONS(10532), 1, + ACTIONS(10733), 1, anon_sym_by, - STATE(8502), 1, + STATE(8479), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 5, + ACTIONS(4507), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [200966] = 4, - ACTIONS(10534), 1, - anon_sym_DOT, - STATE(8278), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4103), 6, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [200985] = 4, - ACTIONS(10537), 1, + [207806] = 4, + ACTIONS(10735), 1, anon_sym_DOT, - STATE(8278), 1, + STATE(8346), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4077), 6, + ACTIONS(4168), 6, anon_sym_AT, anon_sym_LPAREN, anon_sym_val, anon_sym_AMP, sym__quest, anon_sym_in, - [201004] = 8, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - STATE(8340), 1, - sym_type_constraints, - STATE(9090), 1, - sym_function_body, - STATE(9194), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4067), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201031] = 3, - ACTIONS(10539), 1, + [207825] = 3, + ACTIONS(10738), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 7, + ACTIONS(4239), 7, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -638699,201 +654171,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, sym__quest, anon_sym_while, - [201048] = 9, - ACTIONS(4161), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, - anon_sym_LBRACE, - ACTIONS(10541), 1, - anon_sym_COLON, - STATE(8406), 1, - sym_type_constraints, - STATE(9577), 1, - sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201077] = 8, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - STATE(8370), 1, - sym_type_constraints, - STATE(9194), 1, - sym__block, - STATE(9232), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4161), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201104] = 8, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - STATE(8338), 1, - sym_type_constraints, - STATE(9092), 1, - sym_function_body, - STATE(9194), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4090), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201131] = 6, - ACTIONS(9006), 1, + [207842] = 6, + ACTIONS(9162), 1, anon_sym_LT, - ACTIONS(10543), 1, + ACTIONS(10740), 1, anon_sym_COLON, - STATE(6509), 1, + STATE(6538), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 2, + ACTIONS(4124), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4110), 3, + ACTIONS(4189), 3, anon_sym_DOT, anon_sym_AMP, sym__quest, - [201154] = 9, - ACTIONS(4090), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, - anon_sym_LBRACE, - ACTIONS(10545), 1, - anon_sym_COLON, - STATE(8394), 1, - sym_type_constraints, - STATE(9560), 1, - sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201183] = 9, - ACTIONS(4067), 1, + [207865] = 9, + ACTIONS(4139), 1, anon_sym_while, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10520), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10547), 1, + ACTIONS(10742), 1, anon_sym_COLON, - STATE(8524), 1, + STATE(8572), 1, sym_type_constraints, - STATE(9535), 1, + STATE(9464), 1, sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201212] = 8, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - STATE(8377), 1, - sym_type_constraints, - STATE(9194), 1, + STATE(9998), 1, sym__block, - STATE(9310), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4219), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201239] = 7, - ACTIONS(1624), 1, + [207894] = 7, + ACTIONS(1586), 1, anon_sym_LBRACE, - ACTIONS(1690), 1, + ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(10549), 1, + ACTIONS(10744), 1, sym_label, - STATE(3772), 1, + STATE(3453), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8306), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [201264] = 7, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(1856), 1, + [207919] = 7, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(10551), 1, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(10746), 1, sym_label, - STATE(4751), 1, + STATE(5176), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8306), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [201289] = 7, - ACTIONS(1690), 1, - anon_sym_AT, - ACTIONS(1866), 1, + [207944] = 7, + ACTIONS(1646), 1, anon_sym_LBRACE, - ACTIONS(10553), 1, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(10748), 1, sym_label, - STATE(3373), 1, + STATE(3983), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5867), 2, + STATE(6228), 2, sym__single_annotation, sym__multi_annotation, - STATE(8306), 2, + STATE(8360), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [201314] = 3, - ACTIONS(10555), 1, + [207969] = 9, + ACTIONS(4149), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(10750), 1, + anon_sym_COLON, + STATE(8623), 1, + sym_type_constraints, + STATE(9571), 1, + sym_function_body, + STATE(9998), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [207998] = 3, + ACTIONS(10752), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 7, + ACTIONS(4239), 7, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -638901,403 +654296,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, sym__quest, anon_sym_while, - [201331] = 3, - STATE(1782), 1, - sym__assignment_and_operator, + [208015] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(8426), 1, + sym_type_constraints, + STATE(9175), 1, + sym__block, + STATE(9256), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 6, + ACTIONS(4149), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208042] = 8, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10689), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [201347] = 7, - ACTIONS(8345), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8640), 1, - anon_sym_COLON, - STATE(8674), 1, + STATE(8436), 1, sym_type_constraints, - STATE(9342), 1, - sym_class_body, + STATE(9152), 1, + sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3208), 2, + ACTIONS(4297), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [201371] = 3, - STATE(1868), 1, - sym__assignment_and_operator, + [208069] = 7, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8730), 1, + anon_sym_COLON, + STATE(8722), 1, + sym_type_constraints, + STATE(9418), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10559), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [201387] = 3, - STATE(1906), 1, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208093] = 3, + STATE(1742), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10561), 6, + ACTIONS(10754), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201403] = 5, - ACTIONS(9482), 1, - anon_sym_LPAREN, - ACTIONS(10563), 1, - anon_sym_by, - STATE(7119), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4454), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [201423] = 3, - STATE(2371), 1, + [208109] = 3, + STATE(1758), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10565), 6, + ACTIONS(10756), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201439] = 6, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(9482), 1, - anon_sym_LPAREN, - STATE(8553), 1, - sym_value_arguments, - STATE(8807), 1, - sym_class_body, + [208125] = 5, + ACTIONS(10758), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10567), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [201461] = 3, - STATE(2384), 1, + ACTIONS(9890), 2, + anon_sym_LBRACE, + sym_label, + STATE(6228), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8360), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208145] = 3, + STATE(2020), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10569), 6, + ACTIONS(10761), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201477] = 8, - ACTIONS(4181), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(8433), 1, - sym_type_constraints, - STATE(9586), 1, - sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201503] = 3, - STATE(1888), 1, + [208161] = 3, + STATE(1464), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10571), 6, + ACTIONS(10763), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201519] = 3, - STATE(2004), 1, + [208177] = 3, + STATE(1447), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10573), 6, + ACTIONS(10765), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201535] = 3, - STATE(1653), 1, + [208193] = 3, + STATE(1573), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10575), 6, + ACTIONS(10767), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201551] = 7, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10577), 1, - anon_sym_COLON, - STATE(8720), 1, - sym_type_constraints, - STATE(9071), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4250), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201575] = 5, - ACTIONS(10579), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9642), 2, - anon_sym_LBRACE, - sym_label, - STATE(5867), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8306), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [201595] = 7, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8359), 1, - anon_sym_LBRACE, - ACTIONS(8622), 1, - anon_sym_COLON, - STATE(8713), 1, - sym_type_constraints, - STATE(9105), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3216), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201619] = 3, - STATE(2158), 1, + [208209] = 3, + STATE(1935), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10582), 6, + ACTIONS(10769), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201635] = 3, - STATE(1978), 1, + [208225] = 3, + STATE(1930), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10584), 6, + ACTIONS(10771), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201651] = 7, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8359), 1, + [208241] = 7, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(10586), 1, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10773), 1, anon_sym_COLON, - STATE(8580), 1, + STATE(8767), 1, sym_type_constraints, - STATE(9165), 1, + STATE(9248), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4274), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [201675] = 8, - ACTIONS(4090), 1, + [208265] = 8, + ACTIONS(4149), 1, anon_sym_while, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10520), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8394), 1, + STATE(8623), 1, sym_type_constraints, - STATE(9560), 1, + STATE(9571), 1, sym_function_body, - STATE(10063), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [201701] = 2, + [208291] = 8, + ACTIONS(4162), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8624), 1, + sym_type_constraints, + STATE(9600), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4316), 7, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [201715] = 3, - STATE(1865), 1, + [208317] = 3, + STATE(1539), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10588), 6, + ACTIONS(10775), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201731] = 3, - STATE(1676), 1, + [208333] = 3, + STATE(2130), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10590), 6, + ACTIONS(10777), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201747] = 3, - STATE(2084), 1, + [208349] = 3, + STATE(1816), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10592), 6, + ACTIONS(10779), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201763] = 8, - ACTIONS(4067), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(8524), 1, - sym_type_constraints, - STATE(9535), 1, - sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201789] = 7, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8359), 1, - anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_COLON, - STATE(8578), 1, - sym_type_constraints, - STATE(9162), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3198), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201813] = 3, - STATE(2347), 1, - sym__assignment_and_operator, + [208365] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10594), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [201829] = 3, - STATE(1840), 1, + ACTIONS(4168), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208379] = 3, + STATE(1732), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10596), 6, + ACTIONS(10781), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201845] = 2, + [208395] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4310), 7, + ACTIONS(4319), 7, anon_sym_AT, anon_sym_LPAREN, anon_sym_val, @@ -639305,115 +654599,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, anon_sym_in, - [201859] = 7, - ACTIONS(8351), 1, + [208409] = 7, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10598), 1, + ACTIONS(8712), 1, anon_sym_COLON, - STATE(8624), 1, + STATE(8655), 1, sym_type_constraints, - STATE(9071), 1, - sym_enum_class_body, + STATE(9445), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 2, + ACTIONS(3274), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [201883] = 3, - STATE(1815), 1, + [208433] = 3, + STATE(1748), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10600), 6, + ACTIONS(10783), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201899] = 7, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(10602), 1, - anon_sym_COLON, - STATE(8679), 1, - sym_type_constraints, - STATE(9186), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4268), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [201923] = 3, - STATE(2104), 1, + [208449] = 3, + STATE(1503), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10604), 6, + ACTIONS(10785), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201939] = 3, - STATE(1950), 1, + [208465] = 3, + STATE(2158), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10606), 6, + ACTIONS(10787), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [201955] = 8, - ACTIONS(4161), 1, + [208481] = 8, + ACTIONS(4185), 1, anon_sym_while, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(10520), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8406), 1, + STATE(8596), 1, sym_type_constraints, - STATE(9577), 1, + STATE(9621), 1, sym_function_body, - STATE(10063), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [201981] = 3, - STATE(1661), 1, - sym__assignment_and_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10608), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [201997] = 2, + [208507] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 7, + ACTIONS(4315), 7, anon_sym_AT, anon_sym_LPAREN, anon_sym_val, @@ -639421,20443 +654685,20877 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, anon_sym_in, - [202011] = 7, - ACTIONS(8345), 1, + [208521] = 7, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8351), 1, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8774), 1, + anon_sym_COLON, + STATE(8653), 1, + sym_type_constraints, + STATE(9402), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3290), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208545] = 7, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8578), 1, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(10789), 1, anon_sym_COLON, - STATE(8721), 1, + STATE(8766), 1, sym_type_constraints, - STATE(9162), 1, + STATE(9297), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 2, + ACTIONS(4329), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202035] = 3, - STATE(1921), 1, + [208569] = 3, + STATE(2052), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10610), 6, + ACTIONS(10791), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [202051] = 2, + [208585] = 8, + ACTIONS(4301), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8585), 1, + sym_type_constraints, + STATE(9656), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4103), 7, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [202065] = 3, - STATE(1659), 1, + [208611] = 3, + STATE(1560), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10612), 6, + ACTIONS(10793), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [202081] = 3, - STATE(1786), 1, + [208627] = 3, + STATE(1843), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10614), 6, + ACTIONS(10795), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [202097] = 8, - ACTIONS(4219), 1, - anon_sym_while, - ACTIONS(8437), 1, + [208643] = 6, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(9671), 1, + anon_sym_LPAREN, + STATE(8474), 1, + sym_value_arguments, + STATE(8824), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10797), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [208665] = 7, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(8442), 1, + ACTIONS(8814), 1, + anon_sym_COLON, + STATE(8719), 1, sym_type_constraints, - STATE(9591), 1, - sym_function_body, - STATE(10063), 1, - sym__block, + STATE(9418), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [202123] = 3, - STATE(2076), 1, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208689] = 3, + STATE(1547), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10616), 6, + ACTIONS(10799), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [202139] = 3, - STATE(2206), 1, + [208705] = 3, + STATE(1941), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10618), 6, + ACTIONS(10801), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [202155] = 6, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(9482), 1, - anon_sym_LPAREN, - STATE(8469), 1, - sym_value_arguments, - STATE(8744), 1, - sym_class_body, + [208721] = 3, + STATE(1785), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10620), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [202177] = 6, - ACTIONS(10496), 1, + ACTIONS(10803), 6, anon_sym_EQ, - ACTIONS(10498), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208737] = 7, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9194), 1, - sym__block, - STATE(9232), 1, - sym_function_body, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(10805), 1, + anon_sym_COLON, + STATE(8778), 1, + sym_type_constraints, + STATE(9113), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4161), 2, + ACTIONS(4323), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202198] = 6, - ACTIONS(8345), 1, + [208761] = 5, + ACTIONS(9671), 1, + anon_sym_LPAREN, + ACTIONS(10807), 1, + anon_sym_by, + STATE(7182), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4507), 4, anon_sym_LBRACE, - ACTIONS(8351), 1, + anon_sym_COMMA, anon_sym_where, - STATE(8579), 1, - sym_type_constraints, - STATE(9120), 1, - sym_class_body, + anon_sym_while, + [208781] = 3, + STATE(1606), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [202219] = 6, - ACTIONS(10496), 1, + ACTIONS(10809), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208797] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4337), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208811] = 8, + ACTIONS(4297), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9092), 1, + STATE(8590), 1, + sym_type_constraints, + STATE(9650), 1, sym_function_body, - STATE(9194), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4090), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [202240] = 4, - ACTIONS(10622), 1, - anon_sym_COMMA, - STATE(8355), 1, - aux_sym_type_constraints_repeat1, + [208837] = 3, + STATE(1709), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4435), 4, - sym__automatic_semicolon, + ACTIONS(10811), 6, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - [202257] = 7, - ACTIONS(4250), 1, - anon_sym_while, - ACTIONS(8437), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208853] = 7, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8457), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10624), 1, + ACTIONS(10813), 1, anon_sym_COLON, - STATE(8912), 1, + STATE(8715), 1, sym_type_constraints, - STATE(9509), 1, + STATE(9248), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [202280] = 7, - ACTIONS(3216), 1, - anon_sym_while, - ACTIONS(8431), 1, + ACTIONS(4218), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208877] = 6, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8724), 1, - anon_sym_COLON, - STATE(8916), 1, - sym_type_constraints, - STATE(9551), 1, - sym_enum_class_body, + ACTIONS(9671), 1, + anon_sym_LPAREN, + STATE(8503), 1, + sym_value_arguments, + STATE(9011), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [202303] = 5, - ACTIONS(9642), 1, - anon_sym_val, - ACTIONS(10626), 1, + ACTIONS(10815), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [208899] = 3, + STATE(1676), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10817), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208915] = 5, + ACTIONS(10819), 1, anon_sym_AT, + ACTIONS(10821), 1, + anon_sym_val, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8344), 2, + STATE(8415), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9050), 2, + STATE(9130), 2, sym__single_annotation, sym__multi_annotation, - [202322] = 6, - ACTIONS(10629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, - anon_sym_DOLLAR, - ACTIONS(10633), 1, - sym__string_end, - ACTIONS(10635), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8365), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [202343] = 7, - ACTIONS(4268), 1, + [208934] = 7, + ACTIONS(4329), 1, anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10637), 1, - anon_sym_COLON, - STATE(8854), 1, - sym_type_constraints, - STATE(9410), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [202366] = 6, - ACTIONS(8345), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8351), 1, + ACTIONS(8644), 1, anon_sym_where, - STATE(8679), 1, + ACTIONS(10823), 1, + anon_sym_COLON, + STATE(9007), 1, sym_type_constraints, - STATE(9186), 1, + STATE(9623), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [202387] = 6, - ACTIONS(10629), 1, + [208957] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10639), 1, + ACTIONS(10829), 1, sym__string_end, - ACTIONS(10641), 1, + ACTIONS(10831), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202408] = 6, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - STATE(9194), 1, - sym__block, - STATE(9310), 1, - sym_function_body, + [208978] = 4, + ACTIONS(10833), 1, + anon_sym_COMMA, + STATE(8431), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4219), 2, + ACTIONS(4341), 4, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - [202429] = 2, + [208995] = 3, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4727), 6, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [202442] = 7, - ACTIONS(3198), 1, + ACTIONS(4009), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_DOT, + [209010] = 7, + ACTIONS(3274), 1, anon_sym_while, - ACTIONS(8431), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8687), 1, + ACTIONS(8913), 1, anon_sym_COLON, - STATE(8856), 1, + STATE(9052), 1, sym_type_constraints, - STATE(9413), 1, - sym_enum_class_body, + STATE(9819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [202465] = 6, - ACTIONS(10629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, - anon_sym_DOLLAR, - ACTIONS(10641), 1, - sym__string_content, - ACTIONS(10643), 1, - sym__string_end, + [209033] = 6, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(8749), 1, + sym_type_constraints, + STATE(9147), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [202486] = 6, - ACTIONS(10629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, - anon_sym_DOLLAR, - ACTIONS(10641), 1, - sym__string_content, - ACTIONS(10645), 1, - sym__string_end, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209054] = 6, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8747), 1, + sym_type_constraints, + STATE(9144), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [202507] = 6, - ACTIONS(10629), 1, + ACTIONS(4469), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209075] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10641), 1, - sym__string_content, - ACTIONS(10647), 1, + ACTIONS(10835), 1, sym__string_end, + ACTIONS(10837), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, + STATE(8423), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202528] = 4, - ACTIONS(10622), 1, - anon_sym_COMMA, - STATE(8383), 1, - aux_sym_type_constraints_repeat1, + [209096] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5057), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209109] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 4, + ACTIONS(4748), 6, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [202545] = 6, - ACTIONS(8351), 1, anon_sym_where, - ACTIONS(8359), 1, + [209122] = 6, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8664), 1, - sym_type_constraints, - STATE(9120), 1, - sym_enum_class_body, + STATE(9161), 1, + sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 2, + ACTIONS(4441), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202566] = 6, - ACTIONS(10629), 1, + [209143] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10649), 1, + ACTIONS(10839), 1, sym__string_end, - ACTIONS(10651), 1, + ACTIONS(10841), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8354), 2, + STATE(8444), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202587] = 6, - ACTIONS(8351), 1, + [209164] = 5, + ACTIONS(9890), 1, + anon_sym_val, + ACTIONS(10843), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8415), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9130), 2, + sym__single_annotation, + sym__multi_annotation, + [209183] = 6, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(8624), 1, + STATE(8715), 1, sym_type_constraints, - STATE(9071), 1, - sym_enum_class_body, + STATE(9248), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202608] = 4, - ACTIONS(10537), 1, - anon_sym_DOT, - STATE(8279), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4142), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_in, - [202625] = 6, - ACTIONS(10629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, - anon_sym_DOLLAR, - ACTIONS(10641), 1, - sym__string_content, - ACTIONS(10653), 1, - sym__string_end, + [209204] = 6, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(8766), 1, + sym_type_constraints, + STATE(9297), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [202646] = 3, - ACTIONS(10532), 1, - anon_sym_by, + ACTIONS(4329), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209225] = 4, + ACTIONS(10846), 1, + anon_sym_COMMA, + STATE(8425), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 5, + ACTIONS(4686), 4, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [202661] = 6, - ACTIONS(10629), 1, + [209242] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10655), 1, + ACTIONS(10848), 1, sym__string_end, - ACTIONS(10657), 1, + ACTIONS(10850), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8353), 2, + STATE(8430), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202682] = 4, - ACTIONS(10659), 1, - anon_sym_COMMA, - STATE(8368), 1, - aux_sym__delegation_specifiers_repeat1, + [209263] = 7, + ACTIONS(3290), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8899), 1, + anon_sym_COLON, + STATE(8903), 1, + sym_type_constraints, + STATE(9585), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4578), 4, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, + [209286] = 6, + ACTIONS(8517), 1, anon_sym_where, - [202699] = 6, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(8719), 1, + STATE(8750), 1, sym_type_constraints, - STATE(9207), 1, - sym_enum_class_body, + STATE(9443), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4495), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202720] = 6, - ACTIONS(10629), 1, + [209307] = 3, + ACTIONS(10733), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4507), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [209322] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10641), 1, + ACTIONS(10831), 1, sym__string_content, - ACTIONS(10661), 1, + ACTIONS(10852), 1, sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202741] = 6, - ACTIONS(10629), 1, + [209343] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10663), 1, - sym__string_end, - ACTIONS(10665), 1, + ACTIONS(10831), 1, sym__string_content, + ACTIONS(10854), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8348), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202762] = 6, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(8351), 1, - anon_sym_where, - STATE(8694), 1, - sym_type_constraints, - STATE(9207), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [202783] = 4, - ACTIONS(10659), 1, + [209364] = 4, + ACTIONS(10846), 1, anon_sym_COMMA, - STATE(8374), 1, + STATE(8455), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4536), 4, + ACTIONS(4738), 4, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [202800] = 6, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8359), 1, - anon_sym_LBRACE, - STATE(8634), 1, - sym_type_constraints, - STATE(9305), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4431), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [202821] = 6, - ACTIONS(10496), 1, + [209381] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9194), 1, - sym__block, - STATE(9301), 1, + STATE(9135), 1, sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 2, + ACTIONS(4162), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202842] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5088), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [202855] = 2, + [209402] = 4, + ACTIONS(10856), 1, + anon_sym_COMMA, + STATE(8427), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 6, + ACTIONS(4432), 4, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [202868] = 6, - ACTIONS(8351), 1, - anon_sym_where, - ACTIONS(8359), 1, + [209419] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(8677), 1, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8748), 1, sym_type_constraints, - STATE(9257), 1, + STATE(9453), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4476), 2, + ACTIONS(4465), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202889] = 4, - ACTIONS(10667), 1, + [209440] = 7, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(10859), 1, + anon_sym_COLON, + STATE(8904), 1, + sym_type_constraints, + STATE(9543), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209463] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_content, + ACTIONS(10861), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209484] = 4, + ACTIONS(10833), 1, anon_sym_COMMA, - STATE(8374), 1, - aux_sym__delegation_specifiers_repeat1, + STATE(8427), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4582), 4, + ACTIONS(4426), 4, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [202906] = 2, + [209501] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4679), 6, + ACTIONS(4561), 6, sym__automatic_semicolon, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [202919] = 6, - ACTIONS(10629), 1, + [209514] = 7, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(10863), 1, + anon_sym_COLON, + STATE(8795), 1, + sym_type_constraints, + STATE(9543), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209537] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10670), 1, + ACTIONS(10865), 1, sym__string_end, - ACTIONS(10672), 1, + ACTIONS(10867), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8360), 2, + STATE(8424), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [202940] = 6, - ACTIONS(10496), 1, + [209558] = 6, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(8783), 1, + sym_type_constraints, + STATE(9453), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209579] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9194), 1, - sym__block, - STATE(9313), 1, + STATE(9157), 1, sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4514), 2, + ACTIONS(4301), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [202961] = 6, - ACTIONS(8351), 1, + [209600] = 7, + ACTIONS(4323), 1, + anon_sym_while, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8359), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(8580), 1, + ACTIONS(10869), 1, + anon_sym_COLON, + STATE(8893), 1, sym_type_constraints, - STATE(9165), 1, + STATE(9611), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4274), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [202982] = 3, - ACTIONS(8886), 1, - anon_sym_COLON, + [209623] = 6, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9175), 1, + sym__block, + STATE(9429), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_LT, - anon_sym_DOT, - [202997] = 5, - ACTIONS(10674), 1, - anon_sym_AT, - ACTIONS(10676), 1, - anon_sym_val, + ACTIONS(4139), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209644] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8344), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9050), 2, - sym__single_annotation, - sym__multi_annotation, - [203016] = 6, - ACTIONS(8345), 1, + ACTIONS(4545), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8351), 1, + anon_sym_RBRACE, anon_sym_where, - STATE(8681), 1, + [209657] = 6, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8778), 1, sym_type_constraints, - STATE(9119), 1, - sym_class_body, + STATE(9113), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4510), 2, + ACTIONS(4323), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [203037] = 6, - ACTIONS(10629), 1, + [209678] = 6, + ACTIONS(10871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10874), 1, anon_sym_DOLLAR, - ACTIONS(10678), 1, + ACTIONS(10877), 1, sym__string_end, - ACTIONS(10680), 1, + ACTIONS(10879), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8352), 2, + STATE(8441), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [203058] = 4, - ACTIONS(10682), 1, - anon_sym_COMMA, - STATE(8383), 1, - aux_sym_type_constraints_repeat1, + [209699] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10882), 1, + sym__string_end, + ACTIONS(10884), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 4, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - [203075] = 7, - ACTIONS(4274), 1, - anon_sym_while, - ACTIONS(8431), 1, + STATE(8454), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209720] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8437), 1, + ACTIONS(8517), 1, anon_sym_where, - ACTIONS(10685), 1, - anon_sym_COLON, - STATE(8943), 1, + STATE(8736), 1, sym_type_constraints, - STATE(9563), 1, + STATE(9154), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203098] = 7, - ACTIONS(4250), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(10687), 1, - anon_sym_COLON, - STATE(8896), 1, - sym_type_constraints, - STATE(9509), 1, - sym_enum_class_body, + ACTIONS(4483), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209741] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_content, + ACTIONS(10886), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203121] = 6, - ACTIONS(8345), 1, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209762] = 6, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(8351), 1, + ACTIONS(8517), 1, anon_sym_where, - STATE(8627), 1, + STATE(8776), 1, sym_type_constraints, - STATE(9063), 1, - sym_class_body, + STATE(9147), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4492), 2, + ACTIONS(4361), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [203142] = 6, - ACTIONS(10689), 1, + [209783] = 6, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10692), 1, + ACTIONS(10827), 1, anon_sym_DOLLAR, - ACTIONS(10695), 1, + ACTIONS(10888), 1, sym__string_end, - ACTIONS(10697), 1, + ACTIONS(10890), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8387), 2, + STATE(8404), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [203163] = 7, - ACTIONS(3208), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, + [209804] = 6, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(8736), 1, - anon_sym_COLON, - STATE(8836), 1, - sym_type_constraints, - STATE(9392), 1, - sym_class_body, + STATE(9175), 1, + sym__block, + STATE(9256), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203186] = 7, - ACTIONS(3198), 1, + ACTIONS(4149), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209825] = 7, + ACTIONS(3282), 1, anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(8669), 1, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8871), 1, anon_sym_COLON, - STATE(8874), 1, + STATE(8941), 1, sym_type_constraints, - STATE(9413), 1, + STATE(9545), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203209] = 6, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(8351), 1, + [209848] = 7, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8644), 1, anon_sym_where, - STATE(8720), 1, + ACTIONS(8648), 1, + anon_sym_LBRACE, + ACTIONS(8879), 1, + anon_sym_COLON, + STATE(9000), 1, sym_type_constraints, - STATE(9071), 1, - sym_class_body, + STATE(9545), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [203230] = 6, - ACTIONS(10496), 1, + [209871] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9090), 1, + STATE(9136), 1, sym_function_body, - STATE(9194), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4067), 2, + ACTIONS(4185), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [203251] = 2, + [209892] = 6, + ACTIONS(8511), 1, + anon_sym_LBRACE, + ACTIONS(8517), 1, + anon_sym_where, + STATE(8767), 1, + sym_type_constraints, + STATE(9248), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4671), 6, + ACTIONS(4218), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [203264] = 6, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, - anon_sym_LBRACE, - STATE(9041), 1, - sym_function_body, - STATE(9194), 1, - sym__block, + [209913] = 4, + ACTIONS(10723), 1, + anon_sym_DOT, + STATE(8341), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4118), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [203285] = 6, - ACTIONS(4161), 1, - anon_sym_while, - ACTIONS(10520), 1, + ACTIONS(4195), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_in, + [209930] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9577), 1, + STATE(9152), 1, sym_function_body, - STATE(10063), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203305] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4589), 5, + ACTIONS(4297), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [203317] = 7, - ACTIONS(3), 1, + [209951] = 6, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10827), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_content, + ACTIONS(10892), 1, + sym__string_end, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10700), 1, sym_line_comment, - ACTIONS(10702), 1, - aux_sym_character_literal_token1, - ACTIONS(10704), 1, - anon_sym_BSLASHu, - ACTIONS(10706), 1, - sym__escaped_identifier, - STATE(9773), 1, - sym__uni_character_literal, - STATE(9870), 1, - sym_character_escape_seq, - [203339] = 4, - ACTIONS(10708), 1, + STATE(8441), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209972] = 4, + ACTIONS(10894), 1, anon_sym_COMMA, - STATE(8397), 1, + STATE(8455), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4582), 3, + ACTIONS(4635), 4, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [203355] = 6, - ACTIONS(6564), 1, - anon_sym_LBRACE, - ACTIONS(10711), 1, - anon_sym_COLON, - ACTIONS(10713), 1, - anon_sym_EQ, - STATE(3911), 1, - sym_function_body, - STATE(3927), 1, - sym__block, + [209989] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203375] = 6, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(4583), 6, + sym__automatic_semicolon, anon_sym_COLON, - ACTIONS(10717), 1, anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4775), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [203395] = 6, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8437), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(8457), 1, + [210002] = 6, + ACTIONS(8517), 1, + anon_sym_where, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(8953), 1, + STATE(8763), 1, sym_type_constraints, - STATE(9570), 1, + STATE(9274), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203415] = 6, - ACTIONS(7961), 1, + ACTIONS(4357), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210023] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10717), 1, - anon_sym_EQ, - ACTIONS(10719), 1, + ACTIONS(10897), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4735), 1, + ACTIONS(10899), 1, + anon_sym_EQ, + STATE(1079), 1, sym_function_body, + STATE(1129), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203435] = 6, - ACTIONS(4073), 1, + [210043] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10721), 1, + ACTIONS(10901), 1, anon_sym_COLON, - ACTIONS(10723), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(1120), 1, - sym_function_body, - STATE(1204), 1, + STATE(1129), 1, sym__block, + STATE(1183), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203455] = 6, - ACTIONS(4476), 1, - anon_sym_while, - ACTIONS(8431), 1, + [210063] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_where, - STATE(8954), 1, - sym_type_constraints, - STATE(9581), 1, - sym_enum_class_body, + ACTIONS(10905), 1, + anon_sym_COLON, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(3882), 1, + sym__block, + STATE(3910), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203475] = 6, - ACTIONS(4073), 1, + [210083] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10723), 1, + ACTIONS(10907), 1, anon_sym_EQ, - ACTIONS(10725), 1, + ACTIONS(10909), 1, anon_sym_COLON, - STATE(1170), 1, - sym_function_body, - STATE(1204), 1, + STATE(3882), 1, sym__block, + STATE(3890), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203495] = 6, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + [210103] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10727), 1, + ACTIONS(10907), 1, + anon_sym_EQ, + ACTIONS(10911), 1, anon_sym_COLON, - STATE(9483), 1, + STATE(3836), 1, sym_function_body, - STATE(10063), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203515] = 6, - ACTIONS(4181), 1, - anon_sym_while, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + [210123] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(9586), 1, - sym_function_body, - STATE(10063), 1, + ACTIONS(10913), 1, + anon_sym_COLON, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(1129), 1, sym__block, + STATE(1143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203535] = 6, - ACTIONS(6308), 1, + [210143] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10729), 1, - anon_sym_COLON, - ACTIONS(10731), 1, + ACTIONS(10907), 1, anon_sym_EQ, - STATE(3207), 1, + ACTIONS(10917), 1, + anon_sym_COLON, + STATE(3867), 1, sym_function_body, - STATE(3353), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203555] = 6, - ACTIONS(4492), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, + [210163] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(8893), 1, - sym_type_constraints, - STATE(9485), 1, - sym_class_body, + ACTIONS(10915), 1, + anon_sym_EQ, + ACTIONS(10919), 1, + anon_sym_COLON, + STATE(1129), 1, + sym__block, + STATE(1173), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203575] = 6, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [210183] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10733), 1, + ACTIONS(10915), 1, + anon_sym_EQ, + ACTIONS(10921), 1, anon_sym_COLON, - STATE(5358), 1, + STATE(1129), 1, sym__block, - STATE(5408), 1, + STATE(1183), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203595] = 6, - ACTIONS(6308), 1, + [210203] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10731), 1, + ACTIONS(10915), 1, anon_sym_EQ, - ACTIONS(10735), 1, + ACTIONS(10923), 1, anon_sym_COLON, - STATE(3196), 1, + STATE(1079), 1, sym_function_body, - STATE(3353), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203615] = 6, - ACTIONS(6308), 1, - anon_sym_LBRACE, - ACTIONS(10731), 1, + [210223] = 6, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(10737), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10925), 1, anon_sym_COLON, - STATE(3202), 1, + STATE(5359), 1, sym_function_body, - STATE(3353), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203635] = 6, - ACTIONS(4250), 1, - anon_sym_while, - ACTIONS(8431), 1, + [210243] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5185), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8437), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - STATE(8896), 1, - sym_type_constraints, - STATE(9509), 1, - sym_enum_class_body, + [210255] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203655] = 6, - ACTIONS(4431), 1, - anon_sym_while, - ACTIONS(8431), 1, + ACTIONS(5181), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8437), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - STATE(8956), 1, - sym_type_constraints, - STATE(9589), 1, - sym_enum_class_body, + [210267] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10927), 1, + sym_line_comment, + ACTIONS(10929), 1, + aux_sym_character_literal_token1, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + STATE(9836), 1, + sym__uni_character_literal, + STATE(9838), 1, + sym_character_escape_seq, + [210289] = 6, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(10935), 1, + anon_sym_COLON, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3249), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203675] = 2, + [210309] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4711), 5, - anon_sym_EQ, + ACTIONS(5165), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_in, - [203687] = 6, - ACTIONS(4073), 1, + anon_sym_where, + [210321] = 4, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(10723), 1, - anon_sym_EQ, - ACTIONS(10739), 1, - anon_sym_COLON, - STATE(1107), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + STATE(9011), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203707] = 6, - ACTIONS(6308), 1, + ACTIONS(10815), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [210337] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10731), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(10741), 1, + ACTIONS(10939), 1, anon_sym_COLON, - STATE(3239), 1, - sym_function_body, - STATE(3353), 1, + STATE(3082), 1, sym__block, + STATE(3246), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203727] = 5, - ACTIONS(10743), 1, - anon_sym_catch, - ACTIONS(10745), 1, - anon_sym_finally, - STATE(4744), 1, - sym_finally_block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4500), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [203745] = 6, - ACTIONS(6564), 1, + [210357] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(10747), 1, + ACTIONS(10941), 1, anon_sym_COLON, - STATE(3927), 1, + STATE(3082), 1, sym__block, - STATE(3929), 1, + STATE(3234), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203765] = 6, - ACTIONS(6564), 1, + [210377] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(10749), 1, + ACTIONS(10943), 1, anon_sym_COLON, - STATE(3827), 1, - sym_function_body, - STATE(3927), 1, + STATE(3082), 1, sym__block, + STATE(3196), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210397] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203785] = 2, + ACTIONS(5161), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [210409] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4582), 5, + ACTIONS(5189), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [203797] = 6, - ACTIONS(10520), 1, + [210421] = 6, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10751), 1, + ACTIONS(10945), 1, anon_sym_COLON, - STATE(9426), 1, + STATE(5400), 1, sym_function_body, - STATE(10063), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203817] = 6, - ACTIONS(4118), 1, - anon_sym_while, - ACTIONS(10520), 1, + [210441] = 6, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10947), 1, + anon_sym_COLON, + STATE(5082), 1, + sym_function_body, + STATE(5091), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210461] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - STATE(9405), 1, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_COLON, + STATE(5091), 1, + sym__block, + STATE(5162), 1, sym_function_body, - STATE(10063), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210481] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10951), 1, + anon_sym_COLON, + ACTIONS(10953), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, + STATE(3497), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203837] = 5, - ACTIONS(10753), 1, + [210501] = 5, + ACTIONS(10955), 1, anon_sym_catch, - ACTIONS(10755), 1, + ACTIONS(10957), 1, anon_sym_finally, - STATE(3491), 1, + STATE(3230), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2795), 2, + STATE(2763), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [203855] = 6, - ACTIONS(6564), 1, + [210519] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10757), 1, - anon_sym_COLON, - ACTIONS(10759), 1, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(3822), 1, - sym_function_body, - STATE(3927), 1, + ACTIONS(10959), 1, + anon_sym_COLON, + STATE(5091), 1, sym__block, + STATE(5261), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203875] = 6, - ACTIONS(6339), 1, - anon_sym_LBRACE, - ACTIONS(10761), 1, + [210539] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4756), 5, + sym__automatic_semicolon, anon_sym_COLON, - ACTIONS(10763), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210551] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(3282), 1, + ACTIONS(10961), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, - STATE(3384), 1, + STATE(3520), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203895] = 6, - ACTIONS(6339), 1, + [210571] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10765), 1, - anon_sym_COLON, - ACTIONS(10767), 1, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(3282), 1, + ACTIONS(10963), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, - STATE(3341), 1, + STATE(3528), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203915] = 6, - ACTIONS(7961), 1, + [210591] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10717), 1, + ACTIONS(10953), 1, anon_sym_EQ, - ACTIONS(10769), 1, + ACTIONS(10965), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(3402), 1, sym__block, - STATE(4750), 1, + STATE(3551), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203935] = 6, - ACTIONS(4067), 1, - anon_sym_while, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + [210611] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9535), 1, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10967), 1, + anon_sym_COLON, + STATE(4713), 1, sym_function_body, - STATE(10063), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [203955] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4671), 5, - anon_sym_COLON, - anon_sym_EQ, + [210631] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [203967] = 4, - ACTIONS(10773), 1, - anon_sym_DOT, - STATE(8497), 1, - aux_sym_identifier_repeat1, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10969), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4856), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10771), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [203983] = 6, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [210651] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10775), 1, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10971), 1, anon_sym_COLON, - STATE(5358), 1, - sym__block, - STATE(5360), 1, + STATE(4750), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204003] = 6, - ACTIONS(6564), 1, + [210671] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10777), 1, + ACTIONS(10973), 1, anon_sym_COLON, - ACTIONS(10779), 1, + ACTIONS(10975), 1, anon_sym_EQ, - STATE(3822), 1, + STATE(4780), 1, sym_function_body, - STATE(3927), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204023] = 6, - ACTIONS(4219), 1, - anon_sym_while, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + [210691] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9591), 1, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10977), 1, + anon_sym_COLON, + STATE(4780), 1, sym_function_body, - STATE(10063), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204043] = 6, - ACTIONS(6564), 1, + [210711] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, + ACTIONS(10975), 1, anon_sym_EQ, - ACTIONS(10781), 1, + ACTIONS(10979), 1, anon_sym_COLON, - STATE(3822), 1, + STATE(4750), 1, sym_function_body, - STATE(3927), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204063] = 6, - ACTIONS(6564), 1, - anon_sym_LBRACE, - ACTIONS(10759), 1, + [210731] = 6, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(10783), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, anon_sym_COLON, - STATE(3927), 1, + STATE(5420), 1, sym__block, - STATE(3929), 1, + STATE(5423), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204083] = 6, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_where, - STATE(8950), 1, - sym_type_constraints, - STATE(9570), 1, - sym_enum_class_body, + [210751] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204103] = 2, + ACTIONS(4752), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210763] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4719), 5, + ACTIONS(4553), 5, sym__automatic_semicolon, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [204115] = 6, - ACTIONS(6564), 1, + [210775] = 6, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(10975), 1, + anon_sym_EQ, + ACTIONS(10983), 1, + anon_sym_COLON, + STATE(4800), 1, + sym__block, + STATE(4856), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210795] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10759), 1, + ACTIONS(10975), 1, anon_sym_EQ, - ACTIONS(10785), 1, + ACTIONS(10985), 1, anon_sym_COLON, - STATE(3911), 1, + STATE(4713), 1, sym_function_body, - STATE(3927), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204135] = 6, - ACTIONS(8043), 1, + [210815] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10787), 1, + ACTIONS(10987), 1, anon_sym_COLON, - ACTIONS(10789), 1, + ACTIONS(10989), 1, anon_sym_EQ, - STATE(5044), 1, - sym_function_body, - STATE(5099), 1, + STATE(3402), 1, sym__block, + STATE(3551), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204155] = 6, - ACTIONS(6564), 1, + [210835] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10779), 1, + ACTIONS(10989), 1, anon_sym_EQ, - ACTIONS(10791), 1, + ACTIONS(10991), 1, anon_sym_COLON, - STATE(3827), 1, - sym_function_body, - STATE(3927), 1, + STATE(3402), 1, sym__block, + STATE(3528), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210855] = 4, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9090), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204175] = 6, - ACTIONS(6564), 1, + ACTIONS(10993), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [210871] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10779), 1, + ACTIONS(10989), 1, anon_sym_EQ, - ACTIONS(10793), 1, + ACTIONS(10995), 1, anon_sym_COLON, - STATE(3927), 1, + STATE(3402), 1, sym__block, - STATE(3929), 1, + STATE(3520), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204195] = 6, - ACTIONS(4514), 1, - anon_sym_while, - ACTIONS(10520), 1, + [210891] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9597), 1, + ACTIONS(10997), 1, + anon_sym_COLON, + STATE(9175), 1, + sym__block, + STATE(9424), 1, sym_function_body, - STATE(10063), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210911] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10989), 1, + anon_sym_EQ, + ACTIONS(10999), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, + STATE(3497), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210931] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204215] = 6, - ACTIONS(8043), 1, + ACTIONS(4748), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [210943] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10795), 1, + ACTIONS(11001), 1, anon_sym_COLON, - ACTIONS(10797), 1, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(5091), 1, sym__block, - STATE(5108), 1, + STATE(5261), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204235] = 6, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, + [210963] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10799), 1, + ACTIONS(11005), 1, anon_sym_COLON, - STATE(9061), 1, + ACTIONS(11007), 1, + anon_sym_EQ, + STATE(3867), 1, sym_function_body, - STATE(9194), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204255] = 5, - ACTIONS(10801), 1, + [210983] = 5, + ACTIONS(11009), 1, anon_sym_catch, - ACTIONS(10803), 1, + ACTIONS(11011), 1, anon_sym_finally, - STATE(3379), 1, + STATE(3491), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2819), 2, + STATE(2834), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [204273] = 6, - ACTIONS(8043), 1, + [211001] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, + ACTIONS(11007), 1, anon_sym_EQ, - ACTIONS(10805), 1, + ACTIONS(11013), 1, anon_sym_COLON, - STATE(5070), 1, - sym_function_body, - STATE(5099), 1, + STATE(3882), 1, sym__block, + STATE(3910), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204293] = 6, - ACTIONS(6564), 1, + [211021] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10759), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(10807), 1, + ACTIONS(11015), 1, anon_sym_COLON, - STATE(3827), 1, - sym_function_body, - STATE(3927), 1, + STATE(5091), 1, sym__block, + STATE(5162), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204313] = 6, - ACTIONS(8043), 1, + [211041] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(10809), 1, + ACTIONS(11017), 1, anon_sym_COLON, - STATE(5062), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204333] = 6, - ACTIONS(6564), 1, - anon_sym_LBRACE, - ACTIONS(10779), 1, + [211061] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10811), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11019), 1, anon_sym_COLON, - STATE(3911), 1, - sym_function_body, - STATE(3927), 1, + STATE(9175), 1, sym__block, + STATE(9278), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204353] = 6, - ACTIONS(8043), 1, + [211081] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, + ACTIONS(11003), 1, anon_sym_EQ, - ACTIONS(10813), 1, + ACTIONS(11021), 1, anon_sym_COLON, - STATE(5044), 1, + STATE(5082), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204373] = 6, - ACTIONS(4073), 1, + [211101] = 4, + ACTIONS(11025), 1, + anon_sym_DOT, + STATE(8555), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11023), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [211117] = 6, + ACTIONS(11027), 1, + anon_sym_DOT_STAR, + ACTIONS(11029), 1, + anon_sym_as, + ACTIONS(11031), 1, + sym__automatic_semicolon, + STATE(9260), 1, + sym_import_alias, + STATE(9263), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211137] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10723), 1, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10815), 1, + ACTIONS(11033), 1, anon_sym_COLON, - STATE(1182), 1, - sym_function_body, - STATE(1204), 1, + STATE(5091), 1, sym__block, + STATE(5143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204393] = 2, + [211157] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4727), 5, + ACTIONS(4545), 5, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [204405] = 6, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, + [211169] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(11035), 1, anon_sym_COLON, - STATE(9110), 1, - sym_function_body, - STATE(9194), 1, + STATE(3082), 1, sym__block, + STATE(3196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204425] = 6, - ACTIONS(7961), 1, + [211189] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10819), 1, + ACTIONS(11037), 1, anon_sym_COLON, - ACTIONS(10821), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4735), 1, + STATE(3836), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204445] = 6, - ACTIONS(7961), 1, + [211209] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(10823), 1, + ACTIONS(11041), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(3082), 1, sym__block, - STATE(4775), 1, + STATE(3234), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204465] = 6, - ACTIONS(7961), 1, + [211229] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(11039), 1, anon_sym_EQ, - ACTIONS(10825), 1, + ACTIONS(11043), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(3882), 1, sym__block, - STATE(4750), 1, + STATE(3910), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204485] = 6, - ACTIONS(8043), 1, + [211249] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10789), 1, + ACTIONS(11039), 1, anon_sym_EQ, - ACTIONS(10827), 1, + ACTIONS(11045), 1, anon_sym_COLON, - STATE(5062), 1, - sym_function_body, - STATE(5099), 1, + STATE(3882), 1, sym__block, + STATE(3890), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204505] = 2, + [211269] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4679), 5, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4507), 5, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - anon_sym_while, - [204517] = 6, - ACTIONS(8043), 1, + [211281] = 6, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10829), 1, + ACTIONS(11047), 1, anon_sym_COLON, - ACTIONS(10831), 1, - anon_sym_EQ, - STATE(5070), 1, + STATE(9811), 1, sym_function_body, - STATE(5099), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204537] = 5, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(10833), 1, - anon_sym_COLON, - STATE(9225), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4522), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [204555] = 6, - ACTIONS(7961), 1, + [211301] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(11039), 1, anon_sym_EQ, - ACTIONS(10835), 1, + ACTIONS(11049), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4737), 1, + STATE(3867), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204575] = 6, - ACTIONS(8043), 1, + [211321] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10789), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(10837), 1, + ACTIONS(11051), 1, anon_sym_COLON, - STATE(5070), 1, - sym_function_body, - STATE(5099), 1, + STATE(3082), 1, sym__block, + STATE(3246), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204595] = 4, - ACTIONS(10839), 1, - anon_sym_COMMA, - STATE(8504), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4435), 3, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_while, - [204611] = 6, - ACTIONS(4268), 1, + [211341] = 6, + ACTIONS(4329), 1, anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(8854), 1, + ACTIONS(8644), 1, + anon_sym_where, + STATE(9007), 1, sym_type_constraints, - STATE(9410), 1, + STATE(9623), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204631] = 2, + [211361] = 6, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(11053), 1, + anon_sym_COLON, + STATE(3082), 1, + sym__block, + STATE(3249), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 5, - sym__automatic_semicolon, + [211381] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [204643] = 6, - ACTIONS(6339), 1, - anon_sym_LBRACE, - ACTIONS(10763), 1, + ACTIONS(11007), 1, anon_sym_EQ, - ACTIONS(10841), 1, + ACTIONS(11055), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(3882), 1, sym__block, - STATE(3341), 1, + STATE(3890), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211401] = 6, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(11057), 1, + anon_sym_COLON, + STATE(5317), 1, sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204663] = 2, + [211421] = 4, + ACTIONS(11059), 1, + anon_sym_COMMA, + STATE(8549), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4655), 5, - sym__automatic_semicolon, - anon_sym_COLON, + ACTIONS(4341), 3, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [204675] = 2, + anon_sym_while, + [211437] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4675), 5, - sym__automatic_semicolon, + ACTIONS(4561), 5, anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, - [204687] = 4, - ACTIONS(8457), 1, + anon_sym_while, + [211449] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(8773), 1, - sym_class_body, + ACTIONS(10903), 1, + anon_sym_EQ, + ACTIONS(11061), 1, + anon_sym_COLON, + STATE(1079), 1, + sym_function_body, + STATE(1129), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10843), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [204703] = 7, - ACTIONS(3), 1, + [211469] = 6, + ACTIONS(4139), 1, + anon_sym_while, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9464), 1, + sym_function_body, + STATE(9998), 1, + sym__block, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10700), 1, sym_line_comment, - ACTIONS(10704), 1, - anon_sym_BSLASHu, - ACTIONS(10706), 1, - sym__escaped_identifier, - ACTIONS(10845), 1, - aux_sym_character_literal_token1, - STATE(9723), 1, - sym_character_escape_seq, - STATE(9773), 1, - sym__uni_character_literal, - [204725] = 6, - ACTIONS(10496), 1, + [211489] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10847), 1, + ACTIONS(11063), 1, anon_sym_COLON, - STATE(9194), 1, - sym__block, - STATE(9317), 1, + STATE(9471), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204745] = 6, - ACTIONS(6339), 1, + [211509] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10767), 1, + ACTIONS(10903), 1, anon_sym_EQ, - ACTIONS(10849), 1, + ACTIONS(11065), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(1129), 1, sym__block, - STATE(3514), 1, + STATE(1173), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204765] = 6, - ACTIONS(6339), 1, - anon_sym_LBRACE, - ACTIONS(10767), 1, + [211529] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10851), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11067), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(9175), 1, sym__block, - STATE(3355), 1, + STATE(9393), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204785] = 2, + [211549] = 6, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(10903), 1, + anon_sym_EQ, + ACTIONS(11069), 1, + anon_sym_COLON, + STATE(1129), 1, + sym__block, + STATE(1143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [204797] = 6, - ACTIONS(4073), 1, + [211569] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10853), 1, + ACTIONS(11071), 1, anon_sym_COLON, - ACTIONS(10855), 1, + ACTIONS(11073), 1, anon_sym_EQ, - STATE(1107), 1, - sym_function_body, - STATE(1204), 1, + STATE(3082), 1, sym__block, + STATE(3249), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204817] = 6, - ACTIONS(6339), 1, + [211589] = 5, + ACTIONS(11075), 1, + anon_sym_catch, + ACTIONS(11077), 1, + anon_sym_finally, + STATE(4793), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4532), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [211607] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10767), 1, + ACTIONS(11073), 1, anon_sym_EQ, - ACTIONS(10857), 1, + ACTIONS(11079), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(3082), 1, sym__block, - STATE(3384), 1, + STATE(3246), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204837] = 6, - ACTIONS(4073), 1, + [211627] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10855), 1, + ACTIONS(11073), 1, anon_sym_EQ, - ACTIONS(10859), 1, + ACTIONS(11081), 1, anon_sym_COLON, - STATE(1170), 1, - sym_function_body, - STATE(1204), 1, + STATE(3082), 1, sym__block, + STATE(3234), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204857] = 6, - ACTIONS(4073), 1, + [211647] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10855), 1, + ACTIONS(11073), 1, anon_sym_EQ, - ACTIONS(10861), 1, + ACTIONS(11083), 1, anon_sym_COLON, - STATE(1182), 1, - sym_function_body, - STATE(1204), 1, + STATE(3082), 1, sym__block, + STATE(3196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204877] = 6, - ACTIONS(4073), 1, + [211667] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10855), 1, + ACTIONS(11007), 1, anon_sym_EQ, - ACTIONS(10863), 1, + ACTIONS(11085), 1, anon_sym_COLON, - STATE(1120), 1, + STATE(3836), 1, sym_function_body, - STATE(1204), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204897] = 6, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(10831), 1, + [211687] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10865), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(11087), 1, anon_sym_COLON, - STATE(5062), 1, + STATE(9511), 1, sym_function_body, - STATE(5099), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204917] = 6, - ACTIONS(6564), 1, + [211707] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10867), 1, + ACTIONS(11089), 1, anon_sym_COLON, - ACTIONS(10869), 1, - anon_sym_EQ, - STATE(3822), 1, - sym_function_body, - STATE(3927), 1, - sym__block, + STATE(9358), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4499), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [211725] = 4, + ACTIONS(11059), 1, + anon_sym_COMMA, + STATE(8615), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204937] = 6, - ACTIONS(4250), 1, + ACTIONS(4426), 3, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, + [211741] = 6, + ACTIONS(4357), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(8912), 1, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8920), 1, sym_type_constraints, - STATE(9509), 1, + STATE(9518), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204957] = 5, - ACTIONS(10871), 1, + [211761] = 4, + ACTIONS(11091), 1, + anon_sym_DOT, + STATE(8341), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4195), 3, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [211777] = 5, + ACTIONS(11093), 1, anon_sym_catch, - ACTIONS(10873), 1, + ACTIONS(11095), 1, anon_sym_finally, - STATE(3767), 1, + STATE(5099), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2970), 2, + STATE(4599), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [204975] = 6, - ACTIONS(6339), 1, - anon_sym_LBRACE, - ACTIONS(10763), 1, - anon_sym_EQ, - ACTIONS(10875), 1, - anon_sym_COLON, - STATE(3282), 1, - sym__block, - STATE(3355), 1, - sym_function_body, + [211795] = 4, + ACTIONS(11097), 1, + anon_sym_COMMA, + STATE(8580), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [204995] = 6, - ACTIONS(4073), 1, + ACTIONS(4738), 3, anon_sym_LBRACE, - ACTIONS(10877), 1, + anon_sym_where, + anon_sym_while, + [211811] = 6, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, anon_sym_COLON, - ACTIONS(10879), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(1107), 1, + STATE(5082), 1, sym_function_body, - STATE(1204), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205015] = 2, + [211831] = 4, + ACTIONS(11025), 1, + anon_sym_DOT, + STATE(8609), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4691), 5, + ACTIONS(11103), 3, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [205027] = 6, - ACTIONS(4073), 1, + anon_sym_DOT_STAR, + anon_sym_as, + [211847] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10879), 1, + ACTIONS(11101), 1, anon_sym_EQ, - ACTIONS(10881), 1, + ACTIONS(11105), 1, anon_sym_COLON, - STATE(1170), 1, + STATE(5091), 1, + sym__block, + STATE(5143), 1, sym_function_body, - STATE(1204), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211867] = 6, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(11107), 1, + anon_sym_COLON, + ACTIONS(11109), 1, + anon_sym_EQ, + STATE(1129), 1, sym__block, + STATE(1143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205047] = 6, - ACTIONS(4073), 1, + [211887] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10879), 1, + ACTIONS(10899), 1, anon_sym_EQ, - ACTIONS(10883), 1, + ACTIONS(11111), 1, anon_sym_COLON, - STATE(1182), 1, - sym_function_body, - STATE(1204), 1, + STATE(1129), 1, sym__block, + STATE(1143), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211907] = 6, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8904), 1, + sym_type_constraints, + STATE(9543), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205067] = 6, - ACTIONS(4073), 1, + [211927] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10879), 1, + ACTIONS(10899), 1, anon_sym_EQ, - ACTIONS(10885), 1, + ACTIONS(11113), 1, anon_sym_COLON, - STATE(1120), 1, - sym_function_body, - STATE(1204), 1, + STATE(1129), 1, sym__block, + STATE(1173), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205087] = 6, - ACTIONS(8043), 1, + [211947] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10789), 1, + ACTIONS(10899), 1, anon_sym_EQ, - ACTIONS(10887), 1, + ACTIONS(11115), 1, anon_sym_COLON, - STATE(5099), 1, + STATE(1129), 1, sym__block, - STATE(5108), 1, + STATE(1183), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205107] = 6, - ACTIONS(4274), 1, + [211967] = 6, + ACTIONS(4218), 1, anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - STATE(8943), 1, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(8795), 1, sym_type_constraints, - STATE(9563), 1, + STATE(9543), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205127] = 4, - ACTIONS(10889), 1, - anon_sym_COMMA, - STATE(8397), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4536), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [205143] = 2, + [211987] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 5, + ACTIONS(4565), 5, sym__automatic_semicolon, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [205155] = 6, - ACTIONS(4444), 1, - anon_sym_while, - ACTIONS(8437), 1, - anon_sym_where, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(8941), 1, - sym_type_constraints, - STATE(9557), 1, - sym_class_body, + [211999] = 3, + ACTIONS(10740), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205175] = 6, - ACTIONS(6339), 1, + ACTIONS(4124), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [212013] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10763), 1, + ACTIONS(11101), 1, anon_sym_EQ, - ACTIONS(10891), 1, + ACTIONS(11117), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(5091), 1, sym__block, - STATE(3514), 1, + STATE(5162), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205195] = 2, + [212033] = 6, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(11119), 1, + anon_sym_COLON, + ACTIONS(11121), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3249), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [205207] = 4, - ACTIONS(10895), 1, - anon_sym_DOT, - STATE(8497), 1, - aux_sym_identifier_repeat1, + [212053] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10893), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [205223] = 6, - ACTIONS(7961), 1, + ACTIONS(4583), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(10717), 1, + anon_sym_where, + anon_sym_while, + [212065] = 6, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(11121), 1, anon_sym_EQ, - ACTIONS(10898), 1, + ACTIONS(11123), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(3082), 1, sym__block, - STATE(4737), 1, + STATE(3246), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205243] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4667), 5, - sym__automatic_semicolon, - anon_sym_COLON, + [212085] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [205255] = 4, - ACTIONS(10900), 1, - anon_sym_COMMA, - STATE(8500), 1, - aux_sym_type_constraints_repeat1, + ACTIONS(11121), 1, + anon_sym_EQ, + ACTIONS(11125), 1, + anon_sym_COLON, + STATE(3082), 1, + sym__block, + STATE(3234), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4412), 3, - anon_sym_EQ, + [212105] = 6, + ACTIONS(6430), 1, anon_sym_LBRACE, - anon_sym_while, - [205271] = 7, - ACTIONS(3), 1, + ACTIONS(11121), 1, + anon_sym_EQ, + ACTIONS(11127), 1, + anon_sym_COLON, + STATE(3082), 1, + sym__block, + STATE(3196), 1, + sym_function_body, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10700), 1, sym_line_comment, - ACTIONS(10704), 1, - anon_sym_BSLASHu, - ACTIONS(10706), 1, - sym__escaped_identifier, - ACTIONS(10903), 1, - aux_sym_character_literal_token1, - STATE(9773), 1, - sym__uni_character_literal, - STATE(9872), 1, - sym_character_escape_seq, - [205293] = 2, + [212125] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 5, + ACTIONS(4635), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [205305] = 6, - ACTIONS(10520), 1, + [212137] = 6, + ACTIONS(4149), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10905), 1, - anon_sym_COLON, - STATE(9404), 1, + STATE(9571), 1, sym_function_body, - STATE(10063), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205325] = 4, - ACTIONS(10839), 1, - anon_sym_COMMA, - STATE(8500), 1, - aux_sym_type_constraints_repeat1, + [212157] = 6, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(11109), 1, + anon_sym_EQ, + ACTIONS(11129), 1, + anon_sym_COLON, + STATE(1129), 1, + sym__block, + STATE(1173), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 3, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_while, - [205341] = 2, - ACTIONS(3), 2, + [212177] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(4454), 5, - sym__automatic_semicolon, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11131), 1, + aux_sym_character_literal_token1, + STATE(9540), 1, + sym_character_escape_seq, + STATE(9836), 1, + sym__uni_character_literal, + [212199] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [205353] = 2, + ACTIONS(11109), 1, + anon_sym_EQ, + ACTIONS(11133), 1, + anon_sym_COLON, + STATE(1129), 1, + sym__block, + STATE(1183), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4707), 5, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [205365] = 6, - ACTIONS(6308), 1, + [212219] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10907), 1, + ACTIONS(11135), 1, anon_sym_COLON, - ACTIONS(10909), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3239), 1, - sym_function_body, - STATE(3353), 1, + STATE(3402), 1, sym__block, + STATE(3497), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205385] = 4, - ACTIONS(10773), 1, - anon_sym_DOT, - STATE(8430), 1, - aux_sym_identifier_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10911), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [205401] = 6, - ACTIONS(6308), 1, + [212239] = 6, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10909), 1, + ACTIONS(11109), 1, anon_sym_EQ, - ACTIONS(10913), 1, + ACTIONS(11139), 1, anon_sym_COLON, - STATE(3202), 1, + STATE(1079), 1, sym_function_body, - STATE(3353), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205421] = 6, - ACTIONS(6308), 1, + [212259] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10909), 1, + ACTIONS(11101), 1, anon_sym_EQ, - ACTIONS(10915), 1, + ACTIONS(11141), 1, anon_sym_COLON, - STATE(3196), 1, - sym_function_body, - STATE(3353), 1, + STATE(5091), 1, sym__block, + STATE(5261), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205441] = 6, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [212279] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10917), 1, + ACTIONS(11137), 1, + anon_sym_EQ, + ACTIONS(11143), 1, anon_sym_COLON, - STATE(5358), 1, + STATE(3402), 1, sym__block, - STATE(5406), 1, + STATE(3520), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205461] = 6, - ACTIONS(6308), 1, + [212299] = 4, + ACTIONS(11145), 1, + anon_sym_COMMA, + STATE(8580), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4635), 3, anon_sym_LBRACE, - ACTIONS(10909), 1, + anon_sym_where, + anon_sym_while, + [212315] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11137), 1, anon_sym_EQ, - ACTIONS(10919), 1, + ACTIONS(11148), 1, anon_sym_COLON, - STATE(3207), 1, - sym_function_body, - STATE(3353), 1, + STATE(3402), 1, sym__block, + STATE(3528), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205481] = 6, - ACTIONS(6308), 1, + [212335] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10921), 1, - anon_sym_COLON, - ACTIONS(10923), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3207), 1, - sym_function_body, - STATE(3353), 1, + ACTIONS(11150), 1, + anon_sym_COLON, + STATE(3402), 1, sym__block, + STATE(3551), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205501] = 6, - ACTIONS(10520), 1, + [212355] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10927), 1, + sym_line_comment, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11152), 1, + aux_sym_character_literal_token1, + STATE(9732), 1, + sym_character_escape_seq, + STATE(9836), 1, + sym__uni_character_literal, + [212377] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10927), 1, + sym_line_comment, + ACTIONS(10931), 1, + anon_sym_BSLASHu, + ACTIONS(10933), 1, + sym__escaped_identifier, + ACTIONS(11154), 1, + aux_sym_character_literal_token1, + STATE(9818), 1, + sym_character_escape_seq, + STATE(9836), 1, + sym__uni_character_literal, + [212399] = 6, + ACTIONS(4441), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(10925), 1, - anon_sym_COLON, - STATE(9552), 1, + STATE(9661), 1, sym_function_body, - STATE(10063), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205521] = 5, - ACTIONS(8345), 1, + [212419] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10927), 1, + ACTIONS(11156), 1, anon_sym_COLON, - STATE(9195), 1, - sym_class_body, + ACTIONS(11158), 1, + anon_sym_EQ, + STATE(4713), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4530), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [205539] = 4, - ACTIONS(10889), 1, + [212439] = 4, + ACTIONS(11097), 1, anon_sym_COMMA, - STATE(8492), 1, + STATE(8553), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4578), 3, + ACTIONS(4686), 3, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [205555] = 4, - ACTIONS(10929), 1, - anon_sym_DOT, - STATE(8279), 1, - aux_sym_user_type_repeat1, + [212455] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4142), 3, - anon_sym_AMP, - sym__quest, + ACTIONS(4718), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_in, - [205571] = 6, - ACTIONS(7961), 1, + [212467] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10931), 1, + ACTIONS(11160), 1, anon_sym_COLON, - STATE(4728), 1, + ACTIONS(11162), 1, + anon_sym_EQ, + STATE(4780), 1, + sym_function_body, + STATE(4800), 1, sym__block, - STATE(4737), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212487] = 6, + ACTIONS(4301), 1, + anon_sym_while, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9656), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205591] = 6, - ACTIONS(4510), 1, + [212507] = 6, + ACTIONS(4483), 1, anon_sym_while, - ACTIONS(8437), 1, + ACTIONS(8644), 1, anon_sym_where, - ACTIONS(8457), 1, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(8921), 1, + STATE(8877), 1, sym_type_constraints, - STATE(9572), 1, - sym_class_body, + STATE(9653), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205611] = 6, - ACTIONS(6308), 1, + [212527] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11158), 1, anon_sym_EQ, - ACTIONS(10933), 1, + ACTIONS(11164), 1, anon_sym_COLON, - STATE(3196), 1, + STATE(4750), 1, sym_function_body, - STATE(3353), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205631] = 6, - ACTIONS(6308), 1, + [212547] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11162), 1, anon_sym_EQ, - ACTIONS(10935), 1, + ACTIONS(11166), 1, anon_sym_COLON, - STATE(3202), 1, + STATE(4750), 1, sym_function_body, - STATE(3353), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205651] = 6, - ACTIONS(7961), 1, + [212567] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(11162), 1, anon_sym_EQ, - ACTIONS(10937), 1, + ACTIONS(11168), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4750), 1, + STATE(4856), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205671] = 6, - ACTIONS(7961), 1, + [212587] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(11162), 1, anon_sym_EQ, - ACTIONS(10939), 1, + ACTIONS(11170), 1, anon_sym_COLON, - STATE(4728), 1, - sym__block, - STATE(4775), 1, + STATE(4713), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205691] = 6, - ACTIONS(4090), 1, + [212607] = 6, + ACTIONS(4297), 1, anon_sym_while, - ACTIONS(10520), 1, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10522), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(9560), 1, + STATE(9650), 1, sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [205711] = 6, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10941), 1, - anon_sym_COLON, - STATE(4728), 1, + STATE(9998), 1, sym__block, - STATE(4735), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205731] = 7, + [212627] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10700), 1, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(10704), 1, + ACTIONS(10931), 1, anon_sym_BSLASHu, - ACTIONS(10706), 1, + ACTIONS(10933), 1, sym__escaped_identifier, - ACTIONS(10943), 1, + ACTIONS(11172), 1, aux_sym_character_literal_token1, - STATE(9773), 1, - sym__uni_character_literal, - STATE(9775), 1, + STATE(9533), 1, sym_character_escape_seq, - [205753] = 6, - ACTIONS(6339), 1, + STATE(9836), 1, + sym__uni_character_literal, + [212649] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10945), 1, + ACTIONS(11174), 1, anon_sym_COLON, - ACTIONS(10947), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(3282), 1, - sym__block, - STATE(3384), 1, + STATE(3867), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205773] = 6, - ACTIONS(6308), 1, + [212669] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(10949), 1, + ACTIONS(11178), 1, anon_sym_COLON, - STATE(3239), 1, - sym_function_body, - STATE(3353), 1, + ACTIONS(11180), 1, + anon_sym_EQ, + STATE(5091), 1, sym__block, + STATE(5261), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205793] = 6, - ACTIONS(4444), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_where, - STATE(8922), 1, - sym_type_constraints, - STATE(9557), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [205813] = 3, - ACTIONS(10563), 1, - anon_sym_by, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4454), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [205827] = 6, - ACTIONS(6308), 1, + [212689] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, + ACTIONS(11158), 1, anon_sym_EQ, - ACTIONS(10951), 1, + ACTIONS(11182), 1, anon_sym_COLON, - STATE(3202), 1, + STATE(4780), 1, sym_function_body, - STATE(3353), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205847] = 6, - ACTIONS(6308), 1, + [212709] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, + ACTIONS(11180), 1, anon_sym_EQ, - ACTIONS(10953), 1, + ACTIONS(11184), 1, anon_sym_COLON, - STATE(3207), 1, - sym_function_body, - STATE(3353), 1, + STATE(5091), 1, sym__block, + STATE(5162), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205867] = 6, - ACTIONS(6564), 1, + [212729] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10869), 1, + ACTIONS(11180), 1, anon_sym_EQ, - ACTIONS(10955), 1, + ACTIONS(11186), 1, anon_sym_COLON, - STATE(3827), 1, - sym_function_body, - STATE(3927), 1, + STATE(5091), 1, sym__block, + STATE(5143), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205887] = 6, - ACTIONS(8043), 1, + [212749] = 6, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, + ACTIONS(11180), 1, anon_sym_EQ, - ACTIONS(10957), 1, + ACTIONS(11188), 1, anon_sym_COLON, - STATE(5044), 1, + STATE(5082), 1, sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205907] = 6, - ACTIONS(6339), 1, + [212769] = 6, + ACTIONS(4469), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + STATE(8880), 1, + sym_type_constraints, + STATE(9627), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212789] = 6, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(8887), 1, + sym_type_constraints, + STATE(9617), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212809] = 6, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(11176), 1, anon_sym_EQ, - ACTIONS(10959), 1, + ACTIONS(11190), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(3882), 1, sym__block, - STATE(3341), 1, + STATE(3890), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205927] = 7, + [212829] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4587), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [212841] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4579), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [212853] = 4, + ACTIONS(11194), 1, + anon_sym_DOT, + STATE(8609), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11192), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [212869] = 5, + ACTIONS(11197), 1, + anon_sym_catch, + ACTIONS(11199), 1, + anon_sym_finally, + STATE(1021), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(801), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212887] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10700), 1, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(10704), 1, + ACTIONS(10931), 1, anon_sym_BSLASHu, - ACTIONS(10706), 1, + ACTIONS(10933), 1, sym__escaped_identifier, - ACTIONS(10961), 1, + ACTIONS(11201), 1, aux_sym_character_literal_token1, - STATE(9773), 1, + STATE(9836), 1, sym__uni_character_literal, - STATE(10030), 1, + STATE(9884), 1, sym_character_escape_seq, - [205949] = 6, - ACTIONS(8043), 1, + [212909] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10963), 1, + ACTIONS(11203), 1, anon_sym_COLON, - STATE(5062), 1, - sym_function_body, - STATE(5099), 1, + ACTIONS(11205), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, + STATE(3520), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205969] = 6, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(10496), 1, + [212929] = 6, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10965), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(11207), 1, anon_sym_COLON, - STATE(5070), 1, + STATE(9587), 1, sym_function_body, - STATE(5099), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [205989] = 6, - ACTIONS(8043), 1, + [212949] = 6, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10831), 1, + ACTIONS(11176), 1, anon_sym_EQ, - ACTIONS(10967), 1, + ACTIONS(11209), 1, anon_sym_COLON, - STATE(5044), 1, - sym_function_body, - STATE(5099), 1, + STATE(3882), 1, sym__block, + STATE(3910), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206009] = 6, - ACTIONS(6308), 1, - anon_sym_LBRACE, - ACTIONS(10923), 1, - anon_sym_EQ, - ACTIONS(10969), 1, - anon_sym_COLON, - STATE(3239), 1, - sym_function_body, - STATE(3353), 1, - sym__block, + [212969] = 4, + ACTIONS(11211), 1, + anon_sym_COMMA, + STATE(8615), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206029] = 6, - ACTIONS(6339), 1, + ACTIONS(4432), 3, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(10947), 1, + anon_sym_while, + [212985] = 6, + ACTIONS(6714), 1, + anon_sym_LBRACE, + ACTIONS(11176), 1, anon_sym_EQ, - ACTIONS(10971), 1, + ACTIONS(11214), 1, anon_sym_COLON, - STATE(3282), 1, - sym__block, - STATE(3355), 1, + STATE(3836), 1, sym_function_body, + STATE(3882), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206049] = 6, - ACTIONS(6339), 1, + [213005] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, - anon_sym_EQ, - ACTIONS(10973), 1, + ACTIONS(11216), 1, anon_sym_COLON, - STATE(3282), 1, - sym__block, - STATE(3514), 1, - sym_function_body, + STATE(9243), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206069] = 3, - ACTIONS(10543), 1, - anon_sym_COLON, + ACTIONS(4351), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213023] = 5, + ACTIONS(11218), 1, + anon_sym_catch, + ACTIONS(11220), 1, + anon_sym_finally, + STATE(4005), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [206083] = 6, - ACTIONS(4073), 1, + STATE(3075), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [213041] = 6, + ACTIONS(4495), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(10975), 1, - anon_sym_COLON, - ACTIONS(10977), 1, - anon_sym_EQ, - STATE(1107), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8899), 1, + sym_type_constraints, + STATE(9588), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206103] = 6, - ACTIONS(4073), 1, + [213061] = 6, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(10977), 1, - anon_sym_EQ, - ACTIONS(10979), 1, - anon_sym_COLON, - STATE(1170), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8884), 1, + sym_type_constraints, + STATE(9617), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206123] = 6, - ACTIONS(10496), 1, + [213081] = 6, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10981), 1, + ACTIONS(11222), 1, anon_sym_COLON, - STATE(9047), 1, - sym_function_body, - STATE(9194), 1, + STATE(9175), 1, sym__block, + STATE(9258), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206143] = 6, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [213101] = 6, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(10983), 1, - anon_sym_COLON, - STATE(5358), 1, - sym__block, - STATE(5371), 1, - sym_function_body, + STATE(8897), 1, + sym_type_constraints, + STATE(9515), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206163] = 6, - ACTIONS(6308), 1, - anon_sym_LBRACE, - ACTIONS(8161), 1, + [213121] = 6, + ACTIONS(4162), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10985), 1, - anon_sym_COLON, - STATE(3196), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9600), 1, sym_function_body, - STATE(3353), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206183] = 6, - ACTIONS(6564), 1, - anon_sym_LBRACE, - ACTIONS(10869), 1, + [213141] = 6, + ACTIONS(4185), 1, + anon_sym_while, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(10987), 1, - anon_sym_COLON, - STATE(3911), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9621), 1, sym_function_body, - STATE(3927), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206203] = 2, + [213161] = 3, + ACTIONS(10807), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 5, - sym__automatic_semicolon, + ACTIONS(4507), 4, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [206215] = 6, - ACTIONS(10989), 1, - anon_sym_DOT_STAR, - ACTIONS(10991), 1, - anon_sym_as, - ACTIONS(10993), 1, - sym__automatic_semicolon, - STATE(9171), 1, - sym_import_alias, - STATE(9172), 1, - sym__semi, + anon_sym_while, + [213175] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206235] = 6, - ACTIONS(4073), 1, + ACTIONS(4760), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10977), 1, + anon_sym_RBRACE, + anon_sym_where, + [213187] = 6, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11205), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(11224), 1, anon_sym_COLON, - STATE(1182), 1, - sym_function_body, - STATE(1204), 1, + STATE(3402), 1, sym__block, + STATE(3551), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206255] = 4, - ACTIONS(8457), 1, + [213207] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(8744), 1, - sym_class_body, + ACTIONS(11205), 1, + anon_sym_EQ, + ACTIONS(11226), 1, + anon_sym_COLON, + STATE(3402), 1, + sym__block, + STATE(3497), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10620), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [206271] = 6, - ACTIONS(7961), 1, + [213227] = 6, + ACTIONS(4323), 1, + anon_sym_while, + ACTIONS(8644), 1, + anon_sym_where, + ACTIONS(8648), 1, anon_sym_LBRACE, - ACTIONS(10997), 1, - anon_sym_COLON, - ACTIONS(10999), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4735), 1, - sym_function_body, + STATE(8893), 1, + sym_type_constraints, + STATE(9611), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206291] = 6, - ACTIONS(8043), 1, + [213247] = 6, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, + ACTIONS(11158), 1, anon_sym_EQ, - ACTIONS(11001), 1, + ACTIONS(11228), 1, anon_sym_COLON, - STATE(5099), 1, + STATE(4800), 1, sym__block, - STATE(5108), 1, + STATE(4856), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206311] = 6, - ACTIONS(7961), 1, + [213267] = 6, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(11205), 1, anon_sym_EQ, - ACTIONS(11003), 1, + ACTIONS(11230), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(3402), 1, sym__block, - STATE(4775), 1, + STATE(3528), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206331] = 6, - ACTIONS(6339), 1, + [213287] = 6, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11005), 1, - anon_sym_COLON, - ACTIONS(11007), 1, - anon_sym_EQ, - STATE(3282), 1, - sym__block, - STATE(3384), 1, - sym_function_body, + ACTIONS(8644), 1, + anon_sym_where, + STATE(8895), 1, + sym_type_constraints, + STATE(9515), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206351] = 6, - ACTIONS(7961), 1, + [213307] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(11205), 1, anon_sym_EQ, - ACTIONS(11009), 1, - anon_sym_COLON, - STATE(4728), 1, + STATE(3402), 1, sym__block, - STATE(4750), 1, + STATE(3505), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206371] = 6, - ACTIONS(6564), 1, + [213324] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10869), 1, + ACTIONS(11205), 1, anon_sym_EQ, - ACTIONS(11011), 1, - anon_sym_COLON, - STATE(3927), 1, + STATE(3402), 1, sym__block, - STATE(3929), 1, + STATE(3488), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206391] = 6, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(10977), 1, + [213341] = 5, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11013), 1, - anon_sym_COLON, - STATE(1120), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9613), 1, sym_function_body, - STATE(1204), 1, + STATE(9998), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206411] = 6, - ACTIONS(7961), 1, + [213358] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(11158), 1, anon_sym_EQ, - ACTIONS(11015), 1, - anon_sym_COLON, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4737), 1, + STATE(4810), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206431] = 5, - ACTIONS(11017), 1, - anon_sym_catch, - ACTIONS(11019), 1, - anon_sym_finally, - STATE(1085), 1, - sym_finally_block, + [213375] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(784), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [206449] = 6, - ACTIONS(6339), 1, + ACTIONS(4760), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11007), 1, + anon_sym_where, + anon_sym_while, + [213386] = 5, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(11021), 1, - anon_sym_COLON, - STATE(3282), 1, - sym__block, - STATE(3341), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9604), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206469] = 6, - ACTIONS(6339), 1, + [213403] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11158), 1, anon_sym_EQ, - ACTIONS(11023), 1, - anon_sym_COLON, - STATE(3282), 1, - sym__block, - STATE(3355), 1, + STATE(4727), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206489] = 7, - ACTIONS(3), 1, + [213420] = 5, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(11205), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3481), 1, + sym_function_body, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10700), 1, sym_line_comment, - ACTIONS(10704), 1, - anon_sym_BSLASHu, - ACTIONS(10706), 1, - sym__escaped_identifier, - ACTIONS(11025), 1, - aux_sym_character_literal_token1, - STATE(9432), 1, - sym_character_escape_seq, - STATE(9773), 1, - sym__uni_character_literal, - [206511] = 6, - ACTIONS(6339), 1, + [213437] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11158), 1, anon_sym_EQ, - ACTIONS(11027), 1, - anon_sym_COLON, - STATE(3282), 1, - sym__block, - STATE(3514), 1, + STATE(4714), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206531] = 6, - ACTIONS(8043), 1, + [213454] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10831), 1, + ACTIONS(11205), 1, anon_sym_EQ, - ACTIONS(11029), 1, - anon_sym_COLON, - STATE(5099), 1, + STATE(3402), 1, sym__block, - STATE(5108), 1, + STATE(3471), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206551] = 5, - ACTIONS(11031), 1, - anon_sym_catch, - ACTIONS(11033), 1, - anon_sym_finally, - STATE(5102), 1, - sym_finally_block, + [213471] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4553), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [206569] = 5, - ACTIONS(6339), 1, + ACTIONS(4507), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [213482] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10767), 1, + ACTIONS(10907), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(3882), 1, sym__block, - STATE(3344), 1, + STATE(3938), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206586] = 5, - ACTIONS(7961), 1, + [213499] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4722), 1, - sym_function_body, - STATE(4728), 1, + STATE(3882), 1, sym__block, + STATE(4030), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206603] = 5, - ACTIONS(7961), 1, + [213516] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(3882), 1, sym__block, - STATE(4804), 1, + STATE(3959), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206620] = 5, - ACTIONS(7961), 1, - anon_sym_LBRACE, - ACTIONS(10999), 1, + [213533] = 5, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4824), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9115), 1, sym_function_body, + STATE(9175), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206637] = 5, - ACTIONS(7961), 1, + [213550] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10717), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(3882), 1, sym__block, - STATE(4804), 1, + STATE(3938), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206654] = 5, - ACTIONS(8161), 1, + [213567] = 5, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(8163), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(5358), 1, + STATE(9175), 1, sym__block, - STATE(5401), 1, + STATE(9279), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206671] = 5, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(10496), 1, - anon_sym_EQ, - STATE(5052), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + [213584] = 3, + ACTIONS(11234), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206688] = 5, - ACTIONS(7961), 1, + ACTIONS(11232), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [213597] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10999), 1, + ACTIONS(11176), 1, anon_sym_EQ, - STATE(4708), 1, + STATE(3844), 1, sym_function_body, - STATE(4728), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206705] = 5, - ACTIONS(6339), 1, - anon_sym_LBRACE, - ACTIONS(11007), 1, - anon_sym_EQ, - STATE(3282), 1, - sym__block, - STATE(3395), 1, - sym_function_body, + [213614] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206722] = 4, - ACTIONS(8359), 1, + ACTIONS(4553), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213625] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9071), 1, + STATE(9113), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 2, + ACTIONS(4323), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [206737] = 4, - ACTIONS(8345), 1, + [213640] = 3, + ACTIONS(11236), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11192), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [213653] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9207), 1, + STATE(9297), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4329), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [206752] = 4, - ACTIONS(8359), 1, + [213668] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9257), 1, + STATE(9418), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4476), 2, + ACTIONS(3282), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [206767] = 5, - ACTIONS(6339), 1, + [213683] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(5091), 1, sym__block, - STATE(3344), 1, + STATE(5193), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206784] = 3, - ACTIONS(11037), 1, - anon_sym_DOLLAR, + [213700] = 5, + ACTIONS(10715), 1, + anon_sym_EQ, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(9631), 1, + sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11035), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [206797] = 5, - ACTIONS(6339), 1, + [213717] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11158), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(4800), 1, sym__block, - STATE(3327), 1, + STATE(4887), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206814] = 5, - ACTIONS(6339), 1, + [213734] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(5091), 1, sym__block, - STATE(3315), 1, + STATE(5238), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206831] = 4, - ACTIONS(11039), 1, - anon_sym_COMMA, - STATE(8668), 1, - aux_sym__enum_entries_repeat1, + [213751] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(11180), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5230), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8773), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [206846] = 5, - ACTIONS(4073), 1, + [213768] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10977), 1, + ACTIONS(11180), 1, anon_sym_EQ, - STATE(1145), 1, - sym_function_body, - STATE(1204), 1, + STATE(5091), 1, sym__block, + STATE(5202), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206863] = 5, - ACTIONS(6308), 1, + [213785] = 5, + ACTIONS(11238), 1, + anon_sym_RBRACE, + ACTIONS(11240), 1, + sym__automatic_semicolon, + STATE(259), 1, + sym__semi, + STATE(8663), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213802] = 5, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10923), 1, - anon_sym_EQ, - STATE(3283), 1, - sym_function_body, - STATE(3353), 1, + ACTIONS(11243), 1, + anon_sym_COLON, + ACTIONS(11245), 1, + sym__automatic_semicolon, + STATE(9855), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206880] = 5, - ACTIONS(4073), 1, + [213819] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10977), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(1082), 1, - sym_function_body, - STATE(1204), 1, + STATE(3882), 1, sym__block, + STATE(4030), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206897] = 5, - ACTIONS(4073), 1, + [213836] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10977), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(1057), 1, - sym_function_body, - STATE(1204), 1, + STATE(4800), 1, sym__block, + STATE(4887), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206914] = 5, - ACTIONS(6308), 1, + [213853] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(3266), 1, - sym_function_body, - STATE(3353), 1, + STATE(5091), 1, sym__block, + STATE(5230), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206931] = 5, - ACTIONS(4073), 1, + [213870] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10977), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(1111), 1, + STATE(4714), 1, sym_function_body, - STATE(1204), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206948] = 5, - ACTIONS(7961), 1, + [213887] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10717), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(4722), 1, + STATE(4727), 1, sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [206965] = 5, - ACTIONS(11041), 1, - anon_sym_RBRACE, - ACTIONS(11043), 1, - sym__automatic_semicolon, - STATE(257), 1, - sym__semi, - STATE(8661), 1, - aux_sym_statements_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [206982] = 4, - ACTIONS(11047), 1, - anon_sym_COMMA, - STATE(8585), 1, - aux_sym__enum_entries_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11045), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [206997] = 5, - ACTIONS(6308), 1, + [213904] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11162), 1, anon_sym_EQ, - STATE(3256), 1, - sym_function_body, - STATE(3353), 1, + STATE(4800), 1, sym__block, + STATE(4810), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207014] = 5, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, + [213921] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - STATE(9194), 1, + ACTIONS(11007), 1, + anon_sym_EQ, + STATE(3882), 1, sym__block, - STATE(9281), 1, + STATE(3959), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207031] = 5, - ACTIONS(6564), 1, + [213938] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10869), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(3804), 1, - sym_function_body, - STATE(3927), 1, + STATE(5091), 1, sym__block, + STATE(5202), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207048] = 5, - ACTIONS(4522), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(11049), 1, - anon_sym_COLON, - STATE(9383), 1, - sym_class_body, + [213955] = 3, + ACTIONS(10709), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207065] = 5, - ACTIONS(6564), 1, + ACTIONS(4239), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym__quest, + [213968] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, - anon_sym_EQ, - STATE(3736), 1, - sym_function_body, - STATE(3927), 1, - sym__block, + STATE(9445), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207082] = 5, - ACTIONS(8161), 1, + ACTIONS(3274), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213983] = 5, + ACTIONS(10715), 1, anon_sym_EQ, - ACTIONS(8163), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(5358), 1, - sym__block, - STATE(5423), 1, + STATE(9573), 1, sym_function_body, + STATE(9998), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207099] = 4, - ACTIONS(11051), 1, - anon_sym_import, - ACTIONS(11054), 1, - sym__import_list_delimiter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8601), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [207114] = 5, - ACTIONS(6564), 1, + [214000] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10779), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(3855), 1, - sym_function_body, - STATE(3927), 1, + STATE(5091), 1, sym__block, + STATE(5238), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207131] = 5, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [214017] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - STATE(5358), 1, + ACTIONS(11007), 1, + anon_sym_EQ, + STATE(3882), 1, sym__block, - STATE(5450), 1, + STATE(3938), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207148] = 5, - ACTIONS(8043), 1, + [214034] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4635), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [214045] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, + ACTIONS(11101), 1, anon_sym_EQ, - STATE(5021), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5193), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207165] = 5, - ACTIONS(8043), 1, + [214062] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(5011), 1, - sym_function_body, - STATE(5099), 1, + STATE(3402), 1, sym__block, + STATE(3505), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207182] = 5, - ACTIONS(8345), 1, + [214079] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(11056), 1, - anon_sym_COLON, - ACTIONS(11058), 1, - sym__automatic_semicolon, - STATE(9922), 1, - sym_class_body, + ACTIONS(11137), 1, + anon_sym_EQ, + STATE(3402), 1, + sym__block, + STATE(3488), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207199] = 5, - ACTIONS(6308), 1, + [214096] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3226), 1, - sym_function_body, - STATE(3353), 1, + STATE(3402), 1, sym__block, + STATE(3481), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207216] = 5, - ACTIONS(6339), 1, + [214113] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(3402), 1, sym__block, - STATE(3395), 1, + STATE(3471), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207233] = 5, - ACTIONS(6308), 1, + [214130] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(3226), 1, - sym_function_body, - STATE(3353), 1, + STATE(1129), 1, sym__block, + STATE(1155), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207250] = 5, - ACTIONS(8043), 1, + [214147] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, + ACTIONS(11121), 1, anon_sym_EQ, - STATE(4987), 1, - sym_function_body, - STATE(5099), 1, + STATE(3082), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207267] = 5, - ACTIONS(6308), 1, + [214164] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, + ACTIONS(11121), 1, anon_sym_EQ, - STATE(3256), 1, - sym_function_body, - STATE(3353), 1, + STATE(3082), 1, sym__block, + STATE(3216), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207284] = 2, + [214181] = 5, + ACTIONS(1642), 1, + anon_sym_RBRACE, + ACTIONS(11247), 1, + sym__automatic_semicolon, + STATE(258), 1, + sym__semi, + STATE(8663), 1, + aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [207295] = 5, - ACTIONS(6564), 1, + [214198] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10869), 1, + ACTIONS(11121), 1, anon_sym_EQ, - STATE(3870), 1, - sym_function_body, - STATE(3927), 1, + STATE(3082), 1, sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207312] = 5, - ACTIONS(6339), 1, + [214215] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(11121), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(3082), 1, sym__block, - STATE(3344), 1, + STATE(3138), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207329] = 5, - ACTIONS(6308), 1, + [214232] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, + ACTIONS(10899), 1, anon_sym_EQ, - STATE(3266), 1, + STATE(1017), 1, sym_function_body, - STATE(3353), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207346] = 5, - ACTIONS(6339), 1, + [214249] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(3282), 1, - sym__block, - STATE(3327), 1, + STATE(1017), 1, sym_function_body, + STATE(1129), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207363] = 5, - ACTIONS(6339), 1, + [214266] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(10899), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(1129), 1, sym__block, - STATE(3315), 1, + STATE(1165), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207380] = 5, - ACTIONS(6308), 1, + [214283] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(8161), 1, + ACTIONS(10899), 1, anon_sym_EQ, - STATE(3283), 1, - sym_function_body, - STATE(3353), 1, + STATE(1129), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [207397] = 5, - ACTIONS(6564), 1, - anon_sym_LBRACE, - ACTIONS(10869), 1, - anon_sym_EQ, - STATE(3855), 1, + STATE(1135), 1, sym_function_body, - STATE(3927), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207414] = 5, - ACTIONS(7961), 1, + [214300] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4728), 1, + STATE(1129), 1, sym__block, + STATE(1165), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207431] = 3, - ACTIONS(3818), 1, + [214317] = 3, + ACTIONS(11251), 1, anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3823), 3, + ACTIONS(11249), 3, sym__string_end, sym__string_content, anon_sym_DOLLAR_LBRACE, - [207444] = 5, - ACTIONS(6564), 1, + [214330] = 4, + ACTIONS(11253), 1, + anon_sym_import, + ACTIONS(11256), 1, + sym__import_list_delimiter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8696), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [214345] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10869), 1, + ACTIONS(11109), 1, anon_sym_EQ, - STATE(3736), 1, - sym_function_body, - STATE(3927), 1, + STATE(1129), 1, sym__block, + STATE(1135), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207461] = 2, + [214362] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4675), 4, + ACTIONS(4752), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [207472] = 4, - ACTIONS(8359), 1, + [214373] = 5, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9120), 1, - sym_enum_class_body, + ACTIONS(11258), 1, + anon_sym_COLON, + ACTIONS(11260), 1, + sym__automatic_semicolon, + STATE(9481), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 2, + [214390] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(9440), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207487] = 2, + [214405] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4691), 4, + ACTIONS(4756), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [207498] = 5, - ACTIONS(8043), 1, + [214416] = 5, + ACTIONS(11262), 1, + anon_sym_RBRACE, + ACTIONS(11264), 1, + sym__automatic_semicolon, + STATE(257), 1, + sym__semi, + STATE(8687), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214433] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10831), 1, + ACTIONS(10899), 1, anon_sym_EQ, - STATE(5052), 1, - sym_function_body, - STATE(5099), 1, + STATE(1129), 1, sym__block, + STATE(1155), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207515] = 4, - ACTIONS(8345), 1, + [214450] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(9119), 1, - sym_class_body, + ACTIONS(11073), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4510), 2, - sym__automatic_semicolon, + [214467] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4886), 4, anon_sym_RBRACE, - [207530] = 5, - ACTIONS(7961), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [214478] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10717), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(1129), 1, sym__block, - STATE(4824), 1, + STATE(1135), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207547] = 5, - ACTIONS(7961), 1, + [214495] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(1129), 1, sym__block, - STATE(4824), 1, + STATE(1165), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207564] = 5, - ACTIONS(7961), 1, + [214512] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4804), 1, + STATE(1017), 1, sym_function_body, + STATE(1129), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207581] = 5, - ACTIONS(7961), 1, + [214529] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(11073), 1, anon_sym_EQ, - STATE(4722), 1, + STATE(3082), 1, + sym__block, + STATE(3216), 1, sym_function_body, - STATE(4728), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214546] = 5, + ACTIONS(4145), 1, + anon_sym_LBRACE, + ACTIONS(10903), 1, + anon_sym_EQ, + STATE(1129), 1, sym__block, + STATE(1155), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207598] = 3, - ACTIONS(11062), 1, - anon_sym_DOLLAR, + [214563] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3138), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11060), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [207611] = 5, - ACTIONS(6308), 1, + [214580] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10909), 1, + ACTIONS(10975), 1, anon_sym_EQ, - STATE(3226), 1, + STATE(4714), 1, sym_function_body, - STATE(3353), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207628] = 4, - ACTIONS(8359), 1, + [214597] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9311), 1, - sym_enum_class_body, + STATE(9418), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4703), 2, + ACTIONS(3282), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207643] = 5, - ACTIONS(6564), 1, + [214612] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10779), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(3870), 1, + STATE(3844), 1, sym_function_body, - STATE(3927), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207660] = 4, - ACTIONS(8345), 1, + [214629] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9033), 1, + STATE(9453), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4564), 2, + ACTIONS(4465), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207675] = 4, - ACTIONS(11064), 1, - anon_sym_LPAREN, - STATE(9046), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7106), 2, - anon_sym_AT, - anon_sym_val, - [207690] = 5, - ACTIONS(6308), 1, + [214644] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10909), 1, + ACTIONS(11073), 1, anon_sym_EQ, - STATE(3256), 1, - sym_function_body, - STATE(3353), 1, + STATE(3082), 1, sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207707] = 5, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, + [214661] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4587), 4, + anon_sym_COLON, anon_sym_LBRACE, - STATE(9091), 1, - sym_function_body, - STATE(9194), 1, + anon_sym_where, + anon_sym_while, + [214672] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(8187), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, + STATE(3138), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207724] = 5, - ACTIONS(10498), 1, + [214689] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11066), 1, - anon_sym_COLON, - ACTIONS(11068), 1, - sym__automatic_semicolon, - STATE(10036), 1, - sym__block, + STATE(9248), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207741] = 5, - ACTIONS(6308), 1, + ACTIONS(4218), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214704] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10909), 1, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(3266), 1, - sym_function_body, - STATE(3353), 1, + STATE(3082), 1, sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207758] = 5, - ACTIONS(6308), 1, + [214721] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10909), 1, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(3283), 1, - sym_function_body, - STATE(3353), 1, + STATE(3082), 1, sym__block, + STATE(3216), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207775] = 5, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + [214738] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9561), 1, - sym_function_body, - STATE(10063), 1, - sym__block, + STATE(9248), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207792] = 5, - ACTIONS(10498), 1, - anon_sym_LBRACE, - ACTIONS(11070), 1, - anon_sym_COLON, - ACTIONS(11072), 1, + ACTIONS(4218), 2, sym__automatic_semicolon, - STATE(9894), 1, + anon_sym_RBRACE, + [214753] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4579), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [214764] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(8187), 1, + anon_sym_EQ, + STATE(3082), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207809] = 5, - ACTIONS(8345), 1, + [214781] = 5, + ACTIONS(4351), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11074), 1, + ACTIONS(11266), 1, anon_sym_COLON, - ACTIONS(11076), 1, - sym__automatic_semicolon, - STATE(9789), 1, + STATE(9664), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207826] = 5, - ACTIONS(7961), 1, + [214798] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10717), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(4708), 1, + STATE(3844), 1, sym_function_body, - STATE(4728), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207843] = 5, - ACTIONS(4073), 1, + [214815] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10879), 1, - anon_sym_EQ, - STATE(1145), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + ACTIONS(11268), 1, + anon_sym_COLON, + ACTIONS(11270), 1, + sym__automatic_semicolon, + STATE(9895), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207860] = 5, - ACTIONS(6564), 1, + [214832] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10779), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(3736), 1, - sym_function_body, - STATE(3927), 1, + STATE(3882), 1, sym__block, + STATE(3938), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207877] = 5, - ACTIONS(4073), 1, + [214849] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10879), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(1082), 1, - sym_function_body, - STATE(1204), 1, + STATE(3882), 1, sym__block, + STATE(3959), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207894] = 5, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(10879), 1, - anon_sym_EQ, - STATE(1057), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + [214866] = 4, + ACTIONS(11274), 1, + anon_sym_COMMA, + STATE(8775), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207911] = 5, - ACTIONS(4073), 1, + ACTIONS(11272), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [214881] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10879), 1, + ACTIONS(11039), 1, anon_sym_EQ, - STATE(1111), 1, - sym_function_body, - STATE(1204), 1, + STATE(3882), 1, sym__block, + STATE(4030), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207928] = 5, - ACTIONS(6339), 1, + [214898] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(10767), 1, - anon_sym_EQ, - STATE(3282), 1, - sym__block, - STATE(3315), 1, - sym_function_body, + STATE(9402), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3290), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214913] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207945] = 5, - ACTIONS(6339), 1, + ACTIONS(4565), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10767), 1, + anon_sym_where, + anon_sym_while, + [214924] = 5, + ACTIONS(8223), 1, + anon_sym_LBRACE, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(5091), 1, sym__block, - STATE(3327), 1, + STATE(5193), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207962] = 5, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(9582), 1, - sym_function_body, - STATE(10063), 1, - sym__block, + [214941] = 4, + ACTIONS(11278), 1, + anon_sym_COMMA, + STATE(8735), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207979] = 5, - ACTIONS(4073), 1, + ACTIONS(11276), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [214956] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(10855), 1, - anon_sym_EQ, - STATE(1145), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + STATE(9159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207996] = 3, - ACTIONS(11078), 1, - anon_sym_DOT, + ACTIONS(4569), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214971] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4848), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [214982] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + STATE(9404), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10893), 3, + ACTIONS(4549), 2, sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [208009] = 5, - ACTIONS(10496), 1, - anon_sym_EQ, - ACTIONS(10498), 1, + anon_sym_RBRACE, + [214997] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(9148), 1, - sym_function_body, - STATE(9194), 1, + ACTIONS(10989), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, + STATE(3471), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208026] = 5, - ACTIONS(4073), 1, + [215014] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10723), 1, + ACTIONS(10989), 1, anon_sym_EQ, - STATE(1111), 1, - sym_function_body, - STATE(1204), 1, + STATE(3402), 1, sym__block, + STATE(3481), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208043] = 5, - ACTIONS(6339), 1, + [215031] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10767), 1, + ACTIONS(10989), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(3402), 1, sym__block, - STATE(3395), 1, + STATE(3488), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208060] = 5, - ACTIONS(4073), 1, + [215048] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10855), 1, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(1082), 1, - sym_function_body, - STATE(1204), 1, + STATE(5091), 1, sym__block, + STATE(5238), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208077] = 5, - ACTIONS(1610), 1, - anon_sym_RBRACE, - ACTIONS(11080), 1, - sym__automatic_semicolon, - STATE(258), 1, - sym__semi, - STATE(8722), 1, - aux_sym_statements_repeat1, + [215065] = 4, + ACTIONS(11281), 1, + anon_sym_LPAREN, + STATE(9132), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208094] = 5, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(10855), 1, + ACTIONS(7089), 2, + anon_sym_AT, + anon_sym_val, + [215080] = 5, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(1057), 1, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(9098), 1, sym_function_body, - STATE(1204), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208111] = 5, - ACTIONS(4073), 1, + [215097] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10855), 1, + ACTIONS(11003), 1, anon_sym_EQ, - STATE(1111), 1, + STATE(5091), 1, + sym__block, + STATE(5230), 1, sym_function_body, - STATE(1204), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215114] = 5, + ACTIONS(6511), 1, + anon_sym_LBRACE, + ACTIONS(10989), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, + STATE(3505), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208128] = 4, - ACTIONS(8359), 1, + [215131] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9207), 1, + STATE(9154), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4483), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208143] = 5, - ACTIONS(10520), 1, - anon_sym_EQ, - ACTIONS(10522), 1, + [215146] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9564), 1, - sym_function_body, - STATE(10063), 1, - sym__block, + STATE(9147), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208160] = 5, - ACTIONS(4530), 1, - anon_sym_while, - ACTIONS(8457), 1, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215161] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(11082), 1, - anon_sym_COLON, - STATE(9407), 1, + STATE(9149), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208177] = 4, - ACTIONS(8345), 1, + ACTIONS(4654), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215176] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9342), 1, + STATE(9119), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3208), 2, + ACTIONS(4646), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208192] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - STATE(8668), 1, - aux_sym__enum_entries_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11084), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [208207] = 2, + [215191] = 4, + ACTIONS(11283), 1, + anon_sym_import, + ACTIONS(11285), 1, + sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4719), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [208218] = 5, - ACTIONS(7961), 1, + STATE(8696), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [215206] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(4722), 1, - sym_function_body, - STATE(4728), 1, + STATE(4800), 1, sym__block, + STATE(4810), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208235] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4593), 4, - anon_sym_COLON, + [215223] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [208246] = 2, + ACTIONS(11003), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__block, + STATE(5202), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [208257] = 5, - ACTIONS(7961), 1, + [215240] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(4728), 1, - sym__block, - STATE(4804), 1, + STATE(4727), 1, sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208274] = 4, - ACTIONS(8345), 1, + [215257] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9186), 1, - sym_class_body, + ACTIONS(10715), 1, + anon_sym_EQ, + STATE(4714), 1, + sym_function_body, + STATE(4800), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208289] = 5, - ACTIONS(7961), 1, + [215274] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(10975), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(4800), 1, sym__block, - STATE(4824), 1, + STATE(4887), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208306] = 5, - ACTIONS(6564), 1, + [215291] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10759), 1, + ACTIONS(10715), 1, anon_sym_EQ, - STATE(3736), 1, - sym_function_body, - STATE(3927), 1, + STATE(4800), 1, sym__block, + STATE(4887), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208323] = 4, - ACTIONS(8359), 1, + [215308] = 5, + ACTIONS(4499), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9305), 1, - sym_enum_class_body, + ACTIONS(11287), 1, + anon_sym_COLON, + STATE(9864), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208338] = 5, - ACTIONS(6564), 1, + [215325] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(10779), 1, + ACTIONS(10975), 1, anon_sym_EQ, - STATE(3804), 1, + STATE(4727), 1, sym_function_body, - STATE(3927), 1, + STATE(4800), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208355] = 4, - ACTIONS(8345), 1, + [215342] = 5, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(9063), 1, - sym_class_body, + ACTIONS(10975), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__block, + STATE(4810), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4492), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208370] = 5, - ACTIONS(7961), 1, + [215359] = 3, + ACTIONS(4004), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4009), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [215372] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10821), 1, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4728), 1, + STATE(5091), 1, sym__block, + STATE(5202), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208387] = 4, - ACTIONS(8345), 1, + [215389] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9205), 1, + STATE(9443), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4723), 2, + ACTIONS(4495), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208402] = 5, - ACTIONS(8043), 1, + [215404] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(4987), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5230), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208419] = 5, - ACTIONS(6564), 1, + [215421] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10759), 1, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(3855), 1, - sym_function_body, - STATE(3927), 1, + STATE(5091), 1, sym__block, + STATE(5238), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208436] = 5, - ACTIONS(6564), 1, + [215438] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10759), 1, - anon_sym_EQ, - STATE(3870), 1, - sym_function_body, - STATE(3927), 1, - sym__block, + STATE(9274), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208453] = 5, - ACTIONS(8043), 1, + ACTIONS(4357), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215453] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, - anon_sym_EQ, - STATE(5011), 1, - sym_function_body, - STATE(5099), 1, - sym__block, + STATE(9453), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208470] = 5, - ACTIONS(8043), 1, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215468] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(5021), 1, - sym_function_body, - STATE(5099), 1, + STATE(3402), 1, sym__block, + STATE(3505), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208487] = 5, - ACTIONS(8043), 1, + [215485] = 5, + ACTIONS(8223), 1, anon_sym_LBRACE, - ACTIONS(10797), 1, + ACTIONS(10689), 1, anon_sym_EQ, - STATE(5052), 1, - sym_function_body, - STATE(5099), 1, + STATE(5091), 1, sym__block, + STATE(5193), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208504] = 5, - ACTIONS(6564), 1, + [215502] = 5, + ACTIONS(8521), 1, anon_sym_LBRACE, - ACTIONS(10759), 1, - anon_sym_EQ, - STATE(3804), 1, - sym_function_body, - STATE(3927), 1, - sym__block, + ACTIONS(11289), 1, + anon_sym_COLON, + ACTIONS(11291), 1, + sym__automatic_semicolon, + STATE(9984), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208521] = 5, - ACTIONS(6339), 1, + [215519] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10763), 1, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(3402), 1, sym__block, - STATE(3395), 1, + STATE(3488), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208538] = 5, - ACTIONS(8043), 1, + [215536] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10831), 1, + ACTIONS(10907), 1, anon_sym_EQ, - STATE(5011), 1, - sym_function_body, - STATE(5099), 1, + STATE(3882), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208555] = 5, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(10789), 1, - anon_sym_EQ, - STATE(5052), 1, + STATE(3959), 1, sym_function_body, - STATE(5099), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208572] = 5, - ACTIONS(8043), 1, + [215553] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - ACTIONS(10831), 1, + ACTIONS(10953), 1, anon_sym_EQ, - STATE(4987), 1, - sym_function_body, - STATE(5099), 1, + STATE(3402), 1, sym__block, + STATE(3481), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208589] = 5, - ACTIONS(8161), 1, - anon_sym_EQ, - ACTIONS(8163), 1, + [215570] = 5, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(5358), 1, + ACTIONS(10953), 1, + anon_sym_EQ, + STATE(3402), 1, sym__block, - STATE(5445), 1, + STATE(3471), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208606] = 4, - ACTIONS(8345), 1, - anon_sym_LBRACE, - STATE(9287), 1, - sym_class_body, + [215587] = 4, + ACTIONS(11293), 1, + anon_sym_COMMA, + STATE(8735), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4731), 2, - sym__automatic_semicolon, + ACTIONS(8966), 2, anon_sym_RBRACE, - [208621] = 5, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(10831), 1, - anon_sym_EQ, - STATE(5021), 1, - sym_function_body, - STATE(5099), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208638] = 4, - ACTIONS(8359), 1, + anon_sym_SEMI, + [215602] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9162), 1, + STATE(9149), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 2, + ACTIONS(4654), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208653] = 5, - ACTIONS(10520), 1, + [215617] = 5, + ACTIONS(10689), 1, anon_sym_EQ, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(9538), 1, - sym_function_body, - STATE(10063), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208670] = 5, - ACTIONS(8043), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10789), 1, - anon_sym_EQ, - STATE(5021), 1, + STATE(9146), 1, sym_function_body, - STATE(5099), 1, + STATE(9175), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208687] = 4, - ACTIONS(8345), 1, + [215634] = 4, + ACTIONS(8511), 1, anon_sym_LBRACE, - STATE(9106), 1, - sym_class_body, + STATE(9144), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4683), 2, + ACTIONS(4469), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208702] = 5, - ACTIONS(8043), 1, + [215649] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10789), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(5011), 1, - sym_function_body, - STATE(5099), 1, + STATE(3082), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208719] = 4, - ACTIONS(11089), 1, - anon_sym_import, - ACTIONS(11091), 1, - sym__import_list_delimiter, + [215666] = 3, + ACTIONS(4179), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8601), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [208734] = 5, - ACTIONS(8043), 1, + ACTIONS(4181), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [215679] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10789), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(4987), 1, - sym_function_body, - STATE(5099), 1, + STATE(3082), 1, sym__block, + STATE(3216), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208751] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5118), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [208762] = 3, - ACTIONS(10510), 1, - anon_sym_AMP, + [215696] = 5, + ACTIONS(6430), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3082), 1, + sym__block, + STATE(3179), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - sym__quest, - [208775] = 4, - ACTIONS(8345), 1, + [215713] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - STATE(9162), 1, + STATE(9147), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 2, + ACTIONS(4361), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208790] = 5, - ACTIONS(10496), 1, + [215728] = 5, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(9167), 1, + STATE(5341), 1, sym_function_body, - STATE(9194), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208807] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4797), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [208818] = 5, - ACTIONS(6564), 1, + [215745] = 5, + ACTIONS(6430), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(3855), 1, - sym_function_body, - STATE(3927), 1, + STATE(3082), 1, sym__block, + STATE(3138), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208835] = 4, - ACTIONS(8359), 1, + [215762] = 5, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(9105), 1, - sym_enum_class_body, + STATE(5398), 1, + sym_function_body, + STATE(5420), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208850] = 5, - ACTIONS(6308), 1, + [215779] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10731), 1, + ACTIONS(10915), 1, anon_sym_EQ, - STATE(3283), 1, - sym_function_body, - STATE(3353), 1, + STATE(1129), 1, sym__block, + STATE(1155), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208867] = 5, - ACTIONS(6308), 1, - anon_sym_LBRACE, - ACTIONS(10731), 1, + [215796] = 5, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(3266), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5414), 1, sym_function_body, - STATE(3353), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208884] = 5, - ACTIONS(6564), 1, + [215813] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, + ACTIONS(10907), 1, anon_sym_EQ, - STATE(3870), 1, + STATE(3844), 1, sym_function_body, - STATE(3927), 1, + STATE(3882), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208901] = 4, - ACTIONS(8359), 1, - anon_sym_LBRACE, - STATE(9165), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4274), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208916] = 5, - ACTIONS(6564), 1, + [215830] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10713), 1, + ACTIONS(10915), 1, anon_sym_EQ, - STATE(3804), 1, + STATE(1017), 1, sym_function_body, - STATE(3927), 1, + STATE(1129), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208933] = 5, - ACTIONS(6339), 1, + [215847] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10763), 1, + ACTIONS(10915), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(1129), 1, sym__block, - STATE(3315), 1, + STATE(1165), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208950] = 5, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(10723), 1, + [215864] = 5, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(1057), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5418), 1, sym_function_body, - STATE(1204), 1, + STATE(5420), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208967] = 5, - ACTIONS(6308), 1, + [215881] = 5, + ACTIONS(6714), 1, anon_sym_LBRACE, - ACTIONS(10731), 1, + ACTIONS(10907), 1, anon_sym_EQ, - STATE(3256), 1, - sym_function_body, - STATE(3353), 1, + STATE(3882), 1, sym__block, + STATE(4030), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208984] = 5, - ACTIONS(6339), 1, + [215898] = 5, + ACTIONS(4145), 1, anon_sym_LBRACE, - ACTIONS(10763), 1, + ACTIONS(10915), 1, anon_sym_EQ, - STATE(3282), 1, + STATE(1129), 1, sym__block, - STATE(3344), 1, + STATE(1135), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209001] = 4, - ACTIONS(8359), 1, + [215915] = 4, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8648), 1, anon_sym_LBRACE, - STATE(9287), 1, + STATE(9515), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4731), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209016] = 4, - ACTIONS(8345), 1, - anon_sym_LBRACE, - STATE(9120), 1, - sym_class_body, + [215929] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11297), 1, + anon_sym_GT, + STATE(8855), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209031] = 4, - ACTIONS(8345), 1, + [215943] = 4, + ACTIONS(11299), 1, anon_sym_LBRACE, - STATE(9071), 1, - sym_class_body, + ACTIONS(11301), 1, + anon_sym_LPAREN, + STATE(9848), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209046] = 5, - ACTIONS(11093), 1, - anon_sym_RBRACE, - ACTIONS(11095), 1, - sym__automatic_semicolon, - STATE(259), 1, - sym__semi, - STATE(8722), 1, - aux_sym_statements_repeat1, + [215957] = 3, + STATE(3166), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209063] = 5, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(10723), 1, - anon_sym_EQ, - STATE(1082), 1, - sym_function_body, - STATE(1204), 1, - sym__block, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [215969] = 3, + STATE(5072), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209080] = 2, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [215981] = 3, + STATE(5251), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4582), 4, - anon_sym_LBRACE, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [215993] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [209091] = 2, + ACTIONS(11305), 1, + anon_sym_GT, + STATE(8844), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4667), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [209102] = 5, - ACTIONS(6308), 1, - anon_sym_LBRACE, + [216007] = 3, + STATE(5189), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216019] = 3, + STATE(5187), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216031] = 4, + ACTIONS(7089), 1, + sym__automatic_semicolon, ACTIONS(10731), 1, - anon_sym_EQ, - STATE(3226), 1, - sym_function_body, - STATE(3353), 1, - sym__block, + anon_sym_LPAREN, + STATE(8479), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216045] = 4, + ACTIONS(11307), 1, + anon_sym_COMMA, + ACTIONS(11309), 1, + anon_sym_RPAREN, + STATE(8850), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216059] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11313), 1, + anon_sym_RPAREN, + STATE(8839), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209119] = 5, - ACTIONS(4073), 1, + [216073] = 4, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10723), 1, - anon_sym_EQ, - STATE(1145), 1, - sym_function_body, - STATE(1204), 1, + ACTIONS(11315), 1, + sym__automatic_semicolon, + STATE(9834), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209136] = 5, - ACTIONS(6339), 1, + [216087] = 4, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(10763), 1, - anon_sym_EQ, - STATE(3282), 1, - sym__block, - STATE(3327), 1, - sym_function_body, + ACTIONS(9931), 1, + anon_sym_COLON, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209153] = 2, + [216101] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11317), 1, + anon_sym_EQ, + STATE(9767), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4655), 4, - anon_sym_COLON, + [216115] = 4, + ACTIONS(8521), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [209164] = 4, - ACTIONS(5655), 1, - anon_sym_RPAREN, - ACTIONS(11098), 1, - anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11319), 1, + sym__automatic_semicolon, + STATE(9873), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209178] = 4, - ACTIONS(11100), 1, - anon_sym_COMMA, - ACTIONS(11102), 1, - anon_sym_RPAREN, - STATE(8745), 1, - aux_sym_function_value_parameters_repeat1, + [216129] = 3, + STATE(2850), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209192] = 4, - ACTIONS(11104), 1, + ACTIONS(11321), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216141] = 4, + ACTIONS(11323), 1, anon_sym_COMMA, - ACTIONS(11106), 1, + ACTIONS(11326), 1, anon_sym_RPAREN, - STATE(8740), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209206] = 4, - ACTIONS(7445), 1, + [216155] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11108), 1, + ACTIONS(11328), 1, anon_sym_RBRACK, - STATE(8879), 1, + STATE(8926), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209220] = 4, - ACTIONS(11110), 1, - anon_sym_COMMA, - ACTIONS(11112), 1, - anon_sym_GT, - STATE(8742), 1, - aux_sym_type_parameters_repeat1, + [216169] = 3, + STATE(4878), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216181] = 3, + STATE(4876), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209234] = 3, - STATE(1163), 1, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216193] = 3, + STATE(4875), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11114), 2, + ACTIONS(293), 2, sym__alpha_identifier, sym__backtick_identifier, - [209246] = 3, - ACTIONS(11116), 1, + [216205] = 4, + ACTIONS(5788), 1, + anon_sym_LBRACE, + ACTIONS(9939), 1, + anon_sym_COLON, + STATE(5103), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216219] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11330), 1, anon_sym_EQ, + STATE(9866), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216233] = 3, + STATE(4877), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216245] = 4, + ACTIONS(11332), 1, + anon_sym_COMMA, + ACTIONS(11334), 1, + anon_sym_DASH_GT, + STATE(8858), 1, + aux_sym_lambda_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216259] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11336), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11118), 2, + [216273] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, + ACTIONS(11338), 1, anon_sym_RPAREN, - [209258] = 4, - ACTIONS(11120), 1, + STATE(8837), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216287] = 3, + STATE(9070), 1, + sym_constructor_delegation_call, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11340), 2, + anon_sym_this, + anon_sym_super, + [216299] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10815), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [216309] = 4, + ACTIONS(4305), 1, + anon_sym_in, + ACTIONS(11342), 1, + sym__quest, + STATE(8922), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216323] = 4, + ACTIONS(11344), 1, anon_sym_COMMA, - ACTIONS(11122), 1, + ACTIONS(11346), 1, anon_sym_RPAREN, - STATE(8748), 1, + STATE(8854), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209272] = 4, - ACTIONS(11124), 1, + [216337] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11126), 1, + ACTIONS(11348), 1, anon_sym_GT, - STATE(8749), 1, + STATE(8856), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209286] = 4, - ACTIONS(11128), 1, + [216351] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11350), 1, + anon_sym_GT, + STATE(8841), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216365] = 4, + ACTIONS(11352), 1, anon_sym_COMMA, - ACTIONS(11130), 1, + ACTIONS(11354), 1, anon_sym_RPAREN, - STATE(8750), 1, + STATE(8846), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216379] = 4, + ACTIONS(11356), 1, + anon_sym_COMMA, + ACTIONS(11358), 1, + anon_sym_RPAREN, + STATE(8852), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216393] = 3, + ACTIONS(11360), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4894), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216405] = 3, + ACTIONS(11362), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4876), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216417] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11364), 1, + anon_sym_EQ, + STATE(9754), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216431] = 4, + ACTIONS(11366), 1, + anon_sym_COMMA, + ACTIONS(11368), 1, + anon_sym_RPAREN, + STATE(8879), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209300] = 4, - ACTIONS(11104), 1, + [216445] = 4, + ACTIONS(11370), 1, anon_sym_COMMA, - ACTIONS(11132), 1, + ACTIONS(11372), 1, anon_sym_RPAREN, - STATE(8761), 1, + STATE(8870), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216459] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11374), 1, + anon_sym_EQ, + STATE(9808), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216473] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11376), 1, + anon_sym_RPAREN, + STATE(8985), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209314] = 4, - ACTIONS(11134), 1, + [216487] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11136), 1, + ACTIONS(11380), 1, anon_sym_RPAREN, - STATE(8758), 1, + STATE(8972), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209328] = 4, - ACTIONS(11110), 1, + [216501] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11382), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216515] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11384), 1, + anon_sym_EQ, + STATE(9791), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216529] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11138), 1, + ACTIONS(11386), 1, anon_sym_GT, - STATE(8938), 1, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216543] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11388), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216557] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216571] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11392), 1, + anon_sym_GT, + STATE(8960), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209342] = 2, + [216585] = 3, + ACTIONS(11394), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11084), 3, - anon_sym_RBRACE, + ACTIONS(11396), 2, anon_sym_COMMA, - anon_sym_SEMI, - [209352] = 2, + anon_sym_RPAREN, + [216597] = 4, + ACTIONS(9360), 1, + anon_sym_RPAREN, + ACTIONS(11398), 1, + anon_sym_COMMA, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216611] = 4, + ACTIONS(11400), 1, + anon_sym_COMMA, + ACTIONS(11403), 1, + anon_sym_RPAREN, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216625] = 4, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, + anon_sym_COLON, + STATE(3071), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216639] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11405), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216653] = 4, + ACTIONS(9374), 1, + anon_sym_RPAREN, + ACTIONS(11407), 1, + anon_sym_COMMA, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216667] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11409), 1, + anon_sym_EQ, + STATE(9760), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10843), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [209362] = 4, - ACTIONS(9180), 1, + [216681] = 4, + ACTIONS(5528), 1, anon_sym_RPAREN, - ACTIONS(11140), 1, + ACTIONS(11411), 1, anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209376] = 4, - ACTIONS(7445), 1, + [216695] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11142), 1, + ACTIONS(11413), 1, anon_sym_RBRACK, - STATE(8879), 1, + STATE(8926), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209390] = 4, - ACTIONS(3122), 1, - anon_sym_LBRACE, - ACTIONS(9748), 1, - anon_sym_COLON, - STATE(3416), 1, - sym_class_body, + [216709] = 4, + ACTIONS(5548), 1, + anon_sym_RPAREN, + ACTIONS(11415), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209404] = 4, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(11144), 1, + [216723] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11417), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209418] = 4, - ACTIONS(11124), 1, + [216737] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11146), 1, + ACTIONS(11419), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209432] = 4, - ACTIONS(8707), 1, + [216751] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11421), 1, anon_sym_RPAREN, - ACTIONS(11148), 1, + STATE(8953), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216765] = 4, + ACTIONS(11332), 1, anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11423), 1, + anon_sym_DASH_GT, + STATE(8959), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209446] = 4, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(11150), 1, - sym__automatic_semicolon, - STATE(9643), 1, - sym_class_body, + [216779] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11425), 1, + anon_sym_EQ, + STATE(9750), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209460] = 4, - ACTIONS(10498), 1, - anon_sym_LBRACE, - ACTIONS(11152), 1, - sym__automatic_semicolon, - STATE(9641), 1, - sym__block, + [216793] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11427), 1, + anon_sym_GT, + STATE(8976), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209474] = 3, - STATE(3412), 1, + [216807] = 3, + STATE(3123), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11154), 2, + ACTIONS(637), 2, sym__alpha_identifier, sym__backtick_identifier, - [209486] = 4, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(11156), 1, - sym__automatic_semicolon, - STATE(9423), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [209500] = 3, - STATE(3413), 1, + [216819] = 3, + STATE(3120), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11158), 2, + ACTIONS(637), 2, sym__alpha_identifier, sym__backtick_identifier, - [209512] = 4, - ACTIONS(5218), 1, - anon_sym_LBRACE, - ACTIONS(9744), 1, + [216831] = 3, + ACTIONS(11429), 1, anon_sym_COLON, - STATE(3513), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209526] = 3, - STATE(1164), 1, + ACTIONS(11431), 2, + anon_sym_COMMA, + anon_sym_GT, + [216843] = 3, + STATE(3062), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11160), 2, + ACTIONS(637), 2, sym__alpha_identifier, sym__backtick_identifier, - [209538] = 4, - ACTIONS(11134), 1, - anon_sym_COMMA, - ACTIONS(11162), 1, - anon_sym_RPAREN, - STATE(8794), 1, - aux_sym_function_type_parameters_repeat1, + [216855] = 3, + STATE(3063), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209552] = 4, - ACTIONS(3174), 1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216867] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11433), 1, anon_sym_LBRACE, - ACTIONS(9752), 1, - anon_sym_COLON, - STATE(1173), 1, - sym_class_body, + STATE(9744), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209566] = 4, - ACTIONS(11164), 1, - anon_sym_COMMA, - ACTIONS(11166), 1, - anon_sym_RPAREN, - STATE(8784), 1, - aux_sym_function_value_parameters_repeat1, + [216881] = 3, + ACTIONS(11435), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209580] = 4, - ACTIONS(11168), 1, - anon_sym_COMMA, - ACTIONS(11171), 1, - anon_sym_RPAREN, - STATE(8761), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(4287), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216893] = 3, + ACTIONS(11437), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209594] = 2, + ACTIONS(4265), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216905] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11439), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4687), 3, + [216919] = 4, + ACTIONS(8849), 1, + anon_sym_RPAREN, + ACTIONS(11441), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [209604] = 3, - STATE(882), 1, - sym__lexical_identifier, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11173), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [209616] = 3, - STATE(3511), 1, - sym__lexical_identifier, + [216933] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11443), 1, + anon_sym_EQ, + STATE(9721), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11175), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [209628] = 4, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(11177), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + [216947] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11445), 1, + anon_sym_EQ, + STATE(9698), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209642] = 4, - ACTIONS(8754), 1, - anon_sym_RPAREN, - ACTIONS(11179), 1, - anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + [216961] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11447), 1, + anon_sym_LBRACE, + STATE(9693), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209656] = 4, - ACTIONS(11104), 1, - anon_sym_COMMA, - ACTIONS(11181), 1, - anon_sym_RPAREN, - STATE(8790), 1, - aux_sym_multi_variable_declaration_repeat1, + [216975] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11449), 1, + anon_sym_EQ, + STATE(9682), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209670] = 4, - ACTIONS(11110), 1, - anon_sym_COMMA, - ACTIONS(11183), 1, - anon_sym_GT, - STATE(8783), 1, - aux_sym_type_parameters_repeat1, + [216989] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11451), 1, + anon_sym_EQ, + STATE(9674), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209684] = 3, - STATE(8752), 1, - sym_constructor_delegation_call, + [217003] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, + anon_sym_LBRACE, + STATE(9671), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11185), 2, - anon_sym_this, - anon_sym_super, - [209696] = 4, - ACTIONS(8730), 1, - anon_sym_RPAREN, - ACTIONS(11187), 1, - anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + [217017] = 4, + ACTIONS(4569), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9658), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209710] = 4, - ACTIONS(11189), 1, - anon_sym_COMMA, - ACTIONS(11191), 1, - anon_sym_RPAREN, - STATE(8787), 1, - aux_sym_value_arguments_repeat1, + [217031] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11455), 1, + anon_sym_EQ, + STATE(9651), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209724] = 4, - ACTIONS(11124), 1, + [217045] = 4, + ACTIONS(8838), 1, + anon_sym_RPAREN, + ACTIONS(11457), 1, anon_sym_COMMA, - ACTIONS(11193), 1, - anon_sym_GT, - STATE(8788), 1, - aux_sym_type_arguments_repeat1, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209738] = 2, + [217059] = 4, + ACTIONS(4483), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9653), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11195), 3, - anon_sym_RBRACE, + [217073] = 4, + ACTIONS(11459), 1, anon_sym_COMMA, - anon_sym_SEMI, - [209748] = 4, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(11197), 1, - sym__automatic_semicolon, - STATE(9792), 1, - sym_class_body, + ACTIONS(11461), 1, + anon_sym_RPAREN, + STATE(9021), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209762] = 4, - ACTIONS(11124), 1, + [217087] = 4, + ACTIONS(11463), 1, anon_sym_COMMA, - ACTIONS(11199), 1, + ACTIONS(11466), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209776] = 4, - ACTIONS(11201), 1, - anon_sym_COMMA, - ACTIONS(11203), 1, - anon_sym_RPAREN, - STATE(8770), 1, - aux_sym__class_parameters_repeat1, + [217101] = 3, + ACTIONS(11468), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209790] = 4, - ACTIONS(10498), 1, + ACTIONS(11470), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [217113] = 4, + ACTIONS(4654), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, - sym__automatic_semicolon, - STATE(9794), 1, - sym__block, + STATE(9633), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209804] = 3, - ACTIONS(11207), 1, + [217127] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11472), 1, anon_sym_EQ, + STATE(9642), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7668), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209816] = 4, - ACTIONS(5664), 1, - anon_sym_RPAREN, - ACTIONS(11209), 1, - anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + [217141] = 3, + STATE(1145), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209830] = 4, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(11211), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217153] = 4, + ACTIONS(4654), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9633), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209844] = 4, - ACTIONS(11134), 1, - anon_sym_COMMA, - ACTIONS(11213), 1, - anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + [217167] = 3, + STATE(1072), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209858] = 4, - ACTIONS(8345), 1, - anon_sym_LBRACE, - ACTIONS(11215), 1, - sym__automatic_semicolon, - STATE(9492), 1, - sym_class_body, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217179] = 3, + STATE(1071), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209872] = 4, - ACTIONS(11110), 1, - anon_sym_COMMA, - ACTIONS(11217), 1, - anon_sym_GT, - STATE(8938), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217191] = 3, + STATE(3904), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209886] = 4, - ACTIONS(9178), 1, - anon_sym_RPAREN, - ACTIONS(11219), 1, - anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217203] = 3, + STATE(3259), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209900] = 2, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217215] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11474), 1, + anon_sym_LBRACE, + STATE(9635), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11221), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - [209910] = 4, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(11223), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + [217229] = 4, + ACTIONS(4469), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9627), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209924] = 4, - ACTIONS(5660), 1, - anon_sym_RPAREN, - ACTIONS(11225), 1, + [217243] = 4, + ACTIONS(11476), 1, anon_sym_COMMA, - STATE(8863), 1, + ACTIONS(11479), 1, + anon_sym_RPAREN, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209938] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11227), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + [217257] = 4, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9617), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209952] = 4, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(11229), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + [217271] = 3, + STATE(1070), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209966] = 4, - ACTIONS(11104), 1, - anon_sym_COMMA, - ACTIONS(11231), 1, - anon_sym_RPAREN, - STATE(8761), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217283] = 4, + ACTIONS(4361), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9617), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209980] = 2, + [217297] = 3, + STATE(1069), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4396), 3, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217309] = 4, + ACTIONS(4646), 1, anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [209990] = 4, - ACTIONS(11104), 1, - anon_sym_COMMA, - ACTIONS(11233), 1, - anon_sym_RPAREN, - STATE(8761), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9614), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210004] = 4, - ACTIONS(11235), 1, + [217323] = 4, + ACTIONS(11481), 1, anon_sym_COMMA, - ACTIONS(11237), 1, + ACTIONS(11483), 1, anon_sym_DASH_GT, - STATE(8871), 1, + STATE(9030), 1, aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210018] = 4, - ACTIONS(11239), 1, - anon_sym_COMMA, - ACTIONS(11242), 1, - anon_sym_RPAREN, - STATE(8794), 1, - aux_sym_function_type_parameters_repeat1, + [217337] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210032] = 4, - ACTIONS(11104), 1, + ACTIONS(4453), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [217347] = 4, + ACTIONS(11485), 1, anon_sym_COMMA, - ACTIONS(11244), 1, - anon_sym_RPAREN, - STATE(8804), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11488), 1, + anon_sym_DASH_GT, + STATE(8902), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210046] = 4, - ACTIONS(8748), 1, - anon_sym_RPAREN, - ACTIONS(11246), 1, - anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + [217361] = 4, + ACTIONS(4323), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9611), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210060] = 4, - ACTIONS(11110), 1, - anon_sym_COMMA, - ACTIONS(11248), 1, - anon_sym_GT, - STATE(8806), 1, - aux_sym_type_parameters_repeat1, + [217375] = 4, + ACTIONS(4465), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9515), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210074] = 4, - ACTIONS(11250), 1, + [217389] = 4, + ACTIONS(11490), 1, anon_sym_COMMA, - ACTIONS(11252), 1, + ACTIONS(11492), 1, anon_sym_RPAREN, - STATE(8808), 1, + STATE(9042), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210088] = 4, - ACTIONS(11254), 1, + [217403] = 4, + ACTIONS(11494), 1, anon_sym_COMMA, - ACTIONS(11256), 1, + ACTIONS(11496), 1, anon_sym_RPAREN, - STATE(8810), 1, + STATE(9036), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210102] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11258), 1, - anon_sym_GT, - STATE(8811), 1, - aux_sym_type_arguments_repeat1, + [217417] = 4, + ACTIONS(3210), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_COLON, + STATE(1083), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210116] = 4, - ACTIONS(11124), 1, + [217431] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11260), 1, + ACTIONS(11498), 1, anon_sym_GT, - STATE(8857), 1, + STATE(9041), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210130] = 4, - ACTIONS(11262), 1, - anon_sym_COMMA, - ACTIONS(11264), 1, - anon_sym_RPAREN, - STATE(8812), 1, - aux_sym__class_parameters_repeat1, + [217445] = 3, + STATE(1022), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210144] = 4, - ACTIONS(5621), 1, - anon_sym_RPAREN, - ACTIONS(11266), 1, - anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(469), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217457] = 3, + STATE(5165), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210158] = 4, - ACTIONS(11104), 1, - anon_sym_COMMA, - ACTIONS(11268), 1, - anon_sym_RPAREN, - STATE(8761), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217469] = 3, + STATE(3996), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210172] = 4, - ACTIONS(11134), 1, - anon_sym_COMMA, - ACTIONS(11270), 1, - anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217481] = 3, + STATE(3997), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210186] = 4, - ACTIONS(11110), 1, - anon_sym_COMMA, - ACTIONS(11272), 1, - anon_sym_GT, - STATE(8938), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217493] = 3, + STATE(4032), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210200] = 2, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217505] = 3, + STATE(4025), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10620), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [210210] = 4, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217517] = 3, + ACTIONS(11500), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4239), 2, + sym__quest, + anon_sym_in, + [217529] = 4, + ACTIONS(5836), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_COLON, + STATE(3969), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217543] = 4, ACTIONS(9186), 1, - anon_sym_RPAREN, - ACTIONS(11274), 1, - anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + anon_sym_LT, + ACTIONS(11502), 1, + anon_sym_EQ, + STATE(9516), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210224] = 4, - ACTIONS(11276), 1, - anon_sym_COMMA, - ACTIONS(11278), 1, - anon_sym_RPAREN, - STATE(8813), 1, - aux_sym_function_value_parameters_repeat1, + [217557] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11504), 1, + anon_sym_EQ, + STATE(9553), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210238] = 4, - ACTIONS(5696), 1, - anon_sym_RPAREN, - ACTIONS(11280), 1, - anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + [217571] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11506), 1, + anon_sym_EQ, + STATE(9779), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210252] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11282), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + [217585] = 4, + ACTIONS(4495), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9588), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210266] = 4, - ACTIONS(8719), 1, - anon_sym_RPAREN, - ACTIONS(11284), 1, - anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + [217599] = 3, + ACTIONS(11508), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210280] = 4, - ACTIONS(9182), 1, - anon_sym_RPAREN, - ACTIONS(11286), 1, - anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(4239), 2, + sym__quest, + anon_sym_in, + [217611] = 4, + ACTIONS(4249), 1, + anon_sym_in, + ACTIONS(11510), 1, + sym__quest, + STATE(9019), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210294] = 4, - ACTIONS(11110), 1, + [217625] = 4, + ACTIONS(11512), 1, anon_sym_COMMA, - ACTIONS(11288), 1, - anon_sym_GT, - STATE(8938), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11514), 1, + anon_sym_RPAREN, + STATE(8982), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210308] = 4, - ACTIONS(11134), 1, + [217639] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11290), 1, - anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11516), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210322] = 4, - ACTIONS(3208), 1, + [217653] = 4, + ACTIONS(4549), 1, anon_sym_while, - ACTIONS(8457), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9392), 1, + STATE(9586), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210336] = 4, - ACTIONS(11292), 1, - anon_sym_COMMA, - ACTIONS(11294), 1, - anon_sym_RPAREN, - STATE(8796), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210350] = 4, - ACTIONS(11296), 1, + [217667] = 4, + ACTIONS(7673), 1, + anon_sym_RBRACK, + ACTIONS(11518), 1, anon_sym_COMMA, - ACTIONS(11298), 1, - anon_sym_RPAREN, - STATE(8830), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210364] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11300), 1, - anon_sym_EQ, - STATE(9458), 1, - sym_type_parameters, + [217681] = 4, + ACTIONS(11301), 1, + anon_sym_LPAREN, + ACTIONS(11521), 1, + anon_sym_LBRACE, + STATE(9551), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210378] = 3, - ACTIONS(11302), 1, + [217695] = 3, + ACTIONS(11523), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11304), 2, + ACTIONS(11525), 2, anon_sym_COMMA, anon_sym_RPAREN, - [210390] = 4, - ACTIONS(9192), 1, - anon_sym_RPAREN, - ACTIONS(11306), 1, + [217707] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11527), 1, + anon_sym_RPAREN, + STATE(8987), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210404] = 3, - ACTIONS(11308), 1, - anon_sym_EQ, + [217721] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11529), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11310), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [210416] = 4, - ACTIONS(11124), 1, + [217735] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11312), 1, + ACTIONS(11531), 1, anon_sym_GT, - STATE(8801), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210430] = 4, - ACTIONS(11314), 1, - anon_sym_COMMA, - ACTIONS(11317), 1, - anon_sym_RPAREN, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + [217749] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210444] = 4, - ACTIONS(11319), 1, + ACTIONS(11533), 3, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(11321), 1, anon_sym_RPAREN, - STATE(8803), 1, - aux_sym_value_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210458] = 4, - ACTIONS(11323), 1, + [217759] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11325), 1, - anon_sym_RPAREN, - STATE(8831), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11535), 1, + anon_sym_GT, + STATE(8931), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210472] = 4, - ACTIONS(11124), 1, + [217773] = 4, + ACTIONS(11537), 1, anon_sym_COMMA, - ACTIONS(11327), 1, - anon_sym_GT, - STATE(8832), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11540), 1, + anon_sym_RPAREN, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210486] = 4, - ACTIONS(11329), 1, + [217787] = 4, + ACTIONS(11542), 1, anon_sym_COMMA, - ACTIONS(11331), 1, + ACTIONS(11544), 1, anon_sym_RPAREN, - STATE(8833), 1, + STATE(9023), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210500] = 4, - ACTIONS(11134), 1, + [217801] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11333), 1, - anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11546), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210514] = 4, - ACTIONS(9196), 1, + [217815] = 4, + ACTIONS(8855), 1, anon_sym_RPAREN, - ACTIONS(11335), 1, + ACTIONS(11548), 1, anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210528] = 4, - ACTIONS(5704), 1, + [217829] = 4, + ACTIONS(5624), 1, anon_sym_RPAREN, - ACTIONS(11337), 1, + ACTIONS(11550), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210542] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11339), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + [217843] = 4, + ACTIONS(3290), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9585), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210556] = 4, - ACTIONS(8744), 1, - anon_sym_RPAREN, - ACTIONS(11341), 1, + [217857] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11552), 1, + anon_sym_GT, + STATE(8936), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210570] = 4, - ACTIONS(11104), 1, - anon_sym_COMMA, - ACTIONS(11343), 1, - anon_sym_RPAREN, - STATE(8761), 1, - aux_sym_multi_variable_declaration_repeat1, + [217871] = 4, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210584] = 4, - ACTIONS(11110), 1, + [217885] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11345), 1, + ACTIONS(11554), 1, anon_sym_GT, - STATE(8814), 1, + STATE(8989), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210598] = 4, - ACTIONS(4268), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9410), 1, - sym_class_body, + [217899] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11556), 1, + anon_sym_EQ, + STATE(9528), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210612] = 4, - ACTIONS(3198), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9413), 1, - sym_enum_class_body, + [217913] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11558), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210626] = 3, - ACTIONS(11347), 1, - anon_sym_COLON, + [217927] = 4, + ACTIONS(5630), 1, + anon_sym_RPAREN, + ACTIONS(11560), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11349), 2, - anon_sym_COMMA, - anon_sym_GT, - [210638] = 4, - ACTIONS(11110), 1, + [217941] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11351), 1, + ACTIONS(11562), 1, anon_sym_GT, - STATE(8938), 1, - aux_sym_type_parameters_repeat1, + STATE(8944), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210652] = 4, - ACTIONS(8728), 1, - anon_sym_RPAREN, - ACTIONS(11353), 1, - anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + [217955] = 3, + STATE(8807), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210666] = 4, - ACTIONS(11355), 1, + ACTIONS(11340), 2, + anon_sym_this, + anon_sym_super, + [217967] = 4, + ACTIONS(11564), 1, anon_sym_COMMA, - ACTIONS(11357), 1, + ACTIONS(11566), 1, anon_sym_RPAREN, - STATE(8848), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8945), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210680] = 4, - ACTIONS(11104), 1, + [217981] = 4, + ACTIONS(11568), 1, anon_sym_COMMA, - ACTIONS(11359), 1, + ACTIONS(11570), 1, anon_sym_RPAREN, - STATE(8792), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8993), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210694] = 4, - ACTIONS(11361), 1, - anon_sym_COMMA, - ACTIONS(11363), 1, - anon_sym_RPAREN, - STATE(8850), 1, - aux_sym_value_arguments_repeat1, + [217995] = 3, + STATE(4823), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210708] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11365), 1, - anon_sym_GT, - STATE(8851), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218007] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210722] = 4, - ACTIONS(4564), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9422), 1, - sym_class_body, + ACTIONS(4734), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_in, + [218017] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11572), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210736] = 4, - ACTIONS(11367), 1, + [218031] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11369), 1, + ACTIONS(11574), 1, anon_sym_RPAREN, - STATE(8852), 1, - aux_sym__class_parameters_repeat1, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210750] = 4, - ACTIONS(11134), 1, + [218045] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11371), 1, - anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11576), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210764] = 4, - ACTIONS(9222), 1, + [218059] = 4, + ACTIONS(5534), 1, anon_sym_RPAREN, - ACTIONS(11373), 1, + ACTIONS(11578), 1, anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210778] = 4, - ACTIONS(7445), 1, + [218073] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11375), 1, + ACTIONS(11580), 1, anon_sym_RBRACK, - STATE(8879), 1, + STATE(8926), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210792] = 4, - ACTIONS(5694), 1, + [218087] = 4, + ACTIONS(5604), 1, anon_sym_RPAREN, - ACTIONS(11377), 1, + ACTIONS(11582), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210806] = 4, - ACTIONS(11124), 1, + [218101] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11379), 1, + ACTIONS(11584), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8952), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210820] = 4, - ACTIONS(8664), 1, - anon_sym_RPAREN, - ACTIONS(11381), 1, + [218115] = 4, + ACTIONS(11586), 1, anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210834] = 4, - ACTIONS(3198), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9413), 1, - sym_class_body, + ACTIONS(11589), 1, + anon_sym_DASH_GT, + STATE(8959), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210848] = 4, - ACTIONS(4492), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9485), 1, - sym_class_body, + [218129] = 4, + ACTIONS(11591), 1, + anon_sym_COMMA, + ACTIONS(11594), 1, + anon_sym_GT, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210862] = 4, - ACTIONS(11134), 1, + [218143] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11383), 1, + ACTIONS(11596), 1, anon_sym_RPAREN, - STATE(8758), 1, + STATE(8972), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210876] = 4, - ACTIONS(4250), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9509), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210890] = 4, - ACTIONS(11385), 1, + [218157] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11388), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11598), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210904] = 4, - ACTIONS(11134), 1, + [218171] = 4, + ACTIONS(11600), 1, anon_sym_COMMA, - ACTIONS(11390), 1, + ACTIONS(11602), 1, anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8957), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210918] = 4, - ACTIONS(11392), 1, + [218185] = 4, + ACTIONS(9356), 1, + anon_sym_RPAREN, + ACTIONS(11604), 1, anon_sym_COMMA, - ACTIONS(11395), 1, - anon_sym_DASH_GT, - STATE(8859), 1, - aux_sym_lambda_parameters_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210932] = 4, - ACTIONS(11124), 1, + [218199] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11397), 1, + ACTIONS(11606), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210946] = 4, - ACTIONS(5589), 1, + [218213] = 4, + ACTIONS(5590), 1, anon_sym_RPAREN, - ACTIONS(11399), 1, + ACTIONS(11608), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210960] = 4, - ACTIONS(5410), 1, - anon_sym_LBRACE, - ACTIONS(9737), 1, - anon_sym_COLON, - STATE(3936), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210974] = 4, - ACTIONS(11401), 1, + [218227] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11404), 1, + ACTIONS(11610), 1, anon_sym_RPAREN, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210988] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4715), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [210998] = 4, - ACTIONS(7445), 1, - anon_sym_COMMA, - ACTIONS(11406), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + STATE(9020), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211012] = 4, - ACTIONS(11408), 1, + [218241] = 4, + ACTIONS(11612), 1, anon_sym_COMMA, - ACTIONS(11410), 1, + ACTIONS(11614), 1, anon_sym_RPAREN, - STATE(8869), 1, + STATE(8996), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211026] = 4, - ACTIONS(11124), 1, + [218255] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11412), 1, + ACTIONS(11616), 1, anon_sym_GT, - STATE(8870), 1, + STATE(8997), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211040] = 4, - ACTIONS(11134), 1, + [218269] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11414), 1, - anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211054] = 4, - ACTIONS(5649), 1, - anon_sym_RPAREN, - ACTIONS(11416), 1, - anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11618), 1, + anon_sym_GT, + STATE(9040), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211068] = 4, - ACTIONS(11124), 1, + [218283] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11418), 1, + ACTIONS(11620), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8965), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211082] = 4, - ACTIONS(11420), 1, - anon_sym_COMMA, - ACTIONS(11423), 1, - anon_sym_DASH_GT, - STATE(8871), 1, - aux_sym_when_entry_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211096] = 4, - ACTIONS(11425), 1, + [218297] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11427), 1, - anon_sym_RPAREN, - STATE(8766), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211110] = 4, - ACTIONS(9206), 1, + ACTIONS(11622), 1, anon_sym_RPAREN, - ACTIONS(11429), 1, - anon_sym_COMMA, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211124] = 4, - ACTIONS(4250), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9509), 1, - sym_class_body, + [218311] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11624), 1, + anon_sym_EQ, + STATE(9534), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211138] = 4, - ACTIONS(11431), 1, + [218325] = 4, + ACTIONS(11626), 1, anon_sym_COMMA, - ACTIONS(11433), 1, + ACTIONS(11628), 1, anon_sym_RPAREN, - STATE(8883), 1, + STATE(8966), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211152] = 4, - ACTIONS(11110), 1, + [218339] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11435), 1, + ACTIONS(11630), 1, anon_sym_GT, - STATE(8938), 1, + STATE(8960), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211166] = 4, - ACTIONS(11124), 1, + [218353] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11437), 1, + ACTIONS(11632), 1, anon_sym_GT, - STATE(8890), 1, - aux_sym_type_arguments_repeat1, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211180] = 4, - ACTIONS(3216), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9551), 1, - sym_enum_class_body, + [218367] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11634), 1, + anon_sym_GT, + STATE(8954), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211194] = 4, - ACTIONS(7670), 1, - anon_sym_RBRACK, - ACTIONS(11439), 1, - anon_sym_COMMA, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + [218381] = 3, + ACTIONS(11636), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211208] = 4, - ACTIONS(11134), 1, + ACTIONS(11638), 2, + anon_sym_COMMA, + anon_sym_GT, + [218393] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11442), 1, + ACTIONS(11640), 1, anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211222] = 4, - ACTIONS(4683), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9510), 1, - sym_class_body, + [218407] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11642), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211236] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11444), 1, - anon_sym_EQ, - STATE(9400), 1, - sym_type_parameters, + [218421] = 4, + ACTIONS(11644), 1, + anon_sym_COMMA, + ACTIONS(11646), 1, + anon_sym_RPAREN, + STATE(9002), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211250] = 4, - ACTIONS(5617), 1, + [218435] = 4, + ACTIONS(5536), 1, anon_sym_RPAREN, - ACTIONS(11446), 1, + ACTIONS(11648), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211264] = 4, - ACTIONS(11104), 1, + [218449] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11448), 1, - anon_sym_RPAREN, - STATE(8761), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11650), 1, + anon_sym_GT, + STATE(8980), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211278] = 4, - ACTIONS(11134), 1, + [218463] = 4, + ACTIONS(11652), 1, anon_sym_COMMA, - ACTIONS(11450), 1, + ACTIONS(11654), 1, anon_sym_RPAREN, - STATE(8758), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8937), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211292] = 4, - ACTIONS(11452), 1, + [218477] = 4, + ACTIONS(11656), 1, anon_sym_COMMA, - ACTIONS(11454), 1, + ACTIONS(11659), 1, anon_sym_RPAREN, - STATE(8779), 1, - aux_sym_value_arguments_repeat1, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211306] = 3, - STATE(3861), 1, - sym__lexical_identifier, + [218491] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11456), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [211318] = 3, - STATE(3906), 1, - sym__lexical_identifier, + ACTIONS(4704), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_in, + [218501] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11661), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11458), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [211330] = 4, - ACTIONS(11460), 1, + [218515] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11462), 1, + ACTIONS(11663), 1, anon_sym_RPAREN, - STATE(8840), 1, - aux_sym__class_parameters_repeat1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211344] = 4, - ACTIONS(11124), 1, + [218529] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11464), 1, + ACTIONS(11665), 1, anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211358] = 3, - STATE(1125), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11466), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [211370] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11468), 1, - anon_sym_EQ, - STATE(9650), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211384] = 4, - ACTIONS(4510), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9572), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211398] = 4, - ACTIONS(7106), 1, - sym__automatic_semicolon, - ACTIONS(10530), 1, - anon_sym_LPAREN, - STATE(8502), 1, - sym_value_arguments, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211412] = 3, - STATE(3510), 1, - sym__lexical_identifier, + [218543] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11667), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11470), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [211424] = 4, - ACTIONS(4444), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9557), 1, - sym_enum_class_body, + [218557] = 4, + ACTIONS(5524), 1, + anon_sym_RPAREN, + ACTIONS(11669), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211438] = 4, - ACTIONS(11124), 1, + [218571] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11472), 1, + ACTIONS(11671), 1, anon_sym_GT, - STATE(8860), 1, + STATE(8990), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211452] = 4, - ACTIONS(11474), 1, - anon_sym_COMMA, - ACTIONS(11476), 1, + [218585] = 4, + ACTIONS(9378), 1, anon_sym_RPAREN, - STATE(8901), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11673), 1, + anon_sym_COMMA, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211466] = 4, - ACTIONS(11478), 1, + [218599] = 4, + ACTIONS(11675), 1, anon_sym_COMMA, - ACTIONS(11480), 1, + ACTIONS(11677), 1, anon_sym_RPAREN, - STATE(8861), 1, + STATE(8991), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211480] = 4, - ACTIONS(11124), 1, + [218613] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11482), 1, - anon_sym_GT, - STATE(8902), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11679), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211494] = 4, - ACTIONS(5531), 1, + [218627] = 4, + ACTIONS(5562), 1, anon_sym_RPAREN, - ACTIONS(11484), 1, + ACTIONS(11681), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211508] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11486), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211522] = 4, - ACTIONS(11124), 1, + [218641] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11488), 1, + ACTIONS(11683), 1, anon_sym_GT, - STATE(8775), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211536] = 4, - ACTIONS(11490), 1, + [218655] = 4, + ACTIONS(11685), 1, anon_sym_COMMA, - ACTIONS(11493), 1, + ACTIONS(11687), 1, anon_sym_RPAREN, - STATE(8904), 1, - aux_sym_function_value_parameters_repeat1, + STATE(9047), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211550] = 4, - ACTIONS(11495), 1, + [218669] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11497), 1, - anon_sym_RPAREN, - STATE(8936), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11689), 1, + anon_sym_GT, + STATE(9049), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211564] = 4, - ACTIONS(11499), 1, - anon_sym_COMMA, - ACTIONS(11501), 1, - anon_sym_RPAREN, - STATE(8909), 1, - aux_sym_value_arguments_repeat1, + [218683] = 4, + ACTIONS(4218), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211578] = 4, - ACTIONS(11124), 1, + [218697] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11503), 1, + ACTIONS(11691), 1, anon_sym_GT, - STATE(8910), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211592] = 2, + [218711] = 4, + ACTIONS(8833), 1, + anon_sym_RPAREN, + ACTIONS(11693), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - ACTIONS(4506), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [211602] = 4, - ACTIONS(5666), 1, + sym_line_comment, + [218725] = 4, + ACTIONS(5498), 1, anon_sym_RPAREN, - ACTIONS(11505), 1, + ACTIONS(11695), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211616] = 4, - ACTIONS(11124), 1, + [218739] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11507), 1, + ACTIONS(11697), 1, anon_sym_GT, - STATE(8857), 1, + STATE(9001), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211630] = 4, - ACTIONS(11235), 1, + [218753] = 4, + ACTIONS(11699), 1, anon_sym_COMMA, - ACTIONS(11509), 1, - anon_sym_DASH_GT, - STATE(8793), 1, - aux_sym_when_entry_repeat1, + ACTIONS(11701), 1, + anon_sym_RPAREN, + STATE(9003), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218767] = 4, + ACTIONS(11703), 1, + anon_sym_COMMA, + ACTIONS(11705), 1, + anon_sym_RPAREN, + STATE(8938), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211644] = 4, - ACTIONS(4444), 1, + [218781] = 4, + ACTIONS(4357), 1, anon_sym_while, - ACTIONS(8457), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9557), 1, + STATE(9518), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211658] = 4, - ACTIONS(11511), 1, + [218795] = 4, + ACTIONS(11707), 1, anon_sym_COMMA, - ACTIONS(11513), 1, + ACTIONS(11709), 1, anon_sym_RPAREN, - STATE(8951), 1, - aux_sym_value_arguments_repeat1, + STATE(9067), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211672] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11515), 1, - anon_sym_GT, - STATE(8915), 1, - aux_sym_type_arguments_repeat1, + [218809] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211686] = 4, - ACTIONS(11124), 1, + ACTIONS(11276), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [218819] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11517), 1, + ACTIONS(11711), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211700] = 4, - ACTIONS(4274), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9563), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211714] = 3, - ACTIONS(11519), 1, - anon_sym_COLON, + [218833] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11521), 2, - anon_sym_COMMA, - anon_sym_GT, - [211726] = 4, - ACTIONS(11523), 1, + ACTIONS(10993), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11525), 1, + anon_sym_SEMI, + [218843] = 4, + ACTIONS(5470), 1, anon_sym_RPAREN, - STATE(8920), 1, + ACTIONS(11713), 1, + anon_sym_COMMA, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211740] = 4, - ACTIONS(11124), 1, + [218857] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11527), 1, + ACTIONS(11715), 1, anon_sym_GT, - STATE(8923), 1, + STATE(9010), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211754] = 4, - ACTIONS(5543), 1, - anon_sym_RPAREN, - ACTIONS(11529), 1, + [218871] = 4, + ACTIONS(11717), 1, anon_sym_COMMA, - STATE(8863), 1, + ACTIONS(11719), 1, + anon_sym_RPAREN, + STATE(9012), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211768] = 4, - ACTIONS(4723), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9566), 1, - sym_class_body, + [218885] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11721), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211782] = 4, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9570), 1, - sym_enum_class_body, + [218899] = 4, + ACTIONS(4206), 1, + anon_sym_in, + ACTIONS(11342), 1, + sym__quest, + STATE(8922), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211796] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11531), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + [218913] = 4, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8638), 1, + anon_sym_LBRACE, + STATE(9545), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211810] = 4, - ACTIONS(11533), 1, + [218927] = 4, + ACTIONS(11723), 1, anon_sym_COMMA, - ACTIONS(11535), 1, + ACTIONS(11725), 1, anon_sym_RPAREN, - STATE(8927), 1, + STATE(8955), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211824] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11537), 1, - anon_sym_GT, - STATE(8928), 1, - aux_sym_type_arguments_repeat1, + [218941] = 4, + ACTIONS(4224), 1, + anon_sym_in, + ACTIONS(11727), 1, + sym__quest, + STATE(9019), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211838] = 3, - STATE(8777), 1, - sym_constructor_delegation_call, + [218955] = 4, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11730), 1, + anon_sym_RPAREN, + STATE(8985), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11185), 2, - anon_sym_this, - anon_sym_super, - [211850] = 4, - ACTIONS(5607), 1, + [218969] = 4, + ACTIONS(9362), 1, anon_sym_RPAREN, - ACTIONS(11539), 1, + ACTIONS(11732), 1, anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211864] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11541), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + [218983] = 3, + ACTIONS(11734), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211878] = 4, - ACTIONS(11543), 1, + ACTIONS(11736), 2, anon_sym_COMMA, - ACTIONS(11545), 1, anon_sym_RPAREN, - STATE(8931), 1, - aux_sym_value_arguments_repeat1, + [218995] = 4, + ACTIONS(8909), 1, + anon_sym_RPAREN, + ACTIONS(11738), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211892] = 4, - ACTIONS(11124), 1, + [219009] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11547), 1, + ACTIONS(11740), 1, anon_sym_GT, - STATE(8933), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211906] = 4, - ACTIONS(5678), 1, + [219023] = 4, + ACTIONS(5620), 1, anon_sym_RPAREN, - ACTIONS(11549), 1, + ACTIONS(11742), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211920] = 4, - ACTIONS(11551), 1, + [219037] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11553), 1, + ACTIONS(11744), 1, anon_sym_RPAREN, - STATE(8873), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211934] = 4, - ACTIONS(11124), 1, + [219051] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11555), 1, + ACTIONS(11746), 1, anon_sym_GT, - STATE(8857), 1, + STATE(9024), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211948] = 3, - ACTIONS(11557), 1, - anon_sym_AMP, + [219065] = 4, + ACTIONS(11748), 1, + anon_sym_COMMA, + ACTIONS(11750), 1, + anon_sym_RPAREN, + STATE(9025), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 2, - sym__quest, - anon_sym_in, - [211960] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11559), 1, - anon_sym_GT, - STATE(8937), 1, - aux_sym_type_arguments_repeat1, + [219079] = 3, + STATE(3424), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211974] = 4, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(11561), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219091] = 4, + ACTIONS(11481), 1, anon_sym_COMMA, - STATE(8863), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11752), 1, + anon_sym_DASH_GT, + STATE(8902), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211988] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11563), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + [219105] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212002] = 4, - ACTIONS(11565), 1, + ACTIONS(4479), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [219115] = 4, + ACTIONS(5614), 1, + anon_sym_RPAREN, + ACTIONS(11754), 1, anon_sym_COMMA, - ACTIONS(11568), 1, - anon_sym_GT, - STATE(8938), 1, - aux_sym_type_parameters_repeat1, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212016] = 4, - ACTIONS(11570), 1, + [219129] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(11756), 1, anon_sym_RPAREN, - STATE(8942), 1, - aux_sym_value_arguments_repeat1, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212030] = 4, - ACTIONS(11124), 1, + [219143] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11574), 1, - anon_sym_GT, - STATE(8944), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11758), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212044] = 4, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9570), 1, - sym_class_body, + [219157] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11760), 1, + anon_sym_GT, + STATE(9015), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212058] = 4, - ACTIONS(5690), 1, + [219171] = 4, + ACTIONS(5552), 1, anon_sym_RPAREN, - ACTIONS(11576), 1, + ACTIONS(11762), 1, anon_sym_COMMA, - STATE(8863), 1, + STATE(8894), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212072] = 4, - ACTIONS(4476), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9581), 1, - sym_enum_class_body, + [219185] = 3, + STATE(840), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212086] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11578), 1, - anon_sym_GT, - STATE(8857), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11764), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219197] = 3, + STATE(3584), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212100] = 4, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11580), 1, - anon_sym_GT, - STATE(8947), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219209] = 3, + STATE(3585), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212114] = 4, - ACTIONS(11110), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219221] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11582), 1, + ACTIONS(11766), 1, anon_sym_GT, - STATE(8876), 1, + STATE(8960), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212128] = 4, - ACTIONS(11124), 1, + [219235] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11584), 1, + ACTIONS(11768), 1, anon_sym_GT, - STATE(8857), 1, + STATE(8882), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212142] = 4, - ACTIONS(11586), 1, - anon_sym_LBRACE, - ACTIONS(11588), 1, - anon_sym_LPAREN, - STATE(9573), 1, - sym_when_subject, + [219249] = 4, + ACTIONS(9352), 1, + anon_sym_RPAREN, + ACTIONS(11770), 1, + anon_sym_COMMA, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212156] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11590), 1, - anon_sym_EQ, - STATE(9576), 1, - sym_type_parameters, + [219263] = 3, + STATE(3587), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212170] = 4, - ACTIONS(4731), 1, - anon_sym_while, - ACTIONS(8431), 1, - anon_sym_LBRACE, - STATE(9583), 1, - sym_enum_class_body, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219275] = 3, + STATE(3591), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212184] = 4, - ACTIONS(5597), 1, - anon_sym_RPAREN, - ACTIONS(11592), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219287] = 4, + ACTIONS(11772), 1, anon_sym_COMMA, - STATE(8863), 1, + ACTIONS(11774), 1, + anon_sym_RPAREN, + STATE(9032), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212198] = 3, - ACTIONS(11594), 1, - anon_sym_AMP, + [219301] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11776), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4236), 2, - sym__quest, - anon_sym_in, - [212210] = 4, - ACTIONS(4731), 1, - anon_sym_while, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(9583), 1, - sym_class_body, + [219315] = 4, + ACTIONS(5508), 1, + anon_sym_RPAREN, + ACTIONS(11778), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212224] = 4, - ACTIONS(4431), 1, - anon_sym_while, - ACTIONS(8431), 1, + [219329] = 4, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(9589), 1, - sym_enum_class_body, + ACTIONS(9929), 1, + anon_sym_COLON, + STATE(3526), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212238] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11596), 1, - anon_sym_EQ, - STATE(9600), 1, - sym_type_parameters, + [219343] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11780), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212252] = 4, - ACTIONS(4703), 1, + [219357] = 4, + ACTIONS(4557), 1, anon_sym_while, - ACTIONS(8431), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9593), 1, - sym_enum_class_body, + STATE(9507), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212266] = 4, - ACTIONS(11104), 1, - anon_sym_COMMA, - ACTIONS(11598), 1, - anon_sym_RPAREN, - STATE(8989), 1, - aux_sym_multi_variable_declaration_repeat1, + [219371] = 4, + ACTIONS(3282), 1, + anon_sym_while, + ACTIONS(8648), 1, + anon_sym_LBRACE, + STATE(9545), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212280] = 4, - ACTIONS(11588), 1, - anon_sym_LPAREN, - ACTIONS(11600), 1, + [219385] = 4, + ACTIONS(4329), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9615), 1, - sym_when_subject, + STATE(9623), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212294] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11602), 1, - anon_sym_EQ, - STATE(9618), 1, - sym_type_parameters, + [219399] = 4, + ACTIONS(8901), 1, + anon_sym_RPAREN, + ACTIONS(11782), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212308] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11604), 1, - anon_sym_EQ, - STATE(9628), 1, - sym_type_parameters, + [219413] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11784), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212322] = 4, - ACTIONS(11104), 1, + [219427] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11606), 1, - anon_sym_RPAREN, - STATE(8884), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11786), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212336] = 3, - ACTIONS(11608), 1, - anon_sym_EQ, + [219441] = 4, + ACTIONS(5606), 1, + anon_sym_RPAREN, + ACTIONS(11788), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11610), 2, - anon_sym_COMMA, + [219455] = 4, + ACTIONS(9368), 1, anon_sym_RPAREN, - [212348] = 4, - ACTIONS(11612), 1, + ACTIONS(11790), 1, anon_sym_COMMA, - ACTIONS(11614), 1, - anon_sym_RPAREN, - STATE(8821), 1, + STATE(8934), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212362] = 4, - ACTIONS(8677), 1, + [219469] = 4, + ACTIONS(11792), 1, + anon_sym_COMMA, + ACTIONS(11794), 1, anon_sym_RPAREN, - ACTIONS(11616), 1, + STATE(8964), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219483] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - STATE(8824), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11796), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212376] = 4, - ACTIONS(11588), 1, - anon_sym_LPAREN, - ACTIONS(11618), 1, - anon_sym_LBRACE, - STATE(9640), 1, - sym_when_subject, + [219497] = 4, + ACTIONS(11798), 1, + anon_sym_COMMA, + ACTIONS(11800), 1, + anon_sym_RPAREN, + STATE(9053), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212390] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11620), 1, - anon_sym_EQ, - STATE(9644), 1, - sym_type_parameters, + [219511] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11802), 1, + anon_sym_GT, + STATE(9055), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212404] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11622), 1, - anon_sym_EQ, - STATE(9659), 1, - sym_type_parameters, + [219525] = 4, + ACTIONS(11804), 1, + anon_sym_COMMA, + ACTIONS(11806), 1, + anon_sym_RPAREN, + STATE(9056), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212418] = 3, - ACTIONS(11624), 1, - anon_sym_LPAREN, + [219539] = 4, + ACTIONS(11808), 1, + anon_sym_COMMA, + ACTIONS(11810), 1, + anon_sym_RPAREN, + STATE(9057), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4298), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [212430] = 4, - ACTIONS(11588), 1, - anon_sym_LPAREN, - ACTIONS(11626), 1, + [219553] = 4, + ACTIONS(3274), 1, + anon_sym_while, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(9671), 1, - sym_when_subject, + STATE(9819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212444] = 3, - ACTIONS(11628), 1, - anon_sym_LPAREN, + [219567] = 4, + ACTIONS(8857), 1, + anon_sym_RPAREN, + ACTIONS(11812), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [212456] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11630), 1, - anon_sym_EQ, - STATE(9674), 1, - sym_type_parameters, + [219581] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11814), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212470] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11632), 1, - anon_sym_EQ, - STATE(9683), 1, - sym_type_parameters, + [219595] = 4, + ACTIONS(8881), 1, + anon_sym_RPAREN, + ACTIONS(11816), 1, + anon_sym_COMMA, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212484] = 4, - ACTIONS(11110), 1, + [219609] = 4, + ACTIONS(5542), 1, + anon_sym_RPAREN, + ACTIONS(11818), 1, anon_sym_COMMA, - ACTIONS(11634), 1, - anon_sym_GT, - STATE(8839), 1, - aux_sym_type_parameters_repeat1, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212498] = 3, - ACTIONS(11636), 1, - anon_sym_LPAREN, + [219623] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11820), 1, + sym__automatic_semicolon, + STATE(10021), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4779), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [212510] = 4, - ACTIONS(11588), 1, - anon_sym_LPAREN, - ACTIONS(11638), 1, + [219637] = 4, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9698), 1, - sym_when_subject, + ACTIONS(11822), 1, + sym__automatic_semicolon, + STATE(9891), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212524] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11640), 1, - anon_sym_EQ, - STATE(9703), 1, - sym_type_parameters, + [219651] = 4, + ACTIONS(11378), 1, + anon_sym_COMMA, + ACTIONS(11824), 1, + anon_sym_RPAREN, + STATE(8972), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212538] = 4, - ACTIONS(11642), 1, + [219665] = 4, + ACTIONS(11826), 1, anon_sym_COMMA, - ACTIONS(11644), 1, - anon_sym_DASH_GT, - STATE(8859), 1, - aux_sym_lambda_parameters_repeat1, + ACTIONS(11828), 1, + anon_sym_RPAREN, + STATE(9065), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219679] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11830), 1, + sym__automatic_semicolon, + STATE(10013), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212552] = 4, - ACTIONS(11124), 1, + [219693] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11646), 1, + ACTIONS(11832), 1, anon_sym_GT, - STATE(8857), 1, + STATE(9066), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212566] = 4, - ACTIONS(7445), 1, + [219707] = 4, + ACTIONS(11834), 1, anon_sym_COMMA, - ACTIONS(11648), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11836), 1, + anon_sym_RPAREN, + STATE(9068), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212580] = 4, - ACTIONS(11104), 1, + [219721] = 4, + ACTIONS(11838), 1, anon_sym_COMMA, - ACTIONS(11650), 1, + ACTIONS(11840), 1, anon_sym_RPAREN, - STATE(8834), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(9087), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219735] = 4, + ACTIONS(5514), 1, + anon_sym_RPAREN, + ACTIONS(11842), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212594] = 4, - ACTIONS(7445), 1, + [219749] = 4, + ACTIONS(8845), 1, + anon_sym_RPAREN, + ACTIONS(11844), 1, anon_sym_COMMA, - ACTIONS(11652), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + STATE(8847), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212608] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11654), 1, - anon_sym_EQ, - STATE(9720), 1, - sym_type_parameters, + [219763] = 4, + ACTIONS(11295), 1, + anon_sym_COMMA, + ACTIONS(11846), 1, + anon_sym_GT, + STATE(8882), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212622] = 4, - ACTIONS(7445), 1, + [219777] = 4, + ACTIONS(11303), 1, anon_sym_COMMA, - ACTIONS(11656), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11848), 1, + anon_sym_GT, + STATE(8975), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212636] = 4, - ACTIONS(9194), 1, + [219791] = 4, + ACTIONS(9364), 1, anon_sym_RPAREN, - ACTIONS(11658), 1, + ACTIONS(11850), 1, anon_sym_COMMA, - STATE(8904), 1, + STATE(8934), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212650] = 4, - ACTIONS(11110), 1, + [219805] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11660), 1, - anon_sym_GT, - STATE(8938), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11852), 1, + anon_sym_RBRACK, + STATE(8926), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212664] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11662), 1, - anon_sym_EQ, - STATE(9732), 1, - sym_type_parameters, + [219819] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11854), 1, + anon_sym_GT, + STATE(8960), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212678] = 4, - ACTIONS(11134), 1, + [219833] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11664), 1, + ACTIONS(11856), 1, anon_sym_RPAREN, - STATE(8758), 1, + STATE(8972), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212692] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11666), 1, - anon_sym_EQ, - STATE(9745), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212706] = 4, - ACTIONS(11104), 1, + [219847] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11668), 1, + ACTIONS(11858), 1, anon_sym_RPAREN, - STATE(8761), 1, + STATE(8985), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212720] = 4, - ACTIONS(11670), 1, + [219861] = 4, + ACTIONS(11860), 1, anon_sym_COMMA, - ACTIONS(11672), 1, + ACTIONS(11862), 1, anon_sym_RPAREN, - STATE(8964), 1, + STATE(9078), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212734] = 3, - ACTIONS(11674), 1, - anon_sym_LPAREN, + [219875] = 4, + ACTIONS(9350), 1, + anon_sym_RPAREN, + ACTIONS(11864), 1, + anon_sym_COMMA, + STATE(8934), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4769), 2, + [219889] = 4, + ACTIONS(8521), 1, + anon_sym_LBRACE, + ACTIONS(11866), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [212746] = 4, - ACTIONS(4223), 1, - anon_sym_in, - ACTIONS(11676), 1, - sym__quest, - STATE(9002), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212760] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11678), 1, - anon_sym_EQ, - STATE(9693), 1, - sym_type_parameters, + STATE(9987), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212774] = 4, - ACTIONS(11124), 1, + [219903] = 4, + ACTIONS(11295), 1, anon_sym_COMMA, - ACTIONS(11680), 1, + ACTIONS(11868), 1, anon_sym_GT, - STATE(8978), 1, + STATE(9079), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212788] = 4, - ACTIONS(11682), 1, - anon_sym_COMMA, - ACTIONS(11684), 1, - anon_sym_RPAREN, - STATE(8730), 1, - aux_sym_value_arguments_repeat1, + [219917] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212802] = 4, - ACTIONS(11686), 1, + ACTIONS(11870), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11688), 1, - anon_sym_RPAREN, - STATE(8984), 1, - aux_sym_function_value_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212816] = 4, - ACTIONS(11110), 1, + anon_sym_SEMI, + [219927] = 4, + ACTIONS(11872), 1, anon_sym_COMMA, - ACTIONS(11690), 1, - anon_sym_GT, - STATE(8985), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212830] = 4, - ACTIONS(4167), 1, - anon_sym_in, - ACTIONS(11676), 1, - sym__quest, - STATE(9002), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(11874), 1, + anon_sym_RPAREN, + STATE(9077), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212844] = 4, - ACTIONS(7445), 1, + [219941] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11692), 1, - anon_sym_RBRACK, - STATE(8879), 1, - aux_sym_indexing_suffix_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212858] = 4, - ACTIONS(4227), 1, - anon_sym_in, - ACTIONS(11694), 1, - sym__quest, - STATE(9000), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212872] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11697), 1, - anon_sym_EQ, - STATE(9713), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212886] = 4, - ACTIONS(4280), 1, - anon_sym_in, - ACTIONS(11699), 1, - sym__quest, - STATE(9000), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(11876), 1, + anon_sym_RPAREN, + STATE(8979), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212900] = 4, - ACTIONS(9036), 1, - anon_sym_LT, - ACTIONS(11701), 1, + [219955] = 3, + ACTIONS(11878), 1, anon_sym_EQ, - STATE(9819), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212914] = 4, - ACTIONS(5456), 1, - anon_sym_LBRACE, - ACTIONS(9742), 1, - anon_sym_COLON, - STATE(5036), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212928] = 3, - STATE(4662), 1, - sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11703), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [212940] = 3, - STATE(4674), 1, - sym__lexical_identifier, + ACTIONS(7824), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219967] = 4, + ACTIONS(11880), 1, + anon_sym_COMMA, + ACTIONS(11882), 1, + anon_sym_RPAREN, + STATE(9081), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11705), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [212952] = 3, - STATE(2908), 1, - sym__lexical_identifier, + [219981] = 4, + ACTIONS(11303), 1, + anon_sym_COMMA, + ACTIONS(11884), 1, + anon_sym_GT, + STATE(9083), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11707), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [212964] = 4, - ACTIONS(11642), 1, + [219995] = 4, + ACTIONS(11311), 1, anon_sym_COMMA, - ACTIONS(11709), 1, - anon_sym_DASH_GT, - STATE(8977), 1, - aux_sym_lambda_parameters_repeat1, + ACTIONS(11886), 1, + anon_sym_RPAREN, + STATE(9085), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212978] = 4, - ACTIONS(11588), 1, + [220009] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - ACTIONS(11711), 1, - anon_sym_LBRACE, - STATE(9681), 1, - sym_when_subject, + STATE(4673), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212992] = 4, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(9750), 1, - anon_sym_COLON, - STATE(4654), 1, - sym_class_body, + [220020] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213006] = 3, - STATE(5067), 1, - sym__lexical_identifier, + ACTIONS(4776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220029] = 3, + ACTIONS(11888), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11713), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [213018] = 3, - STATE(5066), 1, - sym__lexical_identifier, + [220040] = 3, + ACTIONS(11890), 1, + anon_sym_DOT, + STATE(9099), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11715), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [213030] = 3, - STATE(3502), 1, - sym__lexical_identifier, + [220051] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11717), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [213042] = 3, - ACTIONS(9563), 1, + ACTIONS(121), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220060] = 3, + ACTIONS(5488), 1, anon_sym_LPAREN, - STATE(2857), 1, - sym_function_value_parameters, + STATE(3365), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213053] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1247), 1, - sym_function_value_parameters, + [220071] = 3, + ACTIONS(11892), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213064] = 3, - ACTIONS(5795), 1, - anon_sym_LPAREN, - STATE(5268), 1, - sym__class_parameters, + [220082] = 3, + ACTIONS(11894), 1, + anon_sym_DOT, + STATE(9103), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213075] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4606), 1, - sym_function_value_parameters, + [220093] = 3, + ACTIONS(11896), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213086] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4624), 1, - sym_function_value_parameters, + [220104] = 3, + ACTIONS(11898), 1, + anon_sym_DOT, + STATE(9105), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213097] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4630), 1, - sym_function_value_parameters, + [220115] = 3, + ACTIONS(10683), 1, + anon_sym_get, + ACTIONS(10685), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213108] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4634), 1, - sym_function_value_parameters, + [220126] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8552), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213119] = 2, + [220137] = 3, + ACTIONS(10391), 1, + anon_sym_get, + ACTIONS(10393), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4506), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213128] = 2, + [220148] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4396), 2, + ACTIONS(1804), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213137] = 3, - ACTIONS(11719), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213148] = 3, - ACTIONS(11721), 1, - anon_sym_DOT, - STATE(9023), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213159] = 2, + [220157] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(3077), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11568), 2, - anon_sym_COMMA, - anon_sym_GT, - [213168] = 2, + [220168] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11723), 2, + ACTIONS(11900), 2, anon_sym_COMMA, anon_sym_GT, - [213177] = 3, - ACTIONS(5218), 1, - anon_sym_LBRACE, - STATE(3467), 1, - sym_class_body, + [220177] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213188] = 3, - ACTIONS(11725), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + ACTIONS(4469), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220186] = 3, + ACTIONS(11902), 1, + sym__automatic_semicolon, + STATE(3790), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213199] = 2, + [220197] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 2, + ACTIONS(5173), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213208] = 3, - ACTIONS(9629), 1, + [220206] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4869), 1, + STATE(4539), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213219] = 3, - ACTIONS(11727), 1, - anon_sym_DOT, - STATE(9028), 1, - aux_sym_user_type_repeat1, + [220217] = 3, + ACTIONS(10331), 1, + anon_sym_get, + ACTIONS(10333), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213230] = 3, - ACTIONS(11729), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [220228] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(4095), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213241] = 2, + [220239] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5106), 2, + ACTIONS(4908), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213250] = 3, - ACTIONS(11731), 1, - anon_sym_DOT, - STATE(9032), 1, - aux_sym_user_type_repeat1, + [220248] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213261] = 3, - ACTIONS(1584), 1, - anon_sym_LBRACE, - STATE(3482), 1, - sym_lambda_literal, + ACTIONS(7181), 2, + anon_sym_AT, + anon_sym_val, + [220257] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213272] = 2, + ACTIONS(7193), 2, + anon_sym_AT, + anon_sym_val, + [220266] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4536), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, - anon_sym_AT, - anon_sym_val, - [213281] = 2, + [220277] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11493), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [213290] = 2, + ACTIONS(4904), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220286] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7155), 2, + ACTIONS(7189), 2, anon_sym_AT, anon_sym_val, - [213299] = 3, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(8266), 1, - sym_function_value_parameters, + [220295] = 3, + ACTIONS(7783), 1, + anon_sym_RBRACE, + ACTIONS(11904), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213310] = 2, + [220306] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11423), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [213319] = 2, + ACTIONS(7145), 2, + anon_sym_AT, + anon_sym_val, + [220315] = 3, + ACTIONS(11906), 1, + anon_sym_LBRACE, + STATE(917), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4067), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213328] = 3, - ACTIONS(1584), 1, + [220326] = 3, + ACTIONS(11906), 1, anon_sym_LBRACE, - STATE(3460), 1, - sym_lambda_literal, + STATE(865), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213339] = 3, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(8568), 1, - sym__block, + [220337] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4543), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213350] = 2, + [220348] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 2, + ACTIONS(7173), 2, anon_sym_AT, anon_sym_val, - [213359] = 3, - ACTIONS(5795), 1, - anon_sym_LPAREN, - STATE(5260), 1, - sym__class_parameters, + [220357] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213370] = 2, + ACTIONS(1810), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220366] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5140), 2, + ACTIONS(5189), 2, anon_sym_AT, anon_sym_val, - [213379] = 2, + [220375] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5076), 2, + ACTIONS(4886), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213388] = 3, - ACTIONS(11733), 1, - sym__automatic_semicolon, - STATE(4004), 1, - sym__semi, + [220384] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213399] = 2, + ACTIONS(4453), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220393] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5072), 2, + ACTIONS(4185), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213408] = 2, + [220402] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7174), 2, - anon_sym_AT, - anon_sym_val, - [213417] = 3, - ACTIONS(10416), 1, + ACTIONS(4297), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220411] = 3, + ACTIONS(10583), 1, anon_sym_get, - ACTIONS(10418), 1, + ACTIONS(10585), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213428] = 3, - ACTIONS(9629), 1, + [220422] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4900), 1, + STATE(4135), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213439] = 2, + [220433] = 3, + ACTIONS(5488), 1, + anon_sym_LPAREN, + STATE(3334), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7115), 2, - anon_sym_AT, - anon_sym_val, - [213448] = 2, + [220444] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5392), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11404), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [213457] = 3, - ACTIONS(10316), 1, - anon_sym_get, - ACTIONS(10318), 1, - anon_sym_set, + [220455] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213468] = 2, + [220466] = 3, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4949), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11388), 2, - anon_sym_COMMA, - anon_sym_GT, - [213477] = 2, + [220477] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(5380), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220488] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5068), 2, + ACTIONS(4483), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213486] = 3, - ACTIONS(9547), 1, + [220497] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5270), 1, + STATE(5372), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213497] = 3, - ACTIONS(10430), 1, - anon_sym_get, - ACTIONS(10432), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213508] = 2, + [220508] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 2, + ACTIONS(5101), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213517] = 2, + [220517] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 2, + ACTIONS(4654), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213526] = 3, - ACTIONS(11735), 1, - sym__automatic_semicolon, - STATE(3621), 1, - sym__semi, + [220526] = 3, + ACTIONS(5580), 1, + anon_sym_LPAREN, + STATE(4622), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213537] = 2, + [220537] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4510), 2, + ACTIONS(4968), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213546] = 3, - ACTIONS(7674), 1, - anon_sym_RBRACE, - ACTIONS(11737), 1, - anon_sym_SEMI, + [220546] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213557] = 3, - ACTIONS(10486), 1, - anon_sym_get, - ACTIONS(10488), 1, - anon_sym_set, + ACTIONS(1816), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220555] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213568] = 2, + ACTIONS(5185), 2, + anon_sym_AT, + anon_sym_val, + [220564] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11317), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [213577] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(5277), 1, - sym_function_value_parameters, + ACTIONS(4301), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220573] = 3, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(4938), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213588] = 3, - ACTIONS(9629), 1, - anon_sym_LPAREN, - STATE(4884), 1, - sym_function_value_parameters, + [220584] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213599] = 2, + ACTIONS(4569), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220593] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4929), 2, + ACTIONS(5181), 2, anon_sym_AT, anon_sym_val, - [213608] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(5279), 1, - sym_function_value_parameters, + [220602] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213619] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4444), 2, + ACTIONS(3422), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213628] = 2, + [220611] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4891), 2, + ACTIONS(4441), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213637] = 2, + [220620] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(4075), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4957), 2, - anon_sym_AT, - anon_sym_val, - [213646] = 3, - ACTIONS(10228), 1, - anon_sym_get, - ACTIONS(10230), 1, - anon_sym_set, + [220631] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213657] = 2, + ACTIONS(5087), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220640] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11242), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [213666] = 3, - ACTIONS(9629), 1, - anon_sym_LPAREN, - STATE(4883), 1, - sym_function_value_parameters, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220649] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213677] = 2, + ACTIONS(4976), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220658] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 2, + ACTIONS(5165), 2, anon_sym_AT, anon_sym_val, - [213686] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(5229), 1, - sym_function_value_parameters, + [220667] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213697] = 3, - ACTIONS(11739), 1, + ACTIONS(4900), 2, sym__automatic_semicolon, - STATE(3923), 1, - sym__semi, + anon_sym_RBRACE, + [220676] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213708] = 3, - ACTIONS(11741), 1, - anon_sym_LBRACE, - STATE(2987), 1, - sym__block, + ACTIONS(5161), 2, + anon_sym_AT, + anon_sym_val, + [220685] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213719] = 3, - ACTIONS(11741), 1, - anon_sym_LBRACE, - STATE(2989), 1, - sym__block, + [220696] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4142), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213730] = 2, + [220707] = 3, + ACTIONS(7711), 1, + anon_sym_RBRACE, + ACTIONS(11908), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11743), 2, - anon_sym_COMMA, - anon_sym_GT, - [213739] = 2, + [220718] = 3, + ACTIONS(11910), 1, + sym__automatic_semicolon, + STATE(3637), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1756), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213748] = 3, - ACTIONS(10530), 1, + [220729] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(9126), 1, - sym_value_arguments, + STATE(4064), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213759] = 3, - ACTIONS(10166), 1, + [220740] = 3, + ACTIONS(10315), 1, anon_sym_get, - ACTIONS(10168), 1, + ACTIONS(10317), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213770] = 3, - ACTIONS(9543), 1, + [220751] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(5222), 1, + STATE(4088), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213781] = 3, - ACTIONS(9543), 1, + [220762] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(5218), 1, + STATE(4963), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213792] = 3, - ACTIONS(10386), 1, - anon_sym_get, - ACTIONS(10388), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213803] = 3, - ACTIONS(9543), 1, + [220773] = 3, + ACTIONS(3254), 1, anon_sym_LPAREN, - STATE(5205), 1, - sym_function_value_parameters, + STATE(3041), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213814] = 2, + [220784] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4090), 2, + ACTIONS(4479), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213823] = 2, + [220793] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4985), 2, + ACTIONS(5097), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213832] = 2, + [220802] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4161), 2, + ACTIONS(4848), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213841] = 2, + [220811] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4973), 2, + ACTIONS(4800), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213850] = 3, - ACTIONS(9543), 1, + [220820] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(5198), 1, + STATE(2849), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213861] = 3, - ACTIONS(10330), 1, - anon_sym_get, - ACTIONS(10332), 1, - anon_sym_set, + [220831] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(5304), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213872] = 3, - ACTIONS(9605), 1, + [220842] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3461), 1, + STATE(5267), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213883] = 3, - ACTIONS(1856), 1, - anon_sym_LBRACE, - STATE(4751), 1, - sym_lambda_literal, + [220853] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213894] = 3, - ACTIONS(1866), 1, - anon_sym_LBRACE, - STATE(3373), 1, - sym_lambda_literal, + ACTIONS(11326), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220862] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(5311), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220873] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3350), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213905] = 3, - ACTIONS(9605), 1, + [220884] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(5286), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213916] = 3, - ACTIONS(10182), 1, + [220895] = 3, + ACTIONS(10345), 1, anon_sym_get, - ACTIONS(10184), 1, + ACTIONS(10347), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213927] = 2, + [220906] = 3, + ACTIONS(7671), 1, + anon_sym_RBRACE, + ACTIONS(11912), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4969), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213936] = 3, - ACTIONS(5202), 1, + [220917] = 3, + ACTIONS(3254), 1, anon_sym_LPAREN, - STATE(4602), 1, + STATE(3022), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213947] = 3, - ACTIONS(9605), 1, + [220928] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3259), 1, + STATE(3349), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213958] = 3, - ACTIONS(9605), 1, + [220939] = 3, + ACTIONS(4894), 1, + anon_sym_while, + ACTIONS(11914), 1, anon_sym_LPAREN, - STATE(3232), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213969] = 2, + [220950] = 3, + ACTIONS(4876), 1, + anon_sym_while, + ACTIONS(11916), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4274), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213978] = 2, + [220961] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1289), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4887), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213987] = 3, - ACTIONS(9519), 1, + [220972] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(8262), 1, + STATE(2817), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213998] = 3, - ACTIONS(3122), 1, + [220983] = 3, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(3359), 1, + STATE(3451), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214009] = 2, + [220994] = 3, + ACTIONS(10497), 1, + anon_sym_get, + ACTIONS(10499), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 2, - anon_sym_AT, - anon_sym_val, - [214018] = 2, + [221005] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3581), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4883), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214027] = 3, - ACTIONS(9543), 1, + [221016] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4847), 1, + STATE(3578), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214038] = 3, - ACTIONS(9563), 1, + [221027] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3562), 1, + STATE(3574), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214049] = 3, - ACTIONS(9563), 1, + [221038] = 3, + ACTIONS(7715), 1, + anon_sym_RBRACE, + ACTIONS(11918), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221049] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(3592), 1, + STATE(3572), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214060] = 3, - ACTIONS(9563), 1, + [221060] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3595), 1, + STATE(2866), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214071] = 3, - ACTIONS(6308), 1, + [221071] = 3, + ACTIONS(1836), 1, anon_sym_LBRACE, - STATE(3352), 1, - sym__block, + STATE(4785), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214082] = 3, - ACTIONS(1866), 1, - anon_sym_LBRACE, - STATE(3349), 1, - sym_lambda_literal, + [221082] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3678), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214093] = 3, - ACTIONS(8433), 1, + [221093] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(8671), 1, - sym__class_parameters, + STATE(3681), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214104] = 3, - ACTIONS(9551), 1, + [221104] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3677), 1, + STATE(2814), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214115] = 2, + [221115] = 3, + ACTIONS(4124), 1, + anon_sym_in, + ACTIONS(11920), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4723), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214124] = 2, + [221126] = 3, + ACTIONS(4287), 1, + anon_sym_while, + ACTIONS(11922), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214133] = 2, + [221137] = 3, + ACTIONS(4265), 1, + anon_sym_while, + ACTIONS(11924), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4859), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214142] = 3, - ACTIONS(5202), 1, + [221148] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3687), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221159] = 3, + ACTIONS(8640), 1, anon_sym_LPAREN, - STATE(4635), 1, + STATE(8723), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214153] = 3, - ACTIONS(9551), 1, + [221170] = 3, + ACTIONS(3212), 1, anon_sym_LPAREN, - STATE(3676), 1, - sym_function_value_parameters, + STATE(941), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214164] = 3, - ACTIONS(9543), 1, + [221181] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4877), 1, + STATE(3707), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214175] = 2, + [221192] = 3, + ACTIONS(6430), 1, + anon_sym_LBRACE, + STATE(3248), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214184] = 2, + [221203] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2906), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11745), 2, - sym__automatic_semicolon, - anon_sym_LBRACE, - [214193] = 3, - ACTIONS(9551), 1, + [221214] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3675), 1, + STATE(1264), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214204] = 3, - ACTIONS(10134), 1, + [221225] = 3, + ACTIONS(10407), 1, anon_sym_get, - ACTIONS(10136), 1, + ACTIONS(10409), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214215] = 3, - ACTIONS(9551), 1, + [221236] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3674), 1, + STATE(3564), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214226] = 3, - ACTIONS(9521), 1, + [221247] = 3, + ACTIONS(1904), 1, + anon_sym_LBRACE, + STATE(3076), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221258] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(864), 1, + STATE(3563), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214237] = 3, - ACTIONS(7680), 1, - anon_sym_RBRACE, - ACTIONS(11747), 1, - anon_sym_SEMI, + [221269] = 3, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4703), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221280] = 3, + ACTIONS(1904), 1, + anon_sym_LBRACE, + STATE(3165), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221291] = 3, + ACTIONS(3212), 1, + anon_sym_LPAREN, + STATE(999), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221302] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5176), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214248] = 3, - ACTIONS(9521), 1, + [221313] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(4686), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214259] = 3, - ACTIONS(9521), 1, + [221324] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(854), 1, + STATE(1290), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214270] = 3, - ACTIONS(9543), 1, + [221335] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(4862), 1, + STATE(2897), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214281] = 3, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(4815), 1, - sym_class_body, + [221346] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4696), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214292] = 3, - ACTIONS(9521), 1, + [221357] = 3, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(840), 1, + STATE(8349), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214303] = 3, - ACTIONS(9543), 1, + [221368] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(4865), 1, + STATE(3561), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214314] = 3, - ACTIONS(9535), 1, - anon_sym_LPAREN, - STATE(8273), 1, - sym_function_value_parameters, + [221379] = 3, + ACTIONS(11926), 1, + anon_sym_DOT, + STATE(9232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214325] = 3, - ACTIONS(25), 1, + [221390] = 3, + ACTIONS(10511), 1, + anon_sym_get, + ACTIONS(10513), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221401] = 3, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(5112), 1, - sym_lambda_literal, + STATE(4700), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214336] = 3, - ACTIONS(11749), 1, + [221412] = 3, + ACTIONS(11928), 1, anon_sym_DOT, - STATE(9143), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214347] = 3, - ACTIONS(7961), 1, - anon_sym_LBRACE, - STATE(4829), 1, - sym__block, + [221423] = 3, + ACTIONS(7812), 1, + anon_sym_RBRACE, + ACTIONS(11930), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214358] = 3, - ACTIONS(1856), 1, - anon_sym_LBRACE, - STATE(4819), 1, - sym_lambda_literal, + [221434] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3555), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214369] = 3, - ACTIONS(11751), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [221445] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221456] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(826), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214380] = 3, - ACTIONS(6308), 1, + [221467] = 3, + ACTIONS(1586), 1, anon_sym_LBRACE, - STATE(3007), 1, - sym__block, + STATE(3453), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214391] = 3, - ACTIONS(10458), 1, - anon_sym_get, - ACTIONS(10460), 1, - anon_sym_set, + [221478] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4697), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214402] = 3, - ACTIONS(6308), 1, - anon_sym_LBRACE, - STATE(2941), 1, - sym__block, + [221489] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(841), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214413] = 3, - ACTIONS(11753), 1, - anon_sym_DOT, - STATE(9152), 1, - aux_sym_user_type_repeat1, + [221500] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214424] = 2, + [221511] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4831), 2, + ACTIONS(11932), 2, sym__automatic_semicolon, - anon_sym_RBRACE, - [214433] = 2, + anon_sym_LBRACE, + [221520] = 3, + ACTIONS(10731), 1, + anon_sym_LPAREN, + STATE(9241), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4797), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214442] = 2, + [221531] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3041), 2, + ACTIONS(5105), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214451] = 2, + [221540] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(201), 2, + ACTIONS(5177), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214460] = 3, - ACTIONS(11755), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [221549] = 3, + ACTIONS(1836), 1, + anon_sym_LBRACE, + STATE(4724), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214471] = 3, - ACTIONS(11757), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [221560] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214482] = 3, - ACTIONS(8433), 1, + ACTIONS(3115), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221569] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(8725), 1, - sym__class_parameters, + STATE(1291), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214493] = 3, - ACTIONS(11759), 1, - anon_sym_DOT, - STATE(9157), 1, - aux_sym_user_type_repeat1, + [221580] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214504] = 3, - ACTIONS(10472), 1, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221589] = 3, + ACTIONS(10539), 1, anon_sym_get, - ACTIONS(10474), 1, + ACTIONS(10541), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214515] = 3, - ACTIONS(11761), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [221600] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214526] = 3, - ACTIONS(11763), 1, - anon_sym_DOT, - STATE(9153), 1, - aux_sym_user_type_repeat1, + [221611] = 3, + ACTIONS(8640), 1, + anon_sym_LPAREN, + STATE(8698), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214537] = 3, - ACTIONS(9563), 1, + [221622] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3530), 1, + STATE(4651), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214548] = 2, + [221633] = 3, + ACTIONS(5580), 1, + anon_sym_LPAREN, + STATE(4664), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11171), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [214557] = 3, - ACTIONS(11765), 1, + [221644] = 3, + ACTIONS(11934), 1, anon_sym_DOT, - STATE(9164), 1, + STATE(9422), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214568] = 2, + [221655] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(4145), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214577] = 3, - ACTIONS(11767), 1, - anon_sym_DOT, - STATE(9320), 1, - aux_sym_user_type_repeat1, + [221666] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214588] = 3, - ACTIONS(11769), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + ACTIONS(4162), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221675] = 3, + ACTIONS(10655), 1, + anon_sym_get, + ACTIONS(10657), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214599] = 2, + [221686] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4476), 2, + ACTIONS(4964), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214608] = 3, - ACTIONS(1614), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [214619] = 2, + [221695] = 3, + ACTIONS(9789), 1, + anon_sym_LPAREN, + STATE(8353), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4761), 2, + [221706] = 3, + ACTIONS(11936), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [214628] = 3, - ACTIONS(7688), 1, - anon_sym_RBRACE, - ACTIONS(11771), 1, - anon_sym_SEMI, + STATE(9430), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214639] = 3, - ACTIONS(9535), 1, + [221717] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(8287), 1, + STATE(4661), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214650] = 2, + [221728] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(2883), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5134), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214659] = 3, - ACTIONS(11773), 1, - sym__automatic_semicolon, - STATE(9321), 1, - sym__semi, + [221739] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214670] = 2, + ACTIONS(11938), 2, + sym__import_list_delimiter, + anon_sym_import, + [221748] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11775), 2, - sym__import_list_delimiter, - anon_sym_import, - [214679] = 3, - ACTIONS(11777), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + ACTIONS(11940), 2, + anon_sym_COMMA, + anon_sym_GT, + [221757] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214690] = 3, - ACTIONS(8347), 1, + ACTIONS(1734), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221766] = 3, + ACTIONS(8513), 1, anon_sym_LPAREN, - STATE(8493), 1, + STATE(8608), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214701] = 3, - ACTIONS(10258), 1, - anon_sym_get, - ACTIONS(10260), 1, - anon_sym_set, + [221777] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2771), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214712] = 2, + [221788] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3208), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214721] = 3, - ACTIONS(11779), 1, + ACTIONS(11403), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [221797] = 3, + ACTIONS(11942), 1, anon_sym_DOT, - STATE(9173), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214732] = 3, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(8562), 1, - sym__block, + [221808] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4904), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214743] = 3, - ACTIONS(10148), 1, + [221819] = 3, + ACTIONS(10613), 1, anon_sym_get, - ACTIONS(10150), 1, + ACTIONS(10615), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214754] = 3, - ACTIONS(11781), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [214765] = 3, - ACTIONS(11783), 1, - anon_sym_DOT, - STATE(9180), 1, - aux_sym_user_type_repeat1, + [221830] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214776] = 3, - ACTIONS(5412), 1, + ACTIONS(3274), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221839] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(3665), 1, - sym__class_parameters, + STATE(2789), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214787] = 3, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(8445), 1, - sym__block, + [221850] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214798] = 3, - ACTIONS(7684), 1, + ACTIONS(4495), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(11785), 1, - anon_sym_SEMI, + [221859] = 3, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214809] = 2, + [221870] = 3, + ACTIONS(11946), 1, + sym__automatic_semicolon, + STATE(3515), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214818] = 2, + [221881] = 3, + ACTIONS(11948), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4492), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214827] = 2, + [221892] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4997), 2, + ACTIONS(5193), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214836] = 3, - ACTIONS(3174), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_class_body, + [221901] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214847] = 3, - ACTIONS(9953), 1, - anon_sym_get, - ACTIONS(9955), 1, - anon_sym_set, + ACTIONS(5155), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221910] = 3, + ACTIONS(11950), 1, + anon_sym_DOT, + STATE(9277), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214858] = 3, - ACTIONS(11787), 1, + [221921] = 3, + ACTIONS(11952), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(9269), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214869] = 3, - ACTIONS(10372), 1, + [221932] = 3, + ACTIONS(10375), 1, anon_sym_get, - ACTIONS(10374), 1, + ACTIONS(10377), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214880] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(4034), 1, - sym_function_value_parameters, + [221943] = 3, + ACTIONS(11954), 1, + anon_sym_DOT, + STATE(9286), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214891] = 3, - ACTIONS(11789), 1, - anon_sym_DOT, - STATE(9190), 1, - aux_sym_user_type_repeat1, + [221954] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214902] = 2, + ACTIONS(11956), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [221963] = 3, + ACTIONS(11958), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5130), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214911] = 2, + [221974] = 3, + ACTIONS(11960), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4961), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214920] = 3, - ACTIONS(9535), 1, - anon_sym_LPAREN, - STATE(8286), 1, - sym_function_value_parameters, + [221985] = 3, + ACTIONS(11962), 1, + anon_sym_DOT, + STATE(9285), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214931] = 3, - ACTIONS(11791), 1, + [221996] = 3, + ACTIONS(11964), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(9295), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214942] = 3, - ACTIONS(4073), 1, + [222007] = 3, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(1134), 1, + STATE(8610), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214953] = 3, - ACTIONS(1614), 1, - anon_sym_LBRACE, - STATE(1151), 1, - sym_lambda_literal, + [222018] = 3, + ACTIONS(11966), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214964] = 3, - ACTIONS(5456), 1, - anon_sym_LBRACE, - STATE(5126), 1, - sym_class_body, + [222029] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214975] = 3, - ACTIONS(11793), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + ACTIONS(3290), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222038] = 3, + ACTIONS(11968), 1, + anon_sym_COLON, + ACTIONS(11970), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214986] = 3, - ACTIONS(11795), 1, + [222049] = 3, + ACTIONS(11972), 1, anon_sym_DOT, - STATE(9201), 1, + STATE(9290), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214997] = 3, - ACTIONS(10272), 1, - anon_sym_get, - ACTIONS(10274), 1, - anon_sym_set, + [222060] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215008] = 3, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(8640), 1, - sym_function_value_parameters, + ACTIONS(5109), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222069] = 3, + ACTIONS(11974), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215019] = 2, + [222080] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4757), 2, + ACTIONS(4139), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215028] = 2, + [222089] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4753), 2, + ACTIONS(4357), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215037] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4731), 2, - sym__automatic_semicolon, + [222098] = 3, + ACTIONS(7691), 1, anon_sym_RBRACE, - [215046] = 2, + ACTIONS(11976), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11797), 2, - anon_sym_COMMA, - anon_sym_GT, - [215055] = 3, - ACTIONS(11799), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [222109] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(2798), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215066] = 3, - ACTIONS(11801), 1, - anon_sym_DOT, - STATE(9209), 1, - aux_sym_user_type_repeat1, + [222120] = 3, + ACTIONS(11978), 1, + anon_sym_LBRACE, + STATE(3664), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215077] = 3, - ACTIONS(10498), 1, + [222131] = 3, + ACTIONS(11978), 1, anon_sym_LBRACE, - STATE(9385), 1, + STATE(3672), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215088] = 2, + [222142] = 3, + ACTIONS(10627), 1, + anon_sym_get, + ACTIONS(10629), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1698), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215097] = 3, - ACTIONS(11803), 1, - anon_sym_DOT, - STATE(9197), 1, - aux_sym_user_type_repeat1, + [222153] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215108] = 3, - ACTIONS(11805), 1, + ACTIONS(5151), 2, sym__automatic_semicolon, - STATE(5661), 1, - sym__semi, + anon_sym_RBRACE, + [222162] = 3, + ACTIONS(9825), 1, + anon_sym_LPAREN, + STATE(8328), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215119] = 3, - ACTIONS(9521), 1, + [222173] = 3, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(833), 1, + STATE(8344), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215130] = 3, - ACTIONS(9521), 1, + [222184] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(794), 1, + STATE(4649), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215141] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(788), 1, - sym_function_value_parameters, + [222195] = 3, + ACTIONS(11980), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215152] = 3, - ACTIONS(9521), 1, + [222206] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(2805), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215163] = 3, - ACTIONS(11807), 1, + [222217] = 3, + ACTIONS(6511), 1, anon_sym_LBRACE, - STATE(3585), 1, + STATE(3440), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215174] = 3, - ACTIONS(11807), 1, - anon_sym_LBRACE, - STATE(3561), 1, - sym__block, + [222228] = 3, + ACTIONS(10451), 1, + anon_sym_get, + ACTIONS(10453), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215185] = 3, - ACTIONS(5412), 1, - anon_sym_LPAREN, - STATE(3661), 1, - sym__class_parameters, + [222239] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215196] = 3, - ACTIONS(9551), 1, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222248] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2831), 1, + STATE(1227), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215207] = 3, - ACTIONS(9551), 1, + [222259] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2830), 1, + STATE(1232), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215218] = 3, - ACTIONS(10522), 1, - anon_sym_LBRACE, - STATE(8423), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [215229] = 2, + [222270] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(1235), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5126), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215238] = 3, - ACTIONS(9551), 1, + [222281] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2833), 1, + STATE(1207), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215249] = 3, - ACTIONS(11809), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [222292] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3323), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215260] = 3, - ACTIONS(11811), 1, + [222303] = 3, + ACTIONS(11982), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215271] = 3, - ACTIONS(9551), 1, + [222314] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(2836), 1, + STATE(3274), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215282] = 3, - ACTIONS(11813), 1, + [222325] = 3, + ACTIONS(11984), 1, anon_sym_DOT, - STATE(9228), 1, + STATE(9317), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215293] = 3, - ACTIONS(9563), 1, + [222336] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(2853), 1, + STATE(814), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215304] = 2, + [222347] = 3, + ACTIONS(9745), 1, + anon_sym_LPAREN, + STATE(3273), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215313] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(4052), 1, - sym_function_value_parameters, + [222358] = 3, + ACTIONS(10224), 1, + anon_sym_get, + ACTIONS(10226), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215324] = 3, - ACTIONS(11815), 1, + [222369] = 3, + ACTIONS(11986), 1, anon_sym_DOT, - STATE(9227), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215335] = 3, - ACTIONS(9563), 1, + [222380] = 3, + ACTIONS(9745), 1, anon_sym_LPAREN, - STATE(2863), 1, + STATE(3322), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215346] = 3, - ACTIONS(11817), 1, + [222391] = 3, + ACTIONS(11988), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(9323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215357] = 3, - ACTIONS(11819), 1, + [222402] = 3, + ACTIONS(9801), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222413] = 3, + ACTIONS(11990), 1, anon_sym_DOT, - STATE(9236), 1, + STATE(9307), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215368] = 3, - ACTIONS(9563), 1, + [222424] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(3317), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215379] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4981), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215388] = 3, - ACTIONS(10522), 1, + [222435] = 3, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(8483), 1, + STATE(8484), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215399] = 3, - ACTIONS(11821), 1, - anon_sym_DOT, - STATE(9249), 1, - aux_sym_user_type_repeat1, + [222446] = 3, + ACTIONS(9789), 1, + anon_sym_LPAREN, + STATE(8339), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215410] = 3, - ACTIONS(9535), 1, + [222457] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(8282), 1, + STATE(3316), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215421] = 3, - ACTIONS(9605), 1, + [222468] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3156), 1, + STATE(815), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215432] = 3, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(4897), 1, - sym__block, + [222479] = 3, + ACTIONS(11992), 1, + anon_sym_DOT, + STATE(9275), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215443] = 3, - ACTIONS(7643), 1, - anon_sym_RBRACE, - ACTIONS(11823), 1, - anon_sym_SEMI, + [222490] = 3, + ACTIONS(11994), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215454] = 3, - ACTIONS(9605), 1, + [222501] = 3, + ACTIONS(9801), 1, anon_sym_LPAREN, - STATE(3142), 1, + STATE(3314), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215465] = 2, + [222512] = 3, + ACTIONS(11996), 1, + anon_sym_DOT, + STATE(9350), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5118), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215474] = 3, - ACTIONS(10244), 1, - anon_sym_get, - ACTIONS(10246), 1, - anon_sym_set, + [222523] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8510), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215485] = 3, - ACTIONS(11825), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [222534] = 3, + ACTIONS(9797), 1, + anon_sym_LPAREN, + STATE(4957), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215496] = 3, - ACTIONS(9605), 1, + [222545] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3139), 1, + STATE(4788), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215507] = 3, - ACTIONS(7961), 1, - anon_sym_LBRACE, - STATE(4552), 1, - sym__block, + [222556] = 3, + ACTIONS(9827), 1, + anon_sym_LPAREN, + STATE(818), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215518] = 3, - ACTIONS(7961), 1, + [222567] = 3, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4555), 1, + STATE(4598), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215529] = 3, - ACTIONS(10522), 1, + [222578] = 3, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(8417), 1, + STATE(4596), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215540] = 3, - ACTIONS(9519), 1, - anon_sym_LPAREN, - STATE(8265), 1, - sym_function_value_parameters, + [222589] = 3, + ACTIONS(11998), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215551] = 3, - ACTIONS(9605), 1, + [222600] = 3, + ACTIONS(9827), 1, anon_sym_LPAREN, - STATE(3109), 1, + STATE(822), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215562] = 3, - ACTIONS(9547), 1, + [222611] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4702), 1, + STATE(4084), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215573] = 2, + [222622] = 3, + ACTIONS(5822), 1, + anon_sym_LPAREN, + STATE(3747), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215582] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(4101), 1, - sym_function_value_parameters, + [222633] = 3, + ACTIONS(12000), 1, + anon_sym_DOT, + STATE(9364), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215593] = 3, - ACTIONS(9547), 1, + [222644] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(5227), 1, + STATE(4078), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215604] = 3, - ACTIONS(11827), 1, - anon_sym_COLON, - ACTIONS(11829), 1, - anon_sym_RPAREN, + [222655] = 3, + ACTIONS(5788), 1, + anon_sym_LBRACE, + STATE(5094), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215615] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(5209), 1, - sym_function_value_parameters, + [222666] = 3, + ACTIONS(12002), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215626] = 3, - ACTIONS(11831), 1, + [222677] = 3, + ACTIONS(12004), 1, anon_sym_DOT, - STATE(9263), 1, + STATE(9352), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215637] = 3, - ACTIONS(11833), 1, + [222688] = 3, + ACTIONS(12006), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215648] = 3, - ACTIONS(9547), 1, + [222699] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(5196), 1, + STATE(8699), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215659] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(5184), 1, - sym_function_value_parameters, + [222710] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215670] = 3, - ACTIONS(6339), 1, + ACTIONS(5147), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222719] = 3, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(3464), 1, + STATE(9590), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215681] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7521), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [215690] = 3, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(5138), 1, - sym__block, + [222730] = 3, + ACTIONS(12008), 1, + sym__automatic_semicolon, + STATE(5698), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215701] = 3, - ACTIONS(9543), 1, + [222741] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4644), 1, + STATE(4954), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215712] = 3, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4642), 1, - sym_function_value_parameters, + [222752] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215723] = 3, - ACTIONS(9543), 1, - anon_sym_LPAREN, - STATE(4617), 1, - sym_function_value_parameters, + ACTIONS(4852), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222761] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215734] = 3, - ACTIONS(10444), 1, - anon_sym_get, - ACTIONS(10446), 1, - anon_sym_set, + ACTIONS(5207), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222770] = 3, + ACTIONS(6430), 1, + anon_sym_LBRACE, + STATE(2934), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215745] = 3, - ACTIONS(9543), 1, + [222781] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4509), 1, + STATE(4535), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215756] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(4084), 1, - sym_function_value_parameters, + [222792] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215767] = 3, - ACTIONS(11835), 1, + ACTIONS(11466), 2, + anon_sym_COMMA, + anon_sym_GT, + [222801] = 3, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(2935), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215778] = 3, - ACTIONS(9543), 1, + [222812] = 3, + ACTIONS(12010), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222823] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4507), 1, + STATE(4076), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215789] = 2, + [222834] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8618), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11837), 2, - anon_sym_COMMA, - anon_sym_GT, - [215798] = 3, - ACTIONS(9543), 1, + [222845] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(4590), 1, + STATE(8327), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215809] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(4003), 1, - sym_function_value_parameters, + [222856] = 3, + ACTIONS(10553), 1, + anon_sym_get, + ACTIONS(10555), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215820] = 3, - ACTIONS(9543), 1, + [222867] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(4506), 1, + STATE(4074), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215831] = 2, + [222878] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4895), 2, + ACTIONS(4920), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215840] = 3, - ACTIONS(10288), 1, - anon_sym_get, - ACTIONS(10290), 1, - anon_sym_set, + [222887] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215851] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(3997), 1, - sym_function_value_parameters, + ACTIONS(11479), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222896] = 3, + ACTIONS(12012), 1, + anon_sym_COLON, + ACTIONS(12014), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215862] = 3, - ACTIONS(10214), 1, - anon_sym_get, - ACTIONS(10216), 1, - anon_sym_set, + [222907] = 3, + ACTIONS(12016), 1, + anon_sym_LBRACE, + STATE(3104), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215873] = 3, - ACTIONS(9543), 1, + [222918] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(4504), 1, + STATE(4642), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215884] = 3, - ACTIONS(9605), 1, + [222929] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3992), 1, + STATE(4647), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215895] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4917), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215904] = 3, - ACTIONS(9605), 1, - anon_sym_LPAREN, - STATE(3983), 1, - sym_function_value_parameters, + [222940] = 3, + ACTIONS(10597), 1, + anon_sym_get, + ACTIONS(10599), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215915] = 3, - ACTIONS(9563), 1, + [222951] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(3091), 1, + STATE(8664), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215926] = 3, - ACTIONS(25), 1, - anon_sym_LBRACE, - STATE(5145), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [215937] = 2, + [222962] = 3, + ACTIONS(12018), 1, + anon_sym_DOT, + STATE(9343), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11839), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [215946] = 3, - ACTIONS(11835), 1, + [222973] = 3, + ACTIONS(12016), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(3106), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215957] = 3, - ACTIONS(9563), 1, + [222984] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3090), 1, + STATE(4725), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215968] = 3, - ACTIONS(9563), 1, + [222995] = 3, + ACTIONS(9797), 1, anon_sym_LPAREN, - STATE(3084), 1, + STATE(4667), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215979] = 3, - ACTIONS(5190), 1, - anon_sym_LPAREN, - STATE(3082), 1, - sym__class_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [215990] = 3, - ACTIONS(9563), 1, - anon_sym_LPAREN, - STATE(3079), 1, - sym_function_value_parameters, + [223006] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216001] = 2, + ACTIONS(7801), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223015] = 3, + ACTIONS(8223), 1, + anon_sym_LBRACE, + STATE(5205), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5084), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216010] = 3, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3556), 1, - sym_function_value_parameters, + [223026] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216021] = 3, - ACTIONS(9547), 1, + ACTIONS(11488), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223035] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(4807), 1, + STATE(4640), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216032] = 3, - ACTIONS(10400), 1, - anon_sym_get, - ACTIONS(10402), 1, - anon_sym_set, + [223046] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216043] = 2, + ACTIONS(12020), 2, + anon_sym_COMMA, + anon_sym_GT, + [223055] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4219), 2, + ACTIONS(5079), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216052] = 3, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3558), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216063] = 3, - ACTIONS(8043), 1, - anon_sym_LBRACE, - STATE(4895), 1, - sym__block, + [223064] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216074] = 3, - ACTIONS(7531), 1, + ACTIONS(5211), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(11841), 1, - anon_sym_SEMI, + [223073] = 3, + ACTIONS(10567), 1, + anon_sym_get, + ACTIONS(10569), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216085] = 2, + [223084] = 3, + ACTIONS(12022), 1, + anon_sym_DOT, + STATE(9394), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4703), 2, - sym__automatic_semicolon, + [223095] = 3, + ACTIONS(7699), 1, anon_sym_RBRACE, - [216094] = 3, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3559), 1, - sym_function_value_parameters, + ACTIONS(12024), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216105] = 3, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(3551), 1, - sym_function_value_parameters, + [223106] = 3, + ACTIONS(10423), 1, + anon_sym_get, + ACTIONS(10425), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216116] = 2, + [223117] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3342), 2, + ACTIONS(5215), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216125] = 3, - ACTIONS(11843), 1, - sym__automatic_semicolon, - STATE(3605), 1, - sym__semi, + [223126] = 3, + ACTIONS(12026), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216136] = 2, + [223137] = 3, + ACTIONS(9729), 1, + anon_sym_LPAREN, + STATE(3358), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4514), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216145] = 2, + [223148] = 3, + ACTIONS(12028), 1, + anon_sym_DOT, + STATE(9334), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 2, - sym__automatic_semicolon, + [223159] = 3, + ACTIONS(7822), 1, anon_sym_RBRACE, - [216154] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1213), 1, - sym_function_value_parameters, + ACTIONS(12030), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216165] = 2, + [223170] = 3, + ACTIONS(1658), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5102), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216174] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1219), 1, - sym_function_value_parameters, + [223181] = 3, + ACTIONS(12032), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216185] = 3, - ACTIONS(11845), 1, - anon_sym_COLON, - ACTIONS(11847), 1, - anon_sym_RPAREN, + [223192] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5245), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216196] = 3, - ACTIONS(9563), 1, - anon_sym_LPAREN, - STATE(4024), 1, - sym_function_value_parameters, + [223203] = 3, + ACTIONS(10483), 1, + anon_sym_get, + ACTIONS(10485), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216207] = 2, + [223214] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4921), 2, + ACTIONS(4323), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216216] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1225), 1, - sym_function_value_parameters, + [223223] = 3, + ACTIONS(10361), 1, + anon_sym_get, + ACTIONS(10363), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216227] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1215), 1, - sym_function_value_parameters, + [223234] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216238] = 3, - ACTIONS(11849), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + ACTIONS(5123), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223243] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216249] = 2, + ACTIONS(1798), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223252] = 3, + ACTIONS(10641), 1, + anon_sym_get, + ACTIONS(10643), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11851), 2, - sym__import_list_delimiter, - anon_sym_import, - [216258] = 2, + [223263] = 3, + ACTIONS(1646), 1, + anon_sym_LBRACE, + STATE(3983), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4863), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216267] = 3, - ACTIONS(10302), 1, - anon_sym_get, - ACTIONS(10304), 1, - anon_sym_set, + [223274] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(5242), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216278] = 3, - ACTIONS(11853), 1, + [223285] = 3, + ACTIONS(12034), 1, anon_sym_DOT, - STATE(9329), 1, + STATE(9399), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216289] = 3, - ACTIONS(11855), 1, - anon_sym_DOT, - STATE(9327), 1, - aux_sym_user_type_repeat1, + [223296] = 3, + ACTIONS(1586), 1, + anon_sym_LBRACE, + STATE(3437), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216300] = 3, - ACTIONS(5190), 1, - anon_sym_LPAREN, - STATE(3169), 1, - sym__class_parameters, + [223307] = 3, + ACTIONS(4145), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216311] = 3, - ACTIONS(11857), 1, - anon_sym_DOT, - STATE(8022), 1, - aux_sym_user_type_repeat1, + [223318] = 3, + ACTIONS(12036), 1, + sym__automatic_semicolon, + STATE(3405), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216322] = 3, - ACTIONS(9563), 1, + [223329] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3971), 1, + STATE(4869), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216333] = 3, - ACTIONS(11859), 1, + [223340] = 3, + ACTIONS(12038), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(9416), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216344] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4646), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216355] = 3, - ACTIONS(7682), 1, - anon_sym_RBRACE, - ACTIONS(11861), 1, - anon_sym_SEMI, + [223351] = 3, + ACTIONS(10525), 1, + anon_sym_get, + ACTIONS(10527), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216366] = 3, - ACTIONS(11863), 1, + [223362] = 3, + ACTIONS(12040), 1, anon_sym_DOT, - STATE(9335), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216377] = 3, - ACTIONS(9563), 1, + [223373] = 3, + ACTIONS(9765), 1, anon_sym_LPAREN, - STATE(3994), 1, + STATE(4695), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216388] = 2, + [223384] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 2, + ACTIONS(4218), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216397] = 3, - ACTIONS(11865), 1, + [223393] = 3, + ACTIONS(12042), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(9431), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216408] = 3, - ACTIONS(9563), 1, + [223404] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(4005), 1, + STATE(8326), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216419] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216428] = 2, + [223415] = 3, + ACTIONS(5772), 1, + anon_sym_LPAREN, + STATE(4982), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4118), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216437] = 3, - ACTIONS(11867), 1, + [223426] = 3, + ACTIONS(12044), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(8038), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216448] = 3, - ACTIONS(4779), 1, - anon_sym_while, - ACTIONS(11869), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216459] = 3, - ACTIONS(4769), 1, - anon_sym_while, - ACTIONS(11871), 1, - anon_sym_LPAREN, + [223437] = 3, + ACTIONS(1658), 1, + anon_sym_LBRACE, + STATE(1018), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216470] = 2, + [223448] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 2, + ACTIONS(5119), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216479] = 3, - ACTIONS(5447), 1, - anon_sym_LPAREN, - STATE(4972), 1, - sym__class_parameters, + [223457] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216490] = 3, - ACTIONS(10118), 1, - anon_sym_get, - ACTIONS(10120), 1, - anon_sym_set, + ACTIONS(11659), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [223466] = 3, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(8542), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216501] = 3, - ACTIONS(8347), 1, + [223477] = 3, + ACTIONS(5772), 1, anon_sym_LPAREN, - STATE(8499), 1, + STATE(5051), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216512] = 3, - ACTIONS(1624), 1, - anon_sym_LBRACE, - STATE(3772), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216523] = 3, - ACTIONS(3124), 1, + [223488] = 3, + ACTIONS(5760), 1, anon_sym_LPAREN, - STATE(3126), 1, + STATE(5232), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216534] = 3, - ACTIONS(11873), 1, - anon_sym_DOT, - STATE(9339), 1, - aux_sym_user_type_repeat1, + [223499] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216545] = 2, + ACTIONS(4149), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223508] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3198), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216554] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1270), 1, - sym_function_value_parameters, + ACTIONS(12046), 2, + sym__import_list_delimiter, + anon_sym_import, + [223517] = 3, + ACTIONS(12048), 1, + anon_sym_DOT, + STATE(8038), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216565] = 2, + [223528] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11093), 2, + ACTIONS(5201), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216574] = 3, - ACTIONS(9519), 1, + [223537] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(8267), 1, + STATE(5302), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216585] = 3, - ACTIONS(4149), 1, - anon_sym_in, - ACTIONS(11875), 1, - anon_sym_COLON, + [223548] = 3, + ACTIONS(7687), 1, + anon_sym_RBRACE, + ACTIONS(12050), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216596] = 3, - ACTIONS(9551), 1, + [223559] = 3, + ACTIONS(9825), 1, anon_sym_LPAREN, - STATE(2887), 1, + STATE(8329), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216607] = 3, - ACTIONS(4324), 1, - anon_sym_while, - ACTIONS(11877), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216618] = 3, - ACTIONS(4298), 1, - anon_sym_while, - ACTIONS(11879), 1, + [223570] = 3, + ACTIONS(5822), 1, anon_sym_LPAREN, + STATE(3714), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216629] = 3, - ACTIONS(1624), 1, - anon_sym_LBRACE, - STATE(3899), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216640] = 3, - ACTIONS(10358), 1, - anon_sym_get, - ACTIONS(10360), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216651] = 3, - ACTIONS(9521), 1, + [223581] = 3, + ACTIONS(9729), 1, anon_sym_LPAREN, - STATE(1262), 1, + STATE(4129), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216662] = 2, + [223592] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11395), 2, + ACTIONS(11540), 2, anon_sym_COMMA, - anon_sym_DASH_GT, - [216671] = 3, - ACTIONS(10510), 1, - anon_sym_AMP, - ACTIONS(11881), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216682] = 3, - ACTIONS(10198), 1, - anon_sym_get, - ACTIONS(10200), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216693] = 3, - ACTIONS(9521), 1, - anon_sym_LPAREN, - STATE(1279), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216704] = 3, - ACTIONS(7645), 1, - anon_sym_RBRACE, - ACTIONS(11883), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216715] = 3, - ACTIONS(6564), 1, - anon_sym_LBRACE, - STATE(3955), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216726] = 3, - ACTIONS(9519), 1, + [223601] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(8644), 1, + STATE(5303), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216737] = 2, + [223612] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1782), 2, + ACTIONS(5221), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [216746] = 3, - ACTIONS(3176), 1, - anon_sym_LPAREN, - STATE(964), 1, - sym__class_parameters, + [223621] = 3, + ACTIONS(1646), 1, + anon_sym_LBRACE, + STATE(3989), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216757] = 3, - ACTIONS(5410), 1, + [223632] = 3, + ACTIONS(3210), 1, anon_sym_LBRACE, - STATE(3871), 1, + STATE(1125), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216768] = 3, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(2894), 1, - sym_function_value_parameters, + [223643] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216779] = 3, - ACTIONS(10344), 1, + ACTIONS(4646), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223652] = 3, + ACTIONS(10669), 1, anon_sym_get, - ACTIONS(10346), 1, + ACTIONS(10671), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216790] = 3, - ACTIONS(9551), 1, - anon_sym_LPAREN, - STATE(2919), 1, - sym_function_value_parameters, + [223663] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216801] = 3, - ACTIONS(5447), 1, + ACTIONS(4329), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223672] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4950), 1, - sym__class_parameters, + STATE(5306), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216812] = 3, - ACTIONS(9547), 1, - anon_sym_LPAREN, - STATE(4784), 1, - sym_function_value_parameters, + [223683] = 3, + ACTIONS(10437), 1, + anon_sym_get, + ACTIONS(10439), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216823] = 3, - ACTIONS(3124), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym__class_parameters, + [223694] = 3, + ACTIONS(10469), 1, + anon_sym_get, + ACTIONS(10471), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216834] = 3, - ACTIONS(9551), 1, + [223705] = 3, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2889), 1, + STATE(5310), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216845] = 3, - ACTIONS(3176), 1, - anon_sym_LPAREN, - STATE(976), 1, - sym__class_parameters, + [223716] = 3, + ACTIONS(6714), 1, + anon_sym_LBRACE, + STATE(3862), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216856] = 3, - ACTIONS(7541), 1, - anon_sym_RBRACE, - ACTIONS(11885), 1, - anon_sym_SEMI, + [223727] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216867] = 2, - ACTIONS(11509), 1, + ACTIONS(11589), 2, + anon_sym_COMMA, anon_sym_DASH_GT, + [223736] = 3, + ACTIONS(5836), 1, + anon_sym_LBRACE, + STATE(3841), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216875] = 2, - ACTIONS(11887), 1, - anon_sym_COLON, + [223747] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216883] = 2, - ACTIONS(11889), 1, + ACTIONS(4361), 2, + sym__automatic_semicolon, anon_sym_RBRACE, + [223756] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216891] = 2, - ACTIONS(11891), 1, + ACTIONS(12052), 2, + anon_sym_COMMA, + anon_sym_GT, + [223765] = 3, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(12054), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216899] = 2, - ACTIONS(5126), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216907] = 2, - ACTIONS(11893), 1, - anon_sym_RPAREN, + [223776] = 3, + ACTIONS(8513), 1, + anon_sym_LPAREN, + STATE(8497), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216915] = 2, - ACTIONS(11895), 1, - sym__automatic_semicolon, + [223787] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216923] = 2, - ACTIONS(11331), 1, - anon_sym_RPAREN, + ACTIONS(11594), 2, + anon_sym_COMMA, + anon_sym_GT, + [223796] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216931] = 2, - ACTIONS(11897), 1, - anon_sym_RPAREN, + ACTIONS(11238), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223805] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(4814), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216939] = 2, - ACTIONS(11278), 1, - anon_sym_RPAREN, + [223816] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216947] = 2, - ACTIONS(11899), 1, - anon_sym_DASH_GT, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223825] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216955] = 2, - ACTIONS(11901), 1, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223834] = 2, + ACTIONS(12056), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216963] = 2, - ACTIONS(4863), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216971] = 2, - ACTIONS(4268), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216979] = 2, - ACTIONS(11903), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216987] = 2, - ACTIONS(1596), 1, + [223842] = 2, + ACTIONS(1624), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216995] = 2, - ACTIONS(3198), 1, + [223850] = 2, + ACTIONS(4149), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217003] = 2, - ACTIONS(11905), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217011] = 2, - ACTIONS(11907), 1, + [223858] = 2, + ACTIONS(12058), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217019] = 2, - ACTIONS(11909), 1, + [223866] = 2, + ACTIONS(12060), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217027] = 2, - ACTIONS(1782), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217035] = 2, - ACTIONS(11911), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217043] = 2, - ACTIONS(10490), 1, + [223874] = 2, + ACTIONS(12062), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217051] = 2, - ACTIONS(11369), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217059] = 2, - ACTIONS(4118), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217067] = 2, - ACTIONS(4921), 1, + [223882] = 2, + ACTIONS(12064), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217075] = 2, - ACTIONS(4067), 1, - anon_sym_while, + [223890] = 2, + ACTIONS(12066), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217083] = 2, - ACTIONS(11298), 1, - anon_sym_RPAREN, + [223898] = 2, + ACTIONS(12068), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217091] = 2, - ACTIONS(4961), 1, + [223906] = 2, + ACTIONS(5215), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217099] = 2, - ACTIONS(11913), 1, - anon_sym_object, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217107] = 2, - ACTIONS(4997), 1, - anon_sym_while, + [223914] = 2, + ACTIONS(12070), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217115] = 2, - ACTIONS(4492), 1, - anon_sym_while, + [223922] = 2, + ACTIONS(12072), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217123] = 2, - ACTIONS(5134), 1, - anon_sym_while, + [223930] = 2, + ACTIONS(12074), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217131] = 2, - ACTIONS(11915), 1, - anon_sym_DASH_GT, + [223938] = 2, + ACTIONS(12076), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217139] = 2, - ACTIONS(4250), 1, + [223946] = 2, + ACTIONS(12078), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217147] = 2, - ACTIONS(11917), 1, - anon_sym_DASH_GT, + [223954] = 2, + ACTIONS(12080), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217155] = 2, - ACTIONS(3280), 1, + [223962] = 2, + ACTIONS(5211), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217163] = 2, - ACTIONS(11919), 1, - anon_sym_RBRACE, + [223970] = 2, + ACTIONS(11570), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217171] = 2, - ACTIONS(11921), 1, - anon_sym_RBRACE, + [223978] = 2, + ACTIONS(12082), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217179] = 2, - ACTIONS(11923), 1, - anon_sym_RPAREN, + [223986] = 2, + ACTIONS(11245), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217187] = 2, - ACTIONS(11925), 1, - anon_sym_else, + [223994] = 2, + ACTIONS(12084), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217195] = 2, - ACTIONS(11927), 1, - anon_sym_RPAREN, + [224002] = 2, + ACTIONS(12086), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217203] = 2, - ACTIONS(1772), 1, + [224010] = 2, + ACTIONS(5207), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217211] = 2, - ACTIONS(5106), 1, + [224018] = 2, + ACTIONS(12088), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217219] = 2, - ACTIONS(11929), 1, + [224026] = 2, + ACTIONS(9898), 1, sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217227] = 2, - ACTIONS(11931), 1, + [224034] = 2, + ACTIONS(12090), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217235] = 2, - ACTIONS(11933), 1, + [224042] = 2, + ACTIONS(12092), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217243] = 2, - ACTIONS(5076), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217251] = 2, - ACTIONS(5072), 1, - anon_sym_while, + [224050] = 2, + ACTIONS(11646), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217259] = 2, - ACTIONS(11935), 1, - anon_sym_DASH_GT, + [224058] = 2, + ACTIONS(10693), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217267] = 2, - ACTIONS(11937), 1, + [224066] = 2, + ACTIONS(1618), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217275] = 2, - ACTIONS(11939), 1, - anon_sym_RBRACE, + [224074] = 2, + ACTIONS(12094), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217283] = 2, - ACTIONS(11294), 1, - anon_sym_RPAREN, + [224082] = 2, + ACTIONS(12096), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217291] = 2, - ACTIONS(11941), 1, - anon_sym_SQUOTE, + [224090] = 2, + ACTIONS(12098), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217299] = 2, - ACTIONS(11943), 1, + [224098] = 2, + ACTIONS(12100), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217307] = 2, - ACTIONS(3208), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217315] = 2, - ACTIONS(11945), 1, - anon_sym_COLON, + [224106] = 2, + ACTIONS(11492), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217323] = 2, - ACTIONS(11947), 1, - anon_sym_COLON, + [224114] = 2, + ACTIONS(12102), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217331] = 2, - ACTIONS(11949), 1, + [224122] = 2, + ACTIONS(12104), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217339] = 2, - ACTIONS(11951), 1, - anon_sym_while, + [224130] = 2, + ACTIONS(12106), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217347] = 2, - ACTIONS(11357), 1, + [224138] = 2, + ACTIONS(11544), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217355] = 2, - ACTIONS(11953), 1, - anon_sym_COLON, + [224146] = 2, + ACTIONS(3290), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217363] = 2, - ACTIONS(3041), 1, - anon_sym_while, + [224154] = 2, + ACTIONS(12108), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217371] = 2, - ACTIONS(11955), 1, - anon_sym_COLON, + [224162] = 2, + ACTIONS(12110), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217379] = 2, - ACTIONS(11957), 1, + [224170] = 2, + ACTIONS(4214), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217387] = 2, - ACTIONS(11959), 1, - anon_sym_RPAREN, + [224178] = 2, + ACTIONS(12112), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217395] = 2, - ACTIONS(11961), 1, - anon_sym_RBRACE, + [224186] = 2, + ACTIONS(12114), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217403] = 2, - ACTIONS(11963), 1, - anon_sym_else, + [224194] = 2, + ACTIONS(5221), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217411] = 2, - ACTIONS(5068), 1, - anon_sym_while, + [224202] = 2, + ACTIONS(12116), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217419] = 2, - ACTIONS(11965), 1, + [224210] = 2, + ACTIONS(12118), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217427] = 2, - ACTIONS(11967), 1, - anon_sym_DASH_GT, + [224218] = 2, + ACTIONS(12120), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217435] = 2, - ACTIONS(11969), 1, - anon_sym_RPAREN, + [224226] = 2, + ACTIONS(5193), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217443] = 2, - ACTIONS(11427), 1, + [224234] = 2, + ACTIONS(11654), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217451] = 2, - ACTIONS(11971), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217459] = 2, - ACTIONS(11264), 1, - anon_sym_RPAREN, + [224242] = 2, + ACTIONS(10727), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217467] = 2, - ACTIONS(11973), 1, + [224250] = 2, + ACTIONS(12122), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217475] = 2, - ACTIONS(1399), 1, - anon_sym_RBRACE, + [224258] = 2, + ACTIONS(4361), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217483] = 2, - ACTIONS(11975), 1, - anon_sym_RPAREN, + [224266] = 2, + ACTIONS(12124), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217491] = 2, - ACTIONS(11977), 1, - sym__automatic_semicolon, + [224274] = 2, + ACTIONS(12126), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217499] = 2, - ACTIONS(11979), 1, - anon_sym_EQ, + [224282] = 2, + ACTIONS(4495), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217507] = 2, - ACTIONS(11981), 1, - anon_sym_RBRACE, + [224290] = 2, + ACTIONS(12128), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217515] = 2, - ACTIONS(11983), 1, + [224298] = 2, + ACTIONS(12130), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217523] = 2, - ACTIONS(3216), 1, - anon_sym_while, + [224306] = 2, + ACTIONS(12132), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217531] = 2, - ACTIONS(11985), 1, - anon_sym_RPAREN, + [224314] = 2, + ACTIONS(1792), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217539] = 2, - ACTIONS(11987), 1, - anon_sym_RPAREN, + [224322] = 2, + ACTIONS(12134), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217547] = 2, - ACTIONS(11989), 1, + [224330] = 2, + ACTIONS(12136), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217555] = 2, - ACTIONS(10528), 1, - anon_sym_COLON, + [224338] = 2, + ACTIONS(12138), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217563] = 2, - ACTIONS(11991), 1, + [224346] = 2, + ACTIONS(12140), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217571] = 2, - ACTIONS(11993), 1, - anon_sym_RBRACE, + [224354] = 2, + ACTIONS(12142), 1, + anon_sym_file, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217579] = 2, - ACTIONS(11995), 1, - anon_sym_RPAREN, + [224362] = 2, + ACTIONS(12144), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217587] = 2, - ACTIONS(11997), 1, - anon_sym_LPAREN, + [224370] = 2, + ACTIONS(12146), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217595] = 2, - ACTIONS(11252), 1, + [224378] = 2, + ACTIONS(12148), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217603] = 2, - ACTIONS(11999), 1, + [224386] = 2, + ACTIONS(12150), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217611] = 2, - ACTIONS(12001), 1, - anon_sym_RPAREN, + [224394] = 2, + ACTIONS(12152), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217619] = 2, - ACTIONS(12003), 1, - anon_sym_DASH_GT, + [224402] = 2, + ACTIONS(12154), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217627] = 2, - ACTIONS(12005), 1, - anon_sym_RPAREN, + [224410] = 2, + ACTIONS(12156), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217635] = 2, - ACTIONS(12007), 1, - anon_sym_COLON, + [224418] = 2, + ACTIONS(12158), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217643] = 2, - ACTIONS(12009), 1, + [224426] = 2, + ACTIONS(12160), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217651] = 2, - ACTIONS(12011), 1, + [224434] = 2, + ACTIONS(12162), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217659] = 2, - ACTIONS(12013), 1, - anon_sym_file, + [224442] = 2, + ACTIONS(12164), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217667] = 2, - ACTIONS(12015), 1, - anon_sym_RPAREN, + [224450] = 2, + ACTIONS(1610), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217675] = 2, - ACTIONS(12017), 1, - anon_sym_DASH_GT, + [224458] = 2, + ACTIONS(12166), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217683] = 2, - ACTIONS(12019), 1, + [224466] = 2, + ACTIONS(12168), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217691] = 2, - ACTIONS(12021), 1, + [224474] = 2, + ACTIONS(12170), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217699] = 2, - ACTIONS(5039), 1, + [224482] = 2, + ACTIONS(4465), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217707] = 2, - ACTIONS(12023), 1, + [224490] = 2, + ACTIONS(12172), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217715] = 2, - ACTIONS(4510), 1, + [224498] = 2, + ACTIONS(4218), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217723] = 2, - ACTIONS(12025), 1, - anon_sym_in, + [224506] = 2, + ACTIONS(12174), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217731] = 2, - ACTIONS(12027), 1, + [224514] = 2, + ACTIONS(12176), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217739] = 2, - ACTIONS(12029), 1, + [224522] = 2, + ACTIONS(12178), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224530] = 2, + ACTIONS(12180), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217747] = 2, - ACTIONS(12031), 1, - anon_sym_RPAREN, + [224538] = 2, + ACTIONS(10752), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217755] = 2, - ACTIONS(12033), 1, - anon_sym_RPAREN, + [224546] = 2, + ACTIONS(12182), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217763] = 2, - ACTIONS(12035), 1, + [224554] = 2, + ACTIONS(12184), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217771] = 2, - ACTIONS(12037), 1, - sym__automatic_semicolon, + [224562] = 2, + ACTIONS(12186), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217779] = 2, - ACTIONS(12039), 1, + [224570] = 2, + ACTIONS(12188), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217787] = 2, - ACTIONS(12041), 1, + [224578] = 2, + ACTIONS(12190), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217795] = 2, - ACTIONS(12043), 1, + [224586] = 2, + ACTIONS(12192), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217803] = 2, - ACTIONS(12045), 1, - anon_sym_else, + [224594] = 2, + ACTIONS(12194), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217811] = 2, - ACTIONS(12047), 1, - anon_sym_EQ, + [224602] = 2, + ACTIONS(1616), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217819] = 2, - ACTIONS(12049), 1, - anon_sym_DASH_GT, + [224610] = 2, + ACTIONS(12196), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217827] = 2, - ACTIONS(12051), 1, - anon_sym_LBRACE, + [224618] = 2, + ACTIONS(12198), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217835] = 2, - ACTIONS(12053), 1, - anon_sym_RPAREN, + [224626] = 2, + ACTIONS(12200), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217843] = 2, - ACTIONS(12055), 1, - anon_sym_RPAREN, + [224634] = 2, + ACTIONS(12202), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217851] = 2, - ACTIONS(12057), 1, - anon_sym_RBRACE, + [224642] = 2, + ACTIONS(12204), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217859] = 2, - ACTIONS(12059), 1, - anon_sym_RBRACE, + [224650] = 2, + ACTIONS(12206), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217867] = 2, - ACTIONS(12061), 1, - anon_sym_else, + [224658] = 2, + ACTIONS(1804), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217875] = 2, - ACTIONS(12063), 1, + [224666] = 2, + ACTIONS(12208), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217883] = 2, - ACTIONS(12065), 1, + [224674] = 2, + ACTIONS(12210), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217891] = 2, - ACTIONS(12067), 1, - anon_sym_RPAREN, + [224682] = 2, + ACTIONS(4920), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217899] = 2, - ACTIONS(12069), 1, + [224690] = 2, + ACTIONS(11709), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217907] = 2, - ACTIONS(4444), 1, - anon_sym_while, + [224698] = 2, + ACTIONS(12212), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217915] = 2, - ACTIONS(4887), 1, + [224706] = 2, + ACTIONS(4162), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217923] = 2, - ACTIONS(4891), 1, + [224714] = 2, + ACTIONS(1614), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224722] = 2, + ACTIONS(5155), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217931] = 2, - ACTIONS(12071), 1, - anon_sym_RPAREN, + [224730] = 2, + ACTIONS(12214), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217939] = 2, - ACTIONS(12073), 1, - anon_sym_RPAREN, + [224738] = 2, + ACTIONS(5151), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217947] = 2, - ACTIONS(12075), 1, - anon_sym_DASH_GT, + [224746] = 2, + ACTIONS(12216), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217955] = 2, - ACTIONS(12077), 1, - anon_sym_RPAREN, + [224754] = 2, + ACTIONS(5177), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217963] = 2, - ACTIONS(12079), 1, - anon_sym_else, + [224762] = 2, + ACTIONS(5147), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217971] = 2, - ACTIONS(12081), 1, + [224770] = 2, + ACTIONS(10738), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224778] = 2, + ACTIONS(12218), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217979] = 2, - ACTIONS(12083), 1, + [224786] = 2, + ACTIONS(12220), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217987] = 2, - ACTIONS(12085), 1, - anon_sym_SQUOTE, + [224794] = 2, + ACTIONS(12222), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217995] = 2, - ACTIONS(12087), 1, - anon_sym_class, + [224802] = 2, + ACTIONS(12224), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218003] = 2, - ACTIONS(12089), 1, - anon_sym_RPAREN, + [224810] = 2, + ACTIONS(12226), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218011] = 2, - ACTIONS(12091), 1, - anon_sym_RPAREN, + [224818] = 2, + ACTIONS(4323), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218019] = 2, - ACTIONS(12093), 1, - anon_sym_class, + [224826] = 2, + ACTIONS(5123), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218027] = 2, - ACTIONS(12095), 1, - anon_sym_class, + [224834] = 2, + ACTIONS(5119), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218035] = 2, - ACTIONS(12097), 1, + [224842] = 2, + ACTIONS(4646), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224850] = 2, + ACTIONS(12228), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218043] = 2, - ACTIONS(12099), 1, - anon_sym_DASH_GT, + [224858] = 2, + ACTIONS(12230), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218051] = 2, - ACTIONS(12101), 1, - anon_sym_LPAREN, + [224866] = 2, + ACTIONS(12232), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218059] = 2, - ACTIONS(12103), 1, - anon_sym_RBRACE, + [224874] = 2, + ACTIONS(11483), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218067] = 2, - ACTIONS(12105), 1, - anon_sym_RBRACE, + [224882] = 2, + ACTIONS(12234), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218075] = 2, - ACTIONS(12107), 1, + [224890] = 2, + ACTIONS(12236), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218083] = 2, - ACTIONS(12109), 1, - anon_sym_RPAREN, + [224898] = 2, + ACTIONS(5079), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218091] = 2, - ACTIONS(12111), 1, - anon_sym_RPAREN, + [224906] = 2, + ACTIONS(12238), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218099] = 2, - ACTIONS(12113), 1, - anon_sym_RPAREN, + [224914] = 2, + ACTIONS(12240), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218107] = 2, - ACTIONS(1756), 1, - anon_sym_while, + [224922] = 2, + ACTIONS(12242), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218115] = 2, - ACTIONS(4090), 1, + [224930] = 2, + ACTIONS(1734), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218123] = 2, - ACTIONS(12115), 1, - anon_sym_class, + [224938] = 2, + ACTIONS(4185), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218131] = 2, - ACTIONS(12117), 1, - anon_sym_DASH_GT, + [224946] = 2, + ACTIONS(12244), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218139] = 2, - ACTIONS(4985), 1, - anon_sym_while, + [224954] = 2, + ACTIONS(12246), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218147] = 2, - ACTIONS(12119), 1, - anon_sym_class, + [224962] = 2, + ACTIONS(12248), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218155] = 2, - ACTIONS(4969), 1, + [224970] = 2, + ACTIONS(4776), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218163] = 2, - ACTIONS(12121), 1, - anon_sym_class, + [224978] = 2, + ACTIONS(12250), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218171] = 2, - ACTIONS(12123), 1, - anon_sym_LPAREN, + [224986] = 2, + ACTIONS(121), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218179] = 2, - ACTIONS(12125), 1, - anon_sym_RBRACE, + [224994] = 2, + ACTIONS(12252), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218187] = 2, - ACTIONS(12127), 1, + [225002] = 2, + ACTIONS(12254), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218195] = 2, - ACTIONS(12129), 1, + [225010] = 2, + ACTIONS(12256), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218203] = 2, - ACTIONS(12131), 1, - anon_sym_class, + [225018] = 2, + ACTIONS(12258), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218211] = 2, - ACTIONS(12133), 1, - anon_sym_in, + [225026] = 2, + ACTIONS(4469), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218219] = 2, - ACTIONS(12135), 1, - anon_sym_class, + [225034] = 2, + ACTIONS(12260), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218227] = 2, - ACTIONS(12137), 1, - anon_sym_class, + [225042] = 2, + ACTIONS(5173), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218235] = 2, - ACTIONS(12139), 1, - anon_sym_RPAREN, + [225050] = 2, + ACTIONS(4908), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218243] = 2, - ACTIONS(4274), 1, - anon_sym_while, + [225058] = 2, + ACTIONS(12262), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218251] = 2, - ACTIONS(4883), 1, + [225066] = 2, + ACTIONS(4904), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218259] = 2, - ACTIONS(12141), 1, - anon_sym_COLON, + [225074] = 2, + ACTIONS(4654), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218267] = 2, - ACTIONS(12143), 1, - anon_sym_RBRACE, + [225082] = 2, + ACTIONS(12264), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218275] = 2, - ACTIONS(12145), 1, + [225090] = 2, + ACTIONS(12266), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218283] = 2, - ACTIONS(4973), 1, + [225098] = 2, + ACTIONS(1810), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218291] = 2, - ACTIONS(4425), 1, + [225106] = 2, + ACTIONS(4297), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218299] = 2, - ACTIONS(4859), 1, + [225114] = 2, + ACTIONS(4900), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218307] = 2, - ACTIONS(1766), 1, + [225122] = 2, + ACTIONS(4357), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218315] = 2, - ACTIONS(4161), 1, - anon_sym_while, + [225130] = 2, + ACTIONS(12268), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218323] = 2, - ACTIONS(4831), 1, + [225138] = 2, + ACTIONS(5109), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218331] = 2, - ACTIONS(201), 1, - anon_sym_while, + [225146] = 2, + ACTIONS(12270), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218339] = 2, - ACTIONS(4476), 1, + [225154] = 2, + ACTIONS(4483), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218347] = 2, - ACTIONS(4761), 1, - anon_sym_while, + [225162] = 2, + ACTIONS(11461), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218355] = 2, - ACTIONS(12147), 1, + [225170] = 2, + ACTIONS(12272), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218363] = 2, - ACTIONS(4757), 1, - anon_sym_while, + [225178] = 2, + ACTIONS(12274), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218371] = 2, - ACTIONS(4753), 1, + [225186] = 2, + ACTIONS(5101), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218379] = 2, - ACTIONS(12149), 1, - anon_sym_RPAREN, + [225194] = 2, + ACTIONS(12276), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218387] = 2, - ACTIONS(12151), 1, - anon_sym_DASH_GT, + [225202] = 2, + ACTIONS(4968), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218395] = 2, - ACTIONS(4731), 1, + [225210] = 2, + ACTIONS(1816), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218403] = 2, - ACTIONS(12153), 1, - anon_sym_RPAREN, + [225218] = 2, + ACTIONS(12278), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218411] = 2, - ACTIONS(4723), 1, - anon_sym_while, + [225226] = 2, + ACTIONS(12280), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218419] = 2, - ACTIONS(12155), 1, - anon_sym_LBRACE, + [225234] = 2, + ACTIONS(12282), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218427] = 2, - ACTIONS(12157), 1, - anon_sym_class, + [225242] = 2, + ACTIONS(12284), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218435] = 2, - ACTIONS(1698), 1, - anon_sym_while, + [225250] = 2, + ACTIONS(12286), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218443] = 2, - ACTIONS(12159), 1, - anon_sym_EQ, + [225258] = 2, + ACTIONS(12288), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218451] = 2, - ACTIONS(4181), 1, - anon_sym_while, + [225266] = 2, + ACTIONS(12290), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218459] = 2, - ACTIONS(12161), 1, - anon_sym_constructor, + [225274] = 2, + ACTIONS(12292), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218467] = 2, - ACTIONS(4981), 1, - anon_sym_while, + [225282] = 2, + ACTIONS(12294), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218475] = 2, - ACTIONS(12163), 1, - anon_sym_AMP, + [225290] = 2, + ACTIONS(12296), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218483] = 2, - ACTIONS(4431), 1, - anon_sym_while, + [225298] = 2, + ACTIONS(10695), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218491] = 2, - ACTIONS(4895), 1, - anon_sym_while, + [225306] = 2, + ACTIONS(12298), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218499] = 2, - ACTIONS(4917), 1, - anon_sym_while, + [225314] = 2, + ACTIONS(12300), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218507] = 2, - ACTIONS(12165), 1, - anon_sym_DASH_GT, + [225322] = 2, + ACTIONS(12302), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218515] = 2, - ACTIONS(1792), 1, - anon_sym_while, + [225330] = 2, + ACTIONS(10707), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218523] = 2, - ACTIONS(4219), 1, + [225338] = 2, + ACTIONS(4301), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218531] = 2, - ACTIONS(12167), 1, - anon_sym_RPAREN, + [225346] = 2, + ACTIONS(12304), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218539] = 2, - ACTIONS(12169), 1, - anon_sym_class, + [225354] = 2, + ACTIONS(12306), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218547] = 2, - ACTIONS(4703), 1, + [225362] = 2, + ACTIONS(4569), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218555] = 2, - ACTIONS(3342), 1, - anon_sym_while, + [225370] = 2, + ACTIONS(12308), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218563] = 2, - ACTIONS(4514), 1, + [225378] = 2, + ACTIONS(3422), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218571] = 2, - ACTIONS(12171), 1, - anon_sym_RPAREN, + [225386] = 2, + ACTIONS(4441), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218579] = 2, - ACTIONS(5043), 1, - anon_sym_while, + [225394] = 2, + ACTIONS(12310), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218587] = 2, - ACTIONS(12173), 1, - anon_sym_RPAREN, + [225402] = 2, + ACTIONS(5087), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218595] = 2, - ACTIONS(12175), 1, - anon_sym_class, + [225410] = 2, + ACTIONS(12312), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218603] = 2, - ACTIONS(5084), 1, + [225418] = 2, + ACTIONS(5041), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218611] = 2, - ACTIONS(5102), 1, + [225426] = 2, + ACTIONS(4976), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218619] = 2, - ACTIONS(12177), 1, + [225434] = 2, + ACTIONS(12314), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218627] = 2, - ACTIONS(12179), 1, - anon_sym_AMP, + [225442] = 2, + ACTIONS(12316), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218635] = 2, - ACTIONS(12181), 1, - anon_sym_EQ, + [225450] = 2, + ACTIONS(5105), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218643] = 2, - ACTIONS(12183), 1, + [225458] = 2, + ACTIONS(12318), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218651] = 2, - ACTIONS(12185), 1, - anon_sym_COLON, + [225466] = 2, + ACTIONS(12320), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218659] = 2, - ACTIONS(12187), 1, - anon_sym_RPAREN, + [225474] = 2, + ACTIONS(12322), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218667] = 2, - ACTIONS(12189), 1, - anon_sym_AMP, + [225482] = 2, + ACTIONS(12324), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218675] = 2, - ACTIONS(12191), 1, - anon_sym_LBRACE, + [225490] = 2, + ACTIONS(12326), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218683] = 2, - ACTIONS(12193), 1, - anon_sym_RPAREN, + [225498] = 2, + ACTIONS(12328), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218691] = 2, - ACTIONS(12195), 1, - anon_sym_RPAREN, + [225506] = 2, + ACTIONS(12330), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218699] = 2, - ACTIONS(12197), 1, - anon_sym_RPAREN, + [225514] = 2, + ACTIONS(12332), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218707] = 2, - ACTIONS(12199), 1, - anon_sym_else, + [225522] = 2, + ACTIONS(12334), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218715] = 2, - ACTIONS(12201), 1, - anon_sym_class, + [225530] = 2, + ACTIONS(12336), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218723] = 2, - ACTIONS(12203), 1, - anon_sym_RPAREN, + [225538] = 2, + ACTIONS(12338), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218731] = 2, - ACTIONS(12205), 1, - anon_sym_RPAREN, + [225546] = 2, + ACTIONS(9137), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218739] = 2, - ACTIONS(12207), 1, + [225554] = 2, + ACTIONS(12340), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218747] = 2, - ACTIONS(12209), 1, - anon_sym_DASH_GT, + [225562] = 2, + ACTIONS(12342), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218755] = 2, - ACTIONS(12211), 1, - anon_sym_LBRACE, + [225570] = 2, + ACTIONS(12344), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218763] = 2, - ACTIONS(12213), 1, - anon_sym_class, + [225578] = 2, + ACTIONS(9135), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218771] = 2, - ACTIONS(12215), 1, + [225586] = 2, + ACTIONS(12346), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218779] = 2, - ACTIONS(12217), 1, + [225594] = 2, + ACTIONS(12348), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218787] = 2, - ACTIONS(12219), 1, - anon_sym_LPAREN, + [225602] = 2, + ACTIONS(12350), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225610] = 2, + ACTIONS(12352), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218795] = 2, - ACTIONS(12221), 1, + [225618] = 2, + ACTIONS(12354), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218803] = 2, - ACTIONS(12223), 1, + [225626] = 2, + ACTIONS(12356), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218811] = 2, - ACTIONS(12225), 1, - anon_sym_constructor, + [225634] = 2, + ACTIONS(12358), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218819] = 2, - ACTIONS(10492), 1, - anon_sym_AMP, + [225642] = 2, + ACTIONS(12360), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218827] = 2, - ACTIONS(12227), 1, + [225650] = 2, + ACTIONS(12362), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218835] = 2, - ACTIONS(12229), 1, - anon_sym_COLON, + [225658] = 2, + ACTIONS(12364), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218843] = 2, - ACTIONS(12231), 1, + [225666] = 2, + ACTIONS(12366), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218851] = 2, - ACTIONS(10500), 1, - anon_sym_AMP, + [225674] = 2, + ACTIONS(12368), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218859] = 2, - ACTIONS(12233), 1, - anon_sym_EQ, + [225682] = 2, + ACTIONS(12370), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218867] = 2, - ACTIONS(12235), 1, + [225690] = 2, + ACTIONS(12372), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218875] = 2, - ACTIONS(12237), 1, - anon_sym_AMP, + [225698] = 2, + ACTIONS(12374), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218883] = 2, - ACTIONS(12239), 1, - anon_sym_else, + [225706] = 2, + ACTIONS(12376), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218891] = 2, - ACTIONS(12241), 1, - anon_sym_RPAREN, + [225714] = 2, + ACTIONS(12378), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218899] = 2, - ACTIONS(12243), 1, - anon_sym_RPAREN, + [225722] = 2, + ACTIONS(12380), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218907] = 2, - ACTIONS(11614), 1, - anon_sym_RPAREN, + [225730] = 2, + ACTIONS(12382), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218915] = 2, - ACTIONS(12245), 1, - anon_sym_RPAREN, + [225738] = 2, + ACTIONS(12384), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218923] = 2, - ACTIONS(12247), 1, - anon_sym_class, + [225746] = 2, + ACTIONS(12386), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218931] = 2, - ACTIONS(12249), 1, - anon_sym_RBRACE, + [225754] = 2, + ACTIONS(12388), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218939] = 2, - ACTIONS(12251), 1, - anon_sym_RPAREN, + [225762] = 2, + ACTIONS(11508), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218947] = 2, - ACTIONS(12253), 1, - anon_sym_DASH_GT, + [225770] = 2, + ACTIONS(12390), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218955] = 2, - ACTIONS(12255), 1, - anon_sym_LBRACE, + [225778] = 2, + ACTIONS(12392), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218963] = 2, - ACTIONS(12257), 1, - sym__automatic_semicolon, + [225786] = 2, + ACTIONS(12394), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218971] = 2, - ACTIONS(12259), 1, - anon_sym_object, + [225794] = 2, + ACTIONS(12396), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218979] = 2, - ACTIONS(12261), 1, - sym__automatic_semicolon, + [225802] = 2, + ACTIONS(12398), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218987] = 2, - ACTIONS(12263), 1, - anon_sym_EQ, + [225810] = 2, + ACTIONS(12400), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218995] = 2, - ACTIONS(11203), 1, + [225818] = 2, + ACTIONS(12402), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219003] = 2, - ACTIONS(12265), 1, - anon_sym_constructor, + [225826] = 2, + ACTIONS(12404), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219011] = 2, - ACTIONS(12267), 1, + [225834] = 2, + ACTIONS(12406), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219019] = 2, - ACTIONS(8979), 1, - anon_sym_AMP, + [225842] = 2, + ACTIONS(12408), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219027] = 2, - ACTIONS(11557), 1, - anon_sym_AMP, + [225850] = 2, + ACTIONS(12410), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219035] = 2, - ACTIONS(12269), 1, - anon_sym_EQ, + [225858] = 2, + ACTIONS(12412), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219043] = 2, - ACTIONS(12271), 1, + [225866] = 2, + ACTIONS(12414), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219051] = 2, - ACTIONS(12273), 1, + [225874] = 2, + ACTIONS(12416), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219059] = 2, - ACTIONS(12275), 1, + [225882] = 2, + ACTIONS(12418), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219067] = 2, - ACTIONS(12277), 1, + [225890] = 2, + ACTIONS(12420), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219075] = 2, - ACTIONS(12279), 1, + [225898] = 2, + ACTIONS(12422), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219083] = 2, - ACTIONS(12281), 1, - anon_sym_RBRACE, + [225906] = 2, + ACTIONS(12424), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219091] = 2, - ACTIONS(8981), 1, - anon_sym_AMP, + [225914] = 2, + ACTIONS(12426), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219099] = 2, - ACTIONS(12283), 1, - anon_sym_RPAREN, + [225922] = 2, + ACTIONS(12428), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219107] = 2, - ACTIONS(12285), 1, - anon_sym_EQ, + [225930] = 2, + ACTIONS(12430), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219115] = 2, - ACTIONS(12287), 1, - anon_sym_COLON, + [225938] = 2, + ACTIONS(12432), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219123] = 2, - ACTIONS(12289), 1, - anon_sym_AMP, + [225946] = 2, + ACTIONS(12434), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219131] = 2, - ACTIONS(12291), 1, - anon_sym_RPAREN, + [225954] = 2, + ACTIONS(12436), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219139] = 2, - ACTIONS(11166), 1, - anon_sym_RPAREN, + [225962] = 2, + ACTIONS(12438), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219147] = 2, - ACTIONS(12293), 1, - anon_sym_RPAREN, + [225970] = 2, + ACTIONS(12440), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219155] = 2, - ACTIONS(12295), 1, - anon_sym_DASH_GT, + [225978] = 2, + ACTIONS(12442), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219163] = 2, - ACTIONS(12297), 1, - anon_sym_RPAREN, + [225986] = 2, + ACTIONS(12444), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219171] = 2, - ACTIONS(12299), 1, - anon_sym_class, + [225994] = 2, + ACTIONS(12446), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219179] = 2, - ACTIONS(1403), 1, - anon_sym_RBRACE, + [226002] = 2, + ACTIONS(12448), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219187] = 2, - ACTIONS(12301), 1, + [226010] = 2, + ACTIONS(12450), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219195] = 2, - ACTIONS(12303), 1, - anon_sym_DASH_GT, + [226018] = 2, + ACTIONS(10709), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219203] = 2, - ACTIONS(12305), 1, - anon_sym_LBRACE, + [226026] = 2, + ACTIONS(12452), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219211] = 2, - ACTIONS(12307), 1, + [226034] = 2, + ACTIONS(12454), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219219] = 2, - ACTIONS(12309), 1, - anon_sym_COLON, + [226042] = 2, + ACTIONS(12456), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219227] = 2, - ACTIONS(12311), 1, - anon_sym_EQ, + [226050] = 2, + ACTIONS(12458), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219235] = 2, - ACTIONS(12313), 1, + [226058] = 2, + ACTIONS(12460), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219243] = 2, - ACTIONS(12315), 1, - anon_sym_constructor, + [226066] = 2, + ACTIONS(12462), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219251] = 2, - ACTIONS(11594), 1, - anon_sym_AMP, + [226074] = 2, + ACTIONS(12464), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219259] = 2, - ACTIONS(12317), 1, - anon_sym_while, + [226082] = 2, + ACTIONS(12466), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219267] = 2, - ACTIONS(12319), 1, - anon_sym_COLON, + [226090] = 2, + ACTIONS(12468), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219275] = 2, - ACTIONS(10510), 1, - anon_sym_AMP, + [226098] = 2, + ACTIONS(12470), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219283] = 2, - ACTIONS(12321), 1, - anon_sym_LBRACE, + [226106] = 2, + ACTIONS(12472), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219291] = 2, - ACTIONS(12323), 1, - anon_sym_class, + [226114] = 2, + ACTIONS(12474), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219299] = 2, - ACTIONS(12325), 1, + [226122] = 2, + ACTIONS(12476), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219307] = 2, - ACTIONS(12327), 1, - anon_sym_RPAREN, + [226130] = 2, + ACTIONS(12478), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219315] = 2, - ACTIONS(12329), 1, - anon_sym_COLON, + [226138] = 2, + ACTIONS(12480), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219323] = 2, - ACTIONS(12331), 1, - anon_sym_AMP, + [226146] = 2, + ACTIONS(12482), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219331] = 2, - ACTIONS(12333), 1, - anon_sym_RPAREN, + [226154] = 2, + ACTIONS(1630), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219339] = 2, - ACTIONS(12335), 1, - anon_sym_RPAREN, + [226162] = 2, + ACTIONS(9145), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219347] = 2, - ACTIONS(12337), 1, - anon_sym_RPAREN, + [226170] = 2, + ACTIONS(12484), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219355] = 2, - ACTIONS(12339), 1, - anon_sym_AMP, + [226178] = 2, + ACTIONS(12486), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219363] = 2, - ACTIONS(12341), 1, - anon_sym_class, + [226186] = 2, + ACTIONS(12488), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219371] = 2, - ACTIONS(12343), 1, - anon_sym_COLON, + [226194] = 2, + ACTIONS(12490), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219379] = 2, - ACTIONS(12345), 1, - anon_sym_EQ, + [226202] = 2, + ACTIONS(12492), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219387] = 2, - ACTIONS(12347), 1, - anon_sym_DASH_GT, + [226210] = 2, + ACTIONS(12494), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219395] = 2, - ACTIONS(12349), 1, - anon_sym_COLON, + [226218] = 2, + ACTIONS(12496), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219403] = 2, - ACTIONS(12351), 1, - anon_sym_COLON, + [226226] = 2, + ACTIONS(12498), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219411] = 2, - ACTIONS(1574), 1, - anon_sym_RBRACE, + [226234] = 2, + ACTIONS(12500), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219419] = 2, - ACTIONS(12353), 1, - anon_sym_LBRACE, + [226242] = 2, + ACTIONS(12502), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219427] = 2, - ACTIONS(12355), 1, - anon_sym_class, + [226250] = 2, + ACTIONS(12504), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219435] = 2, - ACTIONS(12357), 1, - anon_sym_while, + [226258] = 2, + ACTIONS(12506), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219443] = 2, - ACTIONS(12359), 1, - anon_sym_while, + [226266] = 2, + ACTIONS(12508), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219451] = 2, - ACTIONS(12361), 1, - anon_sym_constructor, + [226274] = 2, + ACTIONS(12510), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219459] = 2, - ACTIONS(12363), 1, - anon_sym_EQ, + [226282] = 2, + ACTIONS(9141), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219467] = 2, - ACTIONS(12365), 1, - anon_sym_LPAREN, + [226290] = 2, + ACTIONS(12512), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219475] = 2, - ACTIONS(12367), 1, - anon_sym_constructor, + [226298] = 2, + ACTIONS(12514), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219483] = 2, - ACTIONS(12369), 1, + [226306] = 2, + ACTIONS(12516), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219491] = 2, - ACTIONS(8985), 1, - anon_sym_AMP, + [226314] = 2, + ACTIONS(12518), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219499] = 2, - ACTIONS(12371), 1, - anon_sym_class, + [226322] = 2, + ACTIONS(12520), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219507] = 2, - ACTIONS(12373), 1, + [226330] = 2, + ACTIONS(12522), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219515] = 2, - ACTIONS(12375), 1, - anon_sym_class, + [226338] = 2, + ACTIONS(12524), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219523] = 2, - ACTIONS(12377), 1, + [226346] = 2, + ACTIONS(12526), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219531] = 2, - ACTIONS(12379), 1, - anon_sym_class, + [226354] = 2, + ACTIONS(12528), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219539] = 2, - ACTIONS(12381), 1, - anon_sym_EQ, + [226362] = 2, + ACTIONS(12530), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219547] = 2, - ACTIONS(12383), 1, - anon_sym_while, + [226370] = 2, + ACTIONS(12532), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219555] = 2, - ACTIONS(12385), 1, - anon_sym_while, + [226378] = 2, + ACTIONS(12534), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219563] = 2, - ACTIONS(12387), 1, - anon_sym_COLON, + [226386] = 2, + ACTIONS(12536), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219571] = 2, - ACTIONS(12389), 1, + [226394] = 2, + ACTIONS(4139), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219579] = 2, - ACTIONS(12391), 1, - anon_sym_LPAREN, + [226402] = 2, + ACTIONS(1634), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219587] = 2, - ACTIONS(8994), 1, + [226410] = 2, + ACTIONS(12538), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219595] = 2, - ACTIONS(12393), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219603] = 2, - ACTIONS(12395), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219611] = 2, - ACTIONS(12397), 1, + [226418] = 2, + ACTIONS(12540), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219619] = 2, - ACTIONS(12399), 1, - anon_sym_SQUOTE, + [226426] = 2, + ACTIONS(12542), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219627] = 2, - ACTIONS(12401), 1, + [226434] = 2, + ACTIONS(12544), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219635] = 2, - ACTIONS(12403), 1, - anon_sym_RPAREN, + [226442] = 2, + ACTIONS(12546), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219643] = 2, - ACTIONS(12405), 1, - anon_sym_RPAREN, + [226450] = 2, + ACTIONS(12548), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219651] = 2, - ACTIONS(12407), 1, - anon_sym_AMP, + [226458] = 2, + ACTIONS(12550), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219659] = 2, - ACTIONS(12409), 1, - anon_sym_class, + [226466] = 2, + ACTIONS(12552), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219667] = 2, - ACTIONS(12411), 1, - anon_sym_class, + [226474] = 2, + ACTIONS(12554), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219675] = 2, - ACTIONS(12413), 1, - anon_sym_LBRACE, + [226482] = 2, + ACTIONS(12556), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219683] = 2, - ACTIONS(12415), 1, - anon_sym_class, + [226490] = 2, + ACTIONS(12558), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219691] = 2, - ACTIONS(12417), 1, - anon_sym_EQ, + [226498] = 2, + ACTIONS(12560), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219699] = 2, - ACTIONS(12419), 1, - anon_sym_constructor, + [226506] = 2, + ACTIONS(12562), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219707] = 2, - ACTIONS(12421), 1, - anon_sym_RPAREN, + [226514] = 2, + ACTIONS(12564), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219715] = 2, - ACTIONS(12423), 1, + [226522] = 2, + ACTIONS(12566), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219723] = 2, - ACTIONS(12425), 1, - anon_sym_AMP, + [226530] = 2, + ACTIONS(12568), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219731] = 2, - ACTIONS(12427), 1, - anon_sym_RBRACE, + [226538] = 2, + ACTIONS(11372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219739] = 2, - ACTIONS(10555), 1, + [226546] = 2, + ACTIONS(12570), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219747] = 2, - ACTIONS(12429), 1, - anon_sym_COLON, + [226554] = 2, + ACTIONS(11368), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219755] = 2, - ACTIONS(12431), 1, - anon_sym_AMP, + [226562] = 2, + ACTIONS(12572), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219763] = 2, - ACTIONS(4350), 1, - anon_sym_DASH_GT, + [226570] = 2, + ACTIONS(12574), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219771] = 2, - ACTIONS(1393), 1, - anon_sym_RBRACE, + [226578] = 2, + ACTIONS(12576), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219779] = 2, - ACTIONS(12433), 1, - anon_sym_COLON, + [226586] = 2, + ACTIONS(1798), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219787] = 2, - ACTIONS(10539), 1, - anon_sym_AMP, + [226594] = 2, + ACTIONS(12578), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219795] = 2, - ACTIONS(12435), 1, + [226602] = 2, + ACTIONS(12580), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219803] = 2, - ACTIONS(12437), 1, - anon_sym_DASH_GT, + [226610] = 2, + ACTIONS(12582), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219811] = 2, - ACTIONS(11130), 1, + [226618] = 2, + ACTIONS(12584), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219819] = 2, - ACTIONS(12439), 1, - anon_sym_COLON, + [226626] = 2, + ACTIONS(4964), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219827] = 2, - ACTIONS(12441), 1, - anon_sym_AMP, + [226634] = 2, + ACTIONS(11319), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219835] = 2, - ACTIONS(11672), 1, + [226642] = 2, + ACTIONS(12586), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219843] = 2, - ACTIONS(12443), 1, - anon_sym_class, + [226650] = 2, + ACTIONS(3282), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219851] = 2, - ACTIONS(12445), 1, - anon_sym_class, + [226658] = 2, + ACTIONS(12588), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219859] = 2, - ACTIONS(12447), 1, + [226666] = 2, + ACTIONS(12590), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219867] = 2, - ACTIONS(12449), 1, - anon_sym_constructor, + [226674] = 2, + ACTIONS(12592), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219875] = 2, - ACTIONS(12451), 1, - anon_sym_AMP, + [226682] = 2, + ACTIONS(12594), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219883] = 2, - ACTIONS(12453), 1, - anon_sym_COLON, + [226690] = 2, + ACTIONS(4329), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219891] = 2, - ACTIONS(12455), 1, - anon_sym_AMP, + [226698] = 2, + ACTIONS(12596), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219899] = 2, - ACTIONS(12457), 1, - anon_sym_COLON, + [226706] = 2, + ACTIONS(5201), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219907] = 2, - ACTIONS(12459), 1, + [226714] = 2, + ACTIONS(12598), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219915] = 2, - ACTIONS(12461), 1, - anon_sym_AMP, + [226722] = 2, + ACTIONS(12600), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219923] = 2, - ACTIONS(12463), 1, + [226730] = 2, + ACTIONS(12602), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219931] = 2, - ACTIONS(12465), 1, - anon_sym_class, + [226738] = 2, + ACTIONS(12604), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219939] = 2, - ACTIONS(12467), 1, - anon_sym_RPAREN, + [226746] = 2, + ACTIONS(12606), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219947] = 2, - ACTIONS(12469), 1, - anon_sym_class, + [226754] = 2, + ACTIONS(12608), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219955] = 2, - ACTIONS(12471), 1, - anon_sym_constructor, + [226762] = 2, + ACTIONS(12610), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219963] = 2, - ACTIONS(12473), 1, - anon_sym_RPAREN, + [226770] = 2, + ACTIONS(11500), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219971] = 2, - ACTIONS(12475), 1, + [226778] = 2, + ACTIONS(12612), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219979] = 2, - ACTIONS(12477), 1, - anon_sym_RBRACE, + [226786] = 2, + ACTIONS(12614), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219987] = 2, - ACTIONS(12479), 1, - anon_sym_RBRACE, + [226794] = 2, + ACTIONS(12616), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219995] = 2, - ACTIONS(12481), 1, + [226802] = 2, + ACTIONS(12618), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220003] = 2, - ACTIONS(12483), 1, - anon_sym_RPAREN, + [226810] = 2, + ACTIONS(11822), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220011] = 2, - ACTIONS(12485), 1, - anon_sym_AMP, + [226818] = 2, + ACTIONS(11354), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220019] = 2, - ACTIONS(12487), 1, + [226826] = 2, + ACTIONS(12620), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220027] = 2, - ACTIONS(12489), 1, + [226834] = 2, + ACTIONS(12622), 1, aux_sym__uni_character_literal_token1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220035] = 2, - ACTIONS(12491), 1, + [226842] = 2, + ACTIONS(12624), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220043] = 2, - ACTIONS(12493), 1, + [226850] = 2, + ACTIONS(12626), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226858] = 2, + ACTIONS(12628), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220051] = 2, - ACTIONS(12495), 1, + [226866] = 2, + ACTIONS(11800), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220059] = 2, - ACTIONS(12497), 1, + [226874] = 2, + ACTIONS(12630), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220067] = 2, - ACTIONS(12499), 1, + [226882] = 2, + ACTIONS(12632), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220075] = 2, - ACTIONS(11688), 1, + [226890] = 2, + ACTIONS(12634), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220083] = 2, - ACTIONS(12501), 1, - anon_sym_COLON, + [226898] = 2, + ACTIONS(12636), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220091] = 2, - ACTIONS(1608), 1, - anon_sym_RBRACE, + [226906] = 2, + ACTIONS(12638), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220099] = 2, - ACTIONS(12503), 1, - anon_sym_else, + [226914] = 2, + ACTIONS(11794), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226922] = 2, + ACTIONS(12640), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220107] = 2, - ACTIONS(12505), 1, + [226930] = 2, + ACTIONS(12642), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220115] = 2, - ACTIONS(5035), 1, + [226938] = 2, + ACTIONS(12644), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226946] = 2, + ACTIONS(4800), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220123] = 2, - ACTIONS(12507), 1, - anon_sym_LPAREN, + [226954] = 2, + ACTIONS(12646), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220131] = 2, - ACTIONS(12509), 1, - anon_sym_LPAREN, + [226962] = 2, + ACTIONS(12648), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220139] = 2, - ACTIONS(12511), 1, - anon_sym_DASH_GT, + [226970] = 2, + ACTIONS(12650), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220147] = 2, - ACTIONS(12513), 1, + [226978] = 2, + ACTIONS(11315), 1, sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220155] = 2, - ACTIONS(12515), 1, + [226986] = 2, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226994] = 2, + ACTIONS(12652), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227002] = 2, + ACTIONS(12654), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227010] = 2, + ACTIONS(12656), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220163] = 2, - ACTIONS(12517), 1, + [227018] = 2, + ACTIONS(11810), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220171] = 2, - ACTIONS(11156), 1, - sym__automatic_semicolon, + [227026] = 2, + ACTIONS(12658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220179] = 2, - ACTIONS(12519), 1, + [227034] = 2, + ACTIONS(12660), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220187] = 2, - ACTIONS(11152), 1, - sym__automatic_semicolon, + [227042] = 2, + ACTIONS(12662), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220195] = 2, - ACTIONS(12521), 1, + [227050] = 2, + ACTIONS(4852), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227058] = 2, + ACTIONS(12664), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220203] = 2, - ACTIONS(12523), 1, - anon_sym_COLON, + [227066] = 2, + ACTIONS(12666), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220211] = 2, - ACTIONS(12525), 1, - anon_sym_AMP, + [227074] = 2, + ACTIONS(12668), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220219] = 2, - ACTIONS(12527), 1, - anon_sym_RPAREN, + [227082] = 2, + ACTIONS(12670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220227] = 2, - ACTIONS(12529), 1, - anon_sym_DASH_GT, + [227090] = 2, + ACTIONS(12672), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220235] = 2, - ACTIONS(12531), 1, + [227098] = 2, + ACTIONS(3346), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227106] = 2, + ACTIONS(12674), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220243] = 2, - ACTIONS(12533), 1, + [227114] = 2, + ACTIONS(12676), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220251] = 2, - ACTIONS(12535), 1, - anon_sym_RBRACE, + [227122] = 2, + ACTIONS(11830), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220259] = 2, - ACTIONS(1389), 1, - anon_sym_RBRACE, + [227130] = 2, + ACTIONS(12678), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220267] = 2, - ACTIONS(12537), 1, + [227138] = 2, + ACTIONS(12680), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220275] = 2, - ACTIONS(12539), 1, + [227146] = 2, + ACTIONS(12682), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227154] = 2, + ACTIONS(12684), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220283] = 2, - ACTIONS(12541), 1, - anon_sym_class, + [227162] = 2, + ACTIONS(12686), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220291] = 2, - ACTIONS(12543), 1, - anon_sym_class, + [227170] = 2, + ACTIONS(12688), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220299] = 2, - ACTIONS(6666), 1, - anon_sym_AMP, + [227178] = 2, + ACTIONS(12690), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220307] = 2, - ACTIONS(8157), 1, - anon_sym_AMP, + [227186] = 2, + ACTIONS(12692), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220315] = 2, - ACTIONS(12545), 1, - anon_sym_COLON, + [227194] = 2, + ACTIONS(3274), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220323] = 2, - ACTIONS(8187), 1, - anon_sym_AMP, + [227202] = 2, + ACTIONS(1572), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220331] = 2, - ACTIONS(12547), 1, - anon_sym_COLON, + [227210] = 2, + ACTIONS(12694), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220339] = 2, - ACTIONS(12549), 1, + [227218] = 2, + ACTIONS(12696), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220347] = 2, - ACTIONS(12551), 1, + [227226] = 2, + ACTIONS(12698), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220355] = 2, - ACTIONS(12553), 1, - anon_sym_RPAREN, + [227234] = 2, + ACTIONS(12700), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220363] = 2, - ACTIONS(12555), 1, - anon_sym_class, + [227242] = 2, + ACTIONS(12702), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220371] = 2, - ACTIONS(12557), 1, + [227250] = 2, + ACTIONS(12704), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220379] = 2, - ACTIONS(12559), 1, - anon_sym_class, + [227258] = 2, + ACTIONS(12706), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220387] = 2, - ACTIONS(12561), 1, - anon_sym_EQ, + [227266] = 2, + ACTIONS(12708), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220395] = 2, - ACTIONS(12563), 1, + [227274] = 2, + ACTIONS(1574), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220403] = 2, - ACTIONS(12565), 1, - anon_sym_RPAREN, + [227282] = 2, + ACTIONS(12710), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220411] = 2, - ACTIONS(12567), 1, + [227290] = 2, + ACTIONS(12712), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220419] = 2, - ACTIONS(12569), 1, - anon_sym_RBRACE, + [227298] = 2, + ACTIONS(12714), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220427] = 2, - ACTIONS(12571), 1, + [227306] = 2, + ACTIONS(12716), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220435] = 2, - ACTIONS(6660), 1, - anon_sym_AMP, + [227314] = 2, + ACTIONS(12718), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220443] = 2, - ACTIONS(12573), 1, - anon_sym_RPAREN, + [227322] = 2, + ACTIONS(12720), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220451] = 2, - ACTIONS(12575), 1, - anon_sym_RPAREN, + [227330] = 2, + ACTIONS(12722), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220459] = 2, - ACTIONS(12577), 1, - anon_sym_AMP, + [227338] = 2, + ACTIONS(12724), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220467] = 2, - ACTIONS(12579), 1, - anon_sym_class, + [227346] = 2, + ACTIONS(8231), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220475] = 2, - ACTIONS(12581), 1, - anon_sym_class, + [227354] = 2, + ACTIONS(12726), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220483] = 2, - ACTIONS(12583), 1, + [227362] = 2, + ACTIONS(8235), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220491] = 2, - ACTIONS(12585), 1, - anon_sym_AMP, + [227370] = 2, + ACTIONS(12728), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220499] = 2, - ACTIONS(12587), 1, + [227378] = 2, + ACTIONS(12730), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220507] = 2, - ACTIONS(11102), 1, - anon_sym_RPAREN, + [227386] = 2, + ACTIONS(12732), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220515] = 2, - ACTIONS(12589), 1, - anon_sym_class, + [227394] = 2, + ACTIONS(3115), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220523] = 2, - ACTIONS(12591), 1, - anon_sym_class, + [227402] = 2, + ACTIONS(12734), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220531] = 2, - ACTIONS(12593), 1, + [227410] = 2, + ACTIONS(12736), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220539] = 2, - ACTIONS(8886), 1, - anon_sym_COLON, + [227418] = 2, + ACTIONS(6619), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220547] = 2, - ACTIONS(12595), 1, - anon_sym_LPAREN, + [227426] = 2, + ACTIONS(11828), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220555] = 2, - ACTIONS(12597), 1, - anon_sym_DASH_GT, + [227434] = 2, + ACTIONS(6688), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220563] = 2, - ACTIONS(12599), 1, - anon_sym_RPAREN, + [227442] = 2, + ACTIONS(12738), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220571] = 2, - ACTIONS(12601), 1, - anon_sym_LPAREN, + [227450] = 2, + ACTIONS(12740), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220579] = 2, - ACTIONS(12603), 1, + [227458] = 2, + ACTIONS(12742), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220587] = 2, - ACTIONS(12605), 1, - anon_sym_class, + [227466] = 2, + ACTIONS(12744), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220595] = 2, - ACTIONS(12607), 1, - anon_sym_LPAREN, + [227474] = 2, + ACTIONS(12746), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220603] = 2, - ACTIONS(12609), 1, - anon_sym_LPAREN, + [227482] = 2, + ACTIONS(12748), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220611] = 2, - ACTIONS(12611), 1, - anon_sym_LPAREN, + [227490] = 2, + ACTIONS(12750), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220619] = 2, - ACTIONS(12613), 1, - anon_sym_LPAREN, + [227498] = 2, + ACTIONS(12752), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220627] = 2, - ACTIONS(12615), 1, - anon_sym_LPAREN, + [227506] = 2, + ACTIONS(12754), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220635] = 2, - ACTIONS(12617), 1, - anon_sym_LPAREN, + [227514] = 2, + ACTIONS(12756), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220643] = 2, - ACTIONS(12619), 1, - anon_sym_LPAREN, + [227522] = 2, + ACTIONS(12758), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220651] = 2, - ACTIONS(12621), 1, - anon_sym_LPAREN, + [227530] = 2, + ACTIONS(12760), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220659] = 2, - ACTIONS(12623), 1, - anon_sym_LPAREN, + [227538] = 2, + ACTIONS(12762), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220667] = 2, - ACTIONS(12625), 1, - anon_sym_LPAREN, + [227546] = 2, + ACTIONS(12764), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220675] = 2, - ACTIONS(12627), 1, - anon_sym_LPAREN, + [227554] = 2, + ACTIONS(12766), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220683] = 2, - ACTIONS(12629), 1, + [227562] = 2, + ACTIONS(12768), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220691] = 2, - ACTIONS(12631), 1, - anon_sym_LPAREN, + [227570] = 2, + ACTIONS(12770), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220699] = 2, - ACTIONS(12633), 1, - anon_sym_LPAREN, + [227578] = 2, + ACTIONS(12772), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220707] = 2, - ACTIONS(12635), 1, + [227586] = 2, + ACTIONS(12774), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220715] = 2, - ACTIONS(12637), 1, - anon_sym_LPAREN, + [227594] = 2, + ACTIONS(12776), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227602] = 2, + ACTIONS(12778), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220723] = 2, - ACTIONS(12639), 1, + [227610] = 2, + ACTIONS(12780), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220731] = 2, - ACTIONS(12641), 1, + [227618] = 2, + ACTIONS(12782), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220739] = 2, - ACTIONS(12643), 1, + [227626] = 2, + ACTIONS(12784), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220747] = 2, - ACTIONS(12645), 1, + [227634] = 2, + ACTIONS(12786), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220755] = 2, - ACTIONS(12647), 1, + [227642] = 2, + ACTIONS(12788), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220763] = 2, - ACTIONS(1606), 1, - anon_sym_RBRACE, + [227650] = 2, + ACTIONS(12790), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220771] = 2, - ACTIONS(12649), 1, - anon_sym_RPAREN, + [227658] = 2, + ACTIONS(12792), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220779] = 2, - ACTIONS(12651), 1, + [227666] = 2, + ACTIONS(12794), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220787] = 2, - ACTIONS(12653), 1, - anon_sym_COLON, + [227674] = 2, + ACTIONS(12796), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220795] = 2, - ACTIONS(12655), 1, - anon_sym_SQUOTE, + [227682] = 2, + ACTIONS(12798), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220803] = 2, - ACTIONS(12657), 1, - anon_sym_RPAREN, + [227690] = 2, + ACTIONS(12800), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220811] = 2, - ACTIONS(12659), 1, - anon_sym_SQUOTE, + [227698] = 2, + ACTIONS(12802), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220819] = 2, - ACTIONS(12661), 1, - anon_sym_RPAREN, + [227706] = 2, + ACTIONS(12804), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220827] = 2, - ACTIONS(12663), 1, + [227714] = 2, + ACTIONS(12806), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220835] = 2, - ACTIONS(12665), 1, + [227722] = 2, + ACTIONS(12808), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220843] = 2, - ACTIONS(12667), 1, + [227730] = 2, + ACTIONS(12810), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220851] = 2, - ACTIONS(12669), 1, - anon_sym_RPAREN, + [227738] = 2, + ACTIONS(12812), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220859] = 2, - ACTIONS(12671), 1, - anon_sym_in, + [227746] = 2, + ACTIONS(12814), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220867] = 2, - ACTIONS(12673), 1, + [227754] = 2, + ACTIONS(12816), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220875] = 2, - ACTIONS(1598), 1, - anon_sym_RBRACE, + [227762] = 2, + ACTIONS(12818), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220883] = 2, - ACTIONS(12675), 1, - anon_sym_in, + [227770] = 2, + ACTIONS(12820), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220891] = 2, - ACTIONS(12677), 1, - anon_sym_else, + [227778] = 2, + ACTIONS(12054), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220899] = 2, - ACTIONS(12679), 1, + [227786] = 2, + ACTIONS(12822), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220907] = 2, - ACTIONS(12681), 1, - anon_sym_else, + [227794] = 2, + ACTIONS(12824), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220915] = 2, - ACTIONS(12683), 1, - anon_sym_else, + [227802] = 2, + ACTIONS(12826), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220923] = 2, - ACTIONS(1568), 1, - anon_sym_RBRACE, + [227810] = 2, + ACTIONS(12828), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220931] = 2, - ACTIONS(12685), 1, + [227818] = 2, + ACTIONS(12830), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227826] = 2, + ACTIONS(12832), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227834] = 2, + ACTIONS(12834), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227842] = 2, + ACTIONS(12836), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227850] = 2, + ACTIONS(12838), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227858] = 2, + ACTIONS(12840), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227866] = 2, + ACTIONS(12842), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227874] = 2, + ACTIONS(12844), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220939] = 2, - ACTIONS(12687), 1, + [227882] = 2, + ACTIONS(12846), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227890] = 2, + ACTIONS(12848), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220947] = 2, - ACTIONS(11197), 1, - sym__automatic_semicolon, + [227898] = 2, + ACTIONS(12850), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220955] = 2, - ACTIONS(12689), 1, + [227906] = 2, + ACTIONS(12852), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220963] = 2, - ACTIONS(12691), 1, + [227914] = 2, + ACTIONS(12854), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227922] = 2, + ACTIONS(12856), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220971] = 2, - ACTIONS(12693), 1, + [227930] = 2, + ACTIONS(12858), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220979] = 2, - ACTIONS(12695), 1, + [227938] = 2, + ACTIONS(11840), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220987] = 2, - ACTIONS(11205), 1, - sym__automatic_semicolon, + [227946] = 2, + ACTIONS(12860), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220995] = 2, - ACTIONS(12697), 1, + [227954] = 2, + ACTIONS(12862), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221003] = 2, - ACTIONS(12699), 1, - anon_sym_else, + [227962] = 2, + ACTIONS(12864), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221011] = 2, - ACTIONS(12701), 1, + [227970] = 2, + ACTIONS(12866), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221019] = 2, - ACTIONS(12703), 1, + [227978] = 2, + ACTIONS(12868), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221027] = 2, - ACTIONS(12705), 1, + [227986] = 2, + ACTIONS(12870), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221035] = 2, - ACTIONS(12707), 1, - anon_sym_else, + [227994] = 2, + ACTIONS(12872), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221043] = 2, - ACTIONS(12709), 1, - anon_sym_else, + [228002] = 2, + ACTIONS(12874), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221051] = 2, - ACTIONS(12711), 1, - anon_sym_else, + [228010] = 2, + ACTIONS(12876), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221059] = 2, - ACTIONS(12713), 1, + [228018] = 2, + ACTIONS(12878), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221067] = 2, - ACTIONS(12715), 1, - anon_sym_LPAREN, + [228026] = 2, + ACTIONS(12880), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221075] = 2, - ACTIONS(12717), 1, - anon_sym_LPAREN, + [228034] = 2, + ACTIONS(12882), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221083] = 2, - ACTIONS(12719), 1, - anon_sym_LPAREN, + [228042] = 2, + ACTIONS(12884), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221091] = 2, - ACTIONS(12721), 1, - anon_sym_RPAREN, + [228050] = 2, + ACTIONS(12886), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228058] = 2, + ACTIONS(12888), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221099] = 2, - ACTIONS(12723), 1, + [228066] = 2, + ACTIONS(12890), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221107] = 2, - ACTIONS(12725), 1, - anon_sym_LPAREN, + [228074] = 2, + ACTIONS(12892), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221115] = 2, - ACTIONS(12727), 1, + [228082] = 2, + ACTIONS(12894), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228090] = 2, + ACTIONS(12896), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221123] = 2, - ACTIONS(12729), 1, - anon_sym_in, + [228098] = 2, + ACTIONS(12898), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221131] = 2, - ACTIONS(12731), 1, - anon_sym_LPAREN, + [228106] = 2, + ACTIONS(12900), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221139] = 2, - ACTIONS(12733), 1, - anon_sym_DASH_GT, + [228114] = 2, + ACTIONS(12902), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221147] = 2, - ACTIONS(12735), 1, - anon_sym_in, + [228122] = 2, + ACTIONS(5097), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221155] = 2, - ACTIONS(1395), 1, - anon_sym_RBRACE, + [228130] = 2, + ACTIONS(9046), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221163] = 2, - ACTIONS(12737), 1, - anon_sym_LPAREN, + [228138] = 2, + ACTIONS(12904), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221171] = 2, - ACTIONS(12739), 1, + [228146] = 2, + ACTIONS(12906), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221179] = 2, - ACTIONS(12741), 1, + [228154] = 2, + ACTIONS(12908), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221187] = 2, - ACTIONS(12743), 1, - anon_sym_in, + [228162] = 2, + ACTIONS(12910), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221195] = 2, - ACTIONS(12745), 1, - anon_sym_LPAREN, + [228170] = 2, + ACTIONS(12912), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221203] = 2, - ACTIONS(12747), 1, + [228178] = 2, + ACTIONS(12914), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221211] = 2, - ACTIONS(12749), 1, - sym__automatic_semicolon, + [228186] = 2, + ACTIONS(11862), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221219] = 2, - ACTIONS(12751), 1, - anon_sym_LPAREN, + [228194] = 2, + ACTIONS(12916), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221227] = 2, - ACTIONS(12753), 1, + [228202] = 2, + ACTIONS(12918), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221235] = 2, - ACTIONS(12755), 1, + [228210] = 2, + ACTIONS(12920), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221243] = 2, - ACTIONS(12757), 1, - anon_sym_in, + [228218] = 2, + ACTIONS(12922), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221251] = 2, - ACTIONS(12759), 1, - anon_sym_LPAREN, + [228226] = 2, + ACTIONS(12924), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221259] = 2, - ACTIONS(11881), 1, - anon_sym_RPAREN, + [228234] = 2, + ACTIONS(12926), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221267] = 2, - ACTIONS(12761), 1, - anon_sym_DASH_GT, + [228242] = 2, + ACTIONS(12928), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221275] = 2, - ACTIONS(12763), 1, + [228250] = 2, + ACTIONS(12930), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221283] = 2, - ACTIONS(12765), 1, - anon_sym_RPAREN, + [228258] = 2, + ACTIONS(12932), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221291] = 2, - ACTIONS(12767), 1, - anon_sym_else, + [228266] = 2, + ACTIONS(12934), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221299] = 2, - ACTIONS(12769), 1, + [228274] = 2, + ACTIONS(12936), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221307] = 2, - ACTIONS(12771), 1, + [228282] = 2, + ACTIONS(12938), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221315] = 2, - ACTIONS(1576), 1, - anon_sym_RBRACE, + [228290] = 2, + ACTIONS(12940), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221323] = 2, - ACTIONS(12773), 1, + [228298] = 2, + ACTIONS(12942), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221331] = 2, - ACTIONS(12775), 1, - anon_sym_DASH_GT, + [228306] = 2, + ACTIONS(12944), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221339] = 2, - ACTIONS(12777), 1, - anon_sym_in, + [228314] = 2, + ACTIONS(12946), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221347] = 2, - ACTIONS(12779), 1, - anon_sym_RPAREN, + [228322] = 2, + ACTIONS(12948), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221355] = 2, - ACTIONS(12781), 1, + [228330] = 2, + ACTIONS(12950), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221363] = 2, - ACTIONS(12783), 1, - anon_sym_RPAREN, + [228338] = 2, + ACTIONS(12952), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221371] = 2, - ACTIONS(12785), 1, - anon_sym_COLON, + [228346] = 2, + ACTIONS(12954), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221379] = 2, - ACTIONS(12787), 1, - anon_sym_in, + [228354] = 2, + ACTIONS(12956), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221387] = 2, - ACTIONS(12789), 1, + [228362] = 2, + ACTIONS(12958), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221395] = 2, - ACTIONS(12791), 1, - anon_sym_LPAREN, + [228370] = 2, + ACTIONS(12960), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221403] = 2, - ACTIONS(12793), 1, - anon_sym_in, + [228378] = 2, + ACTIONS(12962), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228386] = 2, + ACTIONS(12964), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221411] = 2, - ACTIONS(12795), 1, + [228394] = 2, + ACTIONS(12966), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221419] = 2, - ACTIONS(12797), 1, + [228402] = 2, + ACTIONS(12968), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221427] = 2, - ACTIONS(12799), 1, + [228410] = 2, + ACTIONS(12970), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221435] = 2, - ACTIONS(12801), 1, + [228418] = 2, + ACTIONS(12972), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221443] = 2, - ACTIONS(12803), 1, + [228426] = 2, + ACTIONS(12974), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221451] = 2, - ACTIONS(12805), 1, - anon_sym_in, + [228434] = 2, + ACTIONS(12976), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221459] = 2, - ACTIONS(12807), 1, + [228442] = 2, + ACTIONS(12978), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221467] = 2, - ACTIONS(12809), 1, - anon_sym_LPAREN, + [228450] = 2, + ACTIONS(12980), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221475] = 2, - ACTIONS(12811), 1, + [228458] = 2, + ACTIONS(12982), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221483] = 2, - ACTIONS(12813), 1, + [228466] = 2, + ACTIONS(12984), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221491] = 2, - ACTIONS(12815), 1, + [228474] = 2, + ACTIONS(12986), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221499] = 2, - ACTIONS(12817), 1, + [228482] = 2, + ACTIONS(12988), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221507] = 2, - ACTIONS(12819), 1, + [228490] = 2, + ACTIONS(12990), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221515] = 2, - ACTIONS(12821), 1, + [228498] = 2, + ACTIONS(12992), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221523] = 2, - ACTIONS(12823), 1, - anon_sym_in, + [228506] = 2, + ACTIONS(1632), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221531] = 2, - ACTIONS(12825), 1, + [228514] = 2, + ACTIONS(12994), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221539] = 2, - ACTIONS(12827), 1, - anon_sym_RPAREN, + [228522] = 2, + ACTIONS(12996), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221547] = 2, - ACTIONS(12829), 1, + [228530] = 2, + ACTIONS(12998), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221555] = 2, - ACTIONS(12831), 1, - anon_sym_in, + [228538] = 2, + ACTIONS(13000), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221563] = 2, - ACTIONS(12833), 1, + [228546] = 2, + ACTIONS(13002), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221571] = 2, - ACTIONS(12835), 1, - anon_sym_COLON, + [228554] = 2, + ACTIONS(13004), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221579] = 2, - ACTIONS(12837), 1, + [228562] = 2, + ACTIONS(13006), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221587] = 2, - ACTIONS(12839), 1, - anon_sym_EQ, + [228570] = 2, + ACTIONS(13008), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221595] = 2, - ACTIONS(12841), 1, + [228578] = 2, + ACTIONS(13010), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221603] = 2, - ACTIONS(12843), 1, + [228586] = 2, + ACTIONS(13012), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221611] = 2, - ACTIONS(12845), 1, + [228594] = 2, + ACTIONS(13014), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221619] = 2, - ACTIONS(12847), 1, + [228602] = 2, + ACTIONS(13016), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221627] = 2, - ACTIONS(12849), 1, + [228610] = 2, + ACTIONS(13018), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221635] = 2, - ACTIONS(12851), 1, + [228618] = 2, + ACTIONS(13020), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221643] = 2, - ACTIONS(12853), 1, + [228626] = 2, + ACTIONS(13022), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221651] = 2, - ACTIONS(12855), 1, + [228634] = 2, + ACTIONS(13024), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221659] = 2, - ACTIONS(12857), 1, - anon_sym_LPAREN, + [228642] = 2, + ACTIONS(1638), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221667] = 2, - ACTIONS(12859), 1, - anon_sym_LPAREN, + [228650] = 2, + ACTIONS(13026), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221675] = 2, - ACTIONS(12861), 1, - anon_sym_in, + [228658] = 2, + ACTIONS(11882), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221683] = 2, - ACTIONS(12863), 1, - anon_sym_in, + [228666] = 2, + ACTIONS(13028), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221691] = 2, - ACTIONS(12865), 1, - anon_sym_LPAREN, + [228674] = 2, + ACTIONS(13030), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221699] = 2, - ACTIONS(12867), 1, + [228682] = 2, + ACTIONS(13032), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221707] = 2, - ACTIONS(12869), 1, + [228690] = 2, + ACTIONS(13034), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221715] = 2, - ACTIONS(12871), 1, + [228698] = 2, + ACTIONS(13036), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228706] = 2, + ACTIONS(13038), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221723] = 2, - ACTIONS(12873), 1, + [228714] = 2, + ACTIONS(13040), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221731] = 2, - ACTIONS(12875), 1, + [228722] = 2, + ACTIONS(13042), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221739] = 2, - ACTIONS(12877), 1, - anon_sym_RBRACE, + [228730] = 2, + ACTIONS(13044), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221747] = 2, - ACTIONS(11462), 1, - anon_sym_RPAREN, + [228738] = 2, + ACTIONS(13046), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228746] = 2, + ACTIONS(13048), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221755] = 2, - ACTIONS(12879), 1, + [228754] = 2, + ACTIONS(13050), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221763] = 2, - ACTIONS(12881), 1, + [228762] = 2, + ACTIONS(13052), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228770] = 2, + ACTIONS(11309), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228778] = 2, + ACTIONS(13054), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221771] = 2, - ACTIONS(12883), 1, + [228786] = 2, + ACTIONS(13056), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221779] = 2, - ACTIONS(12885), 1, + [228794] = 2, + ACTIONS(13058), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221787] = 2, - ACTIONS(12887), 1, - anon_sym_in, + [228802] = 2, + ACTIONS(13060), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221795] = 2, - ACTIONS(12889), 1, + [228810] = 2, + ACTIONS(13062), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221803] = 2, - ACTIONS(12891), 1, - anon_sym_RPAREN, + [228818] = 2, + ACTIONS(13064), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221811] = 2, - ACTIONS(12893), 1, + [228826] = 2, + ACTIONS(13066), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221819] = 2, - ACTIONS(12895), 1, - anon_sym_LPAREN, + [228834] = 2, + ACTIONS(13068), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221827] = 2, - ACTIONS(12897), 1, - anon_sym_in, + [228842] = 2, + ACTIONS(13070), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221835] = 2, - ACTIONS(12899), 1, - anon_sym_RBRACE, + [228850] = 2, + ACTIONS(13072), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221843] = 2, - ACTIONS(12901), 1, + [228858] = 2, + ACTIONS(13074), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221851] = 2, - ACTIONS(12903), 1, + [228866] = 2, + ACTIONS(13076), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221859] = 2, - ACTIONS(12905), 1, + [228874] = 2, + ACTIONS(13078), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221867] = 2, - ACTIONS(12907), 1, + [228882] = 2, + ACTIONS(13080), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221875] = 2, - ACTIONS(12909), 1, + [228890] = 2, + ACTIONS(13082), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221883] = 2, - ACTIONS(12911), 1, + [228898] = 2, + ACTIONS(13084), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221891] = 2, - ACTIONS(12913), 1, + [228906] = 2, + ACTIONS(13086), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221899] = 2, - ACTIONS(12915), 1, + [228914] = 2, + ACTIONS(13088), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221907] = 2, - ACTIONS(12917), 1, + [228922] = 2, + ACTIONS(13090), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221915] = 2, - ACTIONS(12919), 1, + [228930] = 2, + ACTIONS(13092), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221923] = 2, - ACTIONS(12921), 1, + [228938] = 2, + ACTIONS(13094), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221931] = 2, - ACTIONS(12923), 1, + [228946] = 2, + ACTIONS(13096), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221939] = 2, - ACTIONS(12925), 1, + [228954] = 2, + ACTIONS(13098), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221947] = 2, - ACTIONS(12927), 1, + [228962] = 2, + ACTIONS(13100), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221955] = 2, - ACTIONS(12929), 1, + [228970] = 2, + ACTIONS(13102), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221963] = 2, - ACTIONS(12931), 1, + [228978] = 2, + ACTIONS(13104), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221971] = 2, - ACTIONS(12933), 1, + [228986] = 2, + ACTIONS(13106), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221979] = 2, - ACTIONS(12935), 1, + [228994] = 2, + ACTIONS(13108), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221987] = 2, - ACTIONS(12937), 1, + [229002] = 2, + ACTIONS(13110), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221995] = 2, - ACTIONS(12939), 1, + [229010] = 2, + ACTIONS(13112), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229018] = 2, + ACTIONS(13114), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222003] = 2, - ACTIONS(12941), 1, + [229026] = 2, + ACTIONS(13116), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222011] = 2, - ACTIONS(12943), 1, + [229034] = 2, + ACTIONS(13118), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222019] = 2, - ACTIONS(12945), 1, + [229042] = 2, + ACTIONS(13120), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222027] = 2, - ACTIONS(12947), 1, + [229050] = 2, + ACTIONS(13122), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222035] = 2, - ACTIONS(12949), 1, + [229058] = 2, + ACTIONS(13124), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222043] = 2, - ACTIONS(12951), 1, + [229066] = 2, + ACTIONS(13126), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222051] = 2, - ACTIONS(12953), 1, - anon_sym_in, + [229074] = 2, + ACTIONS(13128), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222059] = 2, - ACTIONS(12955), 1, - anon_sym_RBRACE, + [229082] = 2, + ACTIONS(13130), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222067] = 2, - ACTIONS(12957), 1, - anon_sym_LPAREN, + [229090] = 2, + ACTIONS(13132), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222075] = 2, - ACTIONS(12959), 1, - anon_sym_SQUOTE, + [229098] = 2, + ACTIONS(13134), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222083] = 2, - ACTIONS(12961), 1, + [229106] = 2, + ACTIONS(13136), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222091] = 2, - ACTIONS(12963), 1, + [229114] = 2, + ACTIONS(13138), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222099] = 2, - ACTIONS(12965), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222107] = 2, - ACTIONS(9683), 1, - sym__automatic_semicolon, + [229122] = 2, + ACTIONS(13140), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222115] = 2, - ACTIONS(12967), 1, - anon_sym_in, + [229130] = 2, + ACTIONS(13142), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222123] = 2, - ACTIONS(11072), 1, - sym__automatic_semicolon, + [229138] = 2, + ACTIONS(13144), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222131] = 2, - ACTIONS(12969), 1, + [229146] = 2, + ACTIONS(13146), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222139] = 2, - ACTIONS(12971), 1, - anon_sym_LPAREN, + [229154] = 2, + ACTIONS(13148), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222147] = 2, - ACTIONS(12973), 1, + [229162] = 2, + ACTIONS(13150), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222155] = 2, - ACTIONS(12975), 1, + [229170] = 2, + ACTIONS(13152), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222163] = 2, - ACTIONS(12977), 1, + [229178] = 2, + ACTIONS(13154), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222171] = 2, - ACTIONS(12979), 1, + [229186] = 2, + ACTIONS(13156), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222179] = 2, - ACTIONS(12981), 1, + [229194] = 2, + ACTIONS(13158), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222187] = 2, - ACTIONS(12983), 1, + [229202] = 2, + ACTIONS(13160), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222195] = 2, - ACTIONS(12985), 1, + [229210] = 2, + ACTIONS(13162), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222203] = 2, - ACTIONS(12987), 1, + [229218] = 2, + ACTIONS(13164), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222211] = 2, - ACTIONS(12989), 1, - anon_sym_in, + [229226] = 2, + ACTIONS(13166), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222219] = 2, - ACTIONS(12991), 1, + [229234] = 2, + ACTIONS(13168), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222227] = 2, - ACTIONS(12993), 1, + [229242] = 2, + ACTIONS(13170), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222235] = 2, - ACTIONS(12995), 1, - anon_sym_LPAREN, + [229250] = 2, + ACTIONS(13172), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222243] = 2, - ACTIONS(12997), 1, - anon_sym_RPAREN, + [229258] = 2, + ACTIONS(13174), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222251] = 2, - ACTIONS(12999), 1, - anon_sym_while, + [229266] = 2, + ACTIONS(13176), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222259] = 2, - ACTIONS(13001), 1, - anon_sym_LPAREN, + [229274] = 2, + ACTIONS(13178), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222267] = 2, - ACTIONS(11553), 1, - anon_sym_RPAREN, + [229282] = 2, + ACTIONS(13180), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222275] = 2, - ACTIONS(13003), 1, - anon_sym_AMP, + [229290] = 2, + ACTIONS(13182), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222283] = 2, - ACTIONS(13005), 1, - anon_sym_COLON, + [229298] = 2, + ACTIONS(13184), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222291] = 2, - ACTIONS(13007), 1, + [229306] = 2, + ACTIONS(13186), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222299] = 2, - ACTIONS(13009), 1, - anon_sym_COLON, + [229314] = 2, + ACTIONS(13188), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222307] = 2, - ACTIONS(13011), 1, - anon_sym_DASH_GT, + [229322] = 2, + ACTIONS(13190), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222315] = 2, - ACTIONS(13013), 1, + [229330] = 2, + ACTIONS(13192), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222323] = 2, - ACTIONS(13015), 1, + [229338] = 2, + ACTIONS(13194), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222331] = 2, - ACTIONS(13017), 1, - anon_sym_DASH_GT, + [229346] = 2, + ACTIONS(13196), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222339] = 2, - ACTIONS(5130), 1, - anon_sym_while, + [229354] = 2, + ACTIONS(13198), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222347] = 3, + [229362] = 3, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10700), 1, + ACTIONS(10927), 1, sym_line_comment, - ACTIONS(13019), 1, + ACTIONS(13200), 1, aux_sym_shebang_line_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(4501)] = 0, - [SMALL_STATE(4502)] = 75, - [SMALL_STATE(4503)] = 160, - [SMALL_STATE(4504)] = 235, - [SMALL_STATE(4505)] = 320, - [SMALL_STATE(4506)] = 395, - [SMALL_STATE(4507)] = 480, - [SMALL_STATE(4508)] = 565, - [SMALL_STATE(4509)] = 640, - [SMALL_STATE(4510)] = 725, - [SMALL_STATE(4511)] = 800, - [SMALL_STATE(4512)] = 871, - [SMALL_STATE(4513)] = 953, - [SMALL_STATE(4514)] = 1027, - [SMALL_STATE(4515)] = 1101, - [SMALL_STATE(4516)] = 1187, - [SMALL_STATE(4517)] = 1259, - [SMALL_STATE(4518)] = 1341, - [SMALL_STATE(4519)] = 1421, - [SMALL_STATE(4520)] = 1495, - [SMALL_STATE(4521)] = 1581, - [SMALL_STATE(4522)] = 1661, - [SMALL_STATE(4523)] = 1733, - [SMALL_STATE(4524)] = 1815, - [SMALL_STATE(4525)] = 1895, - [SMALL_STATE(4526)] = 1977, - [SMALL_STATE(4527)] = 2057, - [SMALL_STATE(4528)] = 2127, - [SMALL_STATE(4529)] = 2209, - [SMALL_STATE(4530)] = 2289, - [SMALL_STATE(4531)] = 2369, - [SMALL_STATE(4532)] = 2439, - [SMALL_STATE(4533)] = 2517, - [SMALL_STATE(4534)] = 2595, - [SMALL_STATE(4535)] = 2669, - [SMALL_STATE(4536)] = 2739, - [SMALL_STATE(4537)] = 2819, - [SMALL_STATE(4538)] = 2899, - [SMALL_STATE(4539)] = 2979, - [SMALL_STATE(4540)] = 3049, - [SMALL_STATE(4541)] = 3129, - [SMALL_STATE(4542)] = 3209, - [SMALL_STATE(4543)] = 3284, - [SMALL_STATE(4544)] = 3359, - [SMALL_STATE(4545)] = 3436, - [SMALL_STATE(4546)] = 3513, - [SMALL_STATE(4547)] = 3582, - [SMALL_STATE(4548)] = 3659, - [SMALL_STATE(4549)] = 3736, - [SMALL_STATE(4550)] = 3813, - [SMALL_STATE(4551)] = 3886, - [SMALL_STATE(4552)] = 3959, - [SMALL_STATE(4553)] = 4028, - [SMALL_STATE(4554)] = 4105, - [SMALL_STATE(4555)] = 4176, - [SMALL_STATE(4556)] = 4245, - [SMALL_STATE(4557)] = 4322, - [SMALL_STATE(4558)] = 4399, - [SMALL_STATE(4559)] = 4476, - [SMALL_STATE(4560)] = 4553, - [SMALL_STATE(4561)] = 4622, - [SMALL_STATE(4562)] = 4691, - [SMALL_STATE(4563)] = 4764, - [SMALL_STATE(4564)] = 4841, - [SMALL_STATE(4565)] = 4918, - [SMALL_STATE(4566)] = 4995, - [SMALL_STATE(4567)] = 5072, - [SMALL_STATE(4568)] = 5149, - [SMALL_STATE(4569)] = 5222, - [SMALL_STATE(4570)] = 5299, - [SMALL_STATE(4571)] = 5376, - [SMALL_STATE(4572)] = 5453, - [SMALL_STATE(4573)] = 5530, - [SMALL_STATE(4574)] = 5607, - [SMALL_STATE(4575)] = 5684, - [SMALL_STATE(4576)] = 5761, - [SMALL_STATE(4577)] = 5830, - [SMALL_STATE(4578)] = 5907, - [SMALL_STATE(4579)] = 5979, - [SMALL_STATE(4580)] = 6047, - [SMALL_STATE(4581)] = 6115, - [SMALL_STATE(4582)] = 6187, - [SMALL_STATE(4583)] = 6259, - [SMALL_STATE(4584)] = 6327, - [SMALL_STATE(4585)] = 6399, - [SMALL_STATE(4586)] = 6471, - [SMALL_STATE(4587)] = 6543, - [SMALL_STATE(4588)] = 6625, - [SMALL_STATE(4589)] = 6697, - [SMALL_STATE(4590)] = 6769, - [SMALL_STATE(4591)] = 6851, - [SMALL_STATE(4592)] = 6919, - [SMALL_STATE(4593)] = 6991, - [SMALL_STATE(4594)] = 7059, - [SMALL_STATE(4595)] = 7131, - [SMALL_STATE(4596)] = 7199, - [SMALL_STATE(4597)] = 7271, - [SMALL_STATE(4598)] = 7339, - [SMALL_STATE(4599)] = 7411, - [SMALL_STATE(4600)] = 7483, - [SMALL_STATE(4601)] = 7551, - [SMALL_STATE(4602)] = 7623, - [SMALL_STATE(4603)] = 7691, - [SMALL_STATE(4604)] = 7763, - [SMALL_STATE(4605)] = 7835, - [SMALL_STATE(4606)] = 7907, - [SMALL_STATE(4607)] = 7989, - [SMALL_STATE(4608)] = 8061, - [SMALL_STATE(4609)] = 8129, - [SMALL_STATE(4610)] = 8201, - [SMALL_STATE(4611)] = 8269, - [SMALL_STATE(4612)] = 8339, - [SMALL_STATE(4613)] = 8411, - [SMALL_STATE(4614)] = 8483, - [SMALL_STATE(4615)] = 8555, - [SMALL_STATE(4616)] = 8627, - [SMALL_STATE(4617)] = 8699, - [SMALL_STATE(4618)] = 8781, - [SMALL_STATE(4619)] = 8849, - [SMALL_STATE(4620)] = 8921, - [SMALL_STATE(4621)] = 8993, - [SMALL_STATE(4622)] = 9065, - [SMALL_STATE(4623)] = 9137, - [SMALL_STATE(4624)] = 9205, - [SMALL_STATE(4625)] = 9287, - [SMALL_STATE(4626)] = 9355, - [SMALL_STATE(4627)] = 9427, - [SMALL_STATE(4628)] = 9495, - [SMALL_STATE(4629)] = 9563, - [SMALL_STATE(4630)] = 9631, - [SMALL_STATE(4631)] = 9713, - [SMALL_STATE(4632)] = 9785, - [SMALL_STATE(4633)] = 9853, - [SMALL_STATE(4634)] = 9923, - [SMALL_STATE(4635)] = 10005, - [SMALL_STATE(4636)] = 10073, - [SMALL_STATE(4637)] = 10141, - [SMALL_STATE(4638)] = 10211, - [SMALL_STATE(4639)] = 10283, - [SMALL_STATE(4640)] = 10355, - [SMALL_STATE(4641)] = 10437, - [SMALL_STATE(4642)] = 10509, - [SMALL_STATE(4643)] = 10591, - [SMALL_STATE(4644)] = 10663, - [SMALL_STATE(4645)] = 10745, - [SMALL_STATE(4646)] = 10812, - [SMALL_STATE(4647)] = 10893, - [SMALL_STATE(4648)] = 10960, - [SMALL_STATE(4649)] = 11027, - [SMALL_STATE(4650)] = 11094, - [SMALL_STATE(4651)] = 11165, - [SMALL_STATE(4652)] = 11232, - [SMALL_STATE(4653)] = 11299, - [SMALL_STATE(4654)] = 11366, - [SMALL_STATE(4655)] = 11433, - [SMALL_STATE(4656)] = 11500, - [SMALL_STATE(4657)] = 11567, - [SMALL_STATE(4658)] = 11634, - [SMALL_STATE(4659)] = 11701, - [SMALL_STATE(4660)] = 11774, - [SMALL_STATE(4661)] = 11841, - [SMALL_STATE(4662)] = 11908, - [SMALL_STATE(4663)] = 11975, - [SMALL_STATE(4664)] = 12054, - [SMALL_STATE(4665)] = 12121, - [SMALL_STATE(4666)] = 12188, - [SMALL_STATE(4667)] = 12255, - [SMALL_STATE(4668)] = 12334, - [SMALL_STATE(4669)] = 12401, - [SMALL_STATE(4670)] = 12468, - [SMALL_STATE(4671)] = 12535, - [SMALL_STATE(4672)] = 12604, - [SMALL_STATE(4673)] = 12671, - [SMALL_STATE(4674)] = 12738, - [SMALL_STATE(4675)] = 12805, - [SMALL_STATE(4676)] = 12884, - [SMALL_STATE(4677)] = 12951, - [SMALL_STATE(4678)] = 13020, - [SMALL_STATE(4679)] = 13091, - [SMALL_STATE(4680)] = 13158, - [SMALL_STATE(4681)] = 13227, - [SMALL_STATE(4682)] = 13296, - [SMALL_STATE(4683)] = 13363, - [SMALL_STATE(4684)] = 13430, - [SMALL_STATE(4685)] = 13503, - [SMALL_STATE(4686)] = 13582, - [SMALL_STATE(4687)] = 13661, - [SMALL_STATE(4688)] = 13728, - [SMALL_STATE(4689)] = 13795, - [SMALL_STATE(4690)] = 13862, - [SMALL_STATE(4691)] = 13929, - [SMALL_STATE(4692)] = 14008, - [SMALL_STATE(4693)] = 14075, - [SMALL_STATE(4694)] = 14142, - [SMALL_STATE(4695)] = 14209, - [SMALL_STATE(4696)] = 14276, - [SMALL_STATE(4697)] = 14343, - [SMALL_STATE(4698)] = 14410, - [SMALL_STATE(4699)] = 14477, - [SMALL_STATE(4700)] = 14544, - [SMALL_STATE(4701)] = 14623, - [SMALL_STATE(4702)] = 14690, - [SMALL_STATE(4703)] = 14771, - [SMALL_STATE(4704)] = 14838, - [SMALL_STATE(4705)] = 14917, - [SMALL_STATE(4706)] = 14984, - [SMALL_STATE(4707)] = 15051, - [SMALL_STATE(4708)] = 15122, - [SMALL_STATE(4709)] = 15189, - [SMALL_STATE(4710)] = 15266, - [SMALL_STATE(4711)] = 15333, - [SMALL_STATE(4712)] = 15400, - [SMALL_STATE(4713)] = 15467, - [SMALL_STATE(4714)] = 15534, - [SMALL_STATE(4715)] = 15605, - [SMALL_STATE(4716)] = 15672, - [SMALL_STATE(4717)] = 15751, - [SMALL_STATE(4718)] = 15828, - [SMALL_STATE(4719)] = 15895, - [SMALL_STATE(4720)] = 15962, - [SMALL_STATE(4721)] = 16029, - [SMALL_STATE(4722)] = 16096, - [SMALL_STATE(4723)] = 16163, - [SMALL_STATE(4724)] = 16230, - [SMALL_STATE(4725)] = 16299, - [SMALL_STATE(4726)] = 16376, - [SMALL_STATE(4727)] = 16443, - [SMALL_STATE(4728)] = 16510, - [SMALL_STATE(4729)] = 16577, - [SMALL_STATE(4730)] = 16644, - [SMALL_STATE(4731)] = 16711, - [SMALL_STATE(4732)] = 16790, - [SMALL_STATE(4733)] = 16857, - [SMALL_STATE(4734)] = 16924, - [SMALL_STATE(4735)] = 16991, - [SMALL_STATE(4736)] = 17058, - [SMALL_STATE(4737)] = 17125, - [SMALL_STATE(4738)] = 17192, - [SMALL_STATE(4739)] = 17263, - [SMALL_STATE(4740)] = 17330, - [SMALL_STATE(4741)] = 17397, - [SMALL_STATE(4742)] = 17464, - [SMALL_STATE(4743)] = 17531, - [SMALL_STATE(4744)] = 17598, - [SMALL_STATE(4745)] = 17665, - [SMALL_STATE(4746)] = 17742, - [SMALL_STATE(4747)] = 17809, - [SMALL_STATE(4748)] = 17876, - [SMALL_STATE(4749)] = 17943, - [SMALL_STATE(4750)] = 18010, - [SMALL_STATE(4751)] = 18077, - [SMALL_STATE(4752)] = 18144, - [SMALL_STATE(4753)] = 18211, - [SMALL_STATE(4754)] = 18278, - [SMALL_STATE(4755)] = 18345, - [SMALL_STATE(4756)] = 18412, - [SMALL_STATE(4757)] = 18479, - [SMALL_STATE(4758)] = 18546, - [SMALL_STATE(4759)] = 18623, - [SMALL_STATE(4760)] = 18690, - [SMALL_STATE(4761)] = 18767, - [SMALL_STATE(4762)] = 18840, - [SMALL_STATE(4763)] = 18907, - [SMALL_STATE(4764)] = 18974, - [SMALL_STATE(4765)] = 19041, - [SMALL_STATE(4766)] = 19118, - [SMALL_STATE(4767)] = 19195, - [SMALL_STATE(4768)] = 19262, - [SMALL_STATE(4769)] = 19339, - [SMALL_STATE(4770)] = 19406, - [SMALL_STATE(4771)] = 19483, - [SMALL_STATE(4772)] = 19550, - [SMALL_STATE(4773)] = 19631, - [SMALL_STATE(4774)] = 19698, - [SMALL_STATE(4775)] = 19775, - [SMALL_STATE(4776)] = 19842, - [SMALL_STATE(4777)] = 19909, - [SMALL_STATE(4778)] = 19976, - [SMALL_STATE(4779)] = 20043, - [SMALL_STATE(4780)] = 20110, - [SMALL_STATE(4781)] = 20177, - [SMALL_STATE(4782)] = 20254, - [SMALL_STATE(4783)] = 20321, - [SMALL_STATE(4784)] = 20398, - [SMALL_STATE(4785)] = 20479, - [SMALL_STATE(4786)] = 20546, - [SMALL_STATE(4787)] = 20623, - [SMALL_STATE(4788)] = 20690, - [SMALL_STATE(4789)] = 20757, - [SMALL_STATE(4790)] = 20824, - [SMALL_STATE(4791)] = 20891, - [SMALL_STATE(4792)] = 20958, - [SMALL_STATE(4793)] = 21035, - [SMALL_STATE(4794)] = 21102, - [SMALL_STATE(4795)] = 21169, - [SMALL_STATE(4796)] = 21236, - [SMALL_STATE(4797)] = 21303, - [SMALL_STATE(4798)] = 21370, - [SMALL_STATE(4799)] = 21437, - [SMALL_STATE(4800)] = 21514, - [SMALL_STATE(4801)] = 21581, - [SMALL_STATE(4802)] = 21648, - [SMALL_STATE(4803)] = 21725, - [SMALL_STATE(4804)] = 21802, - [SMALL_STATE(4805)] = 21869, - [SMALL_STATE(4806)] = 21936, - [SMALL_STATE(4807)] = 22013, - [SMALL_STATE(4808)] = 22094, - [SMALL_STATE(4809)] = 22161, - [SMALL_STATE(4810)] = 22228, - [SMALL_STATE(4811)] = 22297, - [SMALL_STATE(4812)] = 22364, - [SMALL_STATE(4813)] = 22433, - [SMALL_STATE(4814)] = 22502, - [SMALL_STATE(4815)] = 22569, - [SMALL_STATE(4816)] = 22636, - [SMALL_STATE(4817)] = 22705, - [SMALL_STATE(4818)] = 22772, - [SMALL_STATE(4819)] = 22843, - [SMALL_STATE(4820)] = 22910, - [SMALL_STATE(4821)] = 22977, - [SMALL_STATE(4822)] = 23044, - [SMALL_STATE(4823)] = 23111, - [SMALL_STATE(4824)] = 23180, - [SMALL_STATE(4825)] = 23247, - [SMALL_STATE(4826)] = 23314, - [SMALL_STATE(4827)] = 23381, - [SMALL_STATE(4828)] = 23448, - [SMALL_STATE(4829)] = 23515, - [SMALL_STATE(4830)] = 23582, - [SMALL_STATE(4831)] = 23653, - [SMALL_STATE(4832)] = 23720, - [SMALL_STATE(4833)] = 23787, - [SMALL_STATE(4834)] = 23856, - [SMALL_STATE(4835)] = 23923, - [SMALL_STATE(4836)] = 23990, - [SMALL_STATE(4837)] = 24060, - [SMALL_STATE(4838)] = 24130, - [SMALL_STATE(4839)] = 24206, - [SMALL_STATE(4840)] = 24280, - [SMALL_STATE(4841)] = 24354, - [SMALL_STATE(4842)] = 24428, - [SMALL_STATE(4843)] = 24506, - [SMALL_STATE(4844)] = 24582, - [SMALL_STATE(4845)] = 24648, - [SMALL_STATE(4846)] = 24722, - [SMALL_STATE(4847)] = 24796, - [SMALL_STATE(4848)] = 24876, - [SMALL_STATE(4849)] = 24950, - [SMALL_STATE(4850)] = 25026, - [SMALL_STATE(4851)] = 25100, - [SMALL_STATE(4852)] = 25180, - [SMALL_STATE(4853)] = 25256, - [SMALL_STATE(4854)] = 25330, - [SMALL_STATE(4855)] = 25398, - [SMALL_STATE(4856)] = 25472, - [SMALL_STATE(4857)] = 25550, - [SMALL_STATE(4858)] = 25624, - [SMALL_STATE(4859)] = 25698, - [SMALL_STATE(4860)] = 25778, - [SMALL_STATE(4861)] = 25856, - [SMALL_STATE(4862)] = 25930, - [SMALL_STATE(4863)] = 26010, - [SMALL_STATE(4864)] = 26086, - [SMALL_STATE(4865)] = 26156, - [SMALL_STATE(4866)] = 26236, - [SMALL_STATE(4867)] = 26310, - [SMALL_STATE(4868)] = 26380, - [SMALL_STATE(4869)] = 26448, - [SMALL_STATE(4870)] = 26528, - [SMALL_STATE(4871)] = 26604, - [SMALL_STATE(4872)] = 26678, - [SMALL_STATE(4873)] = 26754, - [SMALL_STATE(4874)] = 26828, - [SMALL_STATE(4875)] = 26902, - [SMALL_STATE(4876)] = 26974, - [SMALL_STATE(4877)] = 27048, - [SMALL_STATE(4878)] = 27128, - [SMALL_STATE(4879)] = 27202, - [SMALL_STATE(4880)] = 27278, - [SMALL_STATE(4881)] = 27348, - [SMALL_STATE(4882)] = 27422, - [SMALL_STATE(4883)] = 27490, - [SMALL_STATE(4884)] = 27570, - [SMALL_STATE(4885)] = 27650, - [SMALL_STATE(4886)] = 27716, - [SMALL_STATE(4887)] = 27794, - [SMALL_STATE(4888)] = 27868, - [SMALL_STATE(4889)] = 27946, - [SMALL_STATE(4890)] = 28018, - [SMALL_STATE(4891)] = 28088, - [SMALL_STATE(4892)] = 28158, - [SMALL_STATE(4893)] = 28234, - [SMALL_STATE(4894)] = 28304, - [SMALL_STATE(4895)] = 28378, - [SMALL_STATE(4896)] = 28444, - [SMALL_STATE(4897)] = 28520, - [SMALL_STATE(4898)] = 28586, - [SMALL_STATE(4899)] = 28662, - [SMALL_STATE(4900)] = 28732, - [SMALL_STATE(4901)] = 28812, - [SMALL_STATE(4902)] = 28882, - [SMALL_STATE(4903)] = 28956, - [SMALL_STATE(4904)] = 29021, - [SMALL_STATE(4905)] = 29086, - [SMALL_STATE(4906)] = 29155, - [SMALL_STATE(4907)] = 29226, - [SMALL_STATE(4908)] = 29295, - [SMALL_STATE(4909)] = 29360, - [SMALL_STATE(4910)] = 29429, - [SMALL_STATE(4911)] = 29494, - [SMALL_STATE(4912)] = 29563, - [SMALL_STATE(4913)] = 29640, - [SMALL_STATE(4914)] = 29709, - [SMALL_STATE(4915)] = 29778, - [SMALL_STATE(4916)] = 29847, - [SMALL_STATE(4917)] = 29922, - [SMALL_STATE(4918)] = 29987, - [SMALL_STATE(4919)] = 30054, - [SMALL_STATE(4920)] = 30129, - [SMALL_STATE(4921)] = 30200, - [SMALL_STATE(4922)] = 30275, - [SMALL_STATE(4923)] = 30344, - [SMALL_STATE(4924)] = 30413, - [SMALL_STATE(4925)] = 30478, - [SMALL_STATE(4926)] = 30551, - [SMALL_STATE(4927)] = 30618, - [SMALL_STATE(4928)] = 30695, - [SMALL_STATE(4929)] = 30772, - [SMALL_STATE(4930)] = 30849, - [SMALL_STATE(4931)] = 30918, - [SMALL_STATE(4932)] = 30991, - [SMALL_STATE(4933)] = 31060, - [SMALL_STATE(4934)] = 31125, - [SMALL_STATE(4935)] = 31194, - [SMALL_STATE(4936)] = 31263, - [SMALL_STATE(4937)] = 31328, - [SMALL_STATE(4938)] = 31405, - [SMALL_STATE(4939)] = 31470, - [SMALL_STATE(4940)] = 31543, - [SMALL_STATE(4941)] = 31616, - [SMALL_STATE(4942)] = 31689, - [SMALL_STATE(4943)] = 31762, - [SMALL_STATE(4944)] = 31839, - [SMALL_STATE(4945)] = 31914, - [SMALL_STATE(4946)] = 31979, - [SMALL_STATE(4947)] = 32052, - [SMALL_STATE(4948)] = 32117, - [SMALL_STATE(4949)] = 32182, - [SMALL_STATE(4950)] = 32251, - [SMALL_STATE(4951)] = 32316, - [SMALL_STATE(4952)] = 32389, - [SMALL_STATE(4953)] = 32454, - [SMALL_STATE(4954)] = 32531, - [SMALL_STATE(4955)] = 32600, - [SMALL_STATE(4956)] = 32677, - [SMALL_STATE(4957)] = 32746, - [SMALL_STATE(4958)] = 32811, - [SMALL_STATE(4959)] = 32880, - [SMALL_STATE(4960)] = 32949, - [SMALL_STATE(4961)] = 33016, - [SMALL_STATE(4962)] = 33085, - [SMALL_STATE(4963)] = 33154, - [SMALL_STATE(4964)] = 33219, - [SMALL_STATE(4965)] = 33288, - [SMALL_STATE(4966)] = 33357, - [SMALL_STATE(4967)] = 33422, - [SMALL_STATE(4968)] = 33491, - [SMALL_STATE(4969)] = 33566, - [SMALL_STATE(4970)] = 33631, - [SMALL_STATE(4971)] = 33706, - [SMALL_STATE(4972)] = 33771, - [SMALL_STATE(4973)] = 33836, - [SMALL_STATE(4974)] = 33905, - [SMALL_STATE(4975)] = 33974, - [SMALL_STATE(4976)] = 34043, - [SMALL_STATE(4977)] = 34120, - [SMALL_STATE(4978)] = 34189, - [SMALL_STATE(4979)] = 34262, - [SMALL_STATE(4980)] = 34335, - [SMALL_STATE(4981)] = 34404, - [SMALL_STATE(4982)] = 34481, - [SMALL_STATE(4983)] = 34545, - [SMALL_STATE(4984)] = 34609, - [SMALL_STATE(4985)] = 34681, - [SMALL_STATE(4986)] = 34745, - [SMALL_STATE(4987)] = 34809, - [SMALL_STATE(4988)] = 34873, - [SMALL_STATE(4989)] = 34939, - [SMALL_STATE(4990)] = 35003, - [SMALL_STATE(4991)] = 35067, - [SMALL_STATE(4992)] = 35139, - [SMALL_STATE(4993)] = 35203, - [SMALL_STATE(4994)] = 35267, - [SMALL_STATE(4995)] = 35331, - [SMALL_STATE(4996)] = 35395, - [SMALL_STATE(4997)] = 35459, - [SMALL_STATE(4998)] = 35531, - [SMALL_STATE(4999)] = 35595, - [SMALL_STATE(5000)] = 35659, - [SMALL_STATE(5001)] = 35723, - [SMALL_STATE(5002)] = 35787, - [SMALL_STATE(5003)] = 35851, - [SMALL_STATE(5004)] = 35925, - [SMALL_STATE(5005)] = 35993, - [SMALL_STATE(5006)] = 36057, - [SMALL_STATE(5007)] = 36121, - [SMALL_STATE(5008)] = 36185, - [SMALL_STATE(5009)] = 36249, - [SMALL_STATE(5010)] = 36323, - [SMALL_STATE(5011)] = 36397, - [SMALL_STATE(5012)] = 36461, - [SMALL_STATE(5013)] = 36525, - [SMALL_STATE(5014)] = 36589, - [SMALL_STATE(5015)] = 36663, - [SMALL_STATE(5016)] = 36727, - [SMALL_STATE(5017)] = 36801, - [SMALL_STATE(5018)] = 36871, - [SMALL_STATE(5019)] = 36935, - [SMALL_STATE(5020)] = 37009, - [SMALL_STATE(5021)] = 37073, - [SMALL_STATE(5022)] = 37137, - [SMALL_STATE(5023)] = 37201, - [SMALL_STATE(5024)] = 37275, - [SMALL_STATE(5025)] = 37339, - [SMALL_STATE(5026)] = 37403, - [SMALL_STATE(5027)] = 37475, - [SMALL_STATE(5028)] = 37541, - [SMALL_STATE(5029)] = 37605, - [SMALL_STATE(5030)] = 37671, - [SMALL_STATE(5031)] = 37735, - [SMALL_STATE(5032)] = 37799, - [SMALL_STATE(5033)] = 37863, - [SMALL_STATE(5034)] = 37927, - [SMALL_STATE(5035)] = 37991, - [SMALL_STATE(5036)] = 38055, - [SMALL_STATE(5037)] = 38119, - [SMALL_STATE(5038)] = 38183, - [SMALL_STATE(5039)] = 38247, - [SMALL_STATE(5040)] = 38311, - [SMALL_STATE(5041)] = 38377, - [SMALL_STATE(5042)] = 38441, - [SMALL_STATE(5043)] = 38505, - [SMALL_STATE(5044)] = 38571, - [SMALL_STATE(5045)] = 38635, - [SMALL_STATE(5046)] = 38699, - [SMALL_STATE(5047)] = 38763, - [SMALL_STATE(5048)] = 38829, - [SMALL_STATE(5049)] = 38895, - [SMALL_STATE(5050)] = 38959, - [SMALL_STATE(5051)] = 39023, - [SMALL_STATE(5052)] = 39087, - [SMALL_STATE(5053)] = 39151, - [SMALL_STATE(5054)] = 39215, - [SMALL_STATE(5055)] = 39287, - [SMALL_STATE(5056)] = 39351, - [SMALL_STATE(5057)] = 39415, - [SMALL_STATE(5058)] = 39479, - [SMALL_STATE(5059)] = 39543, - [SMALL_STATE(5060)] = 39607, - [SMALL_STATE(5061)] = 39671, - [SMALL_STATE(5062)] = 39735, - [SMALL_STATE(5063)] = 39799, - [SMALL_STATE(5064)] = 39863, - [SMALL_STATE(5065)] = 39927, - [SMALL_STATE(5066)] = 39991, - [SMALL_STATE(5067)] = 40055, - [SMALL_STATE(5068)] = 40119, - [SMALL_STATE(5069)] = 40183, - [SMALL_STATE(5070)] = 40247, - [SMALL_STATE(5071)] = 40311, - [SMALL_STATE(5072)] = 40375, - [SMALL_STATE(5073)] = 40439, - [SMALL_STATE(5074)] = 40503, - [SMALL_STATE(5075)] = 40575, - [SMALL_STATE(5076)] = 40639, - [SMALL_STATE(5077)] = 40703, - [SMALL_STATE(5078)] = 40767, - [SMALL_STATE(5079)] = 40831, - [SMALL_STATE(5080)] = 40895, - [SMALL_STATE(5081)] = 40963, - [SMALL_STATE(5082)] = 41027, - [SMALL_STATE(5083)] = 41091, - [SMALL_STATE(5084)] = 41165, - [SMALL_STATE(5085)] = 41229, - [SMALL_STATE(5086)] = 41293, - [SMALL_STATE(5087)] = 41357, - [SMALL_STATE(5088)] = 41421, - [SMALL_STATE(5089)] = 41485, - [SMALL_STATE(5090)] = 41549, - [SMALL_STATE(5091)] = 41613, - [SMALL_STATE(5092)] = 41687, - [SMALL_STATE(5093)] = 41755, - [SMALL_STATE(5094)] = 41821, - [SMALL_STATE(5095)] = 41885, - [SMALL_STATE(5096)] = 41949, - [SMALL_STATE(5097)] = 42023, - [SMALL_STATE(5098)] = 42097, - [SMALL_STATE(5099)] = 42161, - [SMALL_STATE(5100)] = 42225, - [SMALL_STATE(5101)] = 42289, - [SMALL_STATE(5102)] = 42353, - [SMALL_STATE(5103)] = 42417, - [SMALL_STATE(5104)] = 42489, - [SMALL_STATE(5105)] = 42553, - [SMALL_STATE(5106)] = 42617, - [SMALL_STATE(5107)] = 42681, - [SMALL_STATE(5108)] = 42745, - [SMALL_STATE(5109)] = 42809, - [SMALL_STATE(5110)] = 42883, - [SMALL_STATE(5111)] = 42947, - [SMALL_STATE(5112)] = 43019, - [SMALL_STATE(5113)] = 43083, - [SMALL_STATE(5114)] = 43147, - [SMALL_STATE(5115)] = 43211, - [SMALL_STATE(5116)] = 43275, - [SMALL_STATE(5117)] = 43339, - [SMALL_STATE(5118)] = 43403, - [SMALL_STATE(5119)] = 43467, - [SMALL_STATE(5120)] = 43541, - [SMALL_STATE(5121)] = 43605, - [SMALL_STATE(5122)] = 43669, - [SMALL_STATE(5123)] = 43733, - [SMALL_STATE(5124)] = 43797, - [SMALL_STATE(5125)] = 43861, - [SMALL_STATE(5126)] = 43925, - [SMALL_STATE(5127)] = 43989, - [SMALL_STATE(5128)] = 44059, - [SMALL_STATE(5129)] = 44123, - [SMALL_STATE(5130)] = 44195, - [SMALL_STATE(5131)] = 44267, - [SMALL_STATE(5132)] = 44331, - [SMALL_STATE(5133)] = 44395, - [SMALL_STATE(5134)] = 44459, - [SMALL_STATE(5135)] = 44523, - [SMALL_STATE(5136)] = 44597, - [SMALL_STATE(5137)] = 44671, - [SMALL_STATE(5138)] = 44735, - [SMALL_STATE(5139)] = 44799, - [SMALL_STATE(5140)] = 44863, - [SMALL_STATE(5141)] = 44927, - [SMALL_STATE(5142)] = 44991, - [SMALL_STATE(5143)] = 45055, - [SMALL_STATE(5144)] = 45119, - [SMALL_STATE(5145)] = 45183, - [SMALL_STATE(5146)] = 45247, - [SMALL_STATE(5147)] = 45317, - [SMALL_STATE(5148)] = 45381, - [SMALL_STATE(5149)] = 45453, - [SMALL_STATE(5150)] = 45527, - [SMALL_STATE(5151)] = 45591, - [SMALL_STATE(5152)] = 45655, - [SMALL_STATE(5153)] = 45719, - [SMALL_STATE(5154)] = 45783, - [SMALL_STATE(5155)] = 45855, - [SMALL_STATE(5156)] = 45925, - [SMALL_STATE(5157)] = 45995, - [SMALL_STATE(5158)] = 46067, - [SMALL_STATE(5159)] = 46139, - [SMALL_STATE(5160)] = 46211, - [SMALL_STATE(5161)] = 46275, - [SMALL_STATE(5162)] = 46339, - [SMALL_STATE(5163)] = 46411, - [SMALL_STATE(5164)] = 46475, - [SMALL_STATE(5165)] = 46547, - [SMALL_STATE(5166)] = 46611, - [SMALL_STATE(5167)] = 46683, - [SMALL_STATE(5168)] = 46755, - [SMALL_STATE(5169)] = 46819, - [SMALL_STATE(5170)] = 46891, - [SMALL_STATE(5171)] = 46955, - [SMALL_STATE(5172)] = 47023, - [SMALL_STATE(5173)] = 47094, - [SMALL_STATE(5174)] = 47157, - [SMALL_STATE(5175)] = 47224, - [SMALL_STATE(5176)] = 47295, - [SMALL_STATE(5177)] = 47362, - [SMALL_STATE(5178)] = 47431, - [SMALL_STATE(5179)] = 47498, - [SMALL_STATE(5180)] = 47565, - [SMALL_STATE(5181)] = 47636, - [SMALL_STATE(5182)] = 47703, - [SMALL_STATE(5183)] = 47774, - [SMALL_STATE(5184)] = 47845, - [SMALL_STATE(5185)] = 47922, - [SMALL_STATE(5186)] = 47993, - [SMALL_STATE(5187)] = 48066, - [SMALL_STATE(5188)] = 48137, - [SMALL_STATE(5189)] = 48204, - [SMALL_STATE(5190)] = 48275, - [SMALL_STATE(5191)] = 48342, - [SMALL_STATE(5192)] = 48413, - [SMALL_STATE(5193)] = 48480, - [SMALL_STATE(5194)] = 48545, - [SMALL_STATE(5195)] = 48610, - [SMALL_STATE(5196)] = 48673, - [SMALL_STATE(5197)] = 48750, - [SMALL_STATE(5198)] = 48821, - [SMALL_STATE(5199)] = 48898, - [SMALL_STATE(5200)] = 48969, - [SMALL_STATE(5201)] = 49040, - [SMALL_STATE(5202)] = 49111, - [SMALL_STATE(5203)] = 49182, - [SMALL_STATE(5204)] = 49251, - [SMALL_STATE(5205)] = 49320, - [SMALL_STATE(5206)] = 49397, - [SMALL_STATE(5207)] = 49462, - [SMALL_STATE(5208)] = 49527, - [SMALL_STATE(5209)] = 49592, - [SMALL_STATE(5210)] = 49669, - [SMALL_STATE(5211)] = 49740, - [SMALL_STATE(5212)] = 49805, - [SMALL_STATE(5213)] = 49874, - [SMALL_STATE(5214)] = 49941, - [SMALL_STATE(5215)] = 50012, - [SMALL_STATE(5216)] = 50077, - [SMALL_STATE(5217)] = 50142, - [SMALL_STATE(5218)] = 50213, - [SMALL_STATE(5219)] = 50290, - [SMALL_STATE(5220)] = 50353, - [SMALL_STATE(5221)] = 50424, - [SMALL_STATE(5222)] = 50501, - [SMALL_STATE(5223)] = 50578, - [SMALL_STATE(5224)] = 50649, - [SMALL_STATE(5225)] = 50712, - [SMALL_STATE(5226)] = 50789, - [SMALL_STATE(5227)] = 50856, - [SMALL_STATE(5228)] = 50933, - [SMALL_STATE(5229)] = 51001, - [SMALL_STATE(5230)] = 51077, - [SMALL_STATE(5231)] = 51143, - [SMALL_STATE(5232)] = 51211, - [SMALL_STATE(5233)] = 51317, - [SMALL_STATE(5234)] = 51379, - [SMALL_STATE(5235)] = 51441, - [SMALL_STATE(5236)] = 51509, - [SMALL_STATE(5237)] = 51615, - [SMALL_STATE(5238)] = 51677, - [SMALL_STATE(5239)] = 51739, - [SMALL_STATE(5240)] = 51845, - [SMALL_STATE(5241)] = 51917, - [SMALL_STATE(5242)] = 51981, - [SMALL_STATE(5243)] = 52043, - [SMALL_STATE(5244)] = 52109, - [SMALL_STATE(5245)] = 52173, - [SMALL_STATE(5246)] = 52279, - [SMALL_STATE(5247)] = 52341, - [SMALL_STATE(5248)] = 52405, - [SMALL_STATE(5249)] = 52469, - [SMALL_STATE(5250)] = 52531, - [SMALL_STATE(5251)] = 52593, - [SMALL_STATE(5252)] = 52655, - [SMALL_STATE(5253)] = 52727, - [SMALL_STATE(5254)] = 52791, - [SMALL_STATE(5255)] = 52855, - [SMALL_STATE(5256)] = 52919, - [SMALL_STATE(5257)] = 52981, - [SMALL_STATE(5258)] = 53043, - [SMALL_STATE(5259)] = 53117, - [SMALL_STATE(5260)] = 53179, - [SMALL_STATE(5261)] = 53241, - [SMALL_STATE(5262)] = 53303, - [SMALL_STATE(5263)] = 53377, - [SMALL_STATE(5264)] = 53453, - [SMALL_STATE(5265)] = 53527, - [SMALL_STATE(5266)] = 53599, - [SMALL_STATE(5267)] = 53663, - [SMALL_STATE(5268)] = 53725, - [SMALL_STATE(5269)] = 53787, - [SMALL_STATE(5270)] = 53849, - [SMALL_STATE(5271)] = 53925, - [SMALL_STATE(5272)] = 53999, - [SMALL_STATE(5273)] = 54073, - [SMALL_STATE(5274)] = 54147, - [SMALL_STATE(5275)] = 54211, - [SMALL_STATE(5276)] = 54279, - [SMALL_STATE(5277)] = 54353, - [SMALL_STATE(5278)] = 54429, - [SMALL_STATE(5279)] = 54503, - [SMALL_STATE(5280)] = 54579, - [SMALL_STATE(5281)] = 54653, - [SMALL_STATE(5282)] = 54727, - [SMALL_STATE(5283)] = 54798, - [SMALL_STATE(5284)] = 54867, - [SMALL_STATE(5285)] = 54938, - [SMALL_STATE(5286)] = 55011, - [SMALL_STATE(5287)] = 55082, - [SMALL_STATE(5288)] = 55155, - [SMALL_STATE(5289)] = 55220, - [SMALL_STATE(5290)] = 55293, - [SMALL_STATE(5291)] = 55358, - [SMALL_STATE(5292)] = 55459, - [SMALL_STATE(5293)] = 55532, - [SMALL_STATE(5294)] = 55597, - [SMALL_STATE(5295)] = 55662, - [SMALL_STATE(5296)] = 55735, - [SMALL_STATE(5297)] = 55800, - [SMALL_STATE(5298)] = 55871, - [SMALL_STATE(5299)] = 55936, - [SMALL_STATE(5300)] = 56001, - [SMALL_STATE(5301)] = 56070, - [SMALL_STATE(5302)] = 56141, - [SMALL_STATE(5303)] = 56210, - [SMALL_STATE(5304)] = 56275, - [SMALL_STATE(5305)] = 56340, - [SMALL_STATE(5306)] = 56405, - [SMALL_STATE(5307)] = 56470, - [SMALL_STATE(5308)] = 56541, - [SMALL_STATE(5309)] = 56606, - [SMALL_STATE(5310)] = 56671, - [SMALL_STATE(5311)] = 56742, - [SMALL_STATE(5312)] = 56811, - [SMALL_STATE(5313)] = 56876, - [SMALL_STATE(5314)] = 56941, - [SMALL_STATE(5315)] = 57010, - [SMALL_STATE(5316)] = 57075, - [SMALL_STATE(5317)] = 57140, - [SMALL_STATE(5318)] = 57211, - [SMALL_STATE(5319)] = 57282, - [SMALL_STATE(5320)] = 57387, - [SMALL_STATE(5321)] = 57452, - [SMALL_STATE(5322)] = 57523, - [SMALL_STATE(5323)] = 57592, - [SMALL_STATE(5324)] = 57661, - [SMALL_STATE(5325)] = 57730, - [SMALL_STATE(5326)] = 57793, - [SMALL_STATE(5327)] = 57864, - [SMALL_STATE(5328)] = 57935, - [SMALL_STATE(5329)] = 58006, - [SMALL_STATE(5330)] = 58075, - [SMALL_STATE(5331)] = 58146, - [SMALL_STATE(5332)] = 58217, - [SMALL_STATE(5333)] = 58288, - [SMALL_STATE(5334)] = 58359, - [SMALL_STATE(5335)] = 58430, - [SMALL_STATE(5336)] = 58531, - [SMALL_STATE(5337)] = 58636, - [SMALL_STATE(5338)] = 58701, - [SMALL_STATE(5339)] = 58802, - [SMALL_STATE(5340)] = 58867, - [SMALL_STATE(5341)] = 58938, - [SMALL_STATE(5342)] = 59039, - [SMALL_STATE(5343)] = 59104, - [SMALL_STATE(5344)] = 59169, - [SMALL_STATE(5345)] = 59270, - [SMALL_STATE(5346)] = 59333, - [SMALL_STATE(5347)] = 59396, - [SMALL_STATE(5348)] = 59459, - [SMALL_STATE(5349)] = 59564, - [SMALL_STATE(5350)] = 59633, - [SMALL_STATE(5351)] = 59738, - [SMALL_STATE(5352)] = 59803, - [SMALL_STATE(5353)] = 59868, - [SMALL_STATE(5354)] = 59931, - [SMALL_STATE(5355)] = 59996, - [SMALL_STATE(5356)] = 60066, - [SMALL_STATE(5357)] = 60126, - [SMALL_STATE(5358)] = 60186, - [SMALL_STATE(5359)] = 60246, - [SMALL_STATE(5360)] = 60306, - [SMALL_STATE(5361)] = 60366, - [SMALL_STATE(5362)] = 60466, - [SMALL_STATE(5363)] = 60526, - [SMALL_STATE(5364)] = 60586, - [SMALL_STATE(5365)] = 60646, - [SMALL_STATE(5366)] = 60744, - [SMALL_STATE(5367)] = 60804, - [SMALL_STATE(5368)] = 60864, - [SMALL_STATE(5369)] = 60924, - [SMALL_STATE(5370)] = 60992, - [SMALL_STATE(5371)] = 61056, - [SMALL_STATE(5372)] = 61116, - [SMALL_STATE(5373)] = 61176, - [SMALL_STATE(5374)] = 61244, - [SMALL_STATE(5375)] = 61312, - [SMALL_STATE(5376)] = 61372, - [SMALL_STATE(5377)] = 61438, - [SMALL_STATE(5378)] = 61506, - [SMALL_STATE(5379)] = 61588, - [SMALL_STATE(5380)] = 61656, - [SMALL_STATE(5381)] = 61720, - [SMALL_STATE(5382)] = 61788, - [SMALL_STATE(5383)] = 61852, - [SMALL_STATE(5384)] = 61920, - [SMALL_STATE(5385)] = 61980, - [SMALL_STATE(5386)] = 62048, - [SMALL_STATE(5387)] = 62118, - [SMALL_STATE(5388)] = 62218, - [SMALL_STATE(5389)] = 62288, - [SMALL_STATE(5390)] = 62354, - [SMALL_STATE(5391)] = 62414, - [SMALL_STATE(5392)] = 62514, - [SMALL_STATE(5393)] = 62614, - [SMALL_STATE(5394)] = 62674, - [SMALL_STATE(5395)] = 62772, - [SMALL_STATE(5396)] = 62832, - [SMALL_STATE(5397)] = 62892, - [SMALL_STATE(5398)] = 62992, - [SMALL_STATE(5399)] = 63056, - [SMALL_STATE(5400)] = 63154, - [SMALL_STATE(5401)] = 63214, - [SMALL_STATE(5402)] = 63274, - [SMALL_STATE(5403)] = 63334, - [SMALL_STATE(5404)] = 63396, - [SMALL_STATE(5405)] = 63456, - [SMALL_STATE(5406)] = 63516, - [SMALL_STATE(5407)] = 63576, - [SMALL_STATE(5408)] = 63636, - [SMALL_STATE(5409)] = 63696, - [SMALL_STATE(5410)] = 63756, - [SMALL_STATE(5411)] = 63816, - [SMALL_STATE(5412)] = 63876, - [SMALL_STATE(5413)] = 63936, - [SMALL_STATE(5414)] = 63996, - [SMALL_STATE(5415)] = 64064, - [SMALL_STATE(5416)] = 64130, - [SMALL_STATE(5417)] = 64200, - [SMALL_STATE(5418)] = 64268, - [SMALL_STATE(5419)] = 64334, - [SMALL_STATE(5420)] = 64394, - [SMALL_STATE(5421)] = 64454, - [SMALL_STATE(5422)] = 64522, - [SMALL_STATE(5423)] = 64582, - [SMALL_STATE(5424)] = 64642, - [SMALL_STATE(5425)] = 64702, - [SMALL_STATE(5426)] = 64802, - [SMALL_STATE(5427)] = 64862, - [SMALL_STATE(5428)] = 64960, - [SMALL_STATE(5429)] = 65020, - [SMALL_STATE(5430)] = 65082, - [SMALL_STATE(5431)] = 65142, - [SMALL_STATE(5432)] = 65202, - [SMALL_STATE(5433)] = 65262, - [SMALL_STATE(5434)] = 65360, - [SMALL_STATE(5435)] = 65420, - [SMALL_STATE(5436)] = 65482, - [SMALL_STATE(5437)] = 65542, - [SMALL_STATE(5438)] = 65602, - [SMALL_STATE(5439)] = 65662, - [SMALL_STATE(5440)] = 65760, - [SMALL_STATE(5441)] = 65820, - [SMALL_STATE(5442)] = 65920, - [SMALL_STATE(5443)] = 65990, - [SMALL_STATE(5444)] = 66050, - [SMALL_STATE(5445)] = 66110, - [SMALL_STATE(5446)] = 66170, - [SMALL_STATE(5447)] = 66230, - [SMALL_STATE(5448)] = 66312, - [SMALL_STATE(5449)] = 66372, - [SMALL_STATE(5450)] = 66470, - [SMALL_STATE(5451)] = 66530, - [SMALL_STATE(5452)] = 66590, - [SMALL_STATE(5453)] = 66688, - [SMALL_STATE(5454)] = 66758, - [SMALL_STATE(5455)] = 66818, - [SMALL_STATE(5456)] = 66878, - [SMALL_STATE(5457)] = 66938, - [SMALL_STATE(5458)] = 66998, - [SMALL_STATE(5459)] = 67068, - [SMALL_STATE(5460)] = 67128, - [SMALL_STATE(5461)] = 67190, - [SMALL_STATE(5462)] = 67250, - [SMALL_STATE(5463)] = 67350, - [SMALL_STATE(5464)] = 67412, - [SMALL_STATE(5465)] = 67472, - [SMALL_STATE(5466)] = 67542, - [SMALL_STATE(5467)] = 67612, - [SMALL_STATE(5468)] = 67672, - [SMALL_STATE(5469)] = 67732, - [SMALL_STATE(5470)] = 67794, - [SMALL_STATE(5471)] = 67892, - [SMALL_STATE(5472)] = 67954, - [SMALL_STATE(5473)] = 68014, - [SMALL_STATE(5474)] = 68114, - [SMALL_STATE(5475)] = 68174, - [SMALL_STATE(5476)] = 68234, - [SMALL_STATE(5477)] = 68304, - [SMALL_STATE(5478)] = 68374, - [SMALL_STATE(5479)] = 68471, - [SMALL_STATE(5480)] = 68532, - [SMALL_STATE(5481)] = 68627, - [SMALL_STATE(5482)] = 68722, - [SMALL_STATE(5483)] = 68785, - [SMALL_STATE(5484)] = 68884, - [SMALL_STATE(5485)] = 68979, - [SMALL_STATE(5486)] = 69076, - [SMALL_STATE(5487)] = 69137, - [SMALL_STATE(5488)] = 69232, - [SMALL_STATE(5489)] = 69327, - [SMALL_STATE(5490)] = 69424, - [SMALL_STATE(5491)] = 69521, - [SMALL_STATE(5492)] = 69620, - [SMALL_STATE(5493)] = 69715, - [SMALL_STATE(5494)] = 69778, - [SMALL_STATE(5495)] = 69873, - [SMALL_STATE(5496)] = 69934, - [SMALL_STATE(5497)] = 69997, - [SMALL_STATE(5498)] = 70056, - [SMALL_STATE(5499)] = 70119, - [SMALL_STATE(5500)] = 70214, - [SMALL_STATE(5501)] = 70277, - [SMALL_STATE(5502)] = 70372, - [SMALL_STATE(5503)] = 70439, - [SMALL_STATE(5504)] = 70536, - [SMALL_STATE(5505)] = 70595, - [SMALL_STATE(5506)] = 70660, - [SMALL_STATE(5507)] = 70757, - [SMALL_STATE(5508)] = 70824, - [SMALL_STATE(5509)] = 70919, - [SMALL_STATE(5510)] = 70982, - [SMALL_STATE(5511)] = 71081, - [SMALL_STATE(5512)] = 71148, - [SMALL_STATE(5513)] = 71243, - [SMALL_STATE(5514)] = 71338, - [SMALL_STATE(5515)] = 71433, - [SMALL_STATE(5516)] = 71496, - [SMALL_STATE(5517)] = 71591, - [SMALL_STATE(5518)] = 71658, - [SMALL_STATE(5519)] = 71717, - [SMALL_STATE(5520)] = 71816, - [SMALL_STATE(5521)] = 71879, - [SMALL_STATE(5522)] = 71976, - [SMALL_STATE(5523)] = 72041, - [SMALL_STATE(5524)] = 72136, - [SMALL_STATE(5525)] = 72203, - [SMALL_STATE(5526)] = 72298, - [SMALL_STATE(5527)] = 72365, - [SMALL_STATE(5528)] = 72460, - [SMALL_STATE(5529)] = 72527, - [SMALL_STATE(5530)] = 72594, - [SMALL_STATE(5531)] = 72689, - [SMALL_STATE(5532)] = 72784, - [SMALL_STATE(5533)] = 72881, - [SMALL_STATE(5534)] = 72948, - [SMALL_STATE(5535)] = 73043, - [SMALL_STATE(5536)] = 73104, - [SMALL_STATE(5537)] = 73171, - [SMALL_STATE(5538)] = 73268, - [SMALL_STATE(5539)] = 73363, - [SMALL_STATE(5540)] = 73458, - [SMALL_STATE(5541)] = 73553, - [SMALL_STATE(5542)] = 73611, - [SMALL_STATE(5543)] = 73669, - [SMALL_STATE(5544)] = 73731, - [SMALL_STATE(5545)] = 73793, - [SMALL_STATE(5546)] = 73885, - [SMALL_STATE(5547)] = 73949, - [SMALL_STATE(5548)] = 74007, - [SMALL_STATE(5549)] = 74101, - [SMALL_STATE(5550)] = 74181, - [SMALL_STATE(5551)] = 74243, - [SMALL_STATE(5552)] = 74307, - [SMALL_STATE(5553)] = 74401, - [SMALL_STATE(5554)] = 74481, - [SMALL_STATE(5555)] = 74575, - [SMALL_STATE(5556)] = 74635, - [SMALL_STATE(5557)] = 74727, - [SMALL_STATE(5558)] = 74787, - [SMALL_STATE(5559)] = 74847, - [SMALL_STATE(5560)] = 74907, - [SMALL_STATE(5561)] = 75001, - [SMALL_STATE(5562)] = 75061, - [SMALL_STATE(5563)] = 75119, - [SMALL_STATE(5564)] = 75211, - [SMALL_STATE(5565)] = 75269, - [SMALL_STATE(5566)] = 75363, - [SMALL_STATE(5567)] = 75422, - [SMALL_STATE(5568)] = 75479, - [SMALL_STATE(5569)] = 75536, - [SMALL_STATE(5570)] = 75593, - [SMALL_STATE(5571)] = 75650, - [SMALL_STATE(5572)] = 75707, - [SMALL_STATE(5573)] = 75764, - [SMALL_STATE(5574)] = 75821, - [SMALL_STATE(5575)] = 75878, - [SMALL_STATE(5576)] = 75937, - [SMALL_STATE(5577)] = 75996, - [SMALL_STATE(5578)] = 76057, - [SMALL_STATE(5579)] = 76116, - [SMALL_STATE(5580)] = 76177, - [SMALL_STATE(5581)] = 76238, - [SMALL_STATE(5582)] = 76295, - [SMALL_STATE(5583)] = 76352, - [SMALL_STATE(5584)] = 76411, - [SMALL_STATE(5585)] = 76467, - [SMALL_STATE(5586)] = 76525, - [SMALL_STATE(5587)] = 76583, - [SMALL_STATE(5588)] = 76669, - [SMALL_STATE(5589)] = 76755, - [SMALL_STATE(5590)] = 76815, - [SMALL_STATE(5591)] = 76873, - [SMALL_STATE(5592)] = 76931, - [SMALL_STATE(5593)] = 76987, - [SMALL_STATE(5594)] = 77073, - [SMALL_STATE(5595)] = 77129, - [SMALL_STATE(5596)] = 77215, - [SMALL_STATE(5597)] = 77271, - [SMALL_STATE(5598)] = 77329, - [SMALL_STATE(5599)] = 77417, - [SMALL_STATE(5600)] = 77503, - [SMALL_STATE(5601)] = 77589, - [SMALL_STATE(5602)] = 77672, - [SMALL_STATE(5603)] = 77731, - [SMALL_STATE(5604)] = 77814, - [SMALL_STATE(5605)] = 77897, - [SMALL_STATE(5606)] = 77982, - [SMALL_STATE(5607)] = 78043, - [SMALL_STATE(5608)] = 78102, - [SMALL_STATE(5609)] = 78161, - [SMALL_STATE(5610)] = 78246, - [SMALL_STATE(5611)] = 78305, - [SMALL_STATE(5612)] = 78390, - [SMALL_STATE(5613)] = 78475, - [SMALL_STATE(5614)] = 78560, - [SMALL_STATE(5615)] = 78619, - [SMALL_STATE(5616)] = 78702, - [SMALL_STATE(5617)] = 78785, - [SMALL_STATE(5618)] = 78840, - [SMALL_STATE(5619)] = 78923, - [SMALL_STATE(5620)] = 79006, - [SMALL_STATE(5621)] = 79089, - [SMALL_STATE(5622)] = 79174, - [SMALL_STATE(5623)] = 79256, - [SMALL_STATE(5624)] = 79314, - [SMALL_STATE(5625)] = 79390, - [SMALL_STATE(5626)] = 79472, - [SMALL_STATE(5627)] = 79554, - [SMALL_STATE(5628)] = 79636, - [SMALL_STATE(5629)] = 79718, - [SMALL_STATE(5630)] = 79800, - [SMALL_STATE(5631)] = 79858, - [SMALL_STATE(5632)] = 79940, - [SMALL_STATE(5633)] = 80014, - [SMALL_STATE(5634)] = 80096, - [SMALL_STATE(5635)] = 80152, - [SMALL_STATE(5636)] = 80206, - [SMALL_STATE(5637)] = 80268, - [SMALL_STATE(5638)] = 80320, - [SMALL_STATE(5639)] = 80374, - [SMALL_STATE(5640)] = 80426, - [SMALL_STATE(5641)] = 80481, - [SMALL_STATE(5642)] = 80536, - [SMALL_STATE(5643)] = 80587, - [SMALL_STATE(5644)] = 80648, - [SMALL_STATE(5645)] = 80703, - [SMALL_STATE(5646)] = 80753, - [SMALL_STATE(5647)] = 80849, - [SMALL_STATE(5648)] = 80945, - [SMALL_STATE(5649)] = 80995, - [SMALL_STATE(5650)] = 81045, - [SMALL_STATE(5651)] = 81093, - [SMALL_STATE(5652)] = 81189, - [SMALL_STATE(5653)] = 81241, - [SMALL_STATE(5654)] = 81295, - [SMALL_STATE(5655)] = 81345, - [SMALL_STATE(5656)] = 81395, - [SMALL_STATE(5657)] = 81445, - [SMALL_STATE(5658)] = 81541, - [SMALL_STATE(5659)] = 81637, - [SMALL_STATE(5660)] = 81685, - [SMALL_STATE(5661)] = 81733, - [SMALL_STATE(5662)] = 81783, - [SMALL_STATE(5663)] = 81879, - [SMALL_STATE(5664)] = 81927, - [SMALL_STATE(5665)] = 81975, - [SMALL_STATE(5666)] = 82026, - [SMALL_STATE(5667)] = 82077, - [SMALL_STATE(5668)] = 82128, - [SMALL_STATE(5669)] = 82176, - [SMALL_STATE(5670)] = 82226, - [SMALL_STATE(5671)] = 82314, - [SMALL_STATE(5672)] = 82362, - [SMALL_STATE(5673)] = 82450, - [SMALL_STATE(5674)] = 82498, - [SMALL_STATE(5675)] = 82546, - [SMALL_STATE(5676)] = 82594, - [SMALL_STATE(5677)] = 82682, - [SMALL_STATE(5678)] = 82730, - [SMALL_STATE(5679)] = 82782, - [SMALL_STATE(5680)] = 82830, - [SMALL_STATE(5681)] = 82918, - [SMALL_STATE(5682)] = 82968, - [SMALL_STATE(5683)] = 83056, - [SMALL_STATE(5684)] = 83106, - [SMALL_STATE(5685)] = 83194, - [SMALL_STATE(5686)] = 83242, - [SMALL_STATE(5687)] = 83292, - [SMALL_STATE(5688)] = 83342, - [SMALL_STATE(5689)] = 83392, - [SMALL_STATE(5690)] = 83440, - [SMALL_STATE(5691)] = 83488, - [SMALL_STATE(5692)] = 83536, - [SMALL_STATE(5693)] = 83624, - [SMALL_STATE(5694)] = 83672, - [SMALL_STATE(5695)] = 83720, - [SMALL_STATE(5696)] = 83768, - [SMALL_STATE(5697)] = 83818, - [SMALL_STATE(5698)] = 83906, - [SMALL_STATE(5699)] = 83954, - [SMALL_STATE(5700)] = 84042, - [SMALL_STATE(5701)] = 84130, - [SMALL_STATE(5702)] = 84218, - [SMALL_STATE(5703)] = 84306, - [SMALL_STATE(5704)] = 84354, - [SMALL_STATE(5705)] = 84442, - [SMALL_STATE(5706)] = 84530, - [SMALL_STATE(5707)] = 84618, - [SMALL_STATE(5708)] = 84706, - [SMALL_STATE(5709)] = 84794, - [SMALL_STATE(5710)] = 84882, - [SMALL_STATE(5711)] = 84930, - [SMALL_STATE(5712)] = 85018, - [SMALL_STATE(5713)] = 85066, - [SMALL_STATE(5714)] = 85154, - [SMALL_STATE(5715)] = 85242, - [SMALL_STATE(5716)] = 85289, - [SMALL_STATE(5717)] = 85338, - [SMALL_STATE(5718)] = 85385, - [SMALL_STATE(5719)] = 85431, - [SMALL_STATE(5720)] = 85477, - [SMALL_STATE(5721)] = 85521, - [SMALL_STATE(5722)] = 85567, - [SMALL_STATE(5723)] = 85613, - [SMALL_STATE(5724)] = 85659, - [SMALL_STATE(5725)] = 85705, - [SMALL_STATE(5726)] = 85751, - [SMALL_STATE(5727)] = 85797, - [SMALL_STATE(5728)] = 85847, - [SMALL_STATE(5729)] = 85891, - [SMALL_STATE(5730)] = 85935, - [SMALL_STATE(5731)] = 85981, - [SMALL_STATE(5732)] = 86025, - [SMALL_STATE(5733)] = 86071, - [SMALL_STATE(5734)] = 86119, - [SMALL_STATE(5735)] = 86165, - [SMALL_STATE(5736)] = 86213, - [SMALL_STATE(5737)] = 86259, - [SMALL_STATE(5738)] = 86307, - [SMALL_STATE(5739)] = 86351, - [SMALL_STATE(5740)] = 86397, - [SMALL_STATE(5741)] = 86443, - [SMALL_STATE(5742)] = 86489, - [SMALL_STATE(5743)] = 86537, - [SMALL_STATE(5744)] = 86583, - [SMALL_STATE(5745)] = 86631, - [SMALL_STATE(5746)] = 86677, - [SMALL_STATE(5747)] = 86721, - [SMALL_STATE(5748)] = 86765, - [SMALL_STATE(5749)] = 86809, - [SMALL_STATE(5750)] = 86855, - [SMALL_STATE(5751)] = 86901, - [SMALL_STATE(5752)] = 86945, - [SMALL_STATE(5753)] = 86991, - [SMALL_STATE(5754)] = 87040, - [SMALL_STATE(5755)] = 87089, - [SMALL_STATE(5756)] = 87136, - [SMALL_STATE(5757)] = 87179, - [SMALL_STATE(5758)] = 87222, - [SMALL_STATE(5759)] = 87269, - [SMALL_STATE(5760)] = 87318, - [SMALL_STATE(5761)] = 87361, - [SMALL_STATE(5762)] = 87406, - [SMALL_STATE(5763)] = 87453, - [SMALL_STATE(5764)] = 87495, - [SMALL_STATE(5765)] = 87537, - [SMALL_STATE(5766)] = 87581, - [SMALL_STATE(5767)] = 87625, - [SMALL_STATE(5768)] = 87673, - [SMALL_STATE(5769)] = 87715, - [SMALL_STATE(5770)] = 87759, - [SMALL_STATE(5771)] = 87805, - [SMALL_STATE(5772)] = 87847, - [SMALL_STATE(5773)] = 87889, - [SMALL_STATE(5774)] = 87935, - [SMALL_STATE(5775)] = 87983, - [SMALL_STATE(5776)] = 88025, - [SMALL_STATE(5777)] = 88071, - [SMALL_STATE(5778)] = 88113, - [SMALL_STATE(5779)] = 88155, - [SMALL_STATE(5780)] = 88197, - [SMALL_STATE(5781)] = 88239, - [SMALL_STATE(5782)] = 88281, - [SMALL_STATE(5783)] = 88323, - [SMALL_STATE(5784)] = 88365, - [SMALL_STATE(5785)] = 88407, - [SMALL_STATE(5786)] = 88453, - [SMALL_STATE(5787)] = 88495, - [SMALL_STATE(5788)] = 88539, - [SMALL_STATE(5789)] = 88583, - [SMALL_STATE(5790)] = 88624, - [SMALL_STATE(5791)] = 88667, - [SMALL_STATE(5792)] = 88714, - [SMALL_STATE(5793)] = 88757, - [SMALL_STATE(5794)] = 88798, - [SMALL_STATE(5795)] = 88845, - [SMALL_STATE(5796)] = 88888, - [SMALL_STATE(5797)] = 88935, - [SMALL_STATE(5798)] = 88976, - [SMALL_STATE(5799)] = 89050, - [SMALL_STATE(5800)] = 89092, - [SMALL_STATE(5801)] = 89168, - [SMALL_STATE(5802)] = 89244, - [SMALL_STATE(5803)] = 89286, - [SMALL_STATE(5804)] = 89362, - [SMALL_STATE(5805)] = 89404, - [SMALL_STATE(5806)] = 89480, - [SMALL_STATE(5807)] = 89522, - [SMALL_STATE(5808)] = 89598, - [SMALL_STATE(5809)] = 89640, - [SMALL_STATE(5810)] = 89716, - [SMALL_STATE(5811)] = 89758, - [SMALL_STATE(5812)] = 89800, - [SMALL_STATE(5813)] = 89876, - [SMALL_STATE(5814)] = 89918, - [SMALL_STATE(5815)] = 89960, - [SMALL_STATE(5816)] = 90002, - [SMALL_STATE(5817)] = 90044, - [SMALL_STATE(5818)] = 90086, - [SMALL_STATE(5819)] = 90128, - [SMALL_STATE(5820)] = 90204, - [SMALL_STATE(5821)] = 90246, - [SMALL_STATE(5822)] = 90288, - [SMALL_STATE(5823)] = 90330, - [SMALL_STATE(5824)] = 90372, - [SMALL_STATE(5825)] = 90448, - [SMALL_STATE(5826)] = 90524, - [SMALL_STATE(5827)] = 90566, - [SMALL_STATE(5828)] = 90612, - [SMALL_STATE(5829)] = 90688, - [SMALL_STATE(5830)] = 90730, - [SMALL_STATE(5831)] = 90772, - [SMALL_STATE(5832)] = 90814, - [SMALL_STATE(5833)] = 90885, - [SMALL_STATE(5834)] = 90958, - [SMALL_STATE(5835)] = 91031, - [SMALL_STATE(5836)] = 91104, - [SMALL_STATE(5837)] = 91177, - [SMALL_STATE(5838)] = 91250, - [SMALL_STATE(5839)] = 91323, - [SMALL_STATE(5840)] = 91393, - [SMALL_STATE(5841)] = 91463, - [SMALL_STATE(5842)] = 91533, - [SMALL_STATE(5843)] = 91603, - [SMALL_STATE(5844)] = 91673, - [SMALL_STATE(5845)] = 91743, - [SMALL_STATE(5846)] = 91813, - [SMALL_STATE(5847)] = 91883, - [SMALL_STATE(5848)] = 91953, - [SMALL_STATE(5849)] = 92023, - [SMALL_STATE(5850)] = 92093, - [SMALL_STATE(5851)] = 92163, - [SMALL_STATE(5852)] = 92233, - [SMALL_STATE(5853)] = 92303, - [SMALL_STATE(5854)] = 92373, - [SMALL_STATE(5855)] = 92443, - [SMALL_STATE(5856)] = 92513, - [SMALL_STATE(5857)] = 92583, - [SMALL_STATE(5858)] = 92653, - [SMALL_STATE(5859)] = 92723, - [SMALL_STATE(5860)] = 92793, - [SMALL_STATE(5861)] = 92863, - [SMALL_STATE(5862)] = 92933, - [SMALL_STATE(5863)] = 93003, - [SMALL_STATE(5864)] = 93073, - [SMALL_STATE(5865)] = 93143, - [SMALL_STATE(5866)] = 93213, - [SMALL_STATE(5867)] = 93283, - [SMALL_STATE(5868)] = 93323, - [SMALL_STATE(5869)] = 93393, - [SMALL_STATE(5870)] = 93463, - [SMALL_STATE(5871)] = 93533, - [SMALL_STATE(5872)] = 93603, - [SMALL_STATE(5873)] = 93673, - [SMALL_STATE(5874)] = 93743, - [SMALL_STATE(5875)] = 93813, - [SMALL_STATE(5876)] = 93883, - [SMALL_STATE(5877)] = 93953, - [SMALL_STATE(5878)] = 94023, - [SMALL_STATE(5879)] = 94093, - [SMALL_STATE(5880)] = 94163, - [SMALL_STATE(5881)] = 94233, - [SMALL_STATE(5882)] = 94303, - [SMALL_STATE(5883)] = 94373, - [SMALL_STATE(5884)] = 94443, - [SMALL_STATE(5885)] = 94513, - [SMALL_STATE(5886)] = 94583, - [SMALL_STATE(5887)] = 94653, - [SMALL_STATE(5888)] = 94723, - [SMALL_STATE(5889)] = 94793, - [SMALL_STATE(5890)] = 94863, - [SMALL_STATE(5891)] = 94933, - [SMALL_STATE(5892)] = 95003, - [SMALL_STATE(5893)] = 95073, - [SMALL_STATE(5894)] = 95143, - [SMALL_STATE(5895)] = 95183, - [SMALL_STATE(5896)] = 95223, - [SMALL_STATE(5897)] = 95293, - [SMALL_STATE(5898)] = 95363, - [SMALL_STATE(5899)] = 95433, - [SMALL_STATE(5900)] = 95503, - [SMALL_STATE(5901)] = 95573, - [SMALL_STATE(5902)] = 95613, - [SMALL_STATE(5903)] = 95683, - [SMALL_STATE(5904)] = 95753, - [SMALL_STATE(5905)] = 95823, - [SMALL_STATE(5906)] = 95893, - [SMALL_STATE(5907)] = 95963, - [SMALL_STATE(5908)] = 96033, - [SMALL_STATE(5909)] = 96103, - [SMALL_STATE(5910)] = 96173, - [SMALL_STATE(5911)] = 96243, - [SMALL_STATE(5912)] = 96313, - [SMALL_STATE(5913)] = 96383, - [SMALL_STATE(5914)] = 96453, - [SMALL_STATE(5915)] = 96523, - [SMALL_STATE(5916)] = 96593, - [SMALL_STATE(5917)] = 96663, - [SMALL_STATE(5918)] = 96733, - [SMALL_STATE(5919)] = 96803, - [SMALL_STATE(5920)] = 96873, - [SMALL_STATE(5921)] = 96943, - [SMALL_STATE(5922)] = 97013, - [SMALL_STATE(5923)] = 97083, - [SMALL_STATE(5924)] = 97153, - [SMALL_STATE(5925)] = 97223, - [SMALL_STATE(5926)] = 97293, - [SMALL_STATE(5927)] = 97363, - [SMALL_STATE(5928)] = 97433, - [SMALL_STATE(5929)] = 97503, - [SMALL_STATE(5930)] = 97573, - [SMALL_STATE(5931)] = 97643, - [SMALL_STATE(5932)] = 97713, - [SMALL_STATE(5933)] = 97783, - [SMALL_STATE(5934)] = 97853, - [SMALL_STATE(5935)] = 97923, - [SMALL_STATE(5936)] = 97993, - [SMALL_STATE(5937)] = 98063, - [SMALL_STATE(5938)] = 98133, - [SMALL_STATE(5939)] = 98203, - [SMALL_STATE(5940)] = 98243, - [SMALL_STATE(5941)] = 98283, - [SMALL_STATE(5942)] = 98353, - [SMALL_STATE(5943)] = 98423, - [SMALL_STATE(5944)] = 98493, - [SMALL_STATE(5945)] = 98563, - [SMALL_STATE(5946)] = 98603, - [SMALL_STATE(5947)] = 98673, - [SMALL_STATE(5948)] = 98743, - [SMALL_STATE(5949)] = 98813, - [SMALL_STATE(5950)] = 98883, - [SMALL_STATE(5951)] = 98953, - [SMALL_STATE(5952)] = 99023, - [SMALL_STATE(5953)] = 99093, - [SMALL_STATE(5954)] = 99163, - [SMALL_STATE(5955)] = 99233, - [SMALL_STATE(5956)] = 99303, - [SMALL_STATE(5957)] = 99373, - [SMALL_STATE(5958)] = 99443, - [SMALL_STATE(5959)] = 99513, - [SMALL_STATE(5960)] = 99583, - [SMALL_STATE(5961)] = 99653, - [SMALL_STATE(5962)] = 99693, - [SMALL_STATE(5963)] = 99763, - [SMALL_STATE(5964)] = 99833, - [SMALL_STATE(5965)] = 99903, - [SMALL_STATE(5966)] = 99973, - [SMALL_STATE(5967)] = 100043, - [SMALL_STATE(5968)] = 100113, - [SMALL_STATE(5969)] = 100183, - [SMALL_STATE(5970)] = 100253, - [SMALL_STATE(5971)] = 100323, - [SMALL_STATE(5972)] = 100393, - [SMALL_STATE(5973)] = 100463, - [SMALL_STATE(5974)] = 100533, - [SMALL_STATE(5975)] = 100603, - [SMALL_STATE(5976)] = 100673, - [SMALL_STATE(5977)] = 100743, - [SMALL_STATE(5978)] = 100783, - [SMALL_STATE(5979)] = 100853, - [SMALL_STATE(5980)] = 100923, - [SMALL_STATE(5981)] = 100993, - [SMALL_STATE(5982)] = 101063, - [SMALL_STATE(5983)] = 101133, - [SMALL_STATE(5984)] = 101203, - [SMALL_STATE(5985)] = 101273, - [SMALL_STATE(5986)] = 101343, - [SMALL_STATE(5987)] = 101413, - [SMALL_STATE(5988)] = 101483, - [SMALL_STATE(5989)] = 101553, - [SMALL_STATE(5990)] = 101623, - [SMALL_STATE(5991)] = 101693, - [SMALL_STATE(5992)] = 101763, - [SMALL_STATE(5993)] = 101833, - [SMALL_STATE(5994)] = 101903, - [SMALL_STATE(5995)] = 101973, - [SMALL_STATE(5996)] = 102043, - [SMALL_STATE(5997)] = 102113, - [SMALL_STATE(5998)] = 102183, - [SMALL_STATE(5999)] = 102253, - [SMALL_STATE(6000)] = 102323, - [SMALL_STATE(6001)] = 102393, - [SMALL_STATE(6002)] = 102463, - [SMALL_STATE(6003)] = 102533, - [SMALL_STATE(6004)] = 102603, - [SMALL_STATE(6005)] = 102673, - [SMALL_STATE(6006)] = 102743, - [SMALL_STATE(6007)] = 102813, - [SMALL_STATE(6008)] = 102883, - [SMALL_STATE(6009)] = 102953, - [SMALL_STATE(6010)] = 103023, - [SMALL_STATE(6011)] = 103093, - [SMALL_STATE(6012)] = 103163, - [SMALL_STATE(6013)] = 103233, - [SMALL_STATE(6014)] = 103303, - [SMALL_STATE(6015)] = 103373, - [SMALL_STATE(6016)] = 103443, - [SMALL_STATE(6017)] = 103513, - [SMALL_STATE(6018)] = 103583, - [SMALL_STATE(6019)] = 103653, - [SMALL_STATE(6020)] = 103723, - [SMALL_STATE(6021)] = 103793, - [SMALL_STATE(6022)] = 103863, - [SMALL_STATE(6023)] = 103933, - [SMALL_STATE(6024)] = 104003, - [SMALL_STATE(6025)] = 104073, - [SMALL_STATE(6026)] = 104143, - [SMALL_STATE(6027)] = 104213, - [SMALL_STATE(6028)] = 104283, - [SMALL_STATE(6029)] = 104353, - [SMALL_STATE(6030)] = 104423, - [SMALL_STATE(6031)] = 104493, - [SMALL_STATE(6032)] = 104563, - [SMALL_STATE(6033)] = 104633, - [SMALL_STATE(6034)] = 104703, - [SMALL_STATE(6035)] = 104773, - [SMALL_STATE(6036)] = 104843, - [SMALL_STATE(6037)] = 104913, - [SMALL_STATE(6038)] = 104983, - [SMALL_STATE(6039)] = 105053, - [SMALL_STATE(6040)] = 105123, - [SMALL_STATE(6041)] = 105193, - [SMALL_STATE(6042)] = 105263, - [SMALL_STATE(6043)] = 105333, - [SMALL_STATE(6044)] = 105403, - [SMALL_STATE(6045)] = 105473, - [SMALL_STATE(6046)] = 105543, - [SMALL_STATE(6047)] = 105613, - [SMALL_STATE(6048)] = 105683, - [SMALL_STATE(6049)] = 105753, - [SMALL_STATE(6050)] = 105823, - [SMALL_STATE(6051)] = 105893, - [SMALL_STATE(6052)] = 105963, - [SMALL_STATE(6053)] = 106033, - [SMALL_STATE(6054)] = 106103, - [SMALL_STATE(6055)] = 106173, - [SMALL_STATE(6056)] = 106243, - [SMALL_STATE(6057)] = 106313, - [SMALL_STATE(6058)] = 106383, - [SMALL_STATE(6059)] = 106453, - [SMALL_STATE(6060)] = 106523, - [SMALL_STATE(6061)] = 106593, - [SMALL_STATE(6062)] = 106663, - [SMALL_STATE(6063)] = 106733, - [SMALL_STATE(6064)] = 106803, - [SMALL_STATE(6065)] = 106873, - [SMALL_STATE(6066)] = 106943, - [SMALL_STATE(6067)] = 107013, - [SMALL_STATE(6068)] = 107083, - [SMALL_STATE(6069)] = 107153, - [SMALL_STATE(6070)] = 107223, - [SMALL_STATE(6071)] = 107293, - [SMALL_STATE(6072)] = 107363, - [SMALL_STATE(6073)] = 107433, - [SMALL_STATE(6074)] = 107503, - [SMALL_STATE(6075)] = 107573, - [SMALL_STATE(6076)] = 107643, - [SMALL_STATE(6077)] = 107713, - [SMALL_STATE(6078)] = 107783, - [SMALL_STATE(6079)] = 107853, - [SMALL_STATE(6080)] = 107923, - [SMALL_STATE(6081)] = 107993, - [SMALL_STATE(6082)] = 108063, - [SMALL_STATE(6083)] = 108133, - [SMALL_STATE(6084)] = 108203, - [SMALL_STATE(6085)] = 108273, - [SMALL_STATE(6086)] = 108343, - [SMALL_STATE(6087)] = 108413, - [SMALL_STATE(6088)] = 108483, - [SMALL_STATE(6089)] = 108553, - [SMALL_STATE(6090)] = 108623, - [SMALL_STATE(6091)] = 108693, - [SMALL_STATE(6092)] = 108763, - [SMALL_STATE(6093)] = 108833, - [SMALL_STATE(6094)] = 108903, - [SMALL_STATE(6095)] = 108973, - [SMALL_STATE(6096)] = 109043, - [SMALL_STATE(6097)] = 109113, - [SMALL_STATE(6098)] = 109183, - [SMALL_STATE(6099)] = 109253, - [SMALL_STATE(6100)] = 109323, - [SMALL_STATE(6101)] = 109393, - [SMALL_STATE(6102)] = 109463, - [SMALL_STATE(6103)] = 109533, - [SMALL_STATE(6104)] = 109603, - [SMALL_STATE(6105)] = 109673, - [SMALL_STATE(6106)] = 109743, - [SMALL_STATE(6107)] = 109813, - [SMALL_STATE(6108)] = 109853, - [SMALL_STATE(6109)] = 109923, - [SMALL_STATE(6110)] = 109993, - [SMALL_STATE(6111)] = 110063, - [SMALL_STATE(6112)] = 110133, - [SMALL_STATE(6113)] = 110203, - [SMALL_STATE(6114)] = 110273, - [SMALL_STATE(6115)] = 110343, - [SMALL_STATE(6116)] = 110413, - [SMALL_STATE(6117)] = 110483, - [SMALL_STATE(6118)] = 110553, - [SMALL_STATE(6119)] = 110623, - [SMALL_STATE(6120)] = 110693, - [SMALL_STATE(6121)] = 110763, - [SMALL_STATE(6122)] = 110833, - [SMALL_STATE(6123)] = 110903, - [SMALL_STATE(6124)] = 110943, - [SMALL_STATE(6125)] = 111013, - [SMALL_STATE(6126)] = 111083, - [SMALL_STATE(6127)] = 111153, - [SMALL_STATE(6128)] = 111223, - [SMALL_STATE(6129)] = 111293, - [SMALL_STATE(6130)] = 111363, - [SMALL_STATE(6131)] = 111433, - [SMALL_STATE(6132)] = 111503, - [SMALL_STATE(6133)] = 111573, - [SMALL_STATE(6134)] = 111643, - [SMALL_STATE(6135)] = 111713, - [SMALL_STATE(6136)] = 111783, - [SMALL_STATE(6137)] = 111853, - [SMALL_STATE(6138)] = 111923, - [SMALL_STATE(6139)] = 111993, - [SMALL_STATE(6140)] = 112063, - [SMALL_STATE(6141)] = 112133, - [SMALL_STATE(6142)] = 112203, - [SMALL_STATE(6143)] = 112273, - [SMALL_STATE(6144)] = 112343, - [SMALL_STATE(6145)] = 112413, - [SMALL_STATE(6146)] = 112483, - [SMALL_STATE(6147)] = 112553, - [SMALL_STATE(6148)] = 112623, - [SMALL_STATE(6149)] = 112693, - [SMALL_STATE(6150)] = 112763, - [SMALL_STATE(6151)] = 112833, - [SMALL_STATE(6152)] = 112903, - [SMALL_STATE(6153)] = 112973, - [SMALL_STATE(6154)] = 113043, - [SMALL_STATE(6155)] = 113113, - [SMALL_STATE(6156)] = 113183, - [SMALL_STATE(6157)] = 113253, - [SMALL_STATE(6158)] = 113323, - [SMALL_STATE(6159)] = 113393, - [SMALL_STATE(6160)] = 113463, - [SMALL_STATE(6161)] = 113533, - [SMALL_STATE(6162)] = 113603, - [SMALL_STATE(6163)] = 113673, - [SMALL_STATE(6164)] = 113743, - [SMALL_STATE(6165)] = 113813, - [SMALL_STATE(6166)] = 113883, - [SMALL_STATE(6167)] = 113953, - [SMALL_STATE(6168)] = 114023, - [SMALL_STATE(6169)] = 114093, - [SMALL_STATE(6170)] = 114163, - [SMALL_STATE(6171)] = 114233, - [SMALL_STATE(6172)] = 114303, - [SMALL_STATE(6173)] = 114373, - [SMALL_STATE(6174)] = 114443, - [SMALL_STATE(6175)] = 114513, - [SMALL_STATE(6176)] = 114583, - [SMALL_STATE(6177)] = 114653, - [SMALL_STATE(6178)] = 114723, - [SMALL_STATE(6179)] = 114793, - [SMALL_STATE(6180)] = 114863, - [SMALL_STATE(6181)] = 114933, - [SMALL_STATE(6182)] = 115003, - [SMALL_STATE(6183)] = 115073, - [SMALL_STATE(6184)] = 115143, - [SMALL_STATE(6185)] = 115213, - [SMALL_STATE(6186)] = 115283, - [SMALL_STATE(6187)] = 115353, - [SMALL_STATE(6188)] = 115423, - [SMALL_STATE(6189)] = 115493, - [SMALL_STATE(6190)] = 115563, - [SMALL_STATE(6191)] = 115633, - [SMALL_STATE(6192)] = 115675, - [SMALL_STATE(6193)] = 115745, - [SMALL_STATE(6194)] = 115815, - [SMALL_STATE(6195)] = 115885, - [SMALL_STATE(6196)] = 115955, - [SMALL_STATE(6197)] = 116025, - [SMALL_STATE(6198)] = 116095, - [SMALL_STATE(6199)] = 116165, - [SMALL_STATE(6200)] = 116235, - [SMALL_STATE(6201)] = 116305, - [SMALL_STATE(6202)] = 116375, - [SMALL_STATE(6203)] = 116445, - [SMALL_STATE(6204)] = 116515, - [SMALL_STATE(6205)] = 116585, - [SMALL_STATE(6206)] = 116655, - [SMALL_STATE(6207)] = 116725, - [SMALL_STATE(6208)] = 116795, - [SMALL_STATE(6209)] = 116865, - [SMALL_STATE(6210)] = 116935, - [SMALL_STATE(6211)] = 117005, - [SMALL_STATE(6212)] = 117075, - [SMALL_STATE(6213)] = 117145, - [SMALL_STATE(6214)] = 117215, - [SMALL_STATE(6215)] = 117285, - [SMALL_STATE(6216)] = 117355, - [SMALL_STATE(6217)] = 117425, - [SMALL_STATE(6218)] = 117495, - [SMALL_STATE(6219)] = 117565, - [SMALL_STATE(6220)] = 117635, - [SMALL_STATE(6221)] = 117705, - [SMALL_STATE(6222)] = 117775, - [SMALL_STATE(6223)] = 117845, - [SMALL_STATE(6224)] = 117915, - [SMALL_STATE(6225)] = 117985, - [SMALL_STATE(6226)] = 118055, - [SMALL_STATE(6227)] = 118125, - [SMALL_STATE(6228)] = 118195, - [SMALL_STATE(6229)] = 118265, - [SMALL_STATE(6230)] = 118335, - [SMALL_STATE(6231)] = 118405, - [SMALL_STATE(6232)] = 118475, - [SMALL_STATE(6233)] = 118545, - [SMALL_STATE(6234)] = 118615, - [SMALL_STATE(6235)] = 118685, - [SMALL_STATE(6236)] = 118755, - [SMALL_STATE(6237)] = 118825, - [SMALL_STATE(6238)] = 118895, - [SMALL_STATE(6239)] = 118965, - [SMALL_STATE(6240)] = 119035, - [SMALL_STATE(6241)] = 119105, - [SMALL_STATE(6242)] = 119175, - [SMALL_STATE(6243)] = 119245, - [SMALL_STATE(6244)] = 119315, - [SMALL_STATE(6245)] = 119385, - [SMALL_STATE(6246)] = 119455, - [SMALL_STATE(6247)] = 119525, - [SMALL_STATE(6248)] = 119595, - [SMALL_STATE(6249)] = 119665, - [SMALL_STATE(6250)] = 119735, - [SMALL_STATE(6251)] = 119805, - [SMALL_STATE(6252)] = 119875, - [SMALL_STATE(6253)] = 119945, - [SMALL_STATE(6254)] = 120015, - [SMALL_STATE(6255)] = 120085, - [SMALL_STATE(6256)] = 120155, - [SMALL_STATE(6257)] = 120225, - [SMALL_STATE(6258)] = 120295, - [SMALL_STATE(6259)] = 120365, - [SMALL_STATE(6260)] = 120435, - [SMALL_STATE(6261)] = 120505, - [SMALL_STATE(6262)] = 120575, - [SMALL_STATE(6263)] = 120645, - [SMALL_STATE(6264)] = 120715, - [SMALL_STATE(6265)] = 120785, - [SMALL_STATE(6266)] = 120855, - [SMALL_STATE(6267)] = 120925, - [SMALL_STATE(6268)] = 120995, - [SMALL_STATE(6269)] = 121065, - [SMALL_STATE(6270)] = 121135, - [SMALL_STATE(6271)] = 121205, - [SMALL_STATE(6272)] = 121275, - [SMALL_STATE(6273)] = 121345, - [SMALL_STATE(6274)] = 121415, - [SMALL_STATE(6275)] = 121485, - [SMALL_STATE(6276)] = 121555, - [SMALL_STATE(6277)] = 121625, - [SMALL_STATE(6278)] = 121695, - [SMALL_STATE(6279)] = 121765, - [SMALL_STATE(6280)] = 121835, - [SMALL_STATE(6281)] = 121905, - [SMALL_STATE(6282)] = 121975, - [SMALL_STATE(6283)] = 122045, - [SMALL_STATE(6284)] = 122115, - [SMALL_STATE(6285)] = 122185, - [SMALL_STATE(6286)] = 122255, - [SMALL_STATE(6287)] = 122325, - [SMALL_STATE(6288)] = 122395, - [SMALL_STATE(6289)] = 122465, - [SMALL_STATE(6290)] = 122535, - [SMALL_STATE(6291)] = 122605, - [SMALL_STATE(6292)] = 122675, - [SMALL_STATE(6293)] = 122745, - [SMALL_STATE(6294)] = 122815, - [SMALL_STATE(6295)] = 122885, - [SMALL_STATE(6296)] = 122955, - [SMALL_STATE(6297)] = 123025, - [SMALL_STATE(6298)] = 123095, - [SMALL_STATE(6299)] = 123165, - [SMALL_STATE(6300)] = 123235, - [SMALL_STATE(6301)] = 123305, - [SMALL_STATE(6302)] = 123375, - [SMALL_STATE(6303)] = 123445, - [SMALL_STATE(6304)] = 123515, - [SMALL_STATE(6305)] = 123585, - [SMALL_STATE(6306)] = 123655, - [SMALL_STATE(6307)] = 123725, - [SMALL_STATE(6308)] = 123795, - [SMALL_STATE(6309)] = 123865, - [SMALL_STATE(6310)] = 123935, - [SMALL_STATE(6311)] = 124005, - [SMALL_STATE(6312)] = 124075, - [SMALL_STATE(6313)] = 124145, - [SMALL_STATE(6314)] = 124215, - [SMALL_STATE(6315)] = 124285, - [SMALL_STATE(6316)] = 124355, - [SMALL_STATE(6317)] = 124425, - [SMALL_STATE(6318)] = 124495, - [SMALL_STATE(6319)] = 124565, - [SMALL_STATE(6320)] = 124635, - [SMALL_STATE(6321)] = 124705, - [SMALL_STATE(6322)] = 124775, - [SMALL_STATE(6323)] = 124845, - [SMALL_STATE(6324)] = 124915, - [SMALL_STATE(6325)] = 124985, - [SMALL_STATE(6326)] = 125055, - [SMALL_STATE(6327)] = 125125, - [SMALL_STATE(6328)] = 125195, - [SMALL_STATE(6329)] = 125265, - [SMALL_STATE(6330)] = 125335, - [SMALL_STATE(6331)] = 125405, - [SMALL_STATE(6332)] = 125475, - [SMALL_STATE(6333)] = 125545, - [SMALL_STATE(6334)] = 125615, - [SMALL_STATE(6335)] = 125685, - [SMALL_STATE(6336)] = 125755, - [SMALL_STATE(6337)] = 125825, - [SMALL_STATE(6338)] = 125895, - [SMALL_STATE(6339)] = 125965, - [SMALL_STATE(6340)] = 126035, - [SMALL_STATE(6341)] = 126105, - [SMALL_STATE(6342)] = 126175, - [SMALL_STATE(6343)] = 126245, - [SMALL_STATE(6344)] = 126315, - [SMALL_STATE(6345)] = 126385, - [SMALL_STATE(6346)] = 126455, - [SMALL_STATE(6347)] = 126525, - [SMALL_STATE(6348)] = 126595, - [SMALL_STATE(6349)] = 126665, - [SMALL_STATE(6350)] = 126735, - [SMALL_STATE(6351)] = 126805, - [SMALL_STATE(6352)] = 126874, - [SMALL_STATE(6353)] = 126943, - [SMALL_STATE(6354)] = 127012, - [SMALL_STATE(6355)] = 127081, - [SMALL_STATE(6356)] = 127150, - [SMALL_STATE(6357)] = 127219, - [SMALL_STATE(6358)] = 127288, - [SMALL_STATE(6359)] = 127357, - [SMALL_STATE(6360)] = 127426, - [SMALL_STATE(6361)] = 127495, - [SMALL_STATE(6362)] = 127564, - [SMALL_STATE(6363)] = 127633, - [SMALL_STATE(6364)] = 127702, - [SMALL_STATE(6365)] = 127771, - [SMALL_STATE(6366)] = 127840, - [SMALL_STATE(6367)] = 127909, - [SMALL_STATE(6368)] = 127978, - [SMALL_STATE(6369)] = 128047, - [SMALL_STATE(6370)] = 128116, - [SMALL_STATE(6371)] = 128185, - [SMALL_STATE(6372)] = 128254, - [SMALL_STATE(6373)] = 128323, - [SMALL_STATE(6374)] = 128392, - [SMALL_STATE(6375)] = 128461, - [SMALL_STATE(6376)] = 128530, - [SMALL_STATE(6377)] = 128599, - [SMALL_STATE(6378)] = 128668, - [SMALL_STATE(6379)] = 128737, - [SMALL_STATE(6380)] = 128806, - [SMALL_STATE(6381)] = 128875, - [SMALL_STATE(6382)] = 128944, - [SMALL_STATE(6383)] = 129013, - [SMALL_STATE(6384)] = 129082, - [SMALL_STATE(6385)] = 129151, - [SMALL_STATE(6386)] = 129220, - [SMALL_STATE(6387)] = 129289, - [SMALL_STATE(6388)] = 129358, - [SMALL_STATE(6389)] = 129427, - [SMALL_STATE(6390)] = 129496, - [SMALL_STATE(6391)] = 129565, - [SMALL_STATE(6392)] = 129634, - [SMALL_STATE(6393)] = 129698, - [SMALL_STATE(6394)] = 129762, - [SMALL_STATE(6395)] = 129826, - [SMALL_STATE(6396)] = 129892, - [SMALL_STATE(6397)] = 129958, - [SMALL_STATE(6398)] = 130024, - [SMALL_STATE(6399)] = 130090, - [SMALL_STATE(6400)] = 130154, - [SMALL_STATE(6401)] = 130220, - [SMALL_STATE(6402)] = 130284, - [SMALL_STATE(6403)] = 130350, - [SMALL_STATE(6404)] = 130416, - [SMALL_STATE(6405)] = 130482, - [SMALL_STATE(6406)] = 130548, - [SMALL_STATE(6407)] = 130612, - [SMALL_STATE(6408)] = 130678, - [SMALL_STATE(6409)] = 130742, - [SMALL_STATE(6410)] = 130808, - [SMALL_STATE(6411)] = 130874, - [SMALL_STATE(6412)] = 130938, - [SMALL_STATE(6413)] = 131004, - [SMALL_STATE(6414)] = 131068, - [SMALL_STATE(6415)] = 131132, - [SMALL_STATE(6416)] = 131196, - [SMALL_STATE(6417)] = 131262, - [SMALL_STATE(6418)] = 131328, - [SMALL_STATE(6419)] = 131392, - [SMALL_STATE(6420)] = 131458, - [SMALL_STATE(6421)] = 131522, - [SMALL_STATE(6422)] = 131588, - [SMALL_STATE(6423)] = 131654, - [SMALL_STATE(6424)] = 131718, - [SMALL_STATE(6425)] = 131784, - [SMALL_STATE(6426)] = 131850, - [SMALL_STATE(6427)] = 131916, - [SMALL_STATE(6428)] = 131980, - [SMALL_STATE(6429)] = 132046, - [SMALL_STATE(6430)] = 132110, - [SMALL_STATE(6431)] = 132176, - [SMALL_STATE(6432)] = 132240, - [SMALL_STATE(6433)] = 132304, - [SMALL_STATE(6434)] = 132368, - [SMALL_STATE(6435)] = 132432, - [SMALL_STATE(6436)] = 132496, - [SMALL_STATE(6437)] = 132562, - [SMALL_STATE(6438)] = 132626, - [SMALL_STATE(6439)] = 132690, - [SMALL_STATE(6440)] = 132756, - [SMALL_STATE(6441)] = 132820, - [SMALL_STATE(6442)] = 132884, - [SMALL_STATE(6443)] = 132948, - [SMALL_STATE(6444)] = 133012, - [SMALL_STATE(6445)] = 133076, - [SMALL_STATE(6446)] = 133140, - [SMALL_STATE(6447)] = 133204, - [SMALL_STATE(6448)] = 133268, - [SMALL_STATE(6449)] = 133332, - [SMALL_STATE(6450)] = 133396, - [SMALL_STATE(6451)] = 133462, - [SMALL_STATE(6452)] = 133526, - [SMALL_STATE(6453)] = 133590, - [SMALL_STATE(6454)] = 133656, - [SMALL_STATE(6455)] = 133720, - [SMALL_STATE(6456)] = 133784, - [SMALL_STATE(6457)] = 133848, - [SMALL_STATE(6458)] = 133912, - [SMALL_STATE(6459)] = 133976, - [SMALL_STATE(6460)] = 134040, - [SMALL_STATE(6461)] = 134104, - [SMALL_STATE(6462)] = 134168, - [SMALL_STATE(6463)] = 134234, - [SMALL_STATE(6464)] = 134298, - [SMALL_STATE(6465)] = 134362, - [SMALL_STATE(6466)] = 134426, - [SMALL_STATE(6467)] = 134490, - [SMALL_STATE(6468)] = 134554, - [SMALL_STATE(6469)] = 134618, - [SMALL_STATE(6470)] = 134682, - [SMALL_STATE(6471)] = 134746, - [SMALL_STATE(6472)] = 134810, - [SMALL_STATE(6473)] = 134874, - [SMALL_STATE(6474)] = 134938, - [SMALL_STATE(6475)] = 134998, - [SMALL_STATE(6476)] = 135058, - [SMALL_STATE(6477)] = 135118, - [SMALL_STATE(6478)] = 135178, - [SMALL_STATE(6479)] = 135238, - [SMALL_STATE(6480)] = 135298, - [SMALL_STATE(6481)] = 135358, - [SMALL_STATE(6482)] = 135418, - [SMALL_STATE(6483)] = 135478, - [SMALL_STATE(6484)] = 135514, - [SMALL_STATE(6485)] = 135574, - [SMALL_STATE(6486)] = 135634, - [SMALL_STATE(6487)] = 135694, - [SMALL_STATE(6488)] = 135754, - [SMALL_STATE(6489)] = 135814, - [SMALL_STATE(6490)] = 135874, - [SMALL_STATE(6491)] = 135934, - [SMALL_STATE(6492)] = 135994, - [SMALL_STATE(6493)] = 136054, - [SMALL_STATE(6494)] = 136114, - [SMALL_STATE(6495)] = 136174, - [SMALL_STATE(6496)] = 136234, - [SMALL_STATE(6497)] = 136294, - [SMALL_STATE(6498)] = 136354, - [SMALL_STATE(6499)] = 136414, - [SMALL_STATE(6500)] = 136474, - [SMALL_STATE(6501)] = 136534, - [SMALL_STATE(6502)] = 136594, - [SMALL_STATE(6503)] = 136654, - [SMALL_STATE(6504)] = 136714, - [SMALL_STATE(6505)] = 136774, - [SMALL_STATE(6506)] = 136834, - [SMALL_STATE(6507)] = 136894, - [SMALL_STATE(6508)] = 136954, - [SMALL_STATE(6509)] = 137014, - [SMALL_STATE(6510)] = 137050, - [SMALL_STATE(6511)] = 137110, - [SMALL_STATE(6512)] = 137170, - [SMALL_STATE(6513)] = 137230, - [SMALL_STATE(6514)] = 137290, - [SMALL_STATE(6515)] = 137350, - [SMALL_STATE(6516)] = 137410, - [SMALL_STATE(6517)] = 137470, - [SMALL_STATE(6518)] = 137530, - [SMALL_STATE(6519)] = 137590, - [SMALL_STATE(6520)] = 137650, - [SMALL_STATE(6521)] = 137710, - [SMALL_STATE(6522)] = 137770, - [SMALL_STATE(6523)] = 137830, - [SMALL_STATE(6524)] = 137890, - [SMALL_STATE(6525)] = 137950, - [SMALL_STATE(6526)] = 138010, - [SMALL_STATE(6527)] = 138070, - [SMALL_STATE(6528)] = 138130, - [SMALL_STATE(6529)] = 138190, - [SMALL_STATE(6530)] = 138250, - [SMALL_STATE(6531)] = 138289, - [SMALL_STATE(6532)] = 138327, - [SMALL_STATE(6533)] = 138383, - [SMALL_STATE(6534)] = 138439, - [SMALL_STATE(6535)] = 138495, - [SMALL_STATE(6536)] = 138551, - [SMALL_STATE(6537)] = 138607, - [SMALL_STATE(6538)] = 138663, - [SMALL_STATE(6539)] = 138719, - [SMALL_STATE(6540)] = 138757, - [SMALL_STATE(6541)] = 138813, - [SMALL_STATE(6542)] = 138869, - [SMALL_STATE(6543)] = 138922, - [SMALL_STATE(6544)] = 138955, - [SMALL_STATE(6545)] = 139008, - [SMALL_STATE(6546)] = 139061, - [SMALL_STATE(6547)] = 139114, - [SMALL_STATE(6548)] = 139167, - [SMALL_STATE(6549)] = 139220, - [SMALL_STATE(6550)] = 139273, - [SMALL_STATE(6551)] = 139326, - [SMALL_STATE(6552)] = 139379, - [SMALL_STATE(6553)] = 139432, - [SMALL_STATE(6554)] = 139485, - [SMALL_STATE(6555)] = 139538, - [SMALL_STATE(6556)] = 139571, - [SMALL_STATE(6557)] = 139624, - [SMALL_STATE(6558)] = 139677, - [SMALL_STATE(6559)] = 139730, - [SMALL_STATE(6560)] = 139783, - [SMALL_STATE(6561)] = 139836, - [SMALL_STATE(6562)] = 139889, - [SMALL_STATE(6563)] = 139942, - [SMALL_STATE(6564)] = 139992, - [SMALL_STATE(6565)] = 140044, - [SMALL_STATE(6566)] = 140094, - [SMALL_STATE(6567)] = 140146, - [SMALL_STATE(6568)] = 140198, - [SMALL_STATE(6569)] = 140248, - [SMALL_STATE(6570)] = 140300, - [SMALL_STATE(6571)] = 140352, - [SMALL_STATE(6572)] = 140404, - [SMALL_STATE(6573)] = 140456, - [SMALL_STATE(6574)] = 140506, - [SMALL_STATE(6575)] = 140558, - [SMALL_STATE(6576)] = 140608, - [SMALL_STATE(6577)] = 140660, - [SMALL_STATE(6578)] = 140712, - [SMALL_STATE(6579)] = 140764, - [SMALL_STATE(6580)] = 140816, - [SMALL_STATE(6581)] = 140868, - [SMALL_STATE(6582)] = 140918, - [SMALL_STATE(6583)] = 140968, - [SMALL_STATE(6584)] = 141018, - [SMALL_STATE(6585)] = 141070, - [SMALL_STATE(6586)] = 141120, - [SMALL_STATE(6587)] = 141172, - [SMALL_STATE(6588)] = 141208, - [SMALL_STATE(6589)] = 141260, - [SMALL_STATE(6590)] = 141312, - [SMALL_STATE(6591)] = 141362, - [SMALL_STATE(6592)] = 141414, - [SMALL_STATE(6593)] = 141466, - [SMALL_STATE(6594)] = 141518, - [SMALL_STATE(6595)] = 141570, - [SMALL_STATE(6596)] = 141622, - [SMALL_STATE(6597)] = 141674, - [SMALL_STATE(6598)] = 141724, - [SMALL_STATE(6599)] = 141774, - [SMALL_STATE(6600)] = 141826, - [SMALL_STATE(6601)] = 141878, - [SMALL_STATE(6602)] = 141928, - [SMALL_STATE(6603)] = 141980, - [SMALL_STATE(6604)] = 142032, - [SMALL_STATE(6605)] = 142082, - [SMALL_STATE(6606)] = 142134, - [SMALL_STATE(6607)] = 142186, - [SMALL_STATE(6608)] = 142238, - [SMALL_STATE(6609)] = 142290, - [SMALL_STATE(6610)] = 142342, - [SMALL_STATE(6611)] = 142394, - [SMALL_STATE(6612)] = 142446, - [SMALL_STATE(6613)] = 142498, - [SMALL_STATE(6614)] = 142548, - [SMALL_STATE(6615)] = 142600, - [SMALL_STATE(6616)] = 142650, - [SMALL_STATE(6617)] = 142700, - [SMALL_STATE(6618)] = 142750, - [SMALL_STATE(6619)] = 142802, - [SMALL_STATE(6620)] = 142852, - [SMALL_STATE(6621)] = 142904, - [SMALL_STATE(6622)] = 142956, - [SMALL_STATE(6623)] = 143006, - [SMALL_STATE(6624)] = 143058, - [SMALL_STATE(6625)] = 143110, - [SMALL_STATE(6626)] = 143162, - [SMALL_STATE(6627)] = 143212, - [SMALL_STATE(6628)] = 143259, - [SMALL_STATE(6629)] = 143306, - [SMALL_STATE(6630)] = 143353, - [SMALL_STATE(6631)] = 143400, - [SMALL_STATE(6632)] = 143447, - [SMALL_STATE(6633)] = 143494, - [SMALL_STATE(6634)] = 143541, - [SMALL_STATE(6635)] = 143588, - [SMALL_STATE(6636)] = 143635, - [SMALL_STATE(6637)] = 143682, - [SMALL_STATE(6638)] = 143729, - [SMALL_STATE(6639)] = 143776, - [SMALL_STATE(6640)] = 143823, - [SMALL_STATE(6641)] = 143870, - [SMALL_STATE(6642)] = 143917, - [SMALL_STATE(6643)] = 143964, - [SMALL_STATE(6644)] = 144011, - [SMALL_STATE(6645)] = 144058, - [SMALL_STATE(6646)] = 144105, - [SMALL_STATE(6647)] = 144152, - [SMALL_STATE(6648)] = 144199, - [SMALL_STATE(6649)] = 144246, - [SMALL_STATE(6650)] = 144293, - [SMALL_STATE(6651)] = 144340, - [SMALL_STATE(6652)] = 144387, - [SMALL_STATE(6653)] = 144434, - [SMALL_STATE(6654)] = 144481, - [SMALL_STATE(6655)] = 144528, - [SMALL_STATE(6656)] = 144575, - [SMALL_STATE(6657)] = 144622, - [SMALL_STATE(6658)] = 144669, - [SMALL_STATE(6659)] = 144716, - [SMALL_STATE(6660)] = 144751, - [SMALL_STATE(6661)] = 144786, - [SMALL_STATE(6662)] = 144833, - [SMALL_STATE(6663)] = 144880, - [SMALL_STATE(6664)] = 144927, - [SMALL_STATE(6665)] = 144974, - [SMALL_STATE(6666)] = 145021, - [SMALL_STATE(6667)] = 145068, - [SMALL_STATE(6668)] = 145115, - [SMALL_STATE(6669)] = 145162, - [SMALL_STATE(6670)] = 145209, - [SMALL_STATE(6671)] = 145256, - [SMALL_STATE(6672)] = 145303, - [SMALL_STATE(6673)] = 145350, - [SMALL_STATE(6674)] = 145397, - [SMALL_STATE(6675)] = 145444, - [SMALL_STATE(6676)] = 145491, - [SMALL_STATE(6677)] = 145538, - [SMALL_STATE(6678)] = 145585, - [SMALL_STATE(6679)] = 145632, - [SMALL_STATE(6680)] = 145679, - [SMALL_STATE(6681)] = 145726, - [SMALL_STATE(6682)] = 145773, - [SMALL_STATE(6683)] = 145820, - [SMALL_STATE(6684)] = 145850, - [SMALL_STATE(6685)] = 145880, - [SMALL_STATE(6686)] = 145910, - [SMALL_STATE(6687)] = 145940, - [SMALL_STATE(6688)] = 145987, - [SMALL_STATE(6689)] = 146036, - [SMALL_STATE(6690)] = 146083, - [SMALL_STATE(6691)] = 146132, - [SMALL_STATE(6692)] = 146181, - [SMALL_STATE(6693)] = 146228, - [SMALL_STATE(6694)] = 146277, - [SMALL_STATE(6695)] = 146326, - [SMALL_STATE(6696)] = 146375, - [SMALL_STATE(6697)] = 146424, - [SMALL_STATE(6698)] = 146471, - [SMALL_STATE(6699)] = 146518, - [SMALL_STATE(6700)] = 146565, - [SMALL_STATE(6701)] = 146612, - [SMALL_STATE(6702)] = 146659, - [SMALL_STATE(6703)] = 146706, - [SMALL_STATE(6704)] = 146755, - [SMALL_STATE(6705)] = 146802, - [SMALL_STATE(6706)] = 146849, - [SMALL_STATE(6707)] = 146896, - [SMALL_STATE(6708)] = 146945, - [SMALL_STATE(6709)] = 146992, - [SMALL_STATE(6710)] = 147039, - [SMALL_STATE(6711)] = 147086, - [SMALL_STATE(6712)] = 147133, - [SMALL_STATE(6713)] = 147180, - [SMALL_STATE(6714)] = 147227, - [SMALL_STATE(6715)] = 147274, - [SMALL_STATE(6716)] = 147321, - [SMALL_STATE(6717)] = 147368, - [SMALL_STATE(6718)] = 147415, - [SMALL_STATE(6719)] = 147462, - [SMALL_STATE(6720)] = 147509, - [SMALL_STATE(6721)] = 147556, - [SMALL_STATE(6722)] = 147605, - [SMALL_STATE(6723)] = 147652, - [SMALL_STATE(6724)] = 147701, - [SMALL_STATE(6725)] = 147748, - [SMALL_STATE(6726)] = 147795, - [SMALL_STATE(6727)] = 147842, - [SMALL_STATE(6728)] = 147889, - [SMALL_STATE(6729)] = 147938, - [SMALL_STATE(6730)] = 147985, - [SMALL_STATE(6731)] = 148034, - [SMALL_STATE(6732)] = 148081, - [SMALL_STATE(6733)] = 148128, - [SMALL_STATE(6734)] = 148175, - [SMALL_STATE(6735)] = 148222, - [SMALL_STATE(6736)] = 148271, - [SMALL_STATE(6737)] = 148320, - [SMALL_STATE(6738)] = 148367, - [SMALL_STATE(6739)] = 148414, - [SMALL_STATE(6740)] = 148461, - [SMALL_STATE(6741)] = 148508, - [SMALL_STATE(6742)] = 148555, - [SMALL_STATE(6743)] = 148604, - [SMALL_STATE(6744)] = 148653, - [SMALL_STATE(6745)] = 148700, - [SMALL_STATE(6746)] = 148749, - [SMALL_STATE(6747)] = 148798, - [SMALL_STATE(6748)] = 148845, - [SMALL_STATE(6749)] = 148892, - [SMALL_STATE(6750)] = 148939, - [SMALL_STATE(6751)] = 148986, - [SMALL_STATE(6752)] = 149035, - [SMALL_STATE(6753)] = 149084, - [SMALL_STATE(6754)] = 149133, - [SMALL_STATE(6755)] = 149182, - [SMALL_STATE(6756)] = 149231, - [SMALL_STATE(6757)] = 149280, - [SMALL_STATE(6758)] = 149329, - [SMALL_STATE(6759)] = 149378, - [SMALL_STATE(6760)] = 149427, - [SMALL_STATE(6761)] = 149476, - [SMALL_STATE(6762)] = 149525, - [SMALL_STATE(6763)] = 149574, - [SMALL_STATE(6764)] = 149623, - [SMALL_STATE(6765)] = 149672, - [SMALL_STATE(6766)] = 149721, - [SMALL_STATE(6767)] = 149770, - [SMALL_STATE(6768)] = 149819, - [SMALL_STATE(6769)] = 149868, - [SMALL_STATE(6770)] = 149915, - [SMALL_STATE(6771)] = 149964, - [SMALL_STATE(6772)] = 150013, - [SMALL_STATE(6773)] = 150062, - [SMALL_STATE(6774)] = 150109, - [SMALL_STATE(6775)] = 150156, - [SMALL_STATE(6776)] = 150205, - [SMALL_STATE(6777)] = 150254, - [SMALL_STATE(6778)] = 150303, - [SMALL_STATE(6779)] = 150352, - [SMALL_STATE(6780)] = 150401, - [SMALL_STATE(6781)] = 150448, - [SMALL_STATE(6782)] = 150495, - [SMALL_STATE(6783)] = 150542, - [SMALL_STATE(6784)] = 150591, - [SMALL_STATE(6785)] = 150640, - [SMALL_STATE(6786)] = 150689, - [SMALL_STATE(6787)] = 150738, - [SMALL_STATE(6788)] = 150787, - [SMALL_STATE(6789)] = 150836, - [SMALL_STATE(6790)] = 150885, - [SMALL_STATE(6791)] = 150934, - [SMALL_STATE(6792)] = 150983, - [SMALL_STATE(6793)] = 151032, - [SMALL_STATE(6794)] = 151081, - [SMALL_STATE(6795)] = 151130, - [SMALL_STATE(6796)] = 151177, - [SMALL_STATE(6797)] = 151224, - [SMALL_STATE(6798)] = 151271, - [SMALL_STATE(6799)] = 151320, - [SMALL_STATE(6800)] = 151367, - [SMALL_STATE(6801)] = 151416, - [SMALL_STATE(6802)] = 151465, - [SMALL_STATE(6803)] = 151514, - [SMALL_STATE(6804)] = 151561, - [SMALL_STATE(6805)] = 151608, - [SMALL_STATE(6806)] = 151655, - [SMALL_STATE(6807)] = 151704, - [SMALL_STATE(6808)] = 151751, - [SMALL_STATE(6809)] = 151798, - [SMALL_STATE(6810)] = 151847, - [SMALL_STATE(6811)] = 151896, - [SMALL_STATE(6812)] = 151943, - [SMALL_STATE(6813)] = 151990, - [SMALL_STATE(6814)] = 152037, - [SMALL_STATE(6815)] = 152084, - [SMALL_STATE(6816)] = 152131, - [SMALL_STATE(6817)] = 152180, - [SMALL_STATE(6818)] = 152227, - [SMALL_STATE(6819)] = 152276, - [SMALL_STATE(6820)] = 152323, - [SMALL_STATE(6821)] = 152370, - [SMALL_STATE(6822)] = 152419, - [SMALL_STATE(6823)] = 152466, - [SMALL_STATE(6824)] = 152515, - [SMALL_STATE(6825)] = 152562, - [SMALL_STATE(6826)] = 152611, - [SMALL_STATE(6827)] = 152658, - [SMALL_STATE(6828)] = 152705, - [SMALL_STATE(6829)] = 152754, - [SMALL_STATE(6830)] = 152801, - [SMALL_STATE(6831)] = 152850, - [SMALL_STATE(6832)] = 152897, - [SMALL_STATE(6833)] = 152944, - [SMALL_STATE(6834)] = 152991, - [SMALL_STATE(6835)] = 153038, - [SMALL_STATE(6836)] = 153085, - [SMALL_STATE(6837)] = 153132, - [SMALL_STATE(6838)] = 153179, - [SMALL_STATE(6839)] = 153226, - [SMALL_STATE(6840)] = 153273, - [SMALL_STATE(6841)] = 153320, - [SMALL_STATE(6842)] = 153367, - [SMALL_STATE(6843)] = 153414, - [SMALL_STATE(6844)] = 153463, - [SMALL_STATE(6845)] = 153510, - [SMALL_STATE(6846)] = 153557, - [SMALL_STATE(6847)] = 153604, - [SMALL_STATE(6848)] = 153651, - [SMALL_STATE(6849)] = 153700, - [SMALL_STATE(6850)] = 153747, - [SMALL_STATE(6851)] = 153796, - [SMALL_STATE(6852)] = 153843, - [SMALL_STATE(6853)] = 153892, - [SMALL_STATE(6854)] = 153941, - [SMALL_STATE(6855)] = 153988, - [SMALL_STATE(6856)] = 154037, - [SMALL_STATE(6857)] = 154086, - [SMALL_STATE(6858)] = 154133, - [SMALL_STATE(6859)] = 154180, - [SMALL_STATE(6860)] = 154229, - [SMALL_STATE(6861)] = 154276, - [SMALL_STATE(6862)] = 154325, - [SMALL_STATE(6863)] = 154374, - [SMALL_STATE(6864)] = 154421, - [SMALL_STATE(6865)] = 154468, - [SMALL_STATE(6866)] = 154517, - [SMALL_STATE(6867)] = 154564, - [SMALL_STATE(6868)] = 154613, - [SMALL_STATE(6869)] = 154660, - [SMALL_STATE(6870)] = 154707, - [SMALL_STATE(6871)] = 154754, - [SMALL_STATE(6872)] = 154801, - [SMALL_STATE(6873)] = 154850, - [SMALL_STATE(6874)] = 154899, - [SMALL_STATE(6875)] = 154948, - [SMALL_STATE(6876)] = 154997, - [SMALL_STATE(6877)] = 155046, - [SMALL_STATE(6878)] = 155095, - [SMALL_STATE(6879)] = 155144, - [SMALL_STATE(6880)] = 155193, - [SMALL_STATE(6881)] = 155242, - [SMALL_STATE(6882)] = 155291, - [SMALL_STATE(6883)] = 155340, - [SMALL_STATE(6884)] = 155389, - [SMALL_STATE(6885)] = 155438, - [SMALL_STATE(6886)] = 155487, - [SMALL_STATE(6887)] = 155536, - [SMALL_STATE(6888)] = 155585, - [SMALL_STATE(6889)] = 155634, - [SMALL_STATE(6890)] = 155683, - [SMALL_STATE(6891)] = 155732, - [SMALL_STATE(6892)] = 155779, - [SMALL_STATE(6893)] = 155828, - [SMALL_STATE(6894)] = 155877, - [SMALL_STATE(6895)] = 155924, - [SMALL_STATE(6896)] = 155973, - [SMALL_STATE(6897)] = 156022, - [SMALL_STATE(6898)] = 156071, - [SMALL_STATE(6899)] = 156118, - [SMALL_STATE(6900)] = 156165, - [SMALL_STATE(6901)] = 156214, - [SMALL_STATE(6902)] = 156263, - [SMALL_STATE(6903)] = 156312, - [SMALL_STATE(6904)] = 156361, - [SMALL_STATE(6905)] = 156410, - [SMALL_STATE(6906)] = 156457, - [SMALL_STATE(6907)] = 156504, - [SMALL_STATE(6908)] = 156551, - [SMALL_STATE(6909)] = 156600, - [SMALL_STATE(6910)] = 156649, - [SMALL_STATE(6911)] = 156698, - [SMALL_STATE(6912)] = 156747, - [SMALL_STATE(6913)] = 156796, - [SMALL_STATE(6914)] = 156845, - [SMALL_STATE(6915)] = 156892, - [SMALL_STATE(6916)] = 156941, - [SMALL_STATE(6917)] = 156990, - [SMALL_STATE(6918)] = 157039, - [SMALL_STATE(6919)] = 157086, - [SMALL_STATE(6920)] = 157135, - [SMALL_STATE(6921)] = 157184, - [SMALL_STATE(6922)] = 157231, - [SMALL_STATE(6923)] = 157278, - [SMALL_STATE(6924)] = 157327, - [SMALL_STATE(6925)] = 157376, - [SMALL_STATE(6926)] = 157423, - [SMALL_STATE(6927)] = 157472, - [SMALL_STATE(6928)] = 157521, - [SMALL_STATE(6929)] = 157570, - [SMALL_STATE(6930)] = 157619, - [SMALL_STATE(6931)] = 157668, - [SMALL_STATE(6932)] = 157717, - [SMALL_STATE(6933)] = 157766, - [SMALL_STATE(6934)] = 157815, - [SMALL_STATE(6935)] = 157862, - [SMALL_STATE(6936)] = 157909, - [SMALL_STATE(6937)] = 157958, - [SMALL_STATE(6938)] = 158007, - [SMALL_STATE(6939)] = 158056, - [SMALL_STATE(6940)] = 158103, - [SMALL_STATE(6941)] = 158152, - [SMALL_STATE(6942)] = 158199, - [SMALL_STATE(6943)] = 158246, - [SMALL_STATE(6944)] = 158295, - [SMALL_STATE(6945)] = 158342, - [SMALL_STATE(6946)] = 158389, - [SMALL_STATE(6947)] = 158436, - [SMALL_STATE(6948)] = 158485, - [SMALL_STATE(6949)] = 158532, - [SMALL_STATE(6950)] = 158581, - [SMALL_STATE(6951)] = 158628, - [SMALL_STATE(6952)] = 158677, - [SMALL_STATE(6953)] = 158724, - [SMALL_STATE(6954)] = 158771, - [SMALL_STATE(6955)] = 158818, - [SMALL_STATE(6956)] = 158867, - [SMALL_STATE(6957)] = 158914, - [SMALL_STATE(6958)] = 158961, - [SMALL_STATE(6959)] = 159010, - [SMALL_STATE(6960)] = 159059, - [SMALL_STATE(6961)] = 159108, - [SMALL_STATE(6962)] = 159155, - [SMALL_STATE(6963)] = 159202, - [SMALL_STATE(6964)] = 159249, - [SMALL_STATE(6965)] = 159296, - [SMALL_STATE(6966)] = 159343, - [SMALL_STATE(6967)] = 159392, - [SMALL_STATE(6968)] = 159439, - [SMALL_STATE(6969)] = 159486, - [SMALL_STATE(6970)] = 159535, - [SMALL_STATE(6971)] = 159584, - [SMALL_STATE(6972)] = 159633, - [SMALL_STATE(6973)] = 159680, - [SMALL_STATE(6974)] = 159727, - [SMALL_STATE(6975)] = 159774, - [SMALL_STATE(6976)] = 159821, - [SMALL_STATE(6977)] = 159870, - [SMALL_STATE(6978)] = 159919, - [SMALL_STATE(6979)] = 159968, - [SMALL_STATE(6980)] = 160017, - [SMALL_STATE(6981)] = 160066, - [SMALL_STATE(6982)] = 160115, - [SMALL_STATE(6983)] = 160164, - [SMALL_STATE(6984)] = 160213, - [SMALL_STATE(6985)] = 160262, - [SMALL_STATE(6986)] = 160311, - [SMALL_STATE(6987)] = 160358, - [SMALL_STATE(6988)] = 160405, - [SMALL_STATE(6989)] = 160454, - [SMALL_STATE(6990)] = 160503, - [SMALL_STATE(6991)] = 160552, - [SMALL_STATE(6992)] = 160601, - [SMALL_STATE(6993)] = 160650, - [SMALL_STATE(6994)] = 160697, - [SMALL_STATE(6995)] = 160744, - [SMALL_STATE(6996)] = 160793, - [SMALL_STATE(6997)] = 160842, - [SMALL_STATE(6998)] = 160889, - [SMALL_STATE(6999)] = 160938, - [SMALL_STATE(7000)] = 160987, - [SMALL_STATE(7001)] = 161036, - [SMALL_STATE(7002)] = 161083, - [SMALL_STATE(7003)] = 161132, - [SMALL_STATE(7004)] = 161181, - [SMALL_STATE(7005)] = 161228, - [SMALL_STATE(7006)] = 161275, - [SMALL_STATE(7007)] = 161324, - [SMALL_STATE(7008)] = 161373, - [SMALL_STATE(7009)] = 161420, - [SMALL_STATE(7010)] = 161469, - [SMALL_STATE(7011)] = 161518, - [SMALL_STATE(7012)] = 161567, - [SMALL_STATE(7013)] = 161616, - [SMALL_STATE(7014)] = 161665, - [SMALL_STATE(7015)] = 161714, - [SMALL_STATE(7016)] = 161763, - [SMALL_STATE(7017)] = 161812, - [SMALL_STATE(7018)] = 161861, - [SMALL_STATE(7019)] = 161910, - [SMALL_STATE(7020)] = 161959, - [SMALL_STATE(7021)] = 162008, - [SMALL_STATE(7022)] = 162057, - [SMALL_STATE(7023)] = 162106, - [SMALL_STATE(7024)] = 162155, - [SMALL_STATE(7025)] = 162204, - [SMALL_STATE(7026)] = 162253, - [SMALL_STATE(7027)] = 162302, - [SMALL_STATE(7028)] = 162351, - [SMALL_STATE(7029)] = 162400, - [SMALL_STATE(7030)] = 162449, - [SMALL_STATE(7031)] = 162498, - [SMALL_STATE(7032)] = 162547, - [SMALL_STATE(7033)] = 162596, - [SMALL_STATE(7034)] = 162643, - [SMALL_STATE(7035)] = 162692, - [SMALL_STATE(7036)] = 162739, - [SMALL_STATE(7037)] = 162788, - [SMALL_STATE(7038)] = 162835, - [SMALL_STATE(7039)] = 162884, - [SMALL_STATE(7040)] = 162933, - [SMALL_STATE(7041)] = 162982, - [SMALL_STATE(7042)] = 163031, - [SMALL_STATE(7043)] = 163080, - [SMALL_STATE(7044)] = 163129, - [SMALL_STATE(7045)] = 163178, - [SMALL_STATE(7046)] = 163227, - [SMALL_STATE(7047)] = 163276, - [SMALL_STATE(7048)] = 163325, - [SMALL_STATE(7049)] = 163372, - [SMALL_STATE(7050)] = 163421, - [SMALL_STATE(7051)] = 163468, - [SMALL_STATE(7052)] = 163517, - [SMALL_STATE(7053)] = 163566, - [SMALL_STATE(7054)] = 163615, - [SMALL_STATE(7055)] = 163662, - [SMALL_STATE(7056)] = 163709, - [SMALL_STATE(7057)] = 163756, - [SMALL_STATE(7058)] = 163803, - [SMALL_STATE(7059)] = 163852, - [SMALL_STATE(7060)] = 163901, - [SMALL_STATE(7061)] = 163948, - [SMALL_STATE(7062)] = 163997, - [SMALL_STATE(7063)] = 164044, - [SMALL_STATE(7064)] = 164091, - [SMALL_STATE(7065)] = 164138, - [SMALL_STATE(7066)] = 164185, - [SMALL_STATE(7067)] = 164232, - [SMALL_STATE(7068)] = 164281, - [SMALL_STATE(7069)] = 164328, - [SMALL_STATE(7070)] = 164375, - [SMALL_STATE(7071)] = 164422, - [SMALL_STATE(7072)] = 164469, - [SMALL_STATE(7073)] = 164518, - [SMALL_STATE(7074)] = 164567, - [SMALL_STATE(7075)] = 164616, - [SMALL_STATE(7076)] = 164658, - [SMALL_STATE(7077)] = 164700, - [SMALL_STATE(7078)] = 164738, - [SMALL_STATE(7079)] = 164780, - [SMALL_STATE(7080)] = 164812, - [SMALL_STATE(7081)] = 164854, - [SMALL_STATE(7082)] = 164896, - [SMALL_STATE(7083)] = 164942, - [SMALL_STATE(7084)] = 164988, - [SMALL_STATE(7085)] = 165034, - [SMALL_STATE(7086)] = 165076, - [SMALL_STATE(7087)] = 165118, - [SMALL_STATE(7088)] = 165160, - [SMALL_STATE(7089)] = 165206, - [SMALL_STATE(7090)] = 165252, - [SMALL_STATE(7091)] = 165298, - [SMALL_STATE(7092)] = 165344, - [SMALL_STATE(7093)] = 165390, - [SMALL_STATE(7094)] = 165432, - [SMALL_STATE(7095)] = 165478, - [SMALL_STATE(7096)] = 165520, - [SMALL_STATE(7097)] = 165562, - [SMALL_STATE(7098)] = 165604, - [SMALL_STATE(7099)] = 165642, - [SMALL_STATE(7100)] = 165684, - [SMALL_STATE(7101)] = 165726, - [SMALL_STATE(7102)] = 165768, - [SMALL_STATE(7103)] = 165810, - [SMALL_STATE(7104)] = 165852, - [SMALL_STATE(7105)] = 165888, - [SMALL_STATE(7106)] = 165930, - [SMALL_STATE(7107)] = 165972, - [SMALL_STATE(7108)] = 166018, - [SMALL_STATE(7109)] = 166064, - [SMALL_STATE(7110)] = 166106, - [SMALL_STATE(7111)] = 166148, - [SMALL_STATE(7112)] = 166190, - [SMALL_STATE(7113)] = 166236, - [SMALL_STATE(7114)] = 166278, - [SMALL_STATE(7115)] = 166320, - [SMALL_STATE(7116)] = 166362, - [SMALL_STATE(7117)] = 166404, - [SMALL_STATE(7118)] = 166446, - [SMALL_STATE(7119)] = 166488, - [SMALL_STATE(7120)] = 166516, - [SMALL_STATE(7121)] = 166562, - [SMALL_STATE(7122)] = 166604, - [SMALL_STATE(7123)] = 166646, - [SMALL_STATE(7124)] = 166688, - [SMALL_STATE(7125)] = 166730, - [SMALL_STATE(7126)] = 166776, - [SMALL_STATE(7127)] = 166818, - [SMALL_STATE(7128)] = 166848, - [SMALL_STATE(7129)] = 166890, - [SMALL_STATE(7130)] = 166932, - [SMALL_STATE(7131)] = 166974, - [SMALL_STATE(7132)] = 167016, - [SMALL_STATE(7133)] = 167058, - [SMALL_STATE(7134)] = 167100, - [SMALL_STATE(7135)] = 167146, - [SMALL_STATE(7136)] = 167188, - [SMALL_STATE(7137)] = 167230, - [SMALL_STATE(7138)] = 167272, - [SMALL_STATE(7139)] = 167314, - [SMALL_STATE(7140)] = 167356, - [SMALL_STATE(7141)] = 167398, - [SMALL_STATE(7142)] = 167440, - [SMALL_STATE(7143)] = 167482, - [SMALL_STATE(7144)] = 167524, - [SMALL_STATE(7145)] = 167566, - [SMALL_STATE(7146)] = 167608, - [SMALL_STATE(7147)] = 167650, - [SMALL_STATE(7148)] = 167686, - [SMALL_STATE(7149)] = 167728, - [SMALL_STATE(7150)] = 167770, - [SMALL_STATE(7151)] = 167812, - [SMALL_STATE(7152)] = 167847, - [SMALL_STATE(7153)] = 167882, - [SMALL_STATE(7154)] = 167913, - [SMALL_STATE(7155)] = 167944, - [SMALL_STATE(7156)] = 167975, - [SMALL_STATE(7157)] = 168010, - [SMALL_STATE(7158)] = 168045, - [SMALL_STATE(7159)] = 168086, - [SMALL_STATE(7160)] = 168117, - [SMALL_STATE(7161)] = 168144, - [SMALL_STATE(7162)] = 168179, - [SMALL_STATE(7163)] = 168210, - [SMALL_STATE(7164)] = 168248, - [SMALL_STATE(7165)] = 168286, - [SMALL_STATE(7166)] = 168324, - [SMALL_STATE(7167)] = 168362, - [SMALL_STATE(7168)] = 168392, - [SMALL_STATE(7169)] = 168430, - [SMALL_STATE(7170)] = 168468, - [SMALL_STATE(7171)] = 168498, - [SMALL_STATE(7172)] = 168526, - [SMALL_STATE(7173)] = 168564, - [SMALL_STATE(7174)] = 168602, - [SMALL_STATE(7175)] = 168630, - [SMALL_STATE(7176)] = 168668, - [SMALL_STATE(7177)] = 168706, - [SMALL_STATE(7178)] = 168744, - [SMALL_STATE(7179)] = 168782, - [SMALL_STATE(7180)] = 168820, - [SMALL_STATE(7181)] = 168858, - [SMALL_STATE(7182)] = 168896, - [SMALL_STATE(7183)] = 168934, - [SMALL_STATE(7184)] = 168972, - [SMALL_STATE(7185)] = 169010, - [SMALL_STATE(7186)] = 169048, - [SMALL_STATE(7187)] = 169086, - [SMALL_STATE(7188)] = 169124, - [SMALL_STATE(7189)] = 169162, - [SMALL_STATE(7190)] = 169200, - [SMALL_STATE(7191)] = 169238, - [SMALL_STATE(7192)] = 169276, - [SMALL_STATE(7193)] = 169314, - [SMALL_STATE(7194)] = 169352, - [SMALL_STATE(7195)] = 169390, - [SMALL_STATE(7196)] = 169416, - [SMALL_STATE(7197)] = 169442, - [SMALL_STATE(7198)] = 169468, - [SMALL_STATE(7199)] = 169506, - [SMALL_STATE(7200)] = 169544, - [SMALL_STATE(7201)] = 169570, - [SMALL_STATE(7202)] = 169608, - [SMALL_STATE(7203)] = 169646, - [SMALL_STATE(7204)] = 169684, - [SMALL_STATE(7205)] = 169722, - [SMALL_STATE(7206)] = 169760, - [SMALL_STATE(7207)] = 169798, - [SMALL_STATE(7208)] = 169836, - [SMALL_STATE(7209)] = 169874, - [SMALL_STATE(7210)] = 169912, - [SMALL_STATE(7211)] = 169950, - [SMALL_STATE(7212)] = 169988, - [SMALL_STATE(7213)] = 170026, - [SMALL_STATE(7214)] = 170064, - [SMALL_STATE(7215)] = 170102, - [SMALL_STATE(7216)] = 170140, - [SMALL_STATE(7217)] = 170178, - [SMALL_STATE(7218)] = 170216, - [SMALL_STATE(7219)] = 170254, - [SMALL_STATE(7220)] = 170291, - [SMALL_STATE(7221)] = 170316, - [SMALL_STATE(7222)] = 170351, - [SMALL_STATE(7223)] = 170386, - [SMALL_STATE(7224)] = 170421, - [SMALL_STATE(7225)] = 170456, - [SMALL_STATE(7226)] = 170491, - [SMALL_STATE(7227)] = 170526, - [SMALL_STATE(7228)] = 170561, - [SMALL_STATE(7229)] = 170596, - [SMALL_STATE(7230)] = 170631, - [SMALL_STATE(7231)] = 170666, - [SMALL_STATE(7232)] = 170701, - [SMALL_STATE(7233)] = 170738, - [SMALL_STATE(7234)] = 170773, - [SMALL_STATE(7235)] = 170798, - [SMALL_STATE(7236)] = 170835, - [SMALL_STATE(7237)] = 170870, - [SMALL_STATE(7238)] = 170905, - [SMALL_STATE(7239)] = 170940, - [SMALL_STATE(7240)] = 170969, - [SMALL_STATE(7241)] = 171004, - [SMALL_STATE(7242)] = 171039, - [SMALL_STATE(7243)] = 171068, - [SMALL_STATE(7244)] = 171093, - [SMALL_STATE(7245)] = 171118, - [SMALL_STATE(7246)] = 171143, - [SMALL_STATE(7247)] = 171168, - [SMALL_STATE(7248)] = 171203, - [SMALL_STATE(7249)] = 171240, - [SMALL_STATE(7250)] = 171265, - [SMALL_STATE(7251)] = 171300, - [SMALL_STATE(7252)] = 171337, - [SMALL_STATE(7253)] = 171364, - [SMALL_STATE(7254)] = 171393, - [SMALL_STATE(7255)] = 171428, - [SMALL_STATE(7256)] = 171453, - [SMALL_STATE(7257)] = 171482, - [SMALL_STATE(7258)] = 171517, - [SMALL_STATE(7259)] = 171552, - [SMALL_STATE(7260)] = 171577, - [SMALL_STATE(7261)] = 171606, - [SMALL_STATE(7262)] = 171641, - [SMALL_STATE(7263)] = 171666, - [SMALL_STATE(7264)] = 171701, - [SMALL_STATE(7265)] = 171736, - [SMALL_STATE(7266)] = 171771, - [SMALL_STATE(7267)] = 171808, - [SMALL_STATE(7268)] = 171843, - [SMALL_STATE(7269)] = 171880, - [SMALL_STATE(7270)] = 171915, - [SMALL_STATE(7271)] = 171950, - [SMALL_STATE(7272)] = 171985, - [SMALL_STATE(7273)] = 172020, - [SMALL_STATE(7274)] = 172057, - [SMALL_STATE(7275)] = 172088, - [SMALL_STATE(7276)] = 172123, - [SMALL_STATE(7277)] = 172160, - [SMALL_STATE(7278)] = 172197, - [SMALL_STATE(7279)] = 172232, - [SMALL_STATE(7280)] = 172267, - [SMALL_STATE(7281)] = 172302, - [SMALL_STATE(7282)] = 172337, - [SMALL_STATE(7283)] = 172372, - [SMALL_STATE(7284)] = 172407, - [SMALL_STATE(7285)] = 172444, - [SMALL_STATE(7286)] = 172481, - [SMALL_STATE(7287)] = 172516, - [SMALL_STATE(7288)] = 172551, - [SMALL_STATE(7289)] = 172586, - [SMALL_STATE(7290)] = 172611, - [SMALL_STATE(7291)] = 172646, - [SMALL_STATE(7292)] = 172681, - [SMALL_STATE(7293)] = 172716, - [SMALL_STATE(7294)] = 172753, - [SMALL_STATE(7295)] = 172788, - [SMALL_STATE(7296)] = 172823, - [SMALL_STATE(7297)] = 172858, - [SMALL_STATE(7298)] = 172890, - [SMALL_STATE(7299)] = 172922, - [SMALL_STATE(7300)] = 172956, - [SMALL_STATE(7301)] = 172990, - [SMALL_STATE(7302)] = 173024, - [SMALL_STATE(7303)] = 173056, - [SMALL_STATE(7304)] = 173090, - [SMALL_STATE(7305)] = 173124, - [SMALL_STATE(7306)] = 173158, - [SMALL_STATE(7307)] = 173192, - [SMALL_STATE(7308)] = 173224, - [SMALL_STATE(7309)] = 173258, - [SMALL_STATE(7310)] = 173292, - [SMALL_STATE(7311)] = 173326, - [SMALL_STATE(7312)] = 173358, - [SMALL_STATE(7313)] = 173392, - [SMALL_STATE(7314)] = 173426, - [SMALL_STATE(7315)] = 173460, - [SMALL_STATE(7316)] = 173492, - [SMALL_STATE(7317)] = 173526, - [SMALL_STATE(7318)] = 173558, - [SMALL_STATE(7319)] = 173592, - [SMALL_STATE(7320)] = 173624, - [SMALL_STATE(7321)] = 173658, - [SMALL_STATE(7322)] = 173692, - [SMALL_STATE(7323)] = 173726, - [SMALL_STATE(7324)] = 173758, - [SMALL_STATE(7325)] = 173792, - [SMALL_STATE(7326)] = 173826, - [SMALL_STATE(7327)] = 173860, - [SMALL_STATE(7328)] = 173894, - [SMALL_STATE(7329)] = 173926, - [SMALL_STATE(7330)] = 173958, - [SMALL_STATE(7331)] = 173992, - [SMALL_STATE(7332)] = 174026, - [SMALL_STATE(7333)] = 174060, - [SMALL_STATE(7334)] = 174094, - [SMALL_STATE(7335)] = 174126, - [SMALL_STATE(7336)] = 174158, - [SMALL_STATE(7337)] = 174192, - [SMALL_STATE(7338)] = 174226, - [SMALL_STATE(7339)] = 174262, - [SMALL_STATE(7340)] = 174294, - [SMALL_STATE(7341)] = 174328, - [SMALL_STATE(7342)] = 174362, - [SMALL_STATE(7343)] = 174394, - [SMALL_STATE(7344)] = 174428, - [SMALL_STATE(7345)] = 174460, - [SMALL_STATE(7346)] = 174494, - [SMALL_STATE(7347)] = 174526, - [SMALL_STATE(7348)] = 174560, - [SMALL_STATE(7349)] = 174594, - [SMALL_STATE(7350)] = 174618, - [SMALL_STATE(7351)] = 174650, - [SMALL_STATE(7352)] = 174684, - [SMALL_STATE(7353)] = 174718, - [SMALL_STATE(7354)] = 174752, - [SMALL_STATE(7355)] = 174784, - [SMALL_STATE(7356)] = 174816, - [SMALL_STATE(7357)] = 174850, - [SMALL_STATE(7358)] = 174882, - [SMALL_STATE(7359)] = 174916, - [SMALL_STATE(7360)] = 174948, - [SMALL_STATE(7361)] = 174982, - [SMALL_STATE(7362)] = 175014, - [SMALL_STATE(7363)] = 175048, - [SMALL_STATE(7364)] = 175082, - [SMALL_STATE(7365)] = 175116, - [SMALL_STATE(7366)] = 175150, - [SMALL_STATE(7367)] = 175184, - [SMALL_STATE(7368)] = 175216, - [SMALL_STATE(7369)] = 175250, - [SMALL_STATE(7370)] = 175284, - [SMALL_STATE(7371)] = 175308, - [SMALL_STATE(7372)] = 175342, - [SMALL_STATE(7373)] = 175376, - [SMALL_STATE(7374)] = 175408, - [SMALL_STATE(7375)] = 175442, - [SMALL_STATE(7376)] = 175466, - [SMALL_STATE(7377)] = 175498, - [SMALL_STATE(7378)] = 175530, - [SMALL_STATE(7379)] = 175562, - [SMALL_STATE(7380)] = 175596, - [SMALL_STATE(7381)] = 175630, - [SMALL_STATE(7382)] = 175662, - [SMALL_STATE(7383)] = 175696, - [SMALL_STATE(7384)] = 175728, - [SMALL_STATE(7385)] = 175760, - [SMALL_STATE(7386)] = 175794, - [SMALL_STATE(7387)] = 175828, - [SMALL_STATE(7388)] = 175862, - [SMALL_STATE(7389)] = 175894, - [SMALL_STATE(7390)] = 175926, - [SMALL_STATE(7391)] = 175958, - [SMALL_STATE(7392)] = 175992, - [SMALL_STATE(7393)] = 176026, - [SMALL_STATE(7394)] = 176060, - [SMALL_STATE(7395)] = 176092, - [SMALL_STATE(7396)] = 176126, - [SMALL_STATE(7397)] = 176160, - [SMALL_STATE(7398)] = 176194, - [SMALL_STATE(7399)] = 176226, - [SMALL_STATE(7400)] = 176258, - [SMALL_STATE(7401)] = 176290, - [SMALL_STATE(7402)] = 176324, - [SMALL_STATE(7403)] = 176348, - [SMALL_STATE(7404)] = 176382, - [SMALL_STATE(7405)] = 176416, - [SMALL_STATE(7406)] = 176450, - [SMALL_STATE(7407)] = 176482, - [SMALL_STATE(7408)] = 176516, - [SMALL_STATE(7409)] = 176550, - [SMALL_STATE(7410)] = 176574, - [SMALL_STATE(7411)] = 176608, - [SMALL_STATE(7412)] = 176642, - [SMALL_STATE(7413)] = 176674, - [SMALL_STATE(7414)] = 176708, - [SMALL_STATE(7415)] = 176732, - [SMALL_STATE(7416)] = 176766, - [SMALL_STATE(7417)] = 176800, - [SMALL_STATE(7418)] = 176834, - [SMALL_STATE(7419)] = 176864, - [SMALL_STATE(7420)] = 176898, - [SMALL_STATE(7421)] = 176930, - [SMALL_STATE(7422)] = 176962, - [SMALL_STATE(7423)] = 176996, - [SMALL_STATE(7424)] = 177030, - [SMALL_STATE(7425)] = 177064, - [SMALL_STATE(7426)] = 177096, - [SMALL_STATE(7427)] = 177128, - [SMALL_STATE(7428)] = 177156, - [SMALL_STATE(7429)] = 177184, - [SMALL_STATE(7430)] = 177216, - [SMALL_STATE(7431)] = 177248, - [SMALL_STATE(7432)] = 177282, - [SMALL_STATE(7433)] = 177314, - [SMALL_STATE(7434)] = 177348, - [SMALL_STATE(7435)] = 177380, - [SMALL_STATE(7436)] = 177414, - [SMALL_STATE(7437)] = 177448, - [SMALL_STATE(7438)] = 177482, - [SMALL_STATE(7439)] = 177514, - [SMALL_STATE(7440)] = 177548, - [SMALL_STATE(7441)] = 177580, - [SMALL_STATE(7442)] = 177614, - [SMALL_STATE(7443)] = 177648, - [SMALL_STATE(7444)] = 177682, - [SMALL_STATE(7445)] = 177716, - [SMALL_STATE(7446)] = 177750, - [SMALL_STATE(7447)] = 177784, - [SMALL_STATE(7448)] = 177818, - [SMALL_STATE(7449)] = 177852, - [SMALL_STATE(7450)] = 177886, - [SMALL_STATE(7451)] = 177920, - [SMALL_STATE(7452)] = 177954, - [SMALL_STATE(7453)] = 177986, - [SMALL_STATE(7454)] = 178020, - [SMALL_STATE(7455)] = 178054, - [SMALL_STATE(7456)] = 178086, - [SMALL_STATE(7457)] = 178120, - [SMALL_STATE(7458)] = 178154, - [SMALL_STATE(7459)] = 178188, - [SMALL_STATE(7460)] = 178222, - [SMALL_STATE(7461)] = 178254, - [SMALL_STATE(7462)] = 178286, - [SMALL_STATE(7463)] = 178320, - [SMALL_STATE(7464)] = 178354, - [SMALL_STATE(7465)] = 178388, - [SMALL_STATE(7466)] = 178422, - [SMALL_STATE(7467)] = 178456, - [SMALL_STATE(7468)] = 178490, - [SMALL_STATE(7469)] = 178524, - [SMALL_STATE(7470)] = 178556, - [SMALL_STATE(7471)] = 178590, - [SMALL_STATE(7472)] = 178624, - [SMALL_STATE(7473)] = 178660, - [SMALL_STATE(7474)] = 178694, - [SMALL_STATE(7475)] = 178726, - [SMALL_STATE(7476)] = 178760, - [SMALL_STATE(7477)] = 178794, - [SMALL_STATE(7478)] = 178828, - [SMALL_STATE(7479)] = 178860, - [SMALL_STATE(7480)] = 178894, - [SMALL_STATE(7481)] = 178926, - [SMALL_STATE(7482)] = 178960, - [SMALL_STATE(7483)] = 178994, - [SMALL_STATE(7484)] = 179028, - [SMALL_STATE(7485)] = 179062, - [SMALL_STATE(7486)] = 179094, - [SMALL_STATE(7487)] = 179128, - [SMALL_STATE(7488)] = 179162, - [SMALL_STATE(7489)] = 179194, - [SMALL_STATE(7490)] = 179226, - [SMALL_STATE(7491)] = 179258, - [SMALL_STATE(7492)] = 179292, - [SMALL_STATE(7493)] = 179320, - [SMALL_STATE(7494)] = 179352, - [SMALL_STATE(7495)] = 179386, - [SMALL_STATE(7496)] = 179420, - [SMALL_STATE(7497)] = 179452, - [SMALL_STATE(7498)] = 179484, - [SMALL_STATE(7499)] = 179518, - [SMALL_STATE(7500)] = 179550, - [SMALL_STATE(7501)] = 179582, - [SMALL_STATE(7502)] = 179616, - [SMALL_STATE(7503)] = 179648, - [SMALL_STATE(7504)] = 179682, - [SMALL_STATE(7505)] = 179716, - [SMALL_STATE(7506)] = 179750, - [SMALL_STATE(7507)] = 179782, - [SMALL_STATE(7508)] = 179810, - [SMALL_STATE(7509)] = 179844, - [SMALL_STATE(7510)] = 179878, - [SMALL_STATE(7511)] = 179912, - [SMALL_STATE(7512)] = 179946, - [SMALL_STATE(7513)] = 179980, - [SMALL_STATE(7514)] = 180012, - [SMALL_STATE(7515)] = 180044, - [SMALL_STATE(7516)] = 180078, - [SMALL_STATE(7517)] = 180110, - [SMALL_STATE(7518)] = 180142, - [SMALL_STATE(7519)] = 180176, - [SMALL_STATE(7520)] = 180210, - [SMALL_STATE(7521)] = 180244, - [SMALL_STATE(7522)] = 180278, - [SMALL_STATE(7523)] = 180310, - [SMALL_STATE(7524)] = 180342, - [SMALL_STATE(7525)] = 180376, - [SMALL_STATE(7526)] = 180408, - [SMALL_STATE(7527)] = 180442, - [SMALL_STATE(7528)] = 180476, - [SMALL_STATE(7529)] = 180508, - [SMALL_STATE(7530)] = 180540, - [SMALL_STATE(7531)] = 180572, - [SMALL_STATE(7532)] = 180606, - [SMALL_STATE(7533)] = 180638, - [SMALL_STATE(7534)] = 180672, - [SMALL_STATE(7535)] = 180706, - [SMALL_STATE(7536)] = 180740, - [SMALL_STATE(7537)] = 180772, - [SMALL_STATE(7538)] = 180804, - [SMALL_STATE(7539)] = 180838, - [SMALL_STATE(7540)] = 180872, - [SMALL_STATE(7541)] = 180905, - [SMALL_STATE(7542)] = 180938, - [SMALL_STATE(7543)] = 180971, - [SMALL_STATE(7544)] = 180998, - [SMALL_STATE(7545)] = 181029, - [SMALL_STATE(7546)] = 181062, - [SMALL_STATE(7547)] = 181095, - [SMALL_STATE(7548)] = 181128, - [SMALL_STATE(7549)] = 181159, - [SMALL_STATE(7550)] = 181192, - [SMALL_STATE(7551)] = 181225, - [SMALL_STATE(7552)] = 181258, - [SMALL_STATE(7553)] = 181289, - [SMALL_STATE(7554)] = 181320, - [SMALL_STATE(7555)] = 181353, - [SMALL_STATE(7556)] = 181376, - [SMALL_STATE(7557)] = 181407, - [SMALL_STATE(7558)] = 181438, - [SMALL_STATE(7559)] = 181471, - [SMALL_STATE(7560)] = 181504, - [SMALL_STATE(7561)] = 181535, - [SMALL_STATE(7562)] = 181558, - [SMALL_STATE(7563)] = 181589, - [SMALL_STATE(7564)] = 181620, - [SMALL_STATE(7565)] = 181653, - [SMALL_STATE(7566)] = 181684, - [SMALL_STATE(7567)] = 181715, - [SMALL_STATE(7568)] = 181748, - [SMALL_STATE(7569)] = 181779, - [SMALL_STATE(7570)] = 181812, - [SMALL_STATE(7571)] = 181845, - [SMALL_STATE(7572)] = 181876, - [SMALL_STATE(7573)] = 181909, - [SMALL_STATE(7574)] = 181942, - [SMALL_STATE(7575)] = 181975, - [SMALL_STATE(7576)] = 182008, - [SMALL_STATE(7577)] = 182041, - [SMALL_STATE(7578)] = 182064, - [SMALL_STATE(7579)] = 182095, - [SMALL_STATE(7580)] = 182128, - [SMALL_STATE(7581)] = 182159, - [SMALL_STATE(7582)] = 182190, - [SMALL_STATE(7583)] = 182223, - [SMALL_STATE(7584)] = 182256, - [SMALL_STATE(7585)] = 182287, - [SMALL_STATE(7586)] = 182318, - [SMALL_STATE(7587)] = 182351, - [SMALL_STATE(7588)] = 182382, - [SMALL_STATE(7589)] = 182415, - [SMALL_STATE(7590)] = 182448, - [SMALL_STATE(7591)] = 182481, - [SMALL_STATE(7592)] = 182514, - [SMALL_STATE(7593)] = 182547, - [SMALL_STATE(7594)] = 182580, - [SMALL_STATE(7595)] = 182613, - [SMALL_STATE(7596)] = 182646, - [SMALL_STATE(7597)] = 182677, - [SMALL_STATE(7598)] = 182710, - [SMALL_STATE(7599)] = 182743, - [SMALL_STATE(7600)] = 182776, - [SMALL_STATE(7601)] = 182809, - [SMALL_STATE(7602)] = 182842, - [SMALL_STATE(7603)] = 182875, - [SMALL_STATE(7604)] = 182908, - [SMALL_STATE(7605)] = 182939, - [SMALL_STATE(7606)] = 182972, - [SMALL_STATE(7607)] = 183005, - [SMALL_STATE(7608)] = 183028, - [SMALL_STATE(7609)] = 183059, - [SMALL_STATE(7610)] = 183092, - [SMALL_STATE(7611)] = 183123, - [SMALL_STATE(7612)] = 183154, - [SMALL_STATE(7613)] = 183185, - [SMALL_STATE(7614)] = 183218, - [SMALL_STATE(7615)] = 183249, - [SMALL_STATE(7616)] = 183282, - [SMALL_STATE(7617)] = 183315, - [SMALL_STATE(7618)] = 183348, - [SMALL_STATE(7619)] = 183381, - [SMALL_STATE(7620)] = 183414, - [SMALL_STATE(7621)] = 183445, - [SMALL_STATE(7622)] = 183476, - [SMALL_STATE(7623)] = 183509, - [SMALL_STATE(7624)] = 183542, - [SMALL_STATE(7625)] = 183575, - [SMALL_STATE(7626)] = 183606, - [SMALL_STATE(7627)] = 183637, - [SMALL_STATE(7628)] = 183668, - [SMALL_STATE(7629)] = 183701, - [SMALL_STATE(7630)] = 183734, - [SMALL_STATE(7631)] = 183767, - [SMALL_STATE(7632)] = 183798, - [SMALL_STATE(7633)] = 183831, - [SMALL_STATE(7634)] = 183854, - [SMALL_STATE(7635)] = 183887, - [SMALL_STATE(7636)] = 183920, - [SMALL_STATE(7637)] = 183953, - [SMALL_STATE(7638)] = 183984, - [SMALL_STATE(7639)] = 184015, - [SMALL_STATE(7640)] = 184046, - [SMALL_STATE(7641)] = 184079, - [SMALL_STATE(7642)] = 184110, - [SMALL_STATE(7643)] = 184141, - [SMALL_STATE(7644)] = 184172, - [SMALL_STATE(7645)] = 184203, - [SMALL_STATE(7646)] = 184234, - [SMALL_STATE(7647)] = 184267, - [SMALL_STATE(7648)] = 184300, - [SMALL_STATE(7649)] = 184333, - [SMALL_STATE(7650)] = 184366, - [SMALL_STATE(7651)] = 184399, - [SMALL_STATE(7652)] = 184430, - [SMALL_STATE(7653)] = 184463, - [SMALL_STATE(7654)] = 184496, - [SMALL_STATE(7655)] = 184527, - [SMALL_STATE(7656)] = 184560, - [SMALL_STATE(7657)] = 184593, - [SMALL_STATE(7658)] = 184626, - [SMALL_STATE(7659)] = 184659, - [SMALL_STATE(7660)] = 184692, - [SMALL_STATE(7661)] = 184725, - [SMALL_STATE(7662)] = 184758, - [SMALL_STATE(7663)] = 184787, - [SMALL_STATE(7664)] = 184820, - [SMALL_STATE(7665)] = 184853, - [SMALL_STATE(7666)] = 184886, - [SMALL_STATE(7667)] = 184917, - [SMALL_STATE(7668)] = 184948, - [SMALL_STATE(7669)] = 184981, - [SMALL_STATE(7670)] = 185014, - [SMALL_STATE(7671)] = 185047, - [SMALL_STATE(7672)] = 185078, - [SMALL_STATE(7673)] = 185111, - [SMALL_STATE(7674)] = 185144, - [SMALL_STATE(7675)] = 185177, - [SMALL_STATE(7676)] = 185210, - [SMALL_STATE(7677)] = 185243, - [SMALL_STATE(7678)] = 185274, - [SMALL_STATE(7679)] = 185305, - [SMALL_STATE(7680)] = 185338, - [SMALL_STATE(7681)] = 185371, - [SMALL_STATE(7682)] = 185404, - [SMALL_STATE(7683)] = 185437, - [SMALL_STATE(7684)] = 185468, - [SMALL_STATE(7685)] = 185501, - [SMALL_STATE(7686)] = 185532, - [SMALL_STATE(7687)] = 185565, - [SMALL_STATE(7688)] = 185596, - [SMALL_STATE(7689)] = 185629, - [SMALL_STATE(7690)] = 185662, - [SMALL_STATE(7691)] = 185695, - [SMALL_STATE(7692)] = 185728, - [SMALL_STATE(7693)] = 185761, - [SMALL_STATE(7694)] = 185794, - [SMALL_STATE(7695)] = 185825, - [SMALL_STATE(7696)] = 185858, - [SMALL_STATE(7697)] = 185891, - [SMALL_STATE(7698)] = 185922, - [SMALL_STATE(7699)] = 185955, - [SMALL_STATE(7700)] = 185986, - [SMALL_STATE(7701)] = 186019, - [SMALL_STATE(7702)] = 186050, - [SMALL_STATE(7703)] = 186081, - [SMALL_STATE(7704)] = 186114, - [SMALL_STATE(7705)] = 186147, - [SMALL_STATE(7706)] = 186178, - [SMALL_STATE(7707)] = 186209, - [SMALL_STATE(7708)] = 186240, - [SMALL_STATE(7709)] = 186271, - [SMALL_STATE(7710)] = 186304, - [SMALL_STATE(7711)] = 186335, - [SMALL_STATE(7712)] = 186368, - [SMALL_STATE(7713)] = 186399, - [SMALL_STATE(7714)] = 186430, - [SMALL_STATE(7715)] = 186463, - [SMALL_STATE(7716)] = 186496, - [SMALL_STATE(7717)] = 186527, - [SMALL_STATE(7718)] = 186560, - [SMALL_STATE(7719)] = 186593, - [SMALL_STATE(7720)] = 186624, - [SMALL_STATE(7721)] = 186655, - [SMALL_STATE(7722)] = 186688, - [SMALL_STATE(7723)] = 186719, - [SMALL_STATE(7724)] = 186752, - [SMALL_STATE(7725)] = 186785, - [SMALL_STATE(7726)] = 186818, - [SMALL_STATE(7727)] = 186851, - [SMALL_STATE(7728)] = 186882, - [SMALL_STATE(7729)] = 186915, - [SMALL_STATE(7730)] = 186948, - [SMALL_STATE(7731)] = 186979, - [SMALL_STATE(7732)] = 187012, - [SMALL_STATE(7733)] = 187043, - [SMALL_STATE(7734)] = 187076, - [SMALL_STATE(7735)] = 187099, - [SMALL_STATE(7736)] = 187130, - [SMALL_STATE(7737)] = 187163, - [SMALL_STATE(7738)] = 187194, - [SMALL_STATE(7739)] = 187227, - [SMALL_STATE(7740)] = 187250, - [SMALL_STATE(7741)] = 187273, - [SMALL_STATE(7742)] = 187306, - [SMALL_STATE(7743)] = 187337, - [SMALL_STATE(7744)] = 187370, - [SMALL_STATE(7745)] = 187403, - [SMALL_STATE(7746)] = 187426, - [SMALL_STATE(7747)] = 187459, - [SMALL_STATE(7748)] = 187490, - [SMALL_STATE(7749)] = 187521, - [SMALL_STATE(7750)] = 187552, - [SMALL_STATE(7751)] = 187585, - [SMALL_STATE(7752)] = 187618, - [SMALL_STATE(7753)] = 187649, - [SMALL_STATE(7754)] = 187682, - [SMALL_STATE(7755)] = 187715, - [SMALL_STATE(7756)] = 187748, - [SMALL_STATE(7757)] = 187781, - [SMALL_STATE(7758)] = 187812, - [SMALL_STATE(7759)] = 187835, - [SMALL_STATE(7760)] = 187868, - [SMALL_STATE(7761)] = 187899, - [SMALL_STATE(7762)] = 187930, - [SMALL_STATE(7763)] = 187963, - [SMALL_STATE(7764)] = 187996, - [SMALL_STATE(7765)] = 188027, - [SMALL_STATE(7766)] = 188050, - [SMALL_STATE(7767)] = 188081, - [SMALL_STATE(7768)] = 188114, - [SMALL_STATE(7769)] = 188145, - [SMALL_STATE(7770)] = 188176, - [SMALL_STATE(7771)] = 188207, - [SMALL_STATE(7772)] = 188240, - [SMALL_STATE(7773)] = 188271, - [SMALL_STATE(7774)] = 188302, - [SMALL_STATE(7775)] = 188333, - [SMALL_STATE(7776)] = 188366, - [SMALL_STATE(7777)] = 188399, - [SMALL_STATE(7778)] = 188421, - [SMALL_STATE(7779)] = 188443, - [SMALL_STATE(7780)] = 188465, - [SMALL_STATE(7781)] = 188487, - [SMALL_STATE(7782)] = 188509, - [SMALL_STATE(7783)] = 188531, - [SMALL_STATE(7784)] = 188553, - [SMALL_STATE(7785)] = 188575, - [SMALL_STATE(7786)] = 188597, - [SMALL_STATE(7787)] = 188619, - [SMALL_STATE(7788)] = 188647, - [SMALL_STATE(7789)] = 188673, - [SMALL_STATE(7790)] = 188695, - [SMALL_STATE(7791)] = 188717, - [SMALL_STATE(7792)] = 188739, - [SMALL_STATE(7793)] = 188761, - [SMALL_STATE(7794)] = 188787, - [SMALL_STATE(7795)] = 188809, - [SMALL_STATE(7796)] = 188831, - [SMALL_STATE(7797)] = 188853, - [SMALL_STATE(7798)] = 188875, - [SMALL_STATE(7799)] = 188897, - [SMALL_STATE(7800)] = 188923, - [SMALL_STATE(7801)] = 188945, - [SMALL_STATE(7802)] = 188967, - [SMALL_STATE(7803)] = 188993, - [SMALL_STATE(7804)] = 189015, - [SMALL_STATE(7805)] = 189042, - [SMALL_STATE(7806)] = 189069, - [SMALL_STATE(7807)] = 189096, - [SMALL_STATE(7808)] = 189123, - [SMALL_STATE(7809)] = 189150, - [SMALL_STATE(7810)] = 189177, - [SMALL_STATE(7811)] = 189204, - [SMALL_STATE(7812)] = 189229, - [SMALL_STATE(7813)] = 189254, - [SMALL_STATE(7814)] = 189281, - [SMALL_STATE(7815)] = 189308, - [SMALL_STATE(7816)] = 189335, - [SMALL_STATE(7817)] = 189362, - [SMALL_STATE(7818)] = 189389, - [SMALL_STATE(7819)] = 189416, - [SMALL_STATE(7820)] = 189443, - [SMALL_STATE(7821)] = 189470, - [SMALL_STATE(7822)] = 189495, - [SMALL_STATE(7823)] = 189522, - [SMALL_STATE(7824)] = 189547, - [SMALL_STATE(7825)] = 189574, - [SMALL_STATE(7826)] = 189601, - [SMALL_STATE(7827)] = 189626, - [SMALL_STATE(7828)] = 189653, - [SMALL_STATE(7829)] = 189678, - [SMALL_STATE(7830)] = 189703, - [SMALL_STATE(7831)] = 189730, - [SMALL_STATE(7832)] = 189757, - [SMALL_STATE(7833)] = 189784, - [SMALL_STATE(7834)] = 189809, - [SMALL_STATE(7835)] = 189836, - [SMALL_STATE(7836)] = 189863, - [SMALL_STATE(7837)] = 189890, - [SMALL_STATE(7838)] = 189915, - [SMALL_STATE(7839)] = 189942, - [SMALL_STATE(7840)] = 189969, - [SMALL_STATE(7841)] = 189994, - [SMALL_STATE(7842)] = 190021, - [SMALL_STATE(7843)] = 190048, - [SMALL_STATE(7844)] = 190075, - [SMALL_STATE(7845)] = 190102, - [SMALL_STATE(7846)] = 190127, - [SMALL_STATE(7847)] = 190154, - [SMALL_STATE(7848)] = 190179, - [SMALL_STATE(7849)] = 190206, - [SMALL_STATE(7850)] = 190233, - [SMALL_STATE(7851)] = 190258, - [SMALL_STATE(7852)] = 190285, - [SMALL_STATE(7853)] = 190312, - [SMALL_STATE(7854)] = 190337, - [SMALL_STATE(7855)] = 190362, - [SMALL_STATE(7856)] = 190389, - [SMALL_STATE(7857)] = 190416, - [SMALL_STATE(7858)] = 190443, - [SMALL_STATE(7859)] = 190470, - [SMALL_STATE(7860)] = 190497, - [SMALL_STATE(7861)] = 190524, - [SMALL_STATE(7862)] = 190551, - [SMALL_STATE(7863)] = 190578, - [SMALL_STATE(7864)] = 190601, - [SMALL_STATE(7865)] = 190628, - [SMALL_STATE(7866)] = 190655, - [SMALL_STATE(7867)] = 190682, - [SMALL_STATE(7868)] = 190707, - [SMALL_STATE(7869)] = 190732, - [SMALL_STATE(7870)] = 190759, - [SMALL_STATE(7871)] = 190786, - [SMALL_STATE(7872)] = 190813, - [SMALL_STATE(7873)] = 190840, - [SMALL_STATE(7874)] = 190867, - [SMALL_STATE(7875)] = 190894, - [SMALL_STATE(7876)] = 190921, - [SMALL_STATE(7877)] = 190948, - [SMALL_STATE(7878)] = 190975, - [SMALL_STATE(7879)] = 191002, - [SMALL_STATE(7880)] = 191029, - [SMALL_STATE(7881)] = 191056, - [SMALL_STATE(7882)] = 191083, - [SMALL_STATE(7883)] = 191106, - [SMALL_STATE(7884)] = 191133, - [SMALL_STATE(7885)] = 191160, - [SMALL_STATE(7886)] = 191197, - [SMALL_STATE(7887)] = 191224, - [SMALL_STATE(7888)] = 191251, - [SMALL_STATE(7889)] = 191278, - [SMALL_STATE(7890)] = 191305, - [SMALL_STATE(7891)] = 191330, - [SMALL_STATE(7892)] = 191357, - [SMALL_STATE(7893)] = 191384, - [SMALL_STATE(7894)] = 191411, - [SMALL_STATE(7895)] = 191438, - [SMALL_STATE(7896)] = 191465, - [SMALL_STATE(7897)] = 191492, - [SMALL_STATE(7898)] = 191519, - [SMALL_STATE(7899)] = 191546, - [SMALL_STATE(7900)] = 191573, - [SMALL_STATE(7901)] = 191600, - [SMALL_STATE(7902)] = 191627, - [SMALL_STATE(7903)] = 191654, - [SMALL_STATE(7904)] = 191681, - [SMALL_STATE(7905)] = 191708, - [SMALL_STATE(7906)] = 191735, - [SMALL_STATE(7907)] = 191762, - [SMALL_STATE(7908)] = 191789, - [SMALL_STATE(7909)] = 191816, - [SMALL_STATE(7910)] = 191841, - [SMALL_STATE(7911)] = 191866, - [SMALL_STATE(7912)] = 191893, - [SMALL_STATE(7913)] = 191920, - [SMALL_STATE(7914)] = 191945, - [SMALL_STATE(7915)] = 191972, - [SMALL_STATE(7916)] = 191999, - [SMALL_STATE(7917)] = 192026, - [SMALL_STATE(7918)] = 192053, - [SMALL_STATE(7919)] = 192080, - [SMALL_STATE(7920)] = 192107, - [SMALL_STATE(7921)] = 192134, - [SMALL_STATE(7922)] = 192161, - [SMALL_STATE(7923)] = 192188, - [SMALL_STATE(7924)] = 192215, - [SMALL_STATE(7925)] = 192242, - [SMALL_STATE(7926)] = 192269, - [SMALL_STATE(7927)] = 192296, - [SMALL_STATE(7928)] = 192323, - [SMALL_STATE(7929)] = 192350, - [SMALL_STATE(7930)] = 192375, - [SMALL_STATE(7931)] = 192402, - [SMALL_STATE(7932)] = 192427, - [SMALL_STATE(7933)] = 192454, - [SMALL_STATE(7934)] = 192481, - [SMALL_STATE(7935)] = 192508, - [SMALL_STATE(7936)] = 192535, - [SMALL_STATE(7937)] = 192562, - [SMALL_STATE(7938)] = 192589, - [SMALL_STATE(7939)] = 192616, - [SMALL_STATE(7940)] = 192643, - [SMALL_STATE(7941)] = 192668, - [SMALL_STATE(7942)] = 192695, - [SMALL_STATE(7943)] = 192722, - [SMALL_STATE(7944)] = 192749, - [SMALL_STATE(7945)] = 192776, - [SMALL_STATE(7946)] = 192803, - [SMALL_STATE(7947)] = 192830, - [SMALL_STATE(7948)] = 192857, - [SMALL_STATE(7949)] = 192882, - [SMALL_STATE(7950)] = 192909, - [SMALL_STATE(7951)] = 192936, - [SMALL_STATE(7952)] = 192963, - [SMALL_STATE(7953)] = 192986, - [SMALL_STATE(7954)] = 193013, - [SMALL_STATE(7955)] = 193040, - [SMALL_STATE(7956)] = 193067, - [SMALL_STATE(7957)] = 193094, - [SMALL_STATE(7958)] = 193121, - [SMALL_STATE(7959)] = 193148, - [SMALL_STATE(7960)] = 193175, - [SMALL_STATE(7961)] = 193202, - [SMALL_STATE(7962)] = 193223, - [SMALL_STATE(7963)] = 193246, - [SMALL_STATE(7964)] = 193270, - [SMALL_STATE(7965)] = 193294, - [SMALL_STATE(7966)] = 193328, - [SMALL_STATE(7967)] = 193352, - [SMALL_STATE(7968)] = 193376, - [SMALL_STATE(7969)] = 193400, - [SMALL_STATE(7970)] = 193424, - [SMALL_STATE(7971)] = 193448, - [SMALL_STATE(7972)] = 193472, - [SMALL_STATE(7973)] = 193496, - [SMALL_STATE(7974)] = 193520, - [SMALL_STATE(7975)] = 193544, - [SMALL_STATE(7976)] = 193568, - [SMALL_STATE(7977)] = 193592, - [SMALL_STATE(7978)] = 193616, - [SMALL_STATE(7979)] = 193640, - [SMALL_STATE(7980)] = 193664, - [SMALL_STATE(7981)] = 193688, - [SMALL_STATE(7982)] = 193712, - [SMALL_STATE(7983)] = 193736, - [SMALL_STATE(7984)] = 193760, - [SMALL_STATE(7985)] = 193784, - [SMALL_STATE(7986)] = 193808, - [SMALL_STATE(7987)] = 193832, - [SMALL_STATE(7988)] = 193856, - [SMALL_STATE(7989)] = 193878, - [SMALL_STATE(7990)] = 193902, - [SMALL_STATE(7991)] = 193926, - [SMALL_STATE(7992)] = 193950, - [SMALL_STATE(7993)] = 193974, - [SMALL_STATE(7994)] = 193998, - [SMALL_STATE(7995)] = 194022, - [SMALL_STATE(7996)] = 194046, - [SMALL_STATE(7997)] = 194070, - [SMALL_STATE(7998)] = 194094, - [SMALL_STATE(7999)] = 194118, - [SMALL_STATE(8000)] = 194142, - [SMALL_STATE(8001)] = 194166, - [SMALL_STATE(8002)] = 194190, - [SMALL_STATE(8003)] = 194214, - [SMALL_STATE(8004)] = 194238, - [SMALL_STATE(8005)] = 194262, - [SMALL_STATE(8006)] = 194296, - [SMALL_STATE(8007)] = 194320, - [SMALL_STATE(8008)] = 194344, - [SMALL_STATE(8009)] = 194368, - [SMALL_STATE(8010)] = 194392, - [SMALL_STATE(8011)] = 194416, - [SMALL_STATE(8012)] = 194440, - [SMALL_STATE(8013)] = 194464, - [SMALL_STATE(8014)] = 194488, - [SMALL_STATE(8015)] = 194522, - [SMALL_STATE(8016)] = 194546, - [SMALL_STATE(8017)] = 194570, - [SMALL_STATE(8018)] = 194594, - [SMALL_STATE(8019)] = 194618, - [SMALL_STATE(8020)] = 194640, - [SMALL_STATE(8021)] = 194664, - [SMALL_STATE(8022)] = 194688, - [SMALL_STATE(8023)] = 194710, - [SMALL_STATE(8024)] = 194734, - [SMALL_STATE(8025)] = 194758, - [SMALL_STATE(8026)] = 194782, - [SMALL_STATE(8027)] = 194806, - [SMALL_STATE(8028)] = 194830, - [SMALL_STATE(8029)] = 194854, - [SMALL_STATE(8030)] = 194878, - [SMALL_STATE(8031)] = 194902, - [SMALL_STATE(8032)] = 194926, - [SMALL_STATE(8033)] = 194950, - [SMALL_STATE(8034)] = 194974, - [SMALL_STATE(8035)] = 194998, - [SMALL_STATE(8036)] = 195022, - [SMALL_STATE(8037)] = 195046, - [SMALL_STATE(8038)] = 195070, - [SMALL_STATE(8039)] = 195094, - [SMALL_STATE(8040)] = 195118, - [SMALL_STATE(8041)] = 195142, - [SMALL_STATE(8042)] = 195166, - [SMALL_STATE(8043)] = 195190, - [SMALL_STATE(8044)] = 195214, - [SMALL_STATE(8045)] = 195238, - [SMALL_STATE(8046)] = 195262, - [SMALL_STATE(8047)] = 195286, - [SMALL_STATE(8048)] = 195310, - [SMALL_STATE(8049)] = 195334, - [SMALL_STATE(8050)] = 195358, - [SMALL_STATE(8051)] = 195382, - [SMALL_STATE(8052)] = 195406, - [SMALL_STATE(8053)] = 195430, - [SMALL_STATE(8054)] = 195454, - [SMALL_STATE(8055)] = 195478, - [SMALL_STATE(8056)] = 195502, - [SMALL_STATE(8057)] = 195526, - [SMALL_STATE(8058)] = 195550, - [SMALL_STATE(8059)] = 195574, - [SMALL_STATE(8060)] = 195598, - [SMALL_STATE(8061)] = 195622, - [SMALL_STATE(8062)] = 195644, - [SMALL_STATE(8063)] = 195668, - [SMALL_STATE(8064)] = 195692, - [SMALL_STATE(8065)] = 195716, - [SMALL_STATE(8066)] = 195740, - [SMALL_STATE(8067)] = 195764, - [SMALL_STATE(8068)] = 195788, - [SMALL_STATE(8069)] = 195812, - [SMALL_STATE(8070)] = 195836, - [SMALL_STATE(8071)] = 195860, - [SMALL_STATE(8072)] = 195882, - [SMALL_STATE(8073)] = 195906, - [SMALL_STATE(8074)] = 195930, - [SMALL_STATE(8075)] = 195954, - [SMALL_STATE(8076)] = 195978, - [SMALL_STATE(8077)] = 196002, - [SMALL_STATE(8078)] = 196026, - [SMALL_STATE(8079)] = 196050, - [SMALL_STATE(8080)] = 196074, - [SMALL_STATE(8081)] = 196098, - [SMALL_STATE(8082)] = 196122, - [SMALL_STATE(8083)] = 196146, - [SMALL_STATE(8084)] = 196170, - [SMALL_STATE(8085)] = 196194, - [SMALL_STATE(8086)] = 196218, - [SMALL_STATE(8087)] = 196242, - [SMALL_STATE(8088)] = 196266, - [SMALL_STATE(8089)] = 196290, - [SMALL_STATE(8090)] = 196314, - [SMALL_STATE(8091)] = 196338, - [SMALL_STATE(8092)] = 196362, - [SMALL_STATE(8093)] = 196386, - [SMALL_STATE(8094)] = 196410, - [SMALL_STATE(8095)] = 196434, - [SMALL_STATE(8096)] = 196458, - [SMALL_STATE(8097)] = 196482, - [SMALL_STATE(8098)] = 196506, - [SMALL_STATE(8099)] = 196526, - [SMALL_STATE(8100)] = 196550, - [SMALL_STATE(8101)] = 196574, - [SMALL_STATE(8102)] = 196598, - [SMALL_STATE(8103)] = 196622, - [SMALL_STATE(8104)] = 196646, - [SMALL_STATE(8105)] = 196670, - [SMALL_STATE(8106)] = 196694, - [SMALL_STATE(8107)] = 196718, - [SMALL_STATE(8108)] = 196742, - [SMALL_STATE(8109)] = 196766, - [SMALL_STATE(8110)] = 196790, - [SMALL_STATE(8111)] = 196814, - [SMALL_STATE(8112)] = 196838, - [SMALL_STATE(8113)] = 196862, - [SMALL_STATE(8114)] = 196886, - [SMALL_STATE(8115)] = 196910, - [SMALL_STATE(8116)] = 196934, - [SMALL_STATE(8117)] = 196958, - [SMALL_STATE(8118)] = 196982, - [SMALL_STATE(8119)] = 197006, - [SMALL_STATE(8120)] = 197030, - [SMALL_STATE(8121)] = 197054, - [SMALL_STATE(8122)] = 197078, - [SMALL_STATE(8123)] = 197102, - [SMALL_STATE(8124)] = 197126, - [SMALL_STATE(8125)] = 197150, - [SMALL_STATE(8126)] = 197174, - [SMALL_STATE(8127)] = 197198, - [SMALL_STATE(8128)] = 197222, - [SMALL_STATE(8129)] = 197246, - [SMALL_STATE(8130)] = 197270, - [SMALL_STATE(8131)] = 197294, - [SMALL_STATE(8132)] = 197318, - [SMALL_STATE(8133)] = 197342, - [SMALL_STATE(8134)] = 197366, - [SMALL_STATE(8135)] = 197390, - [SMALL_STATE(8136)] = 197414, - [SMALL_STATE(8137)] = 197438, - [SMALL_STATE(8138)] = 197472, - [SMALL_STATE(8139)] = 197496, - [SMALL_STATE(8140)] = 197520, - [SMALL_STATE(8141)] = 197544, - [SMALL_STATE(8142)] = 197568, - [SMALL_STATE(8143)] = 197592, - [SMALL_STATE(8144)] = 197616, - [SMALL_STATE(8145)] = 197640, - [SMALL_STATE(8146)] = 197664, - [SMALL_STATE(8147)] = 197688, - [SMALL_STATE(8148)] = 197712, - [SMALL_STATE(8149)] = 197736, - [SMALL_STATE(8150)] = 197760, - [SMALL_STATE(8151)] = 197784, - [SMALL_STATE(8152)] = 197808, - [SMALL_STATE(8153)] = 197832, - [SMALL_STATE(8154)] = 197856, - [SMALL_STATE(8155)] = 197880, - [SMALL_STATE(8156)] = 197904, - [SMALL_STATE(8157)] = 197928, - [SMALL_STATE(8158)] = 197952, - [SMALL_STATE(8159)] = 197976, - [SMALL_STATE(8160)] = 198000, - [SMALL_STATE(8161)] = 198024, - [SMALL_STATE(8162)] = 198048, - [SMALL_STATE(8163)] = 198072, - [SMALL_STATE(8164)] = 198096, - [SMALL_STATE(8165)] = 198120, - [SMALL_STATE(8166)] = 198144, - [SMALL_STATE(8167)] = 198168, - [SMALL_STATE(8168)] = 198192, - [SMALL_STATE(8169)] = 198216, - [SMALL_STATE(8170)] = 198240, - [SMALL_STATE(8171)] = 198264, - [SMALL_STATE(8172)] = 198288, - [SMALL_STATE(8173)] = 198312, - [SMALL_STATE(8174)] = 198336, - [SMALL_STATE(8175)] = 198360, - [SMALL_STATE(8176)] = 198384, - [SMALL_STATE(8177)] = 198408, - [SMALL_STATE(8178)] = 198432, - [SMALL_STATE(8179)] = 198456, - [SMALL_STATE(8180)] = 198480, - [SMALL_STATE(8181)] = 198504, - [SMALL_STATE(8182)] = 198528, - [SMALL_STATE(8183)] = 198552, - [SMALL_STATE(8184)] = 198570, - [SMALL_STATE(8185)] = 198594, - [SMALL_STATE(8186)] = 198618, - [SMALL_STATE(8187)] = 198642, - [SMALL_STATE(8188)] = 198666, - [SMALL_STATE(8189)] = 198690, - [SMALL_STATE(8190)] = 198714, - [SMALL_STATE(8191)] = 198738, - [SMALL_STATE(8192)] = 198762, - [SMALL_STATE(8193)] = 198786, - [SMALL_STATE(8194)] = 198810, - [SMALL_STATE(8195)] = 198834, - [SMALL_STATE(8196)] = 198854, - [SMALL_STATE(8197)] = 198878, - [SMALL_STATE(8198)] = 198902, - [SMALL_STATE(8199)] = 198926, - [SMALL_STATE(8200)] = 198950, - [SMALL_STATE(8201)] = 198974, - [SMALL_STATE(8202)] = 198996, - [SMALL_STATE(8203)] = 199020, - [SMALL_STATE(8204)] = 199044, - [SMALL_STATE(8205)] = 199068, - [SMALL_STATE(8206)] = 199092, - [SMALL_STATE(8207)] = 199116, - [SMALL_STATE(8208)] = 199140, - [SMALL_STATE(8209)] = 199164, - [SMALL_STATE(8210)] = 199198, - [SMALL_STATE(8211)] = 199222, - [SMALL_STATE(8212)] = 199246, - [SMALL_STATE(8213)] = 199280, - [SMALL_STATE(8214)] = 199304, - [SMALL_STATE(8215)] = 199328, - [SMALL_STATE(8216)] = 199352, - [SMALL_STATE(8217)] = 199376, - [SMALL_STATE(8218)] = 199400, - [SMALL_STATE(8219)] = 199424, - [SMALL_STATE(8220)] = 199448, - [SMALL_STATE(8221)] = 199472, - [SMALL_STATE(8222)] = 199489, - [SMALL_STATE(8223)] = 199506, - [SMALL_STATE(8224)] = 199537, - [SMALL_STATE(8225)] = 199568, - [SMALL_STATE(8226)] = 199599, - [SMALL_STATE(8227)] = 199618, - [SMALL_STATE(8228)] = 199649, - [SMALL_STATE(8229)] = 199680, - [SMALL_STATE(8230)] = 199711, - [SMALL_STATE(8231)] = 199728, - [SMALL_STATE(8232)] = 199749, - [SMALL_STATE(8233)] = 199780, - [SMALL_STATE(8234)] = 199811, - [SMALL_STATE(8235)] = 199842, - [SMALL_STATE(8236)] = 199859, - [SMALL_STATE(8237)] = 199890, - [SMALL_STATE(8238)] = 199907, - [SMALL_STATE(8239)] = 199938, - [SMALL_STATE(8240)] = 199969, - [SMALL_STATE(8241)] = 200000, - [SMALL_STATE(8242)] = 200031, - [SMALL_STATE(8243)] = 200048, - [SMALL_STATE(8244)] = 200079, - [SMALL_STATE(8245)] = 200110, - [SMALL_STATE(8246)] = 200141, - [SMALL_STATE(8247)] = 200158, - [SMALL_STATE(8248)] = 200175, - [SMALL_STATE(8249)] = 200206, - [SMALL_STATE(8250)] = 200237, - [SMALL_STATE(8251)] = 200268, - [SMALL_STATE(8252)] = 200289, - [SMALL_STATE(8253)] = 200320, - [SMALL_STATE(8254)] = 200351, - [SMALL_STATE(8255)] = 200382, - [SMALL_STATE(8256)] = 200413, - [SMALL_STATE(8257)] = 200444, - [SMALL_STATE(8258)] = 200475, - [SMALL_STATE(8259)] = 200506, - [SMALL_STATE(8260)] = 200524, - [SMALL_STATE(8261)] = 200542, - [SMALL_STATE(8262)] = 200558, - [SMALL_STATE(8263)] = 200588, - [SMALL_STATE(8264)] = 200606, - [SMALL_STATE(8265)] = 200636, - [SMALL_STATE(8266)] = 200666, - [SMALL_STATE(8267)] = 200696, - [SMALL_STATE(8268)] = 200726, - [SMALL_STATE(8269)] = 200744, - [SMALL_STATE(8270)] = 200764, - [SMALL_STATE(8271)] = 200789, - [SMALL_STATE(8272)] = 200814, - [SMALL_STATE(8273)] = 200843, - [SMALL_STATE(8274)] = 200872, - [SMALL_STATE(8275)] = 200897, - [SMALL_STATE(8276)] = 200918, - [SMALL_STATE(8277)] = 200945, - [SMALL_STATE(8278)] = 200966, - [SMALL_STATE(8279)] = 200985, - [SMALL_STATE(8280)] = 201004, - [SMALL_STATE(8281)] = 201031, - [SMALL_STATE(8282)] = 201048, - [SMALL_STATE(8283)] = 201077, - [SMALL_STATE(8284)] = 201104, - [SMALL_STATE(8285)] = 201131, - [SMALL_STATE(8286)] = 201154, - [SMALL_STATE(8287)] = 201183, - [SMALL_STATE(8288)] = 201212, - [SMALL_STATE(8289)] = 201239, - [SMALL_STATE(8290)] = 201264, - [SMALL_STATE(8291)] = 201289, - [SMALL_STATE(8292)] = 201314, - [SMALL_STATE(8293)] = 201331, - [SMALL_STATE(8294)] = 201347, - [SMALL_STATE(8295)] = 201371, - [SMALL_STATE(8296)] = 201387, - [SMALL_STATE(8297)] = 201403, - [SMALL_STATE(8298)] = 201423, - [SMALL_STATE(8299)] = 201439, - [SMALL_STATE(8300)] = 201461, - [SMALL_STATE(8301)] = 201477, - [SMALL_STATE(8302)] = 201503, - [SMALL_STATE(8303)] = 201519, - [SMALL_STATE(8304)] = 201535, - [SMALL_STATE(8305)] = 201551, - [SMALL_STATE(8306)] = 201575, - [SMALL_STATE(8307)] = 201595, - [SMALL_STATE(8308)] = 201619, - [SMALL_STATE(8309)] = 201635, - [SMALL_STATE(8310)] = 201651, - [SMALL_STATE(8311)] = 201675, - [SMALL_STATE(8312)] = 201701, - [SMALL_STATE(8313)] = 201715, - [SMALL_STATE(8314)] = 201731, - [SMALL_STATE(8315)] = 201747, - [SMALL_STATE(8316)] = 201763, - [SMALL_STATE(8317)] = 201789, - [SMALL_STATE(8318)] = 201813, - [SMALL_STATE(8319)] = 201829, - [SMALL_STATE(8320)] = 201845, - [SMALL_STATE(8321)] = 201859, - [SMALL_STATE(8322)] = 201883, - [SMALL_STATE(8323)] = 201899, - [SMALL_STATE(8324)] = 201923, - [SMALL_STATE(8325)] = 201939, - [SMALL_STATE(8326)] = 201955, - [SMALL_STATE(8327)] = 201981, - [SMALL_STATE(8328)] = 201997, - [SMALL_STATE(8329)] = 202011, - [SMALL_STATE(8330)] = 202035, - [SMALL_STATE(8331)] = 202051, - [SMALL_STATE(8332)] = 202065, - [SMALL_STATE(8333)] = 202081, - [SMALL_STATE(8334)] = 202097, - [SMALL_STATE(8335)] = 202123, - [SMALL_STATE(8336)] = 202139, - [SMALL_STATE(8337)] = 202155, - [SMALL_STATE(8338)] = 202177, - [SMALL_STATE(8339)] = 202198, - [SMALL_STATE(8340)] = 202219, - [SMALL_STATE(8341)] = 202240, - [SMALL_STATE(8342)] = 202257, - [SMALL_STATE(8343)] = 202280, - [SMALL_STATE(8344)] = 202303, - [SMALL_STATE(8345)] = 202322, - [SMALL_STATE(8346)] = 202343, - [SMALL_STATE(8347)] = 202366, - [SMALL_STATE(8348)] = 202387, - [SMALL_STATE(8349)] = 202408, - [SMALL_STATE(8350)] = 202429, - [SMALL_STATE(8351)] = 202442, - [SMALL_STATE(8352)] = 202465, - [SMALL_STATE(8353)] = 202486, - [SMALL_STATE(8354)] = 202507, - [SMALL_STATE(8355)] = 202528, - [SMALL_STATE(8356)] = 202545, - [SMALL_STATE(8357)] = 202566, - [SMALL_STATE(8358)] = 202587, - [SMALL_STATE(8359)] = 202608, - [SMALL_STATE(8360)] = 202625, - [SMALL_STATE(8361)] = 202646, - [SMALL_STATE(8362)] = 202661, - [SMALL_STATE(8363)] = 202682, - [SMALL_STATE(8364)] = 202699, - [SMALL_STATE(8365)] = 202720, - [SMALL_STATE(8366)] = 202741, - [SMALL_STATE(8367)] = 202762, - [SMALL_STATE(8368)] = 202783, - [SMALL_STATE(8369)] = 202800, - [SMALL_STATE(8370)] = 202821, - [SMALL_STATE(8371)] = 202842, - [SMALL_STATE(8372)] = 202855, - [SMALL_STATE(8373)] = 202868, - [SMALL_STATE(8374)] = 202889, - [SMALL_STATE(8375)] = 202906, - [SMALL_STATE(8376)] = 202919, - [SMALL_STATE(8377)] = 202940, - [SMALL_STATE(8378)] = 202961, - [SMALL_STATE(8379)] = 202982, - [SMALL_STATE(8380)] = 202997, - [SMALL_STATE(8381)] = 203016, - [SMALL_STATE(8382)] = 203037, - [SMALL_STATE(8383)] = 203058, - [SMALL_STATE(8384)] = 203075, - [SMALL_STATE(8385)] = 203098, - [SMALL_STATE(8386)] = 203121, - [SMALL_STATE(8387)] = 203142, - [SMALL_STATE(8388)] = 203163, - [SMALL_STATE(8389)] = 203186, - [SMALL_STATE(8390)] = 203209, - [SMALL_STATE(8391)] = 203230, - [SMALL_STATE(8392)] = 203251, - [SMALL_STATE(8393)] = 203264, - [SMALL_STATE(8394)] = 203285, - [SMALL_STATE(8395)] = 203305, - [SMALL_STATE(8396)] = 203317, - [SMALL_STATE(8397)] = 203339, - [SMALL_STATE(8398)] = 203355, - [SMALL_STATE(8399)] = 203375, - [SMALL_STATE(8400)] = 203395, - [SMALL_STATE(8401)] = 203415, - [SMALL_STATE(8402)] = 203435, - [SMALL_STATE(8403)] = 203455, - [SMALL_STATE(8404)] = 203475, - [SMALL_STATE(8405)] = 203495, - [SMALL_STATE(8406)] = 203515, - [SMALL_STATE(8407)] = 203535, - [SMALL_STATE(8408)] = 203555, - [SMALL_STATE(8409)] = 203575, - [SMALL_STATE(8410)] = 203595, - [SMALL_STATE(8411)] = 203615, - [SMALL_STATE(8412)] = 203635, - [SMALL_STATE(8413)] = 203655, - [SMALL_STATE(8414)] = 203675, - [SMALL_STATE(8415)] = 203687, - [SMALL_STATE(8416)] = 203707, - [SMALL_STATE(8417)] = 203727, - [SMALL_STATE(8418)] = 203745, - [SMALL_STATE(8419)] = 203765, - [SMALL_STATE(8420)] = 203785, - [SMALL_STATE(8421)] = 203797, - [SMALL_STATE(8422)] = 203817, - [SMALL_STATE(8423)] = 203837, - [SMALL_STATE(8424)] = 203855, - [SMALL_STATE(8425)] = 203875, - [SMALL_STATE(8426)] = 203895, - [SMALL_STATE(8427)] = 203915, - [SMALL_STATE(8428)] = 203935, - [SMALL_STATE(8429)] = 203955, - [SMALL_STATE(8430)] = 203967, - [SMALL_STATE(8431)] = 203983, - [SMALL_STATE(8432)] = 204003, - [SMALL_STATE(8433)] = 204023, - [SMALL_STATE(8434)] = 204043, - [SMALL_STATE(8435)] = 204063, - [SMALL_STATE(8436)] = 204083, - [SMALL_STATE(8437)] = 204103, - [SMALL_STATE(8438)] = 204115, - [SMALL_STATE(8439)] = 204135, - [SMALL_STATE(8440)] = 204155, - [SMALL_STATE(8441)] = 204175, - [SMALL_STATE(8442)] = 204195, - [SMALL_STATE(8443)] = 204215, - [SMALL_STATE(8444)] = 204235, - [SMALL_STATE(8445)] = 204255, - [SMALL_STATE(8446)] = 204273, - [SMALL_STATE(8447)] = 204293, - [SMALL_STATE(8448)] = 204313, - [SMALL_STATE(8449)] = 204333, - [SMALL_STATE(8450)] = 204353, - [SMALL_STATE(8451)] = 204373, - [SMALL_STATE(8452)] = 204393, - [SMALL_STATE(8453)] = 204405, - [SMALL_STATE(8454)] = 204425, - [SMALL_STATE(8455)] = 204445, - [SMALL_STATE(8456)] = 204465, - [SMALL_STATE(8457)] = 204485, - [SMALL_STATE(8458)] = 204505, - [SMALL_STATE(8459)] = 204517, - [SMALL_STATE(8460)] = 204537, - [SMALL_STATE(8461)] = 204555, - [SMALL_STATE(8462)] = 204575, - [SMALL_STATE(8463)] = 204595, - [SMALL_STATE(8464)] = 204611, - [SMALL_STATE(8465)] = 204631, - [SMALL_STATE(8466)] = 204643, - [SMALL_STATE(8467)] = 204663, - [SMALL_STATE(8468)] = 204675, - [SMALL_STATE(8469)] = 204687, - [SMALL_STATE(8470)] = 204703, - [SMALL_STATE(8471)] = 204725, - [SMALL_STATE(8472)] = 204745, - [SMALL_STATE(8473)] = 204765, - [SMALL_STATE(8474)] = 204785, - [SMALL_STATE(8475)] = 204797, - [SMALL_STATE(8476)] = 204817, - [SMALL_STATE(8477)] = 204837, - [SMALL_STATE(8478)] = 204857, - [SMALL_STATE(8479)] = 204877, - [SMALL_STATE(8480)] = 204897, - [SMALL_STATE(8481)] = 204917, - [SMALL_STATE(8482)] = 204937, - [SMALL_STATE(8483)] = 204957, - [SMALL_STATE(8484)] = 204975, - [SMALL_STATE(8485)] = 204995, - [SMALL_STATE(8486)] = 205015, - [SMALL_STATE(8487)] = 205027, - [SMALL_STATE(8488)] = 205047, - [SMALL_STATE(8489)] = 205067, - [SMALL_STATE(8490)] = 205087, - [SMALL_STATE(8491)] = 205107, - [SMALL_STATE(8492)] = 205127, - [SMALL_STATE(8493)] = 205143, - [SMALL_STATE(8494)] = 205155, - [SMALL_STATE(8495)] = 205175, - [SMALL_STATE(8496)] = 205195, - [SMALL_STATE(8497)] = 205207, - [SMALL_STATE(8498)] = 205223, - [SMALL_STATE(8499)] = 205243, - [SMALL_STATE(8500)] = 205255, - [SMALL_STATE(8501)] = 205271, - [SMALL_STATE(8502)] = 205293, - [SMALL_STATE(8503)] = 205305, - [SMALL_STATE(8504)] = 205325, - [SMALL_STATE(8505)] = 205341, - [SMALL_STATE(8506)] = 205353, - [SMALL_STATE(8507)] = 205365, - [SMALL_STATE(8508)] = 205385, - [SMALL_STATE(8509)] = 205401, - [SMALL_STATE(8510)] = 205421, - [SMALL_STATE(8511)] = 205441, - [SMALL_STATE(8512)] = 205461, - [SMALL_STATE(8513)] = 205481, - [SMALL_STATE(8514)] = 205501, - [SMALL_STATE(8515)] = 205521, - [SMALL_STATE(8516)] = 205539, - [SMALL_STATE(8517)] = 205555, - [SMALL_STATE(8518)] = 205571, - [SMALL_STATE(8519)] = 205591, - [SMALL_STATE(8520)] = 205611, - [SMALL_STATE(8521)] = 205631, - [SMALL_STATE(8522)] = 205651, - [SMALL_STATE(8523)] = 205671, - [SMALL_STATE(8524)] = 205691, - [SMALL_STATE(8525)] = 205711, - [SMALL_STATE(8526)] = 205731, - [SMALL_STATE(8527)] = 205753, - [SMALL_STATE(8528)] = 205773, - [SMALL_STATE(8529)] = 205793, - [SMALL_STATE(8530)] = 205813, - [SMALL_STATE(8531)] = 205827, - [SMALL_STATE(8532)] = 205847, - [SMALL_STATE(8533)] = 205867, - [SMALL_STATE(8534)] = 205887, - [SMALL_STATE(8535)] = 205907, - [SMALL_STATE(8536)] = 205927, - [SMALL_STATE(8537)] = 205949, - [SMALL_STATE(8538)] = 205969, - [SMALL_STATE(8539)] = 205989, - [SMALL_STATE(8540)] = 206009, - [SMALL_STATE(8541)] = 206029, - [SMALL_STATE(8542)] = 206049, - [SMALL_STATE(8543)] = 206069, - [SMALL_STATE(8544)] = 206083, - [SMALL_STATE(8545)] = 206103, - [SMALL_STATE(8546)] = 206123, - [SMALL_STATE(8547)] = 206143, - [SMALL_STATE(8548)] = 206163, - [SMALL_STATE(8549)] = 206183, - [SMALL_STATE(8550)] = 206203, - [SMALL_STATE(8551)] = 206215, - [SMALL_STATE(8552)] = 206235, - [SMALL_STATE(8553)] = 206255, - [SMALL_STATE(8554)] = 206271, - [SMALL_STATE(8555)] = 206291, - [SMALL_STATE(8556)] = 206311, - [SMALL_STATE(8557)] = 206331, - [SMALL_STATE(8558)] = 206351, - [SMALL_STATE(8559)] = 206371, - [SMALL_STATE(8560)] = 206391, - [SMALL_STATE(8561)] = 206411, - [SMALL_STATE(8562)] = 206431, - [SMALL_STATE(8563)] = 206449, - [SMALL_STATE(8564)] = 206469, - [SMALL_STATE(8565)] = 206489, - [SMALL_STATE(8566)] = 206511, - [SMALL_STATE(8567)] = 206531, - [SMALL_STATE(8568)] = 206551, - [SMALL_STATE(8569)] = 206569, - [SMALL_STATE(8570)] = 206586, - [SMALL_STATE(8571)] = 206603, - [SMALL_STATE(8572)] = 206620, - [SMALL_STATE(8573)] = 206637, - [SMALL_STATE(8574)] = 206654, - [SMALL_STATE(8575)] = 206671, - [SMALL_STATE(8576)] = 206688, - [SMALL_STATE(8577)] = 206705, - [SMALL_STATE(8578)] = 206722, - [SMALL_STATE(8579)] = 206737, - [SMALL_STATE(8580)] = 206752, - [SMALL_STATE(8581)] = 206767, - [SMALL_STATE(8582)] = 206784, - [SMALL_STATE(8583)] = 206797, - [SMALL_STATE(8584)] = 206814, - [SMALL_STATE(8585)] = 206831, - [SMALL_STATE(8586)] = 206846, - [SMALL_STATE(8587)] = 206863, - [SMALL_STATE(8588)] = 206880, - [SMALL_STATE(8589)] = 206897, - [SMALL_STATE(8590)] = 206914, - [SMALL_STATE(8591)] = 206931, - [SMALL_STATE(8592)] = 206948, - [SMALL_STATE(8593)] = 206965, - [SMALL_STATE(8594)] = 206982, - [SMALL_STATE(8595)] = 206997, - [SMALL_STATE(8596)] = 207014, - [SMALL_STATE(8597)] = 207031, - [SMALL_STATE(8598)] = 207048, - [SMALL_STATE(8599)] = 207065, - [SMALL_STATE(8600)] = 207082, - [SMALL_STATE(8601)] = 207099, - [SMALL_STATE(8602)] = 207114, - [SMALL_STATE(8603)] = 207131, - [SMALL_STATE(8604)] = 207148, - [SMALL_STATE(8605)] = 207165, - [SMALL_STATE(8606)] = 207182, - [SMALL_STATE(8607)] = 207199, - [SMALL_STATE(8608)] = 207216, - [SMALL_STATE(8609)] = 207233, - [SMALL_STATE(8610)] = 207250, - [SMALL_STATE(8611)] = 207267, - [SMALL_STATE(8612)] = 207284, - [SMALL_STATE(8613)] = 207295, - [SMALL_STATE(8614)] = 207312, - [SMALL_STATE(8615)] = 207329, - [SMALL_STATE(8616)] = 207346, - [SMALL_STATE(8617)] = 207363, - [SMALL_STATE(8618)] = 207380, - [SMALL_STATE(8619)] = 207397, - [SMALL_STATE(8620)] = 207414, - [SMALL_STATE(8621)] = 207431, - [SMALL_STATE(8622)] = 207444, - [SMALL_STATE(8623)] = 207461, - [SMALL_STATE(8624)] = 207472, - [SMALL_STATE(8625)] = 207487, - [SMALL_STATE(8626)] = 207498, - [SMALL_STATE(8627)] = 207515, - [SMALL_STATE(8628)] = 207530, - [SMALL_STATE(8629)] = 207547, - [SMALL_STATE(8630)] = 207564, - [SMALL_STATE(8631)] = 207581, - [SMALL_STATE(8632)] = 207598, - [SMALL_STATE(8633)] = 207611, - [SMALL_STATE(8634)] = 207628, - [SMALL_STATE(8635)] = 207643, - [SMALL_STATE(8636)] = 207660, - [SMALL_STATE(8637)] = 207675, - [SMALL_STATE(8638)] = 207690, - [SMALL_STATE(8639)] = 207707, - [SMALL_STATE(8640)] = 207724, - [SMALL_STATE(8641)] = 207741, - [SMALL_STATE(8642)] = 207758, - [SMALL_STATE(8643)] = 207775, - [SMALL_STATE(8644)] = 207792, - [SMALL_STATE(8645)] = 207809, - [SMALL_STATE(8646)] = 207826, - [SMALL_STATE(8647)] = 207843, - [SMALL_STATE(8648)] = 207860, - [SMALL_STATE(8649)] = 207877, - [SMALL_STATE(8650)] = 207894, - [SMALL_STATE(8651)] = 207911, - [SMALL_STATE(8652)] = 207928, - [SMALL_STATE(8653)] = 207945, - [SMALL_STATE(8654)] = 207962, - [SMALL_STATE(8655)] = 207979, - [SMALL_STATE(8656)] = 207996, - [SMALL_STATE(8657)] = 208009, - [SMALL_STATE(8658)] = 208026, - [SMALL_STATE(8659)] = 208043, - [SMALL_STATE(8660)] = 208060, - [SMALL_STATE(8661)] = 208077, - [SMALL_STATE(8662)] = 208094, - [SMALL_STATE(8663)] = 208111, - [SMALL_STATE(8664)] = 208128, - [SMALL_STATE(8665)] = 208143, - [SMALL_STATE(8666)] = 208160, - [SMALL_STATE(8667)] = 208177, - [SMALL_STATE(8668)] = 208192, - [SMALL_STATE(8669)] = 208207, - [SMALL_STATE(8670)] = 208218, - [SMALL_STATE(8671)] = 208235, - [SMALL_STATE(8672)] = 208246, - [SMALL_STATE(8673)] = 208257, - [SMALL_STATE(8674)] = 208274, - [SMALL_STATE(8675)] = 208289, - [SMALL_STATE(8676)] = 208306, - [SMALL_STATE(8677)] = 208323, - [SMALL_STATE(8678)] = 208338, - [SMALL_STATE(8679)] = 208355, - [SMALL_STATE(8680)] = 208370, - [SMALL_STATE(8681)] = 208387, - [SMALL_STATE(8682)] = 208402, - [SMALL_STATE(8683)] = 208419, - [SMALL_STATE(8684)] = 208436, - [SMALL_STATE(8685)] = 208453, - [SMALL_STATE(8686)] = 208470, - [SMALL_STATE(8687)] = 208487, - [SMALL_STATE(8688)] = 208504, - [SMALL_STATE(8689)] = 208521, - [SMALL_STATE(8690)] = 208538, - [SMALL_STATE(8691)] = 208555, - [SMALL_STATE(8692)] = 208572, - [SMALL_STATE(8693)] = 208589, - [SMALL_STATE(8694)] = 208606, - [SMALL_STATE(8695)] = 208621, - [SMALL_STATE(8696)] = 208638, - [SMALL_STATE(8697)] = 208653, - [SMALL_STATE(8698)] = 208670, - [SMALL_STATE(8699)] = 208687, - [SMALL_STATE(8700)] = 208702, - [SMALL_STATE(8701)] = 208719, - [SMALL_STATE(8702)] = 208734, - [SMALL_STATE(8703)] = 208751, - [SMALL_STATE(8704)] = 208762, - [SMALL_STATE(8705)] = 208775, - [SMALL_STATE(8706)] = 208790, - [SMALL_STATE(8707)] = 208807, - [SMALL_STATE(8708)] = 208818, - [SMALL_STATE(8709)] = 208835, - [SMALL_STATE(8710)] = 208850, - [SMALL_STATE(8711)] = 208867, - [SMALL_STATE(8712)] = 208884, - [SMALL_STATE(8713)] = 208901, - [SMALL_STATE(8714)] = 208916, - [SMALL_STATE(8715)] = 208933, - [SMALL_STATE(8716)] = 208950, - [SMALL_STATE(8717)] = 208967, - [SMALL_STATE(8718)] = 208984, - [SMALL_STATE(8719)] = 209001, - [SMALL_STATE(8720)] = 209016, - [SMALL_STATE(8721)] = 209031, - [SMALL_STATE(8722)] = 209046, - [SMALL_STATE(8723)] = 209063, - [SMALL_STATE(8724)] = 209080, - [SMALL_STATE(8725)] = 209091, - [SMALL_STATE(8726)] = 209102, - [SMALL_STATE(8727)] = 209119, - [SMALL_STATE(8728)] = 209136, - [SMALL_STATE(8729)] = 209153, - [SMALL_STATE(8730)] = 209164, - [SMALL_STATE(8731)] = 209178, - [SMALL_STATE(8732)] = 209192, - [SMALL_STATE(8733)] = 209206, - [SMALL_STATE(8734)] = 209220, - [SMALL_STATE(8735)] = 209234, - [SMALL_STATE(8736)] = 209246, - [SMALL_STATE(8737)] = 209258, - [SMALL_STATE(8738)] = 209272, - [SMALL_STATE(8739)] = 209286, - [SMALL_STATE(8740)] = 209300, - [SMALL_STATE(8741)] = 209314, - [SMALL_STATE(8742)] = 209328, - [SMALL_STATE(8743)] = 209342, - [SMALL_STATE(8744)] = 209352, - [SMALL_STATE(8745)] = 209362, - [SMALL_STATE(8746)] = 209376, - [SMALL_STATE(8747)] = 209390, - [SMALL_STATE(8748)] = 209404, - [SMALL_STATE(8749)] = 209418, - [SMALL_STATE(8750)] = 209432, - [SMALL_STATE(8751)] = 209446, - [SMALL_STATE(8752)] = 209460, - [SMALL_STATE(8753)] = 209474, - [SMALL_STATE(8754)] = 209486, - [SMALL_STATE(8755)] = 209500, - [SMALL_STATE(8756)] = 209512, - [SMALL_STATE(8757)] = 209526, - [SMALL_STATE(8758)] = 209538, - [SMALL_STATE(8759)] = 209552, - [SMALL_STATE(8760)] = 209566, - [SMALL_STATE(8761)] = 209580, - [SMALL_STATE(8762)] = 209594, - [SMALL_STATE(8763)] = 209604, - [SMALL_STATE(8764)] = 209616, - [SMALL_STATE(8765)] = 209628, - [SMALL_STATE(8766)] = 209642, - [SMALL_STATE(8767)] = 209656, - [SMALL_STATE(8768)] = 209670, - [SMALL_STATE(8769)] = 209684, - [SMALL_STATE(8770)] = 209696, - [SMALL_STATE(8771)] = 209710, - [SMALL_STATE(8772)] = 209724, - [SMALL_STATE(8773)] = 209738, - [SMALL_STATE(8774)] = 209748, - [SMALL_STATE(8775)] = 209762, - [SMALL_STATE(8776)] = 209776, - [SMALL_STATE(8777)] = 209790, - [SMALL_STATE(8778)] = 209804, - [SMALL_STATE(8779)] = 209816, - [SMALL_STATE(8780)] = 209830, - [SMALL_STATE(8781)] = 209844, - [SMALL_STATE(8782)] = 209858, - [SMALL_STATE(8783)] = 209872, - [SMALL_STATE(8784)] = 209886, - [SMALL_STATE(8785)] = 209900, - [SMALL_STATE(8786)] = 209910, - [SMALL_STATE(8787)] = 209924, - [SMALL_STATE(8788)] = 209938, - [SMALL_STATE(8789)] = 209952, - [SMALL_STATE(8790)] = 209966, - [SMALL_STATE(8791)] = 209980, - [SMALL_STATE(8792)] = 209990, - [SMALL_STATE(8793)] = 210004, - [SMALL_STATE(8794)] = 210018, - [SMALL_STATE(8795)] = 210032, - [SMALL_STATE(8796)] = 210046, - [SMALL_STATE(8797)] = 210060, - [SMALL_STATE(8798)] = 210074, - [SMALL_STATE(8799)] = 210088, - [SMALL_STATE(8800)] = 210102, - [SMALL_STATE(8801)] = 210116, - [SMALL_STATE(8802)] = 210130, - [SMALL_STATE(8803)] = 210144, - [SMALL_STATE(8804)] = 210158, - [SMALL_STATE(8805)] = 210172, - [SMALL_STATE(8806)] = 210186, - [SMALL_STATE(8807)] = 210200, - [SMALL_STATE(8808)] = 210210, - [SMALL_STATE(8809)] = 210224, - [SMALL_STATE(8810)] = 210238, - [SMALL_STATE(8811)] = 210252, - [SMALL_STATE(8812)] = 210266, - [SMALL_STATE(8813)] = 210280, - [SMALL_STATE(8814)] = 210294, - [SMALL_STATE(8815)] = 210308, - [SMALL_STATE(8816)] = 210322, - [SMALL_STATE(8817)] = 210336, - [SMALL_STATE(8818)] = 210350, - [SMALL_STATE(8819)] = 210364, - [SMALL_STATE(8820)] = 210378, - [SMALL_STATE(8821)] = 210390, - [SMALL_STATE(8822)] = 210404, - [SMALL_STATE(8823)] = 210416, - [SMALL_STATE(8824)] = 210430, - [SMALL_STATE(8825)] = 210444, - [SMALL_STATE(8826)] = 210458, - [SMALL_STATE(8827)] = 210472, - [SMALL_STATE(8828)] = 210486, - [SMALL_STATE(8829)] = 210500, - [SMALL_STATE(8830)] = 210514, - [SMALL_STATE(8831)] = 210528, - [SMALL_STATE(8832)] = 210542, - [SMALL_STATE(8833)] = 210556, - [SMALL_STATE(8834)] = 210570, - [SMALL_STATE(8835)] = 210584, - [SMALL_STATE(8836)] = 210598, - [SMALL_STATE(8837)] = 210612, - [SMALL_STATE(8838)] = 210626, - [SMALL_STATE(8839)] = 210638, - [SMALL_STATE(8840)] = 210652, - [SMALL_STATE(8841)] = 210666, - [SMALL_STATE(8842)] = 210680, - [SMALL_STATE(8843)] = 210694, - [SMALL_STATE(8844)] = 210708, - [SMALL_STATE(8845)] = 210722, - [SMALL_STATE(8846)] = 210736, - [SMALL_STATE(8847)] = 210750, - [SMALL_STATE(8848)] = 210764, - [SMALL_STATE(8849)] = 210778, - [SMALL_STATE(8850)] = 210792, - [SMALL_STATE(8851)] = 210806, - [SMALL_STATE(8852)] = 210820, - [SMALL_STATE(8853)] = 210834, - [SMALL_STATE(8854)] = 210848, - [SMALL_STATE(8855)] = 210862, - [SMALL_STATE(8856)] = 210876, - [SMALL_STATE(8857)] = 210890, - [SMALL_STATE(8858)] = 210904, - [SMALL_STATE(8859)] = 210918, - [SMALL_STATE(8860)] = 210932, - [SMALL_STATE(8861)] = 210946, - [SMALL_STATE(8862)] = 210960, - [SMALL_STATE(8863)] = 210974, - [SMALL_STATE(8864)] = 210988, - [SMALL_STATE(8865)] = 210998, - [SMALL_STATE(8866)] = 211012, - [SMALL_STATE(8867)] = 211026, - [SMALL_STATE(8868)] = 211040, - [SMALL_STATE(8869)] = 211054, - [SMALL_STATE(8870)] = 211068, - [SMALL_STATE(8871)] = 211082, - [SMALL_STATE(8872)] = 211096, - [SMALL_STATE(8873)] = 211110, - [SMALL_STATE(8874)] = 211124, - [SMALL_STATE(8875)] = 211138, - [SMALL_STATE(8876)] = 211152, - [SMALL_STATE(8877)] = 211166, - [SMALL_STATE(8878)] = 211180, - [SMALL_STATE(8879)] = 211194, - [SMALL_STATE(8880)] = 211208, - [SMALL_STATE(8881)] = 211222, - [SMALL_STATE(8882)] = 211236, - [SMALL_STATE(8883)] = 211250, - [SMALL_STATE(8884)] = 211264, - [SMALL_STATE(8885)] = 211278, - [SMALL_STATE(8886)] = 211292, - [SMALL_STATE(8887)] = 211306, - [SMALL_STATE(8888)] = 211318, - [SMALL_STATE(8889)] = 211330, - [SMALL_STATE(8890)] = 211344, - [SMALL_STATE(8891)] = 211358, - [SMALL_STATE(8892)] = 211370, - [SMALL_STATE(8893)] = 211384, - [SMALL_STATE(8894)] = 211398, - [SMALL_STATE(8895)] = 211412, - [SMALL_STATE(8896)] = 211424, - [SMALL_STATE(8897)] = 211438, - [SMALL_STATE(8898)] = 211452, - [SMALL_STATE(8899)] = 211466, - [SMALL_STATE(8900)] = 211480, - [SMALL_STATE(8901)] = 211494, - [SMALL_STATE(8902)] = 211508, - [SMALL_STATE(8903)] = 211522, - [SMALL_STATE(8904)] = 211536, - [SMALL_STATE(8905)] = 211550, - [SMALL_STATE(8906)] = 211564, - [SMALL_STATE(8907)] = 211578, - [SMALL_STATE(8908)] = 211592, - [SMALL_STATE(8909)] = 211602, - [SMALL_STATE(8910)] = 211616, - [SMALL_STATE(8911)] = 211630, - [SMALL_STATE(8912)] = 211644, - [SMALL_STATE(8913)] = 211658, - [SMALL_STATE(8914)] = 211672, - [SMALL_STATE(8915)] = 211686, - [SMALL_STATE(8916)] = 211700, - [SMALL_STATE(8917)] = 211714, - [SMALL_STATE(8918)] = 211726, - [SMALL_STATE(8919)] = 211740, - [SMALL_STATE(8920)] = 211754, - [SMALL_STATE(8921)] = 211768, - [SMALL_STATE(8922)] = 211782, - [SMALL_STATE(8923)] = 211796, - [SMALL_STATE(8924)] = 211810, - [SMALL_STATE(8925)] = 211824, - [SMALL_STATE(8926)] = 211838, - [SMALL_STATE(8927)] = 211850, - [SMALL_STATE(8928)] = 211864, - [SMALL_STATE(8929)] = 211878, - [SMALL_STATE(8930)] = 211892, - [SMALL_STATE(8931)] = 211906, - [SMALL_STATE(8932)] = 211920, - [SMALL_STATE(8933)] = 211934, - [SMALL_STATE(8934)] = 211948, - [SMALL_STATE(8935)] = 211960, - [SMALL_STATE(8936)] = 211974, - [SMALL_STATE(8937)] = 211988, - [SMALL_STATE(8938)] = 212002, - [SMALL_STATE(8939)] = 212016, - [SMALL_STATE(8940)] = 212030, - [SMALL_STATE(8941)] = 212044, - [SMALL_STATE(8942)] = 212058, - [SMALL_STATE(8943)] = 212072, - [SMALL_STATE(8944)] = 212086, - [SMALL_STATE(8945)] = 212100, - [SMALL_STATE(8946)] = 212114, - [SMALL_STATE(8947)] = 212128, - [SMALL_STATE(8948)] = 212142, - [SMALL_STATE(8949)] = 212156, - [SMALL_STATE(8950)] = 212170, - [SMALL_STATE(8951)] = 212184, - [SMALL_STATE(8952)] = 212198, - [SMALL_STATE(8953)] = 212210, - [SMALL_STATE(8954)] = 212224, - [SMALL_STATE(8955)] = 212238, - [SMALL_STATE(8956)] = 212252, - [SMALL_STATE(8957)] = 212266, - [SMALL_STATE(8958)] = 212280, - [SMALL_STATE(8959)] = 212294, - [SMALL_STATE(8960)] = 212308, - [SMALL_STATE(8961)] = 212322, - [SMALL_STATE(8962)] = 212336, - [SMALL_STATE(8963)] = 212348, - [SMALL_STATE(8964)] = 212362, - [SMALL_STATE(8965)] = 212376, - [SMALL_STATE(8966)] = 212390, - [SMALL_STATE(8967)] = 212404, - [SMALL_STATE(8968)] = 212418, - [SMALL_STATE(8969)] = 212430, - [SMALL_STATE(8970)] = 212444, - [SMALL_STATE(8971)] = 212456, - [SMALL_STATE(8972)] = 212470, - [SMALL_STATE(8973)] = 212484, - [SMALL_STATE(8974)] = 212498, - [SMALL_STATE(8975)] = 212510, - [SMALL_STATE(8976)] = 212524, - [SMALL_STATE(8977)] = 212538, - [SMALL_STATE(8978)] = 212552, - [SMALL_STATE(8979)] = 212566, - [SMALL_STATE(8980)] = 212580, - [SMALL_STATE(8981)] = 212594, - [SMALL_STATE(8982)] = 212608, - [SMALL_STATE(8983)] = 212622, - [SMALL_STATE(8984)] = 212636, - [SMALL_STATE(8985)] = 212650, - [SMALL_STATE(8986)] = 212664, - [SMALL_STATE(8987)] = 212678, - [SMALL_STATE(8988)] = 212692, - [SMALL_STATE(8989)] = 212706, - [SMALL_STATE(8990)] = 212720, - [SMALL_STATE(8991)] = 212734, - [SMALL_STATE(8992)] = 212746, - [SMALL_STATE(8993)] = 212760, - [SMALL_STATE(8994)] = 212774, - [SMALL_STATE(8995)] = 212788, - [SMALL_STATE(8996)] = 212802, - [SMALL_STATE(8997)] = 212816, - [SMALL_STATE(8998)] = 212830, - [SMALL_STATE(8999)] = 212844, - [SMALL_STATE(9000)] = 212858, - [SMALL_STATE(9001)] = 212872, - [SMALL_STATE(9002)] = 212886, - [SMALL_STATE(9003)] = 212900, - [SMALL_STATE(9004)] = 212914, - [SMALL_STATE(9005)] = 212928, - [SMALL_STATE(9006)] = 212940, - [SMALL_STATE(9007)] = 212952, - [SMALL_STATE(9008)] = 212964, - [SMALL_STATE(9009)] = 212978, - [SMALL_STATE(9010)] = 212992, - [SMALL_STATE(9011)] = 213006, - [SMALL_STATE(9012)] = 213018, - [SMALL_STATE(9013)] = 213030, - [SMALL_STATE(9014)] = 213042, - [SMALL_STATE(9015)] = 213053, - [SMALL_STATE(9016)] = 213064, - [SMALL_STATE(9017)] = 213075, - [SMALL_STATE(9018)] = 213086, - [SMALL_STATE(9019)] = 213097, - [SMALL_STATE(9020)] = 213108, - [SMALL_STATE(9021)] = 213119, - [SMALL_STATE(9022)] = 213128, - [SMALL_STATE(9023)] = 213137, - [SMALL_STATE(9024)] = 213148, - [SMALL_STATE(9025)] = 213159, - [SMALL_STATE(9026)] = 213168, - [SMALL_STATE(9027)] = 213177, - [SMALL_STATE(9028)] = 213188, - [SMALL_STATE(9029)] = 213199, - [SMALL_STATE(9030)] = 213208, - [SMALL_STATE(9031)] = 213219, - [SMALL_STATE(9032)] = 213230, - [SMALL_STATE(9033)] = 213241, - [SMALL_STATE(9034)] = 213250, - [SMALL_STATE(9035)] = 213261, - [SMALL_STATE(9036)] = 213272, - [SMALL_STATE(9037)] = 213281, - [SMALL_STATE(9038)] = 213290, - [SMALL_STATE(9039)] = 213299, - [SMALL_STATE(9040)] = 213310, - [SMALL_STATE(9041)] = 213319, - [SMALL_STATE(9042)] = 213328, - [SMALL_STATE(9043)] = 213339, - [SMALL_STATE(9044)] = 213350, - [SMALL_STATE(9045)] = 213359, - [SMALL_STATE(9046)] = 213370, - [SMALL_STATE(9047)] = 213379, - [SMALL_STATE(9048)] = 213388, - [SMALL_STATE(9049)] = 213399, - [SMALL_STATE(9050)] = 213408, - [SMALL_STATE(9051)] = 213417, - [SMALL_STATE(9052)] = 213428, - [SMALL_STATE(9053)] = 213439, - [SMALL_STATE(9054)] = 213448, - [SMALL_STATE(9055)] = 213457, - [SMALL_STATE(9056)] = 213468, - [SMALL_STATE(9057)] = 213477, - [SMALL_STATE(9058)] = 213486, - [SMALL_STATE(9059)] = 213497, - [SMALL_STATE(9060)] = 213508, - [SMALL_STATE(9061)] = 213517, - [SMALL_STATE(9062)] = 213526, - [SMALL_STATE(9063)] = 213537, - [SMALL_STATE(9064)] = 213546, - [SMALL_STATE(9065)] = 213557, - [SMALL_STATE(9066)] = 213568, - [SMALL_STATE(9067)] = 213577, - [SMALL_STATE(9068)] = 213588, - [SMALL_STATE(9069)] = 213599, - [SMALL_STATE(9070)] = 213608, - [SMALL_STATE(9071)] = 213619, - [SMALL_STATE(9072)] = 213628, - [SMALL_STATE(9073)] = 213637, - [SMALL_STATE(9074)] = 213646, - [SMALL_STATE(9075)] = 213657, - [SMALL_STATE(9076)] = 213666, - [SMALL_STATE(9077)] = 213677, - [SMALL_STATE(9078)] = 213686, - [SMALL_STATE(9079)] = 213697, - [SMALL_STATE(9080)] = 213708, - [SMALL_STATE(9081)] = 213719, - [SMALL_STATE(9082)] = 213730, - [SMALL_STATE(9083)] = 213739, - [SMALL_STATE(9084)] = 213748, - [SMALL_STATE(9085)] = 213759, - [SMALL_STATE(9086)] = 213770, - [SMALL_STATE(9087)] = 213781, - [SMALL_STATE(9088)] = 213792, - [SMALL_STATE(9089)] = 213803, - [SMALL_STATE(9090)] = 213814, - [SMALL_STATE(9091)] = 213823, - [SMALL_STATE(9092)] = 213832, - [SMALL_STATE(9093)] = 213841, - [SMALL_STATE(9094)] = 213850, - [SMALL_STATE(9095)] = 213861, - [SMALL_STATE(9096)] = 213872, - [SMALL_STATE(9097)] = 213883, - [SMALL_STATE(9098)] = 213894, - [SMALL_STATE(9099)] = 213905, - [SMALL_STATE(9100)] = 213916, - [SMALL_STATE(9101)] = 213927, - [SMALL_STATE(9102)] = 213936, - [SMALL_STATE(9103)] = 213947, - [SMALL_STATE(9104)] = 213958, - [SMALL_STATE(9105)] = 213969, - [SMALL_STATE(9106)] = 213978, - [SMALL_STATE(9107)] = 213987, - [SMALL_STATE(9108)] = 213998, - [SMALL_STATE(9109)] = 214009, - [SMALL_STATE(9110)] = 214018, - [SMALL_STATE(9111)] = 214027, - [SMALL_STATE(9112)] = 214038, - [SMALL_STATE(9113)] = 214049, - [SMALL_STATE(9114)] = 214060, - [SMALL_STATE(9115)] = 214071, - [SMALL_STATE(9116)] = 214082, - [SMALL_STATE(9117)] = 214093, - [SMALL_STATE(9118)] = 214104, - [SMALL_STATE(9119)] = 214115, - [SMALL_STATE(9120)] = 214124, - [SMALL_STATE(9121)] = 214133, - [SMALL_STATE(9122)] = 214142, - [SMALL_STATE(9123)] = 214153, - [SMALL_STATE(9124)] = 214164, - [SMALL_STATE(9125)] = 214175, - [SMALL_STATE(9126)] = 214184, - [SMALL_STATE(9127)] = 214193, - [SMALL_STATE(9128)] = 214204, - [SMALL_STATE(9129)] = 214215, - [SMALL_STATE(9130)] = 214226, - [SMALL_STATE(9131)] = 214237, - [SMALL_STATE(9132)] = 214248, - [SMALL_STATE(9133)] = 214259, - [SMALL_STATE(9134)] = 214270, - [SMALL_STATE(9135)] = 214281, - [SMALL_STATE(9136)] = 214292, - [SMALL_STATE(9137)] = 214303, - [SMALL_STATE(9138)] = 214314, - [SMALL_STATE(9139)] = 214325, - [SMALL_STATE(9140)] = 214336, - [SMALL_STATE(9141)] = 214347, - [SMALL_STATE(9142)] = 214358, - [SMALL_STATE(9143)] = 214369, - [SMALL_STATE(9144)] = 214380, - [SMALL_STATE(9145)] = 214391, - [SMALL_STATE(9146)] = 214402, - [SMALL_STATE(9147)] = 214413, - [SMALL_STATE(9148)] = 214424, - [SMALL_STATE(9149)] = 214433, - [SMALL_STATE(9150)] = 214442, - [SMALL_STATE(9151)] = 214451, - [SMALL_STATE(9152)] = 214460, - [SMALL_STATE(9153)] = 214471, - [SMALL_STATE(9154)] = 214482, - [SMALL_STATE(9155)] = 214493, - [SMALL_STATE(9156)] = 214504, - [SMALL_STATE(9157)] = 214515, - [SMALL_STATE(9158)] = 214526, - [SMALL_STATE(9159)] = 214537, - [SMALL_STATE(9160)] = 214548, - [SMALL_STATE(9161)] = 214557, - [SMALL_STATE(9162)] = 214568, - [SMALL_STATE(9163)] = 214577, - [SMALL_STATE(9164)] = 214588, - [SMALL_STATE(9165)] = 214599, - [SMALL_STATE(9166)] = 214608, - [SMALL_STATE(9167)] = 214619, - [SMALL_STATE(9168)] = 214628, - [SMALL_STATE(9169)] = 214639, - [SMALL_STATE(9170)] = 214650, - [SMALL_STATE(9171)] = 214659, - [SMALL_STATE(9172)] = 214670, - [SMALL_STATE(9173)] = 214679, - [SMALL_STATE(9174)] = 214690, - [SMALL_STATE(9175)] = 214701, - [SMALL_STATE(9176)] = 214712, - [SMALL_STATE(9177)] = 214721, - [SMALL_STATE(9178)] = 214732, - [SMALL_STATE(9179)] = 214743, - [SMALL_STATE(9180)] = 214754, - [SMALL_STATE(9181)] = 214765, - [SMALL_STATE(9182)] = 214776, - [SMALL_STATE(9183)] = 214787, - [SMALL_STATE(9184)] = 214798, - [SMALL_STATE(9185)] = 214809, - [SMALL_STATE(9186)] = 214818, - [SMALL_STATE(9187)] = 214827, - [SMALL_STATE(9188)] = 214836, - [SMALL_STATE(9189)] = 214847, - [SMALL_STATE(9190)] = 214858, - [SMALL_STATE(9191)] = 214869, - [SMALL_STATE(9192)] = 214880, - [SMALL_STATE(9193)] = 214891, - [SMALL_STATE(9194)] = 214902, - [SMALL_STATE(9195)] = 214911, - [SMALL_STATE(9196)] = 214920, - [SMALL_STATE(9197)] = 214931, - [SMALL_STATE(9198)] = 214942, - [SMALL_STATE(9199)] = 214953, - [SMALL_STATE(9200)] = 214964, - [SMALL_STATE(9201)] = 214975, - [SMALL_STATE(9202)] = 214986, - [SMALL_STATE(9203)] = 214997, - [SMALL_STATE(9204)] = 215008, - [SMALL_STATE(9205)] = 215019, - [SMALL_STATE(9206)] = 215028, - [SMALL_STATE(9207)] = 215037, - [SMALL_STATE(9208)] = 215046, - [SMALL_STATE(9209)] = 215055, - [SMALL_STATE(9210)] = 215066, - [SMALL_STATE(9211)] = 215077, - [SMALL_STATE(9212)] = 215088, - [SMALL_STATE(9213)] = 215097, - [SMALL_STATE(9214)] = 215108, - [SMALL_STATE(9215)] = 215119, - [SMALL_STATE(9216)] = 215130, - [SMALL_STATE(9217)] = 215141, - [SMALL_STATE(9218)] = 215152, - [SMALL_STATE(9219)] = 215163, - [SMALL_STATE(9220)] = 215174, - [SMALL_STATE(9221)] = 215185, - [SMALL_STATE(9222)] = 215196, - [SMALL_STATE(9223)] = 215207, - [SMALL_STATE(9224)] = 215218, - [SMALL_STATE(9225)] = 215229, - [SMALL_STATE(9226)] = 215238, - [SMALL_STATE(9227)] = 215249, - [SMALL_STATE(9228)] = 215260, - [SMALL_STATE(9229)] = 215271, - [SMALL_STATE(9230)] = 215282, - [SMALL_STATE(9231)] = 215293, - [SMALL_STATE(9232)] = 215304, - [SMALL_STATE(9233)] = 215313, - [SMALL_STATE(9234)] = 215324, - [SMALL_STATE(9235)] = 215335, - [SMALL_STATE(9236)] = 215346, - [SMALL_STATE(9237)] = 215357, - [SMALL_STATE(9238)] = 215368, - [SMALL_STATE(9239)] = 215379, - [SMALL_STATE(9240)] = 215388, - [SMALL_STATE(9241)] = 215399, - [SMALL_STATE(9242)] = 215410, - [SMALL_STATE(9243)] = 215421, - [SMALL_STATE(9244)] = 215432, - [SMALL_STATE(9245)] = 215443, - [SMALL_STATE(9246)] = 215454, - [SMALL_STATE(9247)] = 215465, - [SMALL_STATE(9248)] = 215474, - [SMALL_STATE(9249)] = 215485, - [SMALL_STATE(9250)] = 215496, - [SMALL_STATE(9251)] = 215507, - [SMALL_STATE(9252)] = 215518, - [SMALL_STATE(9253)] = 215529, - [SMALL_STATE(9254)] = 215540, - [SMALL_STATE(9255)] = 215551, - [SMALL_STATE(9256)] = 215562, - [SMALL_STATE(9257)] = 215573, - [SMALL_STATE(9258)] = 215582, - [SMALL_STATE(9259)] = 215593, - [SMALL_STATE(9260)] = 215604, - [SMALL_STATE(9261)] = 215615, - [SMALL_STATE(9262)] = 215626, - [SMALL_STATE(9263)] = 215637, - [SMALL_STATE(9264)] = 215648, - [SMALL_STATE(9265)] = 215659, - [SMALL_STATE(9266)] = 215670, - [SMALL_STATE(9267)] = 215681, - [SMALL_STATE(9268)] = 215690, - [SMALL_STATE(9269)] = 215701, - [SMALL_STATE(9270)] = 215712, - [SMALL_STATE(9271)] = 215723, - [SMALL_STATE(9272)] = 215734, - [SMALL_STATE(9273)] = 215745, - [SMALL_STATE(9274)] = 215756, - [SMALL_STATE(9275)] = 215767, - [SMALL_STATE(9276)] = 215778, - [SMALL_STATE(9277)] = 215789, - [SMALL_STATE(9278)] = 215798, - [SMALL_STATE(9279)] = 215809, - [SMALL_STATE(9280)] = 215820, - [SMALL_STATE(9281)] = 215831, - [SMALL_STATE(9282)] = 215840, - [SMALL_STATE(9283)] = 215851, - [SMALL_STATE(9284)] = 215862, - [SMALL_STATE(9285)] = 215873, - [SMALL_STATE(9286)] = 215884, - [SMALL_STATE(9287)] = 215895, - [SMALL_STATE(9288)] = 215904, - [SMALL_STATE(9289)] = 215915, - [SMALL_STATE(9290)] = 215926, - [SMALL_STATE(9291)] = 215937, - [SMALL_STATE(9292)] = 215946, - [SMALL_STATE(9293)] = 215957, - [SMALL_STATE(9294)] = 215968, - [SMALL_STATE(9295)] = 215979, - [SMALL_STATE(9296)] = 215990, - [SMALL_STATE(9297)] = 216001, - [SMALL_STATE(9298)] = 216010, - [SMALL_STATE(9299)] = 216021, - [SMALL_STATE(9300)] = 216032, - [SMALL_STATE(9301)] = 216043, - [SMALL_STATE(9302)] = 216052, - [SMALL_STATE(9303)] = 216063, - [SMALL_STATE(9304)] = 216074, - [SMALL_STATE(9305)] = 216085, - [SMALL_STATE(9306)] = 216094, - [SMALL_STATE(9307)] = 216105, - [SMALL_STATE(9308)] = 216116, - [SMALL_STATE(9309)] = 216125, - [SMALL_STATE(9310)] = 216136, - [SMALL_STATE(9311)] = 216145, - [SMALL_STATE(9312)] = 216154, - [SMALL_STATE(9313)] = 216165, - [SMALL_STATE(9314)] = 216174, - [SMALL_STATE(9315)] = 216185, - [SMALL_STATE(9316)] = 216196, - [SMALL_STATE(9317)] = 216207, - [SMALL_STATE(9318)] = 216216, - [SMALL_STATE(9319)] = 216227, - [SMALL_STATE(9320)] = 216238, - [SMALL_STATE(9321)] = 216249, - [SMALL_STATE(9322)] = 216258, - [SMALL_STATE(9323)] = 216267, - [SMALL_STATE(9324)] = 216278, - [SMALL_STATE(9325)] = 216289, - [SMALL_STATE(9326)] = 216300, - [SMALL_STATE(9327)] = 216311, - [SMALL_STATE(9328)] = 216322, - [SMALL_STATE(9329)] = 216333, - [SMALL_STATE(9330)] = 216344, - [SMALL_STATE(9331)] = 216355, - [SMALL_STATE(9332)] = 216366, - [SMALL_STATE(9333)] = 216377, - [SMALL_STATE(9334)] = 216388, - [SMALL_STATE(9335)] = 216397, - [SMALL_STATE(9336)] = 216408, - [SMALL_STATE(9337)] = 216419, - [SMALL_STATE(9338)] = 216428, - [SMALL_STATE(9339)] = 216437, - [SMALL_STATE(9340)] = 216448, - [SMALL_STATE(9341)] = 216459, - [SMALL_STATE(9342)] = 216470, - [SMALL_STATE(9343)] = 216479, - [SMALL_STATE(9344)] = 216490, - [SMALL_STATE(9345)] = 216501, - [SMALL_STATE(9346)] = 216512, - [SMALL_STATE(9347)] = 216523, - [SMALL_STATE(9348)] = 216534, - [SMALL_STATE(9349)] = 216545, - [SMALL_STATE(9350)] = 216554, - [SMALL_STATE(9351)] = 216565, - [SMALL_STATE(9352)] = 216574, - [SMALL_STATE(9353)] = 216585, - [SMALL_STATE(9354)] = 216596, - [SMALL_STATE(9355)] = 216607, - [SMALL_STATE(9356)] = 216618, - [SMALL_STATE(9357)] = 216629, - [SMALL_STATE(9358)] = 216640, - [SMALL_STATE(9359)] = 216651, - [SMALL_STATE(9360)] = 216662, - [SMALL_STATE(9361)] = 216671, - [SMALL_STATE(9362)] = 216682, - [SMALL_STATE(9363)] = 216693, - [SMALL_STATE(9364)] = 216704, - [SMALL_STATE(9365)] = 216715, - [SMALL_STATE(9366)] = 216726, - [SMALL_STATE(9367)] = 216737, - [SMALL_STATE(9368)] = 216746, - [SMALL_STATE(9369)] = 216757, - [SMALL_STATE(9370)] = 216768, - [SMALL_STATE(9371)] = 216779, - [SMALL_STATE(9372)] = 216790, - [SMALL_STATE(9373)] = 216801, - [SMALL_STATE(9374)] = 216812, - [SMALL_STATE(9375)] = 216823, - [SMALL_STATE(9376)] = 216834, - [SMALL_STATE(9377)] = 216845, - [SMALL_STATE(9378)] = 216856, - [SMALL_STATE(9379)] = 216867, - [SMALL_STATE(9380)] = 216875, - [SMALL_STATE(9381)] = 216883, - [SMALL_STATE(9382)] = 216891, - [SMALL_STATE(9383)] = 216899, - [SMALL_STATE(9384)] = 216907, - [SMALL_STATE(9385)] = 216915, - [SMALL_STATE(9386)] = 216923, - [SMALL_STATE(9387)] = 216931, - [SMALL_STATE(9388)] = 216939, - [SMALL_STATE(9389)] = 216947, - [SMALL_STATE(9390)] = 216955, - [SMALL_STATE(9391)] = 216963, - [SMALL_STATE(9392)] = 216971, - [SMALL_STATE(9393)] = 216979, - [SMALL_STATE(9394)] = 216987, - [SMALL_STATE(9395)] = 216995, - [SMALL_STATE(9396)] = 217003, - [SMALL_STATE(9397)] = 217011, - [SMALL_STATE(9398)] = 217019, - [SMALL_STATE(9399)] = 217027, - [SMALL_STATE(9400)] = 217035, - [SMALL_STATE(9401)] = 217043, - [SMALL_STATE(9402)] = 217051, - [SMALL_STATE(9403)] = 217059, - [SMALL_STATE(9404)] = 217067, - [SMALL_STATE(9405)] = 217075, - [SMALL_STATE(9406)] = 217083, - [SMALL_STATE(9407)] = 217091, - [SMALL_STATE(9408)] = 217099, - [SMALL_STATE(9409)] = 217107, - [SMALL_STATE(9410)] = 217115, - [SMALL_STATE(9411)] = 217123, - [SMALL_STATE(9412)] = 217131, - [SMALL_STATE(9413)] = 217139, - [SMALL_STATE(9414)] = 217147, - [SMALL_STATE(9415)] = 217155, - [SMALL_STATE(9416)] = 217163, - [SMALL_STATE(9417)] = 217171, - [SMALL_STATE(9418)] = 217179, - [SMALL_STATE(9419)] = 217187, - [SMALL_STATE(9420)] = 217195, - [SMALL_STATE(9421)] = 217203, - [SMALL_STATE(9422)] = 217211, - [SMALL_STATE(9423)] = 217219, - [SMALL_STATE(9424)] = 217227, - [SMALL_STATE(9425)] = 217235, - [SMALL_STATE(9426)] = 217243, - [SMALL_STATE(9427)] = 217251, - [SMALL_STATE(9428)] = 217259, - [SMALL_STATE(9429)] = 217267, - [SMALL_STATE(9430)] = 217275, - [SMALL_STATE(9431)] = 217283, - [SMALL_STATE(9432)] = 217291, - [SMALL_STATE(9433)] = 217299, - [SMALL_STATE(9434)] = 217307, - [SMALL_STATE(9435)] = 217315, - [SMALL_STATE(9436)] = 217323, - [SMALL_STATE(9437)] = 217331, - [SMALL_STATE(9438)] = 217339, - [SMALL_STATE(9439)] = 217347, - [SMALL_STATE(9440)] = 217355, - [SMALL_STATE(9441)] = 217363, - [SMALL_STATE(9442)] = 217371, - [SMALL_STATE(9443)] = 217379, - [SMALL_STATE(9444)] = 217387, - [SMALL_STATE(9445)] = 217395, - [SMALL_STATE(9446)] = 217403, - [SMALL_STATE(9447)] = 217411, - [SMALL_STATE(9448)] = 217419, - [SMALL_STATE(9449)] = 217427, - [SMALL_STATE(9450)] = 217435, - [SMALL_STATE(9451)] = 217443, - [SMALL_STATE(9452)] = 217451, - [SMALL_STATE(9453)] = 217459, - [SMALL_STATE(9454)] = 217467, - [SMALL_STATE(9455)] = 217475, - [SMALL_STATE(9456)] = 217483, - [SMALL_STATE(9457)] = 217491, - [SMALL_STATE(9458)] = 217499, - [SMALL_STATE(9459)] = 217507, - [SMALL_STATE(9460)] = 217515, - [SMALL_STATE(9461)] = 217523, - [SMALL_STATE(9462)] = 217531, - [SMALL_STATE(9463)] = 217539, - [SMALL_STATE(9464)] = 217547, - [SMALL_STATE(9465)] = 217555, - [SMALL_STATE(9466)] = 217563, - [SMALL_STATE(9467)] = 217571, - [SMALL_STATE(9468)] = 217579, - [SMALL_STATE(9469)] = 217587, - [SMALL_STATE(9470)] = 217595, - [SMALL_STATE(9471)] = 217603, - [SMALL_STATE(9472)] = 217611, - [SMALL_STATE(9473)] = 217619, - [SMALL_STATE(9474)] = 217627, - [SMALL_STATE(9475)] = 217635, - [SMALL_STATE(9476)] = 217643, - [SMALL_STATE(9477)] = 217651, - [SMALL_STATE(9478)] = 217659, - [SMALL_STATE(9479)] = 217667, - [SMALL_STATE(9480)] = 217675, - [SMALL_STATE(9481)] = 217683, - [SMALL_STATE(9482)] = 217691, - [SMALL_STATE(9483)] = 217699, - [SMALL_STATE(9484)] = 217707, - [SMALL_STATE(9485)] = 217715, - [SMALL_STATE(9486)] = 217723, - [SMALL_STATE(9487)] = 217731, - [SMALL_STATE(9488)] = 217739, - [SMALL_STATE(9489)] = 217747, - [SMALL_STATE(9490)] = 217755, - [SMALL_STATE(9491)] = 217763, - [SMALL_STATE(9492)] = 217771, - [SMALL_STATE(9493)] = 217779, - [SMALL_STATE(9494)] = 217787, - [SMALL_STATE(9495)] = 217795, - [SMALL_STATE(9496)] = 217803, - [SMALL_STATE(9497)] = 217811, - [SMALL_STATE(9498)] = 217819, - [SMALL_STATE(9499)] = 217827, - [SMALL_STATE(9500)] = 217835, - [SMALL_STATE(9501)] = 217843, - [SMALL_STATE(9502)] = 217851, - [SMALL_STATE(9503)] = 217859, - [SMALL_STATE(9504)] = 217867, - [SMALL_STATE(9505)] = 217875, - [SMALL_STATE(9506)] = 217883, - [SMALL_STATE(9507)] = 217891, - [SMALL_STATE(9508)] = 217899, - [SMALL_STATE(9509)] = 217907, - [SMALL_STATE(9510)] = 217915, - [SMALL_STATE(9511)] = 217923, - [SMALL_STATE(9512)] = 217931, - [SMALL_STATE(9513)] = 217939, - [SMALL_STATE(9514)] = 217947, - [SMALL_STATE(9515)] = 217955, - [SMALL_STATE(9516)] = 217963, - [SMALL_STATE(9517)] = 217971, - [SMALL_STATE(9518)] = 217979, - [SMALL_STATE(9519)] = 217987, - [SMALL_STATE(9520)] = 217995, - [SMALL_STATE(9521)] = 218003, - [SMALL_STATE(9522)] = 218011, - [SMALL_STATE(9523)] = 218019, - [SMALL_STATE(9524)] = 218027, - [SMALL_STATE(9525)] = 218035, - [SMALL_STATE(9526)] = 218043, - [SMALL_STATE(9527)] = 218051, - [SMALL_STATE(9528)] = 218059, - [SMALL_STATE(9529)] = 218067, - [SMALL_STATE(9530)] = 218075, - [SMALL_STATE(9531)] = 218083, - [SMALL_STATE(9532)] = 218091, - [SMALL_STATE(9533)] = 218099, - [SMALL_STATE(9534)] = 218107, - [SMALL_STATE(9535)] = 218115, - [SMALL_STATE(9536)] = 218123, - [SMALL_STATE(9537)] = 218131, - [SMALL_STATE(9538)] = 218139, - [SMALL_STATE(9539)] = 218147, - [SMALL_STATE(9540)] = 218155, - [SMALL_STATE(9541)] = 218163, - [SMALL_STATE(9542)] = 218171, - [SMALL_STATE(9543)] = 218179, - [SMALL_STATE(9544)] = 218187, - [SMALL_STATE(9545)] = 218195, - [SMALL_STATE(9546)] = 218203, - [SMALL_STATE(9547)] = 218211, - [SMALL_STATE(9548)] = 218219, - [SMALL_STATE(9549)] = 218227, - [SMALL_STATE(9550)] = 218235, - [SMALL_STATE(9551)] = 218243, - [SMALL_STATE(9552)] = 218251, - [SMALL_STATE(9553)] = 218259, - [SMALL_STATE(9554)] = 218267, - [SMALL_STATE(9555)] = 218275, - [SMALL_STATE(9556)] = 218283, - [SMALL_STATE(9557)] = 218291, - [SMALL_STATE(9558)] = 218299, - [SMALL_STATE(9559)] = 218307, - [SMALL_STATE(9560)] = 218315, - [SMALL_STATE(9561)] = 218323, - [SMALL_STATE(9562)] = 218331, - [SMALL_STATE(9563)] = 218339, - [SMALL_STATE(9564)] = 218347, - [SMALL_STATE(9565)] = 218355, - [SMALL_STATE(9566)] = 218363, - [SMALL_STATE(9567)] = 218371, - [SMALL_STATE(9568)] = 218379, - [SMALL_STATE(9569)] = 218387, - [SMALL_STATE(9570)] = 218395, - [SMALL_STATE(9571)] = 218403, - [SMALL_STATE(9572)] = 218411, - [SMALL_STATE(9573)] = 218419, - [SMALL_STATE(9574)] = 218427, - [SMALL_STATE(9575)] = 218435, - [SMALL_STATE(9576)] = 218443, - [SMALL_STATE(9577)] = 218451, - [SMALL_STATE(9578)] = 218459, - [SMALL_STATE(9579)] = 218467, - [SMALL_STATE(9580)] = 218475, - [SMALL_STATE(9581)] = 218483, - [SMALL_STATE(9582)] = 218491, - [SMALL_STATE(9583)] = 218499, - [SMALL_STATE(9584)] = 218507, - [SMALL_STATE(9585)] = 218515, - [SMALL_STATE(9586)] = 218523, - [SMALL_STATE(9587)] = 218531, - [SMALL_STATE(9588)] = 218539, - [SMALL_STATE(9589)] = 218547, - [SMALL_STATE(9590)] = 218555, - [SMALL_STATE(9591)] = 218563, - [SMALL_STATE(9592)] = 218571, - [SMALL_STATE(9593)] = 218579, - [SMALL_STATE(9594)] = 218587, - [SMALL_STATE(9595)] = 218595, - [SMALL_STATE(9596)] = 218603, - [SMALL_STATE(9597)] = 218611, - [SMALL_STATE(9598)] = 218619, - [SMALL_STATE(9599)] = 218627, - [SMALL_STATE(9600)] = 218635, - [SMALL_STATE(9601)] = 218643, - [SMALL_STATE(9602)] = 218651, - [SMALL_STATE(9603)] = 218659, - [SMALL_STATE(9604)] = 218667, - [SMALL_STATE(9605)] = 218675, - [SMALL_STATE(9606)] = 218683, - [SMALL_STATE(9607)] = 218691, - [SMALL_STATE(9608)] = 218699, - [SMALL_STATE(9609)] = 218707, - [SMALL_STATE(9610)] = 218715, - [SMALL_STATE(9611)] = 218723, - [SMALL_STATE(9612)] = 218731, - [SMALL_STATE(9613)] = 218739, - [SMALL_STATE(9614)] = 218747, - [SMALL_STATE(9615)] = 218755, - [SMALL_STATE(9616)] = 218763, - [SMALL_STATE(9617)] = 218771, - [SMALL_STATE(9618)] = 218779, - [SMALL_STATE(9619)] = 218787, - [SMALL_STATE(9620)] = 218795, - [SMALL_STATE(9621)] = 218803, - [SMALL_STATE(9622)] = 218811, - [SMALL_STATE(9623)] = 218819, - [SMALL_STATE(9624)] = 218827, - [SMALL_STATE(9625)] = 218835, - [SMALL_STATE(9626)] = 218843, - [SMALL_STATE(9627)] = 218851, - [SMALL_STATE(9628)] = 218859, - [SMALL_STATE(9629)] = 218867, - [SMALL_STATE(9630)] = 218875, - [SMALL_STATE(9631)] = 218883, - [SMALL_STATE(9632)] = 218891, - [SMALL_STATE(9633)] = 218899, - [SMALL_STATE(9634)] = 218907, - [SMALL_STATE(9635)] = 218915, - [SMALL_STATE(9636)] = 218923, - [SMALL_STATE(9637)] = 218931, - [SMALL_STATE(9638)] = 218939, - [SMALL_STATE(9639)] = 218947, - [SMALL_STATE(9640)] = 218955, - [SMALL_STATE(9641)] = 218963, - [SMALL_STATE(9642)] = 218971, - [SMALL_STATE(9643)] = 218979, - [SMALL_STATE(9644)] = 218987, - [SMALL_STATE(9645)] = 218995, - [SMALL_STATE(9646)] = 219003, - [SMALL_STATE(9647)] = 219011, - [SMALL_STATE(9648)] = 219019, - [SMALL_STATE(9649)] = 219027, - [SMALL_STATE(9650)] = 219035, - [SMALL_STATE(9651)] = 219043, - [SMALL_STATE(9652)] = 219051, - [SMALL_STATE(9653)] = 219059, - [SMALL_STATE(9654)] = 219067, - [SMALL_STATE(9655)] = 219075, - [SMALL_STATE(9656)] = 219083, - [SMALL_STATE(9657)] = 219091, - [SMALL_STATE(9658)] = 219099, - [SMALL_STATE(9659)] = 219107, - [SMALL_STATE(9660)] = 219115, - [SMALL_STATE(9661)] = 219123, - [SMALL_STATE(9662)] = 219131, - [SMALL_STATE(9663)] = 219139, - [SMALL_STATE(9664)] = 219147, - [SMALL_STATE(9665)] = 219155, - [SMALL_STATE(9666)] = 219163, - [SMALL_STATE(9667)] = 219171, - [SMALL_STATE(9668)] = 219179, - [SMALL_STATE(9669)] = 219187, - [SMALL_STATE(9670)] = 219195, - [SMALL_STATE(9671)] = 219203, - [SMALL_STATE(9672)] = 219211, - [SMALL_STATE(9673)] = 219219, - [SMALL_STATE(9674)] = 219227, - [SMALL_STATE(9675)] = 219235, - [SMALL_STATE(9676)] = 219243, - [SMALL_STATE(9677)] = 219251, - [SMALL_STATE(9678)] = 219259, - [SMALL_STATE(9679)] = 219267, - [SMALL_STATE(9680)] = 219275, - [SMALL_STATE(9681)] = 219283, - [SMALL_STATE(9682)] = 219291, - [SMALL_STATE(9683)] = 219299, - [SMALL_STATE(9684)] = 219307, - [SMALL_STATE(9685)] = 219315, - [SMALL_STATE(9686)] = 219323, - [SMALL_STATE(9687)] = 219331, - [SMALL_STATE(9688)] = 219339, - [SMALL_STATE(9689)] = 219347, - [SMALL_STATE(9690)] = 219355, - [SMALL_STATE(9691)] = 219363, - [SMALL_STATE(9692)] = 219371, - [SMALL_STATE(9693)] = 219379, - [SMALL_STATE(9694)] = 219387, - [SMALL_STATE(9695)] = 219395, - [SMALL_STATE(9696)] = 219403, - [SMALL_STATE(9697)] = 219411, - [SMALL_STATE(9698)] = 219419, - [SMALL_STATE(9699)] = 219427, - [SMALL_STATE(9700)] = 219435, - [SMALL_STATE(9701)] = 219443, - [SMALL_STATE(9702)] = 219451, - [SMALL_STATE(9703)] = 219459, - [SMALL_STATE(9704)] = 219467, - [SMALL_STATE(9705)] = 219475, - [SMALL_STATE(9706)] = 219483, - [SMALL_STATE(9707)] = 219491, - [SMALL_STATE(9708)] = 219499, - [SMALL_STATE(9709)] = 219507, - [SMALL_STATE(9710)] = 219515, - [SMALL_STATE(9711)] = 219523, - [SMALL_STATE(9712)] = 219531, - [SMALL_STATE(9713)] = 219539, - [SMALL_STATE(9714)] = 219547, - [SMALL_STATE(9715)] = 219555, - [SMALL_STATE(9716)] = 219563, - [SMALL_STATE(9717)] = 219571, - [SMALL_STATE(9718)] = 219579, - [SMALL_STATE(9719)] = 219587, - [SMALL_STATE(9720)] = 219595, - [SMALL_STATE(9721)] = 219603, - [SMALL_STATE(9722)] = 219611, - [SMALL_STATE(9723)] = 219619, - [SMALL_STATE(9724)] = 219627, - [SMALL_STATE(9725)] = 219635, - [SMALL_STATE(9726)] = 219643, - [SMALL_STATE(9727)] = 219651, - [SMALL_STATE(9728)] = 219659, - [SMALL_STATE(9729)] = 219667, - [SMALL_STATE(9730)] = 219675, - [SMALL_STATE(9731)] = 219683, - [SMALL_STATE(9732)] = 219691, - [SMALL_STATE(9733)] = 219699, - [SMALL_STATE(9734)] = 219707, - [SMALL_STATE(9735)] = 219715, - [SMALL_STATE(9736)] = 219723, - [SMALL_STATE(9737)] = 219731, - [SMALL_STATE(9738)] = 219739, - [SMALL_STATE(9739)] = 219747, - [SMALL_STATE(9740)] = 219755, - [SMALL_STATE(9741)] = 219763, - [SMALL_STATE(9742)] = 219771, - [SMALL_STATE(9743)] = 219779, - [SMALL_STATE(9744)] = 219787, - [SMALL_STATE(9745)] = 219795, - [SMALL_STATE(9746)] = 219803, - [SMALL_STATE(9747)] = 219811, - [SMALL_STATE(9748)] = 219819, - [SMALL_STATE(9749)] = 219827, - [SMALL_STATE(9750)] = 219835, - [SMALL_STATE(9751)] = 219843, - [SMALL_STATE(9752)] = 219851, - [SMALL_STATE(9753)] = 219859, - [SMALL_STATE(9754)] = 219867, - [SMALL_STATE(9755)] = 219875, - [SMALL_STATE(9756)] = 219883, - [SMALL_STATE(9757)] = 219891, - [SMALL_STATE(9758)] = 219899, - [SMALL_STATE(9759)] = 219907, - [SMALL_STATE(9760)] = 219915, - [SMALL_STATE(9761)] = 219923, - [SMALL_STATE(9762)] = 219931, - [SMALL_STATE(9763)] = 219939, - [SMALL_STATE(9764)] = 219947, - [SMALL_STATE(9765)] = 219955, - [SMALL_STATE(9766)] = 219963, - [SMALL_STATE(9767)] = 219971, - [SMALL_STATE(9768)] = 219979, - [SMALL_STATE(9769)] = 219987, - [SMALL_STATE(9770)] = 219995, - [SMALL_STATE(9771)] = 220003, - [SMALL_STATE(9772)] = 220011, - [SMALL_STATE(9773)] = 220019, - [SMALL_STATE(9774)] = 220027, - [SMALL_STATE(9775)] = 220035, - [SMALL_STATE(9776)] = 220043, - [SMALL_STATE(9777)] = 220051, - [SMALL_STATE(9778)] = 220059, - [SMALL_STATE(9779)] = 220067, - [SMALL_STATE(9780)] = 220075, - [SMALL_STATE(9781)] = 220083, - [SMALL_STATE(9782)] = 220091, - [SMALL_STATE(9783)] = 220099, - [SMALL_STATE(9784)] = 220107, - [SMALL_STATE(9785)] = 220115, - [SMALL_STATE(9786)] = 220123, - [SMALL_STATE(9787)] = 220131, - [SMALL_STATE(9788)] = 220139, - [SMALL_STATE(9789)] = 220147, - [SMALL_STATE(9790)] = 220155, - [SMALL_STATE(9791)] = 220163, - [SMALL_STATE(9792)] = 220171, - [SMALL_STATE(9793)] = 220179, - [SMALL_STATE(9794)] = 220187, - [SMALL_STATE(9795)] = 220195, - [SMALL_STATE(9796)] = 220203, - [SMALL_STATE(9797)] = 220211, - [SMALL_STATE(9798)] = 220219, - [SMALL_STATE(9799)] = 220227, - [SMALL_STATE(9800)] = 220235, - [SMALL_STATE(9801)] = 220243, - [SMALL_STATE(9802)] = 220251, - [SMALL_STATE(9803)] = 220259, - [SMALL_STATE(9804)] = 220267, - [SMALL_STATE(9805)] = 220275, - [SMALL_STATE(9806)] = 220283, - [SMALL_STATE(9807)] = 220291, - [SMALL_STATE(9808)] = 220299, - [SMALL_STATE(9809)] = 220307, - [SMALL_STATE(9810)] = 220315, - [SMALL_STATE(9811)] = 220323, - [SMALL_STATE(9812)] = 220331, - [SMALL_STATE(9813)] = 220339, - [SMALL_STATE(9814)] = 220347, - [SMALL_STATE(9815)] = 220355, - [SMALL_STATE(9816)] = 220363, - [SMALL_STATE(9817)] = 220371, - [SMALL_STATE(9818)] = 220379, - [SMALL_STATE(9819)] = 220387, - [SMALL_STATE(9820)] = 220395, - [SMALL_STATE(9821)] = 220403, - [SMALL_STATE(9822)] = 220411, - [SMALL_STATE(9823)] = 220419, - [SMALL_STATE(9824)] = 220427, - [SMALL_STATE(9825)] = 220435, - [SMALL_STATE(9826)] = 220443, - [SMALL_STATE(9827)] = 220451, - [SMALL_STATE(9828)] = 220459, - [SMALL_STATE(9829)] = 220467, - [SMALL_STATE(9830)] = 220475, - [SMALL_STATE(9831)] = 220483, - [SMALL_STATE(9832)] = 220491, - [SMALL_STATE(9833)] = 220499, - [SMALL_STATE(9834)] = 220507, - [SMALL_STATE(9835)] = 220515, - [SMALL_STATE(9836)] = 220523, - [SMALL_STATE(9837)] = 220531, - [SMALL_STATE(9838)] = 220539, - [SMALL_STATE(9839)] = 220547, - [SMALL_STATE(9840)] = 220555, - [SMALL_STATE(9841)] = 220563, - [SMALL_STATE(9842)] = 220571, - [SMALL_STATE(9843)] = 220579, - [SMALL_STATE(9844)] = 220587, - [SMALL_STATE(9845)] = 220595, - [SMALL_STATE(9846)] = 220603, - [SMALL_STATE(9847)] = 220611, - [SMALL_STATE(9848)] = 220619, - [SMALL_STATE(9849)] = 220627, - [SMALL_STATE(9850)] = 220635, - [SMALL_STATE(9851)] = 220643, - [SMALL_STATE(9852)] = 220651, - [SMALL_STATE(9853)] = 220659, - [SMALL_STATE(9854)] = 220667, - [SMALL_STATE(9855)] = 220675, - [SMALL_STATE(9856)] = 220683, - [SMALL_STATE(9857)] = 220691, - [SMALL_STATE(9858)] = 220699, - [SMALL_STATE(9859)] = 220707, - [SMALL_STATE(9860)] = 220715, - [SMALL_STATE(9861)] = 220723, - [SMALL_STATE(9862)] = 220731, - [SMALL_STATE(9863)] = 220739, - [SMALL_STATE(9864)] = 220747, - [SMALL_STATE(9865)] = 220755, - [SMALL_STATE(9866)] = 220763, - [SMALL_STATE(9867)] = 220771, - [SMALL_STATE(9868)] = 220779, - [SMALL_STATE(9869)] = 220787, - [SMALL_STATE(9870)] = 220795, - [SMALL_STATE(9871)] = 220803, - [SMALL_STATE(9872)] = 220811, - [SMALL_STATE(9873)] = 220819, - [SMALL_STATE(9874)] = 220827, - [SMALL_STATE(9875)] = 220835, - [SMALL_STATE(9876)] = 220843, - [SMALL_STATE(9877)] = 220851, - [SMALL_STATE(9878)] = 220859, - [SMALL_STATE(9879)] = 220867, - [SMALL_STATE(9880)] = 220875, - [SMALL_STATE(9881)] = 220883, - [SMALL_STATE(9882)] = 220891, - [SMALL_STATE(9883)] = 220899, - [SMALL_STATE(9884)] = 220907, - [SMALL_STATE(9885)] = 220915, - [SMALL_STATE(9886)] = 220923, - [SMALL_STATE(9887)] = 220931, - [SMALL_STATE(9888)] = 220939, - [SMALL_STATE(9889)] = 220947, - [SMALL_STATE(9890)] = 220955, - [SMALL_STATE(9891)] = 220963, - [SMALL_STATE(9892)] = 220971, - [SMALL_STATE(9893)] = 220979, - [SMALL_STATE(9894)] = 220987, - [SMALL_STATE(9895)] = 220995, - [SMALL_STATE(9896)] = 221003, - [SMALL_STATE(9897)] = 221011, - [SMALL_STATE(9898)] = 221019, - [SMALL_STATE(9899)] = 221027, - [SMALL_STATE(9900)] = 221035, - [SMALL_STATE(9901)] = 221043, - [SMALL_STATE(9902)] = 221051, - [SMALL_STATE(9903)] = 221059, - [SMALL_STATE(9904)] = 221067, - [SMALL_STATE(9905)] = 221075, - [SMALL_STATE(9906)] = 221083, - [SMALL_STATE(9907)] = 221091, - [SMALL_STATE(9908)] = 221099, - [SMALL_STATE(9909)] = 221107, - [SMALL_STATE(9910)] = 221115, - [SMALL_STATE(9911)] = 221123, - [SMALL_STATE(9912)] = 221131, - [SMALL_STATE(9913)] = 221139, - [SMALL_STATE(9914)] = 221147, - [SMALL_STATE(9915)] = 221155, - [SMALL_STATE(9916)] = 221163, - [SMALL_STATE(9917)] = 221171, - [SMALL_STATE(9918)] = 221179, - [SMALL_STATE(9919)] = 221187, - [SMALL_STATE(9920)] = 221195, - [SMALL_STATE(9921)] = 221203, - [SMALL_STATE(9922)] = 221211, - [SMALL_STATE(9923)] = 221219, - [SMALL_STATE(9924)] = 221227, - [SMALL_STATE(9925)] = 221235, - [SMALL_STATE(9926)] = 221243, - [SMALL_STATE(9927)] = 221251, - [SMALL_STATE(9928)] = 221259, - [SMALL_STATE(9929)] = 221267, - [SMALL_STATE(9930)] = 221275, - [SMALL_STATE(9931)] = 221283, - [SMALL_STATE(9932)] = 221291, - [SMALL_STATE(9933)] = 221299, - [SMALL_STATE(9934)] = 221307, - [SMALL_STATE(9935)] = 221315, - [SMALL_STATE(9936)] = 221323, - [SMALL_STATE(9937)] = 221331, - [SMALL_STATE(9938)] = 221339, - [SMALL_STATE(9939)] = 221347, - [SMALL_STATE(9940)] = 221355, - [SMALL_STATE(9941)] = 221363, - [SMALL_STATE(9942)] = 221371, - [SMALL_STATE(9943)] = 221379, - [SMALL_STATE(9944)] = 221387, - [SMALL_STATE(9945)] = 221395, - [SMALL_STATE(9946)] = 221403, - [SMALL_STATE(9947)] = 221411, - [SMALL_STATE(9948)] = 221419, - [SMALL_STATE(9949)] = 221427, - [SMALL_STATE(9950)] = 221435, - [SMALL_STATE(9951)] = 221443, - [SMALL_STATE(9952)] = 221451, - [SMALL_STATE(9953)] = 221459, - [SMALL_STATE(9954)] = 221467, - [SMALL_STATE(9955)] = 221475, - [SMALL_STATE(9956)] = 221483, - [SMALL_STATE(9957)] = 221491, - [SMALL_STATE(9958)] = 221499, - [SMALL_STATE(9959)] = 221507, - [SMALL_STATE(9960)] = 221515, - [SMALL_STATE(9961)] = 221523, - [SMALL_STATE(9962)] = 221531, - [SMALL_STATE(9963)] = 221539, - [SMALL_STATE(9964)] = 221547, - [SMALL_STATE(9965)] = 221555, - [SMALL_STATE(9966)] = 221563, - [SMALL_STATE(9967)] = 221571, - [SMALL_STATE(9968)] = 221579, - [SMALL_STATE(9969)] = 221587, - [SMALL_STATE(9970)] = 221595, - [SMALL_STATE(9971)] = 221603, - [SMALL_STATE(9972)] = 221611, - [SMALL_STATE(9973)] = 221619, - [SMALL_STATE(9974)] = 221627, - [SMALL_STATE(9975)] = 221635, - [SMALL_STATE(9976)] = 221643, - [SMALL_STATE(9977)] = 221651, - [SMALL_STATE(9978)] = 221659, - [SMALL_STATE(9979)] = 221667, - [SMALL_STATE(9980)] = 221675, - [SMALL_STATE(9981)] = 221683, - [SMALL_STATE(9982)] = 221691, - [SMALL_STATE(9983)] = 221699, - [SMALL_STATE(9984)] = 221707, - [SMALL_STATE(9985)] = 221715, - [SMALL_STATE(9986)] = 221723, - [SMALL_STATE(9987)] = 221731, - [SMALL_STATE(9988)] = 221739, - [SMALL_STATE(9989)] = 221747, - [SMALL_STATE(9990)] = 221755, - [SMALL_STATE(9991)] = 221763, - [SMALL_STATE(9992)] = 221771, - [SMALL_STATE(9993)] = 221779, - [SMALL_STATE(9994)] = 221787, - [SMALL_STATE(9995)] = 221795, - [SMALL_STATE(9996)] = 221803, - [SMALL_STATE(9997)] = 221811, - [SMALL_STATE(9998)] = 221819, - [SMALL_STATE(9999)] = 221827, - [SMALL_STATE(10000)] = 221835, - [SMALL_STATE(10001)] = 221843, - [SMALL_STATE(10002)] = 221851, - [SMALL_STATE(10003)] = 221859, - [SMALL_STATE(10004)] = 221867, - [SMALL_STATE(10005)] = 221875, - [SMALL_STATE(10006)] = 221883, - [SMALL_STATE(10007)] = 221891, - [SMALL_STATE(10008)] = 221899, - [SMALL_STATE(10009)] = 221907, - [SMALL_STATE(10010)] = 221915, - [SMALL_STATE(10011)] = 221923, - [SMALL_STATE(10012)] = 221931, - [SMALL_STATE(10013)] = 221939, - [SMALL_STATE(10014)] = 221947, - [SMALL_STATE(10015)] = 221955, - [SMALL_STATE(10016)] = 221963, - [SMALL_STATE(10017)] = 221971, - [SMALL_STATE(10018)] = 221979, - [SMALL_STATE(10019)] = 221987, - [SMALL_STATE(10020)] = 221995, - [SMALL_STATE(10021)] = 222003, - [SMALL_STATE(10022)] = 222011, - [SMALL_STATE(10023)] = 222019, - [SMALL_STATE(10024)] = 222027, - [SMALL_STATE(10025)] = 222035, - [SMALL_STATE(10026)] = 222043, - [SMALL_STATE(10027)] = 222051, - [SMALL_STATE(10028)] = 222059, - [SMALL_STATE(10029)] = 222067, - [SMALL_STATE(10030)] = 222075, - [SMALL_STATE(10031)] = 222083, - [SMALL_STATE(10032)] = 222091, - [SMALL_STATE(10033)] = 222099, - [SMALL_STATE(10034)] = 222107, - [SMALL_STATE(10035)] = 222115, - [SMALL_STATE(10036)] = 222123, - [SMALL_STATE(10037)] = 222131, - [SMALL_STATE(10038)] = 222139, - [SMALL_STATE(10039)] = 222147, - [SMALL_STATE(10040)] = 222155, - [SMALL_STATE(10041)] = 222163, - [SMALL_STATE(10042)] = 222171, - [SMALL_STATE(10043)] = 222179, - [SMALL_STATE(10044)] = 222187, - [SMALL_STATE(10045)] = 222195, - [SMALL_STATE(10046)] = 222203, - [SMALL_STATE(10047)] = 222211, - [SMALL_STATE(10048)] = 222219, - [SMALL_STATE(10049)] = 222227, - [SMALL_STATE(10050)] = 222235, - [SMALL_STATE(10051)] = 222243, - [SMALL_STATE(10052)] = 222251, - [SMALL_STATE(10053)] = 222259, - [SMALL_STATE(10054)] = 222267, - [SMALL_STATE(10055)] = 222275, - [SMALL_STATE(10056)] = 222283, - [SMALL_STATE(10057)] = 222291, - [SMALL_STATE(10058)] = 222299, - [SMALL_STATE(10059)] = 222307, - [SMALL_STATE(10060)] = 222315, - [SMALL_STATE(10061)] = 222323, - [SMALL_STATE(10062)] = 222331, - [SMALL_STATE(10063)] = 222339, - [SMALL_STATE(10064)] = 222347, + [SMALL_STATE(4533)] = 0, + [SMALL_STATE(4534)] = 85, + [SMALL_STATE(4535)] = 156, + [SMALL_STATE(4536)] = 241, + [SMALL_STATE(4537)] = 326, + [SMALL_STATE(4538)] = 397, + [SMALL_STATE(4539)] = 472, + [SMALL_STATE(4540)] = 557, + [SMALL_STATE(4541)] = 632, + [SMALL_STATE(4542)] = 707, + [SMALL_STATE(4543)] = 782, + [SMALL_STATE(4544)] = 867, + [SMALL_STATE(4545)] = 942, + [SMALL_STATE(4546)] = 1013, + [SMALL_STATE(4547)] = 1088, + [SMALL_STATE(4548)] = 1159, + [SMALL_STATE(4549)] = 1233, + [SMALL_STATE(4550)] = 1319, + [SMALL_STATE(4551)] = 1389, + [SMALL_STATE(4552)] = 1475, + [SMALL_STATE(4553)] = 1555, + [SMALL_STATE(4554)] = 1635, + [SMALL_STATE(4555)] = 1705, + [SMALL_STATE(4556)] = 1783, + [SMALL_STATE(4557)] = 1863, + [SMALL_STATE(4558)] = 1943, + [SMALL_STATE(4559)] = 2023, + [SMALL_STATE(4560)] = 2097, + [SMALL_STATE(4561)] = 2177, + [SMALL_STATE(4562)] = 2257, + [SMALL_STATE(4563)] = 2337, + [SMALL_STATE(4564)] = 2417, + [SMALL_STATE(4565)] = 2497, + [SMALL_STATE(4566)] = 2577, + [SMALL_STATE(4567)] = 2655, + [SMALL_STATE(4568)] = 2729, + [SMALL_STATE(4569)] = 2803, + [SMALL_STATE(4570)] = 2877, + [SMALL_STATE(4571)] = 2959, + [SMALL_STATE(4572)] = 3041, + [SMALL_STATE(4573)] = 3123, + [SMALL_STATE(4574)] = 3195, + [SMALL_STATE(4575)] = 3269, + [SMALL_STATE(4576)] = 3339, + [SMALL_STATE(4577)] = 3421, + [SMALL_STATE(4578)] = 3491, + [SMALL_STATE(4579)] = 3563, + [SMALL_STATE(4580)] = 3645, + [SMALL_STATE(4581)] = 3719, + [SMALL_STATE(4582)] = 3796, + [SMALL_STATE(4583)] = 3873, + [SMALL_STATE(4584)] = 3950, + [SMALL_STATE(4585)] = 4027, + [SMALL_STATE(4586)] = 4104, + [SMALL_STATE(4587)] = 4181, + [SMALL_STATE(4588)] = 4254, + [SMALL_STATE(4589)] = 4331, + [SMALL_STATE(4590)] = 4408, + [SMALL_STATE(4591)] = 4485, + [SMALL_STATE(4592)] = 4560, + [SMALL_STATE(4593)] = 4637, + [SMALL_STATE(4594)] = 4706, + [SMALL_STATE(4595)] = 4775, + [SMALL_STATE(4596)] = 4850, + [SMALL_STATE(4597)] = 4919, + [SMALL_STATE(4598)] = 4996, + [SMALL_STATE(4599)] = 5065, + [SMALL_STATE(4600)] = 5142, + [SMALL_STATE(4601)] = 5219, + [SMALL_STATE(4602)] = 5296, + [SMALL_STATE(4603)] = 5373, + [SMALL_STATE(4604)] = 5444, + [SMALL_STATE(4605)] = 5513, + [SMALL_STATE(4606)] = 5582, + [SMALL_STATE(4607)] = 5659, + [SMALL_STATE(4608)] = 5736, + [SMALL_STATE(4609)] = 5805, + [SMALL_STATE(4610)] = 5874, + [SMALL_STATE(4611)] = 5943, + [SMALL_STATE(4612)] = 6020, + [SMALL_STATE(4613)] = 6089, + [SMALL_STATE(4614)] = 6162, + [SMALL_STATE(4615)] = 6239, + [SMALL_STATE(4616)] = 6316, + [SMALL_STATE(4617)] = 6389, + [SMALL_STATE(4618)] = 6466, + [SMALL_STATE(4619)] = 6543, + [SMALL_STATE(4620)] = 6620, + [SMALL_STATE(4621)] = 6692, + [SMALL_STATE(4622)] = 6764, + [SMALL_STATE(4623)] = 6832, + [SMALL_STATE(4624)] = 6900, + [SMALL_STATE(4625)] = 6972, + [SMALL_STATE(4626)] = 7044, + [SMALL_STATE(4627)] = 7116, + [SMALL_STATE(4628)] = 7188, + [SMALL_STATE(4629)] = 7260, + [SMALL_STATE(4630)] = 7332, + [SMALL_STATE(4631)] = 7414, + [SMALL_STATE(4632)] = 7482, + [SMALL_STATE(4633)] = 7550, + [SMALL_STATE(4634)] = 7622, + [SMALL_STATE(4635)] = 7694, + [SMALL_STATE(4636)] = 7764, + [SMALL_STATE(4637)] = 7834, + [SMALL_STATE(4638)] = 7902, + [SMALL_STATE(4639)] = 7970, + [SMALL_STATE(4640)] = 8038, + [SMALL_STATE(4641)] = 8120, + [SMALL_STATE(4642)] = 8192, + [SMALL_STATE(4643)] = 8274, + [SMALL_STATE(4644)] = 8346, + [SMALL_STATE(4645)] = 8418, + [SMALL_STATE(4646)] = 8490, + [SMALL_STATE(4647)] = 8562, + [SMALL_STATE(4648)] = 8644, + [SMALL_STATE(4649)] = 8716, + [SMALL_STATE(4650)] = 8798, + [SMALL_STATE(4651)] = 8870, + [SMALL_STATE(4652)] = 8952, + [SMALL_STATE(4653)] = 9024, + [SMALL_STATE(4654)] = 9096, + [SMALL_STATE(4655)] = 9164, + [SMALL_STATE(4656)] = 9246, + [SMALL_STATE(4657)] = 9314, + [SMALL_STATE(4658)] = 9386, + [SMALL_STATE(4659)] = 9458, + [SMALL_STATE(4660)] = 9530, + [SMALL_STATE(4661)] = 9602, + [SMALL_STATE(4662)] = 9684, + [SMALL_STATE(4663)] = 9752, + [SMALL_STATE(4664)] = 9824, + [SMALL_STATE(4665)] = 9892, + [SMALL_STATE(4666)] = 9962, + [SMALL_STATE(4667)] = 10030, + [SMALL_STATE(4668)] = 10112, + [SMALL_STATE(4669)] = 10182, + [SMALL_STATE(4670)] = 10250, + [SMALL_STATE(4671)] = 10320, + [SMALL_STATE(4672)] = 10388, + [SMALL_STATE(4673)] = 10460, + [SMALL_STATE(4674)] = 10542, + [SMALL_STATE(4675)] = 10610, + [SMALL_STATE(4676)] = 10678, + [SMALL_STATE(4677)] = 10750, + [SMALL_STATE(4678)] = 10822, + [SMALL_STATE(4679)] = 10894, + [SMALL_STATE(4680)] = 10966, + [SMALL_STATE(4681)] = 11036, + [SMALL_STATE(4682)] = 11108, + [SMALL_STATE(4683)] = 11180, + [SMALL_STATE(4684)] = 11252, + [SMALL_STATE(4685)] = 11322, + [SMALL_STATE(4686)] = 11390, + [SMALL_STATE(4687)] = 11472, + [SMALL_STATE(4688)] = 11554, + [SMALL_STATE(4689)] = 11622, + [SMALL_STATE(4690)] = 11694, + [SMALL_STATE(4691)] = 11766, + [SMALL_STATE(4692)] = 11838, + [SMALL_STATE(4693)] = 11906, + [SMALL_STATE(4694)] = 11974, + [SMALL_STATE(4695)] = 12046, + [SMALL_STATE(4696)] = 12128, + [SMALL_STATE(4697)] = 12210, + [SMALL_STATE(4698)] = 12292, + [SMALL_STATE(4699)] = 12359, + [SMALL_STATE(4700)] = 12426, + [SMALL_STATE(4701)] = 12493, + [SMALL_STATE(4702)] = 12560, + [SMALL_STATE(4703)] = 12627, + [SMALL_STATE(4704)] = 12694, + [SMALL_STATE(4705)] = 12773, + [SMALL_STATE(4706)] = 12840, + [SMALL_STATE(4707)] = 12907, + [SMALL_STATE(4708)] = 12986, + [SMALL_STATE(4709)] = 13057, + [SMALL_STATE(4710)] = 13124, + [SMALL_STATE(4711)] = 13191, + [SMALL_STATE(4712)] = 13258, + [SMALL_STATE(4713)] = 13339, + [SMALL_STATE(4714)] = 13406, + [SMALL_STATE(4715)] = 13473, + [SMALL_STATE(4716)] = 13540, + [SMALL_STATE(4717)] = 13607, + [SMALL_STATE(4718)] = 13676, + [SMALL_STATE(4719)] = 13745, + [SMALL_STATE(4720)] = 13812, + [SMALL_STATE(4721)] = 13891, + [SMALL_STATE(4722)] = 13960, + [SMALL_STATE(4723)] = 14029, + [SMALL_STATE(4724)] = 14100, + [SMALL_STATE(4725)] = 14167, + [SMALL_STATE(4726)] = 14248, + [SMALL_STATE(4727)] = 14315, + [SMALL_STATE(4728)] = 14382, + [SMALL_STATE(4729)] = 14449, + [SMALL_STATE(4730)] = 14516, + [SMALL_STATE(4731)] = 14583, + [SMALL_STATE(4732)] = 14650, + [SMALL_STATE(4733)] = 14717, + [SMALL_STATE(4734)] = 14786, + [SMALL_STATE(4735)] = 14853, + [SMALL_STATE(4736)] = 14920, + [SMALL_STATE(4737)] = 14987, + [SMALL_STATE(4738)] = 15054, + [SMALL_STATE(4739)] = 15125, + [SMALL_STATE(4740)] = 15192, + [SMALL_STATE(4741)] = 15259, + [SMALL_STATE(4742)] = 15336, + [SMALL_STATE(4743)] = 15403, + [SMALL_STATE(4744)] = 15482, + [SMALL_STATE(4745)] = 15549, + [SMALL_STATE(4746)] = 15616, + [SMALL_STATE(4747)] = 15683, + [SMALL_STATE(4748)] = 15762, + [SMALL_STATE(4749)] = 15829, + [SMALL_STATE(4750)] = 15896, + [SMALL_STATE(4751)] = 15963, + [SMALL_STATE(4752)] = 16032, + [SMALL_STATE(4753)] = 16099, + [SMALL_STATE(4754)] = 16166, + [SMALL_STATE(4755)] = 16235, + [SMALL_STATE(4756)] = 16312, + [SMALL_STATE(4757)] = 16379, + [SMALL_STATE(4758)] = 16446, + [SMALL_STATE(4759)] = 16513, + [SMALL_STATE(4760)] = 16580, + [SMALL_STATE(4761)] = 16647, + [SMALL_STATE(4762)] = 16714, + [SMALL_STATE(4763)] = 16781, + [SMALL_STATE(4764)] = 16848, + [SMALL_STATE(4765)] = 16915, + [SMALL_STATE(4766)] = 16994, + [SMALL_STATE(4767)] = 17071, + [SMALL_STATE(4768)] = 17138, + [SMALL_STATE(4769)] = 17209, + [SMALL_STATE(4770)] = 17276, + [SMALL_STATE(4771)] = 17343, + [SMALL_STATE(4772)] = 17410, + [SMALL_STATE(4773)] = 17477, + [SMALL_STATE(4774)] = 17544, + [SMALL_STATE(4775)] = 17611, + [SMALL_STATE(4776)] = 17678, + [SMALL_STATE(4777)] = 17755, + [SMALL_STATE(4778)] = 17822, + [SMALL_STATE(4779)] = 17899, + [SMALL_STATE(4780)] = 17966, + [SMALL_STATE(4781)] = 18033, + [SMALL_STATE(4782)] = 18110, + [SMALL_STATE(4783)] = 18177, + [SMALL_STATE(4784)] = 18254, + [SMALL_STATE(4785)] = 18321, + [SMALL_STATE(4786)] = 18388, + [SMALL_STATE(4787)] = 18455, + [SMALL_STATE(4788)] = 18522, + [SMALL_STATE(4789)] = 18603, + [SMALL_STATE(4790)] = 18670, + [SMALL_STATE(4791)] = 18737, + [SMALL_STATE(4792)] = 18814, + [SMALL_STATE(4793)] = 18881, + [SMALL_STATE(4794)] = 18948, + [SMALL_STATE(4795)] = 19025, + [SMALL_STATE(4796)] = 19092, + [SMALL_STATE(4797)] = 19169, + [SMALL_STATE(4798)] = 19236, + [SMALL_STATE(4799)] = 19313, + [SMALL_STATE(4800)] = 19390, + [SMALL_STATE(4801)] = 19457, + [SMALL_STATE(4802)] = 19534, + [SMALL_STATE(4803)] = 19601, + [SMALL_STATE(4804)] = 19678, + [SMALL_STATE(4805)] = 19745, + [SMALL_STATE(4806)] = 19822, + [SMALL_STATE(4807)] = 19893, + [SMALL_STATE(4808)] = 19970, + [SMALL_STATE(4809)] = 20047, + [SMALL_STATE(4810)] = 20114, + [SMALL_STATE(4811)] = 20181, + [SMALL_STATE(4812)] = 20248, + [SMALL_STATE(4813)] = 20315, + [SMALL_STATE(4814)] = 20382, + [SMALL_STATE(4815)] = 20463, + [SMALL_STATE(4816)] = 20532, + [SMALL_STATE(4817)] = 20603, + [SMALL_STATE(4818)] = 20670, + [SMALL_STATE(4819)] = 20737, + [SMALL_STATE(4820)] = 20804, + [SMALL_STATE(4821)] = 20871, + [SMALL_STATE(4822)] = 20950, + [SMALL_STATE(4823)] = 21017, + [SMALL_STATE(4824)] = 21084, + [SMALL_STATE(4825)] = 21151, + [SMALL_STATE(4826)] = 21218, + [SMALL_STATE(4827)] = 21295, + [SMALL_STATE(4828)] = 21362, + [SMALL_STATE(4829)] = 21439, + [SMALL_STATE(4830)] = 21506, + [SMALL_STATE(4831)] = 21577, + [SMALL_STATE(4832)] = 21646, + [SMALL_STATE(4833)] = 21713, + [SMALL_STATE(4834)] = 21780, + [SMALL_STATE(4835)] = 21847, + [SMALL_STATE(4836)] = 21926, + [SMALL_STATE(4837)] = 21993, + [SMALL_STATE(4838)] = 22060, + [SMALL_STATE(4839)] = 22127, + [SMALL_STATE(4840)] = 22196, + [SMALL_STATE(4841)] = 22269, + [SMALL_STATE(4842)] = 22342, + [SMALL_STATE(4843)] = 22409, + [SMALL_STATE(4844)] = 22476, + [SMALL_STATE(4845)] = 22543, + [SMALL_STATE(4846)] = 22610, + [SMALL_STATE(4847)] = 22677, + [SMALL_STATE(4848)] = 22756, + [SMALL_STATE(4849)] = 22823, + [SMALL_STATE(4850)] = 22902, + [SMALL_STATE(4851)] = 22981, + [SMALL_STATE(4852)] = 23048, + [SMALL_STATE(4853)] = 23117, + [SMALL_STATE(4854)] = 23190, + [SMALL_STATE(4855)] = 23257, + [SMALL_STATE(4856)] = 23324, + [SMALL_STATE(4857)] = 23391, + [SMALL_STATE(4858)] = 23458, + [SMALL_STATE(4859)] = 23537, + [SMALL_STATE(4860)] = 23604, + [SMALL_STATE(4861)] = 23671, + [SMALL_STATE(4862)] = 23738, + [SMALL_STATE(4863)] = 23805, + [SMALL_STATE(4864)] = 23884, + [SMALL_STATE(4865)] = 23951, + [SMALL_STATE(4866)] = 24020, + [SMALL_STATE(4867)] = 24099, + [SMALL_STATE(4868)] = 24166, + [SMALL_STATE(4869)] = 24233, + [SMALL_STATE(4870)] = 24314, + [SMALL_STATE(4871)] = 24381, + [SMALL_STATE(4872)] = 24448, + [SMALL_STATE(4873)] = 24515, + [SMALL_STATE(4874)] = 24582, + [SMALL_STATE(4875)] = 24649, + [SMALL_STATE(4876)] = 24716, + [SMALL_STATE(4877)] = 24783, + [SMALL_STATE(4878)] = 24850, + [SMALL_STATE(4879)] = 24917, + [SMALL_STATE(4880)] = 24984, + [SMALL_STATE(4881)] = 25051, + [SMALL_STATE(4882)] = 25118, + [SMALL_STATE(4883)] = 25185, + [SMALL_STATE(4884)] = 25252, + [SMALL_STATE(4885)] = 25319, + [SMALL_STATE(4886)] = 25398, + [SMALL_STATE(4887)] = 25465, + [SMALL_STATE(4888)] = 25532, + [SMALL_STATE(4889)] = 25599, + [SMALL_STATE(4890)] = 25666, + [SMALL_STATE(4891)] = 25733, + [SMALL_STATE(4892)] = 25800, + [SMALL_STATE(4893)] = 25867, + [SMALL_STATE(4894)] = 25934, + [SMALL_STATE(4895)] = 26008, + [SMALL_STATE(4896)] = 26084, + [SMALL_STATE(4897)] = 26158, + [SMALL_STATE(4898)] = 26228, + [SMALL_STATE(4899)] = 26304, + [SMALL_STATE(4900)] = 26382, + [SMALL_STATE(4901)] = 26456, + [SMALL_STATE(4902)] = 26532, + [SMALL_STATE(4903)] = 26608, + [SMALL_STATE(4904)] = 26684, + [SMALL_STATE(4905)] = 26764, + [SMALL_STATE(4906)] = 26840, + [SMALL_STATE(4907)] = 26910, + [SMALL_STATE(4908)] = 26984, + [SMALL_STATE(4909)] = 27054, + [SMALL_STATE(4910)] = 27124, + [SMALL_STATE(4911)] = 27202, + [SMALL_STATE(4912)] = 27276, + [SMALL_STATE(4913)] = 27348, + [SMALL_STATE(4914)] = 27422, + [SMALL_STATE(4915)] = 27496, + [SMALL_STATE(4916)] = 27574, + [SMALL_STATE(4917)] = 27646, + [SMALL_STATE(4918)] = 27720, + [SMALL_STATE(4919)] = 27786, + [SMALL_STATE(4920)] = 27862, + [SMALL_STATE(4921)] = 27928, + [SMALL_STATE(4922)] = 27994, + [SMALL_STATE(4923)] = 28068, + [SMALL_STATE(4924)] = 28142, + [SMALL_STATE(4925)] = 28208, + [SMALL_STATE(4926)] = 28274, + [SMALL_STATE(4927)] = 28352, + [SMALL_STATE(4928)] = 28432, + [SMALL_STATE(4929)] = 28506, + [SMALL_STATE(4930)] = 28580, + [SMALL_STATE(4931)] = 28656, + [SMALL_STATE(4932)] = 28732, + [SMALL_STATE(4933)] = 28806, + [SMALL_STATE(4934)] = 28880, + [SMALL_STATE(4935)] = 28956, + [SMALL_STATE(4936)] = 29022, + [SMALL_STATE(4937)] = 29088, + [SMALL_STATE(4938)] = 29154, + [SMALL_STATE(4939)] = 29220, + [SMALL_STATE(4940)] = 29290, + [SMALL_STATE(4941)] = 29366, + [SMALL_STATE(4942)] = 29442, + [SMALL_STATE(4943)] = 29518, + [SMALL_STATE(4944)] = 29594, + [SMALL_STATE(4945)] = 29668, + [SMALL_STATE(4946)] = 29734, + [SMALL_STATE(4947)] = 29800, + [SMALL_STATE(4948)] = 29874, + [SMALL_STATE(4949)] = 29952, + [SMALL_STATE(4950)] = 30018, + [SMALL_STATE(4951)] = 30094, + [SMALL_STATE(4952)] = 30164, + [SMALL_STATE(4953)] = 30238, + [SMALL_STATE(4954)] = 30312, + [SMALL_STATE(4955)] = 30392, + [SMALL_STATE(4956)] = 30466, + [SMALL_STATE(4957)] = 30540, + [SMALL_STATE(4958)] = 30620, + [SMALL_STATE(4959)] = 30694, + [SMALL_STATE(4960)] = 30768, + [SMALL_STATE(4961)] = 30844, + [SMALL_STATE(4962)] = 30920, + [SMALL_STATE(4963)] = 30986, + [SMALL_STATE(4964)] = 31066, + [SMALL_STATE(4965)] = 31142, + [SMALL_STATE(4966)] = 31218, + [SMALL_STATE(4967)] = 31291, + [SMALL_STATE(4968)] = 31360, + [SMALL_STATE(4969)] = 31425, + [SMALL_STATE(4970)] = 31492, + [SMALL_STATE(4971)] = 31567, + [SMALL_STATE(4972)] = 31636, + [SMALL_STATE(4973)] = 31705, + [SMALL_STATE(4974)] = 31774, + [SMALL_STATE(4975)] = 31849, + [SMALL_STATE(4976)] = 31914, + [SMALL_STATE(4977)] = 31991, + [SMALL_STATE(4978)] = 32064, + [SMALL_STATE(4979)] = 32131, + [SMALL_STATE(4980)] = 32200, + [SMALL_STATE(4981)] = 32265, + [SMALL_STATE(4982)] = 32334, + [SMALL_STATE(4983)] = 32399, + [SMALL_STATE(4984)] = 32474, + [SMALL_STATE(4985)] = 32539, + [SMALL_STATE(4986)] = 32604, + [SMALL_STATE(4987)] = 32673, + [SMALL_STATE(4988)] = 32738, + [SMALL_STATE(4989)] = 32807, + [SMALL_STATE(4990)] = 32872, + [SMALL_STATE(4991)] = 32945, + [SMALL_STATE(4992)] = 33010, + [SMALL_STATE(4993)] = 33085, + [SMALL_STATE(4994)] = 33154, + [SMALL_STATE(4995)] = 33219, + [SMALL_STATE(4996)] = 33288, + [SMALL_STATE(4997)] = 33365, + [SMALL_STATE(4998)] = 33430, + [SMALL_STATE(4999)] = 33499, + [SMALL_STATE(5000)] = 33568, + [SMALL_STATE(5001)] = 33641, + [SMALL_STATE(5002)] = 33710, + [SMALL_STATE(5003)] = 33783, + [SMALL_STATE(5004)] = 33852, + [SMALL_STATE(5005)] = 33917, + [SMALL_STATE(5006)] = 33982, + [SMALL_STATE(5007)] = 34047, + [SMALL_STATE(5008)] = 34116, + [SMALL_STATE(5009)] = 34185, + [SMALL_STATE(5010)] = 34254, + [SMALL_STATE(5011)] = 34331, + [SMALL_STATE(5012)] = 34400, + [SMALL_STATE(5013)] = 34473, + [SMALL_STATE(5014)] = 34538, + [SMALL_STATE(5015)] = 34607, + [SMALL_STATE(5016)] = 34680, + [SMALL_STATE(5017)] = 34749, + [SMALL_STATE(5018)] = 34814, + [SMALL_STATE(5019)] = 34887, + [SMALL_STATE(5020)] = 34960, + [SMALL_STATE(5021)] = 35029, + [SMALL_STATE(5022)] = 35102, + [SMALL_STATE(5023)] = 35175, + [SMALL_STATE(5024)] = 35248, + [SMALL_STATE(5025)] = 35317, + [SMALL_STATE(5026)] = 35386, + [SMALL_STATE(5027)] = 35459, + [SMALL_STATE(5028)] = 35532, + [SMALL_STATE(5029)] = 35605, + [SMALL_STATE(5030)] = 35674, + [SMALL_STATE(5031)] = 35743, + [SMALL_STATE(5032)] = 35816, + [SMALL_STATE(5033)] = 35883, + [SMALL_STATE(5034)] = 35956, + [SMALL_STATE(5035)] = 36033, + [SMALL_STATE(5036)] = 36102, + [SMALL_STATE(5037)] = 36175, + [SMALL_STATE(5038)] = 36248, + [SMALL_STATE(5039)] = 36317, + [SMALL_STATE(5040)] = 36382, + [SMALL_STATE(5041)] = 36451, + [SMALL_STATE(5042)] = 36518, + [SMALL_STATE(5043)] = 36583, + [SMALL_STATE(5044)] = 36648, + [SMALL_STATE(5045)] = 36721, + [SMALL_STATE(5046)] = 36788, + [SMALL_STATE(5047)] = 36863, + [SMALL_STATE(5048)] = 36934, + [SMALL_STATE(5049)] = 37007, + [SMALL_STATE(5050)] = 37076, + [SMALL_STATE(5051)] = 37141, + [SMALL_STATE(5052)] = 37206, + [SMALL_STATE(5053)] = 37275, + [SMALL_STATE(5054)] = 37346, + [SMALL_STATE(5055)] = 37419, + [SMALL_STATE(5056)] = 37484, + [SMALL_STATE(5057)] = 37553, + [SMALL_STATE(5058)] = 37622, + [SMALL_STATE(5059)] = 37695, + [SMALL_STATE(5060)] = 37772, + [SMALL_STATE(5061)] = 37845, + [SMALL_STATE(5062)] = 37918, + [SMALL_STATE(5063)] = 37987, + [SMALL_STATE(5064)] = 38062, + [SMALL_STATE(5065)] = 38135, + [SMALL_STATE(5066)] = 38208, + [SMALL_STATE(5067)] = 38273, + [SMALL_STATE(5068)] = 38346, + [SMALL_STATE(5069)] = 38411, + [SMALL_STATE(5070)] = 38480, + [SMALL_STATE(5071)] = 38553, + [SMALL_STATE(5072)] = 38625, + [SMALL_STATE(5073)] = 38689, + [SMALL_STATE(5074)] = 38753, + [SMALL_STATE(5075)] = 38819, + [SMALL_STATE(5076)] = 38891, + [SMALL_STATE(5077)] = 38955, + [SMALL_STATE(5078)] = 39019, + [SMALL_STATE(5079)] = 39089, + [SMALL_STATE(5080)] = 39153, + [SMALL_STATE(5081)] = 39225, + [SMALL_STATE(5082)] = 39289, + [SMALL_STATE(5083)] = 39353, + [SMALL_STATE(5084)] = 39417, + [SMALL_STATE(5085)] = 39481, + [SMALL_STATE(5086)] = 39545, + [SMALL_STATE(5087)] = 39609, + [SMALL_STATE(5088)] = 39673, + [SMALL_STATE(5089)] = 39737, + [SMALL_STATE(5090)] = 39809, + [SMALL_STATE(5091)] = 39873, + [SMALL_STATE(5092)] = 39937, + [SMALL_STATE(5093)] = 40001, + [SMALL_STATE(5094)] = 40065, + [SMALL_STATE(5095)] = 40129, + [SMALL_STATE(5096)] = 40201, + [SMALL_STATE(5097)] = 40265, + [SMALL_STATE(5098)] = 40329, + [SMALL_STATE(5099)] = 40401, + [SMALL_STATE(5100)] = 40465, + [SMALL_STATE(5101)] = 40529, + [SMALL_STATE(5102)] = 40593, + [SMALL_STATE(5103)] = 40657, + [SMALL_STATE(5104)] = 40721, + [SMALL_STATE(5105)] = 40785, + [SMALL_STATE(5106)] = 40853, + [SMALL_STATE(5107)] = 40917, + [SMALL_STATE(5108)] = 40983, + [SMALL_STATE(5109)] = 41047, + [SMALL_STATE(5110)] = 41113, + [SMALL_STATE(5111)] = 41179, + [SMALL_STATE(5112)] = 41243, + [SMALL_STATE(5113)] = 41307, + [SMALL_STATE(5114)] = 41371, + [SMALL_STATE(5115)] = 41435, + [SMALL_STATE(5116)] = 41501, + [SMALL_STATE(5117)] = 41565, + [SMALL_STATE(5118)] = 41637, + [SMALL_STATE(5119)] = 41701, + [SMALL_STATE(5120)] = 41765, + [SMALL_STATE(5121)] = 41831, + [SMALL_STATE(5122)] = 41903, + [SMALL_STATE(5123)] = 41967, + [SMALL_STATE(5124)] = 42031, + [SMALL_STATE(5125)] = 42095, + [SMALL_STATE(5126)] = 42159, + [SMALL_STATE(5127)] = 42225, + [SMALL_STATE(5128)] = 42289, + [SMALL_STATE(5129)] = 42353, + [SMALL_STATE(5130)] = 42417, + [SMALL_STATE(5131)] = 42481, + [SMALL_STATE(5132)] = 42545, + [SMALL_STATE(5133)] = 42615, + [SMALL_STATE(5134)] = 42679, + [SMALL_STATE(5135)] = 42743, + [SMALL_STATE(5136)] = 42807, + [SMALL_STATE(5137)] = 42871, + [SMALL_STATE(5138)] = 42935, + [SMALL_STATE(5139)] = 42999, + [SMALL_STATE(5140)] = 43063, + [SMALL_STATE(5141)] = 43127, + [SMALL_STATE(5142)] = 43191, + [SMALL_STATE(5143)] = 43255, + [SMALL_STATE(5144)] = 43319, + [SMALL_STATE(5145)] = 43383, + [SMALL_STATE(5146)] = 43447, + [SMALL_STATE(5147)] = 43511, + [SMALL_STATE(5148)] = 43581, + [SMALL_STATE(5149)] = 43651, + [SMALL_STATE(5150)] = 43715, + [SMALL_STATE(5151)] = 43779, + [SMALL_STATE(5152)] = 43849, + [SMALL_STATE(5153)] = 43913, + [SMALL_STATE(5154)] = 43977, + [SMALL_STATE(5155)] = 44045, + [SMALL_STATE(5156)] = 44109, + [SMALL_STATE(5157)] = 44173, + [SMALL_STATE(5158)] = 44237, + [SMALL_STATE(5159)] = 44301, + [SMALL_STATE(5160)] = 44367, + [SMALL_STATE(5161)] = 44431, + [SMALL_STATE(5162)] = 44495, + [SMALL_STATE(5163)] = 44559, + [SMALL_STATE(5164)] = 44623, + [SMALL_STATE(5165)] = 44695, + [SMALL_STATE(5166)] = 44759, + [SMALL_STATE(5167)] = 44823, + [SMALL_STATE(5168)] = 44887, + [SMALL_STATE(5169)] = 44951, + [SMALL_STATE(5170)] = 45021, + [SMALL_STATE(5171)] = 45085, + [SMALL_STATE(5172)] = 45149, + [SMALL_STATE(5173)] = 45213, + [SMALL_STATE(5174)] = 45285, + [SMALL_STATE(5175)] = 45349, + [SMALL_STATE(5176)] = 45413, + [SMALL_STATE(5177)] = 45477, + [SMALL_STATE(5178)] = 45541, + [SMALL_STATE(5179)] = 45605, + [SMALL_STATE(5180)] = 45677, + [SMALL_STATE(5181)] = 45741, + [SMALL_STATE(5182)] = 45805, + [SMALL_STATE(5183)] = 45869, + [SMALL_STATE(5184)] = 45933, + [SMALL_STATE(5185)] = 45997, + [SMALL_STATE(5186)] = 46061, + [SMALL_STATE(5187)] = 46125, + [SMALL_STATE(5188)] = 46189, + [SMALL_STATE(5189)] = 46261, + [SMALL_STATE(5190)] = 46325, + [SMALL_STATE(5191)] = 46397, + [SMALL_STATE(5192)] = 46461, + [SMALL_STATE(5193)] = 46525, + [SMALL_STATE(5194)] = 46589, + [SMALL_STATE(5195)] = 46653, + [SMALL_STATE(5196)] = 46717, + [SMALL_STATE(5197)] = 46789, + [SMALL_STATE(5198)] = 46853, + [SMALL_STATE(5199)] = 46917, + [SMALL_STATE(5200)] = 46981, + [SMALL_STATE(5201)] = 47045, + [SMALL_STATE(5202)] = 47109, + [SMALL_STATE(5203)] = 47173, + [SMALL_STATE(5204)] = 47245, + [SMALL_STATE(5205)] = 47309, + [SMALL_STATE(5206)] = 47373, + [SMALL_STATE(5207)] = 47445, + [SMALL_STATE(5208)] = 47519, + [SMALL_STATE(5209)] = 47583, + [SMALL_STATE(5210)] = 47647, + [SMALL_STATE(5211)] = 47711, + [SMALL_STATE(5212)] = 47777, + [SMALL_STATE(5213)] = 47851, + [SMALL_STATE(5214)] = 47915, + [SMALL_STATE(5215)] = 47979, + [SMALL_STATE(5216)] = 48043, + [SMALL_STATE(5217)] = 48111, + [SMALL_STATE(5218)] = 48175, + [SMALL_STATE(5219)] = 48239, + [SMALL_STATE(5220)] = 48311, + [SMALL_STATE(5221)] = 48375, + [SMALL_STATE(5222)] = 48439, + [SMALL_STATE(5223)] = 48503, + [SMALL_STATE(5224)] = 48577, + [SMALL_STATE(5225)] = 48641, + [SMALL_STATE(5226)] = 48705, + [SMALL_STATE(5227)] = 48769, + [SMALL_STATE(5228)] = 48833, + [SMALL_STATE(5229)] = 48897, + [SMALL_STATE(5230)] = 48971, + [SMALL_STATE(5231)] = 49035, + [SMALL_STATE(5232)] = 49099, + [SMALL_STATE(5233)] = 49163, + [SMALL_STATE(5234)] = 49237, + [SMALL_STATE(5235)] = 49311, + [SMALL_STATE(5236)] = 49375, + [SMALL_STATE(5237)] = 49439, + [SMALL_STATE(5238)] = 49511, + [SMALL_STATE(5239)] = 49575, + [SMALL_STATE(5240)] = 49649, + [SMALL_STATE(5241)] = 49713, + [SMALL_STATE(5242)] = 49777, + [SMALL_STATE(5243)] = 49841, + [SMALL_STATE(5244)] = 49913, + [SMALL_STATE(5245)] = 49977, + [SMALL_STATE(5246)] = 50041, + [SMALL_STATE(5247)] = 50105, + [SMALL_STATE(5248)] = 50169, + [SMALL_STATE(5249)] = 50233, + [SMALL_STATE(5250)] = 50297, + [SMALL_STATE(5251)] = 50369, + [SMALL_STATE(5252)] = 50433, + [SMALL_STATE(5253)] = 50497, + [SMALL_STATE(5254)] = 50561, + [SMALL_STATE(5255)] = 50625, + [SMALL_STATE(5256)] = 50689, + [SMALL_STATE(5257)] = 50753, + [SMALL_STATE(5258)] = 50817, + [SMALL_STATE(5259)] = 50881, + [SMALL_STATE(5260)] = 50945, + [SMALL_STATE(5261)] = 51009, + [SMALL_STATE(5262)] = 51073, + [SMALL_STATE(5263)] = 51137, + [SMALL_STATE(5264)] = 51211, + [SMALL_STATE(5265)] = 51275, + [SMALL_STATE(5266)] = 51345, + [SMALL_STATE(5267)] = 51412, + [SMALL_STATE(5268)] = 51489, + [SMALL_STATE(5269)] = 51556, + [SMALL_STATE(5270)] = 51623, + [SMALL_STATE(5271)] = 51690, + [SMALL_STATE(5272)] = 51757, + [SMALL_STATE(5273)] = 51824, + [SMALL_STATE(5274)] = 51891, + [SMALL_STATE(5275)] = 51960, + [SMALL_STATE(5276)] = 52027, + [SMALL_STATE(5277)] = 52092, + [SMALL_STATE(5278)] = 52157, + [SMALL_STATE(5279)] = 52222, + [SMALL_STATE(5280)] = 52287, + [SMALL_STATE(5281)] = 52354, + [SMALL_STATE(5282)] = 52419, + [SMALL_STATE(5283)] = 52484, + [SMALL_STATE(5284)] = 52553, + [SMALL_STATE(5285)] = 52622, + [SMALL_STATE(5286)] = 52687, + [SMALL_STATE(5287)] = 52764, + [SMALL_STATE(5288)] = 52831, + [SMALL_STATE(5289)] = 52898, + [SMALL_STATE(5290)] = 52965, + [SMALL_STATE(5291)] = 53034, + [SMALL_STATE(5292)] = 53101, + [SMALL_STATE(5293)] = 53178, + [SMALL_STATE(5294)] = 53245, + [SMALL_STATE(5295)] = 53312, + [SMALL_STATE(5296)] = 53379, + [SMALL_STATE(5297)] = 53446, + [SMALL_STATE(5298)] = 53513, + [SMALL_STATE(5299)] = 53580, + [SMALL_STATE(5300)] = 53647, + [SMALL_STATE(5301)] = 53714, + [SMALL_STATE(5302)] = 53781, + [SMALL_STATE(5303)] = 53858, + [SMALL_STATE(5304)] = 53935, + [SMALL_STATE(5305)] = 54012, + [SMALL_STATE(5306)] = 54079, + [SMALL_STATE(5307)] = 54156, + [SMALL_STATE(5308)] = 54223, + [SMALL_STATE(5309)] = 54296, + [SMALL_STATE(5310)] = 54363, + [SMALL_STATE(5311)] = 54440, + [SMALL_STATE(5312)] = 54517, + [SMALL_STATE(5313)] = 54584, + [SMALL_STATE(5314)] = 54661, + [SMALL_STATE(5315)] = 54728, + [SMALL_STATE(5316)] = 54795, + [SMALL_STATE(5317)] = 54857, + [SMALL_STATE(5318)] = 54919, + [SMALL_STATE(5319)] = 54987, + [SMALL_STATE(5320)] = 55061, + [SMALL_STATE(5321)] = 55135, + [SMALL_STATE(5322)] = 55201, + [SMALL_STATE(5323)] = 55275, + [SMALL_STATE(5324)] = 55337, + [SMALL_STATE(5325)] = 55401, + [SMALL_STATE(5326)] = 55475, + [SMALL_STATE(5327)] = 55543, + [SMALL_STATE(5328)] = 55615, + [SMALL_STATE(5329)] = 55721, + [SMALL_STATE(5330)] = 55789, + [SMALL_STATE(5331)] = 55851, + [SMALL_STATE(5332)] = 55957, + [SMALL_STATE(5333)] = 56021, + [SMALL_STATE(5334)] = 56085, + [SMALL_STATE(5335)] = 56157, + [SMALL_STATE(5336)] = 56219, + [SMALL_STATE(5337)] = 56281, + [SMALL_STATE(5338)] = 56343, + [SMALL_STATE(5339)] = 56415, + [SMALL_STATE(5340)] = 56481, + [SMALL_STATE(5341)] = 56547, + [SMALL_STATE(5342)] = 56609, + [SMALL_STATE(5343)] = 56671, + [SMALL_STATE(5344)] = 56735, + [SMALL_STATE(5345)] = 56797, + [SMALL_STATE(5346)] = 56867, + [SMALL_STATE(5347)] = 56929, + [SMALL_STATE(5348)] = 56991, + [SMALL_STATE(5349)] = 57055, + [SMALL_STATE(5350)] = 57117, + [SMALL_STATE(5351)] = 57191, + [SMALL_STATE(5352)] = 57253, + [SMALL_STATE(5353)] = 57317, + [SMALL_STATE(5354)] = 57379, + [SMALL_STATE(5355)] = 57443, + [SMALL_STATE(5356)] = 57507, + [SMALL_STATE(5357)] = 57569, + [SMALL_STATE(5358)] = 57631, + [SMALL_STATE(5359)] = 57693, + [SMALL_STATE(5360)] = 57755, + [SMALL_STATE(5361)] = 57817, + [SMALL_STATE(5362)] = 57879, + [SMALL_STATE(5363)] = 57985, + [SMALL_STATE(5364)] = 58047, + [SMALL_STATE(5365)] = 58109, + [SMALL_STATE(5366)] = 58171, + [SMALL_STATE(5367)] = 58239, + [SMALL_STATE(5368)] = 58303, + [SMALL_STATE(5369)] = 58365, + [SMALL_STATE(5370)] = 58427, + [SMALL_STATE(5371)] = 58489, + [SMALL_STATE(5372)] = 58563, + [SMALL_STATE(5373)] = 58639, + [SMALL_STATE(5374)] = 58701, + [SMALL_STATE(5375)] = 58765, + [SMALL_STATE(5376)] = 58827, + [SMALL_STATE(5377)] = 58933, + [SMALL_STATE(5378)] = 58995, + [SMALL_STATE(5379)] = 59057, + [SMALL_STATE(5380)] = 59131, + [SMALL_STATE(5381)] = 59207, + [SMALL_STATE(5382)] = 59269, + [SMALL_STATE(5383)] = 59331, + [SMALL_STATE(5384)] = 59405, + [SMALL_STATE(5385)] = 59467, + [SMALL_STATE(5386)] = 59529, + [SMALL_STATE(5387)] = 59591, + [SMALL_STATE(5388)] = 59667, + [SMALL_STATE(5389)] = 59729, + [SMALL_STATE(5390)] = 59803, + [SMALL_STATE(5391)] = 59865, + [SMALL_STATE(5392)] = 59927, + [SMALL_STATE(5393)] = 60003, + [SMALL_STATE(5394)] = 60065, + [SMALL_STATE(5395)] = 60127, + [SMALL_STATE(5396)] = 60203, + [SMALL_STATE(5397)] = 60277, + [SMALL_STATE(5398)] = 60339, + [SMALL_STATE(5399)] = 60401, + [SMALL_STATE(5400)] = 60463, + [SMALL_STATE(5401)] = 60525, + [SMALL_STATE(5402)] = 60589, + [SMALL_STATE(5403)] = 60653, + [SMALL_STATE(5404)] = 60715, + [SMALL_STATE(5405)] = 60777, + [SMALL_STATE(5406)] = 60839, + [SMALL_STATE(5407)] = 60901, + [SMALL_STATE(5408)] = 60963, + [SMALL_STATE(5409)] = 61027, + [SMALL_STATE(5410)] = 61091, + [SMALL_STATE(5411)] = 61153, + [SMALL_STATE(5412)] = 61215, + [SMALL_STATE(5413)] = 61277, + [SMALL_STATE(5414)] = 61339, + [SMALL_STATE(5415)] = 61401, + [SMALL_STATE(5416)] = 61463, + [SMALL_STATE(5417)] = 61525, + [SMALL_STATE(5418)] = 61587, + [SMALL_STATE(5419)] = 61649, + [SMALL_STATE(5420)] = 61711, + [SMALL_STATE(5421)] = 61773, + [SMALL_STATE(5422)] = 61835, + [SMALL_STATE(5423)] = 61897, + [SMALL_STATE(5424)] = 61959, + [SMALL_STATE(5425)] = 62021, + [SMALL_STATE(5426)] = 62083, + [SMALL_STATE(5427)] = 62152, + [SMALL_STATE(5428)] = 62221, + [SMALL_STATE(5429)] = 62292, + [SMALL_STATE(5430)] = 62363, + [SMALL_STATE(5431)] = 62434, + [SMALL_STATE(5432)] = 62535, + [SMALL_STATE(5433)] = 62598, + [SMALL_STATE(5434)] = 62667, + [SMALL_STATE(5435)] = 62738, + [SMALL_STATE(5436)] = 62803, + [SMALL_STATE(5437)] = 62904, + [SMALL_STATE(5438)] = 62975, + [SMALL_STATE(5439)] = 63038, + [SMALL_STATE(5440)] = 63139, + [SMALL_STATE(5441)] = 63204, + [SMALL_STATE(5442)] = 63269, + [SMALL_STATE(5443)] = 63330, + [SMALL_STATE(5444)] = 63395, + [SMALL_STATE(5445)] = 63458, + [SMALL_STATE(5446)] = 63529, + [SMALL_STATE(5447)] = 63600, + [SMALL_STATE(5448)] = 63671, + [SMALL_STATE(5449)] = 63734, + [SMALL_STATE(5450)] = 63805, + [SMALL_STATE(5451)] = 63868, + [SMALL_STATE(5452)] = 63937, + [SMALL_STATE(5453)] = 64038, + [SMALL_STATE(5454)] = 64143, + [SMALL_STATE(5455)] = 64248, + [SMALL_STATE(5456)] = 64319, + [SMALL_STATE(5457)] = 64388, + [SMALL_STATE(5458)] = 64457, + [SMALL_STATE(5459)] = 64518, + [SMALL_STATE(5460)] = 64589, + [SMALL_STATE(5461)] = 64660, + [SMALL_STATE(5462)] = 64729, + [SMALL_STATE(5463)] = 64800, + [SMALL_STATE(5464)] = 64873, + [SMALL_STATE(5465)] = 64942, + [SMALL_STATE(5466)] = 65013, + [SMALL_STATE(5467)] = 65074, + [SMALL_STATE(5468)] = 65147, + [SMALL_STATE(5469)] = 65218, + [SMALL_STATE(5470)] = 65279, + [SMALL_STATE(5471)] = 65348, + [SMALL_STATE(5472)] = 65419, + [SMALL_STATE(5473)] = 65492, + [SMALL_STATE(5474)] = 65565, + [SMALL_STATE(5475)] = 65666, + [SMALL_STATE(5476)] = 65737, + [SMALL_STATE(5477)] = 65808, + [SMALL_STATE(5478)] = 65913, + [SMALL_STATE(5479)] = 65982, + [SMALL_STATE(5480)] = 66055, + [SMALL_STATE(5481)] = 66126, + [SMALL_STATE(5482)] = 66231, + [SMALL_STATE(5483)] = 66299, + [SMALL_STATE(5484)] = 66367, + [SMALL_STATE(5485)] = 66427, + [SMALL_STATE(5486)] = 66489, + [SMALL_STATE(5487)] = 66589, + [SMALL_STATE(5488)] = 66649, + [SMALL_STATE(5489)] = 66717, + [SMALL_STATE(5490)] = 66777, + [SMALL_STATE(5491)] = 66877, + [SMALL_STATE(5492)] = 66977, + [SMALL_STATE(5493)] = 67077, + [SMALL_STATE(5494)] = 67177, + [SMALL_STATE(5495)] = 67277, + [SMALL_STATE(5496)] = 67377, + [SMALL_STATE(5497)] = 67477, + [SMALL_STATE(5498)] = 67543, + [SMALL_STATE(5499)] = 67643, + [SMALL_STATE(5500)] = 67725, + [SMALL_STATE(5501)] = 67789, + [SMALL_STATE(5502)] = 67853, + [SMALL_STATE(5503)] = 67953, + [SMALL_STATE(5504)] = 68013, + [SMALL_STATE(5505)] = 68083, + [SMALL_STATE(5506)] = 68153, + [SMALL_STATE(5507)] = 68223, + [SMALL_STATE(5508)] = 68323, + [SMALL_STATE(5509)] = 68391, + [SMALL_STATE(5510)] = 68459, + [SMALL_STATE(5511)] = 68525, + [SMALL_STATE(5512)] = 68589, + [SMALL_STATE(5513)] = 68689, + [SMALL_STATE(5514)] = 68789, + [SMALL_STATE(5515)] = 68889, + [SMALL_STATE(5516)] = 68959, + [SMALL_STATE(5517)] = 69029, + [SMALL_STATE(5518)] = 69111, + [SMALL_STATE(5519)] = 69181, + [SMALL_STATE(5520)] = 69281, + [SMALL_STATE(5521)] = 69381, + [SMALL_STATE(5522)] = 69481, + [SMALL_STATE(5523)] = 69551, + [SMALL_STATE(5524)] = 69651, + [SMALL_STATE(5525)] = 69715, + [SMALL_STATE(5526)] = 69783, + [SMALL_STATE(5527)] = 69853, + [SMALL_STATE(5528)] = 69921, + [SMALL_STATE(5529)] = 69991, + [SMALL_STATE(5530)] = 70061, + [SMALL_STATE(5531)] = 70131, + [SMALL_STATE(5532)] = 70193, + [SMALL_STATE(5533)] = 70261, + [SMALL_STATE(5534)] = 70329, + [SMALL_STATE(5535)] = 70397, + [SMALL_STATE(5536)] = 70456, + [SMALL_STATE(5537)] = 70519, + [SMALL_STATE(5538)] = 70584, + [SMALL_STATE(5539)] = 70681, + [SMALL_STATE(5540)] = 70744, + [SMALL_STATE(5541)] = 70841, + [SMALL_STATE(5542)] = 70936, + [SMALL_STATE(5543)] = 70999, + [SMALL_STATE(5544)] = 71062, + [SMALL_STATE(5545)] = 71159, + [SMALL_STATE(5546)] = 71256, + [SMALL_STATE(5547)] = 71323, + [SMALL_STATE(5548)] = 71382, + [SMALL_STATE(5549)] = 71449, + [SMALL_STATE(5550)] = 71544, + [SMALL_STATE(5551)] = 71641, + [SMALL_STATE(5552)] = 71704, + [SMALL_STATE(5553)] = 71771, + [SMALL_STATE(5554)] = 71868, + [SMALL_STATE(5555)] = 71933, + [SMALL_STATE(5556)] = 72030, + [SMALL_STATE(5557)] = 72127, + [SMALL_STATE(5558)] = 72188, + [SMALL_STATE(5559)] = 72285, + [SMALL_STATE(5560)] = 72384, + [SMALL_STATE(5561)] = 72481, + [SMALL_STATE(5562)] = 72540, + [SMALL_STATE(5563)] = 72639, + [SMALL_STATE(5564)] = 72706, + [SMALL_STATE(5565)] = 72805, + [SMALL_STATE(5566)] = 72902, + [SMALL_STATE(5567)] = 73001, + [SMALL_STATE(5568)] = 73068, + [SMALL_STATE(5569)] = 73127, + [SMALL_STATE(5570)] = 73226, + [SMALL_STATE(5571)] = 73293, + [SMALL_STATE(5572)] = 73352, + [SMALL_STATE(5573)] = 73449, + [SMALL_STATE(5574)] = 73508, + [SMALL_STATE(5575)] = 73607, + [SMALL_STATE(5576)] = 73702, + [SMALL_STATE(5577)] = 73761, + [SMALL_STATE(5578)] = 73828, + [SMALL_STATE(5579)] = 73927, + [SMALL_STATE(5580)] = 73988, + [SMALL_STATE(5581)] = 74055, + [SMALL_STATE(5582)] = 74152, + [SMALL_STATE(5583)] = 74251, + [SMALL_STATE(5584)] = 74318, + [SMALL_STATE(5585)] = 74413, + [SMALL_STATE(5586)] = 74472, + [SMALL_STATE(5587)] = 74571, + [SMALL_STATE(5588)] = 74632, + [SMALL_STATE(5589)] = 74729, + [SMALL_STATE(5590)] = 74826, + [SMALL_STATE(5591)] = 74887, + [SMALL_STATE(5592)] = 74986, + [SMALL_STATE(5593)] = 75053, + [SMALL_STATE(5594)] = 75112, + [SMALL_STATE(5595)] = 75207, + [SMALL_STATE(5596)] = 75304, + [SMALL_STATE(5597)] = 75401, + [SMALL_STATE(5598)] = 75500, + [SMALL_STATE(5599)] = 75597, + [SMALL_STATE(5600)] = 75656, + [SMALL_STATE(5601)] = 75755, + [SMALL_STATE(5602)] = 75854, + [SMALL_STATE(5603)] = 75912, + [SMALL_STATE(5604)] = 75992, + [SMALL_STATE(5605)] = 76056, + [SMALL_STATE(5606)] = 76114, + [SMALL_STATE(5607)] = 76208, + [SMALL_STATE(5608)] = 76302, + [SMALL_STATE(5609)] = 76396, + [SMALL_STATE(5610)] = 76490, + [SMALL_STATE(5611)] = 76550, + [SMALL_STATE(5612)] = 76612, + [SMALL_STATE(5613)] = 76706, + [SMALL_STATE(5614)] = 76766, + [SMALL_STATE(5615)] = 76826, + [SMALL_STATE(5616)] = 76886, + [SMALL_STATE(5617)] = 76980, + [SMALL_STATE(5618)] = 77042, + [SMALL_STATE(5619)] = 77136, + [SMALL_STATE(5620)] = 77200, + [SMALL_STATE(5621)] = 77280, + [SMALL_STATE(5622)] = 77374, + [SMALL_STATE(5623)] = 77434, + [SMALL_STATE(5624)] = 77493, + [SMALL_STATE(5625)] = 77552, + [SMALL_STATE(5626)] = 77611, + [SMALL_STATE(5627)] = 77670, + [SMALL_STATE(5628)] = 77731, + [SMALL_STATE(5629)] = 77790, + [SMALL_STATE(5630)] = 77851, + [SMALL_STATE(5631)] = 77912, + [SMALL_STATE(5632)] = 77973, + [SMALL_STATE(5633)] = 78034, + [SMALL_STATE(5634)] = 78120, + [SMALL_STATE(5635)] = 78206, + [SMALL_STATE(5636)] = 78292, + [SMALL_STATE(5637)] = 78378, + [SMALL_STATE(5638)] = 78438, + [SMALL_STATE(5639)] = 78494, + [SMALL_STATE(5640)] = 78554, + [SMALL_STATE(5641)] = 78640, + [SMALL_STATE(5642)] = 78698, + [SMALL_STATE(5643)] = 78754, + [SMALL_STATE(5644)] = 78812, + [SMALL_STATE(5645)] = 78870, + [SMALL_STATE(5646)] = 78928, + [SMALL_STATE(5647)] = 78988, + [SMALL_STATE(5648)] = 79044, + [SMALL_STATE(5649)] = 79130, + [SMALL_STATE(5650)] = 79186, + [SMALL_STATE(5651)] = 79276, + [SMALL_STATE(5652)] = 79334, + [SMALL_STATE(5653)] = 79417, + [SMALL_STATE(5654)] = 79476, + [SMALL_STATE(5655)] = 79561, + [SMALL_STATE(5656)] = 79646, + [SMALL_STATE(5657)] = 79731, + [SMALL_STATE(5658)] = 79814, + [SMALL_STATE(5659)] = 79897, + [SMALL_STATE(5660)] = 79980, + [SMALL_STATE(5661)] = 80035, + [SMALL_STATE(5662)] = 80118, + [SMALL_STATE(5663)] = 80201, + [SMALL_STATE(5664)] = 80256, + [SMALL_STATE(5665)] = 80341, + [SMALL_STATE(5666)] = 80424, + [SMALL_STATE(5667)] = 80507, + [SMALL_STATE(5668)] = 80568, + [SMALL_STATE(5669)] = 80653, + [SMALL_STATE(5670)] = 80738, + [SMALL_STATE(5671)] = 80797, + [SMALL_STATE(5672)] = 80856, + [SMALL_STATE(5673)] = 80938, + [SMALL_STATE(5674)] = 81020, + [SMALL_STATE(5675)] = 81102, + [SMALL_STATE(5676)] = 81176, + [SMALL_STATE(5677)] = 81252, + [SMALL_STATE(5678)] = 81334, + [SMALL_STATE(5679)] = 81416, + [SMALL_STATE(5680)] = 81498, + [SMALL_STATE(5681)] = 81580, + [SMALL_STATE(5682)] = 81662, + [SMALL_STATE(5683)] = 81714, + [SMALL_STATE(5684)] = 81766, + [SMALL_STATE(5685)] = 81822, + [SMALL_STATE(5686)] = 81874, + [SMALL_STATE(5687)] = 81928, + [SMALL_STATE(5688)] = 81990, + [SMALL_STATE(5689)] = 82044, + [SMALL_STATE(5690)] = 82096, + [SMALL_STATE(5691)] = 82157, + [SMALL_STATE(5692)] = 82212, + [SMALL_STATE(5693)] = 82267, + [SMALL_STATE(5694)] = 82318, + [SMALL_STATE(5695)] = 82369, + [SMALL_STATE(5696)] = 82424, + [SMALL_STATE(5697)] = 82476, + [SMALL_STATE(5698)] = 82574, + [SMALL_STATE(5699)] = 82624, + [SMALL_STATE(5700)] = 82672, + [SMALL_STATE(5701)] = 82722, + [SMALL_STATE(5702)] = 82770, + [SMALL_STATE(5703)] = 82868, + [SMALL_STATE(5704)] = 82918, + [SMALL_STATE(5705)] = 82966, + [SMALL_STATE(5706)] = 83020, + [SMALL_STATE(5707)] = 83070, + [SMALL_STATE(5708)] = 83120, + [SMALL_STATE(5709)] = 83168, + [SMALL_STATE(5710)] = 83218, + [SMALL_STATE(5711)] = 83316, + [SMALL_STATE(5712)] = 83414, + [SMALL_STATE(5713)] = 83464, + [SMALL_STATE(5714)] = 83512, + [SMALL_STATE(5715)] = 83610, + [SMALL_STATE(5716)] = 83708, + [SMALL_STATE(5717)] = 83756, + [SMALL_STATE(5718)] = 83807, + [SMALL_STATE(5719)] = 83858, + [SMALL_STATE(5720)] = 83909, + [SMALL_STATE(5721)] = 83957, + [SMALL_STATE(5722)] = 84005, + [SMALL_STATE(5723)] = 84053, + [SMALL_STATE(5724)] = 84103, + [SMALL_STATE(5725)] = 84151, + [SMALL_STATE(5726)] = 84241, + [SMALL_STATE(5727)] = 84331, + [SMALL_STATE(5728)] = 84421, + [SMALL_STATE(5729)] = 84469, + [SMALL_STATE(5730)] = 84517, + [SMALL_STATE(5731)] = 84607, + [SMALL_STATE(5732)] = 84697, + [SMALL_STATE(5733)] = 84745, + [SMALL_STATE(5734)] = 84835, + [SMALL_STATE(5735)] = 84925, + [SMALL_STATE(5736)] = 85015, + [SMALL_STATE(5737)] = 85063, + [SMALL_STATE(5738)] = 85111, + [SMALL_STATE(5739)] = 85163, + [SMALL_STATE(5740)] = 85253, + [SMALL_STATE(5741)] = 85343, + [SMALL_STATE(5742)] = 85433, + [SMALL_STATE(5743)] = 85523, + [SMALL_STATE(5744)] = 85571, + [SMALL_STATE(5745)] = 85619, + [SMALL_STATE(5746)] = 85669, + [SMALL_STATE(5747)] = 85759, + [SMALL_STATE(5748)] = 85849, + [SMALL_STATE(5749)] = 85899, + [SMALL_STATE(5750)] = 85947, + [SMALL_STATE(5751)] = 85995, + [SMALL_STATE(5752)] = 86043, + [SMALL_STATE(5753)] = 86091, + [SMALL_STATE(5754)] = 86181, + [SMALL_STATE(5755)] = 86229, + [SMALL_STATE(5756)] = 86277, + [SMALL_STATE(5757)] = 86367, + [SMALL_STATE(5758)] = 86417, + [SMALL_STATE(5759)] = 86467, + [SMALL_STATE(5760)] = 86557, + [SMALL_STATE(5761)] = 86607, + [SMALL_STATE(5762)] = 86655, + [SMALL_STATE(5763)] = 86705, + [SMALL_STATE(5764)] = 86795, + [SMALL_STATE(5765)] = 86885, + [SMALL_STATE(5766)] = 86975, + [SMALL_STATE(5767)] = 87065, + [SMALL_STATE(5768)] = 87112, + [SMALL_STATE(5769)] = 87161, + [SMALL_STATE(5770)] = 87208, + [SMALL_STATE(5771)] = 87254, + [SMALL_STATE(5772)] = 87300, + [SMALL_STATE(5773)] = 87348, + [SMALL_STATE(5774)] = 87394, + [SMALL_STATE(5775)] = 87440, + [SMALL_STATE(5776)] = 87486, + [SMALL_STATE(5777)] = 87532, + [SMALL_STATE(5778)] = 87578, + [SMALL_STATE(5779)] = 87624, + [SMALL_STATE(5780)] = 87670, + [SMALL_STATE(5781)] = 87716, + [SMALL_STATE(5782)] = 87764, + [SMALL_STATE(5783)] = 87810, + [SMALL_STATE(5784)] = 87856, + [SMALL_STATE(5785)] = 87902, + [SMALL_STATE(5786)] = 87950, + [SMALL_STATE(5787)] = 87994, + [SMALL_STATE(5788)] = 88044, + [SMALL_STATE(5789)] = 88090, + [SMALL_STATE(5790)] = 88136, + [SMALL_STATE(5791)] = 88180, + [SMALL_STATE(5792)] = 88226, + [SMALL_STATE(5793)] = 88274, + [SMALL_STATE(5794)] = 88320, + [SMALL_STATE(5795)] = 88364, + [SMALL_STATE(5796)] = 88408, + [SMALL_STATE(5797)] = 88454, + [SMALL_STATE(5798)] = 88498, + [SMALL_STATE(5799)] = 88542, + [SMALL_STATE(5800)] = 88590, + [SMALL_STATE(5801)] = 88634, + [SMALL_STATE(5802)] = 88678, + [SMALL_STATE(5803)] = 88724, + [SMALL_STATE(5804)] = 88768, + [SMALL_STATE(5805)] = 88814, + [SMALL_STATE(5806)] = 88861, + [SMALL_STATE(5807)] = 88910, + [SMALL_STATE(5808)] = 88955, + [SMALL_STATE(5809)] = 88998, + [SMALL_STATE(5810)] = 89047, + [SMALL_STATE(5811)] = 89090, + [SMALL_STATE(5812)] = 89133, + [SMALL_STATE(5813)] = 89180, + [SMALL_STATE(5814)] = 89229, + [SMALL_STATE(5815)] = 89276, + [SMALL_STATE(5816)] = 89320, + [SMALL_STATE(5817)] = 89362, + [SMALL_STATE(5818)] = 89404, + [SMALL_STATE(5819)] = 89448, + [SMALL_STATE(5820)] = 89490, + [SMALL_STATE(5821)] = 89534, + [SMALL_STATE(5822)] = 89576, + [SMALL_STATE(5823)] = 89622, + [SMALL_STATE(5824)] = 89664, + [SMALL_STATE(5825)] = 89706, + [SMALL_STATE(5826)] = 89750, + [SMALL_STATE(5827)] = 89798, + [SMALL_STATE(5828)] = 89846, + [SMALL_STATE(5829)] = 89888, + [SMALL_STATE(5830)] = 89930, + [SMALL_STATE(5831)] = 89972, + [SMALL_STATE(5832)] = 90014, + [SMALL_STATE(5833)] = 90056, + [SMALL_STATE(5834)] = 90098, + [SMALL_STATE(5835)] = 90140, + [SMALL_STATE(5836)] = 90182, + [SMALL_STATE(5837)] = 90224, + [SMALL_STATE(5838)] = 90270, + [SMALL_STATE(5839)] = 90316, + [SMALL_STATE(5840)] = 90362, + [SMALL_STATE(5841)] = 90406, + [SMALL_STATE(5842)] = 90453, + [SMALL_STATE(5843)] = 90496, + [SMALL_STATE(5844)] = 90543, + [SMALL_STATE(5845)] = 90584, + [SMALL_STATE(5846)] = 90625, + [SMALL_STATE(5847)] = 90668, + [SMALL_STATE(5848)] = 90711, + [SMALL_STATE(5849)] = 90754, + [SMALL_STATE(5850)] = 90795, + [SMALL_STATE(5851)] = 90842, + [SMALL_STATE(5852)] = 90884, + [SMALL_STATE(5853)] = 90960, + [SMALL_STATE(5854)] = 91038, + [SMALL_STATE(5855)] = 91080, + [SMALL_STATE(5856)] = 91122, + [SMALL_STATE(5857)] = 91200, + [SMALL_STATE(5858)] = 91242, + [SMALL_STATE(5859)] = 91320, + [SMALL_STATE(5860)] = 91362, + [SMALL_STATE(5861)] = 91404, + [SMALL_STATE(5862)] = 91446, + [SMALL_STATE(5863)] = 91524, + [SMALL_STATE(5864)] = 91570, + [SMALL_STATE(5865)] = 91612, + [SMALL_STATE(5866)] = 91654, + [SMALL_STATE(5867)] = 91696, + [SMALL_STATE(5868)] = 91738, + [SMALL_STATE(5869)] = 91816, + [SMALL_STATE(5870)] = 91894, + [SMALL_STATE(5871)] = 91936, + [SMALL_STATE(5872)] = 91978, + [SMALL_STATE(5873)] = 92020, + [SMALL_STATE(5874)] = 92062, + [SMALL_STATE(5875)] = 92104, + [SMALL_STATE(5876)] = 92146, + [SMALL_STATE(5877)] = 92188, + [SMALL_STATE(5878)] = 92266, + [SMALL_STATE(5879)] = 92308, + [SMALL_STATE(5880)] = 92386, + [SMALL_STATE(5881)] = 92428, + [SMALL_STATE(5882)] = 92506, + [SMALL_STATE(5883)] = 92584, + [SMALL_STATE(5884)] = 92626, + [SMALL_STATE(5885)] = 92704, + [SMALL_STATE(5886)] = 92779, + [SMALL_STATE(5887)] = 92854, + [SMALL_STATE(5888)] = 92929, + [SMALL_STATE(5889)] = 93002, + [SMALL_STATE(5890)] = 93077, + [SMALL_STATE(5891)] = 93152, + [SMALL_STATE(5892)] = 93227, + [SMALL_STATE(5893)] = 93299, + [SMALL_STATE(5894)] = 93371, + [SMALL_STATE(5895)] = 93443, + [SMALL_STATE(5896)] = 93515, + [SMALL_STATE(5897)] = 93587, + [SMALL_STATE(5898)] = 93659, + [SMALL_STATE(5899)] = 93731, + [SMALL_STATE(5900)] = 93803, + [SMALL_STATE(5901)] = 93875, + [SMALL_STATE(5902)] = 93947, + [SMALL_STATE(5903)] = 94019, + [SMALL_STATE(5904)] = 94091, + [SMALL_STATE(5905)] = 94163, + [SMALL_STATE(5906)] = 94235, + [SMALL_STATE(5907)] = 94307, + [SMALL_STATE(5908)] = 94379, + [SMALL_STATE(5909)] = 94451, + [SMALL_STATE(5910)] = 94523, + [SMALL_STATE(5911)] = 94595, + [SMALL_STATE(5912)] = 94667, + [SMALL_STATE(5913)] = 94739, + [SMALL_STATE(5914)] = 94811, + [SMALL_STATE(5915)] = 94883, + [SMALL_STATE(5916)] = 94955, + [SMALL_STATE(5917)] = 95027, + [SMALL_STATE(5918)] = 95099, + [SMALL_STATE(5919)] = 95171, + [SMALL_STATE(5920)] = 95243, + [SMALL_STATE(5921)] = 95315, + [SMALL_STATE(5922)] = 95387, + [SMALL_STATE(5923)] = 95459, + [SMALL_STATE(5924)] = 95531, + [SMALL_STATE(5925)] = 95603, + [SMALL_STATE(5926)] = 95675, + [SMALL_STATE(5927)] = 95747, + [SMALL_STATE(5928)] = 95819, + [SMALL_STATE(5929)] = 95891, + [SMALL_STATE(5930)] = 95963, + [SMALL_STATE(5931)] = 96035, + [SMALL_STATE(5932)] = 96107, + [SMALL_STATE(5933)] = 96179, + [SMALL_STATE(5934)] = 96251, + [SMALL_STATE(5935)] = 96323, + [SMALL_STATE(5936)] = 96395, + [SMALL_STATE(5937)] = 96467, + [SMALL_STATE(5938)] = 96539, + [SMALL_STATE(5939)] = 96611, + [SMALL_STATE(5940)] = 96683, + [SMALL_STATE(5941)] = 96755, + [SMALL_STATE(5942)] = 96827, + [SMALL_STATE(5943)] = 96899, + [SMALL_STATE(5944)] = 96971, + [SMALL_STATE(5945)] = 97043, + [SMALL_STATE(5946)] = 97115, + [SMALL_STATE(5947)] = 97187, + [SMALL_STATE(5948)] = 97259, + [SMALL_STATE(5949)] = 97331, + [SMALL_STATE(5950)] = 97403, + [SMALL_STATE(5951)] = 97475, + [SMALL_STATE(5952)] = 97547, + [SMALL_STATE(5953)] = 97619, + [SMALL_STATE(5954)] = 97691, + [SMALL_STATE(5955)] = 97763, + [SMALL_STATE(5956)] = 97835, + [SMALL_STATE(5957)] = 97907, + [SMALL_STATE(5958)] = 97979, + [SMALL_STATE(5959)] = 98051, + [SMALL_STATE(5960)] = 98123, + [SMALL_STATE(5961)] = 98195, + [SMALL_STATE(5962)] = 98267, + [SMALL_STATE(5963)] = 98339, + [SMALL_STATE(5964)] = 98411, + [SMALL_STATE(5965)] = 98483, + [SMALL_STATE(5966)] = 98555, + [SMALL_STATE(5967)] = 98627, + [SMALL_STATE(5968)] = 98699, + [SMALL_STATE(5969)] = 98771, + [SMALL_STATE(5970)] = 98843, + [SMALL_STATE(5971)] = 98915, + [SMALL_STATE(5972)] = 98987, + [SMALL_STATE(5973)] = 99059, + [SMALL_STATE(5974)] = 99131, + [SMALL_STATE(5975)] = 99203, + [SMALL_STATE(5976)] = 99275, + [SMALL_STATE(5977)] = 99347, + [SMALL_STATE(5978)] = 99419, + [SMALL_STATE(5979)] = 99491, + [SMALL_STATE(5980)] = 99563, + [SMALL_STATE(5981)] = 99635, + [SMALL_STATE(5982)] = 99707, + [SMALL_STATE(5983)] = 99779, + [SMALL_STATE(5984)] = 99851, + [SMALL_STATE(5985)] = 99923, + [SMALL_STATE(5986)] = 99995, + [SMALL_STATE(5987)] = 100067, + [SMALL_STATE(5988)] = 100139, + [SMALL_STATE(5989)] = 100211, + [SMALL_STATE(5990)] = 100283, + [SMALL_STATE(5991)] = 100355, + [SMALL_STATE(5992)] = 100427, + [SMALL_STATE(5993)] = 100499, + [SMALL_STATE(5994)] = 100571, + [SMALL_STATE(5995)] = 100643, + [SMALL_STATE(5996)] = 100715, + [SMALL_STATE(5997)] = 100787, + [SMALL_STATE(5998)] = 100829, + [SMALL_STATE(5999)] = 100901, + [SMALL_STATE(6000)] = 100973, + [SMALL_STATE(6001)] = 101045, + [SMALL_STATE(6002)] = 101117, + [SMALL_STATE(6003)] = 101189, + [SMALL_STATE(6004)] = 101261, + [SMALL_STATE(6005)] = 101333, + [SMALL_STATE(6006)] = 101405, + [SMALL_STATE(6007)] = 101477, + [SMALL_STATE(6008)] = 101549, + [SMALL_STATE(6009)] = 101621, + [SMALL_STATE(6010)] = 101693, + [SMALL_STATE(6011)] = 101765, + [SMALL_STATE(6012)] = 101837, + [SMALL_STATE(6013)] = 101909, + [SMALL_STATE(6014)] = 101981, + [SMALL_STATE(6015)] = 102053, + [SMALL_STATE(6016)] = 102125, + [SMALL_STATE(6017)] = 102197, + [SMALL_STATE(6018)] = 102269, + [SMALL_STATE(6019)] = 102341, + [SMALL_STATE(6020)] = 102413, + [SMALL_STATE(6021)] = 102485, + [SMALL_STATE(6022)] = 102557, + [SMALL_STATE(6023)] = 102629, + [SMALL_STATE(6024)] = 102701, + [SMALL_STATE(6025)] = 102773, + [SMALL_STATE(6026)] = 102845, + [SMALL_STATE(6027)] = 102917, + [SMALL_STATE(6028)] = 102989, + [SMALL_STATE(6029)] = 103061, + [SMALL_STATE(6030)] = 103133, + [SMALL_STATE(6031)] = 103205, + [SMALL_STATE(6032)] = 103277, + [SMALL_STATE(6033)] = 103349, + [SMALL_STATE(6034)] = 103421, + [SMALL_STATE(6035)] = 103493, + [SMALL_STATE(6036)] = 103565, + [SMALL_STATE(6037)] = 103637, + [SMALL_STATE(6038)] = 103709, + [SMALL_STATE(6039)] = 103781, + [SMALL_STATE(6040)] = 103853, + [SMALL_STATE(6041)] = 103925, + [SMALL_STATE(6042)] = 103997, + [SMALL_STATE(6043)] = 104069, + [SMALL_STATE(6044)] = 104141, + [SMALL_STATE(6045)] = 104213, + [SMALL_STATE(6046)] = 104285, + [SMALL_STATE(6047)] = 104357, + [SMALL_STATE(6048)] = 104429, + [SMALL_STATE(6049)] = 104501, + [SMALL_STATE(6050)] = 104573, + [SMALL_STATE(6051)] = 104645, + [SMALL_STATE(6052)] = 104717, + [SMALL_STATE(6053)] = 104789, + [SMALL_STATE(6054)] = 104861, + [SMALL_STATE(6055)] = 104933, + [SMALL_STATE(6056)] = 105005, + [SMALL_STATE(6057)] = 105077, + [SMALL_STATE(6058)] = 105149, + [SMALL_STATE(6059)] = 105221, + [SMALL_STATE(6060)] = 105293, + [SMALL_STATE(6061)] = 105365, + [SMALL_STATE(6062)] = 105437, + [SMALL_STATE(6063)] = 105509, + [SMALL_STATE(6064)] = 105581, + [SMALL_STATE(6065)] = 105653, + [SMALL_STATE(6066)] = 105725, + [SMALL_STATE(6067)] = 105797, + [SMALL_STATE(6068)] = 105869, + [SMALL_STATE(6069)] = 105941, + [SMALL_STATE(6070)] = 106013, + [SMALL_STATE(6071)] = 106085, + [SMALL_STATE(6072)] = 106157, + [SMALL_STATE(6073)] = 106229, + [SMALL_STATE(6074)] = 106301, + [SMALL_STATE(6075)] = 106373, + [SMALL_STATE(6076)] = 106445, + [SMALL_STATE(6077)] = 106517, + [SMALL_STATE(6078)] = 106589, + [SMALL_STATE(6079)] = 106661, + [SMALL_STATE(6080)] = 106733, + [SMALL_STATE(6081)] = 106805, + [SMALL_STATE(6082)] = 106877, + [SMALL_STATE(6083)] = 106949, + [SMALL_STATE(6084)] = 107021, + [SMALL_STATE(6085)] = 107093, + [SMALL_STATE(6086)] = 107165, + [SMALL_STATE(6087)] = 107237, + [SMALL_STATE(6088)] = 107309, + [SMALL_STATE(6089)] = 107381, + [SMALL_STATE(6090)] = 107453, + [SMALL_STATE(6091)] = 107525, + [SMALL_STATE(6092)] = 107597, + [SMALL_STATE(6093)] = 107669, + [SMALL_STATE(6094)] = 107741, + [SMALL_STATE(6095)] = 107813, + [SMALL_STATE(6096)] = 107885, + [SMALL_STATE(6097)] = 107957, + [SMALL_STATE(6098)] = 108029, + [SMALL_STATE(6099)] = 108101, + [SMALL_STATE(6100)] = 108173, + [SMALL_STATE(6101)] = 108245, + [SMALL_STATE(6102)] = 108317, + [SMALL_STATE(6103)] = 108389, + [SMALL_STATE(6104)] = 108461, + [SMALL_STATE(6105)] = 108533, + [SMALL_STATE(6106)] = 108605, + [SMALL_STATE(6107)] = 108677, + [SMALL_STATE(6108)] = 108749, + [SMALL_STATE(6109)] = 108821, + [SMALL_STATE(6110)] = 108893, + [SMALL_STATE(6111)] = 108965, + [SMALL_STATE(6112)] = 109037, + [SMALL_STATE(6113)] = 109109, + [SMALL_STATE(6114)] = 109181, + [SMALL_STATE(6115)] = 109253, + [SMALL_STATE(6116)] = 109325, + [SMALL_STATE(6117)] = 109397, + [SMALL_STATE(6118)] = 109469, + [SMALL_STATE(6119)] = 109541, + [SMALL_STATE(6120)] = 109613, + [SMALL_STATE(6121)] = 109685, + [SMALL_STATE(6122)] = 109757, + [SMALL_STATE(6123)] = 109829, + [SMALL_STATE(6124)] = 109901, + [SMALL_STATE(6125)] = 109973, + [SMALL_STATE(6126)] = 110045, + [SMALL_STATE(6127)] = 110117, + [SMALL_STATE(6128)] = 110189, + [SMALL_STATE(6129)] = 110261, + [SMALL_STATE(6130)] = 110333, + [SMALL_STATE(6131)] = 110405, + [SMALL_STATE(6132)] = 110477, + [SMALL_STATE(6133)] = 110549, + [SMALL_STATE(6134)] = 110621, + [SMALL_STATE(6135)] = 110693, + [SMALL_STATE(6136)] = 110765, + [SMALL_STATE(6137)] = 110837, + [SMALL_STATE(6138)] = 110909, + [SMALL_STATE(6139)] = 110981, + [SMALL_STATE(6140)] = 111053, + [SMALL_STATE(6141)] = 111125, + [SMALL_STATE(6142)] = 111197, + [SMALL_STATE(6143)] = 111269, + [SMALL_STATE(6144)] = 111309, + [SMALL_STATE(6145)] = 111381, + [SMALL_STATE(6146)] = 111421, + [SMALL_STATE(6147)] = 111493, + [SMALL_STATE(6148)] = 111565, + [SMALL_STATE(6149)] = 111637, + [SMALL_STATE(6150)] = 111709, + [SMALL_STATE(6151)] = 111781, + [SMALL_STATE(6152)] = 111853, + [SMALL_STATE(6153)] = 111925, + [SMALL_STATE(6154)] = 111997, + [SMALL_STATE(6155)] = 112069, + [SMALL_STATE(6156)] = 112141, + [SMALL_STATE(6157)] = 112213, + [SMALL_STATE(6158)] = 112285, + [SMALL_STATE(6159)] = 112357, + [SMALL_STATE(6160)] = 112429, + [SMALL_STATE(6161)] = 112501, + [SMALL_STATE(6162)] = 112573, + [SMALL_STATE(6163)] = 112645, + [SMALL_STATE(6164)] = 112717, + [SMALL_STATE(6165)] = 112789, + [SMALL_STATE(6166)] = 112861, + [SMALL_STATE(6167)] = 112933, + [SMALL_STATE(6168)] = 113005, + [SMALL_STATE(6169)] = 113077, + [SMALL_STATE(6170)] = 113149, + [SMALL_STATE(6171)] = 113221, + [SMALL_STATE(6172)] = 113293, + [SMALL_STATE(6173)] = 113365, + [SMALL_STATE(6174)] = 113437, + [SMALL_STATE(6175)] = 113509, + [SMALL_STATE(6176)] = 113581, + [SMALL_STATE(6177)] = 113653, + [SMALL_STATE(6178)] = 113725, + [SMALL_STATE(6179)] = 113765, + [SMALL_STATE(6180)] = 113837, + [SMALL_STATE(6181)] = 113909, + [SMALL_STATE(6182)] = 113981, + [SMALL_STATE(6183)] = 114053, + [SMALL_STATE(6184)] = 114125, + [SMALL_STATE(6185)] = 114197, + [SMALL_STATE(6186)] = 114269, + [SMALL_STATE(6187)] = 114341, + [SMALL_STATE(6188)] = 114413, + [SMALL_STATE(6189)] = 114485, + [SMALL_STATE(6190)] = 114525, + [SMALL_STATE(6191)] = 114597, + [SMALL_STATE(6192)] = 114669, + [SMALL_STATE(6193)] = 114741, + [SMALL_STATE(6194)] = 114813, + [SMALL_STATE(6195)] = 114885, + [SMALL_STATE(6196)] = 114957, + [SMALL_STATE(6197)] = 115029, + [SMALL_STATE(6198)] = 115101, + [SMALL_STATE(6199)] = 115173, + [SMALL_STATE(6200)] = 115245, + [SMALL_STATE(6201)] = 115317, + [SMALL_STATE(6202)] = 115389, + [SMALL_STATE(6203)] = 115461, + [SMALL_STATE(6204)] = 115533, + [SMALL_STATE(6205)] = 115605, + [SMALL_STATE(6206)] = 115677, + [SMALL_STATE(6207)] = 115717, + [SMALL_STATE(6208)] = 115789, + [SMALL_STATE(6209)] = 115861, + [SMALL_STATE(6210)] = 115933, + [SMALL_STATE(6211)] = 116005, + [SMALL_STATE(6212)] = 116045, + [SMALL_STATE(6213)] = 116117, + [SMALL_STATE(6214)] = 116189, + [SMALL_STATE(6215)] = 116261, + [SMALL_STATE(6216)] = 116333, + [SMALL_STATE(6217)] = 116405, + [SMALL_STATE(6218)] = 116477, + [SMALL_STATE(6219)] = 116549, + [SMALL_STATE(6220)] = 116621, + [SMALL_STATE(6221)] = 116693, + [SMALL_STATE(6222)] = 116765, + [SMALL_STATE(6223)] = 116837, + [SMALL_STATE(6224)] = 116909, + [SMALL_STATE(6225)] = 116949, + [SMALL_STATE(6226)] = 117021, + [SMALL_STATE(6227)] = 117093, + [SMALL_STATE(6228)] = 117165, + [SMALL_STATE(6229)] = 117205, + [SMALL_STATE(6230)] = 117277, + [SMALL_STATE(6231)] = 117349, + [SMALL_STATE(6232)] = 117421, + [SMALL_STATE(6233)] = 117493, + [SMALL_STATE(6234)] = 117565, + [SMALL_STATE(6235)] = 117637, + [SMALL_STATE(6236)] = 117709, + [SMALL_STATE(6237)] = 117781, + [SMALL_STATE(6238)] = 117853, + [SMALL_STATE(6239)] = 117925, + [SMALL_STATE(6240)] = 117997, + [SMALL_STATE(6241)] = 118069, + [SMALL_STATE(6242)] = 118141, + [SMALL_STATE(6243)] = 118213, + [SMALL_STATE(6244)] = 118285, + [SMALL_STATE(6245)] = 118357, + [SMALL_STATE(6246)] = 118429, + [SMALL_STATE(6247)] = 118501, + [SMALL_STATE(6248)] = 118573, + [SMALL_STATE(6249)] = 118645, + [SMALL_STATE(6250)] = 118685, + [SMALL_STATE(6251)] = 118757, + [SMALL_STATE(6252)] = 118829, + [SMALL_STATE(6253)] = 118869, + [SMALL_STATE(6254)] = 118941, + [SMALL_STATE(6255)] = 119013, + [SMALL_STATE(6256)] = 119085, + [SMALL_STATE(6257)] = 119157, + [SMALL_STATE(6258)] = 119229, + [SMALL_STATE(6259)] = 119301, + [SMALL_STATE(6260)] = 119373, + [SMALL_STATE(6261)] = 119445, + [SMALL_STATE(6262)] = 119517, + [SMALL_STATE(6263)] = 119589, + [SMALL_STATE(6264)] = 119661, + [SMALL_STATE(6265)] = 119733, + [SMALL_STATE(6266)] = 119805, + [SMALL_STATE(6267)] = 119877, + [SMALL_STATE(6268)] = 119949, + [SMALL_STATE(6269)] = 119989, + [SMALL_STATE(6270)] = 120061, + [SMALL_STATE(6271)] = 120133, + [SMALL_STATE(6272)] = 120205, + [SMALL_STATE(6273)] = 120277, + [SMALL_STATE(6274)] = 120349, + [SMALL_STATE(6275)] = 120421, + [SMALL_STATE(6276)] = 120493, + [SMALL_STATE(6277)] = 120565, + [SMALL_STATE(6278)] = 120637, + [SMALL_STATE(6279)] = 120709, + [SMALL_STATE(6280)] = 120781, + [SMALL_STATE(6281)] = 120853, + [SMALL_STATE(6282)] = 120925, + [SMALL_STATE(6283)] = 120997, + [SMALL_STATE(6284)] = 121069, + [SMALL_STATE(6285)] = 121141, + [SMALL_STATE(6286)] = 121213, + [SMALL_STATE(6287)] = 121285, + [SMALL_STATE(6288)] = 121357, + [SMALL_STATE(6289)] = 121429, + [SMALL_STATE(6290)] = 121501, + [SMALL_STATE(6291)] = 121573, + [SMALL_STATE(6292)] = 121645, + [SMALL_STATE(6293)] = 121717, + [SMALL_STATE(6294)] = 121789, + [SMALL_STATE(6295)] = 121861, + [SMALL_STATE(6296)] = 121933, + [SMALL_STATE(6297)] = 122005, + [SMALL_STATE(6298)] = 122077, + [SMALL_STATE(6299)] = 122149, + [SMALL_STATE(6300)] = 122221, + [SMALL_STATE(6301)] = 122293, + [SMALL_STATE(6302)] = 122365, + [SMALL_STATE(6303)] = 122437, + [SMALL_STATE(6304)] = 122509, + [SMALL_STATE(6305)] = 122581, + [SMALL_STATE(6306)] = 122653, + [SMALL_STATE(6307)] = 122725, + [SMALL_STATE(6308)] = 122797, + [SMALL_STATE(6309)] = 122869, + [SMALL_STATE(6310)] = 122941, + [SMALL_STATE(6311)] = 123013, + [SMALL_STATE(6312)] = 123085, + [SMALL_STATE(6313)] = 123157, + [SMALL_STATE(6314)] = 123229, + [SMALL_STATE(6315)] = 123301, + [SMALL_STATE(6316)] = 123373, + [SMALL_STATE(6317)] = 123445, + [SMALL_STATE(6318)] = 123517, + [SMALL_STATE(6319)] = 123589, + [SMALL_STATE(6320)] = 123661, + [SMALL_STATE(6321)] = 123733, + [SMALL_STATE(6322)] = 123805, + [SMALL_STATE(6323)] = 123877, + [SMALL_STATE(6324)] = 123949, + [SMALL_STATE(6325)] = 124021, + [SMALL_STATE(6326)] = 124093, + [SMALL_STATE(6327)] = 124165, + [SMALL_STATE(6328)] = 124237, + [SMALL_STATE(6329)] = 124309, + [SMALL_STATE(6330)] = 124381, + [SMALL_STATE(6331)] = 124453, + [SMALL_STATE(6332)] = 124525, + [SMALL_STATE(6333)] = 124597, + [SMALL_STATE(6334)] = 124669, + [SMALL_STATE(6335)] = 124741, + [SMALL_STATE(6336)] = 124813, + [SMALL_STATE(6337)] = 124885, + [SMALL_STATE(6338)] = 124957, + [SMALL_STATE(6339)] = 125029, + [SMALL_STATE(6340)] = 125101, + [SMALL_STATE(6341)] = 125173, + [SMALL_STATE(6342)] = 125245, + [SMALL_STATE(6343)] = 125317, + [SMALL_STATE(6344)] = 125389, + [SMALL_STATE(6345)] = 125461, + [SMALL_STATE(6346)] = 125533, + [SMALL_STATE(6347)] = 125605, + [SMALL_STATE(6348)] = 125677, + [SMALL_STATE(6349)] = 125749, + [SMALL_STATE(6350)] = 125821, + [SMALL_STATE(6351)] = 125893, + [SMALL_STATE(6352)] = 125933, + [SMALL_STATE(6353)] = 126005, + [SMALL_STATE(6354)] = 126077, + [SMALL_STATE(6355)] = 126149, + [SMALL_STATE(6356)] = 126221, + [SMALL_STATE(6357)] = 126293, + [SMALL_STATE(6358)] = 126365, + [SMALL_STATE(6359)] = 126437, + [SMALL_STATE(6360)] = 126509, + [SMALL_STATE(6361)] = 126581, + [SMALL_STATE(6362)] = 126653, + [SMALL_STATE(6363)] = 126725, + [SMALL_STATE(6364)] = 126797, + [SMALL_STATE(6365)] = 126869, + [SMALL_STATE(6366)] = 126941, + [SMALL_STATE(6367)] = 127013, + [SMALL_STATE(6368)] = 127085, + [SMALL_STATE(6369)] = 127157, + [SMALL_STATE(6370)] = 127229, + [SMALL_STATE(6371)] = 127301, + [SMALL_STATE(6372)] = 127373, + [SMALL_STATE(6373)] = 127445, + [SMALL_STATE(6374)] = 127517, + [SMALL_STATE(6375)] = 127589, + [SMALL_STATE(6376)] = 127661, + [SMALL_STATE(6377)] = 127733, + [SMALL_STATE(6378)] = 127805, + [SMALL_STATE(6379)] = 127877, + [SMALL_STATE(6380)] = 127949, + [SMALL_STATE(6381)] = 128021, + [SMALL_STATE(6382)] = 128093, + [SMALL_STATE(6383)] = 128165, + [SMALL_STATE(6384)] = 128237, + [SMALL_STATE(6385)] = 128309, + [SMALL_STATE(6386)] = 128381, + [SMALL_STATE(6387)] = 128453, + [SMALL_STATE(6388)] = 128525, + [SMALL_STATE(6389)] = 128597, + [SMALL_STATE(6390)] = 128669, + [SMALL_STATE(6391)] = 128741, + [SMALL_STATE(6392)] = 128813, + [SMALL_STATE(6393)] = 128885, + [SMALL_STATE(6394)] = 128957, + [SMALL_STATE(6395)] = 129029, + [SMALL_STATE(6396)] = 129101, + [SMALL_STATE(6397)] = 129173, + [SMALL_STATE(6398)] = 129245, + [SMALL_STATE(6399)] = 129317, + [SMALL_STATE(6400)] = 129389, + [SMALL_STATE(6401)] = 129461, + [SMALL_STATE(6402)] = 129533, + [SMALL_STATE(6403)] = 129605, + [SMALL_STATE(6404)] = 129677, + [SMALL_STATE(6405)] = 129749, + [SMALL_STATE(6406)] = 129821, + [SMALL_STATE(6407)] = 129893, + [SMALL_STATE(6408)] = 129965, + [SMALL_STATE(6409)] = 130037, + [SMALL_STATE(6410)] = 130109, + [SMALL_STATE(6411)] = 130181, + [SMALL_STATE(6412)] = 130252, + [SMALL_STATE(6413)] = 130323, + [SMALL_STATE(6414)] = 130394, + [SMALL_STATE(6415)] = 130465, + [SMALL_STATE(6416)] = 130536, + [SMALL_STATE(6417)] = 130607, + [SMALL_STATE(6418)] = 130678, + [SMALL_STATE(6419)] = 130749, + [SMALL_STATE(6420)] = 130820, + [SMALL_STATE(6421)] = 130891, + [SMALL_STATE(6422)] = 130962, + [SMALL_STATE(6423)] = 131033, + [SMALL_STATE(6424)] = 131104, + [SMALL_STATE(6425)] = 131175, + [SMALL_STATE(6426)] = 131246, + [SMALL_STATE(6427)] = 131317, + [SMALL_STATE(6428)] = 131388, + [SMALL_STATE(6429)] = 131459, + [SMALL_STATE(6430)] = 131530, + [SMALL_STATE(6431)] = 131601, + [SMALL_STATE(6432)] = 131672, + [SMALL_STATE(6433)] = 131743, + [SMALL_STATE(6434)] = 131814, + [SMALL_STATE(6435)] = 131885, + [SMALL_STATE(6436)] = 131956, + [SMALL_STATE(6437)] = 132027, + [SMALL_STATE(6438)] = 132098, + [SMALL_STATE(6439)] = 132169, + [SMALL_STATE(6440)] = 132240, + [SMALL_STATE(6441)] = 132311, + [SMALL_STATE(6442)] = 132382, + [SMALL_STATE(6443)] = 132453, + [SMALL_STATE(6444)] = 132524, + [SMALL_STATE(6445)] = 132595, + [SMALL_STATE(6446)] = 132666, + [SMALL_STATE(6447)] = 132737, + [SMALL_STATE(6448)] = 132808, + [SMALL_STATE(6449)] = 132879, + [SMALL_STATE(6450)] = 132950, + [SMALL_STATE(6451)] = 133021, + [SMALL_STATE(6452)] = 133092, + [SMALL_STATE(6453)] = 133158, + [SMALL_STATE(6454)] = 133224, + [SMALL_STATE(6455)] = 133290, + [SMALL_STATE(6456)] = 133356, + [SMALL_STATE(6457)] = 133422, + [SMALL_STATE(6458)] = 133488, + [SMALL_STATE(6459)] = 133556, + [SMALL_STATE(6460)] = 133624, + [SMALL_STATE(6461)] = 133690, + [SMALL_STATE(6462)] = 133756, + [SMALL_STATE(6463)] = 133824, + [SMALL_STATE(6464)] = 133890, + [SMALL_STATE(6465)] = 133956, + [SMALL_STATE(6466)] = 134022, + [SMALL_STATE(6467)] = 134088, + [SMALL_STATE(6468)] = 134154, + [SMALL_STATE(6469)] = 134220, + [SMALL_STATE(6470)] = 134286, + [SMALL_STATE(6471)] = 134352, + [SMALL_STATE(6472)] = 134418, + [SMALL_STATE(6473)] = 134486, + [SMALL_STATE(6474)] = 134552, + [SMALL_STATE(6475)] = 134618, + [SMALL_STATE(6476)] = 134684, + [SMALL_STATE(6477)] = 134750, + [SMALL_STATE(6478)] = 134816, + [SMALL_STATE(6479)] = 134884, + [SMALL_STATE(6480)] = 134952, + [SMALL_STATE(6481)] = 135018, + [SMALL_STATE(6482)] = 135084, + [SMALL_STATE(6483)] = 135150, + [SMALL_STATE(6484)] = 135218, + [SMALL_STATE(6485)] = 135284, + [SMALL_STATE(6486)] = 135352, + [SMALL_STATE(6487)] = 135420, + [SMALL_STATE(6488)] = 135486, + [SMALL_STATE(6489)] = 135554, + [SMALL_STATE(6490)] = 135620, + [SMALL_STATE(6491)] = 135688, + [SMALL_STATE(6492)] = 135754, + [SMALL_STATE(6493)] = 135820, + [SMALL_STATE(6494)] = 135886, + [SMALL_STATE(6495)] = 135954, + [SMALL_STATE(6496)] = 136022, + [SMALL_STATE(6497)] = 136088, + [SMALL_STATE(6498)] = 136154, + [SMALL_STATE(6499)] = 136220, + [SMALL_STATE(6500)] = 136286, + [SMALL_STATE(6501)] = 136354, + [SMALL_STATE(6502)] = 136420, + [SMALL_STATE(6503)] = 136488, + [SMALL_STATE(6504)] = 136554, + [SMALL_STATE(6505)] = 136620, + [SMALL_STATE(6506)] = 136686, + [SMALL_STATE(6507)] = 136754, + [SMALL_STATE(6508)] = 136820, + [SMALL_STATE(6509)] = 136886, + [SMALL_STATE(6510)] = 136952, + [SMALL_STATE(6511)] = 137020, + [SMALL_STATE(6512)] = 137088, + [SMALL_STATE(6513)] = 137154, + [SMALL_STATE(6514)] = 137222, + [SMALL_STATE(6515)] = 137290, + [SMALL_STATE(6516)] = 137356, + [SMALL_STATE(6517)] = 137424, + [SMALL_STATE(6518)] = 137492, + [SMALL_STATE(6519)] = 137558, + [SMALL_STATE(6520)] = 137626, + [SMALL_STATE(6521)] = 137694, + [SMALL_STATE(6522)] = 137760, + [SMALL_STATE(6523)] = 137826, + [SMALL_STATE(6524)] = 137892, + [SMALL_STATE(6525)] = 137960, + [SMALL_STATE(6526)] = 138026, + [SMALL_STATE(6527)] = 138092, + [SMALL_STATE(6528)] = 138158, + [SMALL_STATE(6529)] = 138224, + [SMALL_STATE(6530)] = 138292, + [SMALL_STATE(6531)] = 138358, + [SMALL_STATE(6532)] = 138426, + [SMALL_STATE(6533)] = 138494, + [SMALL_STATE(6534)] = 138560, + [SMALL_STATE(6535)] = 138622, + [SMALL_STATE(6536)] = 138684, + [SMALL_STATE(6537)] = 138746, + [SMALL_STATE(6538)] = 138808, + [SMALL_STATE(6539)] = 138844, + [SMALL_STATE(6540)] = 138906, + [SMALL_STATE(6541)] = 138968, + [SMALL_STATE(6542)] = 139030, + [SMALL_STATE(6543)] = 139092, + [SMALL_STATE(6544)] = 139154, + [SMALL_STATE(6545)] = 139216, + [SMALL_STATE(6546)] = 139278, + [SMALL_STATE(6547)] = 139340, + [SMALL_STATE(6548)] = 139402, + [SMALL_STATE(6549)] = 139464, + [SMALL_STATE(6550)] = 139500, + [SMALL_STATE(6551)] = 139562, + [SMALL_STATE(6552)] = 139624, + [SMALL_STATE(6553)] = 139686, + [SMALL_STATE(6554)] = 139748, + [SMALL_STATE(6555)] = 139810, + [SMALL_STATE(6556)] = 139872, + [SMALL_STATE(6557)] = 139934, + [SMALL_STATE(6558)] = 139996, + [SMALL_STATE(6559)] = 140058, + [SMALL_STATE(6560)] = 140120, + [SMALL_STATE(6561)] = 140182, + [SMALL_STATE(6562)] = 140244, + [SMALL_STATE(6563)] = 140306, + [SMALL_STATE(6564)] = 140368, + [SMALL_STATE(6565)] = 140430, + [SMALL_STATE(6566)] = 140492, + [SMALL_STATE(6567)] = 140554, + [SMALL_STATE(6568)] = 140616, + [SMALL_STATE(6569)] = 140678, + [SMALL_STATE(6570)] = 140740, + [SMALL_STATE(6571)] = 140802, + [SMALL_STATE(6572)] = 140864, + [SMALL_STATE(6573)] = 140926, + [SMALL_STATE(6574)] = 140988, + [SMALL_STATE(6575)] = 141050, + [SMALL_STATE(6576)] = 141112, + [SMALL_STATE(6577)] = 141174, + [SMALL_STATE(6578)] = 141236, + [SMALL_STATE(6579)] = 141298, + [SMALL_STATE(6580)] = 141360, + [SMALL_STATE(6581)] = 141422, + [SMALL_STATE(6582)] = 141484, + [SMALL_STATE(6583)] = 141546, + [SMALL_STATE(6584)] = 141608, + [SMALL_STATE(6585)] = 141670, + [SMALL_STATE(6586)] = 141732, + [SMALL_STATE(6587)] = 141794, + [SMALL_STATE(6588)] = 141856, + [SMALL_STATE(6589)] = 141918, + [SMALL_STATE(6590)] = 141980, + [SMALL_STATE(6591)] = 142019, + [SMALL_STATE(6592)] = 142057, + [SMALL_STATE(6593)] = 142095, + [SMALL_STATE(6594)] = 142153, + [SMALL_STATE(6595)] = 142211, + [SMALL_STATE(6596)] = 142269, + [SMALL_STATE(6597)] = 142327, + [SMALL_STATE(6598)] = 142385, + [SMALL_STATE(6599)] = 142443, + [SMALL_STATE(6600)] = 142501, + [SMALL_STATE(6601)] = 142559, + [SMALL_STATE(6602)] = 142617, + [SMALL_STATE(6603)] = 142672, + [SMALL_STATE(6604)] = 142727, + [SMALL_STATE(6605)] = 142782, + [SMALL_STATE(6606)] = 142815, + [SMALL_STATE(6607)] = 142870, + [SMALL_STATE(6608)] = 142925, + [SMALL_STATE(6609)] = 142980, + [SMALL_STATE(6610)] = 143035, + [SMALL_STATE(6611)] = 143090, + [SMALL_STATE(6612)] = 143145, + [SMALL_STATE(6613)] = 143200, + [SMALL_STATE(6614)] = 143255, + [SMALL_STATE(6615)] = 143310, + [SMALL_STATE(6616)] = 143365, + [SMALL_STATE(6617)] = 143420, + [SMALL_STATE(6618)] = 143475, + [SMALL_STATE(6619)] = 143530, + [SMALL_STATE(6620)] = 143585, + [SMALL_STATE(6621)] = 143640, + [SMALL_STATE(6622)] = 143695, + [SMALL_STATE(6623)] = 143728, + [SMALL_STATE(6624)] = 143782, + [SMALL_STATE(6625)] = 143834, + [SMALL_STATE(6626)] = 143886, + [SMALL_STATE(6627)] = 143940, + [SMALL_STATE(6628)] = 143992, + [SMALL_STATE(6629)] = 144046, + [SMALL_STATE(6630)] = 144098, + [SMALL_STATE(6631)] = 144152, + [SMALL_STATE(6632)] = 144206, + [SMALL_STATE(6633)] = 144260, + [SMALL_STATE(6634)] = 144314, + [SMALL_STATE(6635)] = 144368, + [SMALL_STATE(6636)] = 144422, + [SMALL_STATE(6637)] = 144476, + [SMALL_STATE(6638)] = 144528, + [SMALL_STATE(6639)] = 144582, + [SMALL_STATE(6640)] = 144636, + [SMALL_STATE(6641)] = 144690, + [SMALL_STATE(6642)] = 144744, + [SMALL_STATE(6643)] = 144796, + [SMALL_STATE(6644)] = 144850, + [SMALL_STATE(6645)] = 144902, + [SMALL_STATE(6646)] = 144956, + [SMALL_STATE(6647)] = 145008, + [SMALL_STATE(6648)] = 145062, + [SMALL_STATE(6649)] = 145116, + [SMALL_STATE(6650)] = 145168, + [SMALL_STATE(6651)] = 145220, + [SMALL_STATE(6652)] = 145274, + [SMALL_STATE(6653)] = 145328, + [SMALL_STATE(6654)] = 145382, + [SMALL_STATE(6655)] = 145434, + [SMALL_STATE(6656)] = 145488, + [SMALL_STATE(6657)] = 145542, + [SMALL_STATE(6658)] = 145596, + [SMALL_STATE(6659)] = 145648, + [SMALL_STATE(6660)] = 145702, + [SMALL_STATE(6661)] = 145754, + [SMALL_STATE(6662)] = 145808, + [SMALL_STATE(6663)] = 145844, + [SMALL_STATE(6664)] = 145896, + [SMALL_STATE(6665)] = 145948, + [SMALL_STATE(6666)] = 146000, + [SMALL_STATE(6667)] = 146054, + [SMALL_STATE(6668)] = 146108, + [SMALL_STATE(6669)] = 146160, + [SMALL_STATE(6670)] = 146214, + [SMALL_STATE(6671)] = 146266, + [SMALL_STATE(6672)] = 146320, + [SMALL_STATE(6673)] = 146372, + [SMALL_STATE(6674)] = 146426, + [SMALL_STATE(6675)] = 146480, + [SMALL_STATE(6676)] = 146534, + [SMALL_STATE(6677)] = 146588, + [SMALL_STATE(6678)] = 146642, + [SMALL_STATE(6679)] = 146696, + [SMALL_STATE(6680)] = 146750, + [SMALL_STATE(6681)] = 146804, + [SMALL_STATE(6682)] = 146858, + [SMALL_STATE(6683)] = 146912, + [SMALL_STATE(6684)] = 146966, + [SMALL_STATE(6685)] = 147020, + [SMALL_STATE(6686)] = 147072, + [SMALL_STATE(6687)] = 147124, + [SMALL_STATE(6688)] = 147173, + [SMALL_STATE(6689)] = 147208, + [SMALL_STATE(6690)] = 147257, + [SMALL_STATE(6691)] = 147306, + [SMALL_STATE(6692)] = 147355, + [SMALL_STATE(6693)] = 147404, + [SMALL_STATE(6694)] = 147453, + [SMALL_STATE(6695)] = 147502, + [SMALL_STATE(6696)] = 147551, + [SMALL_STATE(6697)] = 147600, + [SMALL_STATE(6698)] = 147649, + [SMALL_STATE(6699)] = 147698, + [SMALL_STATE(6700)] = 147747, + [SMALL_STATE(6701)] = 147796, + [SMALL_STATE(6702)] = 147845, + [SMALL_STATE(6703)] = 147894, + [SMALL_STATE(6704)] = 147943, + [SMALL_STATE(6705)] = 147992, + [SMALL_STATE(6706)] = 148041, + [SMALL_STATE(6707)] = 148090, + [SMALL_STATE(6708)] = 148139, + [SMALL_STATE(6709)] = 148188, + [SMALL_STATE(6710)] = 148237, + [SMALL_STATE(6711)] = 148286, + [SMALL_STATE(6712)] = 148335, + [SMALL_STATE(6713)] = 148384, + [SMALL_STATE(6714)] = 148433, + [SMALL_STATE(6715)] = 148482, + [SMALL_STATE(6716)] = 148531, + [SMALL_STATE(6717)] = 148580, + [SMALL_STATE(6718)] = 148629, + [SMALL_STATE(6719)] = 148678, + [SMALL_STATE(6720)] = 148727, + [SMALL_STATE(6721)] = 148776, + [SMALL_STATE(6722)] = 148825, + [SMALL_STATE(6723)] = 148874, + [SMALL_STATE(6724)] = 148923, + [SMALL_STATE(6725)] = 148972, + [SMALL_STATE(6726)] = 149021, + [SMALL_STATE(6727)] = 149070, + [SMALL_STATE(6728)] = 149119, + [SMALL_STATE(6729)] = 149168, + [SMALL_STATE(6730)] = 149217, + [SMALL_STATE(6731)] = 149266, + [SMALL_STATE(6732)] = 149315, + [SMALL_STATE(6733)] = 149364, + [SMALL_STATE(6734)] = 149413, + [SMALL_STATE(6735)] = 149462, + [SMALL_STATE(6736)] = 149511, + [SMALL_STATE(6737)] = 149560, + [SMALL_STATE(6738)] = 149609, + [SMALL_STATE(6739)] = 149644, + [SMALL_STATE(6740)] = 149693, + [SMALL_STATE(6741)] = 149742, + [SMALL_STATE(6742)] = 149791, + [SMALL_STATE(6743)] = 149840, + [SMALL_STATE(6744)] = 149870, + [SMALL_STATE(6745)] = 149900, + [SMALL_STATE(6746)] = 149930, + [SMALL_STATE(6747)] = 149960, + [SMALL_STATE(6748)] = 150011, + [SMALL_STATE(6749)] = 150062, + [SMALL_STATE(6750)] = 150111, + [SMALL_STATE(6751)] = 150162, + [SMALL_STATE(6752)] = 150211, + [SMALL_STATE(6753)] = 150260, + [SMALL_STATE(6754)] = 150309, + [SMALL_STATE(6755)] = 150358, + [SMALL_STATE(6756)] = 150407, + [SMALL_STATE(6757)] = 150456, + [SMALL_STATE(6758)] = 150507, + [SMALL_STATE(6759)] = 150556, + [SMALL_STATE(6760)] = 150607, + [SMALL_STATE(6761)] = 150658, + [SMALL_STATE(6762)] = 150709, + [SMALL_STATE(6763)] = 150758, + [SMALL_STATE(6764)] = 150809, + [SMALL_STATE(6765)] = 150858, + [SMALL_STATE(6766)] = 150907, + [SMALL_STATE(6767)] = 150956, + [SMALL_STATE(6768)] = 151005, + [SMALL_STATE(6769)] = 151054, + [SMALL_STATE(6770)] = 151103, + [SMALL_STATE(6771)] = 151152, + [SMALL_STATE(6772)] = 151201, + [SMALL_STATE(6773)] = 151250, + [SMALL_STATE(6774)] = 151299, + [SMALL_STATE(6775)] = 151350, + [SMALL_STATE(6776)] = 151399, + [SMALL_STATE(6777)] = 151448, + [SMALL_STATE(6778)] = 151497, + [SMALL_STATE(6779)] = 151546, + [SMALL_STATE(6780)] = 151597, + [SMALL_STATE(6781)] = 151646, + [SMALL_STATE(6782)] = 151697, + [SMALL_STATE(6783)] = 151748, + [SMALL_STATE(6784)] = 151799, + [SMALL_STATE(6785)] = 151850, + [SMALL_STATE(6786)] = 151899, + [SMALL_STATE(6787)] = 151950, + [SMALL_STATE(6788)] = 152001, + [SMALL_STATE(6789)] = 152052, + [SMALL_STATE(6790)] = 152101, + [SMALL_STATE(6791)] = 152150, + [SMALL_STATE(6792)] = 152201, + [SMALL_STATE(6793)] = 152252, + [SMALL_STATE(6794)] = 152301, + [SMALL_STATE(6795)] = 152350, + [SMALL_STATE(6796)] = 152401, + [SMALL_STATE(6797)] = 152452, + [SMALL_STATE(6798)] = 152503, + [SMALL_STATE(6799)] = 152552, + [SMALL_STATE(6800)] = 152601, + [SMALL_STATE(6801)] = 152650, + [SMALL_STATE(6802)] = 152701, + [SMALL_STATE(6803)] = 152750, + [SMALL_STATE(6804)] = 152801, + [SMALL_STATE(6805)] = 152850, + [SMALL_STATE(6806)] = 152899, + [SMALL_STATE(6807)] = 152948, + [SMALL_STATE(6808)] = 152997, + [SMALL_STATE(6809)] = 153048, + [SMALL_STATE(6810)] = 153097, + [SMALL_STATE(6811)] = 153146, + [SMALL_STATE(6812)] = 153195, + [SMALL_STATE(6813)] = 153244, + [SMALL_STATE(6814)] = 153295, + [SMALL_STATE(6815)] = 153344, + [SMALL_STATE(6816)] = 153393, + [SMALL_STATE(6817)] = 153444, + [SMALL_STATE(6818)] = 153495, + [SMALL_STATE(6819)] = 153544, + [SMALL_STATE(6820)] = 153595, + [SMALL_STATE(6821)] = 153644, + [SMALL_STATE(6822)] = 153693, + [SMALL_STATE(6823)] = 153742, + [SMALL_STATE(6824)] = 153793, + [SMALL_STATE(6825)] = 153844, + [SMALL_STATE(6826)] = 153893, + [SMALL_STATE(6827)] = 153942, + [SMALL_STATE(6828)] = 153993, + [SMALL_STATE(6829)] = 154042, + [SMALL_STATE(6830)] = 154091, + [SMALL_STATE(6831)] = 154140, + [SMALL_STATE(6832)] = 154191, + [SMALL_STATE(6833)] = 154240, + [SMALL_STATE(6834)] = 154291, + [SMALL_STATE(6835)] = 154340, + [SMALL_STATE(6836)] = 154391, + [SMALL_STATE(6837)] = 154440, + [SMALL_STATE(6838)] = 154489, + [SMALL_STATE(6839)] = 154540, + [SMALL_STATE(6840)] = 154589, + [SMALL_STATE(6841)] = 154640, + [SMALL_STATE(6842)] = 154691, + [SMALL_STATE(6843)] = 154742, + [SMALL_STATE(6844)] = 154793, + [SMALL_STATE(6845)] = 154844, + [SMALL_STATE(6846)] = 154895, + [SMALL_STATE(6847)] = 154946, + [SMALL_STATE(6848)] = 154995, + [SMALL_STATE(6849)] = 155046, + [SMALL_STATE(6850)] = 155095, + [SMALL_STATE(6851)] = 155146, + [SMALL_STATE(6852)] = 155197, + [SMALL_STATE(6853)] = 155246, + [SMALL_STATE(6854)] = 155297, + [SMALL_STATE(6855)] = 155348, + [SMALL_STATE(6856)] = 155399, + [SMALL_STATE(6857)] = 155450, + [SMALL_STATE(6858)] = 155501, + [SMALL_STATE(6859)] = 155552, + [SMALL_STATE(6860)] = 155603, + [SMALL_STATE(6861)] = 155654, + [SMALL_STATE(6862)] = 155703, + [SMALL_STATE(6863)] = 155754, + [SMALL_STATE(6864)] = 155805, + [SMALL_STATE(6865)] = 155856, + [SMALL_STATE(6866)] = 155907, + [SMALL_STATE(6867)] = 155958, + [SMALL_STATE(6868)] = 156009, + [SMALL_STATE(6869)] = 156060, + [SMALL_STATE(6870)] = 156111, + [SMALL_STATE(6871)] = 156162, + [SMALL_STATE(6872)] = 156213, + [SMALL_STATE(6873)] = 156264, + [SMALL_STATE(6874)] = 156315, + [SMALL_STATE(6875)] = 156364, + [SMALL_STATE(6876)] = 156415, + [SMALL_STATE(6877)] = 156466, + [SMALL_STATE(6878)] = 156515, + [SMALL_STATE(6879)] = 156566, + [SMALL_STATE(6880)] = 156617, + [SMALL_STATE(6881)] = 156666, + [SMALL_STATE(6882)] = 156717, + [SMALL_STATE(6883)] = 156768, + [SMALL_STATE(6884)] = 156819, + [SMALL_STATE(6885)] = 156870, + [SMALL_STATE(6886)] = 156921, + [SMALL_STATE(6887)] = 156970, + [SMALL_STATE(6888)] = 157019, + [SMALL_STATE(6889)] = 157068, + [SMALL_STATE(6890)] = 157117, + [SMALL_STATE(6891)] = 157168, + [SMALL_STATE(6892)] = 157217, + [SMALL_STATE(6893)] = 157266, + [SMALL_STATE(6894)] = 157315, + [SMALL_STATE(6895)] = 157366, + [SMALL_STATE(6896)] = 157417, + [SMALL_STATE(6897)] = 157466, + [SMALL_STATE(6898)] = 157515, + [SMALL_STATE(6899)] = 157564, + [SMALL_STATE(6900)] = 157613, + [SMALL_STATE(6901)] = 157662, + [SMALL_STATE(6902)] = 157711, + [SMALL_STATE(6903)] = 157760, + [SMALL_STATE(6904)] = 157809, + [SMALL_STATE(6905)] = 157858, + [SMALL_STATE(6906)] = 157907, + [SMALL_STATE(6907)] = 157958, + [SMALL_STATE(6908)] = 158007, + [SMALL_STATE(6909)] = 158056, + [SMALL_STATE(6910)] = 158105, + [SMALL_STATE(6911)] = 158154, + [SMALL_STATE(6912)] = 158203, + [SMALL_STATE(6913)] = 158252, + [SMALL_STATE(6914)] = 158301, + [SMALL_STATE(6915)] = 158350, + [SMALL_STATE(6916)] = 158399, + [SMALL_STATE(6917)] = 158448, + [SMALL_STATE(6918)] = 158497, + [SMALL_STATE(6919)] = 158546, + [SMALL_STATE(6920)] = 158595, + [SMALL_STATE(6921)] = 158644, + [SMALL_STATE(6922)] = 158695, + [SMALL_STATE(6923)] = 158744, + [SMALL_STATE(6924)] = 158793, + [SMALL_STATE(6925)] = 158842, + [SMALL_STATE(6926)] = 158893, + [SMALL_STATE(6927)] = 158942, + [SMALL_STATE(6928)] = 158993, + [SMALL_STATE(6929)] = 159044, + [SMALL_STATE(6930)] = 159093, + [SMALL_STATE(6931)] = 159142, + [SMALL_STATE(6932)] = 159191, + [SMALL_STATE(6933)] = 159240, + [SMALL_STATE(6934)] = 159289, + [SMALL_STATE(6935)] = 159338, + [SMALL_STATE(6936)] = 159387, + [SMALL_STATE(6937)] = 159438, + [SMALL_STATE(6938)] = 159489, + [SMALL_STATE(6939)] = 159540, + [SMALL_STATE(6940)] = 159589, + [SMALL_STATE(6941)] = 159638, + [SMALL_STATE(6942)] = 159687, + [SMALL_STATE(6943)] = 159736, + [SMALL_STATE(6944)] = 159787, + [SMALL_STATE(6945)] = 159838, + [SMALL_STATE(6946)] = 159889, + [SMALL_STATE(6947)] = 159938, + [SMALL_STATE(6948)] = 159987, + [SMALL_STATE(6949)] = 160038, + [SMALL_STATE(6950)] = 160089, + [SMALL_STATE(6951)] = 160138, + [SMALL_STATE(6952)] = 160189, + [SMALL_STATE(6953)] = 160240, + [SMALL_STATE(6954)] = 160291, + [SMALL_STATE(6955)] = 160342, + [SMALL_STATE(6956)] = 160393, + [SMALL_STATE(6957)] = 160444, + [SMALL_STATE(6958)] = 160493, + [SMALL_STATE(6959)] = 160542, + [SMALL_STATE(6960)] = 160593, + [SMALL_STATE(6961)] = 160642, + [SMALL_STATE(6962)] = 160691, + [SMALL_STATE(6963)] = 160740, + [SMALL_STATE(6964)] = 160791, + [SMALL_STATE(6965)] = 160840, + [SMALL_STATE(6966)] = 160891, + [SMALL_STATE(6967)] = 160942, + [SMALL_STATE(6968)] = 160993, + [SMALL_STATE(6969)] = 161044, + [SMALL_STATE(6970)] = 161093, + [SMALL_STATE(6971)] = 161144, + [SMALL_STATE(6972)] = 161193, + [SMALL_STATE(6973)] = 161242, + [SMALL_STATE(6974)] = 161293, + [SMALL_STATE(6975)] = 161342, + [SMALL_STATE(6976)] = 161391, + [SMALL_STATE(6977)] = 161440, + [SMALL_STATE(6978)] = 161491, + [SMALL_STATE(6979)] = 161540, + [SMALL_STATE(6980)] = 161591, + [SMALL_STATE(6981)] = 161640, + [SMALL_STATE(6982)] = 161691, + [SMALL_STATE(6983)] = 161742, + [SMALL_STATE(6984)] = 161793, + [SMALL_STATE(6985)] = 161842, + [SMALL_STATE(6986)] = 161893, + [SMALL_STATE(6987)] = 161944, + [SMALL_STATE(6988)] = 161995, + [SMALL_STATE(6989)] = 162046, + [SMALL_STATE(6990)] = 162095, + [SMALL_STATE(6991)] = 162144, + [SMALL_STATE(6992)] = 162193, + [SMALL_STATE(6993)] = 162242, + [SMALL_STATE(6994)] = 162293, + [SMALL_STATE(6995)] = 162342, + [SMALL_STATE(6996)] = 162393, + [SMALL_STATE(6997)] = 162442, + [SMALL_STATE(6998)] = 162493, + [SMALL_STATE(6999)] = 162542, + [SMALL_STATE(7000)] = 162593, + [SMALL_STATE(7001)] = 162642, + [SMALL_STATE(7002)] = 162693, + [SMALL_STATE(7003)] = 162742, + [SMALL_STATE(7004)] = 162793, + [SMALL_STATE(7005)] = 162842, + [SMALL_STATE(7006)] = 162893, + [SMALL_STATE(7007)] = 162944, + [SMALL_STATE(7008)] = 162993, + [SMALL_STATE(7009)] = 163042, + [SMALL_STATE(7010)] = 163091, + [SMALL_STATE(7011)] = 163140, + [SMALL_STATE(7012)] = 163189, + [SMALL_STATE(7013)] = 163240, + [SMALL_STATE(7014)] = 163291, + [SMALL_STATE(7015)] = 163342, + [SMALL_STATE(7016)] = 163393, + [SMALL_STATE(7017)] = 163442, + [SMALL_STATE(7018)] = 163491, + [SMALL_STATE(7019)] = 163540, + [SMALL_STATE(7020)] = 163591, + [SMALL_STATE(7021)] = 163640, + [SMALL_STATE(7022)] = 163691, + [SMALL_STATE(7023)] = 163740, + [SMALL_STATE(7024)] = 163791, + [SMALL_STATE(7025)] = 163840, + [SMALL_STATE(7026)] = 163889, + [SMALL_STATE(7027)] = 163940, + [SMALL_STATE(7028)] = 163991, + [SMALL_STATE(7029)] = 164040, + [SMALL_STATE(7030)] = 164091, + [SMALL_STATE(7031)] = 164140, + [SMALL_STATE(7032)] = 164191, + [SMALL_STATE(7033)] = 164240, + [SMALL_STATE(7034)] = 164289, + [SMALL_STATE(7035)] = 164338, + [SMALL_STATE(7036)] = 164387, + [SMALL_STATE(7037)] = 164438, + [SMALL_STATE(7038)] = 164489, + [SMALL_STATE(7039)] = 164540, + [SMALL_STATE(7040)] = 164589, + [SMALL_STATE(7041)] = 164640, + [SMALL_STATE(7042)] = 164691, + [SMALL_STATE(7043)] = 164740, + [SMALL_STATE(7044)] = 164789, + [SMALL_STATE(7045)] = 164840, + [SMALL_STATE(7046)] = 164889, + [SMALL_STATE(7047)] = 164938, + [SMALL_STATE(7048)] = 164989, + [SMALL_STATE(7049)] = 165040, + [SMALL_STATE(7050)] = 165091, + [SMALL_STATE(7051)] = 165140, + [SMALL_STATE(7052)] = 165189, + [SMALL_STATE(7053)] = 165240, + [SMALL_STATE(7054)] = 165289, + [SMALL_STATE(7055)] = 165340, + [SMALL_STATE(7056)] = 165391, + [SMALL_STATE(7057)] = 165440, + [SMALL_STATE(7058)] = 165489, + [SMALL_STATE(7059)] = 165540, + [SMALL_STATE(7060)] = 165591, + [SMALL_STATE(7061)] = 165642, + [SMALL_STATE(7062)] = 165691, + [SMALL_STATE(7063)] = 165742, + [SMALL_STATE(7064)] = 165793, + [SMALL_STATE(7065)] = 165844, + [SMALL_STATE(7066)] = 165895, + [SMALL_STATE(7067)] = 165946, + [SMALL_STATE(7068)] = 165997, + [SMALL_STATE(7069)] = 166048, + [SMALL_STATE(7070)] = 166099, + [SMALL_STATE(7071)] = 166150, + [SMALL_STATE(7072)] = 166201, + [SMALL_STATE(7073)] = 166252, + [SMALL_STATE(7074)] = 166303, + [SMALL_STATE(7075)] = 166354, + [SMALL_STATE(7076)] = 166405, + [SMALL_STATE(7077)] = 166456, + [SMALL_STATE(7078)] = 166507, + [SMALL_STATE(7079)] = 166558, + [SMALL_STATE(7080)] = 166609, + [SMALL_STATE(7081)] = 166660, + [SMALL_STATE(7082)] = 166711, + [SMALL_STATE(7083)] = 166762, + [SMALL_STATE(7084)] = 166813, + [SMALL_STATE(7085)] = 166864, + [SMALL_STATE(7086)] = 166915, + [SMALL_STATE(7087)] = 166966, + [SMALL_STATE(7088)] = 167017, + [SMALL_STATE(7089)] = 167068, + [SMALL_STATE(7090)] = 167119, + [SMALL_STATE(7091)] = 167170, + [SMALL_STATE(7092)] = 167221, + [SMALL_STATE(7093)] = 167272, + [SMALL_STATE(7094)] = 167323, + [SMALL_STATE(7095)] = 167374, + [SMALL_STATE(7096)] = 167425, + [SMALL_STATE(7097)] = 167476, + [SMALL_STATE(7098)] = 167527, + [SMALL_STATE(7099)] = 167578, + [SMALL_STATE(7100)] = 167629, + [SMALL_STATE(7101)] = 167680, + [SMALL_STATE(7102)] = 167729, + [SMALL_STATE(7103)] = 167780, + [SMALL_STATE(7104)] = 167831, + [SMALL_STATE(7105)] = 167882, + [SMALL_STATE(7106)] = 167933, + [SMALL_STATE(7107)] = 167984, + [SMALL_STATE(7108)] = 168035, + [SMALL_STATE(7109)] = 168086, + [SMALL_STATE(7110)] = 168137, + [SMALL_STATE(7111)] = 168188, + [SMALL_STATE(7112)] = 168239, + [SMALL_STATE(7113)] = 168290, + [SMALL_STATE(7114)] = 168341, + [SMALL_STATE(7115)] = 168392, + [SMALL_STATE(7116)] = 168443, + [SMALL_STATE(7117)] = 168494, + [SMALL_STATE(7118)] = 168545, + [SMALL_STATE(7119)] = 168596, + [SMALL_STATE(7120)] = 168647, + [SMALL_STATE(7121)] = 168698, + [SMALL_STATE(7122)] = 168749, + [SMALL_STATE(7123)] = 168800, + [SMALL_STATE(7124)] = 168851, + [SMALL_STATE(7125)] = 168902, + [SMALL_STATE(7126)] = 168953, + [SMALL_STATE(7127)] = 169004, + [SMALL_STATE(7128)] = 169055, + [SMALL_STATE(7129)] = 169106, + [SMALL_STATE(7130)] = 169157, + [SMALL_STATE(7131)] = 169208, + [SMALL_STATE(7132)] = 169259, + [SMALL_STATE(7133)] = 169310, + [SMALL_STATE(7134)] = 169361, + [SMALL_STATE(7135)] = 169412, + [SMALL_STATE(7136)] = 169460, + [SMALL_STATE(7137)] = 169504, + [SMALL_STATE(7138)] = 169548, + [SMALL_STATE(7139)] = 169586, + [SMALL_STATE(7140)] = 169622, + [SMALL_STATE(7141)] = 169666, + [SMALL_STATE(7142)] = 169710, + [SMALL_STATE(7143)] = 169754, + [SMALL_STATE(7144)] = 169798, + [SMALL_STATE(7145)] = 169846, + [SMALL_STATE(7146)] = 169890, + [SMALL_STATE(7147)] = 169934, + [SMALL_STATE(7148)] = 169978, + [SMALL_STATE(7149)] = 170022, + [SMALL_STATE(7150)] = 170070, + [SMALL_STATE(7151)] = 170102, + [SMALL_STATE(7152)] = 170146, + [SMALL_STATE(7153)] = 170190, + [SMALL_STATE(7154)] = 170234, + [SMALL_STATE(7155)] = 170282, + [SMALL_STATE(7156)] = 170326, + [SMALL_STATE(7157)] = 170374, + [SMALL_STATE(7158)] = 170418, + [SMALL_STATE(7159)] = 170462, + [SMALL_STATE(7160)] = 170506, + [SMALL_STATE(7161)] = 170554, + [SMALL_STATE(7162)] = 170598, + [SMALL_STATE(7163)] = 170642, + [SMALL_STATE(7164)] = 170680, + [SMALL_STATE(7165)] = 170724, + [SMALL_STATE(7166)] = 170768, + [SMALL_STATE(7167)] = 170812, + [SMALL_STATE(7168)] = 170856, + [SMALL_STATE(7169)] = 170900, + [SMALL_STATE(7170)] = 170944, + [SMALL_STATE(7171)] = 170988, + [SMALL_STATE(7172)] = 171032, + [SMALL_STATE(7173)] = 171076, + [SMALL_STATE(7174)] = 171120, + [SMALL_STATE(7175)] = 171164, + [SMALL_STATE(7176)] = 171208, + [SMALL_STATE(7177)] = 171252, + [SMALL_STATE(7178)] = 171296, + [SMALL_STATE(7179)] = 171340, + [SMALL_STATE(7180)] = 171384, + [SMALL_STATE(7181)] = 171428, + [SMALL_STATE(7182)] = 171472, + [SMALL_STATE(7183)] = 171500, + [SMALL_STATE(7184)] = 171548, + [SMALL_STATE(7185)] = 171596, + [SMALL_STATE(7186)] = 171640, + [SMALL_STATE(7187)] = 171670, + [SMALL_STATE(7188)] = 171718, + [SMALL_STATE(7189)] = 171762, + [SMALL_STATE(7190)] = 171806, + [SMALL_STATE(7191)] = 171850, + [SMALL_STATE(7192)] = 171894, + [SMALL_STATE(7193)] = 171938, + [SMALL_STATE(7194)] = 171986, + [SMALL_STATE(7195)] = 172030, + [SMALL_STATE(7196)] = 172078, + [SMALL_STATE(7197)] = 172126, + [SMALL_STATE(7198)] = 172174, + [SMALL_STATE(7199)] = 172218, + [SMALL_STATE(7200)] = 172262, + [SMALL_STATE(7201)] = 172306, + [SMALL_STATE(7202)] = 172350, + [SMALL_STATE(7203)] = 172394, + [SMALL_STATE(7204)] = 172438, + [SMALL_STATE(7205)] = 172482, + [SMALL_STATE(7206)] = 172526, + [SMALL_STATE(7207)] = 172574, + [SMALL_STATE(7208)] = 172618, + [SMALL_STATE(7209)] = 172666, + [SMALL_STATE(7210)] = 172702, + [SMALL_STATE(7211)] = 172746, + [SMALL_STATE(7212)] = 172777, + [SMALL_STATE(7213)] = 172812, + [SMALL_STATE(7214)] = 172847, + [SMALL_STATE(7215)] = 172878, + [SMALL_STATE(7216)] = 172905, + [SMALL_STATE(7217)] = 172948, + [SMALL_STATE(7218)] = 172983, + [SMALL_STATE(7219)] = 173010, + [SMALL_STATE(7220)] = 173045, + [SMALL_STATE(7221)] = 173076, + [SMALL_STATE(7222)] = 173107, + [SMALL_STATE(7223)] = 173138, + [SMALL_STATE(7224)] = 173173, + [SMALL_STATE(7225)] = 173213, + [SMALL_STATE(7226)] = 173253, + [SMALL_STATE(7227)] = 173293, + [SMALL_STATE(7228)] = 173333, + [SMALL_STATE(7229)] = 173361, + [SMALL_STATE(7230)] = 173391, + [SMALL_STATE(7231)] = 173431, + [SMALL_STATE(7232)] = 173471, + [SMALL_STATE(7233)] = 173511, + [SMALL_STATE(7234)] = 173551, + [SMALL_STATE(7235)] = 173591, + [SMALL_STATE(7236)] = 173631, + [SMALL_STATE(7237)] = 173671, + [SMALL_STATE(7238)] = 173711, + [SMALL_STATE(7239)] = 173751, + [SMALL_STATE(7240)] = 173791, + [SMALL_STATE(7241)] = 173831, + [SMALL_STATE(7242)] = 173871, + [SMALL_STATE(7243)] = 173911, + [SMALL_STATE(7244)] = 173951, + [SMALL_STATE(7245)] = 173991, + [SMALL_STATE(7246)] = 174031, + [SMALL_STATE(7247)] = 174057, + [SMALL_STATE(7248)] = 174083, + [SMALL_STATE(7249)] = 174123, + [SMALL_STATE(7250)] = 174163, + [SMALL_STATE(7251)] = 174191, + [SMALL_STATE(7252)] = 174231, + [SMALL_STATE(7253)] = 174271, + [SMALL_STATE(7254)] = 174311, + [SMALL_STATE(7255)] = 174351, + [SMALL_STATE(7256)] = 174391, + [SMALL_STATE(7257)] = 174431, + [SMALL_STATE(7258)] = 174471, + [SMALL_STATE(7259)] = 174511, + [SMALL_STATE(7260)] = 174551, + [SMALL_STATE(7261)] = 174591, + [SMALL_STATE(7262)] = 174631, + [SMALL_STATE(7263)] = 174671, + [SMALL_STATE(7264)] = 174697, + [SMALL_STATE(7265)] = 174737, + [SMALL_STATE(7266)] = 174777, + [SMALL_STATE(7267)] = 174807, + [SMALL_STATE(7268)] = 174847, + [SMALL_STATE(7269)] = 174887, + [SMALL_STATE(7270)] = 174927, + [SMALL_STATE(7271)] = 174967, + [SMALL_STATE(7272)] = 175007, + [SMALL_STATE(7273)] = 175047, + [SMALL_STATE(7274)] = 175087, + [SMALL_STATE(7275)] = 175127, + [SMALL_STATE(7276)] = 175167, + [SMALL_STATE(7277)] = 175207, + [SMALL_STATE(7278)] = 175247, + [SMALL_STATE(7279)] = 175287, + [SMALL_STATE(7280)] = 175313, + [SMALL_STATE(7281)] = 175350, + [SMALL_STATE(7282)] = 175387, + [SMALL_STATE(7283)] = 175424, + [SMALL_STATE(7284)] = 175461, + [SMALL_STATE(7285)] = 175486, + [SMALL_STATE(7286)] = 175523, + [SMALL_STATE(7287)] = 175562, + [SMALL_STATE(7288)] = 175599, + [SMALL_STATE(7289)] = 175636, + [SMALL_STATE(7290)] = 175675, + [SMALL_STATE(7291)] = 175700, + [SMALL_STATE(7292)] = 175737, + [SMALL_STATE(7293)] = 175774, + [SMALL_STATE(7294)] = 175811, + [SMALL_STATE(7295)] = 175850, + [SMALL_STATE(7296)] = 175887, + [SMALL_STATE(7297)] = 175924, + [SMALL_STATE(7298)] = 175953, + [SMALL_STATE(7299)] = 175990, + [SMALL_STATE(7300)] = 176029, + [SMALL_STATE(7301)] = 176068, + [SMALL_STATE(7302)] = 176105, + [SMALL_STATE(7303)] = 176142, + [SMALL_STATE(7304)] = 176179, + [SMALL_STATE(7305)] = 176216, + [SMALL_STATE(7306)] = 176253, + [SMALL_STATE(7307)] = 176290, + [SMALL_STATE(7308)] = 176319, + [SMALL_STATE(7309)] = 176356, + [SMALL_STATE(7310)] = 176393, + [SMALL_STATE(7311)] = 176430, + [SMALL_STATE(7312)] = 176461, + [SMALL_STATE(7313)] = 176498, + [SMALL_STATE(7314)] = 176535, + [SMALL_STATE(7315)] = 176560, + [SMALL_STATE(7316)] = 176585, + [SMALL_STATE(7317)] = 176622, + [SMALL_STATE(7318)] = 176661, + [SMALL_STATE(7319)] = 176698, + [SMALL_STATE(7320)] = 176735, + [SMALL_STATE(7321)] = 176772, + [SMALL_STATE(7322)] = 176797, + [SMALL_STATE(7323)] = 176822, + [SMALL_STATE(7324)] = 176859, + [SMALL_STATE(7325)] = 176896, + [SMALL_STATE(7326)] = 176933, + [SMALL_STATE(7327)] = 176958, + [SMALL_STATE(7328)] = 176983, + [SMALL_STATE(7329)] = 177022, + [SMALL_STATE(7330)] = 177061, + [SMALL_STATE(7331)] = 177098, + [SMALL_STATE(7332)] = 177135, + [SMALL_STATE(7333)] = 177172, + [SMALL_STATE(7334)] = 177201, + [SMALL_STATE(7335)] = 177238, + [SMALL_STATE(7336)] = 177277, + [SMALL_STATE(7337)] = 177302, + [SMALL_STATE(7338)] = 177339, + [SMALL_STATE(7339)] = 177368, + [SMALL_STATE(7340)] = 177405, + [SMALL_STATE(7341)] = 177432, + [SMALL_STATE(7342)] = 177457, + [SMALL_STATE(7343)] = 177494, + [SMALL_STATE(7344)] = 177531, + [SMALL_STATE(7345)] = 177570, + [SMALL_STATE(7346)] = 177607, + [SMALL_STATE(7347)] = 177646, + [SMALL_STATE(7348)] = 177683, + [SMALL_STATE(7349)] = 177720, + [SMALL_STATE(7350)] = 177759, + [SMALL_STATE(7351)] = 177784, + [SMALL_STATE(7352)] = 177821, + [SMALL_STATE(7353)] = 177858, + [SMALL_STATE(7354)] = 177883, + [SMALL_STATE(7355)] = 177920, + [SMALL_STATE(7356)] = 177959, + [SMALL_STATE(7357)] = 177996, + [SMALL_STATE(7358)] = 178025, + [SMALL_STATE(7359)] = 178062, + [SMALL_STATE(7360)] = 178098, + [SMALL_STATE(7361)] = 178122, + [SMALL_STATE(7362)] = 178158, + [SMALL_STATE(7363)] = 178194, + [SMALL_STATE(7364)] = 178230, + [SMALL_STATE(7365)] = 178266, + [SMALL_STATE(7366)] = 178302, + [SMALL_STATE(7367)] = 178338, + [SMALL_STATE(7368)] = 178374, + [SMALL_STATE(7369)] = 178410, + [SMALL_STATE(7370)] = 178446, + [SMALL_STATE(7371)] = 178482, + [SMALL_STATE(7372)] = 178518, + [SMALL_STATE(7373)] = 178550, + [SMALL_STATE(7374)] = 178586, + [SMALL_STATE(7375)] = 178622, + [SMALL_STATE(7376)] = 178650, + [SMALL_STATE(7377)] = 178686, + [SMALL_STATE(7378)] = 178718, + [SMALL_STATE(7379)] = 178754, + [SMALL_STATE(7380)] = 178786, + [SMALL_STATE(7381)] = 178818, + [SMALL_STATE(7382)] = 178854, + [SMALL_STATE(7383)] = 178890, + [SMALL_STATE(7384)] = 178922, + [SMALL_STATE(7385)] = 178958, + [SMALL_STATE(7386)] = 178994, + [SMALL_STATE(7387)] = 179030, + [SMALL_STATE(7388)] = 179066, + [SMALL_STATE(7389)] = 179090, + [SMALL_STATE(7390)] = 179126, + [SMALL_STATE(7391)] = 179162, + [SMALL_STATE(7392)] = 179198, + [SMALL_STATE(7393)] = 179230, + [SMALL_STATE(7394)] = 179266, + [SMALL_STATE(7395)] = 179298, + [SMALL_STATE(7396)] = 179334, + [SMALL_STATE(7397)] = 179370, + [SMALL_STATE(7398)] = 179406, + [SMALL_STATE(7399)] = 179438, + [SMALL_STATE(7400)] = 179474, + [SMALL_STATE(7401)] = 179510, + [SMALL_STATE(7402)] = 179546, + [SMALL_STATE(7403)] = 179582, + [SMALL_STATE(7404)] = 179606, + [SMALL_STATE(7405)] = 179642, + [SMALL_STATE(7406)] = 179674, + [SMALL_STATE(7407)] = 179706, + [SMALL_STATE(7408)] = 179742, + [SMALL_STATE(7409)] = 179778, + [SMALL_STATE(7410)] = 179814, + [SMALL_STATE(7411)] = 179850, + [SMALL_STATE(7412)] = 179882, + [SMALL_STATE(7413)] = 179918, + [SMALL_STATE(7414)] = 179950, + [SMALL_STATE(7415)] = 179986, + [SMALL_STATE(7416)] = 180022, + [SMALL_STATE(7417)] = 180058, + [SMALL_STATE(7418)] = 180094, + [SMALL_STATE(7419)] = 180126, + [SMALL_STATE(7420)] = 180162, + [SMALL_STATE(7421)] = 180198, + [SMALL_STATE(7422)] = 180230, + [SMALL_STATE(7423)] = 180266, + [SMALL_STATE(7424)] = 180302, + [SMALL_STATE(7425)] = 180338, + [SMALL_STATE(7426)] = 180374, + [SMALL_STATE(7427)] = 180410, + [SMALL_STATE(7428)] = 180446, + [SMALL_STATE(7429)] = 180482, + [SMALL_STATE(7430)] = 180518, + [SMALL_STATE(7431)] = 180554, + [SMALL_STATE(7432)] = 180590, + [SMALL_STATE(7433)] = 180626, + [SMALL_STATE(7434)] = 180662, + [SMALL_STATE(7435)] = 180698, + [SMALL_STATE(7436)] = 180730, + [SMALL_STATE(7437)] = 180766, + [SMALL_STATE(7438)] = 180798, + [SMALL_STATE(7439)] = 180834, + [SMALL_STATE(7440)] = 180870, + [SMALL_STATE(7441)] = 180906, + [SMALL_STATE(7442)] = 180938, + [SMALL_STATE(7443)] = 180970, + [SMALL_STATE(7444)] = 181002, + [SMALL_STATE(7445)] = 181038, + [SMALL_STATE(7446)] = 181074, + [SMALL_STATE(7447)] = 181110, + [SMALL_STATE(7448)] = 181144, + [SMALL_STATE(7449)] = 181176, + [SMALL_STATE(7450)] = 181212, + [SMALL_STATE(7451)] = 181244, + [SMALL_STATE(7452)] = 181280, + [SMALL_STATE(7453)] = 181316, + [SMALL_STATE(7454)] = 181352, + [SMALL_STATE(7455)] = 181388, + [SMALL_STATE(7456)] = 181420, + [SMALL_STATE(7457)] = 181456, + [SMALL_STATE(7458)] = 181492, + [SMALL_STATE(7459)] = 181528, + [SMALL_STATE(7460)] = 181560, + [SMALL_STATE(7461)] = 181598, + [SMALL_STATE(7462)] = 181634, + [SMALL_STATE(7463)] = 181666, + [SMALL_STATE(7464)] = 181698, + [SMALL_STATE(7465)] = 181730, + [SMALL_STATE(7466)] = 181766, + [SMALL_STATE(7467)] = 181802, + [SMALL_STATE(7468)] = 181838, + [SMALL_STATE(7469)] = 181870, + [SMALL_STATE(7470)] = 181906, + [SMALL_STATE(7471)] = 181942, + [SMALL_STATE(7472)] = 181966, + [SMALL_STATE(7473)] = 182002, + [SMALL_STATE(7474)] = 182038, + [SMALL_STATE(7475)] = 182074, + [SMALL_STATE(7476)] = 182110, + [SMALL_STATE(7477)] = 182142, + [SMALL_STATE(7478)] = 182178, + [SMALL_STATE(7479)] = 182210, + [SMALL_STATE(7480)] = 182246, + [SMALL_STATE(7481)] = 182278, + [SMALL_STATE(7482)] = 182314, + [SMALL_STATE(7483)] = 182338, + [SMALL_STATE(7484)] = 182374, + [SMALL_STATE(7485)] = 182406, + [SMALL_STATE(7486)] = 182442, + [SMALL_STATE(7487)] = 182478, + [SMALL_STATE(7488)] = 182510, + [SMALL_STATE(7489)] = 182546, + [SMALL_STATE(7490)] = 182582, + [SMALL_STATE(7491)] = 182618, + [SMALL_STATE(7492)] = 182654, + [SMALL_STATE(7493)] = 182690, + [SMALL_STATE(7494)] = 182726, + [SMALL_STATE(7495)] = 182758, + [SMALL_STATE(7496)] = 182794, + [SMALL_STATE(7497)] = 182830, + [SMALL_STATE(7498)] = 182866, + [SMALL_STATE(7499)] = 182902, + [SMALL_STATE(7500)] = 182938, + [SMALL_STATE(7501)] = 182974, + [SMALL_STATE(7502)] = 182998, + [SMALL_STATE(7503)] = 183030, + [SMALL_STATE(7504)] = 183066, + [SMALL_STATE(7505)] = 183102, + [SMALL_STATE(7506)] = 183138, + [SMALL_STATE(7507)] = 183162, + [SMALL_STATE(7508)] = 183194, + [SMALL_STATE(7509)] = 183226, + [SMALL_STATE(7510)] = 183262, + [SMALL_STATE(7511)] = 183298, + [SMALL_STATE(7512)] = 183330, + [SMALL_STATE(7513)] = 183366, + [SMALL_STATE(7514)] = 183398, + [SMALL_STATE(7515)] = 183434, + [SMALL_STATE(7516)] = 183470, + [SMALL_STATE(7517)] = 183506, + [SMALL_STATE(7518)] = 183538, + [SMALL_STATE(7519)] = 183570, + [SMALL_STATE(7520)] = 183606, + [SMALL_STATE(7521)] = 183638, + [SMALL_STATE(7522)] = 183670, + [SMALL_STATE(7523)] = 183702, + [SMALL_STATE(7524)] = 183734, + [SMALL_STATE(7525)] = 183770, + [SMALL_STATE(7526)] = 183802, + [SMALL_STATE(7527)] = 183838, + [SMALL_STATE(7528)] = 183874, + [SMALL_STATE(7529)] = 183906, + [SMALL_STATE(7530)] = 183942, + [SMALL_STATE(7531)] = 183974, + [SMALL_STATE(7532)] = 184006, + [SMALL_STATE(7533)] = 184038, + [SMALL_STATE(7534)] = 184074, + [SMALL_STATE(7535)] = 184102, + [SMALL_STATE(7536)] = 184138, + [SMALL_STATE(7537)] = 184170, + [SMALL_STATE(7538)] = 184206, + [SMALL_STATE(7539)] = 184242, + [SMALL_STATE(7540)] = 184274, + [SMALL_STATE(7541)] = 184306, + [SMALL_STATE(7542)] = 184342, + [SMALL_STATE(7543)] = 184374, + [SMALL_STATE(7544)] = 184406, + [SMALL_STATE(7545)] = 184438, + [SMALL_STATE(7546)] = 184474, + [SMALL_STATE(7547)] = 184510, + [SMALL_STATE(7548)] = 184542, + [SMALL_STATE(7549)] = 184574, + [SMALL_STATE(7550)] = 184604, + [SMALL_STATE(7551)] = 184636, + [SMALL_STATE(7552)] = 184668, + [SMALL_STATE(7553)] = 184704, + [SMALL_STATE(7554)] = 184740, + [SMALL_STATE(7555)] = 184772, + [SMALL_STATE(7556)] = 184808, + [SMALL_STATE(7557)] = 184840, + [SMALL_STATE(7558)] = 184872, + [SMALL_STATE(7559)] = 184910, + [SMALL_STATE(7560)] = 184942, + [SMALL_STATE(7561)] = 184974, + [SMALL_STATE(7562)] = 185006, + [SMALL_STATE(7563)] = 185042, + [SMALL_STATE(7564)] = 185074, + [SMALL_STATE(7565)] = 185110, + [SMALL_STATE(7566)] = 185142, + [SMALL_STATE(7567)] = 185170, + [SMALL_STATE(7568)] = 185198, + [SMALL_STATE(7569)] = 185234, + [SMALL_STATE(7570)] = 185270, + [SMALL_STATE(7571)] = 185306, + [SMALL_STATE(7572)] = 185338, + [SMALL_STATE(7573)] = 185374, + [SMALL_STATE(7574)] = 185406, + [SMALL_STATE(7575)] = 185442, + [SMALL_STATE(7576)] = 185478, + [SMALL_STATE(7577)] = 185514, + [SMALL_STATE(7578)] = 185550, + [SMALL_STATE(7579)] = 185582, + [SMALL_STATE(7580)] = 185614, + [SMALL_STATE(7581)] = 185646, + [SMALL_STATE(7582)] = 185678, + [SMALL_STATE(7583)] = 185714, + [SMALL_STATE(7584)] = 185750, + [SMALL_STATE(7585)] = 185782, + [SMALL_STATE(7586)] = 185818, + [SMALL_STATE(7587)] = 185850, + [SMALL_STATE(7588)] = 185886, + [SMALL_STATE(7589)] = 185922, + [SMALL_STATE(7590)] = 185954, + [SMALL_STATE(7591)] = 185990, + [SMALL_STATE(7592)] = 186022, + [SMALL_STATE(7593)] = 186058, + [SMALL_STATE(7594)] = 186094, + [SMALL_STATE(7595)] = 186130, + [SMALL_STATE(7596)] = 186166, + [SMALL_STATE(7597)] = 186198, + [SMALL_STATE(7598)] = 186234, + [SMALL_STATE(7599)] = 186270, + [SMALL_STATE(7600)] = 186302, + [SMALL_STATE(7601)] = 186338, + [SMALL_STATE(7602)] = 186370, + [SMALL_STATE(7603)] = 186402, + [SMALL_STATE(7604)] = 186435, + [SMALL_STATE(7605)] = 186470, + [SMALL_STATE(7606)] = 186503, + [SMALL_STATE(7607)] = 186538, + [SMALL_STATE(7608)] = 186561, + [SMALL_STATE(7609)] = 186584, + [SMALL_STATE(7610)] = 186619, + [SMALL_STATE(7611)] = 186654, + [SMALL_STATE(7612)] = 186687, + [SMALL_STATE(7613)] = 186710, + [SMALL_STATE(7614)] = 186739, + [SMALL_STATE(7615)] = 186774, + [SMALL_STATE(7616)] = 186809, + [SMALL_STATE(7617)] = 186844, + [SMALL_STATE(7618)] = 186879, + [SMALL_STATE(7619)] = 186914, + [SMALL_STATE(7620)] = 186947, + [SMALL_STATE(7621)] = 186980, + [SMALL_STATE(7622)] = 187015, + [SMALL_STATE(7623)] = 187050, + [SMALL_STATE(7624)] = 187085, + [SMALL_STATE(7625)] = 187118, + [SMALL_STATE(7626)] = 187153, + [SMALL_STATE(7627)] = 187188, + [SMALL_STATE(7628)] = 187223, + [SMALL_STATE(7629)] = 187246, + [SMALL_STATE(7630)] = 187279, + [SMALL_STATE(7631)] = 187312, + [SMALL_STATE(7632)] = 187347, + [SMALL_STATE(7633)] = 187382, + [SMALL_STATE(7634)] = 187415, + [SMALL_STATE(7635)] = 187450, + [SMALL_STATE(7636)] = 187473, + [SMALL_STATE(7637)] = 187508, + [SMALL_STATE(7638)] = 187543, + [SMALL_STATE(7639)] = 187578, + [SMALL_STATE(7640)] = 187611, + [SMALL_STATE(7641)] = 187644, + [SMALL_STATE(7642)] = 187667, + [SMALL_STATE(7643)] = 187702, + [SMALL_STATE(7644)] = 187737, + [SMALL_STATE(7645)] = 187770, + [SMALL_STATE(7646)] = 187803, + [SMALL_STATE(7647)] = 187838, + [SMALL_STATE(7648)] = 187861, + [SMALL_STATE(7649)] = 187894, + [SMALL_STATE(7650)] = 187929, + [SMALL_STATE(7651)] = 187962, + [SMALL_STATE(7652)] = 187995, + [SMALL_STATE(7653)] = 188030, + [SMALL_STATE(7654)] = 188053, + [SMALL_STATE(7655)] = 188086, + [SMALL_STATE(7656)] = 188121, + [SMALL_STATE(7657)] = 188156, + [SMALL_STATE(7658)] = 188189, + [SMALL_STATE(7659)] = 188224, + [SMALL_STATE(7660)] = 188259, + [SMALL_STATE(7661)] = 188292, + [SMALL_STATE(7662)] = 188327, + [SMALL_STATE(7663)] = 188362, + [SMALL_STATE(7664)] = 188397, + [SMALL_STATE(7665)] = 188432, + [SMALL_STATE(7666)] = 188465, + [SMALL_STATE(7667)] = 188500, + [SMALL_STATE(7668)] = 188533, + [SMALL_STATE(7669)] = 188566, + [SMALL_STATE(7670)] = 188601, + [SMALL_STATE(7671)] = 188634, + [SMALL_STATE(7672)] = 188669, + [SMALL_STATE(7673)] = 188704, + [SMALL_STATE(7674)] = 188737, + [SMALL_STATE(7675)] = 188770, + [SMALL_STATE(7676)] = 188805, + [SMALL_STATE(7677)] = 188838, + [SMALL_STATE(7678)] = 188873, + [SMALL_STATE(7679)] = 188906, + [SMALL_STATE(7680)] = 188941, + [SMALL_STATE(7681)] = 188976, + [SMALL_STATE(7682)] = 189009, + [SMALL_STATE(7683)] = 189042, + [SMALL_STATE(7684)] = 189077, + [SMALL_STATE(7685)] = 189110, + [SMALL_STATE(7686)] = 189145, + [SMALL_STATE(7687)] = 189178, + [SMALL_STATE(7688)] = 189211, + [SMALL_STATE(7689)] = 189244, + [SMALL_STATE(7690)] = 189279, + [SMALL_STATE(7691)] = 189314, + [SMALL_STATE(7692)] = 189349, + [SMALL_STATE(7693)] = 189382, + [SMALL_STATE(7694)] = 189405, + [SMALL_STATE(7695)] = 189440, + [SMALL_STATE(7696)] = 189475, + [SMALL_STATE(7697)] = 189510, + [SMALL_STATE(7698)] = 189545, + [SMALL_STATE(7699)] = 189578, + [SMALL_STATE(7700)] = 189613, + [SMALL_STATE(7701)] = 189646, + [SMALL_STATE(7702)] = 189679, + [SMALL_STATE(7703)] = 189714, + [SMALL_STATE(7704)] = 189747, + [SMALL_STATE(7705)] = 189782, + [SMALL_STATE(7706)] = 189817, + [SMALL_STATE(7707)] = 189852, + [SMALL_STATE(7708)] = 189885, + [SMALL_STATE(7709)] = 189920, + [SMALL_STATE(7710)] = 189943, + [SMALL_STATE(7711)] = 189976, + [SMALL_STATE(7712)] = 190009, + [SMALL_STATE(7713)] = 190044, + [SMALL_STATE(7714)] = 190077, + [SMALL_STATE(7715)] = 190112, + [SMALL_STATE(7716)] = 190147, + [SMALL_STATE(7717)] = 190182, + [SMALL_STATE(7718)] = 190217, + [SMALL_STATE(7719)] = 190252, + [SMALL_STATE(7720)] = 190285, + [SMALL_STATE(7721)] = 190320, + [SMALL_STATE(7722)] = 190353, + [SMALL_STATE(7723)] = 190386, + [SMALL_STATE(7724)] = 190421, + [SMALL_STATE(7725)] = 190454, + [SMALL_STATE(7726)] = 190487, + [SMALL_STATE(7727)] = 190522, + [SMALL_STATE(7728)] = 190545, + [SMALL_STATE(7729)] = 190580, + [SMALL_STATE(7730)] = 190615, + [SMALL_STATE(7731)] = 190648, + [SMALL_STATE(7732)] = 190683, + [SMALL_STATE(7733)] = 190718, + [SMALL_STATE(7734)] = 190751, + [SMALL_STATE(7735)] = 190786, + [SMALL_STATE(7736)] = 190821, + [SMALL_STATE(7737)] = 190856, + [SMALL_STATE(7738)] = 190889, + [SMALL_STATE(7739)] = 190924, + [SMALL_STATE(7740)] = 190957, + [SMALL_STATE(7741)] = 190992, + [SMALL_STATE(7742)] = 191027, + [SMALL_STATE(7743)] = 191062, + [SMALL_STATE(7744)] = 191097, + [SMALL_STATE(7745)] = 191132, + [SMALL_STATE(7746)] = 191167, + [SMALL_STATE(7747)] = 191202, + [SMALL_STATE(7748)] = 191235, + [SMALL_STATE(7749)] = 191270, + [SMALL_STATE(7750)] = 191305, + [SMALL_STATE(7751)] = 191340, + [SMALL_STATE(7752)] = 191375, + [SMALL_STATE(7753)] = 191410, + [SMALL_STATE(7754)] = 191445, + [SMALL_STATE(7755)] = 191478, + [SMALL_STATE(7756)] = 191511, + [SMALL_STATE(7757)] = 191546, + [SMALL_STATE(7758)] = 191579, + [SMALL_STATE(7759)] = 191612, + [SMALL_STATE(7760)] = 191647, + [SMALL_STATE(7761)] = 191682, + [SMALL_STATE(7762)] = 191717, + [SMALL_STATE(7763)] = 191750, + [SMALL_STATE(7764)] = 191783, + [SMALL_STATE(7765)] = 191818, + [SMALL_STATE(7766)] = 191851, + [SMALL_STATE(7767)] = 191886, + [SMALL_STATE(7768)] = 191919, + [SMALL_STATE(7769)] = 191954, + [SMALL_STATE(7770)] = 191989, + [SMALL_STATE(7771)] = 192022, + [SMALL_STATE(7772)] = 192055, + [SMALL_STATE(7773)] = 192090, + [SMALL_STATE(7774)] = 192125, + [SMALL_STATE(7775)] = 192160, + [SMALL_STATE(7776)] = 192193, + [SMALL_STATE(7777)] = 192228, + [SMALL_STATE(7778)] = 192263, + [SMALL_STATE(7779)] = 192298, + [SMALL_STATE(7780)] = 192333, + [SMALL_STATE(7781)] = 192366, + [SMALL_STATE(7782)] = 192399, + [SMALL_STATE(7783)] = 192432, + [SMALL_STATE(7784)] = 192467, + [SMALL_STATE(7785)] = 192502, + [SMALL_STATE(7786)] = 192535, + [SMALL_STATE(7787)] = 192570, + [SMALL_STATE(7788)] = 192603, + [SMALL_STATE(7789)] = 192638, + [SMALL_STATE(7790)] = 192673, + [SMALL_STATE(7791)] = 192708, + [SMALL_STATE(7792)] = 192743, + [SMALL_STATE(7793)] = 192776, + [SMALL_STATE(7794)] = 192809, + [SMALL_STATE(7795)] = 192844, + [SMALL_STATE(7796)] = 192877, + [SMALL_STATE(7797)] = 192912, + [SMALL_STATE(7798)] = 192945, + [SMALL_STATE(7799)] = 192980, + [SMALL_STATE(7800)] = 193015, + [SMALL_STATE(7801)] = 193050, + [SMALL_STATE(7802)] = 193083, + [SMALL_STATE(7803)] = 193118, + [SMALL_STATE(7804)] = 193151, + [SMALL_STATE(7805)] = 193184, + [SMALL_STATE(7806)] = 193219, + [SMALL_STATE(7807)] = 193252, + [SMALL_STATE(7808)] = 193287, + [SMALL_STATE(7809)] = 193320, + [SMALL_STATE(7810)] = 193355, + [SMALL_STATE(7811)] = 193390, + [SMALL_STATE(7812)] = 193425, + [SMALL_STATE(7813)] = 193458, + [SMALL_STATE(7814)] = 193493, + [SMALL_STATE(7815)] = 193528, + [SMALL_STATE(7816)] = 193561, + [SMALL_STATE(7817)] = 193594, + [SMALL_STATE(7818)] = 193629, + [SMALL_STATE(7819)] = 193662, + [SMALL_STATE(7820)] = 193697, + [SMALL_STATE(7821)] = 193732, + [SMALL_STATE(7822)] = 193767, + [SMALL_STATE(7823)] = 193800, + [SMALL_STATE(7824)] = 193835, + [SMALL_STATE(7825)] = 193868, + [SMALL_STATE(7826)] = 193903, + [SMALL_STATE(7827)] = 193938, + [SMALL_STATE(7828)] = 193973, + [SMALL_STATE(7829)] = 194000, + [SMALL_STATE(7830)] = 194035, + [SMALL_STATE(7831)] = 194068, + [SMALL_STATE(7832)] = 194103, + [SMALL_STATE(7833)] = 194138, + [SMALL_STATE(7834)] = 194173, + [SMALL_STATE(7835)] = 194206, + [SMALL_STATE(7836)] = 194241, + [SMALL_STATE(7837)] = 194274, + [SMALL_STATE(7838)] = 194307, + [SMALL_STATE(7839)] = 194342, + [SMALL_STATE(7840)] = 194377, + [SMALL_STATE(7841)] = 194399, + [SMALL_STATE(7842)] = 194421, + [SMALL_STATE(7843)] = 194443, + [SMALL_STATE(7844)] = 194469, + [SMALL_STATE(7845)] = 194491, + [SMALL_STATE(7846)] = 194513, + [SMALL_STATE(7847)] = 194535, + [SMALL_STATE(7848)] = 194557, + [SMALL_STATE(7849)] = 194579, + [SMALL_STATE(7850)] = 194601, + [SMALL_STATE(7851)] = 194623, + [SMALL_STATE(7852)] = 194645, + [SMALL_STATE(7853)] = 194671, + [SMALL_STATE(7854)] = 194693, + [SMALL_STATE(7855)] = 194715, + [SMALL_STATE(7856)] = 194737, + [SMALL_STATE(7857)] = 194763, + [SMALL_STATE(7858)] = 194789, + [SMALL_STATE(7859)] = 194811, + [SMALL_STATE(7860)] = 194833, + [SMALL_STATE(7861)] = 194855, + [SMALL_STATE(7862)] = 194877, + [SMALL_STATE(7863)] = 194907, + [SMALL_STATE(7864)] = 194929, + [SMALL_STATE(7865)] = 194951, + [SMALL_STATE(7866)] = 194973, + [SMALL_STATE(7867)] = 194995, + [SMALL_STATE(7868)] = 195024, + [SMALL_STATE(7869)] = 195053, + [SMALL_STATE(7870)] = 195082, + [SMALL_STATE(7871)] = 195111, + [SMALL_STATE(7872)] = 195136, + [SMALL_STATE(7873)] = 195165, + [SMALL_STATE(7874)] = 195188, + [SMALL_STATE(7875)] = 195217, + [SMALL_STATE(7876)] = 195246, + [SMALL_STATE(7877)] = 195275, + [SMALL_STATE(7878)] = 195300, + [SMALL_STATE(7879)] = 195325, + [SMALL_STATE(7880)] = 195350, + [SMALL_STATE(7881)] = 195375, + [SMALL_STATE(7882)] = 195400, + [SMALL_STATE(7883)] = 195425, + [SMALL_STATE(7884)] = 195450, + [SMALL_STATE(7885)] = 195475, + [SMALL_STATE(7886)] = 195504, + [SMALL_STATE(7887)] = 195533, + [SMALL_STATE(7888)] = 195556, + [SMALL_STATE(7889)] = 195581, + [SMALL_STATE(7890)] = 195606, + [SMALL_STATE(7891)] = 195635, + [SMALL_STATE(7892)] = 195658, + [SMALL_STATE(7893)] = 195687, + [SMALL_STATE(7894)] = 195710, + [SMALL_STATE(7895)] = 195739, + [SMALL_STATE(7896)] = 195768, + [SMALL_STATE(7897)] = 195797, + [SMALL_STATE(7898)] = 195826, + [SMALL_STATE(7899)] = 195855, + [SMALL_STATE(7900)] = 195884, + [SMALL_STATE(7901)] = 195913, + [SMALL_STATE(7902)] = 195942, + [SMALL_STATE(7903)] = 195971, + [SMALL_STATE(7904)] = 195996, + [SMALL_STATE(7905)] = 196025, + [SMALL_STATE(7906)] = 196054, + [SMALL_STATE(7907)] = 196083, + [SMALL_STATE(7908)] = 196112, + [SMALL_STATE(7909)] = 196141, + [SMALL_STATE(7910)] = 196170, + [SMALL_STATE(7911)] = 196199, + [SMALL_STATE(7912)] = 196228, + [SMALL_STATE(7913)] = 196257, + [SMALL_STATE(7914)] = 196286, + [SMALL_STATE(7915)] = 196315, + [SMALL_STATE(7916)] = 196344, + [SMALL_STATE(7917)] = 196373, + [SMALL_STATE(7918)] = 196402, + [SMALL_STATE(7919)] = 196431, + [SMALL_STATE(7920)] = 196460, + [SMALL_STATE(7921)] = 196489, + [SMALL_STATE(7922)] = 196518, + [SMALL_STATE(7923)] = 196547, + [SMALL_STATE(7924)] = 196572, + [SMALL_STATE(7925)] = 196601, + [SMALL_STATE(7926)] = 196626, + [SMALL_STATE(7927)] = 196655, + [SMALL_STATE(7928)] = 196684, + [SMALL_STATE(7929)] = 196713, + [SMALL_STATE(7930)] = 196742, + [SMALL_STATE(7931)] = 196767, + [SMALL_STATE(7932)] = 196796, + [SMALL_STATE(7933)] = 196825, + [SMALL_STATE(7934)] = 196854, + [SMALL_STATE(7935)] = 196883, + [SMALL_STATE(7936)] = 196912, + [SMALL_STATE(7937)] = 196941, + [SMALL_STATE(7938)] = 196970, + [SMALL_STATE(7939)] = 196999, + [SMALL_STATE(7940)] = 197028, + [SMALL_STATE(7941)] = 197057, + [SMALL_STATE(7942)] = 197086, + [SMALL_STATE(7943)] = 197111, + [SMALL_STATE(7944)] = 197140, + [SMALL_STATE(7945)] = 197169, + [SMALL_STATE(7946)] = 197198, + [SMALL_STATE(7947)] = 197227, + [SMALL_STATE(7948)] = 197256, + [SMALL_STATE(7949)] = 197285, + [SMALL_STATE(7950)] = 197314, + [SMALL_STATE(7951)] = 197343, + [SMALL_STATE(7952)] = 197372, + [SMALL_STATE(7953)] = 197401, + [SMALL_STATE(7954)] = 197430, + [SMALL_STATE(7955)] = 197459, + [SMALL_STATE(7956)] = 197488, + [SMALL_STATE(7957)] = 197517, + [SMALL_STATE(7958)] = 197546, + [SMALL_STATE(7959)] = 197575, + [SMALL_STATE(7960)] = 197604, + [SMALL_STATE(7961)] = 197633, + [SMALL_STATE(7962)] = 197662, + [SMALL_STATE(7963)] = 197691, + [SMALL_STATE(7964)] = 197720, + [SMALL_STATE(7965)] = 197749, + [SMALL_STATE(7966)] = 197778, + [SMALL_STATE(7967)] = 197807, + [SMALL_STATE(7968)] = 197836, + [SMALL_STATE(7969)] = 197865, + [SMALL_STATE(7970)] = 197894, + [SMALL_STATE(7971)] = 197923, + [SMALL_STATE(7972)] = 197952, + [SMALL_STATE(7973)] = 197981, + [SMALL_STATE(7974)] = 198010, + [SMALL_STATE(7975)] = 198031, + [SMALL_STATE(7976)] = 198060, + [SMALL_STATE(7977)] = 198089, + [SMALL_STATE(7978)] = 198114, + [SMALL_STATE(7979)] = 198143, + [SMALL_STATE(7980)] = 198172, + [SMALL_STATE(7981)] = 198197, + [SMALL_STATE(7982)] = 198226, + [SMALL_STATE(7983)] = 198255, + [SMALL_STATE(7984)] = 198284, + [SMALL_STATE(7985)] = 198313, + [SMALL_STATE(7986)] = 198342, + [SMALL_STATE(7987)] = 198371, + [SMALL_STATE(7988)] = 198400, + [SMALL_STATE(7989)] = 198429, + [SMALL_STATE(7990)] = 198458, + [SMALL_STATE(7991)] = 198487, + [SMALL_STATE(7992)] = 198516, + [SMALL_STATE(7993)] = 198541, + [SMALL_STATE(7994)] = 198570, + [SMALL_STATE(7995)] = 198599, + [SMALL_STATE(7996)] = 198628, + [SMALL_STATE(7997)] = 198657, + [SMALL_STATE(7998)] = 198682, + [SMALL_STATE(7999)] = 198711, + [SMALL_STATE(8000)] = 198740, + [SMALL_STATE(8001)] = 198769, + [SMALL_STATE(8002)] = 198794, + [SMALL_STATE(8003)] = 198823, + [SMALL_STATE(8004)] = 198860, + [SMALL_STATE(8005)] = 198889, + [SMALL_STATE(8006)] = 198918, + [SMALL_STATE(8007)] = 198947, + [SMALL_STATE(8008)] = 198976, + [SMALL_STATE(8009)] = 199001, + [SMALL_STATE(8010)] = 199030, + [SMALL_STATE(8011)] = 199059, + [SMALL_STATE(8012)] = 199088, + [SMALL_STATE(8013)] = 199113, + [SMALL_STATE(8014)] = 199142, + [SMALL_STATE(8015)] = 199171, + [SMALL_STATE(8016)] = 199200, + [SMALL_STATE(8017)] = 199225, + [SMALL_STATE(8018)] = 199254, + [SMALL_STATE(8019)] = 199283, + [SMALL_STATE(8020)] = 199312, + [SMALL_STATE(8021)] = 199341, + [SMALL_STATE(8022)] = 199370, + [SMALL_STATE(8023)] = 199395, + [SMALL_STATE(8024)] = 199424, + [SMALL_STATE(8025)] = 199453, + [SMALL_STATE(8026)] = 199482, + [SMALL_STATE(8027)] = 199508, + [SMALL_STATE(8028)] = 199534, + [SMALL_STATE(8029)] = 199560, + [SMALL_STATE(8030)] = 199586, + [SMALL_STATE(8031)] = 199612, + [SMALL_STATE(8032)] = 199638, + [SMALL_STATE(8033)] = 199664, + [SMALL_STATE(8034)] = 199698, + [SMALL_STATE(8035)] = 199724, + [SMALL_STATE(8036)] = 199750, + [SMALL_STATE(8037)] = 199776, + [SMALL_STATE(8038)] = 199802, + [SMALL_STATE(8039)] = 199824, + [SMALL_STATE(8040)] = 199850, + [SMALL_STATE(8041)] = 199872, + [SMALL_STATE(8042)] = 199898, + [SMALL_STATE(8043)] = 199924, + [SMALL_STATE(8044)] = 199950, + [SMALL_STATE(8045)] = 199984, + [SMALL_STATE(8046)] = 200010, + [SMALL_STATE(8047)] = 200036, + [SMALL_STATE(8048)] = 200062, + [SMALL_STATE(8049)] = 200088, + [SMALL_STATE(8050)] = 200114, + [SMALL_STATE(8051)] = 200140, + [SMALL_STATE(8052)] = 200166, + [SMALL_STATE(8053)] = 200192, + [SMALL_STATE(8054)] = 200218, + [SMALL_STATE(8055)] = 200244, + [SMALL_STATE(8056)] = 200270, + [SMALL_STATE(8057)] = 200296, + [SMALL_STATE(8058)] = 200322, + [SMALL_STATE(8059)] = 200348, + [SMALL_STATE(8060)] = 200374, + [SMALL_STATE(8061)] = 200400, + [SMALL_STATE(8062)] = 200426, + [SMALL_STATE(8063)] = 200452, + [SMALL_STATE(8064)] = 200478, + [SMALL_STATE(8065)] = 200504, + [SMALL_STATE(8066)] = 200530, + [SMALL_STATE(8067)] = 200556, + [SMALL_STATE(8068)] = 200582, + [SMALL_STATE(8069)] = 200608, + [SMALL_STATE(8070)] = 200634, + [SMALL_STATE(8071)] = 200660, + [SMALL_STATE(8072)] = 200686, + [SMALL_STATE(8073)] = 200712, + [SMALL_STATE(8074)] = 200738, + [SMALL_STATE(8075)] = 200764, + [SMALL_STATE(8076)] = 200790, + [SMALL_STATE(8077)] = 200816, + [SMALL_STATE(8078)] = 200842, + [SMALL_STATE(8079)] = 200868, + [SMALL_STATE(8080)] = 200894, + [SMALL_STATE(8081)] = 200920, + [SMALL_STATE(8082)] = 200946, + [SMALL_STATE(8083)] = 200972, + [SMALL_STATE(8084)] = 200998, + [SMALL_STATE(8085)] = 201024, + [SMALL_STATE(8086)] = 201050, + [SMALL_STATE(8087)] = 201076, + [SMALL_STATE(8088)] = 201102, + [SMALL_STATE(8089)] = 201128, + [SMALL_STATE(8090)] = 201154, + [SMALL_STATE(8091)] = 201180, + [SMALL_STATE(8092)] = 201206, + [SMALL_STATE(8093)] = 201232, + [SMALL_STATE(8094)] = 201258, + [SMALL_STATE(8095)] = 201284, + [SMALL_STATE(8096)] = 201310, + [SMALL_STATE(8097)] = 201336, + [SMALL_STATE(8098)] = 201362, + [SMALL_STATE(8099)] = 201388, + [SMALL_STATE(8100)] = 201414, + [SMALL_STATE(8101)] = 201440, + [SMALL_STATE(8102)] = 201466, + [SMALL_STATE(8103)] = 201492, + [SMALL_STATE(8104)] = 201518, + [SMALL_STATE(8105)] = 201544, + [SMALL_STATE(8106)] = 201570, + [SMALL_STATE(8107)] = 201596, + [SMALL_STATE(8108)] = 201622, + [SMALL_STATE(8109)] = 201648, + [SMALL_STATE(8110)] = 201682, + [SMALL_STATE(8111)] = 201708, + [SMALL_STATE(8112)] = 201734, + [SMALL_STATE(8113)] = 201760, + [SMALL_STATE(8114)] = 201786, + [SMALL_STATE(8115)] = 201812, + [SMALL_STATE(8116)] = 201838, + [SMALL_STATE(8117)] = 201864, + [SMALL_STATE(8118)] = 201890, + [SMALL_STATE(8119)] = 201916, + [SMALL_STATE(8120)] = 201942, + [SMALL_STATE(8121)] = 201968, + [SMALL_STATE(8122)] = 201994, + [SMALL_STATE(8123)] = 202020, + [SMALL_STATE(8124)] = 202046, + [SMALL_STATE(8125)] = 202072, + [SMALL_STATE(8126)] = 202094, + [SMALL_STATE(8127)] = 202120, + [SMALL_STATE(8128)] = 202146, + [SMALL_STATE(8129)] = 202172, + [SMALL_STATE(8130)] = 202198, + [SMALL_STATE(8131)] = 202224, + [SMALL_STATE(8132)] = 202250, + [SMALL_STATE(8133)] = 202276, + [SMALL_STATE(8134)] = 202302, + [SMALL_STATE(8135)] = 202328, + [SMALL_STATE(8136)] = 202354, + [SMALL_STATE(8137)] = 202380, + [SMALL_STATE(8138)] = 202406, + [SMALL_STATE(8139)] = 202428, + [SMALL_STATE(8140)] = 202462, + [SMALL_STATE(8141)] = 202488, + [SMALL_STATE(8142)] = 202514, + [SMALL_STATE(8143)] = 202540, + [SMALL_STATE(8144)] = 202566, + [SMALL_STATE(8145)] = 202586, + [SMALL_STATE(8146)] = 202612, + [SMALL_STATE(8147)] = 202638, + [SMALL_STATE(8148)] = 202664, + [SMALL_STATE(8149)] = 202690, + [SMALL_STATE(8150)] = 202716, + [SMALL_STATE(8151)] = 202742, + [SMALL_STATE(8152)] = 202768, + [SMALL_STATE(8153)] = 202794, + [SMALL_STATE(8154)] = 202820, + [SMALL_STATE(8155)] = 202846, + [SMALL_STATE(8156)] = 202872, + [SMALL_STATE(8157)] = 202898, + [SMALL_STATE(8158)] = 202924, + [SMALL_STATE(8159)] = 202950, + [SMALL_STATE(8160)] = 202976, + [SMALL_STATE(8161)] = 203002, + [SMALL_STATE(8162)] = 203028, + [SMALL_STATE(8163)] = 203054, + [SMALL_STATE(8164)] = 203080, + [SMALL_STATE(8165)] = 203106, + [SMALL_STATE(8166)] = 203132, + [SMALL_STATE(8167)] = 203158, + [SMALL_STATE(8168)] = 203184, + [SMALL_STATE(8169)] = 203210, + [SMALL_STATE(8170)] = 203236, + [SMALL_STATE(8171)] = 203262, + [SMALL_STATE(8172)] = 203288, + [SMALL_STATE(8173)] = 203314, + [SMALL_STATE(8174)] = 203340, + [SMALL_STATE(8175)] = 203366, + [SMALL_STATE(8176)] = 203392, + [SMALL_STATE(8177)] = 203418, + [SMALL_STATE(8178)] = 203444, + [SMALL_STATE(8179)] = 203470, + [SMALL_STATE(8180)] = 203496, + [SMALL_STATE(8181)] = 203522, + [SMALL_STATE(8182)] = 203548, + [SMALL_STATE(8183)] = 203574, + [SMALL_STATE(8184)] = 203600, + [SMALL_STATE(8185)] = 203626, + [SMALL_STATE(8186)] = 203648, + [SMALL_STATE(8187)] = 203674, + [SMALL_STATE(8188)] = 203700, + [SMALL_STATE(8189)] = 203726, + [SMALL_STATE(8190)] = 203752, + [SMALL_STATE(8191)] = 203778, + [SMALL_STATE(8192)] = 203804, + [SMALL_STATE(8193)] = 203830, + [SMALL_STATE(8194)] = 203856, + [SMALL_STATE(8195)] = 203882, + [SMALL_STATE(8196)] = 203908, + [SMALL_STATE(8197)] = 203934, + [SMALL_STATE(8198)] = 203960, + [SMALL_STATE(8199)] = 203986, + [SMALL_STATE(8200)] = 204012, + [SMALL_STATE(8201)] = 204038, + [SMALL_STATE(8202)] = 204064, + [SMALL_STATE(8203)] = 204090, + [SMALL_STATE(8204)] = 204116, + [SMALL_STATE(8205)] = 204142, + [SMALL_STATE(8206)] = 204168, + [SMALL_STATE(8207)] = 204194, + [SMALL_STATE(8208)] = 204220, + [SMALL_STATE(8209)] = 204246, + [SMALL_STATE(8210)] = 204272, + [SMALL_STATE(8211)] = 204298, + [SMALL_STATE(8212)] = 204324, + [SMALL_STATE(8213)] = 204350, + [SMALL_STATE(8214)] = 204376, + [SMALL_STATE(8215)] = 204402, + [SMALL_STATE(8216)] = 204428, + [SMALL_STATE(8217)] = 204450, + [SMALL_STATE(8218)] = 204476, + [SMALL_STATE(8219)] = 204502, + [SMALL_STATE(8220)] = 204528, + [SMALL_STATE(8221)] = 204554, + [SMALL_STATE(8222)] = 204580, + [SMALL_STATE(8223)] = 204606, + [SMALL_STATE(8224)] = 204632, + [SMALL_STATE(8225)] = 204658, + [SMALL_STATE(8226)] = 204684, + [SMALL_STATE(8227)] = 204710, + [SMALL_STATE(8228)] = 204736, + [SMALL_STATE(8229)] = 204762, + [SMALL_STATE(8230)] = 204788, + [SMALL_STATE(8231)] = 204814, + [SMALL_STATE(8232)] = 204840, + [SMALL_STATE(8233)] = 204866, + [SMALL_STATE(8234)] = 204892, + [SMALL_STATE(8235)] = 204918, + [SMALL_STATE(8236)] = 204944, + [SMALL_STATE(8237)] = 204970, + [SMALL_STATE(8238)] = 204996, + [SMALL_STATE(8239)] = 205022, + [SMALL_STATE(8240)] = 205048, + [SMALL_STATE(8241)] = 205074, + [SMALL_STATE(8242)] = 205100, + [SMALL_STATE(8243)] = 205126, + [SMALL_STATE(8244)] = 205152, + [SMALL_STATE(8245)] = 205178, + [SMALL_STATE(8246)] = 205204, + [SMALL_STATE(8247)] = 205230, + [SMALL_STATE(8248)] = 205256, + [SMALL_STATE(8249)] = 205282, + [SMALL_STATE(8250)] = 205316, + [SMALL_STATE(8251)] = 205342, + [SMALL_STATE(8252)] = 205368, + [SMALL_STATE(8253)] = 205394, + [SMALL_STATE(8254)] = 205420, + [SMALL_STATE(8255)] = 205446, + [SMALL_STATE(8256)] = 205472, + [SMALL_STATE(8257)] = 205498, + [SMALL_STATE(8258)] = 205524, + [SMALL_STATE(8259)] = 205550, + [SMALL_STATE(8260)] = 205576, + [SMALL_STATE(8261)] = 205594, + [SMALL_STATE(8262)] = 205620, + [SMALL_STATE(8263)] = 205646, + [SMALL_STATE(8264)] = 205672, + [SMALL_STATE(8265)] = 205698, + [SMALL_STATE(8266)] = 205724, + [SMALL_STATE(8267)] = 205750, + [SMALL_STATE(8268)] = 205776, + [SMALL_STATE(8269)] = 205802, + [SMALL_STATE(8270)] = 205828, + [SMALL_STATE(8271)] = 205854, + [SMALL_STATE(8272)] = 205880, + [SMALL_STATE(8273)] = 205906, + [SMALL_STATE(8274)] = 205932, + [SMALL_STATE(8275)] = 205958, + [SMALL_STATE(8276)] = 205984, + [SMALL_STATE(8277)] = 206010, + [SMALL_STATE(8278)] = 206036, + [SMALL_STATE(8279)] = 206056, + [SMALL_STATE(8280)] = 206082, + [SMALL_STATE(8281)] = 206108, + [SMALL_STATE(8282)] = 206142, + [SMALL_STATE(8283)] = 206168, + [SMALL_STATE(8284)] = 206194, + [SMALL_STATE(8285)] = 206225, + [SMALL_STATE(8286)] = 206256, + [SMALL_STATE(8287)] = 206273, + [SMALL_STATE(8288)] = 206290, + [SMALL_STATE(8289)] = 206321, + [SMALL_STATE(8290)] = 206352, + [SMALL_STATE(8291)] = 206369, + [SMALL_STATE(8292)] = 206386, + [SMALL_STATE(8293)] = 206403, + [SMALL_STATE(8294)] = 206424, + [SMALL_STATE(8295)] = 206455, + [SMALL_STATE(8296)] = 206486, + [SMALL_STATE(8297)] = 206503, + [SMALL_STATE(8298)] = 206534, + [SMALL_STATE(8299)] = 206565, + [SMALL_STATE(8300)] = 206596, + [SMALL_STATE(8301)] = 206627, + [SMALL_STATE(8302)] = 206646, + [SMALL_STATE(8303)] = 206677, + [SMALL_STATE(8304)] = 206708, + [SMALL_STATE(8305)] = 206739, + [SMALL_STATE(8306)] = 206770, + [SMALL_STATE(8307)] = 206787, + [SMALL_STATE(8308)] = 206818, + [SMALL_STATE(8309)] = 206849, + [SMALL_STATE(8310)] = 206880, + [SMALL_STATE(8311)] = 206911, + [SMALL_STATE(8312)] = 206942, + [SMALL_STATE(8313)] = 206973, + [SMALL_STATE(8314)] = 207004, + [SMALL_STATE(8315)] = 207025, + [SMALL_STATE(8316)] = 207056, + [SMALL_STATE(8317)] = 207087, + [SMALL_STATE(8318)] = 207118, + [SMALL_STATE(8319)] = 207135, + [SMALL_STATE(8320)] = 207166, + [SMALL_STATE(8321)] = 207197, + [SMALL_STATE(8322)] = 207228, + [SMALL_STATE(8323)] = 207258, + [SMALL_STATE(8324)] = 207276, + [SMALL_STATE(8325)] = 207294, + [SMALL_STATE(8326)] = 207314, + [SMALL_STATE(8327)] = 207344, + [SMALL_STATE(8328)] = 207374, + [SMALL_STATE(8329)] = 207404, + [SMALL_STATE(8330)] = 207434, + [SMALL_STATE(8331)] = 207452, + [SMALL_STATE(8332)] = 207468, + [SMALL_STATE(8333)] = 207486, + [SMALL_STATE(8334)] = 207502, + [SMALL_STATE(8335)] = 207529, + [SMALL_STATE(8336)] = 207556, + [SMALL_STATE(8337)] = 207581, + [SMALL_STATE(8338)] = 207608, + [SMALL_STATE(8339)] = 207637, + [SMALL_STATE(8340)] = 207666, + [SMALL_STATE(8341)] = 207691, + [SMALL_STATE(8342)] = 207710, + [SMALL_STATE(8343)] = 207735, + [SMALL_STATE(8344)] = 207756, + [SMALL_STATE(8345)] = 207785, + [SMALL_STATE(8346)] = 207806, + [SMALL_STATE(8347)] = 207825, + [SMALL_STATE(8348)] = 207842, + [SMALL_STATE(8349)] = 207865, + [SMALL_STATE(8350)] = 207894, + [SMALL_STATE(8351)] = 207919, + [SMALL_STATE(8352)] = 207944, + [SMALL_STATE(8353)] = 207969, + [SMALL_STATE(8354)] = 207998, + [SMALL_STATE(8355)] = 208015, + [SMALL_STATE(8356)] = 208042, + [SMALL_STATE(8357)] = 208069, + [SMALL_STATE(8358)] = 208093, + [SMALL_STATE(8359)] = 208109, + [SMALL_STATE(8360)] = 208125, + [SMALL_STATE(8361)] = 208145, + [SMALL_STATE(8362)] = 208161, + [SMALL_STATE(8363)] = 208177, + [SMALL_STATE(8364)] = 208193, + [SMALL_STATE(8365)] = 208209, + [SMALL_STATE(8366)] = 208225, + [SMALL_STATE(8367)] = 208241, + [SMALL_STATE(8368)] = 208265, + [SMALL_STATE(8369)] = 208291, + [SMALL_STATE(8370)] = 208317, + [SMALL_STATE(8371)] = 208333, + [SMALL_STATE(8372)] = 208349, + [SMALL_STATE(8373)] = 208365, + [SMALL_STATE(8374)] = 208379, + [SMALL_STATE(8375)] = 208395, + [SMALL_STATE(8376)] = 208409, + [SMALL_STATE(8377)] = 208433, + [SMALL_STATE(8378)] = 208449, + [SMALL_STATE(8379)] = 208465, + [SMALL_STATE(8380)] = 208481, + [SMALL_STATE(8381)] = 208507, + [SMALL_STATE(8382)] = 208521, + [SMALL_STATE(8383)] = 208545, + [SMALL_STATE(8384)] = 208569, + [SMALL_STATE(8385)] = 208585, + [SMALL_STATE(8386)] = 208611, + [SMALL_STATE(8387)] = 208627, + [SMALL_STATE(8388)] = 208643, + [SMALL_STATE(8389)] = 208665, + [SMALL_STATE(8390)] = 208689, + [SMALL_STATE(8391)] = 208705, + [SMALL_STATE(8392)] = 208721, + [SMALL_STATE(8393)] = 208737, + [SMALL_STATE(8394)] = 208761, + [SMALL_STATE(8395)] = 208781, + [SMALL_STATE(8396)] = 208797, + [SMALL_STATE(8397)] = 208811, + [SMALL_STATE(8398)] = 208837, + [SMALL_STATE(8399)] = 208853, + [SMALL_STATE(8400)] = 208877, + [SMALL_STATE(8401)] = 208899, + [SMALL_STATE(8402)] = 208915, + [SMALL_STATE(8403)] = 208934, + [SMALL_STATE(8404)] = 208957, + [SMALL_STATE(8405)] = 208978, + [SMALL_STATE(8406)] = 208995, + [SMALL_STATE(8407)] = 209010, + [SMALL_STATE(8408)] = 209033, + [SMALL_STATE(8409)] = 209054, + [SMALL_STATE(8410)] = 209075, + [SMALL_STATE(8411)] = 209096, + [SMALL_STATE(8412)] = 209109, + [SMALL_STATE(8413)] = 209122, + [SMALL_STATE(8414)] = 209143, + [SMALL_STATE(8415)] = 209164, + [SMALL_STATE(8416)] = 209183, + [SMALL_STATE(8417)] = 209204, + [SMALL_STATE(8418)] = 209225, + [SMALL_STATE(8419)] = 209242, + [SMALL_STATE(8420)] = 209263, + [SMALL_STATE(8421)] = 209286, + [SMALL_STATE(8422)] = 209307, + [SMALL_STATE(8423)] = 209322, + [SMALL_STATE(8424)] = 209343, + [SMALL_STATE(8425)] = 209364, + [SMALL_STATE(8426)] = 209381, + [SMALL_STATE(8427)] = 209402, + [SMALL_STATE(8428)] = 209419, + [SMALL_STATE(8429)] = 209440, + [SMALL_STATE(8430)] = 209463, + [SMALL_STATE(8431)] = 209484, + [SMALL_STATE(8432)] = 209501, + [SMALL_STATE(8433)] = 209514, + [SMALL_STATE(8434)] = 209537, + [SMALL_STATE(8435)] = 209558, + [SMALL_STATE(8436)] = 209579, + [SMALL_STATE(8437)] = 209600, + [SMALL_STATE(8438)] = 209623, + [SMALL_STATE(8439)] = 209644, + [SMALL_STATE(8440)] = 209657, + [SMALL_STATE(8441)] = 209678, + [SMALL_STATE(8442)] = 209699, + [SMALL_STATE(8443)] = 209720, + [SMALL_STATE(8444)] = 209741, + [SMALL_STATE(8445)] = 209762, + [SMALL_STATE(8446)] = 209783, + [SMALL_STATE(8447)] = 209804, + [SMALL_STATE(8448)] = 209825, + [SMALL_STATE(8449)] = 209848, + [SMALL_STATE(8450)] = 209871, + [SMALL_STATE(8451)] = 209892, + [SMALL_STATE(8452)] = 209913, + [SMALL_STATE(8453)] = 209930, + [SMALL_STATE(8454)] = 209951, + [SMALL_STATE(8455)] = 209972, + [SMALL_STATE(8456)] = 209989, + [SMALL_STATE(8457)] = 210002, + [SMALL_STATE(8458)] = 210023, + [SMALL_STATE(8459)] = 210043, + [SMALL_STATE(8460)] = 210063, + [SMALL_STATE(8461)] = 210083, + [SMALL_STATE(8462)] = 210103, + [SMALL_STATE(8463)] = 210123, + [SMALL_STATE(8464)] = 210143, + [SMALL_STATE(8465)] = 210163, + [SMALL_STATE(8466)] = 210183, + [SMALL_STATE(8467)] = 210203, + [SMALL_STATE(8468)] = 210223, + [SMALL_STATE(8469)] = 210243, + [SMALL_STATE(8470)] = 210255, + [SMALL_STATE(8471)] = 210267, + [SMALL_STATE(8472)] = 210289, + [SMALL_STATE(8473)] = 210309, + [SMALL_STATE(8474)] = 210321, + [SMALL_STATE(8475)] = 210337, + [SMALL_STATE(8476)] = 210357, + [SMALL_STATE(8477)] = 210377, + [SMALL_STATE(8478)] = 210397, + [SMALL_STATE(8479)] = 210409, + [SMALL_STATE(8480)] = 210421, + [SMALL_STATE(8481)] = 210441, + [SMALL_STATE(8482)] = 210461, + [SMALL_STATE(8483)] = 210481, + [SMALL_STATE(8484)] = 210501, + [SMALL_STATE(8485)] = 210519, + [SMALL_STATE(8486)] = 210539, + [SMALL_STATE(8487)] = 210551, + [SMALL_STATE(8488)] = 210571, + [SMALL_STATE(8489)] = 210591, + [SMALL_STATE(8490)] = 210611, + [SMALL_STATE(8491)] = 210631, + [SMALL_STATE(8492)] = 210651, + [SMALL_STATE(8493)] = 210671, + [SMALL_STATE(8494)] = 210691, + [SMALL_STATE(8495)] = 210711, + [SMALL_STATE(8496)] = 210731, + [SMALL_STATE(8497)] = 210751, + [SMALL_STATE(8498)] = 210763, + [SMALL_STATE(8499)] = 210775, + [SMALL_STATE(8500)] = 210795, + [SMALL_STATE(8501)] = 210815, + [SMALL_STATE(8502)] = 210835, + [SMALL_STATE(8503)] = 210855, + [SMALL_STATE(8504)] = 210871, + [SMALL_STATE(8505)] = 210891, + [SMALL_STATE(8506)] = 210911, + [SMALL_STATE(8507)] = 210931, + [SMALL_STATE(8508)] = 210943, + [SMALL_STATE(8509)] = 210963, + [SMALL_STATE(8510)] = 210983, + [SMALL_STATE(8511)] = 211001, + [SMALL_STATE(8512)] = 211021, + [SMALL_STATE(8513)] = 211041, + [SMALL_STATE(8514)] = 211061, + [SMALL_STATE(8515)] = 211081, + [SMALL_STATE(8516)] = 211101, + [SMALL_STATE(8517)] = 211117, + [SMALL_STATE(8518)] = 211137, + [SMALL_STATE(8519)] = 211157, + [SMALL_STATE(8520)] = 211169, + [SMALL_STATE(8521)] = 211189, + [SMALL_STATE(8522)] = 211209, + [SMALL_STATE(8523)] = 211229, + [SMALL_STATE(8524)] = 211249, + [SMALL_STATE(8525)] = 211269, + [SMALL_STATE(8526)] = 211281, + [SMALL_STATE(8527)] = 211301, + [SMALL_STATE(8528)] = 211321, + [SMALL_STATE(8529)] = 211341, + [SMALL_STATE(8530)] = 211361, + [SMALL_STATE(8531)] = 211381, + [SMALL_STATE(8532)] = 211401, + [SMALL_STATE(8533)] = 211421, + [SMALL_STATE(8534)] = 211437, + [SMALL_STATE(8535)] = 211449, + [SMALL_STATE(8536)] = 211469, + [SMALL_STATE(8537)] = 211489, + [SMALL_STATE(8538)] = 211509, + [SMALL_STATE(8539)] = 211529, + [SMALL_STATE(8540)] = 211549, + [SMALL_STATE(8541)] = 211569, + [SMALL_STATE(8542)] = 211589, + [SMALL_STATE(8543)] = 211607, + [SMALL_STATE(8544)] = 211627, + [SMALL_STATE(8545)] = 211647, + [SMALL_STATE(8546)] = 211667, + [SMALL_STATE(8547)] = 211687, + [SMALL_STATE(8548)] = 211707, + [SMALL_STATE(8549)] = 211725, + [SMALL_STATE(8550)] = 211741, + [SMALL_STATE(8551)] = 211761, + [SMALL_STATE(8552)] = 211777, + [SMALL_STATE(8553)] = 211795, + [SMALL_STATE(8554)] = 211811, + [SMALL_STATE(8555)] = 211831, + [SMALL_STATE(8556)] = 211847, + [SMALL_STATE(8557)] = 211867, + [SMALL_STATE(8558)] = 211887, + [SMALL_STATE(8559)] = 211907, + [SMALL_STATE(8560)] = 211927, + [SMALL_STATE(8561)] = 211947, + [SMALL_STATE(8562)] = 211967, + [SMALL_STATE(8563)] = 211987, + [SMALL_STATE(8564)] = 211999, + [SMALL_STATE(8565)] = 212013, + [SMALL_STATE(8566)] = 212033, + [SMALL_STATE(8567)] = 212053, + [SMALL_STATE(8568)] = 212065, + [SMALL_STATE(8569)] = 212085, + [SMALL_STATE(8570)] = 212105, + [SMALL_STATE(8571)] = 212125, + [SMALL_STATE(8572)] = 212137, + [SMALL_STATE(8573)] = 212157, + [SMALL_STATE(8574)] = 212177, + [SMALL_STATE(8575)] = 212199, + [SMALL_STATE(8576)] = 212219, + [SMALL_STATE(8577)] = 212239, + [SMALL_STATE(8578)] = 212259, + [SMALL_STATE(8579)] = 212279, + [SMALL_STATE(8580)] = 212299, + [SMALL_STATE(8581)] = 212315, + [SMALL_STATE(8582)] = 212335, + [SMALL_STATE(8583)] = 212355, + [SMALL_STATE(8584)] = 212377, + [SMALL_STATE(8585)] = 212399, + [SMALL_STATE(8586)] = 212419, + [SMALL_STATE(8587)] = 212439, + [SMALL_STATE(8588)] = 212455, + [SMALL_STATE(8589)] = 212467, + [SMALL_STATE(8590)] = 212487, + [SMALL_STATE(8591)] = 212507, + [SMALL_STATE(8592)] = 212527, + [SMALL_STATE(8593)] = 212547, + [SMALL_STATE(8594)] = 212567, + [SMALL_STATE(8595)] = 212587, + [SMALL_STATE(8596)] = 212607, + [SMALL_STATE(8597)] = 212627, + [SMALL_STATE(8598)] = 212649, + [SMALL_STATE(8599)] = 212669, + [SMALL_STATE(8600)] = 212689, + [SMALL_STATE(8601)] = 212709, + [SMALL_STATE(8602)] = 212729, + [SMALL_STATE(8603)] = 212749, + [SMALL_STATE(8604)] = 212769, + [SMALL_STATE(8605)] = 212789, + [SMALL_STATE(8606)] = 212809, + [SMALL_STATE(8607)] = 212829, + [SMALL_STATE(8608)] = 212841, + [SMALL_STATE(8609)] = 212853, + [SMALL_STATE(8610)] = 212869, + [SMALL_STATE(8611)] = 212887, + [SMALL_STATE(8612)] = 212909, + [SMALL_STATE(8613)] = 212929, + [SMALL_STATE(8614)] = 212949, + [SMALL_STATE(8615)] = 212969, + [SMALL_STATE(8616)] = 212985, + [SMALL_STATE(8617)] = 213005, + [SMALL_STATE(8618)] = 213023, + [SMALL_STATE(8619)] = 213041, + [SMALL_STATE(8620)] = 213061, + [SMALL_STATE(8621)] = 213081, + [SMALL_STATE(8622)] = 213101, + [SMALL_STATE(8623)] = 213121, + [SMALL_STATE(8624)] = 213141, + [SMALL_STATE(8625)] = 213161, + [SMALL_STATE(8626)] = 213175, + [SMALL_STATE(8627)] = 213187, + [SMALL_STATE(8628)] = 213207, + [SMALL_STATE(8629)] = 213227, + [SMALL_STATE(8630)] = 213247, + [SMALL_STATE(8631)] = 213267, + [SMALL_STATE(8632)] = 213287, + [SMALL_STATE(8633)] = 213307, + [SMALL_STATE(8634)] = 213324, + [SMALL_STATE(8635)] = 213341, + [SMALL_STATE(8636)] = 213358, + [SMALL_STATE(8637)] = 213375, + [SMALL_STATE(8638)] = 213386, + [SMALL_STATE(8639)] = 213403, + [SMALL_STATE(8640)] = 213420, + [SMALL_STATE(8641)] = 213437, + [SMALL_STATE(8642)] = 213454, + [SMALL_STATE(8643)] = 213471, + [SMALL_STATE(8644)] = 213482, + [SMALL_STATE(8645)] = 213499, + [SMALL_STATE(8646)] = 213516, + [SMALL_STATE(8647)] = 213533, + [SMALL_STATE(8648)] = 213550, + [SMALL_STATE(8649)] = 213567, + [SMALL_STATE(8650)] = 213584, + [SMALL_STATE(8651)] = 213597, + [SMALL_STATE(8652)] = 213614, + [SMALL_STATE(8653)] = 213625, + [SMALL_STATE(8654)] = 213640, + [SMALL_STATE(8655)] = 213653, + [SMALL_STATE(8656)] = 213668, + [SMALL_STATE(8657)] = 213683, + [SMALL_STATE(8658)] = 213700, + [SMALL_STATE(8659)] = 213717, + [SMALL_STATE(8660)] = 213734, + [SMALL_STATE(8661)] = 213751, + [SMALL_STATE(8662)] = 213768, + [SMALL_STATE(8663)] = 213785, + [SMALL_STATE(8664)] = 213802, + [SMALL_STATE(8665)] = 213819, + [SMALL_STATE(8666)] = 213836, + [SMALL_STATE(8667)] = 213853, + [SMALL_STATE(8668)] = 213870, + [SMALL_STATE(8669)] = 213887, + [SMALL_STATE(8670)] = 213904, + [SMALL_STATE(8671)] = 213921, + [SMALL_STATE(8672)] = 213938, + [SMALL_STATE(8673)] = 213955, + [SMALL_STATE(8674)] = 213968, + [SMALL_STATE(8675)] = 213983, + [SMALL_STATE(8676)] = 214000, + [SMALL_STATE(8677)] = 214017, + [SMALL_STATE(8678)] = 214034, + [SMALL_STATE(8679)] = 214045, + [SMALL_STATE(8680)] = 214062, + [SMALL_STATE(8681)] = 214079, + [SMALL_STATE(8682)] = 214096, + [SMALL_STATE(8683)] = 214113, + [SMALL_STATE(8684)] = 214130, + [SMALL_STATE(8685)] = 214147, + [SMALL_STATE(8686)] = 214164, + [SMALL_STATE(8687)] = 214181, + [SMALL_STATE(8688)] = 214198, + [SMALL_STATE(8689)] = 214215, + [SMALL_STATE(8690)] = 214232, + [SMALL_STATE(8691)] = 214249, + [SMALL_STATE(8692)] = 214266, + [SMALL_STATE(8693)] = 214283, + [SMALL_STATE(8694)] = 214300, + [SMALL_STATE(8695)] = 214317, + [SMALL_STATE(8696)] = 214330, + [SMALL_STATE(8697)] = 214345, + [SMALL_STATE(8698)] = 214362, + [SMALL_STATE(8699)] = 214373, + [SMALL_STATE(8700)] = 214390, + [SMALL_STATE(8701)] = 214405, + [SMALL_STATE(8702)] = 214416, + [SMALL_STATE(8703)] = 214433, + [SMALL_STATE(8704)] = 214450, + [SMALL_STATE(8705)] = 214467, + [SMALL_STATE(8706)] = 214478, + [SMALL_STATE(8707)] = 214495, + [SMALL_STATE(8708)] = 214512, + [SMALL_STATE(8709)] = 214529, + [SMALL_STATE(8710)] = 214546, + [SMALL_STATE(8711)] = 214563, + [SMALL_STATE(8712)] = 214580, + [SMALL_STATE(8713)] = 214597, + [SMALL_STATE(8714)] = 214612, + [SMALL_STATE(8715)] = 214629, + [SMALL_STATE(8716)] = 214644, + [SMALL_STATE(8717)] = 214661, + [SMALL_STATE(8718)] = 214672, + [SMALL_STATE(8719)] = 214689, + [SMALL_STATE(8720)] = 214704, + [SMALL_STATE(8721)] = 214721, + [SMALL_STATE(8722)] = 214738, + [SMALL_STATE(8723)] = 214753, + [SMALL_STATE(8724)] = 214764, + [SMALL_STATE(8725)] = 214781, + [SMALL_STATE(8726)] = 214798, + [SMALL_STATE(8727)] = 214815, + [SMALL_STATE(8728)] = 214832, + [SMALL_STATE(8729)] = 214849, + [SMALL_STATE(8730)] = 214866, + [SMALL_STATE(8731)] = 214881, + [SMALL_STATE(8732)] = 214898, + [SMALL_STATE(8733)] = 214913, + [SMALL_STATE(8734)] = 214924, + [SMALL_STATE(8735)] = 214941, + [SMALL_STATE(8736)] = 214956, + [SMALL_STATE(8737)] = 214971, + [SMALL_STATE(8738)] = 214982, + [SMALL_STATE(8739)] = 214997, + [SMALL_STATE(8740)] = 215014, + [SMALL_STATE(8741)] = 215031, + [SMALL_STATE(8742)] = 215048, + [SMALL_STATE(8743)] = 215065, + [SMALL_STATE(8744)] = 215080, + [SMALL_STATE(8745)] = 215097, + [SMALL_STATE(8746)] = 215114, + [SMALL_STATE(8747)] = 215131, + [SMALL_STATE(8748)] = 215146, + [SMALL_STATE(8749)] = 215161, + [SMALL_STATE(8750)] = 215176, + [SMALL_STATE(8751)] = 215191, + [SMALL_STATE(8752)] = 215206, + [SMALL_STATE(8753)] = 215223, + [SMALL_STATE(8754)] = 215240, + [SMALL_STATE(8755)] = 215257, + [SMALL_STATE(8756)] = 215274, + [SMALL_STATE(8757)] = 215291, + [SMALL_STATE(8758)] = 215308, + [SMALL_STATE(8759)] = 215325, + [SMALL_STATE(8760)] = 215342, + [SMALL_STATE(8761)] = 215359, + [SMALL_STATE(8762)] = 215372, + [SMALL_STATE(8763)] = 215389, + [SMALL_STATE(8764)] = 215404, + [SMALL_STATE(8765)] = 215421, + [SMALL_STATE(8766)] = 215438, + [SMALL_STATE(8767)] = 215453, + [SMALL_STATE(8768)] = 215468, + [SMALL_STATE(8769)] = 215485, + [SMALL_STATE(8770)] = 215502, + [SMALL_STATE(8771)] = 215519, + [SMALL_STATE(8772)] = 215536, + [SMALL_STATE(8773)] = 215553, + [SMALL_STATE(8774)] = 215570, + [SMALL_STATE(8775)] = 215587, + [SMALL_STATE(8776)] = 215602, + [SMALL_STATE(8777)] = 215617, + [SMALL_STATE(8778)] = 215634, + [SMALL_STATE(8779)] = 215649, + [SMALL_STATE(8780)] = 215666, + [SMALL_STATE(8781)] = 215679, + [SMALL_STATE(8782)] = 215696, + [SMALL_STATE(8783)] = 215713, + [SMALL_STATE(8784)] = 215728, + [SMALL_STATE(8785)] = 215745, + [SMALL_STATE(8786)] = 215762, + [SMALL_STATE(8787)] = 215779, + [SMALL_STATE(8788)] = 215796, + [SMALL_STATE(8789)] = 215813, + [SMALL_STATE(8790)] = 215830, + [SMALL_STATE(8791)] = 215847, + [SMALL_STATE(8792)] = 215864, + [SMALL_STATE(8793)] = 215881, + [SMALL_STATE(8794)] = 215898, + [SMALL_STATE(8795)] = 215915, + [SMALL_STATE(8796)] = 215929, + [SMALL_STATE(8797)] = 215943, + [SMALL_STATE(8798)] = 215957, + [SMALL_STATE(8799)] = 215969, + [SMALL_STATE(8800)] = 215981, + [SMALL_STATE(8801)] = 215993, + [SMALL_STATE(8802)] = 216007, + [SMALL_STATE(8803)] = 216019, + [SMALL_STATE(8804)] = 216031, + [SMALL_STATE(8805)] = 216045, + [SMALL_STATE(8806)] = 216059, + [SMALL_STATE(8807)] = 216073, + [SMALL_STATE(8808)] = 216087, + [SMALL_STATE(8809)] = 216101, + [SMALL_STATE(8810)] = 216115, + [SMALL_STATE(8811)] = 216129, + [SMALL_STATE(8812)] = 216141, + [SMALL_STATE(8813)] = 216155, + [SMALL_STATE(8814)] = 216169, + [SMALL_STATE(8815)] = 216181, + [SMALL_STATE(8816)] = 216193, + [SMALL_STATE(8817)] = 216205, + [SMALL_STATE(8818)] = 216219, + [SMALL_STATE(8819)] = 216233, + [SMALL_STATE(8820)] = 216245, + [SMALL_STATE(8821)] = 216259, + [SMALL_STATE(8822)] = 216273, + [SMALL_STATE(8823)] = 216287, + [SMALL_STATE(8824)] = 216299, + [SMALL_STATE(8825)] = 216309, + [SMALL_STATE(8826)] = 216323, + [SMALL_STATE(8827)] = 216337, + [SMALL_STATE(8828)] = 216351, + [SMALL_STATE(8829)] = 216365, + [SMALL_STATE(8830)] = 216379, + [SMALL_STATE(8831)] = 216393, + [SMALL_STATE(8832)] = 216405, + [SMALL_STATE(8833)] = 216417, + [SMALL_STATE(8834)] = 216431, + [SMALL_STATE(8835)] = 216445, + [SMALL_STATE(8836)] = 216459, + [SMALL_STATE(8837)] = 216473, + [SMALL_STATE(8838)] = 216487, + [SMALL_STATE(8839)] = 216501, + [SMALL_STATE(8840)] = 216515, + [SMALL_STATE(8841)] = 216529, + [SMALL_STATE(8842)] = 216543, + [SMALL_STATE(8843)] = 216557, + [SMALL_STATE(8844)] = 216571, + [SMALL_STATE(8845)] = 216585, + [SMALL_STATE(8846)] = 216597, + [SMALL_STATE(8847)] = 216611, + [SMALL_STATE(8848)] = 216625, + [SMALL_STATE(8849)] = 216639, + [SMALL_STATE(8850)] = 216653, + [SMALL_STATE(8851)] = 216667, + [SMALL_STATE(8852)] = 216681, + [SMALL_STATE(8853)] = 216695, + [SMALL_STATE(8854)] = 216709, + [SMALL_STATE(8855)] = 216723, + [SMALL_STATE(8856)] = 216737, + [SMALL_STATE(8857)] = 216751, + [SMALL_STATE(8858)] = 216765, + [SMALL_STATE(8859)] = 216779, + [SMALL_STATE(8860)] = 216793, + [SMALL_STATE(8861)] = 216807, + [SMALL_STATE(8862)] = 216819, + [SMALL_STATE(8863)] = 216831, + [SMALL_STATE(8864)] = 216843, + [SMALL_STATE(8865)] = 216855, + [SMALL_STATE(8866)] = 216867, + [SMALL_STATE(8867)] = 216881, + [SMALL_STATE(8868)] = 216893, + [SMALL_STATE(8869)] = 216905, + [SMALL_STATE(8870)] = 216919, + [SMALL_STATE(8871)] = 216933, + [SMALL_STATE(8872)] = 216947, + [SMALL_STATE(8873)] = 216961, + [SMALL_STATE(8874)] = 216975, + [SMALL_STATE(8875)] = 216989, + [SMALL_STATE(8876)] = 217003, + [SMALL_STATE(8877)] = 217017, + [SMALL_STATE(8878)] = 217031, + [SMALL_STATE(8879)] = 217045, + [SMALL_STATE(8880)] = 217059, + [SMALL_STATE(8881)] = 217073, + [SMALL_STATE(8882)] = 217087, + [SMALL_STATE(8883)] = 217101, + [SMALL_STATE(8884)] = 217113, + [SMALL_STATE(8885)] = 217127, + [SMALL_STATE(8886)] = 217141, + [SMALL_STATE(8887)] = 217153, + [SMALL_STATE(8888)] = 217167, + [SMALL_STATE(8889)] = 217179, + [SMALL_STATE(8890)] = 217191, + [SMALL_STATE(8891)] = 217203, + [SMALL_STATE(8892)] = 217215, + [SMALL_STATE(8893)] = 217229, + [SMALL_STATE(8894)] = 217243, + [SMALL_STATE(8895)] = 217257, + [SMALL_STATE(8896)] = 217271, + [SMALL_STATE(8897)] = 217283, + [SMALL_STATE(8898)] = 217297, + [SMALL_STATE(8899)] = 217309, + [SMALL_STATE(8900)] = 217323, + [SMALL_STATE(8901)] = 217337, + [SMALL_STATE(8902)] = 217347, + [SMALL_STATE(8903)] = 217361, + [SMALL_STATE(8904)] = 217375, + [SMALL_STATE(8905)] = 217389, + [SMALL_STATE(8906)] = 217403, + [SMALL_STATE(8907)] = 217417, + [SMALL_STATE(8908)] = 217431, + [SMALL_STATE(8909)] = 217445, + [SMALL_STATE(8910)] = 217457, + [SMALL_STATE(8911)] = 217469, + [SMALL_STATE(8912)] = 217481, + [SMALL_STATE(8913)] = 217493, + [SMALL_STATE(8914)] = 217505, + [SMALL_STATE(8915)] = 217517, + [SMALL_STATE(8916)] = 217529, + [SMALL_STATE(8917)] = 217543, + [SMALL_STATE(8918)] = 217557, + [SMALL_STATE(8919)] = 217571, + [SMALL_STATE(8920)] = 217585, + [SMALL_STATE(8921)] = 217599, + [SMALL_STATE(8922)] = 217611, + [SMALL_STATE(8923)] = 217625, + [SMALL_STATE(8924)] = 217639, + [SMALL_STATE(8925)] = 217653, + [SMALL_STATE(8926)] = 217667, + [SMALL_STATE(8927)] = 217681, + [SMALL_STATE(8928)] = 217695, + [SMALL_STATE(8929)] = 217707, + [SMALL_STATE(8930)] = 217721, + [SMALL_STATE(8931)] = 217735, + [SMALL_STATE(8932)] = 217749, + [SMALL_STATE(8933)] = 217759, + [SMALL_STATE(8934)] = 217773, + [SMALL_STATE(8935)] = 217787, + [SMALL_STATE(8936)] = 217801, + [SMALL_STATE(8937)] = 217815, + [SMALL_STATE(8938)] = 217829, + [SMALL_STATE(8939)] = 217843, + [SMALL_STATE(8940)] = 217857, + [SMALL_STATE(8941)] = 217871, + [SMALL_STATE(8942)] = 217885, + [SMALL_STATE(8943)] = 217899, + [SMALL_STATE(8944)] = 217913, + [SMALL_STATE(8945)] = 217927, + [SMALL_STATE(8946)] = 217941, + [SMALL_STATE(8947)] = 217955, + [SMALL_STATE(8948)] = 217967, + [SMALL_STATE(8949)] = 217981, + [SMALL_STATE(8950)] = 217995, + [SMALL_STATE(8951)] = 218007, + [SMALL_STATE(8952)] = 218017, + [SMALL_STATE(8953)] = 218031, + [SMALL_STATE(8954)] = 218045, + [SMALL_STATE(8955)] = 218059, + [SMALL_STATE(8956)] = 218073, + [SMALL_STATE(8957)] = 218087, + [SMALL_STATE(8958)] = 218101, + [SMALL_STATE(8959)] = 218115, + [SMALL_STATE(8960)] = 218129, + [SMALL_STATE(8961)] = 218143, + [SMALL_STATE(8962)] = 218157, + [SMALL_STATE(8963)] = 218171, + [SMALL_STATE(8964)] = 218185, + [SMALL_STATE(8965)] = 218199, + [SMALL_STATE(8966)] = 218213, + [SMALL_STATE(8967)] = 218227, + [SMALL_STATE(8968)] = 218241, + [SMALL_STATE(8969)] = 218255, + [SMALL_STATE(8970)] = 218269, + [SMALL_STATE(8971)] = 218283, + [SMALL_STATE(8972)] = 218297, + [SMALL_STATE(8973)] = 218311, + [SMALL_STATE(8974)] = 218325, + [SMALL_STATE(8975)] = 218339, + [SMALL_STATE(8976)] = 218353, + [SMALL_STATE(8977)] = 218367, + [SMALL_STATE(8978)] = 218381, + [SMALL_STATE(8979)] = 218393, + [SMALL_STATE(8980)] = 218407, + [SMALL_STATE(8981)] = 218421, + [SMALL_STATE(8982)] = 218435, + [SMALL_STATE(8983)] = 218449, + [SMALL_STATE(8984)] = 218463, + [SMALL_STATE(8985)] = 218477, + [SMALL_STATE(8986)] = 218491, + [SMALL_STATE(8987)] = 218501, + [SMALL_STATE(8988)] = 218515, + [SMALL_STATE(8989)] = 218529, + [SMALL_STATE(8990)] = 218543, + [SMALL_STATE(8991)] = 218557, + [SMALL_STATE(8992)] = 218571, + [SMALL_STATE(8993)] = 218585, + [SMALL_STATE(8994)] = 218599, + [SMALL_STATE(8995)] = 218613, + [SMALL_STATE(8996)] = 218627, + [SMALL_STATE(8997)] = 218641, + [SMALL_STATE(8998)] = 218655, + [SMALL_STATE(8999)] = 218669, + [SMALL_STATE(9000)] = 218683, + [SMALL_STATE(9001)] = 218697, + [SMALL_STATE(9002)] = 218711, + [SMALL_STATE(9003)] = 218725, + [SMALL_STATE(9004)] = 218739, + [SMALL_STATE(9005)] = 218753, + [SMALL_STATE(9006)] = 218767, + [SMALL_STATE(9007)] = 218781, + [SMALL_STATE(9008)] = 218795, + [SMALL_STATE(9009)] = 218809, + [SMALL_STATE(9010)] = 218819, + [SMALL_STATE(9011)] = 218833, + [SMALL_STATE(9012)] = 218843, + [SMALL_STATE(9013)] = 218857, + [SMALL_STATE(9014)] = 218871, + [SMALL_STATE(9015)] = 218885, + [SMALL_STATE(9016)] = 218899, + [SMALL_STATE(9017)] = 218913, + [SMALL_STATE(9018)] = 218927, + [SMALL_STATE(9019)] = 218941, + [SMALL_STATE(9020)] = 218955, + [SMALL_STATE(9021)] = 218969, + [SMALL_STATE(9022)] = 218983, + [SMALL_STATE(9023)] = 218995, + [SMALL_STATE(9024)] = 219009, + [SMALL_STATE(9025)] = 219023, + [SMALL_STATE(9026)] = 219037, + [SMALL_STATE(9027)] = 219051, + [SMALL_STATE(9028)] = 219065, + [SMALL_STATE(9029)] = 219079, + [SMALL_STATE(9030)] = 219091, + [SMALL_STATE(9031)] = 219105, + [SMALL_STATE(9032)] = 219115, + [SMALL_STATE(9033)] = 219129, + [SMALL_STATE(9034)] = 219143, + [SMALL_STATE(9035)] = 219157, + [SMALL_STATE(9036)] = 219171, + [SMALL_STATE(9037)] = 219185, + [SMALL_STATE(9038)] = 219197, + [SMALL_STATE(9039)] = 219209, + [SMALL_STATE(9040)] = 219221, + [SMALL_STATE(9041)] = 219235, + [SMALL_STATE(9042)] = 219249, + [SMALL_STATE(9043)] = 219263, + [SMALL_STATE(9044)] = 219275, + [SMALL_STATE(9045)] = 219287, + [SMALL_STATE(9046)] = 219301, + [SMALL_STATE(9047)] = 219315, + [SMALL_STATE(9048)] = 219329, + [SMALL_STATE(9049)] = 219343, + [SMALL_STATE(9050)] = 219357, + [SMALL_STATE(9051)] = 219371, + [SMALL_STATE(9052)] = 219385, + [SMALL_STATE(9053)] = 219399, + [SMALL_STATE(9054)] = 219413, + [SMALL_STATE(9055)] = 219427, + [SMALL_STATE(9056)] = 219441, + [SMALL_STATE(9057)] = 219455, + [SMALL_STATE(9058)] = 219469, + [SMALL_STATE(9059)] = 219483, + [SMALL_STATE(9060)] = 219497, + [SMALL_STATE(9061)] = 219511, + [SMALL_STATE(9062)] = 219525, + [SMALL_STATE(9063)] = 219539, + [SMALL_STATE(9064)] = 219553, + [SMALL_STATE(9065)] = 219567, + [SMALL_STATE(9066)] = 219581, + [SMALL_STATE(9067)] = 219595, + [SMALL_STATE(9068)] = 219609, + [SMALL_STATE(9069)] = 219623, + [SMALL_STATE(9070)] = 219637, + [SMALL_STATE(9071)] = 219651, + [SMALL_STATE(9072)] = 219665, + [SMALL_STATE(9073)] = 219679, + [SMALL_STATE(9074)] = 219693, + [SMALL_STATE(9075)] = 219707, + [SMALL_STATE(9076)] = 219721, + [SMALL_STATE(9077)] = 219735, + [SMALL_STATE(9078)] = 219749, + [SMALL_STATE(9079)] = 219763, + [SMALL_STATE(9080)] = 219777, + [SMALL_STATE(9081)] = 219791, + [SMALL_STATE(9082)] = 219805, + [SMALL_STATE(9083)] = 219819, + [SMALL_STATE(9084)] = 219833, + [SMALL_STATE(9085)] = 219847, + [SMALL_STATE(9086)] = 219861, + [SMALL_STATE(9087)] = 219875, + [SMALL_STATE(9088)] = 219889, + [SMALL_STATE(9089)] = 219903, + [SMALL_STATE(9090)] = 219917, + [SMALL_STATE(9091)] = 219927, + [SMALL_STATE(9092)] = 219941, + [SMALL_STATE(9093)] = 219955, + [SMALL_STATE(9094)] = 219967, + [SMALL_STATE(9095)] = 219981, + [SMALL_STATE(9096)] = 219995, + [SMALL_STATE(9097)] = 220009, + [SMALL_STATE(9098)] = 220020, + [SMALL_STATE(9099)] = 220029, + [SMALL_STATE(9100)] = 220040, + [SMALL_STATE(9101)] = 220051, + [SMALL_STATE(9102)] = 220060, + [SMALL_STATE(9103)] = 220071, + [SMALL_STATE(9104)] = 220082, + [SMALL_STATE(9105)] = 220093, + [SMALL_STATE(9106)] = 220104, + [SMALL_STATE(9107)] = 220115, + [SMALL_STATE(9108)] = 220126, + [SMALL_STATE(9109)] = 220137, + [SMALL_STATE(9110)] = 220148, + [SMALL_STATE(9111)] = 220157, + [SMALL_STATE(9112)] = 220168, + [SMALL_STATE(9113)] = 220177, + [SMALL_STATE(9114)] = 220186, + [SMALL_STATE(9115)] = 220197, + [SMALL_STATE(9116)] = 220206, + [SMALL_STATE(9117)] = 220217, + [SMALL_STATE(9118)] = 220228, + [SMALL_STATE(9119)] = 220239, + [SMALL_STATE(9120)] = 220248, + [SMALL_STATE(9121)] = 220257, + [SMALL_STATE(9122)] = 220266, + [SMALL_STATE(9123)] = 220277, + [SMALL_STATE(9124)] = 220286, + [SMALL_STATE(9125)] = 220295, + [SMALL_STATE(9126)] = 220306, + [SMALL_STATE(9127)] = 220315, + [SMALL_STATE(9128)] = 220326, + [SMALL_STATE(9129)] = 220337, + [SMALL_STATE(9130)] = 220348, + [SMALL_STATE(9131)] = 220357, + [SMALL_STATE(9132)] = 220366, + [SMALL_STATE(9133)] = 220375, + [SMALL_STATE(9134)] = 220384, + [SMALL_STATE(9135)] = 220393, + [SMALL_STATE(9136)] = 220402, + [SMALL_STATE(9137)] = 220411, + [SMALL_STATE(9138)] = 220422, + [SMALL_STATE(9139)] = 220433, + [SMALL_STATE(9140)] = 220444, + [SMALL_STATE(9141)] = 220455, + [SMALL_STATE(9142)] = 220466, + [SMALL_STATE(9143)] = 220477, + [SMALL_STATE(9144)] = 220488, + [SMALL_STATE(9145)] = 220497, + [SMALL_STATE(9146)] = 220508, + [SMALL_STATE(9147)] = 220517, + [SMALL_STATE(9148)] = 220526, + [SMALL_STATE(9149)] = 220537, + [SMALL_STATE(9150)] = 220546, + [SMALL_STATE(9151)] = 220555, + [SMALL_STATE(9152)] = 220564, + [SMALL_STATE(9153)] = 220573, + [SMALL_STATE(9154)] = 220584, + [SMALL_STATE(9155)] = 220593, + [SMALL_STATE(9156)] = 220602, + [SMALL_STATE(9157)] = 220611, + [SMALL_STATE(9158)] = 220620, + [SMALL_STATE(9159)] = 220631, + [SMALL_STATE(9160)] = 220640, + [SMALL_STATE(9161)] = 220649, + [SMALL_STATE(9162)] = 220658, + [SMALL_STATE(9163)] = 220667, + [SMALL_STATE(9164)] = 220676, + [SMALL_STATE(9165)] = 220685, + [SMALL_STATE(9166)] = 220696, + [SMALL_STATE(9167)] = 220707, + [SMALL_STATE(9168)] = 220718, + [SMALL_STATE(9169)] = 220729, + [SMALL_STATE(9170)] = 220740, + [SMALL_STATE(9171)] = 220751, + [SMALL_STATE(9172)] = 220762, + [SMALL_STATE(9173)] = 220773, + [SMALL_STATE(9174)] = 220784, + [SMALL_STATE(9175)] = 220793, + [SMALL_STATE(9176)] = 220802, + [SMALL_STATE(9177)] = 220811, + [SMALL_STATE(9178)] = 220820, + [SMALL_STATE(9179)] = 220831, + [SMALL_STATE(9180)] = 220842, + [SMALL_STATE(9181)] = 220853, + [SMALL_STATE(9182)] = 220862, + [SMALL_STATE(9183)] = 220873, + [SMALL_STATE(9184)] = 220884, + [SMALL_STATE(9185)] = 220895, + [SMALL_STATE(9186)] = 220906, + [SMALL_STATE(9187)] = 220917, + [SMALL_STATE(9188)] = 220928, + [SMALL_STATE(9189)] = 220939, + [SMALL_STATE(9190)] = 220950, + [SMALL_STATE(9191)] = 220961, + [SMALL_STATE(9192)] = 220972, + [SMALL_STATE(9193)] = 220983, + [SMALL_STATE(9194)] = 220994, + [SMALL_STATE(9195)] = 221005, + [SMALL_STATE(9196)] = 221016, + [SMALL_STATE(9197)] = 221027, + [SMALL_STATE(9198)] = 221038, + [SMALL_STATE(9199)] = 221049, + [SMALL_STATE(9200)] = 221060, + [SMALL_STATE(9201)] = 221071, + [SMALL_STATE(9202)] = 221082, + [SMALL_STATE(9203)] = 221093, + [SMALL_STATE(9204)] = 221104, + [SMALL_STATE(9205)] = 221115, + [SMALL_STATE(9206)] = 221126, + [SMALL_STATE(9207)] = 221137, + [SMALL_STATE(9208)] = 221148, + [SMALL_STATE(9209)] = 221159, + [SMALL_STATE(9210)] = 221170, + [SMALL_STATE(9211)] = 221181, + [SMALL_STATE(9212)] = 221192, + [SMALL_STATE(9213)] = 221203, + [SMALL_STATE(9214)] = 221214, + [SMALL_STATE(9215)] = 221225, + [SMALL_STATE(9216)] = 221236, + [SMALL_STATE(9217)] = 221247, + [SMALL_STATE(9218)] = 221258, + [SMALL_STATE(9219)] = 221269, + [SMALL_STATE(9220)] = 221280, + [SMALL_STATE(9221)] = 221291, + [SMALL_STATE(9222)] = 221302, + [SMALL_STATE(9223)] = 221313, + [SMALL_STATE(9224)] = 221324, + [SMALL_STATE(9225)] = 221335, + [SMALL_STATE(9226)] = 221346, + [SMALL_STATE(9227)] = 221357, + [SMALL_STATE(9228)] = 221368, + [SMALL_STATE(9229)] = 221379, + [SMALL_STATE(9230)] = 221390, + [SMALL_STATE(9231)] = 221401, + [SMALL_STATE(9232)] = 221412, + [SMALL_STATE(9233)] = 221423, + [SMALL_STATE(9234)] = 221434, + [SMALL_STATE(9235)] = 221445, + [SMALL_STATE(9236)] = 221456, + [SMALL_STATE(9237)] = 221467, + [SMALL_STATE(9238)] = 221478, + [SMALL_STATE(9239)] = 221489, + [SMALL_STATE(9240)] = 221500, + [SMALL_STATE(9241)] = 221511, + [SMALL_STATE(9242)] = 221520, + [SMALL_STATE(9243)] = 221531, + [SMALL_STATE(9244)] = 221540, + [SMALL_STATE(9245)] = 221549, + [SMALL_STATE(9246)] = 221560, + [SMALL_STATE(9247)] = 221569, + [SMALL_STATE(9248)] = 221580, + [SMALL_STATE(9249)] = 221589, + [SMALL_STATE(9250)] = 221600, + [SMALL_STATE(9251)] = 221611, + [SMALL_STATE(9252)] = 221622, + [SMALL_STATE(9253)] = 221633, + [SMALL_STATE(9254)] = 221644, + [SMALL_STATE(9255)] = 221655, + [SMALL_STATE(9256)] = 221666, + [SMALL_STATE(9257)] = 221675, + [SMALL_STATE(9258)] = 221686, + [SMALL_STATE(9259)] = 221695, + [SMALL_STATE(9260)] = 221706, + [SMALL_STATE(9261)] = 221717, + [SMALL_STATE(9262)] = 221728, + [SMALL_STATE(9263)] = 221739, + [SMALL_STATE(9264)] = 221748, + [SMALL_STATE(9265)] = 221757, + [SMALL_STATE(9266)] = 221766, + [SMALL_STATE(9267)] = 221777, + [SMALL_STATE(9268)] = 221788, + [SMALL_STATE(9269)] = 221797, + [SMALL_STATE(9270)] = 221808, + [SMALL_STATE(9271)] = 221819, + [SMALL_STATE(9272)] = 221830, + [SMALL_STATE(9273)] = 221839, + [SMALL_STATE(9274)] = 221850, + [SMALL_STATE(9275)] = 221859, + [SMALL_STATE(9276)] = 221870, + [SMALL_STATE(9277)] = 221881, + [SMALL_STATE(9278)] = 221892, + [SMALL_STATE(9279)] = 221901, + [SMALL_STATE(9280)] = 221910, + [SMALL_STATE(9281)] = 221921, + [SMALL_STATE(9282)] = 221932, + [SMALL_STATE(9283)] = 221943, + [SMALL_STATE(9284)] = 221954, + [SMALL_STATE(9285)] = 221963, + [SMALL_STATE(9286)] = 221974, + [SMALL_STATE(9287)] = 221985, + [SMALL_STATE(9288)] = 221996, + [SMALL_STATE(9289)] = 222007, + [SMALL_STATE(9290)] = 222018, + [SMALL_STATE(9291)] = 222029, + [SMALL_STATE(9292)] = 222038, + [SMALL_STATE(9293)] = 222049, + [SMALL_STATE(9294)] = 222060, + [SMALL_STATE(9295)] = 222069, + [SMALL_STATE(9296)] = 222080, + [SMALL_STATE(9297)] = 222089, + [SMALL_STATE(9298)] = 222098, + [SMALL_STATE(9299)] = 222109, + [SMALL_STATE(9300)] = 222120, + [SMALL_STATE(9301)] = 222131, + [SMALL_STATE(9302)] = 222142, + [SMALL_STATE(9303)] = 222153, + [SMALL_STATE(9304)] = 222162, + [SMALL_STATE(9305)] = 222173, + [SMALL_STATE(9306)] = 222184, + [SMALL_STATE(9307)] = 222195, + [SMALL_STATE(9308)] = 222206, + [SMALL_STATE(9309)] = 222217, + [SMALL_STATE(9310)] = 222228, + [SMALL_STATE(9311)] = 222239, + [SMALL_STATE(9312)] = 222248, + [SMALL_STATE(9313)] = 222259, + [SMALL_STATE(9314)] = 222270, + [SMALL_STATE(9315)] = 222281, + [SMALL_STATE(9316)] = 222292, + [SMALL_STATE(9317)] = 222303, + [SMALL_STATE(9318)] = 222314, + [SMALL_STATE(9319)] = 222325, + [SMALL_STATE(9320)] = 222336, + [SMALL_STATE(9321)] = 222347, + [SMALL_STATE(9322)] = 222358, + [SMALL_STATE(9323)] = 222369, + [SMALL_STATE(9324)] = 222380, + [SMALL_STATE(9325)] = 222391, + [SMALL_STATE(9326)] = 222402, + [SMALL_STATE(9327)] = 222413, + [SMALL_STATE(9328)] = 222424, + [SMALL_STATE(9329)] = 222435, + [SMALL_STATE(9330)] = 222446, + [SMALL_STATE(9331)] = 222457, + [SMALL_STATE(9332)] = 222468, + [SMALL_STATE(9333)] = 222479, + [SMALL_STATE(9334)] = 222490, + [SMALL_STATE(9335)] = 222501, + [SMALL_STATE(9336)] = 222512, + [SMALL_STATE(9337)] = 222523, + [SMALL_STATE(9338)] = 222534, + [SMALL_STATE(9339)] = 222545, + [SMALL_STATE(9340)] = 222556, + [SMALL_STATE(9341)] = 222567, + [SMALL_STATE(9342)] = 222578, + [SMALL_STATE(9343)] = 222589, + [SMALL_STATE(9344)] = 222600, + [SMALL_STATE(9345)] = 222611, + [SMALL_STATE(9346)] = 222622, + [SMALL_STATE(9347)] = 222633, + [SMALL_STATE(9348)] = 222644, + [SMALL_STATE(9349)] = 222655, + [SMALL_STATE(9350)] = 222666, + [SMALL_STATE(9351)] = 222677, + [SMALL_STATE(9352)] = 222688, + [SMALL_STATE(9353)] = 222699, + [SMALL_STATE(9354)] = 222710, + [SMALL_STATE(9355)] = 222719, + [SMALL_STATE(9356)] = 222730, + [SMALL_STATE(9357)] = 222741, + [SMALL_STATE(9358)] = 222752, + [SMALL_STATE(9359)] = 222761, + [SMALL_STATE(9360)] = 222770, + [SMALL_STATE(9361)] = 222781, + [SMALL_STATE(9362)] = 222792, + [SMALL_STATE(9363)] = 222801, + [SMALL_STATE(9364)] = 222812, + [SMALL_STATE(9365)] = 222823, + [SMALL_STATE(9366)] = 222834, + [SMALL_STATE(9367)] = 222845, + [SMALL_STATE(9368)] = 222856, + [SMALL_STATE(9369)] = 222867, + [SMALL_STATE(9370)] = 222878, + [SMALL_STATE(9371)] = 222887, + [SMALL_STATE(9372)] = 222896, + [SMALL_STATE(9373)] = 222907, + [SMALL_STATE(9374)] = 222918, + [SMALL_STATE(9375)] = 222929, + [SMALL_STATE(9376)] = 222940, + [SMALL_STATE(9377)] = 222951, + [SMALL_STATE(9378)] = 222962, + [SMALL_STATE(9379)] = 222973, + [SMALL_STATE(9380)] = 222984, + [SMALL_STATE(9381)] = 222995, + [SMALL_STATE(9382)] = 223006, + [SMALL_STATE(9383)] = 223015, + [SMALL_STATE(9384)] = 223026, + [SMALL_STATE(9385)] = 223035, + [SMALL_STATE(9386)] = 223046, + [SMALL_STATE(9387)] = 223055, + [SMALL_STATE(9388)] = 223064, + [SMALL_STATE(9389)] = 223073, + [SMALL_STATE(9390)] = 223084, + [SMALL_STATE(9391)] = 223095, + [SMALL_STATE(9392)] = 223106, + [SMALL_STATE(9393)] = 223117, + [SMALL_STATE(9394)] = 223126, + [SMALL_STATE(9395)] = 223137, + [SMALL_STATE(9396)] = 223148, + [SMALL_STATE(9397)] = 223159, + [SMALL_STATE(9398)] = 223170, + [SMALL_STATE(9399)] = 223181, + [SMALL_STATE(9400)] = 223192, + [SMALL_STATE(9401)] = 223203, + [SMALL_STATE(9402)] = 223214, + [SMALL_STATE(9403)] = 223223, + [SMALL_STATE(9404)] = 223234, + [SMALL_STATE(9405)] = 223243, + [SMALL_STATE(9406)] = 223252, + [SMALL_STATE(9407)] = 223263, + [SMALL_STATE(9408)] = 223274, + [SMALL_STATE(9409)] = 223285, + [SMALL_STATE(9410)] = 223296, + [SMALL_STATE(9411)] = 223307, + [SMALL_STATE(9412)] = 223318, + [SMALL_STATE(9413)] = 223329, + [SMALL_STATE(9414)] = 223340, + [SMALL_STATE(9415)] = 223351, + [SMALL_STATE(9416)] = 223362, + [SMALL_STATE(9417)] = 223373, + [SMALL_STATE(9418)] = 223384, + [SMALL_STATE(9419)] = 223393, + [SMALL_STATE(9420)] = 223404, + [SMALL_STATE(9421)] = 223415, + [SMALL_STATE(9422)] = 223426, + [SMALL_STATE(9423)] = 223437, + [SMALL_STATE(9424)] = 223448, + [SMALL_STATE(9425)] = 223457, + [SMALL_STATE(9426)] = 223466, + [SMALL_STATE(9427)] = 223477, + [SMALL_STATE(9428)] = 223488, + [SMALL_STATE(9429)] = 223499, + [SMALL_STATE(9430)] = 223508, + [SMALL_STATE(9431)] = 223517, + [SMALL_STATE(9432)] = 223528, + [SMALL_STATE(9433)] = 223537, + [SMALL_STATE(9434)] = 223548, + [SMALL_STATE(9435)] = 223559, + [SMALL_STATE(9436)] = 223570, + [SMALL_STATE(9437)] = 223581, + [SMALL_STATE(9438)] = 223592, + [SMALL_STATE(9439)] = 223601, + [SMALL_STATE(9440)] = 223612, + [SMALL_STATE(9441)] = 223621, + [SMALL_STATE(9442)] = 223632, + [SMALL_STATE(9443)] = 223643, + [SMALL_STATE(9444)] = 223652, + [SMALL_STATE(9445)] = 223663, + [SMALL_STATE(9446)] = 223672, + [SMALL_STATE(9447)] = 223683, + [SMALL_STATE(9448)] = 223694, + [SMALL_STATE(9449)] = 223705, + [SMALL_STATE(9450)] = 223716, + [SMALL_STATE(9451)] = 223727, + [SMALL_STATE(9452)] = 223736, + [SMALL_STATE(9453)] = 223747, + [SMALL_STATE(9454)] = 223756, + [SMALL_STATE(9455)] = 223765, + [SMALL_STATE(9456)] = 223776, + [SMALL_STATE(9457)] = 223787, + [SMALL_STATE(9458)] = 223796, + [SMALL_STATE(9459)] = 223805, + [SMALL_STATE(9460)] = 223816, + [SMALL_STATE(9461)] = 223825, + [SMALL_STATE(9462)] = 223834, + [SMALL_STATE(9463)] = 223842, + [SMALL_STATE(9464)] = 223850, + [SMALL_STATE(9465)] = 223858, + [SMALL_STATE(9466)] = 223866, + [SMALL_STATE(9467)] = 223874, + [SMALL_STATE(9468)] = 223882, + [SMALL_STATE(9469)] = 223890, + [SMALL_STATE(9470)] = 223898, + [SMALL_STATE(9471)] = 223906, + [SMALL_STATE(9472)] = 223914, + [SMALL_STATE(9473)] = 223922, + [SMALL_STATE(9474)] = 223930, + [SMALL_STATE(9475)] = 223938, + [SMALL_STATE(9476)] = 223946, + [SMALL_STATE(9477)] = 223954, + [SMALL_STATE(9478)] = 223962, + [SMALL_STATE(9479)] = 223970, + [SMALL_STATE(9480)] = 223978, + [SMALL_STATE(9481)] = 223986, + [SMALL_STATE(9482)] = 223994, + [SMALL_STATE(9483)] = 224002, + [SMALL_STATE(9484)] = 224010, + [SMALL_STATE(9485)] = 224018, + [SMALL_STATE(9486)] = 224026, + [SMALL_STATE(9487)] = 224034, + [SMALL_STATE(9488)] = 224042, + [SMALL_STATE(9489)] = 224050, + [SMALL_STATE(9490)] = 224058, + [SMALL_STATE(9491)] = 224066, + [SMALL_STATE(9492)] = 224074, + [SMALL_STATE(9493)] = 224082, + [SMALL_STATE(9494)] = 224090, + [SMALL_STATE(9495)] = 224098, + [SMALL_STATE(9496)] = 224106, + [SMALL_STATE(9497)] = 224114, + [SMALL_STATE(9498)] = 224122, + [SMALL_STATE(9499)] = 224130, + [SMALL_STATE(9500)] = 224138, + [SMALL_STATE(9501)] = 224146, + [SMALL_STATE(9502)] = 224154, + [SMALL_STATE(9503)] = 224162, + [SMALL_STATE(9504)] = 224170, + [SMALL_STATE(9505)] = 224178, + [SMALL_STATE(9506)] = 224186, + [SMALL_STATE(9507)] = 224194, + [SMALL_STATE(9508)] = 224202, + [SMALL_STATE(9509)] = 224210, + [SMALL_STATE(9510)] = 224218, + [SMALL_STATE(9511)] = 224226, + [SMALL_STATE(9512)] = 224234, + [SMALL_STATE(9513)] = 224242, + [SMALL_STATE(9514)] = 224250, + [SMALL_STATE(9515)] = 224258, + [SMALL_STATE(9516)] = 224266, + [SMALL_STATE(9517)] = 224274, + [SMALL_STATE(9518)] = 224282, + [SMALL_STATE(9519)] = 224290, + [SMALL_STATE(9520)] = 224298, + [SMALL_STATE(9521)] = 224306, + [SMALL_STATE(9522)] = 224314, + [SMALL_STATE(9523)] = 224322, + [SMALL_STATE(9524)] = 224330, + [SMALL_STATE(9525)] = 224338, + [SMALL_STATE(9526)] = 224346, + [SMALL_STATE(9527)] = 224354, + [SMALL_STATE(9528)] = 224362, + [SMALL_STATE(9529)] = 224370, + [SMALL_STATE(9530)] = 224378, + [SMALL_STATE(9531)] = 224386, + [SMALL_STATE(9532)] = 224394, + [SMALL_STATE(9533)] = 224402, + [SMALL_STATE(9534)] = 224410, + [SMALL_STATE(9535)] = 224418, + [SMALL_STATE(9536)] = 224426, + [SMALL_STATE(9537)] = 224434, + [SMALL_STATE(9538)] = 224442, + [SMALL_STATE(9539)] = 224450, + [SMALL_STATE(9540)] = 224458, + [SMALL_STATE(9541)] = 224466, + [SMALL_STATE(9542)] = 224474, + [SMALL_STATE(9543)] = 224482, + [SMALL_STATE(9544)] = 224490, + [SMALL_STATE(9545)] = 224498, + [SMALL_STATE(9546)] = 224506, + [SMALL_STATE(9547)] = 224514, + [SMALL_STATE(9548)] = 224522, + [SMALL_STATE(9549)] = 224530, + [SMALL_STATE(9550)] = 224538, + [SMALL_STATE(9551)] = 224546, + [SMALL_STATE(9552)] = 224554, + [SMALL_STATE(9553)] = 224562, + [SMALL_STATE(9554)] = 224570, + [SMALL_STATE(9555)] = 224578, + [SMALL_STATE(9556)] = 224586, + [SMALL_STATE(9557)] = 224594, + [SMALL_STATE(9558)] = 224602, + [SMALL_STATE(9559)] = 224610, + [SMALL_STATE(9560)] = 224618, + [SMALL_STATE(9561)] = 224626, + [SMALL_STATE(9562)] = 224634, + [SMALL_STATE(9563)] = 224642, + [SMALL_STATE(9564)] = 224650, + [SMALL_STATE(9565)] = 224658, + [SMALL_STATE(9566)] = 224666, + [SMALL_STATE(9567)] = 224674, + [SMALL_STATE(9568)] = 224682, + [SMALL_STATE(9569)] = 224690, + [SMALL_STATE(9570)] = 224698, + [SMALL_STATE(9571)] = 224706, + [SMALL_STATE(9572)] = 224714, + [SMALL_STATE(9573)] = 224722, + [SMALL_STATE(9574)] = 224730, + [SMALL_STATE(9575)] = 224738, + [SMALL_STATE(9576)] = 224746, + [SMALL_STATE(9577)] = 224754, + [SMALL_STATE(9578)] = 224762, + [SMALL_STATE(9579)] = 224770, + [SMALL_STATE(9580)] = 224778, + [SMALL_STATE(9581)] = 224786, + [SMALL_STATE(9582)] = 224794, + [SMALL_STATE(9583)] = 224802, + [SMALL_STATE(9584)] = 224810, + [SMALL_STATE(9585)] = 224818, + [SMALL_STATE(9586)] = 224826, + [SMALL_STATE(9587)] = 224834, + [SMALL_STATE(9588)] = 224842, + [SMALL_STATE(9589)] = 224850, + [SMALL_STATE(9590)] = 224858, + [SMALL_STATE(9591)] = 224866, + [SMALL_STATE(9592)] = 224874, + [SMALL_STATE(9593)] = 224882, + [SMALL_STATE(9594)] = 224890, + [SMALL_STATE(9595)] = 224898, + [SMALL_STATE(9596)] = 224906, + [SMALL_STATE(9597)] = 224914, + [SMALL_STATE(9598)] = 224922, + [SMALL_STATE(9599)] = 224930, + [SMALL_STATE(9600)] = 224938, + [SMALL_STATE(9601)] = 224946, + [SMALL_STATE(9602)] = 224954, + [SMALL_STATE(9603)] = 224962, + [SMALL_STATE(9604)] = 224970, + [SMALL_STATE(9605)] = 224978, + [SMALL_STATE(9606)] = 224986, + [SMALL_STATE(9607)] = 224994, + [SMALL_STATE(9608)] = 225002, + [SMALL_STATE(9609)] = 225010, + [SMALL_STATE(9610)] = 225018, + [SMALL_STATE(9611)] = 225026, + [SMALL_STATE(9612)] = 225034, + [SMALL_STATE(9613)] = 225042, + [SMALL_STATE(9614)] = 225050, + [SMALL_STATE(9615)] = 225058, + [SMALL_STATE(9616)] = 225066, + [SMALL_STATE(9617)] = 225074, + [SMALL_STATE(9618)] = 225082, + [SMALL_STATE(9619)] = 225090, + [SMALL_STATE(9620)] = 225098, + [SMALL_STATE(9621)] = 225106, + [SMALL_STATE(9622)] = 225114, + [SMALL_STATE(9623)] = 225122, + [SMALL_STATE(9624)] = 225130, + [SMALL_STATE(9625)] = 225138, + [SMALL_STATE(9626)] = 225146, + [SMALL_STATE(9627)] = 225154, + [SMALL_STATE(9628)] = 225162, + [SMALL_STATE(9629)] = 225170, + [SMALL_STATE(9630)] = 225178, + [SMALL_STATE(9631)] = 225186, + [SMALL_STATE(9632)] = 225194, + [SMALL_STATE(9633)] = 225202, + [SMALL_STATE(9634)] = 225210, + [SMALL_STATE(9635)] = 225218, + [SMALL_STATE(9636)] = 225226, + [SMALL_STATE(9637)] = 225234, + [SMALL_STATE(9638)] = 225242, + [SMALL_STATE(9639)] = 225250, + [SMALL_STATE(9640)] = 225258, + [SMALL_STATE(9641)] = 225266, + [SMALL_STATE(9642)] = 225274, + [SMALL_STATE(9643)] = 225282, + [SMALL_STATE(9644)] = 225290, + [SMALL_STATE(9645)] = 225298, + [SMALL_STATE(9646)] = 225306, + [SMALL_STATE(9647)] = 225314, + [SMALL_STATE(9648)] = 225322, + [SMALL_STATE(9649)] = 225330, + [SMALL_STATE(9650)] = 225338, + [SMALL_STATE(9651)] = 225346, + [SMALL_STATE(9652)] = 225354, + [SMALL_STATE(9653)] = 225362, + [SMALL_STATE(9654)] = 225370, + [SMALL_STATE(9655)] = 225378, + [SMALL_STATE(9656)] = 225386, + [SMALL_STATE(9657)] = 225394, + [SMALL_STATE(9658)] = 225402, + [SMALL_STATE(9659)] = 225410, + [SMALL_STATE(9660)] = 225418, + [SMALL_STATE(9661)] = 225426, + [SMALL_STATE(9662)] = 225434, + [SMALL_STATE(9663)] = 225442, + [SMALL_STATE(9664)] = 225450, + [SMALL_STATE(9665)] = 225458, + [SMALL_STATE(9666)] = 225466, + [SMALL_STATE(9667)] = 225474, + [SMALL_STATE(9668)] = 225482, + [SMALL_STATE(9669)] = 225490, + [SMALL_STATE(9670)] = 225498, + [SMALL_STATE(9671)] = 225506, + [SMALL_STATE(9672)] = 225514, + [SMALL_STATE(9673)] = 225522, + [SMALL_STATE(9674)] = 225530, + [SMALL_STATE(9675)] = 225538, + [SMALL_STATE(9676)] = 225546, + [SMALL_STATE(9677)] = 225554, + [SMALL_STATE(9678)] = 225562, + [SMALL_STATE(9679)] = 225570, + [SMALL_STATE(9680)] = 225578, + [SMALL_STATE(9681)] = 225586, + [SMALL_STATE(9682)] = 225594, + [SMALL_STATE(9683)] = 225602, + [SMALL_STATE(9684)] = 225610, + [SMALL_STATE(9685)] = 225618, + [SMALL_STATE(9686)] = 225626, + [SMALL_STATE(9687)] = 225634, + [SMALL_STATE(9688)] = 225642, + [SMALL_STATE(9689)] = 225650, + [SMALL_STATE(9690)] = 225658, + [SMALL_STATE(9691)] = 225666, + [SMALL_STATE(9692)] = 225674, + [SMALL_STATE(9693)] = 225682, + [SMALL_STATE(9694)] = 225690, + [SMALL_STATE(9695)] = 225698, + [SMALL_STATE(9696)] = 225706, + [SMALL_STATE(9697)] = 225714, + [SMALL_STATE(9698)] = 225722, + [SMALL_STATE(9699)] = 225730, + [SMALL_STATE(9700)] = 225738, + [SMALL_STATE(9701)] = 225746, + [SMALL_STATE(9702)] = 225754, + [SMALL_STATE(9703)] = 225762, + [SMALL_STATE(9704)] = 225770, + [SMALL_STATE(9705)] = 225778, + [SMALL_STATE(9706)] = 225786, + [SMALL_STATE(9707)] = 225794, + [SMALL_STATE(9708)] = 225802, + [SMALL_STATE(9709)] = 225810, + [SMALL_STATE(9710)] = 225818, + [SMALL_STATE(9711)] = 225826, + [SMALL_STATE(9712)] = 225834, + [SMALL_STATE(9713)] = 225842, + [SMALL_STATE(9714)] = 225850, + [SMALL_STATE(9715)] = 225858, + [SMALL_STATE(9716)] = 225866, + [SMALL_STATE(9717)] = 225874, + [SMALL_STATE(9718)] = 225882, + [SMALL_STATE(9719)] = 225890, + [SMALL_STATE(9720)] = 225898, + [SMALL_STATE(9721)] = 225906, + [SMALL_STATE(9722)] = 225914, + [SMALL_STATE(9723)] = 225922, + [SMALL_STATE(9724)] = 225930, + [SMALL_STATE(9725)] = 225938, + [SMALL_STATE(9726)] = 225946, + [SMALL_STATE(9727)] = 225954, + [SMALL_STATE(9728)] = 225962, + [SMALL_STATE(9729)] = 225970, + [SMALL_STATE(9730)] = 225978, + [SMALL_STATE(9731)] = 225986, + [SMALL_STATE(9732)] = 225994, + [SMALL_STATE(9733)] = 226002, + [SMALL_STATE(9734)] = 226010, + [SMALL_STATE(9735)] = 226018, + [SMALL_STATE(9736)] = 226026, + [SMALL_STATE(9737)] = 226034, + [SMALL_STATE(9738)] = 226042, + [SMALL_STATE(9739)] = 226050, + [SMALL_STATE(9740)] = 226058, + [SMALL_STATE(9741)] = 226066, + [SMALL_STATE(9742)] = 226074, + [SMALL_STATE(9743)] = 226082, + [SMALL_STATE(9744)] = 226090, + [SMALL_STATE(9745)] = 226098, + [SMALL_STATE(9746)] = 226106, + [SMALL_STATE(9747)] = 226114, + [SMALL_STATE(9748)] = 226122, + [SMALL_STATE(9749)] = 226130, + [SMALL_STATE(9750)] = 226138, + [SMALL_STATE(9751)] = 226146, + [SMALL_STATE(9752)] = 226154, + [SMALL_STATE(9753)] = 226162, + [SMALL_STATE(9754)] = 226170, + [SMALL_STATE(9755)] = 226178, + [SMALL_STATE(9756)] = 226186, + [SMALL_STATE(9757)] = 226194, + [SMALL_STATE(9758)] = 226202, + [SMALL_STATE(9759)] = 226210, + [SMALL_STATE(9760)] = 226218, + [SMALL_STATE(9761)] = 226226, + [SMALL_STATE(9762)] = 226234, + [SMALL_STATE(9763)] = 226242, + [SMALL_STATE(9764)] = 226250, + [SMALL_STATE(9765)] = 226258, + [SMALL_STATE(9766)] = 226266, + [SMALL_STATE(9767)] = 226274, + [SMALL_STATE(9768)] = 226282, + [SMALL_STATE(9769)] = 226290, + [SMALL_STATE(9770)] = 226298, + [SMALL_STATE(9771)] = 226306, + [SMALL_STATE(9772)] = 226314, + [SMALL_STATE(9773)] = 226322, + [SMALL_STATE(9774)] = 226330, + [SMALL_STATE(9775)] = 226338, + [SMALL_STATE(9776)] = 226346, + [SMALL_STATE(9777)] = 226354, + [SMALL_STATE(9778)] = 226362, + [SMALL_STATE(9779)] = 226370, + [SMALL_STATE(9780)] = 226378, + [SMALL_STATE(9781)] = 226386, + [SMALL_STATE(9782)] = 226394, + [SMALL_STATE(9783)] = 226402, + [SMALL_STATE(9784)] = 226410, + [SMALL_STATE(9785)] = 226418, + [SMALL_STATE(9786)] = 226426, + [SMALL_STATE(9787)] = 226434, + [SMALL_STATE(9788)] = 226442, + [SMALL_STATE(9789)] = 226450, + [SMALL_STATE(9790)] = 226458, + [SMALL_STATE(9791)] = 226466, + [SMALL_STATE(9792)] = 226474, + [SMALL_STATE(9793)] = 226482, + [SMALL_STATE(9794)] = 226490, + [SMALL_STATE(9795)] = 226498, + [SMALL_STATE(9796)] = 226506, + [SMALL_STATE(9797)] = 226514, + [SMALL_STATE(9798)] = 226522, + [SMALL_STATE(9799)] = 226530, + [SMALL_STATE(9800)] = 226538, + [SMALL_STATE(9801)] = 226546, + [SMALL_STATE(9802)] = 226554, + [SMALL_STATE(9803)] = 226562, + [SMALL_STATE(9804)] = 226570, + [SMALL_STATE(9805)] = 226578, + [SMALL_STATE(9806)] = 226586, + [SMALL_STATE(9807)] = 226594, + [SMALL_STATE(9808)] = 226602, + [SMALL_STATE(9809)] = 226610, + [SMALL_STATE(9810)] = 226618, + [SMALL_STATE(9811)] = 226626, + [SMALL_STATE(9812)] = 226634, + [SMALL_STATE(9813)] = 226642, + [SMALL_STATE(9814)] = 226650, + [SMALL_STATE(9815)] = 226658, + [SMALL_STATE(9816)] = 226666, + [SMALL_STATE(9817)] = 226674, + [SMALL_STATE(9818)] = 226682, + [SMALL_STATE(9819)] = 226690, + [SMALL_STATE(9820)] = 226698, + [SMALL_STATE(9821)] = 226706, + [SMALL_STATE(9822)] = 226714, + [SMALL_STATE(9823)] = 226722, + [SMALL_STATE(9824)] = 226730, + [SMALL_STATE(9825)] = 226738, + [SMALL_STATE(9826)] = 226746, + [SMALL_STATE(9827)] = 226754, + [SMALL_STATE(9828)] = 226762, + [SMALL_STATE(9829)] = 226770, + [SMALL_STATE(9830)] = 226778, + [SMALL_STATE(9831)] = 226786, + [SMALL_STATE(9832)] = 226794, + [SMALL_STATE(9833)] = 226802, + [SMALL_STATE(9834)] = 226810, + [SMALL_STATE(9835)] = 226818, + [SMALL_STATE(9836)] = 226826, + [SMALL_STATE(9837)] = 226834, + [SMALL_STATE(9838)] = 226842, + [SMALL_STATE(9839)] = 226850, + [SMALL_STATE(9840)] = 226858, + [SMALL_STATE(9841)] = 226866, + [SMALL_STATE(9842)] = 226874, + [SMALL_STATE(9843)] = 226882, + [SMALL_STATE(9844)] = 226890, + [SMALL_STATE(9845)] = 226898, + [SMALL_STATE(9846)] = 226906, + [SMALL_STATE(9847)] = 226914, + [SMALL_STATE(9848)] = 226922, + [SMALL_STATE(9849)] = 226930, + [SMALL_STATE(9850)] = 226938, + [SMALL_STATE(9851)] = 226946, + [SMALL_STATE(9852)] = 226954, + [SMALL_STATE(9853)] = 226962, + [SMALL_STATE(9854)] = 226970, + [SMALL_STATE(9855)] = 226978, + [SMALL_STATE(9856)] = 226986, + [SMALL_STATE(9857)] = 226994, + [SMALL_STATE(9858)] = 227002, + [SMALL_STATE(9859)] = 227010, + [SMALL_STATE(9860)] = 227018, + [SMALL_STATE(9861)] = 227026, + [SMALL_STATE(9862)] = 227034, + [SMALL_STATE(9863)] = 227042, + [SMALL_STATE(9864)] = 227050, + [SMALL_STATE(9865)] = 227058, + [SMALL_STATE(9866)] = 227066, + [SMALL_STATE(9867)] = 227074, + [SMALL_STATE(9868)] = 227082, + [SMALL_STATE(9869)] = 227090, + [SMALL_STATE(9870)] = 227098, + [SMALL_STATE(9871)] = 227106, + [SMALL_STATE(9872)] = 227114, + [SMALL_STATE(9873)] = 227122, + [SMALL_STATE(9874)] = 227130, + [SMALL_STATE(9875)] = 227138, + [SMALL_STATE(9876)] = 227146, + [SMALL_STATE(9877)] = 227154, + [SMALL_STATE(9878)] = 227162, + [SMALL_STATE(9879)] = 227170, + [SMALL_STATE(9880)] = 227178, + [SMALL_STATE(9881)] = 227186, + [SMALL_STATE(9882)] = 227194, + [SMALL_STATE(9883)] = 227202, + [SMALL_STATE(9884)] = 227210, + [SMALL_STATE(9885)] = 227218, + [SMALL_STATE(9886)] = 227226, + [SMALL_STATE(9887)] = 227234, + [SMALL_STATE(9888)] = 227242, + [SMALL_STATE(9889)] = 227250, + [SMALL_STATE(9890)] = 227258, + [SMALL_STATE(9891)] = 227266, + [SMALL_STATE(9892)] = 227274, + [SMALL_STATE(9893)] = 227282, + [SMALL_STATE(9894)] = 227290, + [SMALL_STATE(9895)] = 227298, + [SMALL_STATE(9896)] = 227306, + [SMALL_STATE(9897)] = 227314, + [SMALL_STATE(9898)] = 227322, + [SMALL_STATE(9899)] = 227330, + [SMALL_STATE(9900)] = 227338, + [SMALL_STATE(9901)] = 227346, + [SMALL_STATE(9902)] = 227354, + [SMALL_STATE(9903)] = 227362, + [SMALL_STATE(9904)] = 227370, + [SMALL_STATE(9905)] = 227378, + [SMALL_STATE(9906)] = 227386, + [SMALL_STATE(9907)] = 227394, + [SMALL_STATE(9908)] = 227402, + [SMALL_STATE(9909)] = 227410, + [SMALL_STATE(9910)] = 227418, + [SMALL_STATE(9911)] = 227426, + [SMALL_STATE(9912)] = 227434, + [SMALL_STATE(9913)] = 227442, + [SMALL_STATE(9914)] = 227450, + [SMALL_STATE(9915)] = 227458, + [SMALL_STATE(9916)] = 227466, + [SMALL_STATE(9917)] = 227474, + [SMALL_STATE(9918)] = 227482, + [SMALL_STATE(9919)] = 227490, + [SMALL_STATE(9920)] = 227498, + [SMALL_STATE(9921)] = 227506, + [SMALL_STATE(9922)] = 227514, + [SMALL_STATE(9923)] = 227522, + [SMALL_STATE(9924)] = 227530, + [SMALL_STATE(9925)] = 227538, + [SMALL_STATE(9926)] = 227546, + [SMALL_STATE(9927)] = 227554, + [SMALL_STATE(9928)] = 227562, + [SMALL_STATE(9929)] = 227570, + [SMALL_STATE(9930)] = 227578, + [SMALL_STATE(9931)] = 227586, + [SMALL_STATE(9932)] = 227594, + [SMALL_STATE(9933)] = 227602, + [SMALL_STATE(9934)] = 227610, + [SMALL_STATE(9935)] = 227618, + [SMALL_STATE(9936)] = 227626, + [SMALL_STATE(9937)] = 227634, + [SMALL_STATE(9938)] = 227642, + [SMALL_STATE(9939)] = 227650, + [SMALL_STATE(9940)] = 227658, + [SMALL_STATE(9941)] = 227666, + [SMALL_STATE(9942)] = 227674, + [SMALL_STATE(9943)] = 227682, + [SMALL_STATE(9944)] = 227690, + [SMALL_STATE(9945)] = 227698, + [SMALL_STATE(9946)] = 227706, + [SMALL_STATE(9947)] = 227714, + [SMALL_STATE(9948)] = 227722, + [SMALL_STATE(9949)] = 227730, + [SMALL_STATE(9950)] = 227738, + [SMALL_STATE(9951)] = 227746, + [SMALL_STATE(9952)] = 227754, + [SMALL_STATE(9953)] = 227762, + [SMALL_STATE(9954)] = 227770, + [SMALL_STATE(9955)] = 227778, + [SMALL_STATE(9956)] = 227786, + [SMALL_STATE(9957)] = 227794, + [SMALL_STATE(9958)] = 227802, + [SMALL_STATE(9959)] = 227810, + [SMALL_STATE(9960)] = 227818, + [SMALL_STATE(9961)] = 227826, + [SMALL_STATE(9962)] = 227834, + [SMALL_STATE(9963)] = 227842, + [SMALL_STATE(9964)] = 227850, + [SMALL_STATE(9965)] = 227858, + [SMALL_STATE(9966)] = 227866, + [SMALL_STATE(9967)] = 227874, + [SMALL_STATE(9968)] = 227882, + [SMALL_STATE(9969)] = 227890, + [SMALL_STATE(9970)] = 227898, + [SMALL_STATE(9971)] = 227906, + [SMALL_STATE(9972)] = 227914, + [SMALL_STATE(9973)] = 227922, + [SMALL_STATE(9974)] = 227930, + [SMALL_STATE(9975)] = 227938, + [SMALL_STATE(9976)] = 227946, + [SMALL_STATE(9977)] = 227954, + [SMALL_STATE(9978)] = 227962, + [SMALL_STATE(9979)] = 227970, + [SMALL_STATE(9980)] = 227978, + [SMALL_STATE(9981)] = 227986, + [SMALL_STATE(9982)] = 227994, + [SMALL_STATE(9983)] = 228002, + [SMALL_STATE(9984)] = 228010, + [SMALL_STATE(9985)] = 228018, + [SMALL_STATE(9986)] = 228026, + [SMALL_STATE(9987)] = 228034, + [SMALL_STATE(9988)] = 228042, + [SMALL_STATE(9989)] = 228050, + [SMALL_STATE(9990)] = 228058, + [SMALL_STATE(9991)] = 228066, + [SMALL_STATE(9992)] = 228074, + [SMALL_STATE(9993)] = 228082, + [SMALL_STATE(9994)] = 228090, + [SMALL_STATE(9995)] = 228098, + [SMALL_STATE(9996)] = 228106, + [SMALL_STATE(9997)] = 228114, + [SMALL_STATE(9998)] = 228122, + [SMALL_STATE(9999)] = 228130, + [SMALL_STATE(10000)] = 228138, + [SMALL_STATE(10001)] = 228146, + [SMALL_STATE(10002)] = 228154, + [SMALL_STATE(10003)] = 228162, + [SMALL_STATE(10004)] = 228170, + [SMALL_STATE(10005)] = 228178, + [SMALL_STATE(10006)] = 228186, + [SMALL_STATE(10007)] = 228194, + [SMALL_STATE(10008)] = 228202, + [SMALL_STATE(10009)] = 228210, + [SMALL_STATE(10010)] = 228218, + [SMALL_STATE(10011)] = 228226, + [SMALL_STATE(10012)] = 228234, + [SMALL_STATE(10013)] = 228242, + [SMALL_STATE(10014)] = 228250, + [SMALL_STATE(10015)] = 228258, + [SMALL_STATE(10016)] = 228266, + [SMALL_STATE(10017)] = 228274, + [SMALL_STATE(10018)] = 228282, + [SMALL_STATE(10019)] = 228290, + [SMALL_STATE(10020)] = 228298, + [SMALL_STATE(10021)] = 228306, + [SMALL_STATE(10022)] = 228314, + [SMALL_STATE(10023)] = 228322, + [SMALL_STATE(10024)] = 228330, + [SMALL_STATE(10025)] = 228338, + [SMALL_STATE(10026)] = 228346, + [SMALL_STATE(10027)] = 228354, + [SMALL_STATE(10028)] = 228362, + [SMALL_STATE(10029)] = 228370, + [SMALL_STATE(10030)] = 228378, + [SMALL_STATE(10031)] = 228386, + [SMALL_STATE(10032)] = 228394, + [SMALL_STATE(10033)] = 228402, + [SMALL_STATE(10034)] = 228410, + [SMALL_STATE(10035)] = 228418, + [SMALL_STATE(10036)] = 228426, + [SMALL_STATE(10037)] = 228434, + [SMALL_STATE(10038)] = 228442, + [SMALL_STATE(10039)] = 228450, + [SMALL_STATE(10040)] = 228458, + [SMALL_STATE(10041)] = 228466, + [SMALL_STATE(10042)] = 228474, + [SMALL_STATE(10043)] = 228482, + [SMALL_STATE(10044)] = 228490, + [SMALL_STATE(10045)] = 228498, + [SMALL_STATE(10046)] = 228506, + [SMALL_STATE(10047)] = 228514, + [SMALL_STATE(10048)] = 228522, + [SMALL_STATE(10049)] = 228530, + [SMALL_STATE(10050)] = 228538, + [SMALL_STATE(10051)] = 228546, + [SMALL_STATE(10052)] = 228554, + [SMALL_STATE(10053)] = 228562, + [SMALL_STATE(10054)] = 228570, + [SMALL_STATE(10055)] = 228578, + [SMALL_STATE(10056)] = 228586, + [SMALL_STATE(10057)] = 228594, + [SMALL_STATE(10058)] = 228602, + [SMALL_STATE(10059)] = 228610, + [SMALL_STATE(10060)] = 228618, + [SMALL_STATE(10061)] = 228626, + [SMALL_STATE(10062)] = 228634, + [SMALL_STATE(10063)] = 228642, + [SMALL_STATE(10064)] = 228650, + [SMALL_STATE(10065)] = 228658, + [SMALL_STATE(10066)] = 228666, + [SMALL_STATE(10067)] = 228674, + [SMALL_STATE(10068)] = 228682, + [SMALL_STATE(10069)] = 228690, + [SMALL_STATE(10070)] = 228698, + [SMALL_STATE(10071)] = 228706, + [SMALL_STATE(10072)] = 228714, + [SMALL_STATE(10073)] = 228722, + [SMALL_STATE(10074)] = 228730, + [SMALL_STATE(10075)] = 228738, + [SMALL_STATE(10076)] = 228746, + [SMALL_STATE(10077)] = 228754, + [SMALL_STATE(10078)] = 228762, + [SMALL_STATE(10079)] = 228770, + [SMALL_STATE(10080)] = 228778, + [SMALL_STATE(10081)] = 228786, + [SMALL_STATE(10082)] = 228794, + [SMALL_STATE(10083)] = 228802, + [SMALL_STATE(10084)] = 228810, + [SMALL_STATE(10085)] = 228818, + [SMALL_STATE(10086)] = 228826, + [SMALL_STATE(10087)] = 228834, + [SMALL_STATE(10088)] = 228842, + [SMALL_STATE(10089)] = 228850, + [SMALL_STATE(10090)] = 228858, + [SMALL_STATE(10091)] = 228866, + [SMALL_STATE(10092)] = 228874, + [SMALL_STATE(10093)] = 228882, + [SMALL_STATE(10094)] = 228890, + [SMALL_STATE(10095)] = 228898, + [SMALL_STATE(10096)] = 228906, + [SMALL_STATE(10097)] = 228914, + [SMALL_STATE(10098)] = 228922, + [SMALL_STATE(10099)] = 228930, + [SMALL_STATE(10100)] = 228938, + [SMALL_STATE(10101)] = 228946, + [SMALL_STATE(10102)] = 228954, + [SMALL_STATE(10103)] = 228962, + [SMALL_STATE(10104)] = 228970, + [SMALL_STATE(10105)] = 228978, + [SMALL_STATE(10106)] = 228986, + [SMALL_STATE(10107)] = 228994, + [SMALL_STATE(10108)] = 229002, + [SMALL_STATE(10109)] = 229010, + [SMALL_STATE(10110)] = 229018, + [SMALL_STATE(10111)] = 229026, + [SMALL_STATE(10112)] = 229034, + [SMALL_STATE(10113)] = 229042, + [SMALL_STATE(10114)] = 229050, + [SMALL_STATE(10115)] = 229058, + [SMALL_STATE(10116)] = 229066, + [SMALL_STATE(10117)] = 229074, + [SMALL_STATE(10118)] = 229082, + [SMALL_STATE(10119)] = 229090, + [SMALL_STATE(10120)] = 229098, + [SMALL_STATE(10121)] = 229106, + [SMALL_STATE(10122)] = 229114, + [SMALL_STATE(10123)] = 229122, + [SMALL_STATE(10124)] = 229130, + [SMALL_STATE(10125)] = 229138, + [SMALL_STATE(10126)] = 229146, + [SMALL_STATE(10127)] = 229154, + [SMALL_STATE(10128)] = 229162, + [SMALL_STATE(10129)] = 229170, + [SMALL_STATE(10130)] = 229178, + [SMALL_STATE(10131)] = 229186, + [SMALL_STATE(10132)] = 229194, + [SMALL_STATE(10133)] = 229202, + [SMALL_STATE(10134)] = 229210, + [SMALL_STATE(10135)] = 229218, + [SMALL_STATE(10136)] = 229226, + [SMALL_STATE(10137)] = 229234, + [SMALL_STATE(10138)] = 229242, + [SMALL_STATE(10139)] = 229250, + [SMALL_STATE(10140)] = 229258, + [SMALL_STATE(10141)] = 229266, + [SMALL_STATE(10142)] = 229274, + [SMALL_STATE(10143)] = 229282, + [SMALL_STATE(10144)] = 229290, + [SMALL_STATE(10145)] = 229298, + [SMALL_STATE(10146)] = 229306, + [SMALL_STATE(10147)] = 229314, + [SMALL_STATE(10148)] = 229322, + [SMALL_STATE(10149)] = 229330, + [SMALL_STATE(10150)] = 229338, + [SMALL_STATE(10151)] = 229346, + [SMALL_STATE(10152)] = 229354, + [SMALL_STATE(10153)] = 229362, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -659865,6111 +675563,6189 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10001), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9993), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9992), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9009), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5), - [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9565), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9718), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9868), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9917), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8948), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9007), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9549), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9850), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9546), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9860), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10019), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9990), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7567), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9865), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10038), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10016), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8975), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9536), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9863), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10029), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10008), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8958), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9541), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9862), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9710), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9857), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10007), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9787), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10045), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9859), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9984), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10041), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9856), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10039), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9853), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9762), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9849), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9682), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7558), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9846), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9610), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9905), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9667), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9923), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9829), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9855), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9861), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10022), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9843), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9864), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9891), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9858), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9851), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9974), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9816), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9854), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9987), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9751), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9691), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9933), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10043), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9852), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9847), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9636), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9619), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9916), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9918), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9909), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10090), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10082), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10081), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8797), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10112), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10088), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8876), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9337), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9647), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9939), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10059), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10038), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8927), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9426), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9492), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8116), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9706), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10100), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10140), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10109), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9632), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10124), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10101), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8892), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9637), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8873), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9609), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10001), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9874), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10032), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10128), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10077), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10130), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10070), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10108), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10092), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9688), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9928), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10115), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8098), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7636), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10069), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9923), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7631), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9781), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10043), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9934), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9937), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10049), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10024), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10132), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10073), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9666), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9708), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10008), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4561), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6568), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1685), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8062), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8063), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10001), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(71), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1688), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5841), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7775), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6358), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5176), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5178), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5000), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5001), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1689), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1378), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9993), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9992), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(254), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4515), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9991), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9009), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9043), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1692), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(315), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5002), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7946), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1703), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1703), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5722), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5724), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2750), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5719), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5740), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5553), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5741), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5718), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2752), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9013), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9012), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9011), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4515), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4867), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4867), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5022), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8526), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4561), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8376), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9876), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9925), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8756), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9786), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8759), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9968), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9998), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10012), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9904), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9924), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8747), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9004), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9874), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4511), - [2033] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6619), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2203), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(77), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2214), - [2048] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9010), - [2052] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7650), - [2056] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4511), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4742), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4736), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1842), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1870), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4699), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9874), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8948), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9253), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1845), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(331), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4729), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7836), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1870), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9007), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9006), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9005), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4699), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4551), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4551), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4703), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8396), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4511), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8357), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3077), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2370), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(75), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2369), - [2143] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8862), - [2147] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7750), - [2151] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3077), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3926), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3922), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2193), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2190), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3959), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10008), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8958), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9240), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2192), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(261), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3920), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7893), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2190), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8891), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8888), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8887), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3959), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3550), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3550), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3962), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8565), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3077), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8382), - [2224] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7582), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1974), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1965), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9959), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1967), - [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(264), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1965), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2868), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2354), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(65), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2353), - [2258] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8756), - [2262] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7724), - [2266] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2868), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3526), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3525), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1910), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1904), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3520), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9968), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8965), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9224), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1908), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(265), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3523), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7860), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1904), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8763), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8764), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8895), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3520), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2963), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2963), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3521), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8536), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2868), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8345), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4561), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1685), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(71), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1688), - [2351] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9004), - [2355] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7691), - [2359] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4561), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5000), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5001), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1969), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2196), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5012), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9787), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9009), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9043), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1718), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(308), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5002), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7946), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2196), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9013), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9012), - [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9011), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5012), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4867), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4867), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5022), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8526), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4561), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8376), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2834), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2339), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(78), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2338), - [2444] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8747), - [2448] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7624), - [2452] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2834), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3429), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3428), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2100), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2096), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3424), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10004), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8969), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9183), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2099), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(296), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3427), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7819), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2096), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8755), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8753), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3424), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2940), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2940), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3425), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8501), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2834), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8366), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(832), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2325), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(74), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2321), - [2534] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8759), - [2538] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7736), - [2542] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(832), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1195), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1194), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2211), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2204), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1187), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9964), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8975), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9178), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2210), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(270), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1192), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7810), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2204), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8757), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8735), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1187), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(908), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(908), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1190), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8470), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(832), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8362), - [2612] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7618), - [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2141), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2151), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10012), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2144), - [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(267), - [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2151), - [2634] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7754), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2023), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1994), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10016), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2002), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(260), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1994), - [2656] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7623), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1720), - [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2018), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9991), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1692), - [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(315), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2018), - [2678] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7592), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1999), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1995), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9906), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1997), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(377), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1995), - [2700] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7589), - [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1689), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1703), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10050), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2020), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(381), - [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1703), - [2722] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7668), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1770), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1760), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9984), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1762), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(263), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1760), - [2744] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7690), - [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1733), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1741), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9917), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1739), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(310), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1741), - [2766] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7559), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1790), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1823), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9998), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1817), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(266), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1823), - [2788] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7684), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2124), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2135), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9954), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1846), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(388), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2135), - [2810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7672), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1847), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1841), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9945), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2125), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(323), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1841), - [2832] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7609), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2266), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2252), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10053), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2336), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(295), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2252), - [2854] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7776), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2390), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1717), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9704), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1729), - [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(371), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1717), - [2876] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7767), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2103), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2110), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9979), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2106), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(356), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2110), - [2898] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7590), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1947), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1991), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9975), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1968), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(262), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1991), - [2920] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7763), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1755), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1768), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9904), - [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1757), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(268), - [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1768), - [2942] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7733), - [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2143), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9924), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2142), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(269), - [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), - [2964] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7541), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2133), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2131), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9990), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2132), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(245), - [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2131), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9979), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3), SHIFT(4210), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3), SHIFT(4210), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3), SHIFT(4210), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9704), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3), SHIFT(4210), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), - [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3), SHIFT(4210), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), SHIFT(4210), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 2), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 2), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 4), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 4), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9368), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 4), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 4), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 2), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 2), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 6), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 6), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(2218), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(7774), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7774), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7147), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4511), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6619), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2203), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(77), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2214), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9010), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7650), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4742), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4736), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1842), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1870), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2033), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4699), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9874), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9379), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8948), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9253), - [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1845), - [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(331), - [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4729), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7836), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2033), - [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6012), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6012), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1870), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9007), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9006), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9005), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4699), - [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4551), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4551), - [3973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4703), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8396), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4511), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8357), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), - [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10061), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9198), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [4065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7954), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2), - [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10061), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), - [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7954), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), - [4144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7718), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), - [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(848), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 4), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 4), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 2), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 2), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 6), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 6), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1), - [4302] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6675), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), - [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), - [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1), - [4328] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9515), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7163), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 4), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 4), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 6), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 6), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7954), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 4), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 4), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 6), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 6), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 2), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 2), - [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7), - [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), - [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 2), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 2), - [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, .production_id = 2), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, .production_id = 2), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 4), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 4), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), - [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), - [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, .production_id = 2), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, .production_id = 2), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), - [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1), - [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7094), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9098), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, .production_id = 1), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, .production_id = 1), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3), - [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1), - [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 4), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 4), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 6), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 6), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5), - [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3), - [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 2), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 2), - [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3), - [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 4), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 4), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 2), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 2), - [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, .production_id = 1), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, .production_id = 1), - [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), - [4783] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9481), - [4787] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6641), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [4799] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9621), - [4803] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6627), - [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [4849] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9501), - [4853] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6629), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, .production_id = 2), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, .production_id = 2), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9903), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 4), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 4), - [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), - [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), - [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 4), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 4), - [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), - [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3), - [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4), - [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 4), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 4), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3), - [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, .production_id = 4), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, .production_id = 4), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 2), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 2), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 6), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 6), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7883), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 4), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 4), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 2), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 2), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [5176] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9444), - [5180] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6658), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9295), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [5228] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6632), - [5232] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9804), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [5246] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9895), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), - [5260] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9437), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [5266] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6662), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), - [5286] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6634), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [5338] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9877), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [5344] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6676), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(6619), - [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9010), - [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7690), - [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9004), - [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7691), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8747), - [5378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7684), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [5383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8862), - [5386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7750), - [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7733), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8759), - [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7668), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8756), - [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7541), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9182), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), - [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7767), - [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7754), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), - [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7618), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7736), - [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7589), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7623), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7763), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [5467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7590), - [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7592), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7624), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [5494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7776), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7724), - [5502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7609), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7650), - [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7672), - [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7559), - [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7582), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7108), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [5758] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9525), - [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), SHIFT(6619), - [5765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), - [5767] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6665), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), - [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5945] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6653), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [5951] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9734), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [6003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9883), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), - [6049] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6680), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10057), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10060), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9115), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [6301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7942), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7939), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7939), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [6324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10057), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7723), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [6332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10060), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7583), - [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7942), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [6369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2883), - [6372] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9479), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2934), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [6423] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6633), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7193), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10049), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7939), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7942), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), - [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7953), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [6535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7125), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7673), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [6557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7217), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2), - [6570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), - [6572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), SHIFT_REPEAT(7871), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), - [6581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7921), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7921), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7084), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [6596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10049), - [6599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3186), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6608] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9494), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [6614] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6646), - [6618] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6668), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), - [6624] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9555), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [6636] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6655), - [6640] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9777), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [6672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7956), - [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7919), - [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3434), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [6711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9478), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7921), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), - [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7204), - [6736] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6672), - [6740] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9533), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5), - [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7), - [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [6806] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9571), - [6810] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6666), - [6814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7168), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [6889] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9493), - [6893] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6678), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [6899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7091), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), - [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [6910] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9827), - [6914] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6669), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [6954] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6638), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [6960] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9939), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), - [6980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7944), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2), - [6987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3), - [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3), - [6997] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6671), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), - [7009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7918), - [7012] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9448), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), - [7108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1520), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [7113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2), - [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [7153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), - [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7134), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), - [7172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1), - [7176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7090), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4), - [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4), - [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5), - [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [7195] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6657), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9867), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [7233] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9466), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [7259] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9910), - [7263] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6656), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9827), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7083), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [7324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6123), - [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6582), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), - [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(5828), - [7335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(9277), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6123), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [7353] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9779), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [7359] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6648), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9896), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9783), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10001), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6), - [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), - [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6626), - [7578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8062), - [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8063), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(10001), - [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9204), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), - [7592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5841), - [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9211), - [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9642), - [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8161), - [7604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6430), - [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8970), - [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8968), - [7613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5674), - [7616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5690), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5710), - [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5685), - [7625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5447), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5673), - [7631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5671), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5694), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), - [7659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2), REDUCE(sym_value_argument, 2), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5), - [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4594), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6663), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1475), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8047), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8050), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10090), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(76), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1530), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5894), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7718), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6434), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5307), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5305), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5142), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5159), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1552), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1242), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10082), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10081), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(234), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4549), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(10080), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8797), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9108), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1715), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(302), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5160), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7886), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1736), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1736), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5793), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5771), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2759), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5783), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5779), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5620), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5774), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5773), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2765), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8798), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8799), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8800), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8802), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8803), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4549), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4906), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4906), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5170), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8471), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4594), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8414), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9048), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9770), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8916), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10060), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10105), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10093), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10016), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10054), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9423), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8808), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8848), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8817), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3364), + [2075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6627), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2096), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(78), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2095), + [2090] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8916), + [2094] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7774), + [2098] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3332), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3892), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3893), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1778), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1774), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3948), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10050), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8892), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9366), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1776), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(263), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3899), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8023), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1774), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8909), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8911), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8912), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8913), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8914), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3948), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3668), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3668), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3903), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8597), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3364), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8442), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2885), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2079), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(72), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2077), + [2191] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(9048), + [2195] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7638), + [2199] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2955), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3420), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3421), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2133), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3485), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10088), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8876), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9337), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2134), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(225), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3422), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7994), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9037), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9038), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9039), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9043), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9044), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3485), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3223), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3223), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3456), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8584), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2885), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8446), + [2278] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7675), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1591), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1594), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10070), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1592), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(262), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1594), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4547), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2114), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(59), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2115), + [2312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8808), + [2316] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7783), + [2320] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4534), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4752), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4754), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1808), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1803), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4772), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10002), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8927), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9426), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1805), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(358), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4832), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7895), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1803), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8811), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8814), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8819), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8815), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8816), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4772), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4613), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4613), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4758), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8611), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4547), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8410), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(821), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2058), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(73), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2057), + [2411] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8907), + [2415] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7743), + [2419] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(823), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1117), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1116), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1656), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1653), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1110), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10083), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8866), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9289), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1655), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(264), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1115), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7936), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1653), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8888), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8889), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8896), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8898), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1110), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(906), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(906), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1114), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8574), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(821), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8434), + [2495] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7658), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1562), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1544), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10054), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1561), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(270), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1544), + [2517] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7786), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1508), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1459), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10009), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1513), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(298), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1459), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4594), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1475), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(76), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1530), + [2551] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8817), + [2555] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7642), + [2559] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4612), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5142), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5159), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1587), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1844), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5168), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10080), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8797), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9108), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1715), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(302), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5160), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7886), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1844), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8798), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8799), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8800), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8802), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8803), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5168), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4906), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4906), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5170), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8471), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4594), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8414), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2772), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2069), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(82), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2067), + [2650] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8848), + [2654] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7632), + [2658] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2791), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3099), + [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3098), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2154), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2166), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3085), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10044), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8873), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9329), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1692), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(371), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3094), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7892), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2166), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8865), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8864), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8862), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8861), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3085), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2914), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2914), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3091), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8583), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2772), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8419), + [2734] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7784), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2163), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1519), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9497), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1581), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(297), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1519), + [2756] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7789), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2161), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2113), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10097), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2152), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(296), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2113), + [2778] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7809), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1693), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1689), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10032), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2155), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(303), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1689), + [2800] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7637), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1779), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1793), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9978), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1781), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(268), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1793), + [2822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7666), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1542), + [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1545), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10093), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1543), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(267), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1545), + [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7723), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1634), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1637), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10074), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1635), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(356), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1637), + [2866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7794), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1983), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1985), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10038), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1984), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(283), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1985), + [2888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7683), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1731), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1765), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10105), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1743), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(266), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1765), + [2910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7696), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1702), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1580), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9704), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1496), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(357), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1580), + [2932] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7649), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2116), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2118), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10101), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2117), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(260), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2118), + [2954] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7708), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2054), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2023), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10109), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2053), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(261), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2023), + [2976] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7694), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1857), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1905), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9961), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1859), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(313), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1905), + [2998] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7606), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1567), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1533), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10016), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1566), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(269), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1533), + [3020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7689), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1733), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1727), + [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10060), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1730), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(265), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1727), + [3042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7776), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1552), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1736), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(10145), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1846), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(362), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1736), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10074), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9704), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3), SHIFT(4159), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3), SHIFT(4159), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7632), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3), SHIFT(4159), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), + [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3), SHIFT(4159), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), SHIFT(4159), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3), SHIFT(4159), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 2), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 2), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 5), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 5), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 7), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 7), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9173), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 2), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 2), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 5), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 5), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 7), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 7), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9592), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4547), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6627), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2114), + [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(59), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2115), + [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8808), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7694), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4534), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4752), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4754), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1857), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1905), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2100), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4772), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9961), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9592), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8927), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9426), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1859), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(313), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4832), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7895), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2100), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6039), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6039), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1905), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8811), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8814), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8819), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8815), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8816), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4772), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4613), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4613), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4758), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8611), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4547), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8410), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), + [4023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(2138), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(7730), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7730), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7209), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10150), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9411), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10150), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(8006), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8006), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7833), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 5), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 5), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(830), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, .production_id = 3), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, .production_id = 3), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1), + [4269] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6710), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1), + [4291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9991), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 7), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 7), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 2), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 2), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 5), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 5), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 2), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 2), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 5), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 5), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(8006), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7257), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 5), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 5), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 7), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 7), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 7), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 7), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 2), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 2), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, .production_id = 2), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, .production_id = 2), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 5), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 5), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 7), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 7), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7183), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 2), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 2), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 5), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 5), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, .production_id = 1), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, .production_id = 1), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5), + [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), REDUCE(sym_not_nullable_type, 4), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, .production_id = 2), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, .production_id = 2), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2), + [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4), REDUCE(sym_not_nullable_type, 5), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [4770] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9769), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3), + [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3), + [4794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4808] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6719), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2), + [4830] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6698), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 2), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 2), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1), + [4858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6732), + [4862] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10018), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 2), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 2), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, .production_id = 2), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, .production_id = 2), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, .production_id = 2), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, .production_id = 2), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, .production_id = 3), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, .production_id = 3), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, .production_id = 3), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, .production_id = 3), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 5), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 5), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [5028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7919), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, .production_id = 1), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, .production_id = 1), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4), + [5081] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9702), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 7), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 7), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 5), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 5), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 2), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 2), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 5), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 5), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, .production_id = 8), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, .production_id = 8), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, .production_id = 5), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, .production_id = 5), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), + [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2), + [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, .production_id = 2), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, .production_id = 2), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 5), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 5), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [5267] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9607), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [5279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6707), + [5283] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6694), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(6627), + [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9048), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7637), + [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2955), + [5299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8808), + [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7786), + [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4534), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7638), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8817), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7776), + [5319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4612), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [5328] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9977), + [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8907), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7743), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(823), + [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7708), + [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8848), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7723), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2791), + [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7675), + [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7696), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), + [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7632), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7689), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8916), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7649), + [5377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3332), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7666), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [5389] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9852), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7784), + [5402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7789), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [5407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7658), + [5410] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6721), + [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7683), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7694), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [5422] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9956), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), + [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7642), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7606), + [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7809), + [5445] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6733), + [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7794), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7774), + [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7783), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [5556] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9900), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [5564] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6716), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9148), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), SHIFT(6627), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7197), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [5750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9580), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9408), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [5844] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6695), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [5852] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9554), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [5860] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6724), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [6038] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6711), + [6042] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9786), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7625), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7972), + [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10149), + [6451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7972), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10146), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [6490] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6734), + [6494] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10066), + [6498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2862), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10146), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7952), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7952), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [6542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7972), + [6545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7948), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [6556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7604), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [6589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7206), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [6594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3032), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2), + [6609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), + [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), SHIFT_REPEAT(7876), + [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7240), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [6625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7966), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10138), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [6636] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9833), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [6642] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6697), + [6646] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9677), + [6650] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6723), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9527), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [6681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3177), + [6684] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6702), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [6690] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9831), + [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7952), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7276), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9201), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7811), + [6763] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6691), + [6767] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9537), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7193), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7912), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [6795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7912), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [6806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(10138), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7916), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10144), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9986), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10022), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [6874] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6742), + [6878] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(10144), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7), + [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10000), + [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7269), + [6893] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6701), + [6897] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9875), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3556), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), + [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), + [6924] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6712), + [6928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9520), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2), + [6960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [6966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7912), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3), + [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7277), + [6976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6740), + [6980] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9813), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [6998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7913), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [7003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6720), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [7009] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9536), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), + [7091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1332), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [7098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7156), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7187), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7995), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [7179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4), + [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [7291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9712), + [7295] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6696), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), + [7345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9972), + [7349] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6727), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), + [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7149), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [7382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6211), + [7385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6650), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), + [7390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(5881), + [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [7395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(6224), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(9386), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6211), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [7418] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6692), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [7424] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9810), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9871), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [7506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7208), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10090), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6637), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8047), + [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8050), + [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(10090), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9353), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), + [7734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5894), + [7737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9355), + [7740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9636), + [7743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8135), + [7746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6479), + [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8867), + [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8868), + [7755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5720), + [7758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5751), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5752), + [7764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5754), + [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5517), + [7770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5755), + [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5761), + [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5724), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2), REDUCE(sym_value_argument, 2), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9730), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9499), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9875), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), - [7954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9875), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [7967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7843), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [7974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7843), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), - [7979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7549), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [7998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4534), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9527), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), - [8021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7843), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [8030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7945), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7176), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7112), - [8051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7817), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [8056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7619), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [8065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7817), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [8074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9527), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [8099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7827), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [8136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4818), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), - [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7817), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4901), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [8215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7180), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7092), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [8237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7958), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9777), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [8274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9791), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [8279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6650), - [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7194), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7120), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [8338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7082), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), - [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [8467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), - [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [8537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6626), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [8542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [8544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5674), - [8547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5690), - [8550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5710), - [8553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5685), - [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5378), - [8559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5673), - [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5671), - [8565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5694), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), - [8598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(6619), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), - [8603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(5421), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7089), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [8691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7927), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [8698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5), - [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5), - [8702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6635), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [8721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9873), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1469), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9631), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6601), - [8782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5722), - [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5724), - [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5719), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5740), - [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5549), - [8797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5741), - [8800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5718), - [8803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5730), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7925), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6616), - [8858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5806), - [8861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5815), - [8864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5818), - [8867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5831), - [8870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5624), - [8873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5830), - [8876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5829), - [8879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5813), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7815), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9834), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9780), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [8927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [8933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7872), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), - [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), - [8948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), - [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), - [8952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), - [8954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), - [8956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), - [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1), - [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5688), - [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), - [8977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [8989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5735), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [8998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7813), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [9003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7185), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7165), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), - [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7957), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), - [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [9159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7950), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10054), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(6660), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [9325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), - [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [9329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), - [9335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6617), - [9338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7803), - [9341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7098), - [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), - [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(2218), - [9349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), - [9351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7774), - [9354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7104), - [9357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [9361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [9363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6613), - [9366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7797), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [9371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), - [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6582), - [9376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), - [9378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(7152), - [9381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7888), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [9386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), - [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), - [9390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), SHIFT_REPEAT(7349), - [9393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), - [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), - [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), - [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), - [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), - [9405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1), SHIFT(6582), - [9408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1), SHIFT(7152), - [9411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1), - [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1438), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6123), - [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6123), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7922), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [9497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1), - [9505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1), - [9507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [9585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1), - [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [9637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), - [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6590), - [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), - [9644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7949), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [9683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1526), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6617), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), - [9769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [9775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7950), - [9778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7950), - [9781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1), - [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [9793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7615), - [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7670), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [9807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7572), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [9812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7591), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [9819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7593), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [9824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7594), - [9827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7569), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), - [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7640), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1464), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [9846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7595), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7598), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [9858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7665), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [9865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7599), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [9872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7602), - [9875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7603), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7756), - [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7698), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [9930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7834), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9753), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [9963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7617), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7700), - [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7606), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7586), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7579), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7636), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7564), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7692), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8621), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7935), - [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9837), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9588), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [10152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2), - [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9830), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9844), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10042), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9807), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9818), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10044), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [10534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7905), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [10567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [10579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6585), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [10620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [10626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6583), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [10667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7088), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [10682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7184), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [10689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1704), - [10692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7989), - [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [10697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8387), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9774), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9773), - [10708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7107), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [10843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9723), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10049), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [10895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(7996), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [10900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7211), - [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9872), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10030), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10061), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), - [11035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, .production_id = 3), - [11037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, .production_id = 3), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [11045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [11051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(7871), - [11054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [11058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, .production_id = 4), - [11060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 5), - [11062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 5), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), - [11068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [11076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 6), - [11078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [11084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), - [11086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), SHIFT_REPEAT(5598), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), - [11095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(259), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [11150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 4), - [11152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [11156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [11168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), SHIFT_REPEAT(7923), - [11171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4), - [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [11205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 6), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [11239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5832), - [11242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [11304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [11314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), SHIFT_REPEAT(5556), - [11317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [11349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), - [11385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5702), - [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), - [11392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), SHIFT_REPEAT(7302), - [11395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [11401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), SHIFT_REPEAT(1601), - [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [11420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), SHIFT_REPEAT(910), - [11423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [11439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), SHIFT_REPEAT(1866), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [11490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), SHIFT_REPEAT(6604), - [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [11565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6575), - [11568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [11610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [11644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [11694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(9000), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [11709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 1), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 2), - [11745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), - [11775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [11829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [11837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1), - [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [11847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [11851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9873), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), - [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [11915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), - [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, .production_id = 2), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [12037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, .production_id = 6), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [12051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [12085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [12257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [12261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 4), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9947), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9951), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [12413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9375), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [12487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [12513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 6), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [12749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 4), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [12761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [12843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4), - [12845] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [12867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [13019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10123), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [8114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7805), + [8117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7931), + [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9964), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7931), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [8148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7988), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), + [8153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4569), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [8176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7931), + [8179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7261), + [8182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9582), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7998), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4643), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7998), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [8214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7160), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [8239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7609), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4708), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10078), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9980), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7982), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [8320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7998), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7244), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [8386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7267), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [8391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7144), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7195), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9824), + [8417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7908), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [8486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6709), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9858), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7196), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), + [8539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(6627), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), + [8544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(5345), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [8619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8013), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6637), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [8743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [8745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5720), + [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5751), + [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5752), + [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5754), + [8757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5499), + [8760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5755), + [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5761), + [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5724), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1297), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9802), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6737), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7154), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [8840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9888), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [8925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6649), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5793), + [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5771), + [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5783), + [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5779), + [8940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5603), + [8943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5774), + [8946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5773), + [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5791), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9659), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8018), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [9013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6654), + [9016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5855), + [9019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5865), + [9022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5883), + [9025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5874), + [9028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5676), + [9031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5872), + [9034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5854), + [9037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5859), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7955), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7904), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), + [9098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), + [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5723), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), + [9119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [9123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), + [9127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), + [9133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5792), + [9152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7245), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7872), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7249), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7869), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8825), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7867), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9975), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9999), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), + [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(6688), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [9509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), + [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6685), + [9514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7842), + [9517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7138), + [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(2138), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), + [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7730), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7139), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [9545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), + [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), + [9549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), SHIFT_REPEAT(7482), + [9552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6644), + [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(7853), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), + [9564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1), SHIFT(6650), + [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), + [9569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1), SHIFT(7219), + [9572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [9580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), + [9582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6650), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), + [9587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(7219), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [9592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8011), + [9595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), + [9597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [9603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1310), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9276), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [9646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6211), + [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), + [9651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6224), + [9654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(6211), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1), + [9681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1), + [9683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(8015), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7915), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [9831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [9885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), + [9887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6668), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [9926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6685), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [9949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1307), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7867), + [9957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [9963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7867), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7773), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [9983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7807), + [9986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7813), + [9989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7819), + [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7821), + [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7823), + [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7825), + [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7826), + [10004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7829), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [10011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7890), + [10014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1328), + [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7766), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7643), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [10071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7690), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7740), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7798), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7697), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7712), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7714), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7741), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7634), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7838), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7777), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7735), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7756), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7753), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [10278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7894), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8780), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8761), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [10455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2), + [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10131), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10129), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7940), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6624), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [10843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6686), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7278), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [10871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1741), + [10874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8164), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [10879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(8441), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [10894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7135), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9837), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10149), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [10993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9231), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [11103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [11145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(7184), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9732), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [11192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [11194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(8252), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10150), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9884), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [11211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(7225), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 6), + [11234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 6), + [11236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [11238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), + [11240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(259), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, .production_id = 4), + [11251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, .production_id = 4), + [11253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(7876), + [11256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [11260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2), + [11262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [11270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, .production_id = 5), + [11272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [11276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), + [11278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), SHIFT_REPEAT(5650), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [11291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 7), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [11319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [11323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5888), + [11326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [11396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [11400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), SHIFT_REPEAT(5606), + [11403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [11423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [11463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5753), + [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [11470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [11476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), SHIFT_REPEAT(1412), + [11479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [11485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), SHIFT_REPEAT(817), + [11488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [11518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), SHIFT_REPEAT(2171), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [11537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), SHIFT_REPEAT(6625), + [11540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [11586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), SHIFT_REPEAT(7447), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), + [11591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6672), + [11594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [11638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [11656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), SHIFT_REPEAT(7985), + [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [11727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(9019), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [11736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [11820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 5), + [11822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [11830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 7), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [11870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [11900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 2), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [11932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [11938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3), + [11940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [11956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [11970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [12014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [12020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [12046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 1), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [12068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10034), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [12112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, .production_id = 2), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [12194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [12216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [12230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [12456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [12478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [12620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [12708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [12714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 5), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [12876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 7), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [12882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, .production_id = 7), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [12928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [12944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 5), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [13014] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 780f4c2..c96eff9 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -213,7 +213,8 @@ expect fun randomUUID(): String (platform_modifier)) (simple_identifier) (function_value_parameters) - (user_type (type_identifier)))) + (user_type + (type_identifier)))) ================================================================================ Less than for generics @@ -464,3 +465,74 @@ val comments = """ // and here """ (variable_declaration (simple_identifier)) (string_literal))) + +================================================================================ +Qualified this/super expressions +================================================================================ + +class Square() : Rectangle(), Polygon { + override fun draw() { + this@Square.draw() + super@Square.draw() + super.draw() + super@Square.draw() + } +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (primary_constructor) + (delegation_specifier + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments))) + (delegation_specifier + (user_type + (type_identifier))) + (class_body + (function_declaration + (modifiers + (member_modifier)) + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (call_expression + (navigation_expression + (this_expression + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (super_expression + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (super_expression + (user_type + (type_identifier))) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (super_expression + (user_type + (type_identifier)) + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments)))))))))